@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.
@@ -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 index_d_ActionEvent = ActionEvent;
3643
3439
  type index_d_Aggregation = Aggregation;
3644
3440
  type index_d_AggregationData = AggregationData;
3645
- type index_d_AggregationDateHistogramAggregation = AggregationDateHistogramAggregation;
3646
3441
  type index_d_AggregationKindOneOf = AggregationKindOneOf;
3647
- type index_d_AggregationNestedAggregation = AggregationNestedAggregation;
3648
- type index_d_AggregationRangeAggregation = AggregationRangeAggregation;
3649
3442
  type index_d_AggregationResults = AggregationResults;
3650
3443
  type index_d_AggregationResultsResultOneOf = AggregationResultsResultOneOf;
3651
3444
  type index_d_AggregationResultsScalarResult = AggregationResultsScalarResult;
3652
- type index_d_AggregationScalarAggregation = AggregationScalarAggregation;
3653
3445
  type index_d_AggregationType = AggregationType;
3654
3446
  declare const index_d_AggregationType: typeof AggregationType;
3655
- type index_d_AggregationValueAggregation = AggregationValueAggregation;
3656
- type index_d_AggregationValueAggregationOptionsOneOf = AggregationValueAggregationOptionsOneOf;
3657
3447
  type index_d_Alignment = Alignment;
3658
3448
  declare const index_d_Alignment: typeof Alignment;
3659
3449
  type index_d_AnchorData = AnchorData;
@@ -3728,17 +3518,7 @@ type index_d_CodeBlockData = CodeBlockData;
3728
3518
  type index_d_CollapsibleListData = CollapsibleListData;
3729
3519
  type index_d_ColorData = ColorData;
3730
3520
  type index_d_Colors = Colors;
3731
- type index_d_CommonAggregation = CommonAggregation;
3732
- type index_d_CommonAggregationKindOneOf = CommonAggregationKindOneOf;
3733
- type index_d_CommonAggregationType = CommonAggregationType;
3734
- declare const index_d_CommonAggregationType: typeof CommonAggregationType;
3735
3521
  type index_d_CommonCursors = CommonCursors;
3736
- type index_d_CommonScalarType = CommonScalarType;
3737
- declare const index_d_CommonScalarType: typeof CommonScalarType;
3738
- type index_d_CommonSearchDetails = CommonSearchDetails;
3739
- type index_d_CommonSortOrder = CommonSortOrder;
3740
- declare const index_d_CommonSortOrder: typeof CommonSortOrder;
3741
- type index_d_CommonSorting = CommonSorting;
3742
3522
  type index_d_CompactCategory = CompactCategory;
3743
3523
  type index_d_CountCategoriesOptions = CountCategoriesOptions;
3744
3524
  type index_d_CountCategoriesRequest = CountCategoriesRequest;
@@ -3756,8 +3536,6 @@ type index_d_CursorSearch = CursorSearch;
3756
3536
  type index_d_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
3757
3537
  type index_d_Cursors = Cursors;
3758
3538
  type index_d_DateHistogramAggregation = DateHistogramAggregation;
3759
- type index_d_DateHistogramAggregationInterval = DateHistogramAggregationInterval;
3760
- declare const index_d_DateHistogramAggregationInterval: typeof DateHistogramAggregationInterval;
3761
3539
  type index_d_DateHistogramResult = DateHistogramResult;
3762
3540
  type index_d_DateHistogramResults = DateHistogramResults;
3763
3541
  type index_d_Decoration = Decoration;
@@ -3805,8 +3583,6 @@ type index_d_GetCategoryRequest = GetCategoryRequest;
3805
3583
  type index_d_GetCategoryResponse = GetCategoryResponse;
3806
3584
  type index_d_GetCategoryResponseNonNullableFields = GetCategoryResponseNonNullableFields;
3807
3585
  type index_d_Gradient = Gradient;
3808
- type index_d_GroupByAggregation = GroupByAggregation;
3809
- type index_d_GroupByAggregationKindOneOf = GroupByAggregationKindOneOf;
3810
3586
  type index_d_GroupByValueResults = GroupByValueResults;
3811
3587
  type index_d_HTMLData = HTMLData;
3812
3588
  type index_d_HTMLDataDataOneOf = HTMLDataDataOneOf;
@@ -3883,10 +3659,6 @@ type index_d_MoveItemInCategoryResponse = MoveItemInCategoryResponse;
3883
3659
  type index_d_NestedAggregation = NestedAggregation;
