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.

26 lines (25 loc) 792 B
/** * Represents the possible operators for filtering. */ export var FilterOperators; (function (FilterOperators) { FilterOperators["Equal"] = "eq"; FilterOperators["NotEqual"] = "ne"; FilterOperators["GreaterThan"] = "gt"; FilterOperators["LessThan"] = "lt"; FilterOperators["GreaterThanOrEqual"] = "ge"; FilterOperators["LessThanOrEqual"] = "le"; FilterOperators["ContainsOr"] = "any+or"; FilterOperators["ContainsAnd"] = "any+and"; FilterOperators["DoesNotContain"] = "not+(any+or)"; FilterOperators["In"] = "in"; })(FilterOperators || (FilterOperators = {})); ; /** * Represents the possible operators for string filtering. */ export const StringOperators = { StartsWith: 'startswith', EndsWith: 'endswith', Contains: 'contains' };