search-client
Version:
Javascript library for executing searches in the Haive search-index via the SearchManager REST interface.
22 lines (21 loc) • 571 B
TypeScript
/**
* Defines the enum bit-field flags that signifies which query-fields that may resolve in changed results (both Categorize and Find).
*/
export declare enum QueryChangeSpecifications {
none = 0,
clientId = 1,
categorizationType = 2,
dateFrom = 4,
dateTo = 8,
filters = 16,
matchGenerateContent = 32,
matchGenerateContentHighlights = 64,
matchGrouping = 128,
matchOrderBy = 256,
matchPage = 512,
matchPageSize = 1024,
maxSuggestions = 2048,
queryText = 4096,
searchType = 8192,
uiLanguageCode = 16384
}