3884
3660
  type index_d_NestedAggregationItem = NestedAggregationItem;
3885
3661
  type index_d_NestedAggregationItemKindOneOf = NestedAggregationItemKindOneOf;
3886
- type index_d_NestedAggregationNestedAggregationItem = NestedAggregationNestedAggregationItem;
3887
- type index_d_NestedAggregationNestedAggregationItemKindOneOf = NestedAggregationNestedAggregationItemKindOneOf;
3888
- type index_d_NestedAggregationNestedAggregationType = NestedAggregationNestedAggregationType;
3889
- declare const index_d_NestedAggregationNestedAggregationType: typeof NestedAggregationNestedAggregationType;
3890
3662
  type index_d_NestedAggregationResults = NestedAggregationResults;
3891
3663
  type index_d_NestedAggregationResultsResultOneOf = NestedAggregationResultsResultOneOf;
3892
3664
  type index_d_NestedAggregationType = NestedAggregationType;
@@ -3903,6 +3675,8 @@ declare const index_d_NodeType: typeof NodeType;
3903
3675
  type index_d_NullValue = NullValue;
3904
3676
  declare const index_d_NullValue: typeof NullValue;
3905
3677
  type index_d_Oembed = Oembed;
3678
+ type index_d_OffsetSearch = OffsetSearch;
3679
+ type index_d_OffsetSearchPagingMethodOneOf = OffsetSearchPagingMethodOneOf;
3906
3680
  type index_d_Option = Option;
3907
3681
  type index_d_OptionDesign = OptionDesign;
3908
3682
  type index_d_OptionLayout = OptionLayout;
@@ -3917,9 +3691,6 @@ type index_d_PagingMetadataV2 = PagingMetadataV2;
3917
3691
  type index_d_ParagraphData = ParagraphData;
3918
3692
  type index_d_ParentCategory = ParentCategory;
3919
3693
  type index_d_Permissions = Permissions;
3920
- type index_d_PlatformOffsetSearch = PlatformOffsetSearch;
3921
- type index_d_PlatformOffsetSearchPagingMethodOneOf = PlatformOffsetSearchPagingMethodOneOf;
3922
- type index_d_PlatformPaging = PlatformPaging;
3923
3694
  type index_d_PlatformPagingMetadataV2 = PlatformPagingMetadataV2;
3924
3695
  type index_d_PlaybackOptions = PlaybackOptions;
3925
3696
  type index_d_PluginContainerData = PluginContainerData;
@@ -3944,7 +3715,6 @@ type index_d_QueryCategoriesResponse = QueryCategoriesResponse;
3944
3715
  type index_d_QueryV2 = QueryV2;
3945
3716
  type index_d_QueryV2PagingMethodOneOf = QueryV2PagingMethodOneOf;
3946
3717
  type index_d_RangeAggregation = RangeAggregation;
3947
- type index_d_RangeAggregationRangeBucket = RangeAggregationRangeBucket;
3948
3718
  type index_d_RangeAggregationResult = RangeAggregationResult;
3949
3719
  type index_d_RangeBucket = RangeBucket;
3950
3720
  type index_d_RangeResult = RangeResult;
@@ -3964,14 +3734,14 @@ type index_d_SearchCategoriesRequest = SearchCategoriesRequest;
3964
3734
  type index_d_SearchCategoriesResponse = SearchCategoriesResponse;
3965
3735
  type index_d_SearchCategoriesResponseNonNullableFields = SearchCategoriesResponseNonNullableFields;
3966
3736
  type index_d_SearchDetails = SearchDetails;
3967
- type index_d_SearchDetailsMode = SearchDetailsMode;
3968
- declare const index_d_SearchDetailsMode: typeof SearchDetailsMode;
3969
3737
  type index_d_SeoSchema = SeoSchema;
3970
3738
  type index_d_SetArrangedItemsOptions = SetArrangedItemsOptions;
3971
3739
  type index_d_SetArrangedItemsRequest = SetArrangedItemsRequest;
3972
3740
  type index_d_SetArrangedItemsResponse = SetArrangedItemsResponse;
3973
3741
  type index_d_SetArrangedItemsResponseNonNullableFields = SetArrangedItemsResponseNonNullableFields;
3974
3742
  type index_d_Settings = Settings;
