@wix/categories 1.0.38 → 1.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/categories",
3
- "version": "1.0.38",
3
+ "version": "1.0.40",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,7 +18,7 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/categories_categories": "1.0.15"
21
+ "@wix/categories_categories": "1.0.17"
22
22
  },
23
23
  "devDependencies": {
24
24
  "glob": "^10.4.1",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "scripts": {
30
30
  "build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles",
31
- "build:dts-bundles": "test -f config/rollup-config.js && rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
31
+ "build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
32
32
  "test": ":"
33
33
  },
34
34
  "wix": {
@@ -42,5 +42,5 @@
42
42
  "fqdn": ""
43
43
  }
44
44
  },
45
- "falconPackageHash": "dc866ee495fbb0d4f3ded57f4a3afbcec294407eb243da22c2415b55"
45
+ "falconPackageHash": "810140751bc7aaf6cc1a7460a66fcea16fe64a0657b069c3168b2ee6"
46
46
  }
@@ -35,7 +35,10 @@ interface Category {
35
35
  * @readonly
36
36
  */
37
37
  itemCounter?: number;
38
- /** Category description. */
38
+ /**
39
+ * Category description.
40
+ * > **Note:** This field is returned only when you pass `fields: "DESCRIPTION"` in the request.
41
+ */
39
42
  description?: string | null;
40
43
  /**
41
44
  * Whether the category is visible to site visitors in dynamic pages (If not passed, the default is `false`).
@@ -61,6 +64,7 @@ interface Category {
61
64
  /**
62
65
  * Category description which supports rich content. It is independent from `description` field and can be used instead of it or in addition to it.
63
66
  * In order to use this field you have to integrate with "Ricos" on frontend side. To learn how to do it visit https://ricos.js.org/.
67
+ * > **Note:** This field is returned only when you pass `fields: "RICH_CONTENT_DESCRIPTION"` in the request.
64
68
  */
65
69
  richContentDescription?: RichContent;
66
70
  /**
@@ -1463,11 +1467,13 @@ interface CreateCategoryRequest {
1463
1467
  /** A reference to the tree that contains this category. */
1464
1468
  treeReference: TreeReference;
1465
1469
  /** Fields to return in the response. When not provided, these fields are not returned. */
1466
- fields?: RequestedFields[];
1470
+ fields?: SingleEntityOpsRequestedFields[];
1467
1471
  }
