@wix/categories 1.0.66 → 1.0.68

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.66",
3
+ "version": "1.0.68",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -21,7 +21,7 @@
21
21
  "type-bundles"
22
22
  ],
23
23
  "dependencies": {
24
- "@wix/categories_categories": "1.0.42"
24
+ "@wix/categories_categories": "1.0.44"
25
25
  },
26
26
  "devDependencies": {
27
27
  "glob": "^10.4.1",
@@ -46,5 +46,5 @@
46
46
  "fqdn": ""
47
47
  }
48
48
  },
49
- "falconPackageHash": "e0815e88fad038abee98b4b5de2fb28255bcfda0d220d48c21e4bf42"
49
+ "falconPackageHash": "07af8318741037fce9e9a50486a86771185a60096debe7f65f9588b1"
50
50
  }
@@ -2036,6 +2036,7 @@ interface CreateCategoryRequest {
2036
2036
  fields?: SingleEntityOpsRequestedFields[];
2037
2037
  }
2038
2038
  declare enum SingleEntityOpsRequestedFields {
2039
+ /** Not implemented. */
2039
2040
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
2040
2041
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
2041
2042
  DESCRIPTION = "DESCRIPTION",
@@ -2121,7 +2122,9 @@ interface Sorting {
2121
2122
  order?: SortOrder;
2122
2123
  }
2123
2124
  declare enum SortOrder {
2125
+ /** Ascending order. */
2124
2126
  ASC = "ASC",
2127
+ /** Descending order. */
2125
2128
  DESC = "DESC"
2126
2129
  }
2127
2130
  interface CursorPaging {
@@ -2136,6 +2139,7 @@ interface CursorPaging {
2136
2139
  cursor?: string | null;
2137
2140
  }
2138
2141
  declare enum RequestedFields {
2142
+ /** Not implemented. */
2139
2143
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
2140
2144
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO"
2141
2145
  }
@@ -2268,21 +2272,21 @@ interface RangeBucket {
2268
2272
  to?: number | null;
2269
2273
  }
2270
2274
  declare enum SortType {
2271
- /** Should sort by number of matches */
2275
+ /** Sort by number of matches. */
2272
2276
  COUNT = "COUNT",
2273
- /** Should sort by value of the field alphabetically */
2277
+ /** Sort alphabetically by field value. */
2274
2278
  VALUE = "VALUE"
2275
2279
  }
2276
2280
  declare enum SortDirection {
2277
- /** Should sort in descending order */
2281
+ /** Sort in descending order. */
2278
2282
  DESC = "DESC",
2279
- /** Should sort in ascending order */
2283
+ /** Sort in ascending order. */
2280
2284
  ASC = "ASC"
2281
2285
  }
2282
2286
  declare enum MissingValues {
2283
- /** Should missing values be excluded from the aggregation results */
2287
+ /** Exclude missing values from the aggregation results. */
2284
2288
  EXCLUDE = "EXCLUDE",
2285
- /** Should missing values be included in the aggregation results */
2289
+ /** Included missing values in the aggregation results. */
2286
2290
  INCLUDE = "INCLUDE"
2287
2291
  }
2288
2292
  interface IncludeMissingValuesOptions {
@@ -2291,27 +2295,30 @@ interface IncludeMissingValuesOptions {
2291
2295
  }
2292
2296
  declare enum ScalarType {
2293
2297
  UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
2294
- /** Count of distinct values */
2298
+ /** Count of distinct values. */
2295
2299
  COUNT_DISTINCT = "COUNT_DISTINCT",
2296
- /** Minimum value */
2300
+ /** Minimum value. */
2297
2301
  MIN = "MIN",
2298
- /** Maximum value */
2302
+ /** Maximum value. */
2299
2303
  MAX = "MAX",
2300
- /** Sum of values */
2304
+ /** Sum of values. */
2301
2305
  SUM = "SUM",
2302
- /** Average of values */
2306
+ /** Average of values. */
2303
2307
  AVG = "AVG"
2304
2308
  }
2305
2309
  interface ValueAggregation extends ValueAggregationOptionsOneOf {
2306
2310
  /** Options for including missing values */
2307
2311
  includeOptions?: IncludeMissingValuesOptions;
2308
- /** Should sort by number of matches or value of the field */
2312
+ /** Type of sort to perform. */
2309
2313
  sortType?: SortType;
2310
- /** Should sort in ascending or descending order */
2314
+ /** Direction to sort in. */
2311
2315
  sortDirection?: SortDirection;
2312
2316
  /** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
2313
2317
  limit?: number | null;
2314
- /** Should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
2318
+ /**
2319
+ * Whether missing values are included in the aggregation results.
2320
+ * Default: `EXCLUDE`
2321
+ */
2315
2322
  missingValues?: MissingValues;
2316
2323
  }
2317
2324
  /** @oneof */
@@ -2320,14 +2327,15 @@ interface ValueAggregationOptionsOneOf {
2320
2327
  includeOptions?: IncludeMissingValuesOptions;
2321
2328
  }
2322
2329
  declare enum NestedAggregationType {
2330
+ /** Unknown aggregation type. */
2323
2331
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
2324
- /** An aggregation where result buckets are dynamically built - one per unique value */
2332
+ /** An aggregation where result buckets are dynamically built - one per unique value. */
2325
2333
  VALUE = "VALUE",
2326
- /** An aggregation, where user can define set of ranges - each representing a bucket */
2334
+ /** An aggregation, where user can define set of ranges - each representing a bucket. */
2327
2335
  RANGE = "RANGE",
2328
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
2336
+ /** A single-value metric aggregation - such as min, max, sum, and avg. */
2329
2337
  SCALAR = "SCALAR",
2330
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
2338
+ /** An aggregation, where result buckets are dynamically built - one per time interval such as hour, day, and week. */
2331
2339
  DATE_HISTOGRAM = "DATE_HISTOGRAM"
2332
2340
  }
2333
2341
  interface RangeAggregation {
@@ -2370,7 +2378,7 @@ interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
2370
2378
  dateHistogram?: DateHistogramAggregation;
2371
2379
  /** User-defined name of aggregation, should be unique, will appear in aggregation results */
2372
2380
  name?: string | null;
2373
- /** Type of aggregation, client must provide matching aggregation field below */
2381
+ /** Type of aggregation client must provide matching aggregation field below */
2374
2382
  type?: NestedAggregationType;
2375
2383
  /** Field to aggregate by, use dont notation to specify json path */
2376
2384
  fieldPath?: string;
@@ -2388,15 +2396,15 @@ interface NestedAggregationItemKindOneOf {
2388
2396
  }
2389
2397
  declare enum AggregationType {
2390
2398
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
2391
- /** An aggregation where result buckets are dynamically built - one per unique value */
2399
+ /** An aggregation where result buckets are dynamically built - one per unique value. */
2392
2400
  VALUE = "VALUE",
2393
- /** An aggregation, where user can define set of ranges - each representing a bucket */
2401
+ /** An aggregation, where user can define set of ranges - each representing a bucket. */
2394
2402
  RANGE = "RANGE",
2395
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
2403
+ /** A single-value metric aggregation - such as min, max, sum, and avg. */
2396
2404
  SCALAR = "SCALAR",
2397
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
2405
+ /** An aggregation, where result buckets are dynamically built - one per time interval such as hour, day, and week. */
2398
2406
  DATE_HISTOGRAM = "DATE_HISTOGRAM",
2399
- /** Multi-level aggregation, where each next aggregation is nested within previous one */
2407
+ /** Multi-level aggregation, where each next aggregation is nested within the previous one. */
2400
2408
  NESTED = "NESTED"
2401
2409
  }
2402
2410
  /** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
@@ -2405,13 +2413,7 @@ interface NestedAggregation {
2405
2413
  nestedAggregations?: NestedAggregationItem[];
2406
2414
  }
2407
2415
  interface SearchDetails {
2408
- /**
2409
- * Defines how separate search terms in `expression` are combined.
2410
- *
2411
- * Supported values:
2412
- * + `OR` - Any of the search terms must be present
2413
- * + `AND` - All search terms must be present
2414
- */
2416
+ /** Defines how separate search terms in `expression` are combined. */
2415
2417
  mode?: Mode;
2416
2418
  /** Search term or expression. */
2417
2419
  expression?: string | null;
@@ -2425,9 +2427,9 @@ interface SearchDetails {
2425
2427
  fuzzy?: boolean;
2426
2428
  }
2427
2429
  declare enum Mode {
2428
- /** Any of the search terms must be present */
2430
+ /** Any of the search terms must be present. */
2429
2431
  OR = "OR",
2430
- /** All search terms must be present */
2432
+ /** All search terms must be present. */
2431
2433
  AND = "AND"
2432
2434
  }
2433
2435
  interface SearchCategoriesResponse {
@@ -2820,28 +2822,6 @@ interface UpdateCategoryVisibilityResponse {
2820
2822
  /** Updated category. */
2821
2823
  category?: Category;
2822
2824
  }
2823
- interface BulkUpdateCategoryVisibilityRequest {
2824
- /** IDs of the categories to update. */
2825
- categoryIds?: string[];
2826
- /** value to set `visible` to. This value will be set for all categories in the request */
2827
- visible?: boolean;
2828
- /** Category tree reference details. */
2829
- treeReference?: TreeReference;
2830
- /**
2831
- * Whether to return the category entity in the response.
2832
- *
2833
- * Default: `false`
2834
- */
2835
- returnEntity?: boolean;
2836
- /** Fields to include in the response. */
2837
- fields?: RequestedFields[];
2838
- }
2839
- interface BulkUpdateCategoryVisibilityResponse {
2840
- /** Categories updated by bulk action. */
2841
- results?: BulkCategoriesResult[];
2842
- /** Bulk action metadata. */
2843
- bulkActionMetadata?: BulkActionMetadata;
2844
- }
2845
2825
  interface BulkShowCategoriesRequest {
2846
2826
  /** IDs of the categories to update. */
2847
2827
  categoryIds: string[];
@@ -4426,8 +4406,6 @@ type context_BulkUpdateCategoriesResponse = BulkUpdateCategoriesResponse;
4426
4406
  type context_BulkUpdateCategoriesResponseNonNullableFields = BulkUpdateCategoriesResponseNonNullableFields;
4427
4407
  type context_BulkUpdateCategoryVisibilityByFilterRequest = BulkUpdateCategoryVisibilityByFilterRequest;
4428
4408
  type context_BulkUpdateCategoryVisibilityByFilterResponse = BulkUpdateCategoryVisibilityByFilterResponse;
4429
- type context_BulkUpdateCategoryVisibilityRequest = BulkUpdateCategoryVisibilityRequest;
4430
- type context_BulkUpdateCategoryVisibilityResponse = BulkUpdateCategoryVisibilityResponse;
4431
4409
  type context_BulletedListData = BulletedListData;
4432
4410
  type context_ButtonData = ButtonData;
4433
4411
  type context_CaptionData = CaptionData;
@@ -4767,7 +4745,7 @@ declare const context_setArrangedItems: typeof setArrangedItems;
4767
4745
  declare const context_updateCategory: typeof updateCategory;
4768
4746
  declare const context_updateCategoryVisibility: typeof updateCategoryVisibility;
4769
4747
  declare namespace context {
4770
- 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_Breadcrumb as Breadcrumb, type context_BreadcrumbsInfo as BreadcrumbsInfo, 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_BulkShowCategoriesOptions as BulkShowCategoriesOptions, type context_BulkShowCategoriesRequest as BulkShowCategoriesRequest, type context_BulkShowCategoriesResponse as BulkShowCategoriesResponse, type context_BulkShowCategoriesResponseNonNullableFields as BulkShowCategoriesResponseNonNullableFields, 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_CaptionData as CaptionData, type context_CategoriesQueryBuilder as CategoriesQueryBuilder, type context_CategoriesQueryResult as CategoriesQueryResult, 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_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_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, 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_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_QueryCategoriesOptions as QueryCategoriesOptions, type context_QueryCategoriesRequest as QueryCategoriesRequest, type context_QueryCategoriesResponse as QueryCategoriesResponse, type context_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, 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, type context__publicOnCategoryCreatedType as _publicOnCategoryCreatedType, type context__publicOnCategoryDeletedType as _publicOnCategoryDeletedType, type context__publicOnCategoryItemAddedToCategoryType as _publicOnCategoryItemAddedToCategoryType, type context__publicOnCategoryItemRemovedFromCategoryType as _publicOnCategoryItemRemovedFromCategoryType, type context__publicOnCategoryItemsArrangedInCategoryType as _publicOnCategoryItemsArrangedInCategoryType, type context__publicOnCategoryMovedType as _publicOnCategoryMovedType, type context__publicOnCategoryUpdatedType as _publicOnCategoryUpdatedType, context_bulkAddItemToCategories as bulkAddItemToCategories, context_bulkAddItemsToCategory as bulkAddItemsToCategory, context_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, context_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, context_bulkShowCategories as bulkShowCategories, 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, onCategoryCreated$1 as publicOnCategoryCreated, onCategoryDeleted$1 as publicOnCategoryDeleted, onCategoryItemAddedToCategory$1 as publicOnCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory$1 as publicOnCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory$1 as publicOnCategoryItemsArrangedInCategory, onCategoryMoved$1 as publicOnCategoryMoved, onCategoryUpdated$1 as publicOnCategoryUpdated, context_queryCategories as queryCategories, context_searchCategories as searchCategories, context_setArrangedItems as setArrangedItems, context_updateCategory as updateCategory, context_updateCategoryVisibility as updateCategoryVisibility };
4748
+ 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_Breadcrumb as Breadcrumb, type context_BreadcrumbsInfo as BreadcrumbsInfo, 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_BulkShowCategoriesOptions as BulkShowCategoriesOptions, type context_BulkShowCategoriesRequest as BulkShowCategoriesRequest, type context_BulkShowCategoriesResponse as BulkShowCategoriesResponse, type context_BulkShowCategoriesResponseNonNullableFields as BulkShowCategoriesResponseNonNullableFields, 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_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, type context_CaptionData as CaptionData, type context_CategoriesQueryBuilder as CategoriesQueryBuilder, type context_CategoriesQueryResult as CategoriesQueryResult, 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_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_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, 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_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_QueryCategoriesOptions as QueryCategoriesOptions, type context_QueryCategoriesRequest as QueryCategoriesRequest, type context_QueryCategoriesResponse as QueryCategoriesResponse, type context_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, 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, type context__publicOnCategoryCreatedType as _publicOnCategoryCreatedType, type context__publicOnCategoryDeletedType as _publicOnCategoryDeletedType, type context__publicOnCategoryItemAddedToCategoryType as _publicOnCategoryItemAddedToCategoryType, type context__publicOnCategoryItemRemovedFromCategoryType as _publicOnCategoryItemRemovedFromCategoryType, type context__publicOnCategoryItemsArrangedInCategoryType as _publicOnCategoryItemsArrangedInCategoryType, type context__publicOnCategoryMovedType as _publicOnCategoryMovedType, type context__publicOnCategoryUpdatedType as _publicOnCategoryUpdatedType, context_bulkAddItemToCategories as bulkAddItemToCategories, context_bulkAddItemsToCategory as bulkAddItemsToCategory, context_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, context_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, context_bulkShowCategories as bulkShowCategories, 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, onCategoryCreated$1 as publicOnCategoryCreated, onCategoryDeleted$1 as publicOnCategoryDeleted, onCategoryItemAddedToCategory$1 as publicOnCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory$1 as publicOnCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory$1 as publicOnCategoryItemsArrangedInCategory, onCategoryMoved$1 as publicOnCategoryMoved, onCategoryUpdated$1 as publicOnCategoryUpdated, context_queryCategories as queryCategories, context_searchCategories as searchCategories, context_setArrangedItems as setArrangedItems, context_updateCategory as updateCategory, context_updateCategoryVisibility as updateCategoryVisibility };
4771
4749
  }
4772
4750
 
4773
4751
  export { context as categories };
@@ -2036,6 +2036,7 @@ interface CreateCategoryRequest {
2036
2036
  fields?: SingleEntityOpsRequestedFields[];
2037
2037
  }
2038
2038
  declare enum SingleEntityOpsRequestedFields {
2039
+ /** Not implemented. */
2039
2040
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
2040
2041
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
2041
2042
  DESCRIPTION = "DESCRIPTION",
@@ -2121,7 +2122,9 @@ interface Sorting {
2121
2122
  order?: SortOrder;
2122
2123
  }
2123
2124
  declare enum SortOrder {
2125
+ /** Ascending order. */
2124
2126
  ASC = "ASC",
2127
+ /** Descending order. */
2125
2128
  DESC = "DESC"
2126
2129
  }
2127
2130
  interface CursorPaging {
@@ -2136,6 +2139,7 @@ interface CursorPaging {
2136
2139
  cursor?: string | null;
2137
2140
  }
2138
2141
  declare enum RequestedFields {
2142
+ /** Not implemented. */
2139
2143
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
2140
2144
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO"
2141
2145
  }
@@ -2268,21 +2272,21 @@ interface RangeBucket {
2268
2272
  to?: number | null;
2269
2273
  }
2270
2274
  declare enum SortType {
2271
- /** Should sort by number of matches */
2275
+ /** Sort by number of matches. */
2272
2276
  COUNT = "COUNT",
2273
- /** Should sort by value of the field alphabetically */
2277
+ /** Sort alphabetically by field value. */
2274
2278
  VALUE = "VALUE"
2275
2279
  }
2276
2280
  declare enum SortDirection {
2277
- /** Should sort in descending order */
2281
+ /** Sort in descending order. */
2278
2282
  DESC = "DESC",
2279
- /** Should sort in ascending order */
2283
+ /** Sort in ascending order. */
2280
2284
  ASC = "ASC"
2281
2285
  }
2282
2286
  declare enum MissingValues {
2283
- /** Should missing values be excluded from the aggregation results */
2287
+ /** Exclude missing values from the aggregation results. */
2284
2288
  EXCLUDE = "EXCLUDE",
2285
- /** Should missing values be included in the aggregation results */
2289
+ /** Included missing values in the aggregation results. */
2286
2290
  INCLUDE = "INCLUDE"
2287
2291
  }
2288
2292
  interface IncludeMissingValuesOptions {
@@ -2291,27 +2295,30 @@ interface IncludeMissingValuesOptions {
2291
2295
  }
2292
2296
  declare enum ScalarType {
2293
2297
  UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
2294
- /** Count of distinct values */
2298
+ /** Count of distinct values. */
2295
2299
  COUNT_DISTINCT = "COUNT_DISTINCT",
2296
- /** Minimum value */
2300
+ /** Minimum value. */
2297
2301
  MIN = "MIN",
2298
- /** Maximum value */
2302
+ /** Maximum value. */
2299
2303
  MAX = "MAX",
2300
- /** Sum of values */
2304
+ /** Sum of values. */
2301
2305
  SUM = "SUM",
2302
- /** Average of values */
2306
+ /** Average of values. */
2303
2307
  AVG = "AVG"
2304
2308
  }
2305
2309
  interface ValueAggregation extends ValueAggregationOptionsOneOf {
2306
2310
  /** Options for including missing values */
2307
2311
  includeOptions?: IncludeMissingValuesOptions;
2308
- /** Should sort by number of matches or value of the field */
2312
+ /** Type of sort to perform. */
2309
2313
  sortType?: SortType;
2310
- /** Should sort in ascending or descending order */
2314
+ /** Direction to sort in. */
2311
2315
  sortDirection?: SortDirection;
2312
2316
  /** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
2313
2317
  limit?: number | null;
2314
- /** Should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
2318
+ /**
2319
+ * Whether missing values are included in the aggregation results.
2320
+ * Default: `EXCLUDE`
2321
+ */
2315
2322
  missingValues?: MissingValues;
2316
2323
  }
2317
2324
  /** @oneof */
@@ -2320,14 +2327,15 @@ interface ValueAggregationOptionsOneOf {
2320
2327
  includeOptions?: IncludeMissingValuesOptions;
2321
2328
  }
2322
2329
  declare enum NestedAggregationType {
2330
+ /** Unknown aggregation type. */
2323
2331
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
2324
- /** An aggregation where result buckets are dynamically built - one per unique value */
2332
+ /** An aggregation where result buckets are dynamically built - one per unique value. */
2325
2333
  VALUE = "VALUE",
2326
- /** An aggregation, where user can define set of ranges - each representing a bucket */
2334
+ /** An aggregation, where user can define set of ranges - each representing a bucket. */
2327
2335
  RANGE = "RANGE",
2328
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
2336
+ /** A single-value metric aggregation - such as min, max, sum, and avg. */
2329
2337
  SCALAR = "SCALAR",
2330
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
2338
+ /** An aggregation, where result buckets are dynamically built - one per time interval such as hour, day, and week. */
2331
2339
  DATE_HISTOGRAM = "DATE_HISTOGRAM"
2332
2340
  }
2333
2341
  interface RangeAggregation {
@@ -2370,7 +2378,7 @@ interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
2370
2378
  dateHistogram?: DateHistogramAggregation;
2371
2379
  /** User-defined name of aggregation, should be unique, will appear in aggregation results */
2372
2380
  name?: string | null;
2373
- /** Type of aggregation, client must provide matching aggregation field below */
2381
+ /** Type of aggregation client must provide matching aggregation field below */
2374
2382
  type?: NestedAggregationType;
2375
2383
  /** Field to aggregate by, use dont notation to specify json path */
2376
2384
  fieldPath?: string;
@@ -2388,15 +2396,15 @@ interface NestedAggregationItemKindOneOf {
2388
2396
  }
2389
2397
  declare enum AggregationType {
2390
2398
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
2391
- /** An aggregation where result buckets are dynamically built - one per unique value */
2399
+ /** An aggregation where result buckets are dynamically built - one per unique value. */
2392
2400
  VALUE = "VALUE",
2393
- /** An aggregation, where user can define set of ranges - each representing a bucket */
2401
+ /** An aggregation, where user can define set of ranges - each representing a bucket. */
2394
2402
  RANGE = "RANGE",
2395
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
2403
+ /** A single-value metric aggregation - such as min, max, sum, and avg. */
2396
2404
  SCALAR = "SCALAR",
2397
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
2405
+ /** An aggregation, where result buckets are dynamically built - one per time interval such as hour, day, and week. */
2398
2406
  DATE_HISTOGRAM = "DATE_HISTOGRAM",
2399
- /** Multi-level aggregation, where each next aggregation is nested within previous one */
2407
+ /** Multi-level aggregation, where each next aggregation is nested within the previous one. */
2400
2408
  NESTED = "NESTED"
2401
2409
  }
2402
2410
  /** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
@@ -2405,13 +2413,7 @@ interface NestedAggregation {
2405
2413
  nestedAggregations?: NestedAggregationItem[];
2406
2414
  }
2407
2415
  interface SearchDetails {
2408
- /**
2409
- * Defines how separate search terms in `expression` are combined.
2410
- *
2411
- * Supported values:
2412
- * + `OR` - Any of the search terms must be present
2413
- * + `AND` - All search terms must be present
2414
- */
2416
+ /** Defines how separate search terms in `expression` are combined. */
2415
2417
  mode?: Mode;
2416
2418
  /** Search term or expression. */
2417
2419
  expression?: string | null;
@@ -2425,9 +2427,9 @@ interface SearchDetails {
2425
2427
  fuzzy?: boolean;
2426
2428
  }
2427
2429
  declare enum Mode {
2428
- /** Any of the search terms must be present */
2430
+ /** Any of the search terms must be present. */
2429
2431
  OR = "OR",
2430
- /** All search terms must be present */
2432
+ /** All search terms must be present. */
2431
2433
  AND = "AND"
2432
2434
  }
2433
2435
  interface SearchCategoriesResponse {
@@ -2820,28 +2822,6 @@ interface UpdateCategoryVisibilityResponse {
2820
2822
  /** Updated category. */
2821
2823
  category?: Category;
2822
2824
  }
2823
- interface BulkUpdateCategoryVisibilityRequest {
2824
- /** IDs of the categories to update. */
2825
- categoryIds?: string[];
2826
- /** value to set `visible` to. This value will be set for all categories in the request */
2827
- visible?: boolean;
2828
- /** Category tree reference details. */
2829
- treeReference?: TreeReference;
2830
- /**
2831
- * Whether to return the category entity in the response.
2832
- *
2833
- * Default: `false`
2834
- */
2835
- returnEntity?: boolean;
2836
- /** Fields to include in the response. */
2837
- fields?: RequestedFields[];
2838
- }
2839
- interface BulkUpdateCategoryVisibilityResponse {
2840
- /** Categories updated by bulk action. */
2841
- results?: BulkCategoriesResult[];
2842
- /** Bulk action metadata. */
2843
- bulkActionMetadata?: BulkActionMetadata;
2844
- }
2845
2825
  interface BulkShowCategoriesRequest {
2846
2826
  /** IDs of the categories to update. */
2847
2827
  categoryIds: string[];
@@ -4426,8 +4406,6 @@ type index_d_BulkUpdateCategoriesResponse = BulkUpdateCategoriesResponse;
4426
4406
  type index_d_BulkUpdateCategoriesResponseNonNullableFields = BulkUpdateCategoriesResponseNonNullableFields;
4427
4407
  type index_d_BulkUpdateCategoryVisibilityByFilterRequest = BulkUpdateCategoryVisibilityByFilterRequest;
4428
4408
  type index_d_BulkUpdateCategoryVisibilityByFilterResponse = BulkUpdateCategoryVisibilityByFilterResponse;
4429
- type index_d_BulkUpdateCategoryVisibilityRequest = BulkUpdateCategoryVisibilityRequest;
4430
- type index_d_BulkUpdateCategoryVisibilityResponse = BulkUpdateCategoryVisibilityResponse;
4431
4409
  type index_d_BulletedListData = BulletedListData;
4432
4410
  type index_d_ButtonData = ButtonData;
4433
4411
  type index_d_CaptionData = CaptionData;
@@ -4767,7 +4745,7 @@ declare const index_d_setArrangedItems: typeof setArrangedItems;
4767
4745
  declare const index_d_updateCategory: typeof updateCategory;
4768
4746
  declare const index_d_updateCategoryVisibility: typeof updateCategoryVisibility;
4769
4747
  declare namespace index_d {
4770
- 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_Breadcrumb as Breadcrumb, type index_d_BreadcrumbsInfo as BreadcrumbsInfo, 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_BulkShowCategoriesOptions as BulkShowCategoriesOptions, type index_d_BulkShowCategoriesRequest as BulkShowCategoriesRequest, type index_d_BulkShowCategoriesResponse as BulkShowCategoriesResponse, type index_d_BulkShowCategoriesResponseNonNullableFields as BulkShowCategoriesResponseNonNullableFields, 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_CaptionData as CaptionData, type index_d_CategoriesQueryBuilder as CategoriesQueryBuilder, type index_d_CategoriesQueryResult as CategoriesQueryResult, 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_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_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, 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_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_QueryCategoriesOptions as QueryCategoriesOptions, type index_d_QueryCategoriesRequest as QueryCategoriesRequest, type index_d_QueryCategoriesResponse as QueryCategoriesResponse, type index_d_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, 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, type index_d__publicOnCategoryCreatedType as _publicOnCategoryCreatedType, type index_d__publicOnCategoryDeletedType as _publicOnCategoryDeletedType, type index_d__publicOnCategoryItemAddedToCategoryType as _publicOnCategoryItemAddedToCategoryType, type index_d__publicOnCategoryItemRemovedFromCategoryType as _publicOnCategoryItemRemovedFromCategoryType, type index_d__publicOnCategoryItemsArrangedInCategoryType as _publicOnCategoryItemsArrangedInCategoryType, type index_d__publicOnCategoryMovedType as _publicOnCategoryMovedType, type index_d__publicOnCategoryUpdatedType as _publicOnCategoryUpdatedType, index_d_bulkAddItemToCategories as bulkAddItemToCategories, index_d_bulkAddItemsToCategory as bulkAddItemsToCategory, index_d_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, index_d_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, index_d_bulkShowCategories as bulkShowCategories, 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, onCategoryCreated$1 as publicOnCategoryCreated, onCategoryDeleted$1 as publicOnCategoryDeleted, onCategoryItemAddedToCategory$1 as publicOnCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory$1 as publicOnCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory$1 as publicOnCategoryItemsArrangedInCategory, onCategoryMoved$1 as publicOnCategoryMoved, onCategoryUpdated$1 as publicOnCategoryUpdated, index_d_queryCategories as queryCategories, index_d_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
4748
+ 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_Breadcrumb as Breadcrumb, type index_d_BreadcrumbsInfo as BreadcrumbsInfo, 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_BulkShowCategoriesOptions as BulkShowCategoriesOptions, type index_d_BulkShowCategoriesRequest as BulkShowCategoriesRequest, type index_d_BulkShowCategoriesResponse as BulkShowCategoriesResponse, type index_d_BulkShowCategoriesResponseNonNullableFields as BulkShowCategoriesResponseNonNullableFields, 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_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, type index_d_CaptionData as CaptionData, type index_d_CategoriesQueryBuilder as CategoriesQueryBuilder, type index_d_CategoriesQueryResult as CategoriesQueryResult, 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_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_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, 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_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_QueryCategoriesOptions as QueryCategoriesOptions, type index_d_QueryCategoriesRequest as QueryCategoriesRequest, type index_d_QueryCategoriesResponse as QueryCategoriesResponse, type index_d_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, 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, type index_d__publicOnCategoryCreatedType as _publicOnCategoryCreatedType, type index_d__publicOnCategoryDeletedType as _publicOnCategoryDeletedType, type index_d__publicOnCategoryItemAddedToCategoryType as _publicOnCategoryItemAddedToCategoryType, type index_d__publicOnCategoryItemRemovedFromCategoryType as _publicOnCategoryItemRemovedFromCategoryType, type index_d__publicOnCategoryItemsArrangedInCategoryType as _publicOnCategoryItemsArrangedInCategoryType, type index_d__publicOnCategoryMovedType as _publicOnCategoryMovedType, type index_d__publicOnCategoryUpdatedType as _publicOnCategoryUpdatedType, index_d_bulkAddItemToCategories as bulkAddItemToCategories, index_d_bulkAddItemsToCategory as bulkAddItemsToCategory, index_d_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, index_d_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, index_d_bulkShowCategories as bulkShowCategories, 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, onCategoryCreated$1 as publicOnCategoryCreated, onCategoryDeleted$1 as publicOnCategoryDeleted, onCategoryItemAddedToCategory$1 as publicOnCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory$1 as publicOnCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory$1 as publicOnCategoryItemsArrangedInCategory, onCategoryMoved$1 as publicOnCategoryMoved, onCategoryUpdated$1 as publicOnCategoryUpdated, index_d_queryCategories as queryCategories, index_d_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
4771
4749
  }
4772
4750
 
4773
4751
  export { index_d as categories };
@@ -1406,6 +1406,7 @@ interface CreateCategoryRequest$1 {
1406
1406
  fields?: SingleEntityOpsRequestedFields$1[];
1407
1407
  }
1408
1408
  declare enum SingleEntityOpsRequestedFields$1 {
1409
+ /** Not implemented. */
1409
1410
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
1410
1411
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
1411
1412
  DESCRIPTION = "DESCRIPTION",
@@ -1491,7 +1492,9 @@ interface Sorting$1 {
1491
1492
  order?: SortOrder$1;
1492
1493
  }
1493
1494
  declare enum SortOrder$1 {
1495
+ /** Ascending order. */
1494
1496
  ASC = "ASC",
1497
+ /** Descending order. */
1495
1498
  DESC = "DESC"
1496
1499
  }
1497
1500
  interface CursorPaging$1 {
@@ -1506,6 +1509,7 @@ interface CursorPaging$1 {
1506
1509
  cursor?: string | null;
1507
1510
  }
1508
1511
  declare enum RequestedFields$1 {
1512
+ /** Not implemented. */
1509
1513
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
1510
1514
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO"
1511
1515
  }
@@ -1622,21 +1626,21 @@ interface RangeBucket$1 {
1622
1626
  to?: number | null;
1623
1627
  }
1624
1628
  declare enum SortType$1 {
1625
- /** Should sort by number of matches */
1629
+ /** Sort by number of matches. */
1626
1630
  COUNT = "COUNT",
1627
- /** Should sort by value of the field alphabetically */
1631
+ /** Sort alphabetically by field value. */
1628
1632
  VALUE = "VALUE"
1629
1633
  }
1630
1634
  declare enum SortDirection$1 {
1631
- /** Should sort in descending order */
1635
+ /** Sort in descending order. */
1632
1636
  DESC = "DESC",
1633
- /** Should sort in ascending order */
1637
+ /** Sort in ascending order. */
1634
1638
  ASC = "ASC"
1635
1639
  }
1636
1640
  declare enum MissingValues$1 {
1637
- /** Should missing values be excluded from the aggregation results */
1641
+ /** Exclude missing values from the aggregation results. */
1638
1642
  EXCLUDE = "EXCLUDE",
1639
- /** Should missing values be included in the aggregation results */
1643
+ /** Included missing values in the aggregation results. */
1640
1644
  INCLUDE = "INCLUDE"
1641
1645
  }
1642
1646
  interface IncludeMissingValuesOptions$1 {
@@ -1645,27 +1649,30 @@ interface IncludeMissingValuesOptions$1 {
1645
1649
  }
1646
1650
  declare enum ScalarType$1 {
1647
1651
  UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
1648
- /** Count of distinct values */
1652
+ /** Count of distinct values. */
1649
1653
  COUNT_DISTINCT = "COUNT_DISTINCT",
1650
- /** Minimum value */
1654
+ /** Minimum value. */
1651
1655
  MIN = "MIN",
1652
- /** Maximum value */
1656
+ /** Maximum value. */
1653
1657
  MAX = "MAX",
1654
- /** Sum of values */
1658
+ /** Sum of values. */
1655
1659
  SUM = "SUM",
1656
- /** Average of values */
1660
+ /** Average of values. */
1657
1661
  AVG = "AVG"
1658
1662
  }
1659
1663
  interface ValueAggregation$1 extends ValueAggregationOptionsOneOf$1 {
1660
1664
  /** Options for including missing values */
1661
1665
  includeOptions?: IncludeMissingValuesOptions$1;
1662
- /** Should sort by number of matches or value of the field */
1666
+ /** Type of sort to perform. */
1663
1667
  sortType?: SortType$1;
1664
- /** Should sort in ascending or descending order */
1668
+ /** Direction to sort in. */
1665
1669
  sortDirection?: SortDirection$1;
1666
1670
  /** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
1667
1671
  limit?: number | null;
1668
- /** Should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
1672
+ /**
1673
+ * Whether missing values are included in the aggregation results.
1674
+ * Default: `EXCLUDE`
1675
+ */
1669
1676
  missingValues?: MissingValues$1;
1670
1677
  }
1671
1678
  /** @oneof */
@@ -1674,14 +1681,15 @@ interface ValueAggregationOptionsOneOf$1 {
1674
1681
  includeOptions?: IncludeMissingValuesOptions$1;
1675
1682
  }
1676
1683
  declare enum NestedAggregationType$1 {
1684
+ /** Unknown aggregation type. */
1677
1685
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
1678
- /** An aggregation where result buckets are dynamically built - one per unique value */
1686
+ /** An aggregation where result buckets are dynamically built - one per unique value. */
1679
1687
  VALUE = "VALUE",
1680
- /** An aggregation, where user can define set of ranges - each representing a bucket */
1688
+ /** An aggregation, where user can define set of ranges - each representing a bucket. */
1681
1689
  RANGE = "RANGE",
1682
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
1690
+ /** A single-value metric aggregation - such as min, max, sum, and avg. */
1683
1691
  SCALAR = "SCALAR",
1684
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
1692
+ /** An aggregation, where result buckets are dynamically built - one per time interval such as hour, day, and week. */
1685
1693
  DATE_HISTOGRAM = "DATE_HISTOGRAM"
1686
1694
  }
1687
1695
  interface RangeAggregation$1 {
@@ -1724,7 +1732,7 @@ interface NestedAggregationItem$1 extends NestedAggregationItemKindOneOf$1 {
1724
1732
  dateHistogram?: DateHistogramAggregation$1;
1725
1733
  /** User-defined name of aggregation, should be unique, will appear in aggregation results */
1726
1734
  name?: string | null;
1727
- /** Type of aggregation, client must provide matching aggregation field below */
1735
+ /** Type of aggregation client must provide matching aggregation field below */
1728
1736
  type?: NestedAggregationType$1;
1729
1737
  /** Field to aggregate by, use dont notation to specify json path */
1730
1738
  fieldPath?: string;
@@ -1742,15 +1750,15 @@ interface NestedAggregationItemKindOneOf$1 {
1742
1750
  }
1743
1751
  declare enum AggregationType$1 {
1744
1752
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
1745
- /** An aggregation where result buckets are dynamically built - one per unique value */
1753
+ /** An aggregation where result buckets are dynamically built - one per unique value. */
1746
1754
  VALUE = "VALUE",
1747
- /** An aggregation, where user can define set of ranges - each representing a bucket */
1755
+ /** An aggregation, where user can define set of ranges - each representing a bucket. */
1748
1756
  RANGE = "RANGE",
1749
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
1757
+ /** A single-value metric aggregation - such as min, max, sum, and avg. */
1750
1758
  SCALAR = "SCALAR",
1751
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
1759
+ /** An aggregation, where result buckets are dynamically built - one per time interval such as hour, day, and week. */
1752
1760
  DATE_HISTOGRAM = "DATE_HISTOGRAM",
1753
- /** Multi-level aggregation, where each next aggregation is nested within previous one */
1761
+ /** Multi-level aggregation, where each next aggregation is nested within the previous one. */
1754
1762
  NESTED = "NESTED"
1755
1763
  }
1756
1764
  /** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
@@ -1759,13 +1767,7 @@ interface NestedAggregation$1 {
1759
1767
  nestedAggregations?: NestedAggregationItem$1[];
1760
1768
  }
1761
1769
  interface SearchDetails$1 {
1762
- /**
1763
- * Defines how separate search terms in `expression` are combined.
1764
- *
1765
- * Supported values:
1766
- * + `OR` - Any of the search terms must be present
1767
- * + `AND` - All search terms must be present
1768
- */
1770
+ /** Defines how separate search terms in `expression` are combined. */
1769
1771
  mode?: Mode$1;
1770
1772
  /** Search term or expression. */
1771
1773
  expression?: string | null;
@@ -1779,9 +1781,9 @@ interface SearchDetails$1 {
1779
1781
  fuzzy?: boolean;
1780
1782
  }
1781
1783
  declare enum Mode$1 {
1782
- /** Any of the search terms must be present */
1784
+ /** Any of the search terms must be present. */
1783
1785
  OR = "OR",
1784
- /** All search terms must be present */
1786
+ /** All search terms must be present. */
1785
1787
  AND = "AND"
1786
1788
  }
1787
1789
  interface SearchCategoriesResponse$1 {
@@ -4106,6 +4108,7 @@ interface CreateCategoryRequest {
4106
4108
  fields?: SingleEntityOpsRequestedFields[];
4107
4109
  }
4108
4110
  declare enum SingleEntityOpsRequestedFields {
4111
+ /** Not implemented. */
4109
4112
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
4110
4113
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
4111
4114
  DESCRIPTION = "DESCRIPTION",
@@ -4191,7 +4194,9 @@ interface Sorting {
4191
4194
  order?: SortOrder;
4192
4195
  }
4193
4196
  declare enum SortOrder {
4197
+ /** Ascending order. */
4194
4198
  ASC = "ASC",
4199
+ /** Descending order. */
4195
4200
  DESC = "DESC"
4196
4201
  }
4197
4202
  interface CursorPaging {
@@ -4206,6 +4211,7 @@ interface CursorPaging {
4206
4211
  cursor?: string | null;
4207
4212
  }
4208
4213
  declare enum RequestedFields {
4214
+ /** Not implemented. */
4209
4215
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
4210
4216
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO"
4211
4217
  }
@@ -4322,21 +4328,21 @@ interface RangeBucket {
4322
4328
  to?: number | null;
4323
4329
  }
4324
4330
  declare enum SortType {
4325
- /** Should sort by number of matches */
4331
+ /** Sort by number of matches. */
4326
4332
  COUNT = "COUNT",
4327
- /** Should sort by value of the field alphabetically */
4333
+ /** Sort alphabetically by field value. */
4328
4334
  VALUE = "VALUE"
4329
4335
  }
4330
4336
  declare enum SortDirection {
4331
- /** Should sort in descending order */
4337
+ /** Sort in descending order. */
4332
4338
  DESC = "DESC",
4333
- /** Should sort in ascending order */
4339
+ /** Sort in ascending order. */
4334
4340
  ASC = "ASC"
4335
4341
  }
4336
4342
  declare enum MissingValues {
4337
- /** Should missing values be excluded from the aggregation results */
4343
+ /** Exclude missing values from the aggregation results. */
4338
4344
  EXCLUDE = "EXCLUDE",
4339
- /** Should missing values be included in the aggregation results */
4345
+ /** Included missing values in the aggregation results. */
4340
4346
  INCLUDE = "INCLUDE"
4341
4347
  }
4342
4348
  interface IncludeMissingValuesOptions {
@@ -4345,27 +4351,30 @@ interface IncludeMissingValuesOptions {
4345
4351
  }
4346
4352
  declare enum ScalarType {
4347
4353
  UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
4348
- /** Count of distinct values */
4354
+ /** Count of distinct values. */
4349
4355
  COUNT_DISTINCT = "COUNT_DISTINCT",
4350
- /** Minimum value */
4356
+ /** Minimum value. */
4351
4357
  MIN = "MIN",
4352
- /** Maximum value */
4358
+ /** Maximum value. */
4353
4359
  MAX = "MAX",
4354
- /** Sum of values */
4360
+ /** Sum of values. */
4355
4361
  SUM = "SUM",
4356
- /** Average of values */
4362
+ /** Average of values. */
4357
4363
  AVG = "AVG"
4358
4364
  }
4359
4365
  interface ValueAggregation extends ValueAggregationOptionsOneOf {
4360
4366
  /** Options for including missing values */
4361
4367
  includeOptions?: IncludeMissingValuesOptions;
4362
- /** Should sort by number of matches or value of the field */
4368
+ /** Type of sort to perform. */
4363
4369
  sortType?: SortType;
4364
- /** Should sort in ascending or descending order */
4370
+ /** Direction to sort in. */
4365
4371
  sortDirection?: SortDirection;
4366
4372
  /** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
4367
4373
  limit?: number | null;
4368
- /** Should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
4374
+ /**
4375
+ * Whether missing values are included in the aggregation results.
4376
+ * Default: `EXCLUDE`
4377
+ */
4369
4378
  missingValues?: MissingValues;
4370
4379
  }
4371
4380
  /** @oneof */
@@ -4374,14 +4383,15 @@ interface ValueAggregationOptionsOneOf {
4374
4383
  includeOptions?: IncludeMissingValuesOptions;
4375
4384
  }
4376
4385
  declare enum NestedAggregationType {
4386
+ /** Unknown aggregation type. */
4377
4387
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
4378
- /** An aggregation where result buckets are dynamically built - one per unique value */
4388
+ /** An aggregation where result buckets are dynamically built - one per unique value. */
4379
4389
  VALUE = "VALUE",
4380
- /** An aggregation, where user can define set of ranges - each representing a bucket */
4390
+ /** An aggregation, where user can define set of ranges - each representing a bucket. */
4381
4391
  RANGE = "RANGE",
4382
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
4392
+ /** A single-value metric aggregation - such as min, max, sum, and avg. */
4383
4393
  SCALAR = "SCALAR",
4384
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
4394
+ /** An aggregation, where result buckets are dynamically built - one per time interval such as hour, day, and week. */
4385
4395
  DATE_HISTOGRAM = "DATE_HISTOGRAM"
4386
4396
  }
4387
4397
  interface RangeAggregation {
@@ -4424,7 +4434,7 @@ interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
4424
4434
  dateHistogram?: DateHistogramAggregation;
4425
4435
  /** User-defined name of aggregation, should be unique, will appear in aggregation results */
4426
4436
  name?: string | null;
4427
- /** Type of aggregation, client must provide matching aggregation field below */
4437
+ /** Type of aggregation client must provide matching aggregation field below */
4428
4438
  type?: NestedAggregationType;
4429
4439
  /** Field to aggregate by, use dont notation to specify json path */
4430
4440
  fieldPath?: string;
@@ -4442,15 +4452,15 @@ interface NestedAggregationItemKindOneOf {
4442
4452
  }
4443
4453
  declare enum AggregationType {
4444
4454
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
4445
- /** An aggregation where result buckets are dynamically built - one per unique value */
4455
+ /** An aggregation where result buckets are dynamically built - one per unique value. */
4446
4456
  VALUE = "VALUE",
4447
- /** An aggregation, where user can define set of ranges - each representing a bucket */
4457
+ /** An aggregation, where user can define set of ranges - each representing a bucket. */
4448
4458
  RANGE = "RANGE",
4449
- /** A single-value metric aggregation - e.g. min, max, sum, avg */
4459
+ /** A single-value metric aggregation - such as min, max, sum, and avg. */
4450
4460
  SCALAR = "SCALAR",
4451
- /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
4461
+ /** An aggregation, where result buckets are dynamically built - one per time interval such as hour, day, and week. */
4452
4462
  DATE_HISTOGRAM = "DATE_HISTOGRAM",
4453
- /** Multi-level aggregation, where each next aggregation is nested within previous one */
4463
+ /** Multi-level aggregation, where each next aggregation is nested within the previous one. */
4454
4464
  NESTED = "NESTED"
4455
4465
  }
4456
4466
  /** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
@@ -4459,13 +4469,7 @@ interface NestedAggregation {
4459
4469
  nestedAggregations?: NestedAggregationItem[];
4460
4470
  }
4461
4471
  interface SearchDetails {
4462
- /**
4463
- * Defines how separate search terms in `expression` are combined.
4464
- *
4465
- * Supported values:
4466
- * + `OR` - Any of the search terms must be present
4467
- * + `AND` - All search terms must be present
4468
- */
4472
+ /** Defines how separate search terms in `expression` are combined. */
4469
4473
  mode?: Mode;
4470
4474
  /** Search term or expression. */
4471
4475
  expression?: string | null;
@@ -4479,9 +4483,9 @@ interface SearchDetails {
4479
4483
  fuzzy?: boolean;
4480
4484
  }
4481
4485
  declare enum Mode {
4482
- /** Any of the search terms must be present */
4486
+ /** Any of the search terms must be present. */
4483
4487
  OR = "OR",
4484
- /** All search terms must be present */
4488
+ /** All search terms must be present. */
4485
4489
  AND = "AND"
4486
4490
  }
4487
4491
  interface SearchCategoriesResponse {