3743
+ type index_d_SingleEntityOpsRequestedFields = SingleEntityOpsRequestedFields;
3744
+ declare const index_d_SingleEntityOpsRequestedFields: typeof SingleEntityOpsRequestedFields;
3975
3745
  type index_d_SortDirection = SortDirection;
3976
3746
  declare const index_d_SortDirection: typeof SortDirection;
3977
3747
  type index_d_SortOrder = SortOrder;
@@ -4011,15 +3781,8 @@ type index_d_UpdateCategoryVisibilityRequest = UpdateCategoryVisibilityRequest;
4011
3781
  type index_d_UpdateCategoryVisibilityResponse = UpdateCategoryVisibilityResponse;
4012
3782
  type index_d_UpdateCategoryVisibilityResponseNonNullableFields = UpdateCategoryVisibilityResponseNonNullableFields;
4013
3783
  type index_d_ValueAggregation = ValueAggregation;
4014
- type index_d_ValueAggregationIncludeMissingValuesOptions = ValueAggregationIncludeMissingValuesOptions;
4015
- type index_d_ValueAggregationMissingValues = ValueAggregationMissingValues;
4016
- declare const index_d_ValueAggregationMissingValues: typeof ValueAggregationMissingValues;
4017
3784
  type index_d_ValueAggregationOptionsOneOf = ValueAggregationOptionsOneOf;
4018
3785
  type index_d_ValueAggregationResult = ValueAggregationResult;
4019
- type index_d_ValueAggregationSortDirection = ValueAggregationSortDirection;
4020
- declare const index_d_ValueAggregationSortDirection: typeof ValueAggregationSortDirection;
4021
- type index_d_ValueAggregationSortType = ValueAggregationSortType;
4022
- declare const index_d_ValueAggregationSortType: typeof ValueAggregationSortType;
4023
3786
  type index_d_ValueResult = ValueResult;
4024
3787
  type index_d_ValueResults = ValueResults;
4025
3788
  type index_d_VerticalAlignment = VerticalAlignment;
@@ -4064,7 +3827,7 @@ declare const index_d_setArrangedItems: typeof setArrangedItems;
4064
3827
  declare const index_d_updateCategory: typeof updateCategory;
4065
3828
  declare const index_d_updateCategoryVisibility: typeof updateCategoryVisibility;
