/*************************************************************************************************************************** * @description query type * Each query has the type that created it. * PERMANENT: query that is created cannot be deleted * DEFAULT: query once created anyone can delete it or update it * USER_PREFERENCE: query is created as a result of user settings from the server. * URL: query is created as a result of transferring information from url * FILTER - queries that will be present in the filter bar * ONLY_FILTER_COUNT - only filter count use * There is a priority between the different types when, not everyone can override other information. Priorities: * 1) DEFAULT * 2) PERMANENT * 3) URL * 4) USER_PREFERENCE * 5) FILTER ***************************************************************************************************************************/ export declare enum QueryCollectionTypeEnum { PERMANENT = "PERMANENT", DEFAULT = "DEFAULT", USER_PREFERENCE = "USER_PREFERENCE", URL = "URL", FILTER = "FILTER", FREE_TEXT_FILTER = "FREE_TEXT_FILTER", ONLY_FILTER_COUNT = "ONLY_FILTER_COUNT" } //# sourceMappingURL=query-collection-type.enum.d.ts.map