1468
- declare enum RequestedFields {
1472
+ declare enum SingleEntityOpsRequestedFields {
1469
1473
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
1470
- BREADCRUMBS = "BREADCRUMBS"
1474
+ BREADCRUMBS = "BREADCRUMBS",
1475
+ DESCRIPTION = "DESCRIPTION",
1476
+ RICH_CONTENT_DESCRIPTION = "RICH_CONTENT_DESCRIPTION"
1471
1477
  }
1472
1478
  interface CreateCategoryResponse {
1473
1479
  /** The created Category. */
@@ -1479,7 +1485,7 @@ interface GetCategoryRequest {
1479
1485
  /** A reference to the tree that contains this category. */
1480
1486
  treeReference: TreeReference;
1481
1487
  /** Fields to return in the response. When not provided, these fields are not returned. */
1482
- fields?: RequestedFields[];
1488
+ fields?: SingleEntityOpsRequestedFields[];
1483
1489
  }
1484
1490
  interface GetCategoryResponse {
1485
1491
  /** The retrieved Category. */
@@ -1491,7 +1497,7 @@ interface UpdateCategoryRequest {
1491
1497
  /** A reference to the tree that contains this category. */
1492
1498
  treeReference: TreeReference;
1493
1499
  /** Fields to return in the response. When not provided, these fields are not returned. */
1494
- fields?: RequestedFields[];
1500
+ fields?: SingleEntityOpsRequestedFields[];
1495
1501
  }
1496
1502
  interface UpdateCategoryResponse {
1497
1503
  /** The updated Category. */
@@ -1571,6 +1577,10 @@ interface CursorPaging {
1571
1577
  */
1572
1578
  cursor?: string | null;
1573
1579
  }
1580
+ declare enum RequestedFields {
1581
+ UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
1582
+ BREADCRUMBS = "BREADCRUMBS"
1583
+ }
1574
1584
  interface QueryCategoriesResponse {
1575
1585
  /** Categories which satisfy the provided query. */
1576
1586
  categories?: Category[];
@@ -2034,7 +2044,7 @@ interface AggregationResultsResultOneOf {
2034
2044
  }
2035
2045
  interface DeprecatedSearchCategoriesWithOffsetRequest {
2036
2046
  /** WQL query expression. */
2037
- search?: PlatformOffsetSearch;
2047
+ search?: OffsetSearch;
2038
2048
  /** A reference to the tree that contains this category. */
2039
2049
  treeReference?: TreeReference;
2040
2050
  /** Whether to return categories with `visible:false`. Default: false so only visible categories will be in response. */
@@ -2042,248 +2052,32 @@ interface DeprecatedSearchCategoriesWithOffsetRequest {
2042
2052
  /** Fields to return in the response. When not provided, these fields are not returned. */
2043
2053
  fields?: RequestedFields[];
2044
2054
  }
2045
- interface PlatformOffsetSearch extends PlatformOffsetSearchPagingMethodOneOf {
2055
+ interface OffsetSearch extends OffsetSearchPagingMethodOneOf {
2046
2056
  /** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
2047
- paging?: PlatformPaging;
2057
+ paging?: Paging;
2048
2058
  /** A filter object. See documentation [here](https://bo.wix.com/wix-docs/rnd/platformization-guidelines/api-query-language#platformization-guidelines_api-query-language_defining-in-protobuf) */
2049
2059
  filter?: Record<string, any> | null;
2050
2060
  /** Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}] */
2051
- sort?: CommonSorting[];
2061
+ sort?: Sorting[];
2052
2062
  /** Aggregations | Faceted search: refers to a way to explore large amounts of data by displaying summaries about various partitions of the data and later allowing to narrow the navigation to a specific partition. */
2053
- aggregations?: CommonAggregation[];
2054
- /** free text to match in searchable fields */
2055
- search?: CommonSearchDetails;
2056
- }
2057
- /** @oneof */
2058
- interface PlatformOffsetSearchPagingMethodOneOf {
2059
- /** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
2060
- paging?: PlatformPaging;
2061
- }
2062
- interface CommonSorting {
2063
- /** Name of the field to sort by. */
2064
- fieldName?: string;
2065
- /** Sort order. */
2066
- order?: CommonSortOrder;
2067
- }
2068
- declare enum CommonSortOrder {
2069
- ASC = "ASC",
2070
- DESC = "DESC"
2071
- }
2072
- interface CommonAggregation extends CommonAggregationKindOneOf {
2073
- /** Value aggregation */
2074
- value?: AggregationValueAggregation;
2075
- /** Range aggregation */
2076
- range?: AggregationRangeAggregation;
2077
- /** Scalar aggregation */
2078
- scalar?: AggregationScalarAggregation;
2079
- /** Date histogram aggregation */
2080
- dateHistogram?: AggregationDateHistogramAggregation;
2081
- /** Nested aggregation */
2082
- nested?: AggregationNestedAggregation;
2083
- /** User-defined name of aggregation, should be unique, will appear in aggregation results */
2084
- name?: string | null;
2085
- /** Type of aggregation, client must provide matching aggregation field below */
2086
- type?: CommonAggregationType;
2087
- /** Field to aggregate by, use dot notation to specify json path */
2088
- fieldPath?: string;
2063
+ aggregations?: Aggregation[];
2064
+ /** Free text to match in searchable fields */
2065
+ search?: SearchDetails;
2089
2066
  /**
2090
- * deprecated, use `nested` instead
2091
- * @deprecated deprecated, use `nested` instead
2092
- * @replacedBy kind.nested
2093
- * @targetRemovalDate 2024-03-30
2067
+ * UTC offset or IANA time zone. Valid values are
2068
+ * ISO 8601 UTC offsets, such as +02:00 or -06:00,
2069
+ * and IANA time zone IDs, such as Europe/Rome
2070
+ *
2071
+ * Affects all filters and aggregations returned values.
2072
+ * You may override this behavior in a specific filter by providing
2073
+ * timestamps including time zone. e.g. `"2023-12-20T10:52:34.795Z"`
2094
2074
  */
2095
- groupBy?: GroupByAggregation;
2096
- }
2097
- /** @oneof */
2098
- interface CommonAggregationKindOneOf {
2099
- /** Value aggregation */
2100
- value?: AggregationValueAggregation;
2101
- /** Range aggregation */
2102
- range?: AggregationRangeAggregation;
2103
- /** Scalar aggregation */
2104
- scalar?: AggregationScalarAggregation;
2105
- /** Date histogram aggregation */
2106
- dateHistogram?: AggregationDateHistogramAggregation;
2107
- /** Nested aggregation */
2108
- nested?: AggregationNestedAggregation;
2109
- }
2110
- interface RangeAggregationRangeBucket {
2111
- /** Inclusive lower bound of the range. Required if to is not given */
2112
- from?: number | null;
2113
- /** Exclusive upper bound of the range. Required if from is not given */
2114
- to?: number | null;
2115
- }
2116
- declare enum ValueAggregationSortType {
2117
- /** Should sort by number of matches */
2118
- COUNT = "COUNT",
2119
- /** Should sort by value of the field alphabetically */
2120
- VALUE = "VALUE"
2121
- }
2122
- declare enum ValueAggregationSortDirection {
2123
- /** Should sort in descending order */
2124
- DESC = "DESC",
2125
- /** Should sort in ascending order */
2126
- ASC = "ASC"
2127
- }
2128
- declare enum ValueAggregationMissingValues {
2129
- /** Should missing values be excluded from the aggregation results */
2130
- EXCLUDE = "EXCLUDE",
2131
- /** Should missing values be included in the aggregation results */
2132
- INCLUDE = "INCLUDE"
2133
- }
2134
- interface ValueAggregationIncludeMissingValuesOptions {
2135
- /** Can specify custom bucket name. Defaults are [string -> "N/A"], [int -> "0"], [bool -> "false"] ... */
2136
- addToBucket?: string;
2137
- }
2138
- declare enum CommonScalarType {
2139
- UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
2140
- /** Count of distinct values */
2141
- COUNT_DISTINCT = "COUNT_DISTINCT",
2142
- /** Minimum value */
2143
- MIN = "MIN",
2144
- /** Maximum value */
2145
- MAX = "MAX",
2146
- /** Sum of values */
2147
- SUM = "SUM",
2148
- /** Average of values */
2149
- AVG = "AVG"
2150
- }
2151
- interface AggregationValueAggregation extends AggregationValueAggregationOptionsOneOf {
2152
- /** Options for including missing values */
2153
- includeOptions?: ValueAggregationIncludeMissingValuesOptions;
2154
- /** Should sort by number of matches or value of the field */
2155
- sortType?: ValueAggregationSortType;
2156
- /** Should sort in ascending or descending order */
2157
- sortDirection?: ValueAggregationSortDirection;
2158
- /** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
2159
- limit?: number | null;
2160
- /** Should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
2161
- missingValues?: ValueAggregationMissingValues;
2162
- }
2163
- /** @oneof */
2164
- interface AggregationValueAggregationOptionsOneOf {
2165
- /** Options for including missing values */
2166
- includeOptions?: ValueAggregationIncludeMissingValuesOptions;
2167
- }
2168
- declare enum NestedAggregationNestedAggregationType {
2169
- UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
2170
- /** An aggregation where result buckets are dynamically built - one per unique value */
2171
- VALUE = "VALUE",
2172
- /** An aggregation, where user can define set of ranges - each representing a bucket */
2173
- RANGE = "RANGE",
2174
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
2175
- SCALAR = "SCALAR",
2176
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
2177
- DATE_HISTOGRAM = "DATE_HISTOGRAM"
2178
- }
2179
- interface AggregationRangeAggregation {
2180
- /** List of range buckets, where during aggregation each entity will be placed in the first bucket where its value falls into based on provided range bounds */
2181
- buckets?: RangeAggregationRangeBucket[];
2182
- }
2183
- interface AggregationScalarAggregation {
2184
- /** Define the operator for the scalar aggregation */
2185
- type?: CommonScalarType;
2186
- }
2187
- interface AggregationDateHistogramAggregation {
2188
- /** Interval for date histogram aggregation */
2189
- interval?: DateHistogramAggregationInterval;
2190
- }
2191
- declare enum DateHistogramAggregationInterval {
2192
- UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
2193
- /** Yearly interval */
2194
- YEAR = "YEAR",
2195
- /** Monthly interval */
2196
- MONTH = "MONTH",
2197
- /** Weekly interval */
2198
- WEEK = "WEEK",
2199
- /** Daily interval */
2200
- DAY = "DAY",
2201
- /** Hourly interval */
2202
- HOUR = "HOUR",
2203
- /** Minute interval */
2204
- MINUTE = "MINUTE",
2205
- /** Second interval */
2206
- SECOND = "SECOND"
2207
- }
2208
- interface NestedAggregationNestedAggregationItem extends NestedAggregationNestedAggregationItemKindOneOf {
2209
- /** Value aggregation */
2210
- value?: AggregationValueAggregation;
2211
- /** Range aggregation */
2212
- range?: AggregationRangeAggregation;
2213
- /** Scalar aggregation */
2214
- scalar?: AggregationScalarAggregation;
2215
- /** Date histogram aggregation */
2216
- dateHistogram?: AggregationDateHistogramAggregation;
2217
- /** User-defined name of aggregation, should be unique, will appear in aggregation results */
2218
- name?: string | null;
2219
- /** Type of aggregation, client must provide matching aggregation field below */
2220
- type?: NestedAggregationNestedAggregationType;
2221
- /** Field to aggregate by, use dont notation to specify json path */
2222
- fieldPath?: string;
2223
- }
2224
- /** @oneof */
2225
- interface NestedAggregationNestedAggregationItemKindOneOf {
2226
- /** Value aggregation */
2227
- value?: AggregationValueAggregation;
2228
- /** Range aggregation */
2229
- range?: AggregationRangeAggregation;
2230
- /** Scalar aggregation */
2231
- scalar?: AggregationScalarAggregation;
2232
- /** Date histogram aggregation */
2233
- dateHistogram?: AggregationDateHistogramAggregation;
2234
- }
2235
- declare enum CommonAggregationType {
2236
- UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
2237
- /** An aggregation where result buckets are dynamically built - one per unique value */
2238
- VALUE = "VALUE",
2239
- /** An aggregation, where user can define set of ranges - each representing a bucket */
2240
- RANGE = "RANGE",
2241
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
2242
- SCALAR = "SCALAR",
2243
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
2244
- DATE_HISTOGRAM = "DATE_HISTOGRAM",
2245
- /** Multi-level aggregation, where each next aggregation is nested within previous one */
2246
- NESTED = "NESTED"
2247
- }
2248
- /** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
2249
- interface AggregationNestedAggregation {
2250
- /** Flattened list of aggregations, where each next aggregation is nested within previous one */
2251
- nestedAggregations?: NestedAggregationNestedAggregationItem[];
2252
- }
2253
- interface GroupByAggregation extends GroupByAggregationKindOneOf {
2254
- /** Value aggregation configuration */
2255
- value?: AggregationValueAggregation;
2256
- /** User-defined name of aggregation, should be unique, will appear in aggregation results */
2257
- name?: string | null;
2258
- /** Field to aggregate by */
2259
- fieldPath?: string;
2075
+ timeZone?: string | null;
2260
2076
  }
2261
2077
  /** @oneof */
2262
- interface GroupByAggregationKindOneOf {
2263
- /** Value aggregation configuration */
2264
- value?: AggregationValueAggregation;
2265
- }
2266
- interface CommonSearchDetails {
2267
- /** Defines how separate search terms in `expression` are combined */
2268
- mode?: SearchDetailsMode;
2269
- /** Search term or expression */
2270
- expression?: string | null;
2271
- /** Fields to search in. If empty - will search in all searchable fields. Use dot notation to specify json path */
2272
- fields?: string[];
2273
- /** Flag if should use auto fuzzy search (allowing typos by a managed proximity algorithm) */
2274
- fuzzy?: boolean;
2275
- }
2276
- declare enum SearchDetailsMode {
2277
- /** Any of the search terms must be present */
2278
- OR = "OR",
2279
- /** All search terms must be present */
2280
- AND = "AND"
2281
- }
2282
- interface PlatformPaging {
2283
- /** Number of items to load. */
2284
- limit?: number | null;
2285
- /** Number of items to skip in the current sort order. */
2286
- offset?: number | null;
2078
+ interface OffsetSearchPagingMethodOneOf {
2079
+ /** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
2080
+ paging?: Paging;
2287
2081
  }
2288
2082
  interface DeprecatedSearchCategoriesWithOffsetResponse {
2289
2083
  /** Categories which satisfy the provided query. */
@@ -2444,7 +2238,7 @@ interface UpdateCategoryVisibilityRequest {
2444
2238
  /** Latest revision of the category. */
2445
2239
  revision: string | null;
2446
2240
  /** Fields to return in the response. When not provided, these fields are not returned. */
2447
- fields?: RequestedFields[];
2241
+ fields?: SingleEntityOpsRequestedFields[];
2448
2242
  }
2449
2243
  interface UpdateCategoryVisibilityResponse {
2450
2244
  /** The updated Category. */
@@ -2490,8 +2284,6 @@ interface BulkUpdateCategoryVisibilityByFilterResponse {
2490
2284
  interface BulkDeleteCategoriesRequest {
2491
2285
  /** IDs of categories to be deleted. */
2492
2286
  categoryIds?: string[];
2493
- /** Fields to return in the response. When not provided, these fields are not returned. */
2494
- fields?: RequestedFields[];
2495
2287
  }
2496
2288
  interface BulkDeleteCategoriesResponse {
2497
2289
  /** Categories deleted by bulk action. */
@@ -3375,11 +3167,11 @@ interface CreateCategoryOptions {
3375
3167
  /** A reference to the tree that contains this category. */
3376
3168
  treeReference: TreeReference;
3377
3169
  /** Fields to return in the response. When not provided, these fields are not returned. */
3378
- fields?: RequestedFields[];
3170
+ fields?: SingleEntityOpsRequestedFields[];
3379
3171
  }
3380
3172
  interface GetCategoryOptions {
3381
3173
  /** Fields to return in the response. When not provided, these fields are not returned. */
3382
- fields?: RequestedFields[];
3174
+ fields?: SingleEntityOpsRequestedFields[];
3383
3175
  }
3384
3176
  interface UpdateCategory {
3385
3177
  /** Category ID. */
@@ -3413,7 +3205,10 @@ interface UpdateCategory {
3413
3205
  * @readonly
3414
3206
  */
3415
3207
  itemCounter?: number;
3416
- /** Category description. */
3208
+ /**
3209
+ * Category description.
3210
+ * > **Note:** This field is returned only when you pass `fields: "DESCRIPTION"` in the request.
3211
+ */
3417
3212
  description?: string | null;
3418
3213
  /**
3419
3214
  * Whether the category is visible to site visitors in dynamic pages (If not passed, the default is `false`).
@@ -3439,6 +3234,7 @@ interface UpdateCategory {
3439
3234
  /**
3440
3235
  * Category description which supports rich content. It is independent from `description` field and can be used instead of it or in addition to it.
3441
3236
  * In order to use this field you have to integrate with "Ricos" on frontend side. To learn how to do it visit https://ricos.js.org/.
3237
+ * > **Note:** This field is returned only when you pass `fields: "RICH_CONTENT_DESCRIPTION"` in the request.
3442
3238
  */
3443
3239
  richContentDescription?: RichContent;
3444
3240
  /**
@@ -3454,7 +3250,7 @@ interface UpdateCategoryOptions {
3454
3250
  /** A reference to the tree that contains this category. */
3455
3251
  treeReference: TreeReference;
3456
3252
  /** Fields to return in the response. When not provided, these fields are not returned. */
3457
- fields?: RequestedFields[];
3253
+ fields?: SingleEntityOpsRequestedFields[];
3458
3254
  }
3459
3255
  interface SearchCategoriesOptions {
3460
3256
  /** WQL query expression. */
@@ -3523,7 +3319,7 @@ interface UpdateCategoryVisibilityOptions {
3523
3319
  /** Latest revision of the category. */
3524
3320
  revision: string | null;
3525
3321
  /** Fields to return in the response. When not provided, these fields are not returned. */
3526
- fields?: RequestedFields[];
3322
+ fields?: SingleEntityOpsRequestedFields[];
3527
3323
  }
3528
3324
  interface BulkAddItemsToCategoryOptions {
3529
3325
  /** A reference to the tree that contains this category. */
@@ -3642,18 +3438,12 @@ declare const onCategoryItemsArrangedInCategory: ReturnType<typeof createEventMo
3642
3438
  type context_ActionEvent = ActionEvent;
3643
3439
  type context_Aggregation = Aggregation;
3644
3440
  type context_AggregationData = AggregationData;
3645
- type context_AggregationDateHistogramAggregation = AggregationDateHistogramAggregation;
3646
3441
  type context_AggregationKindOneOf = AggregationKindOneOf;
3647
- type context_AggregationNestedAggregation = AggregationNestedAggregation;
3648
- type context_AggregationRangeAggregation = AggregationRangeAggregation;
3649
3442
  type context_AggregationResults = AggregationResults;
3650
3443
  type context_AggregationResultsResultOneOf = AggregationResultsResultOneOf;
3651
3444
  type context_AggregationResultsScalarResult = AggregationResultsScalarResult;
3652
- type context_AggregationScalarAggregation = AggregationScalarAggregation;
3653
3445
  type context_AggregationType = AggregationType;
3654
3446
  declare const context_AggregationType: typeof AggregationType;
3655
- type context_AggregationValueAggregation = AggregationValueAggregation;
3656
- type context_AggregationValueAggregationOptionsOneOf = AggregationValueAggregationOptionsOneOf;
3657
3447
  type context_Alignment = Alignment;
3658
3448
  declare const context_Alignment: typeof Alignment;
3659
3449
  type context_AnchorData = AnchorData;
@@ -3728,17 +3518,7 @@ type context_CodeBlockData = CodeBlockData;
3728
3518
  type context_CollapsibleListData = CollapsibleListData;
3729
3519
  type context_ColorData = ColorData;
3730
3520
  type context_Colors = Colors;
3731
- type context_CommonAggregation = CommonAggregation;
3732
- type context_CommonAggregationKindOneOf = CommonAggregationKindOneOf;
3733
- type context_CommonAggregationType = CommonAggregationType;
3734
- declare const context_CommonAggregationType: typeof CommonAggregationType;
3735
3521
  type context_CommonCursors = CommonCursors;
3736
- type context_CommonScalarType = CommonScalarType;
3737
- declare const context_CommonScalarType: typeof CommonScalarType;
3738
- type context_CommonSearchDetails = CommonSearchDetails;
3739
- type context_CommonSortOrder = CommonSortOrder;
3740
- declare const context_CommonSortOrder: typeof CommonSortOrder;
3741
- type context_CommonSorting = CommonSorting;
3742
3522
  type context_CompactCategory = CompactCategory;
3743
3523
  type context_CountCategoriesOptions = CountCategoriesOptions;
3744
3524
  type context_CountCategoriesRequest = CountCategoriesRequest;
@@ -3756,8 +3536,6 @@ type context_CursorSearch = CursorSearch;
3756
3536
  type context_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
3757
3537
  type context_Cursors = Cursors;
3758
3538
  type context_DateHistogramAggregation = DateHistogramAggregation;
3759
- type context_DateHistogramAggregationInterval = DateHistogramAggregationInterval;
3760
- declare const context_DateHistogramAggregationInterval: typeof DateHistogramAggregationInterval;
3761
3539
  type context_DateHistogramResult = DateHistogramResult;
3762
3540
  type context_DateHistogramResults = DateHistogramResults;
3763
3541
  type context_Decoration = Decoration;
@@ -3805,8 +3583,6 @@ type context_GetCategoryRequest = GetCategoryRequest;
3805
3583
  type context_GetCategoryResponse = GetCategoryResponse;
3806
3584
  type context_GetCategoryResponseNonNullableFields = GetCategoryResponseNonNullableFields;
3807
3585
  type context_Gradient = Gradient;
3808
- type context_GroupByAggregation = GroupByAggregation;
3809
- type context_GroupByAggregationKindOneOf = GroupByAggregationKindOneOf;
3810
3586
  type context_GroupByValueResults = GroupByValueResults;
3811
3587
  type context_HTMLData = HTMLData;
3812
3588
  type context_HTMLDataDataOneOf = HTMLDataDataOneOf;
@@ -3883,10 +3659,6 @@ type context_MoveItemInCategoryResponse = MoveItemInCategoryResponse;
3883
3659
  type context_NestedAggregation = NestedAggregation;
3884
3660
  type context_NestedAggregationItem = NestedAggregationItem;
3885
3661
  type context_NestedAggregationItemKindOneOf = NestedAggregationItemKindOneOf;
3886
- type context_NestedAggregationNestedAggregationItem = NestedAggregationNestedAggregationItem;
3887
- type context_NestedAggregationNestedAggregationItemKindOneOf = NestedAggregationNestedAggregationItemKindOneOf;
3888
- type context_NestedAggregationNestedAggregationType = NestedAggregationNestedAggregationType;
3889
- declare const context_NestedAggregationNestedAggregationType: typeof NestedAggregationNestedAggregationType;
3890
3662
  type context_NestedAggregationResults = NestedAggregationResults;
3891
3663
  type context_NestedAggregationResultsResultOneOf = NestedAggregationResultsResultOneOf;
3892
3664
  type context_NestedAggregationType = NestedAggregationType;
@@ -3903,6 +3675,8 @@ declare const context_NodeType: typeof NodeType;
3903
3675
  type context_NullValue = NullValue;
3904
3676
  declare const context_NullValue: typeof NullValue;
3905
3677
  type context_Oembed = Oembed;
3678
+ type context_OffsetSearch = OffsetSearch;
3679
+ type context_OffsetSearchPagingMethodOneOf = OffsetSearchPagingMethodOneOf;
3906
3680
  type context_Option = Option;
3907
3681
  type context_OptionDesign = OptionDesign;
3908
3682
  type context_OptionLayout = OptionLayout;
@@ -3917,9 +3691,6 @@ type context_PagingMetadataV2 = PagingMetadataV2;
3917
3691
  type context_ParagraphData = ParagraphData;
3918
3692
  type context_ParentCategory = ParentCategory;
3919
3693
  type context_Permissions = Permissions;
3920
- type context_PlatformOffsetSearch = PlatformOffsetSearch;
3921
- type context_PlatformOffsetSearchPagingMethodOneOf = PlatformOffsetSearchPagingMethodOneOf;
3922
- type context_PlatformPaging = PlatformPaging;
3923
3694
  type context_PlatformPagingMetadataV2 = PlatformPagingMetadataV2;
3924
3695
  type context_PlaybackOptions = PlaybackOptions;
3925
3696
  type context_PluginContainerData = PluginContainerData;
@@ -3944,7 +3715,6 @@ type context_QueryCategoriesResponse = QueryCategoriesResponse;
3944
3715
  type context_QueryV2 = QueryV2;
3945
3716
  type context_QueryV2PagingMethodOneOf = QueryV2PagingMethodOneOf;
3946
3717
  type context_RangeAggregation = RangeAggregation;
3947
- type context_RangeAggregationRangeBucket = RangeAggregationRangeBucket;
3948
3718
  type context_RangeAggregationResult = RangeAggregationResult;
3949
3719
  type context_RangeBucket = RangeBucket;
3950
3720
  type context_RangeResult = RangeResult;
@@ -3964,14 +3734,14 @@ type context_SearchCategoriesRequest = SearchCategoriesRequest;
3964
3734
  type context_SearchCategoriesResponse = SearchCategoriesResponse;
3965
3735
  type context_SearchCategoriesResponseNonNullableFields = SearchCategoriesResponseNonNullableFields;
3966
3736
  type context_SearchDetails = SearchDetails;
3967
- type context_SearchDetailsMode = SearchDetailsMode;
3968
- declare const context_SearchDetailsMode: typeof SearchDetailsMode;
3969
3737
  type context_SeoSchema = SeoSchema;
3970
3738
  type context_SetArrangedItemsOptions = SetArrangedItemsOptions;
3971
3739
  type context_SetArrangedItemsRequest = SetArrangedItemsRequest;
3972
3740
  type context_SetArrangedItemsResponse = SetArrangedItemsResponse;
3973
3741
  type context_SetArrangedItemsResponseNonNullableFields = SetArrangedItemsResponseNonNullableFields;
3974
3742
  type context_Settings = Settings;
3743
+ type context_SingleEntityOpsRequestedFields = SingleEntityOpsRequestedFields;
3744
+ declare const context_SingleEntityOpsRequestedFields: typeof SingleEntityOpsRequestedFields;
3975
3745
  type context_SortDirection = SortDirection;
3976
3746
  declare const context_SortDirection: typeof SortDirection;
3977
3747
  type context_SortOrder = SortOrder;
@@ -4011,15 +3781,8 @@ type context_UpdateCategoryVisibilityRequest = UpdateCategoryVisibilityRequest;
4011
3781
  type context_UpdateCategoryVisibilityResponse = UpdateCategoryVisibilityResponse;
4012
3782
  type context_UpdateCategoryVisibilityResponseNonNullableFields = UpdateCategoryVisibilityResponseNonNullableFields;
4013
3783
  type context_ValueAggregation = ValueAggregation;
4014
- type context_ValueAggregationIncludeMissingValuesOptions = ValueAggregationIncludeMissingValuesOptions;
4015
- type context_ValueAggregationMissingValues = ValueAggregationMissingValues;
4016
- declare const context_ValueAggregationMissingValues: typeof ValueAggregationMissingValues;
4017
3784
  type context_ValueAggregationOptionsOneOf = ValueAggregationOptionsOneOf;
4018
3785
  type context_ValueAggregationResult = ValueAggregationResult;
4019
- type context_ValueAggregationSortDirection = ValueAggregationSortDirection;
4020
- declare const context_ValueAggregationSortDirection: typeof ValueAggregationSortDirection;
4021
- type context_ValueAggregationSortType = ValueAggregationSortType;
4022
- declare const context_ValueAggregationSortType: typeof ValueAggregationSortType;
4023
3786
  type context_ValueResult = ValueResult;
4024
3787
  type context_ValueResults = ValueResults;
4025
3788
  type context_VerticalAlignment = VerticalAlignment;
@@ -4064,7 +3827,7 @@ declare const context_setArrangedItems: typeof setArrangedItems;
4064
3827
  declare const context_updateCategory: typeof updateCategory;
4065
3828
  declare const context_updateCategoryVisibility: typeof updateCategoryVisibility;
4066
3829
  declare namespace context {
4067
- export { type context_ActionEvent as ActionEvent, type context_Aggregation as Aggregation, type context_AggregationData as AggregationData, type context_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, type context_AggregationKindOneOf as AggregationKindOneOf, type context_AggregationNestedAggregation as AggregationNestedAggregation, type context_AggregationRangeAggregation as AggregationRangeAggregation, type context_AggregationResults as AggregationResults, type context_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context_AggregationResultsScalarResult as AggregationResultsScalarResult, type context_AggregationScalarAggregation as AggregationScalarAggregation, context_AggregationType as AggregationType, type context_AggregationValueAggregation as AggregationValueAggregation, type context_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_App as App, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BaseEventMetadata as BaseEventMetadata, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreadcrumbItem as BreadcrumbItem, type context_BreadcrumbItemValues as BreadcrumbItemValues, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type context_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type context_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type context_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type context_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type context_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type context_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type context_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type context_BulkCategoriesResult as BulkCategoriesResult, type context_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type context_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type context_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type context_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type context_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type context_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type context_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type context_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type context_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type context_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type context_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type context_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type context_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type context_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type context_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type context_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type context_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type context_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type context_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type context_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type context_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type context_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type context_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type context_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type context_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, type context_Category as Category, type context_CategoryCreatedEnvelope as CategoryCreatedEnvelope, type context_CategoryDeletedEnvelope as CategoryDeletedEnvelope, type context_CategoryItemAddedToCategoryEnvelope as CategoryItemAddedToCategoryEnvelope, type context_CategoryItemRemovedFromCategoryEnvelope as CategoryItemRemovedFromCategoryEnvelope, type context_CategoryItemsArrangedInCategoryEnvelope as CategoryItemsArrangedInCategoryEnvelope, type context_CategoryMoved as CategoryMoved, type context_CategoryMovedEnvelope as CategoryMovedEnvelope, type context_CategoryNonNullableFields as CategoryNonNullableFields, type context_CategoryTreeNode as CategoryTreeNode, type context_CategoryUpdatedEnvelope as CategoryUpdatedEnvelope, type context_CellStyle as CellStyle, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonAggregation as CommonAggregation, type context_CommonAggregationKindOneOf as CommonAggregationKindOneOf, context_CommonAggregationType as CommonAggregationType, type context_CommonCursors as CommonCursors, context_CommonScalarType as CommonScalarType, type context_CommonSearchDetails as CommonSearchDetails, context_CommonSortOrder as CommonSortOrder, type context_CommonSorting as CommonSorting, type context_CompactCategory as CompactCategory, type context_CountCategoriesOptions as CountCategoriesOptions, type context_CountCategoriesRequest as CountCategoriesRequest, type context_CountCategoriesResponse as CountCategoriesResponse, type context_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type context_CreateCategoryOptions as CreateCategoryOptions, type context_CreateCategoryRequest as CreateCategoryRequest, type context_CreateCategoryResponse as CreateCategoryResponse, type context_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_DateHistogramAggregation as DateHistogramAggregation, context_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context_DateHistogramResult as DateHistogramResult, type context_DateHistogramResults as DateHistogramResults, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DeleteCategoryRequest as DeleteCategoryRequest, type context_DeleteCategoryResponse as DeleteCategoryResponse, type context_DeprecatedSearchCategoriesWithOffsetRequest as DeprecatedSearchCategoriesWithOffsetRequest, type context_DeprecatedSearchCategoriesWithOffsetResponse as DeprecatedSearchCategoriesWithOffsetResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_EventMetadata as EventMetadata, type context_ExtendedFields as ExtendedFields, type context_File as File, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetArrangedItemsRequest as GetArrangedItemsRequest, type context_GetArrangedItemsResponse as GetArrangedItemsResponse, type context_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type context_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type context_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type context_GetCategoryOptions as GetCategoryOptions, type context_GetCategoryRequest as GetCategoryRequest, type context_GetCategoryResponse as GetCategoryResponse, type context_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type context_Gradient as Gradient, type context_GroupByAggregation as GroupByAggregation, type context_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context_GroupByValueResults as GroupByValueResults, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, type context_ImageData as ImageData, type context_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context_InitialExpandedItems as InitialExpandedItems, context_Interval as Interval, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Item as Item, type context_ItemAddedToCategory as ItemAddedToCategory, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemReference as ItemReference, type context_ItemReferenceMetadata as ItemReferenceMetadata, type context_ItemRemovedFromCategory as ItemRemovedFromCategory, type context_ItemStyle as ItemStyle, type context_ItemsAddedToCategory as ItemsAddedToCategory, type context_ItemsArrangedInCategory as ItemsArrangedInCategory, type context_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context_Keyword as Keyword, type context_Layout as Layout, context_LayoutType as LayoutType, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, type context_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type context_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type context_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type context_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type context_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type context_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type context_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type context_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type context_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type context_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type context_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type context_ListTreesRequest as ListTreesRequest, type context_ListTreesResponse as ListTreesResponse, type context_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_MaskedCategory as MaskedCategory, type context_Media as Media, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_MissingValues as MissingValues, context_Mode as Mode, type context_MoveCategoryOptions as MoveCategoryOptions, type context_MoveCategoryRequest as MoveCategoryRequest, type context_MoveCategoryResponse as MoveCategoryResponse, type context_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type context_MoveItemInCategoryRequest as MoveItemInCategoryRequest, context_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type context_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type context_NestedAggregation as NestedAggregation, type context_NestedAggregationItem as NestedAggregationItem, type context_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context_NestedAggregationResults as NestedAggregationResults, type context_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context_NestedAggregationType as NestedAggregationType, type context_NestedResultValue as NestedResultValue, type context_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context_NestedResults as NestedResults, type context_NestedValueAggregationResult as NestedValueAggregationResult, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, type context_Oembed as Oembed, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, type context_PDFSettings as PDFSettings, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadata as PagingMetadata, type context_PagingMetadataV2 as PagingMetadataV2, type context_ParagraphData as ParagraphData, type context_ParentCategory as ParentCategory, type context_Permissions as Permissions, type context_PlatformOffsetSearch as PlatformOffsetSearch, type context_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context_PlatformPaging as PlatformPaging, type context_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollSettings as PollSettings, context_Position as Position, type context_QueryCategoriesRequest as QueryCategoriesRequest, type context_QueryCategoriesResponse as QueryCategoriesResponse, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_RangeAggregation as RangeAggregation, type context_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context_RangeAggregationResult as RangeAggregationResult, type context_RangeBucket as RangeBucket, type context_RangeResult as RangeResult, type context_RangeResults as RangeResults, type context_Rel as Rel, context_RequestedFields as RequestedFields, type context_RestoreInfo as RestoreInfo, type context_Results as Results, type context_RichContent as RichContent, type context_ScalarAggregation as ScalarAggregation, type context_ScalarResult as ScalarResult, context_ScalarType as ScalarType, type context_SearchCategoriesOptions as SearchCategoriesOptions, type context_SearchCategoriesRequest as SearchCategoriesRequest, type context_SearchCategoriesResponse as SearchCategoriesResponse, type context_SearchCategoriesResponseNonNullableFields as SearchCategoriesResponseNonNullableFields, type context_SearchDetails as SearchDetails, context_SearchDetailsMode as SearchDetailsMode, type context_SeoSchema as SeoSchema, type context_SetArrangedItemsOptions as SetArrangedItemsOptions, type context_SetArrangedItemsRequest as SetArrangedItemsRequest, type context_SetArrangedItemsResponse as SetArrangedItemsResponse, type context_SetArrangedItemsResponseNonNullableFields as SetArrangedItemsResponseNonNullableFields, type context_Settings as Settings, context_SortDirection as SortDirection, context_SortOrder as SortOrder, context_SortType as SortType, type context_Sorting as Sorting, context_Source as Source, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Styles as Styles, type context_TableCellData as TableCellData, type context_TableData as TableData, type context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TreeReference as TreeReference, context_Type as Type, type context_URI as URI, type context_UpdateCategory as UpdateCategory, type context_UpdateCategoryOptions as UpdateCategoryOptions, type context_UpdateCategoryRequest as UpdateCategoryRequest, type context_UpdateCategoryResponse as UpdateCategoryResponse, type context_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, type context_UpdateCategoryVisibilityOptions as UpdateCategoryVisibilityOptions, type context_UpdateCategoryVisibilityRequest as UpdateCategoryVisibilityRequest, type context_UpdateCategoryVisibilityResponse as UpdateCategoryVisibilityResponse, type context_UpdateCategoryVisibilityResponseNonNullableFields as UpdateCategoryVisibilityResponseNonNullableFields, type context_ValueAggregation as ValueAggregation, type context_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context_ValueAggregationMissingValues as ValueAggregationMissingValues, type context_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context_ValueAggregationResult as ValueAggregationResult, context_ValueAggregationSortDirection as ValueAggregationSortDirection, context_ValueAggregationSortType as ValueAggregationSortType, type context_ValueResult as ValueResult, type context_ValueResults as ValueResults, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, context_bulkAddItemToCategories as bulkAddItemToCategories, context_bulkAddItemsToCategory as bulkAddItemsToCategory, context_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, context_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, context_bulkUpdateCategories as bulkUpdateCategories, context_countCategories as countCategories, context_createCategory as createCategory, context_deleteCategory as deleteCategory, context_getArrangedItems as getArrangedItems, context_getCategory as getCategory, context_listCategoriesForItem as listCategoriesForItem, context_listItemsInCategory as listItemsInCategory, context_listTrees as listTrees, context_moveCategory as moveCategory, context_onCategoryCreated as onCategoryCreated, context_onCategoryDeleted as onCategoryDeleted, context_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, context_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, context_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, context_onCategoryMoved as onCategoryMoved, context_onCategoryUpdated as onCategoryUpdated, context_searchCategories as searchCategories, context_setArrangedItems as setArrangedItems, context_updateCategory as updateCategory, context_updateCategoryVisibility as updateCategoryVisibility };
3830
+ export { type context_ActionEvent as ActionEvent, type context_Aggregation as Aggregation, type context_AggregationData as AggregationData, type context_AggregationKindOneOf as AggregationKindOneOf, type context_AggregationResults as AggregationResults, type context_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context_AggregationResultsScalarResult as AggregationResultsScalarResult, context_AggregationType as AggregationType, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_App as App, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BaseEventMetadata as BaseEventMetadata, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreadcrumbItem as BreadcrumbItem, type context_BreadcrumbItemValues as BreadcrumbItemValues, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type context_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type context_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type context_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type context_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type context_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type context_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type context_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type context_BulkCategoriesResult as BulkCategoriesResult, type context_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type context_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type context_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type context_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type context_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type context_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type context_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type context_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type context_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type context_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type context_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type context_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type context_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type context_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type context_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type context_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type context_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type context_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type context_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type context_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type context_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type context_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type context_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type context_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type context_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, type context_Category as Category, type context_CategoryCreatedEnvelope as CategoryCreatedEnvelope, type context_CategoryDeletedEnvelope as CategoryDeletedEnvelope, type context_CategoryItemAddedToCategoryEnvelope as CategoryItemAddedToCategoryEnvelope, type context_CategoryItemRemovedFromCategoryEnvelope as CategoryItemRemovedFromCategoryEnvelope, type context_CategoryItemsArrangedInCategoryEnvelope as CategoryItemsArrangedInCategoryEnvelope, type context_CategoryMoved as CategoryMoved, type context_CategoryMovedEnvelope as CategoryMovedEnvelope, type context_CategoryNonNullableFields as CategoryNonNullableFields, type context_CategoryTreeNode as CategoryTreeNode, type context_CategoryUpdatedEnvelope as CategoryUpdatedEnvelope, type context_CellStyle as CellStyle, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCursors as CommonCursors, type context_CompactCategory as CompactCategory, type context_CountCategoriesOptions as CountCategoriesOptions, type context_CountCategoriesRequest as CountCategoriesRequest, type context_CountCategoriesResponse as CountCategoriesResponse, type context_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type context_CreateCategoryOptions as CreateCategoryOptions, type context_CreateCategoryRequest as CreateCategoryRequest, type context_CreateCategoryResponse as CreateCategoryResponse, type context_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_DateHistogramAggregation as DateHistogramAggregation, type context_DateHistogramResult as DateHistogramResult, type context_DateHistogramResults as DateHistogramResults, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DeleteCategoryRequest as DeleteCategoryRequest, type context_DeleteCategoryResponse as DeleteCategoryResponse, type context_DeprecatedSearchCategoriesWithOffsetRequest as DeprecatedSearchCategoriesWithOffsetRequest, type context_DeprecatedSearchCategoriesWithOffsetResponse as DeprecatedSearchCategoriesWithOffsetResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_EventMetadata as EventMetadata, type context_ExtendedFields as ExtendedFields, type context_File as File, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetArrangedItemsRequest as GetArrangedItemsRequest, type context_GetArrangedItemsResponse as GetArrangedItemsResponse, type context_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type context_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type context_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type context_GetCategoryOptions as GetCategoryOptions, type context_GetCategoryRequest as GetCategoryRequest, type context_GetCategoryResponse as GetCategoryResponse, type context_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type context_Gradient as Gradient, type context_GroupByValueResults as GroupByValueResults, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, type context_ImageData as ImageData, type context_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context_InitialExpandedItems as InitialExpandedItems, context_Interval as Interval, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Item as Item, type context_ItemAddedToCategory as ItemAddedToCategory, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemReference as ItemReference, type context_ItemReferenceMetadata as ItemReferenceMetadata, type context_ItemRemovedFromCategory as ItemRemovedFromCategory, type context_ItemStyle as ItemStyle, type context_ItemsAddedToCategory as ItemsAddedToCategory, type context_ItemsArrangedInCategory as ItemsArrangedInCategory, type context_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context_Keyword as Keyword, type context_Layout as Layout, context_LayoutType as LayoutType, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, type context_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type context_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type context_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type context_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type context_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type context_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type context_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type context_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type context_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type context_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type context_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type context_ListTreesRequest as ListTreesRequest, type context_ListTreesResponse as ListTreesResponse, type context_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_MaskedCategory as MaskedCategory, type context_Media as Media, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_MissingValues as MissingValues, context_Mode as Mode, type context_MoveCategoryOptions as MoveCategoryOptions, type context_MoveCategoryRequest as MoveCategoryRequest, type context_MoveCategoryResponse as MoveCategoryResponse, type context_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type context_MoveItemInCategoryRequest as MoveItemInCategoryRequest, context_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type context_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type context_NestedAggregation as NestedAggregation, type context_NestedAggregationItem as NestedAggregationItem, type context_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context_NestedAggregationResults as NestedAggregationResults, type context_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context_NestedAggregationType as NestedAggregationType, type context_NestedResultValue as NestedResultValue, type context_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context_NestedResults as NestedResults, type context_NestedValueAggregationResult as NestedValueAggregationResult, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, type context_Oembed as Oembed, type context_OffsetSearch as OffsetSearch, type context_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, type context_PDFSettings as PDFSettings, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadata as PagingMetadata, type context_PagingMetadataV2 as PagingMetadataV2, type context_ParagraphData as ParagraphData, type context_ParentCategory as ParentCategory, type context_Permissions as Permissions, type context_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollSettings as PollSettings, context_Position as Position, type context_QueryCategoriesRequest as QueryCategoriesRequest, type context_QueryCategoriesResponse as QueryCategoriesResponse, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_RangeAggregation as RangeAggregation, type context_RangeAggregationResult as RangeAggregationResult, type context_RangeBucket as RangeBucket, type context_RangeResult as RangeResult, type context_RangeResults as RangeResults, type context_Rel as Rel, context_RequestedFields as RequestedFields, type context_RestoreInfo as RestoreInfo, type context_Results as Results, type context_RichContent as RichContent, type context_ScalarAggregation as ScalarAggregation, type context_ScalarResult as ScalarResult, context_ScalarType as ScalarType, type context_SearchCategoriesOptions as SearchCategoriesOptions, type context_SearchCategoriesRequest as SearchCategoriesRequest, type context_SearchCategoriesResponse as SearchCategoriesResponse, type context_SearchCategoriesResponseNonNullableFields as SearchCategoriesResponseNonNullableFields, type context_SearchDetails as SearchDetails, type context_SeoSchema as SeoSchema, type context_SetArrangedItemsOptions as SetArrangedItemsOptions, type context_SetArrangedItemsRequest as SetArrangedItemsRequest, type context_SetArrangedItemsResponse as SetArrangedItemsResponse, type context_SetArrangedItemsResponseNonNullableFields as SetArrangedItemsResponseNonNullableFields, type context_Settings as Settings, context_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context_SortDirection as SortDirection, context_SortOrder as SortOrder, context_SortType as SortType, type context_Sorting as Sorting, context_Source as Source, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Styles as Styles, type context_TableCellData as TableCellData, type context_TableData as TableData, type context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TreeReference as TreeReference, context_Type as Type, type context_URI as URI, type context_UpdateCategory as UpdateCategory, type context_UpdateCategoryOptions as UpdateCategoryOptions, type context_UpdateCategoryRequest as UpdateCategoryRequest, type context_UpdateCategoryResponse as UpdateCategoryResponse, type context_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, type context_UpdateCategoryVisibilityOptions as UpdateCategoryVisibilityOptions, type context_UpdateCategoryVisibilityRequest as UpdateCategoryVisibilityRequest, type context_UpdateCategoryVisibilityResponse as UpdateCategoryVisibilityResponse, type context_UpdateCategoryVisibilityResponseNonNullableFields as UpdateCategoryVisibilityResponseNonNullableFields, type context_ValueAggregation as ValueAggregation, type context_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context_ValueAggregationResult as ValueAggregationResult, type context_ValueResult as ValueResult, type context_ValueResults as ValueResults, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, context_bulkAddItemToCategories as bulkAddItemToCategories, context_bulkAddItemsToCategory as bulkAddItemsToCategory, context_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, context_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, context_bulkUpdateCategories as bulkUpdateCategories, context_countCategories as countCategories, context_createCategory as createCategory, context_deleteCategory as deleteCategory, context_getArrangedItems as getArrangedItems, context_getCategory as getCategory, context_listCategoriesForItem as listCategoriesForItem, context_listItemsInCategory as listItemsInCategory, context_listTrees as listTrees, context_moveCategory as moveCategory, context_onCategoryCreated as onCategoryCreated, context_onCategoryDeleted as onCategoryDeleted, context_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, context_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, context_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, context_onCategoryMoved as onCategoryMoved, context_onCategoryUpdated as onCategoryUpdated, context_searchCategories as searchCategories, context_setArrangedItems as setArrangedItems, context_updateCategory as updateCategory, context_updateCategoryVisibility as updateCategoryVisibility };
4068
3831
  }
4069
3832
 
4070
3833
  export { context as categories };