4066
3829
  declare namespace index_d {
4067
- export { type index_d_ActionEvent as ActionEvent, type index_d_Aggregation as Aggregation, type index_d_AggregationData as AggregationData, type index_d_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, type index_d_AggregationKindOneOf as AggregationKindOneOf, type index_d_AggregationNestedAggregation as AggregationNestedAggregation, type index_d_AggregationRangeAggregation as AggregationRangeAggregation, type index_d_AggregationResults as AggregationResults, type index_d_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d_AggregationScalarAggregation as AggregationScalarAggregation, index_d_AggregationType as AggregationType, type index_d_AggregationValueAggregation as AggregationValueAggregation, type index_d_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_App as App, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreadcrumbItem as BreadcrumbItem, type index_d_BreadcrumbItemValues as BreadcrumbItemValues, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type index_d_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type index_d_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type index_d_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type index_d_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type index_d_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type index_d_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type index_d_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type index_d_BulkCategoriesResult as BulkCategoriesResult, type index_d_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type index_d_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type index_d_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type index_d_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type index_d_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type index_d_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type index_d_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type index_d_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type index_d_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type index_d_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type index_d_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type index_d_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type index_d_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type index_d_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type index_d_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type index_d_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type index_d_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type index_d_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type index_d_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type index_d_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type index_d_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type index_d_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type index_d_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type index_d_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type index_d_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, type index_d_Category as Category, type index_d_CategoryCreatedEnvelope as CategoryCreatedEnvelope, type index_d_CategoryDeletedEnvelope as CategoryDeletedEnvelope, type index_d_CategoryItemAddedToCategoryEnvelope as CategoryItemAddedToCategoryEnvelope, type index_d_CategoryItemRemovedFromCategoryEnvelope as CategoryItemRemovedFromCategoryEnvelope, type index_d_CategoryItemsArrangedInCategoryEnvelope as CategoryItemsArrangedInCategoryEnvelope, type index_d_CategoryMoved as CategoryMoved, type index_d_CategoryMovedEnvelope as CategoryMovedEnvelope, type index_d_CategoryNonNullableFields as CategoryNonNullableFields, type index_d_CategoryTreeNode as CategoryTreeNode, type index_d_CategoryUpdatedEnvelope as CategoryUpdatedEnvelope, type index_d_CellStyle as CellStyle, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonAggregation as CommonAggregation, type index_d_CommonAggregationKindOneOf as CommonAggregationKindOneOf, index_d_CommonAggregationType as CommonAggregationType, type index_d_CommonCursors as CommonCursors, index_d_CommonScalarType as CommonScalarType, type index_d_CommonSearchDetails as CommonSearchDetails, index_d_CommonSortOrder as CommonSortOrder, type index_d_CommonSorting as CommonSorting, type index_d_CompactCategory as CompactCategory, type index_d_CountCategoriesOptions as CountCategoriesOptions, type index_d_CountCategoriesRequest as CountCategoriesRequest, type index_d_CountCategoriesResponse as CountCategoriesResponse, type index_d_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type index_d_CreateCategoryOptions as CreateCategoryOptions, type index_d_CreateCategoryRequest as CreateCategoryRequest, type index_d_CreateCategoryResponse as CreateCategoryResponse, type index_d_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_DateHistogramAggregation as DateHistogramAggregation, index_d_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d_DateHistogramResult as DateHistogramResult, type index_d_DateHistogramResults as DateHistogramResults, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DeleteCategoryRequest as DeleteCategoryRequest, type index_d_DeleteCategoryResponse as DeleteCategoryResponse, type index_d_DeprecatedSearchCategoriesWithOffsetRequest as DeprecatedSearchCategoriesWithOffsetRequest, type index_d_DeprecatedSearchCategoriesWithOffsetResponse as DeprecatedSearchCategoriesWithOffsetResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_EventMetadata as EventMetadata, type index_d_ExtendedFields as ExtendedFields, type index_d_File as File, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetArrangedItemsRequest as GetArrangedItemsRequest, type index_d_GetArrangedItemsResponse as GetArrangedItemsResponse, type index_d_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type index_d_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type index_d_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type index_d_GetCategoryOptions as GetCategoryOptions, type index_d_GetCategoryRequest as GetCategoryRequest, type index_d_GetCategoryResponse as GetCategoryResponse, type index_d_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_GroupByAggregation as GroupByAggregation, type index_d_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d_GroupByValueResults as GroupByValueResults, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, type index_d_ImageData as ImageData, type index_d_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d_InitialExpandedItems as InitialExpandedItems, index_d_Interval as Interval, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_Item as Item, type index_d_ItemAddedToCategory as ItemAddedToCategory, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemReference as ItemReference, type index_d_ItemReferenceMetadata as ItemReferenceMetadata, type index_d_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d_ItemStyle as ItemStyle, type index_d_ItemsAddedToCategory as ItemsAddedToCategory, type index_d_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d_Keyword as Keyword, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, type index_d_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type index_d_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type index_d_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type index_d_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type index_d_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type index_d_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type index_d_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type index_d_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type index_d_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type index_d_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type index_d_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type index_d_ListTreesRequest as ListTreesRequest, type index_d_ListTreesResponse as ListTreesResponse, type index_d_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_MaskedCategory as MaskedCategory, type index_d_Media as Media, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_MissingValues as MissingValues, index_d_Mode as Mode, type index_d_MoveCategoryOptions as MoveCategoryOptions, type index_d_MoveCategoryRequest as MoveCategoryRequest, type index_d_MoveCategoryResponse as MoveCategoryResponse, type index_d_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type index_d_MoveItemInCategoryRequest as MoveItemInCategoryRequest, index_d_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type index_d_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type index_d_NestedAggregation as NestedAggregation, type index_d_NestedAggregationItem as NestedAggregationItem, type index_d_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d_NestedAggregationResults as NestedAggregationResults, type index_d_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d_NestedAggregationType as NestedAggregationType, type index_d_NestedResultValue as NestedResultValue, type index_d_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d_NestedResults as NestedResults, type index_d_NestedValueAggregationResult as NestedValueAggregationResult, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, type index_d_Oembed as Oembed, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, type index_d_PDFSettings as PDFSettings, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadata as PagingMetadata, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_ParagraphData as ParagraphData, type index_d_ParentCategory as ParentCategory, type index_d_Permissions as Permissions, type index_d_PlatformOffsetSearch as PlatformOffsetSearch, type index_d_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d_PlatformPaging as PlatformPaging, type index_d_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollSettings as PollSettings, index_d_Position as Position, type index_d_QueryCategoriesRequest as QueryCategoriesRequest, type index_d_QueryCategoriesResponse as QueryCategoriesResponse, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_RangeAggregation as RangeAggregation, type index_d_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d_RangeAggregationResult as RangeAggregationResult, type index_d_RangeBucket as RangeBucket, type index_d_RangeResult as RangeResult, type index_d_RangeResults as RangeResults, type index_d_Rel as Rel, index_d_RequestedFields as RequestedFields, type index_d_RestoreInfo as RestoreInfo, type index_d_Results as Results, type index_d_RichContent as RichContent, type index_d_ScalarAggregation as ScalarAggregation, type index_d_ScalarResult as ScalarResult, index_d_ScalarType as ScalarType, type index_d_SearchCategoriesOptions as SearchCategoriesOptions, type index_d_SearchCategoriesRequest as SearchCategoriesRequest, type index_d_SearchCategoriesResponse as SearchCategoriesResponse, type index_d_SearchCategoriesResponseNonNullableFields as SearchCategoriesResponseNonNullableFields, type index_d_SearchDetails as SearchDetails, index_d_SearchDetailsMode as SearchDetailsMode, type index_d_SeoSchema as SeoSchema, type index_d_SetArrangedItemsOptions as SetArrangedItemsOptions, type index_d_SetArrangedItemsRequest as SetArrangedItemsRequest, type index_d_SetArrangedItemsResponse as SetArrangedItemsResponse, type index_d_SetArrangedItemsResponseNonNullableFields as SetArrangedItemsResponseNonNullableFields, type index_d_Settings as Settings, index_d_SortDirection as SortDirection, index_d_SortOrder as SortOrder, index_d_SortType as SortType, type index_d_Sorting as Sorting, index_d_Source as Source, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Styles as Styles, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, type index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TreeReference as TreeReference, index_d_Type as Type, type index_d_URI as URI, type index_d_UpdateCategory as UpdateCategory, type index_d_UpdateCategoryOptions as UpdateCategoryOptions, type index_d_UpdateCategoryRequest as UpdateCategoryRequest, type index_d_UpdateCategoryResponse as UpdateCategoryResponse, type index_d_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, type index_d_UpdateCategoryVisibilityOptions as UpdateCategoryVisibilityOptions, type index_d_UpdateCategoryVisibilityRequest as UpdateCategoryVisibilityRequest, type index_d_UpdateCategoryVisibilityResponse as UpdateCategoryVisibilityResponse, type index_d_UpdateCategoryVisibilityResponseNonNullableFields as UpdateCategoryVisibilityResponseNonNullableFields, type index_d_ValueAggregation as ValueAggregation, type index_d_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d_ValueAggregationResult as ValueAggregationResult, index_d_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d_ValueAggregationSortType as ValueAggregationSortType, type index_d_ValueResult as ValueResult, type index_d_ValueResults as ValueResults, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, index_d_bulkAddItemToCategories as bulkAddItemToCategories, index_d_bulkAddItemsToCategory as bulkAddItemsToCategory, index_d_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, index_d_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, index_d_bulkUpdateCategories as bulkUpdateCategories, index_d_countCategories as countCategories, index_d_createCategory as createCategory, index_d_deleteCategory as deleteCategory, index_d_getArrangedItems as getArrangedItems, index_d_getCategory as getCategory, index_d_listCategoriesForItem as listCategoriesForItem, index_d_listItemsInCategory as listItemsInCategory, index_d_listTrees as listTrees, index_d_moveCategory as moveCategory, index_d_onCategoryCreated as onCategoryCreated, index_d_onCategoryDeleted as onCategoryDeleted, index_d_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, index_d_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, index_d_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, index_d_onCategoryMoved as onCategoryMoved, index_d_onCategoryUpdated as onCategoryUpdated, index_d_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
3830
+ export { type index_d_ActionEvent as ActionEvent, type index_d_Aggregation as Aggregation, type index_d_AggregationData as AggregationData, type index_d_AggregationKindOneOf as AggregationKindOneOf, type index_d_AggregationResults as AggregationResults, type index_d_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d_AggregationType as AggregationType, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_App as App, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreadcrumbItem as BreadcrumbItem, type index_d_BreadcrumbItemValues as BreadcrumbItemValues, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type index_d_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type index_d_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type index_d_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type index_d_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type index_d_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type index_d_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type index_d_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type index_d_BulkCategoriesResult as BulkCategoriesResult, type index_d_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type index_d_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type index_d_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type index_d_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type index_d_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type index_d_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type index_d_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type index_d_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type index_d_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type index_d_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type index_d_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type index_d_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type index_d_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type index_d_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type index_d_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type index_d_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type index_d_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type index_d_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type index_d_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type index_d_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type index_d_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type index_d_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type index_d_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type index_d_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type index_d_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, type index_d_Category as Category, type index_d_CategoryCreatedEnvelope as CategoryCreatedEnvelope, type index_d_CategoryDeletedEnvelope as CategoryDeletedEnvelope, type index_d_CategoryItemAddedToCategoryEnvelope as CategoryItemAddedToCategoryEnvelope, type index_d_CategoryItemRemovedFromCategoryEnvelope as CategoryItemRemovedFromCategoryEnvelope, type index_d_CategoryItemsArrangedInCategoryEnvelope as CategoryItemsArrangedInCategoryEnvelope, type index_d_CategoryMoved as CategoryMoved, type index_d_CategoryMovedEnvelope as CategoryMovedEnvelope, type index_d_CategoryNonNullableFields as CategoryNonNullableFields, type index_d_CategoryTreeNode as CategoryTreeNode, type index_d_CategoryUpdatedEnvelope as CategoryUpdatedEnvelope, type index_d_CellStyle as CellStyle, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCursors as CommonCursors, type index_d_CompactCategory as CompactCategory, type index_d_CountCategoriesOptions as CountCategoriesOptions, type index_d_CountCategoriesRequest as CountCategoriesRequest, type index_d_CountCategoriesResponse as CountCategoriesResponse, type index_d_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type index_d_CreateCategoryOptions as CreateCategoryOptions, type index_d_CreateCategoryRequest as CreateCategoryRequest, type index_d_CreateCategoryResponse as CreateCategoryResponse, type index_d_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_DateHistogramAggregation as DateHistogramAggregation, type index_d_DateHistogramResult as DateHistogramResult, type index_d_DateHistogramResults as DateHistogramResults, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DeleteCategoryRequest as DeleteCategoryRequest, type index_d_DeleteCategoryResponse as DeleteCategoryResponse, type index_d_DeprecatedSearchCategoriesWithOffsetRequest as DeprecatedSearchCategoriesWithOffsetRequest, type index_d_DeprecatedSearchCategoriesWithOffsetResponse as DeprecatedSearchCategoriesWithOffsetResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_EventMetadata as EventMetadata, type index_d_ExtendedFields as ExtendedFields, type index_d_File as File, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetArrangedItemsRequest as GetArrangedItemsRequest, type index_d_GetArrangedItemsResponse as GetArrangedItemsResponse, type index_d_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type index_d_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type index_d_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type index_d_GetCategoryOptions as GetCategoryOptions, type index_d_GetCategoryRequest as GetCategoryRequest, type index_d_GetCategoryResponse as GetCategoryResponse, type index_d_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_GroupByValueResults as GroupByValueResults, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, type index_d_ImageData as ImageData, type index_d_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d_InitialExpandedItems as InitialExpandedItems, index_d_Interval as Interval, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_Item as Item, type index_d_ItemAddedToCategory as ItemAddedToCategory, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemReference as ItemReference, type index_d_ItemReferenceMetadata as ItemReferenceMetadata, type index_d_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d_ItemStyle as ItemStyle, type index_d_ItemsAddedToCategory as ItemsAddedToCategory, type index_d_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d_Keyword as Keyword, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, type index_d_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type index_d_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type index_d_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type index_d_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type index_d_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type index_d_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type index_d_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type index_d_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type index_d_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type index_d_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type index_d_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type index_d_ListTreesRequest as ListTreesRequest, type index_d_ListTreesResponse as ListTreesResponse, type index_d_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_MaskedCategory as MaskedCategory, type index_d_Media as Media, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_MissingValues as MissingValues, index_d_Mode as Mode, type index_d_MoveCategoryOptions as MoveCategoryOptions, type index_d_MoveCategoryRequest as MoveCategoryRequest, type index_d_MoveCategoryResponse as MoveCategoryResponse, type index_d_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type index_d_MoveItemInCategoryRequest as MoveItemInCategoryRequest, index_d_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type index_d_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type index_d_NestedAggregation as NestedAggregation, type index_d_NestedAggregationItem as NestedAggregationItem, type index_d_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d_NestedAggregationResults as NestedAggregationResults, type index_d_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d_NestedAggregationType as NestedAggregationType, type index_d_NestedResultValue as NestedResultValue, type index_d_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d_NestedResults as NestedResults, type index_d_NestedValueAggregationResult as NestedValueAggregationResult, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, type index_d_Oembed as Oembed, type index_d_OffsetSearch as OffsetSearch, type index_d_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, type index_d_PDFSettings as PDFSettings, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadata as PagingMetadata, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_ParagraphData as ParagraphData, type index_d_ParentCategory as ParentCategory, type index_d_Permissions as Permissions, type index_d_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollSettings as PollSettings, index_d_Position as Position, type index_d_QueryCategoriesRequest as QueryCategoriesRequest, type index_d_QueryCategoriesResponse as QueryCategoriesResponse, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_RangeAggregation as RangeAggregation, type index_d_RangeAggregationResult as RangeAggregationResult, type index_d_RangeBucket as RangeBucket, type index_d_RangeResult as RangeResult, type index_d_RangeResults as RangeResults, type index_d_Rel as Rel, index_d_RequestedFields as RequestedFields, type index_d_RestoreInfo as RestoreInfo, type index_d_Results as Results, type index_d_RichContent as RichContent, type index_d_ScalarAggregation as ScalarAggregation, type index_d_ScalarResult as ScalarResult, index_d_ScalarType as ScalarType, type index_d_SearchCategoriesOptions as SearchCategoriesOptions, type index_d_SearchCategoriesRequest as SearchCategoriesRequest, type index_d_SearchCategoriesResponse as SearchCategoriesResponse, type index_d_SearchCategoriesResponseNonNullableFields as SearchCategoriesResponseNonNullableFields, type index_d_SearchDetails as SearchDetails, type index_d_SeoSchema as SeoSchema, type index_d_SetArrangedItemsOptions as SetArrangedItemsOptions, type index_d_SetArrangedItemsRequest as SetArrangedItemsRequest, type index_d_SetArrangedItemsResponse as SetArrangedItemsResponse, type index_d_SetArrangedItemsResponseNonNullableFields as SetArrangedItemsResponseNonNullableFields, type index_d_Settings as Settings, index_d_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d_SortDirection as SortDirection, index_d_SortOrder as SortOrder, index_d_SortType as SortType, type index_d_Sorting as Sorting, index_d_Source as Source, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Styles as Styles, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, type index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TreeReference as TreeReference, index_d_Type as Type, type index_d_URI as URI, type index_d_UpdateCategory as UpdateCategory, type index_d_UpdateCategoryOptions as UpdateCategoryOptions, type index_d_UpdateCategoryRequest as UpdateCategoryRequest, type index_d_UpdateCategoryResponse as UpdateCategoryResponse, type index_d_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, type index_d_UpdateCategoryVisibilityOptions as UpdateCategoryVisibilityOptions, type index_d_UpdateCategoryVisibilityRequest as UpdateCategoryVisibilityRequest, type index_d_UpdateCategoryVisibilityResponse as UpdateCategoryVisibilityResponse, type index_d_UpdateCategoryVisibilityResponseNonNullableFields as UpdateCategoryVisibilityResponseNonNullableFields, type index_d_ValueAggregation as ValueAggregation, type index_d_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d_ValueAggregationResult as ValueAggregationResult, type index_d_ValueResult as ValueResult, type index_d_ValueResults as ValueResults, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, index_d_bulkAddItemToCategories as bulkAddItemToCategories, index_d_bulkAddItemsToCategory as bulkAddItemsToCategory, index_d_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, index_d_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, index_d_bulkUpdateCategories as bulkUpdateCategories, index_d_countCategories as countCategories, index_d_createCategory as createCategory, index_d_deleteCategory as deleteCategory, index_d_getArrangedItems as getArrangedItems, index_d_getCategory as getCategory, index_d_listCategoriesForItem as listCategoriesForItem, index_d_listItemsInCategory as listItemsInCategory, index_d_listTrees as listTrees, index_d_moveCategory as moveCategory, index_d_onCategoryCreated as onCategoryCreated, index_d_onCategoryDeleted as onCategoryDeleted, index_d_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, index_d_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, index_d_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, index_d_onCategoryMoved as onCategoryMoved, index_d_onCategoryUpdated as onCategoryUpdated, index_d_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
4068
3831
  }
4069
3832
 
4070
3833
  export { index_d as categories };