UNPKG

@progress/sitefinity-nextjs-sdk

Version:

Provides OOB widgets developed using the Next.js framework, which includes an abstraction layer for Sitefinity communication. Additionally, it offers an expanded API, typings, and tools for further development and integration.

32 lines (31 loc) 710 B
/** * Represents a simple filter clause for querying data. */ export interface FilterClause { FieldName: string; FieldValue: any; Operator: FilterOperators | string; } /** * Represents the possible operators for filtering. */ export declare enum FilterOperators { Equal = "eq", NotEqual = "ne", GreaterThan = "gt", LessThan = "lt", GreaterThanOrEqual = "ge", LessThanOrEqual = "le", ContainsOr = "any+or", ContainsAnd = "any+and", DoesNotContain = "not+(any+or)", In = "in" } /** * Represents the possible operators for string filtering. */ export declare const StringOperators: { StartsWith: string; EndsWith: string; Contains: string; };