@wix/categories 1.0.41 → 1.0.43

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.41",
3
+ "version": "1.0.43",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,7 +18,7 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/categories_categories": "1.0.18"
21
+ "@wix/categories_categories": "1.0.20"
22
22
  },
23
23
  "devDependencies": {
24
24
  "glob": "^10.4.1",
@@ -42,5 +42,5 @@
42
42
  "fqdn": ""
43
43
  }
44
44
  },
45
- "falconPackageHash": "3354b403d5f49eb2d50dfb8effc0b52bf11cf516ce4272e805c98d3b"
45
+ "falconPackageHash": "03cfa8afa8bc31b520cc250b22eb78d086f126d249b6a34873ddfc6c"
46
46
  }
@@ -65,7 +65,7 @@ interface Category {
65
65
  * Category description using rich content.
66
66
  *
67
67
  * Learn more about [Working with Rich Content](https://dev.wix.com/docs/go-headless/tutorials-templates/other-tutorials/working-with-rich-content).
68
- * > **Note:** Returned only when you pass `"BREADCRUMBS"` to the `fields` array in Categories API requests.
68
+ * > **Note:** Returned only when you pass `"RICH_CONTENT_DESCRIPTION"` to the `fields` array in Categories API requests.
69
69
  */
70
70
  richContentDescription?: RichContent;
71
71
  /**
@@ -125,6 +125,8 @@ interface Keyword {
125
125
  term?: string;
126
126
  /** Whether the keyword is the main focus keyword. */
127
127
  isMain?: boolean;
128
+ /** Who added the keyword to the settings */
129
+ origin?: string | null;
128
130
  }
129
131
  interface Tag {
130
132
  /**
@@ -1536,14 +1538,7 @@ interface CreateCategoryRequest {
1536
1538
  category: Category;
1537
1539
  /** Category tree reference details. */
1538
1540
  treeReference: TreeReference;
1539
- /**
1540
- * Fields to include in the response.
1541
- *
1542
- * Supported values:
1543
- * + `BREADCRUMBS`
1544
- * + `DESCRIPTION`
1545
- * + `RICH_CONTENT_DESCRIPTION`
1546
- */
1541
+ /** Fields to include in the response. */
1547
1542
  fields?: SingleEntityOpsRequestedFields[];
1548
1543
  }
1549
1544
  declare enum SingleEntityOpsRequestedFields {
@@ -1561,14 +1556,7 @@ interface GetCategoryRequest {
1561
1556
  categoryId: string;
1562
1557
  /** Category tree reference details. */
1563
1558
  treeReference: TreeReference;
1564
- /**
1565
- * Fields to include in the response.
1566
- *
1567
- * Supported values:
1568
- * + `BREADCRUMBS`
1569
- * + `DESCRIPTION`
1570
- * + `RICH_CONTENT_DESCRIPTION`
1571
- */
1559
+ /** Fields to include in the response. */
1572
1560
  fields?: SingleEntityOpsRequestedFields[];
1573
1561
  }
1574
1562
  interface GetCategoryResponse {
@@ -1580,14 +1568,7 @@ interface UpdateCategoryRequest {
1580
1568
  category: Category;
1581
1569
  /** Category tree reference details. */
1582
1570
  treeReference: TreeReference;
1583
- /**
1584
- * Fields to include in the response.
1585
- *
1586
- * Supported values:
1587
- * + `BREADCRUMBS`
1588
- * + `DESCRIPTION`
1589
- * + `RICH_CONTENT_DESCRIPTION`
1590
- */
1571
+ /** Fields to include in the response. */
1591
1572
  fields?: SingleEntityOpsRequestedFields[];
1592
1573
  }
1593
1574
  interface UpdateCategoryResponse {
@@ -1612,14 +1593,7 @@ interface QueryCategoriesRequest {
1612
1593
  * Used only in the first request. Following requests use the cursor token.
1613
1594
  */
1614
1595
  returnNonVisibleCategories?: boolean;
1615
- /**
1616
- * Fields to include in the response.
1617
- *
1618
- * Supported values:
1619
- * + `BREADCRUMBS`
1620
- * + `DESCRIPTION`
1621
- * + `RICH_CONTENT_DESCRIPTION`
1622
- */
1596
+ /** Fields to include in the response. */
1623
1597
  fields?: RequestedFields[];
1624
1598
  }
1625
1599
  interface CursorQuery extends CursorQueryPagingMethodOneOf {
@@ -1718,14 +1692,7 @@ interface SearchCategoriesRequest {
1718
1692
  * Default: `false` - only visible categories are returned in the response
1719
1693
  */
1720
1694
  returnNonVisibleCategories?: boolean;
1721
- /**
1722
- * Fields to include in the response.
1723
- *
1724
- * Supported values:
1725
- * + `BREADCRUMBS`
1726
- * + `DESCRIPTION`
1727
- * + `RICH_CONTENT_DESCRIPTION`
1728
- */
1695
+ /** Fields to include in the response. */
1729
1696
  fields?: RequestedFields[];
1730
1697
  }
1731
1698
  interface CursorSearch extends CursorSearchPagingMethodOneOf {
@@ -2156,14 +2123,7 @@ interface DeprecatedSearchCategoriesWithOffsetRequest {
2156
2123
  treeReference?: TreeReference;
2157
2124
  /** Whether to return categories with `visible:false`. Default: false so only visible categories will be in response. */
2158
2125
  returnNonVisibleCategories?: boolean;
2159
- /**
2160
- * Fields to include in the response.
2161
- *
2162
- * Supported values:
2163
- * + `BREADCRUMBS`
2164
- * + `DESCRIPTION`
2165
- * + `RICH_CONTENT_DESCRIPTION`
2166
- */
2126
+ /** Fields to include in the response. */
2167
2127
  fields?: RequestedFields[];
2168
2128
  }
2169
2129
  interface OffsetSearch extends OffsetSearchPagingMethodOneOf {
@@ -2284,14 +2244,7 @@ interface BulkCreateCategoriesRequest {
2284
2244
  * Default: `false`
2285
2245
  */
2286
2246
  returnEntity?: boolean;
2287
- /**
2288
- * Fields to include in the response.
2289
- *
2290
- * Supported values:
2291
- * + `BREADCRUMBS`
2292
- * + `DESCRIPTION`
2293
- * + `RICH_CONTENT_DESCRIPTION`
2294
- */
2247
+ /** Fields to include in the response. */
2295
2248
  fields?: RequestedFields[];
2296
2249
  }
2297
2250
  interface BulkCreateCategoriesResponse {
@@ -2347,14 +2300,7 @@ interface BulkUpdateCategoriesRequest {
2347
2300
  * Default: `false`
2348
2301
  */
2349
2302
  returnEntity?: boolean;
2350
- /**
2351
- * Fields to include in the response.
2352
- *
2353
- * Supported values:
2354
- * + `BREADCRUMBS`
2355
- * + `DESCRIPTION`
2356
- * + `RICH_CONTENT_DESCRIPTION`
2357
- */
2303
+ /** Fields to include in the response. */
2358
2304
  fields?: RequestedFields[];
2359
2305
  }
2360
2306
  interface MaskedCategory {
@@ -2384,14 +2330,7 @@ interface UpdateCategoryVisibilityRequest {
2384
2330
  * To prevent conflicting changes, the current revision must be passed on update.
2385
2331
  */
2386
2332
  revision: string | null;
2387
- /**
2388
- * Fields to include in the response.
2389
- *
2390
- * Supported values:
2391
- * + `BREADCRUMBS`
2392
- * + `DESCRIPTION`
2393
- * + `RICH_CONTENT_DESCRIPTION`
2394
- */
2333
+ /** Fields to include in the response. */
2395
2334
  fields?: SingleEntityOpsRequestedFields[];
2396
2335
  }
2397
2336
  interface UpdateCategoryVisibilityResponse {
@@ -2411,14 +2350,7 @@ interface BulkUpdateCategoryVisibilityRequest {
2411
2350
  * Default: `false`
2412
2351
  */
2413
2352
  returnEntity?: boolean;
2414
- /**
2415
- * Fields to include in the response.
2416
- *
2417
- * Supported values:
2418
- * + `BREADCRUMBS`
2419
- * + `DESCRIPTION`
2420
- * + `RICH_CONTENT_DESCRIPTION`
2421
- */
2353
+ /** Fields to include in the response. */
2422
2354
  fields?: RequestedFields[];
2423
2355
  }
2424
2356
  interface BulkUpdateCategoryVisibilityResponse {
@@ -3235,28 +3167,87 @@ interface SetArrangedItemsResponseNonNullableFields {
3235
3167
  interface GetArrangedItemsResponseNonNullableFields {
3236
3168
  items: ItemReferenceNonNullableFields[];
3237
3169
  }
3170
+ interface BaseEventMetadata {
3171
+ /** App instance ID. */
3172
+ instanceId?: string | null;
3173
+ /** Event type. */
3174
+ eventType?: string;
3175
+ /** The identification type and identity data. */
3176
+ identity?: IdentificationData;
3177
+ }
3178
+ interface EventMetadata extends BaseEventMetadata {
3179
+ /**
3180
+ * Unique event ID.
3181
+ * Allows clients to ignore duplicate webhooks.
3182
+ */
3183
+ _id?: string;
3184
+ /**
3185
+ * Assumes actions are also always typed to an entity_type
3186
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
3187
+ */
3188
+ entityFqdn?: string;
3189
+ /**
3190
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
3191
+ * This is although the created/updated/deleted notion is duplication of the oneof types
3192
+ * Example: created/updated/deleted/started/completed/email_opened
3193
+ */
3194
+ slug?: string;
3195
+ /** ID of the entity associated with the event. */
3196
+ entityId?: string;
3197
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
3198
+ eventTime?: Date;
3199
+ /**
3200
+ * Whether the event was triggered as a result of a privacy regulation application
3201
+ * (for example, GDPR).
3202
+ */
3203
+ triggeredByAnonymizeRequest?: boolean | null;
3204
+ /** If present, indicates the action that triggered the event. */
3205
+ originatedFrom?: string | null;
3206
+ /**
3207
+ * A sequence number defining the order of updates to the underlying entity.
3208
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
3209
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
3210
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
3211
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
3212
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
3213
+ */
3214
+ entityEventSequence?: string | null;
3215
+ }
3216
+ interface CategoryCreatedEnvelope {
3217
+ entity: Category;
3218
+ metadata: EventMetadata;
3219
+ }
3220
+ interface CategoryUpdatedEnvelope {
3221
+ entity: Category;
3222
+ metadata: EventMetadata;
3223
+ }
3224
+ interface CategoryDeletedEnvelope {
3225
+ metadata: EventMetadata;
3226
+ }
3227
+ interface CategoryMovedEnvelope {
3228
+ data: CategoryMoved;
3229
+ metadata: EventMetadata;
3230
+ }
3231
+ interface CategoryItemAddedToCategoryEnvelope {
3232
+ data: ItemAddedToCategory;
3233
+ metadata: EventMetadata;
3234
+ }
3235
+ interface CategoryItemRemovedFromCategoryEnvelope {
3236
+ data: ItemRemovedFromCategory;
3237
+ metadata: EventMetadata;
3238
+ }
3239
+ interface CategoryItemsArrangedInCategoryEnvelope {
3240
+ data: ItemsArrangedInCategory;
3241
+ metadata: EventMetadata;
3242
+ }
3238
3243
  interface CreateCategoryOptions {
3239
3244
  /** Category tree reference details. */
3240
3245
  treeReference: TreeReference;
3241
- /**
3242
- * Fields to include in the response.
3243
- *
3244
- * Supported values:
3245
- * + `BREADCRUMBS`
3246
- * + `DESCRIPTION`
3247
- * + `RICH_CONTENT_DESCRIPTION`
3248
- */
3246
+ /** Fields to include in the response. */
3249
3247
  fields?: SingleEntityOpsRequestedFields[];
3250
3248
  }
3251
3249
  interface GetCategoryOptions {
3252
- /**
3253
- * Fields to include in the response.
3254
- *
3255
- * Supported values:
3256
- * + `BREADCRUMBS`
3257
- * + `DESCRIPTION`
3258
- * + `RICH_CONTENT_DESCRIPTION`
3259
- */
3250
+ /** Fields to include in the response. */
3260
3251
  fields?: SingleEntityOpsRequestedFields[];
3261
3252
  }
3262
3253
  interface UpdateCategory {
@@ -3326,7 +3317,7 @@ interface UpdateCategory {
3326
3317
  * Category description using rich content.
3327
3318
  *
3328
3319
  * Learn more about [Working with Rich Content](https://dev.wix.com/docs/go-headless/tutorials-templates/other-tutorials/working-with-rich-content).
3329
- * > **Note:** Returned only when you pass `"BREADCRUMBS"` to the `fields` array in Categories API requests.
3320
+ * > **Note:** Returned only when you pass `"RICH_CONTENT_DESCRIPTION"` to the `fields` array in Categories API requests.
3330
3321
  */
3331
3322
  richContentDescription?: RichContent;
3332
3323
  /**
@@ -3345,14 +3336,7 @@ interface UpdateCategory {
3345
3336
  interface UpdateCategoryOptions {
3346
3337
  /** Category tree reference details. */
3347
3338
  treeReference: TreeReference;
3348
- /**
3349
- * Fields to include in the response.
3350
- *
3351
- * Supported values:
3352
- * + `BREADCRUMBS`
3353
- * + `DESCRIPTION`
3354
- * + `RICH_CONTENT_DESCRIPTION`
3355
- */
3339
+ /** Fields to include in the response. */
3356
3340
  fields?: SingleEntityOpsRequestedFields[];
3357
3341
  }
3358
3342
  interface QueryCategoriesOptions {
@@ -3363,14 +3347,7 @@ interface QueryCategoriesOptions {
3363
3347
  * Used only in the first request. Following requests use the cursor token.
3364
3348
  */
3365
3349
  returnNonVisibleCategories?: boolean | undefined;
3366
- /**
3367
- * Fields to include in the response.
3368
- *
3369
- * Supported values:
3370
- * + `BREADCRUMBS`
3371
- * + `DESCRIPTION`
3372
- * + `RICH_CONTENT_DESCRIPTION`
3373
- */
3350
+ /** Fields to include in the response. */
3374
3351
  fields?: RequestedFields[] | undefined;
3375
3352
  }
3376
3353
  interface QueryCursorResult {
@@ -3464,14 +3441,7 @@ interface SearchCategoriesOptions {
3464
3441
  * Default: `false` - only visible categories are returned in the response
3465
3442
  */
3466
3443
  returnNonVisibleCategories?: boolean;
3467
- /**
3468
- * Fields to include in the response.
3469
- *
3470
- * Supported values:
3471
- * + `BREADCRUMBS`
3472
- * + `DESCRIPTION`
3473
- * + `RICH_CONTENT_DESCRIPTION`
3474
- */
3444
+ /** Fields to include in the response. */
3475
3445
  fields?: RequestedFields[];
3476
3446
  }
3477
3447
  interface CountCategoriesOptions {
@@ -3519,14 +3489,7 @@ interface BulkUpdateCategoriesOptions {
3519
3489
  * Default: `false`
3520
3490
  */
3521
3491
  returnEntity?: boolean;
3522
- /**
3523
- * Fields to include in the response.
3524
- *
3525
- * Supported values:
3526
- * + `BREADCRUMBS`
3527
- * + `DESCRIPTION`
3528
- * + `RICH_CONTENT_DESCRIPTION`
3529
- */
3492
+ /** Fields to include in the response. */
3530
3493
  fields?: RequestedFields[];
3531
3494
  }
3532
3495
  interface UpdateCategoryVisibilityOptions {
@@ -3544,14 +3507,7 @@ interface UpdateCategoryVisibilityOptions {
3544
3507
  * To prevent conflicting changes, the current revision must be passed on update.
3545
3508
  */
3546
3509
  revision: string | null;
3547
- /**
3548
- * Fields to include in the response.
3549
- *
3550
- * Supported values:
3551
- * + `BREADCRUMBS`
3552
- * + `DESCRIPTION`
3553
- * + `RICH_CONTENT_DESCRIPTION`
3554
- */
3510
+ /** Fields to include in the response. */
3555
3511
  fields?: SingleEntityOpsRequestedFields[];
3556
3512
  }
3557
3513
  interface BulkAddItemsToCategoryOptions {
@@ -3629,6 +3585,16 @@ type APIMetadata = {
3629
3585
  packageName?: string;
3630
3586
  };
3631
3587
  type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
3588
+ type EventDefinition<Payload = unknown, Type extends string = string> = {
3589
+ __type: 'event-definition';
3590
+ type: Type;
3591
+ isDomainEvent?: boolean;
3592
+ transformations?: (envelope: unknown) => Payload;
3593
+ __payload: Payload;
3594
+ };
3595
+ declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
3596
+ type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
3597
+ type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
3632
3598
 
3633
3599
  declare global {
3634
3600
  // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
@@ -3639,6 +3605,8 @@ declare global {
3639
3605
 
3640
3606
  declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
3641
3607
 
3608
+ declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
3609
+
3642
3610
  declare const createCategory: ReturnType<typeof createRESTModule<typeof publicCreateCategory>>;
3643
3611
  declare const getCategory: ReturnType<typeof createRESTModule<typeof publicGetCategory>>;
3644
3612
  declare const updateCategory: ReturnType<typeof createRESTModule<typeof publicUpdateCategory>>;
@@ -3658,6 +3626,13 @@ declare const listCategoriesForItem: ReturnType<typeof createRESTModule<typeof p
3658
3626
  declare const listTrees: ReturnType<typeof createRESTModule<typeof publicListTrees>>;
3659
3627
  declare const setArrangedItems: ReturnType<typeof createRESTModule<typeof publicSetArrangedItems>>;
3660
3628
  declare const getArrangedItems: ReturnType<typeof createRESTModule<typeof publicGetArrangedItems>>;
3629
+ declare const onCategoryCreated: ReturnType<typeof createEventModule<typeof publicOnCategoryCreated>>;
3630
+ declare const onCategoryUpdated: ReturnType<typeof createEventModule<typeof publicOnCategoryUpdated>>;
3631
+ declare const onCategoryDeleted: ReturnType<typeof createEventModule<typeof publicOnCategoryDeleted>>;
3632
+ declare const onCategoryMoved: ReturnType<typeof createEventModule<typeof publicOnCategoryMoved>>;
3633
+ declare const onCategoryItemAddedToCategory: ReturnType<typeof createEventModule<typeof publicOnCategoryItemAddedToCategory>>;
3634
+ declare const onCategoryItemRemovedFromCategory: ReturnType<typeof createEventModule<typeof publicOnCategoryItemRemovedFromCategory>>;
3635
+ declare const onCategoryItemsArrangedInCategory: ReturnType<typeof createEventModule<typeof publicOnCategoryItemsArrangedInCategory>>;
3661
3636
 
3662
3637
  type context_ActionEvent = ActionEvent;
3663
3638
  type context_Aggregation = Aggregation;
@@ -3682,6 +3657,7 @@ type context_Background = Background;
3682
3657
  type context_BackgroundBackgroundOneOf = BackgroundBackgroundOneOf;
3683
3658
  type context_BackgroundType = BackgroundType;
3684
3659
  declare const context_BackgroundType: typeof BackgroundType;
3660
+ type context_BaseEventMetadata = BaseEventMetadata;
3685
3661
  type context_BlockquoteData = BlockquoteData;
3686
3662
  type context_BookingData = BookingData;
3687
3663
  type context_Border = Border;
@@ -3728,9 +3704,16 @@ type context_ButtonData = ButtonData;
3728
3704
  type context_CategoriesQueryBuilder = CategoriesQueryBuilder;
3729
3705
  type context_CategoriesQueryResult = CategoriesQueryResult;
3730
3706
  type context_Category = Category;
3707
+ type context_CategoryCreatedEnvelope = CategoryCreatedEnvelope;
3708
+ type context_CategoryDeletedEnvelope = CategoryDeletedEnvelope;
3709
+ type context_CategoryItemAddedToCategoryEnvelope = CategoryItemAddedToCategoryEnvelope;
3710
+ type context_CategoryItemRemovedFromCategoryEnvelope = CategoryItemRemovedFromCategoryEnvelope;
3711
+ type context_CategoryItemsArrangedInCategoryEnvelope = CategoryItemsArrangedInCategoryEnvelope;
3731
3712
  type context_CategoryMoved = CategoryMoved;
3713
+ type context_CategoryMovedEnvelope = CategoryMovedEnvelope;
3732
3714
  type context_CategoryNonNullableFields = CategoryNonNullableFields;
3733
3715
  type context_CategoryTreeNode = CategoryTreeNode;
3716
+ type context_CategoryUpdatedEnvelope = CategoryUpdatedEnvelope;
3734
3717
  type context_CellStyle = CellStyle;
3735
3718
  type context_CodeBlockData = CodeBlockData;
3736
3719
  type context_CollapsibleListData = CollapsibleListData;
@@ -3780,6 +3763,7 @@ type context_EntityCreatedEvent = EntityCreatedEvent;
3780
3763
  type context_EntityDeletedEvent = EntityDeletedEvent;
3781
3764
  type context_EntityUpdatedEvent = EntityUpdatedEvent;
3782
3765
  type context_EventData = EventData;
3766
+ type context_EventMetadata = EventMetadata;
3783
3767
  type context_ExtendedFields = ExtendedFields;
3784
3768
  type context_File = File;
3785
3769
  type context_FileData = FileData;
@@ -4034,13 +4018,20 @@ declare const context_listCategoriesForItem: typeof listCategoriesForItem;
4034
4018
  declare const context_listItemsInCategory: typeof listItemsInCategory;
4035
4019
  declare const context_listTrees: typeof listTrees;
4036
4020
  declare const context_moveCategory: typeof moveCategory;
4021
+ declare const context_onCategoryCreated: typeof onCategoryCreated;
4022
+ declare const context_onCategoryDeleted: typeof onCategoryDeleted;
4023
+ declare const context_onCategoryItemAddedToCategory: typeof onCategoryItemAddedToCategory;
4024
+ declare const context_onCategoryItemRemovedFromCategory: typeof onCategoryItemRemovedFromCategory;
4025
+ declare const context_onCategoryItemsArrangedInCategory: typeof onCategoryItemsArrangedInCategory;
4026
+ declare const context_onCategoryMoved: typeof onCategoryMoved;
4027
+ declare const context_onCategoryUpdated: typeof onCategoryUpdated;
4037
4028
  declare const context_queryCategories: typeof queryCategories;
4038
4029
  declare const context_searchCategories: typeof searchCategories;
4039
4030
  declare const context_setArrangedItems: typeof setArrangedItems;
4040
4031
  declare const context_updateCategory: typeof updateCategory;
4041
4032
  declare const context_updateCategoryVisibility: typeof updateCategoryVisibility;
4042
4033
  declare namespace context {
4043
- 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_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreadcrumbItem as BreadcrumbItem, type context_BreadcrumbItemValues as BreadcrumbItemValues, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type context_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type context_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type context_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type context_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type context_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type context_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type context_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type context_BulkCategoriesResult as BulkCategoriesResult, type context_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type context_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type context_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type context_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type context_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type context_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type context_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type context_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type context_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type context_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type context_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type context_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type context_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type context_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type context_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type context_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type context_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type context_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type context_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type context_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type context_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type context_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type context_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type context_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type context_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, type context_CategoriesQueryBuilder as CategoriesQueryBuilder, type context_CategoriesQueryResult as CategoriesQueryResult, type context_Category as Category, type context_CategoryMoved as CategoryMoved, type context_CategoryNonNullableFields as CategoryNonNullableFields, type context_CategoryTreeNode as CategoryTreeNode, type context_CellStyle as CellStyle, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCursors as CommonCursors, type context_CompactCategory as CompactCategory, type context_CountCategoriesOptions as CountCategoriesOptions, type context_CountCategoriesRequest as CountCategoriesRequest, type context_CountCategoriesResponse as CountCategoriesResponse, type context_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type context_CreateCategoryOptions as CreateCategoryOptions, type context_CreateCategoryRequest as CreateCategoryRequest, type context_CreateCategoryResponse as CreateCategoryResponse, type context_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_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_ExtendedFields as ExtendedFields, type context_File as File, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetArrangedItemsRequest as GetArrangedItemsRequest, type context_GetArrangedItemsResponse as GetArrangedItemsResponse, type context_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type context_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type context_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type context_GetCategoryOptions as GetCategoryOptions, type context_GetCategoryRequest as GetCategoryRequest, type context_GetCategoryResponse as GetCategoryResponse, type context_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type context_Gradient as Gradient, type context_GroupByValueResults as GroupByValueResults, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, type context_ImageData as ImageData, type context_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context_InitialExpandedItems as InitialExpandedItems, context_Interval as Interval, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Item as Item, type context_ItemAddedToCategory as ItemAddedToCategory, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemReference as ItemReference, type context_ItemReferenceMetadata as ItemReferenceMetadata, type context_ItemRemovedFromCategory as ItemRemovedFromCategory, type context_ItemStyle as ItemStyle, type context_ItemsAddedToCategory as ItemsAddedToCategory, type context_ItemsArrangedInCategory as ItemsArrangedInCategory, type context_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context_Keyword as Keyword, type context_Layout as Layout, context_LayoutType as LayoutType, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, type context_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type context_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type context_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type context_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type context_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type context_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type context_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type context_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type context_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type context_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type context_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type context_ListTreesRequest as ListTreesRequest, type context_ListTreesResponse as ListTreesResponse, type context_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_MaskedCategory as MaskedCategory, type context_Media as Media, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_MissingValues as MissingValues, context_Mode as Mode, type context_MoveCategoryOptions as MoveCategoryOptions, type context_MoveCategoryRequest as MoveCategoryRequest, type context_MoveCategoryResponse as MoveCategoryResponse, type context_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type context_MoveItemInCategoryRequest as MoveItemInCategoryRequest, context_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type context_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type context_NestedAggregation as NestedAggregation, type context_NestedAggregationItem as NestedAggregationItem, type context_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context_NestedAggregationResults as NestedAggregationResults, type context_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context_NestedAggregationType as NestedAggregationType, type context_NestedResultValue as NestedResultValue, type context_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context_NestedResults as NestedResults, type context_NestedValueAggregationResult as NestedValueAggregationResult, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, type context_Oembed as Oembed, type context_OffsetSearch as OffsetSearch, type context_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, type context_PDFSettings as PDFSettings, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadata as PagingMetadata, type context_PagingMetadataV2 as PagingMetadataV2, type context_ParagraphData as ParagraphData, type context_ParentCategory as ParentCategory, type context_Permissions as Permissions, type context_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollSettings as PollSettings, context_Position as Position, type context_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, context_bulkAddItemToCategories as bulkAddItemToCategories, context_bulkAddItemsToCategory as bulkAddItemsToCategory, context_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, context_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, context_bulkUpdateCategories as bulkUpdateCategories, context_countCategories as countCategories, context_createCategory as createCategory, context_deleteCategory as deleteCategory, context_getArrangedItems as getArrangedItems, context_getCategory as getCategory, context_listCategoriesForItem as listCategoriesForItem, context_listItemsInCategory as listItemsInCategory, context_listTrees as listTrees, context_moveCategory as moveCategory, context_queryCategories as queryCategories, context_searchCategories as searchCategories, context_setArrangedItems as setArrangedItems, context_updateCategory as updateCategory, context_updateCategoryVisibility as updateCategoryVisibility };
4034
+ export { type context_ActionEvent as ActionEvent, type context_Aggregation as Aggregation, type context_AggregationData as AggregationData, type context_AggregationKindOneOf as AggregationKindOneOf, type context_AggregationResults as AggregationResults, type context_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context_AggregationResultsScalarResult as AggregationResultsScalarResult, context_AggregationType as AggregationType, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_App as App, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BaseEventMetadata as BaseEventMetadata, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreadcrumbItem as BreadcrumbItem, type context_BreadcrumbItemValues as BreadcrumbItemValues, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type context_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type context_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type context_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type context_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type context_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type context_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type context_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type context_BulkCategoriesResult as BulkCategoriesResult, type context_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type context_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type context_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type context_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type context_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type context_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type context_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type context_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type context_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type context_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type context_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type context_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type context_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type context_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type context_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type context_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type context_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type context_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type context_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type context_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type context_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type context_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type context_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type context_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type context_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, type context_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_CommonCursors as CommonCursors, type context_CompactCategory as CompactCategory, type context_CountCategoriesOptions as CountCategoriesOptions, type context_CountCategoriesRequest as CountCategoriesRequest, type context_CountCategoriesResponse as CountCategoriesResponse, type context_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type context_CreateCategoryOptions as CreateCategoryOptions, type context_CreateCategoryRequest as CreateCategoryRequest, type context_CreateCategoryResponse as CreateCategoryResponse, type context_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_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_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollSettings as PollSettings, context_Position as Position, type context_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, context_bulkAddItemToCategories as bulkAddItemToCategories, context_bulkAddItemsToCategory as bulkAddItemsToCategory, context_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, context_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, context_bulkUpdateCategories as bulkUpdateCategories, context_countCategories as countCategories, context_createCategory as createCategory, context_deleteCategory as deleteCategory, context_getArrangedItems as getArrangedItems, context_getCategory as getCategory, context_listCategoriesForItem as listCategoriesForItem, context_listItemsInCategory as listItemsInCategory, context_listTrees as listTrees, context_moveCategory as moveCategory, context_onCategoryCreated as onCategoryCreated, context_onCategoryDeleted as onCategoryDeleted, context_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, context_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, context_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, context_onCategoryMoved as onCategoryMoved, context_onCategoryUpdated as onCategoryUpdated, context_queryCategories as queryCategories, context_searchCategories as searchCategories, context_setArrangedItems as setArrangedItems, context_updateCategory as updateCategory, context_updateCategoryVisibility as updateCategoryVisibility };
4044
4035
  }
4045
4036
 
4046
4037
  export { context as categories };
@@ -65,7 +65,7 @@ interface Category {
65
65
  * Category description using rich content.
66
66
  *
67
67
  * Learn more about [Working with Rich Content](https://dev.wix.com/docs/go-headless/tutorials-templates/other-tutorials/working-with-rich-content).
68
- * > **Note:** Returned only when you pass `"BREADCRUMBS"` to the `fields` array in Categories API requests.
68
+ * > **Note:** Returned only when you pass `"RICH_CONTENT_DESCRIPTION"` to the `fields` array in Categories API requests.
69
69
  */
70
70
  richContentDescription?: RichContent;
71
71
  /**
@@ -125,6 +125,8 @@ interface Keyword {
125
125
  term?: string;
126
126
  /** Whether the keyword is the main focus keyword. */
127
127
  isMain?: boolean;
128
+ /** Who added the keyword to the settings */
129
+ origin?: string | null;
128
130
  }
129
131
  interface Tag {
130
132
  /**
@@ -1536,14 +1538,7 @@ interface CreateCategoryRequest {
1536
1538
  category: Category;
1537
1539
  /** Category tree reference details. */
1538
1540
  treeReference: TreeReference;
1539
- /**
1540
- * Fields to include in the response.
1541
- *
1542
- * Supported values:
1543
- * + `BREADCRUMBS`
1544
- * + `DESCRIPTION`
1545
- * + `RICH_CONTENT_DESCRIPTION`
1546
- */
1541
+ /** Fields to include in the response. */
1547
1542
  fields?: SingleEntityOpsRequestedFields[];
1548
1543
  }
1549
1544
  declare enum SingleEntityOpsRequestedFields {
@@ -1561,14 +1556,7 @@ interface GetCategoryRequest {
1561
1556
  categoryId: string;
1562
1557
  /** Category tree reference details. */
1563
1558
  treeReference: TreeReference;
1564
- /**
1565
- * Fields to include in the response.
1566
- *
1567
- * Supported values:
1568
- * + `BREADCRUMBS`
1569
- * + `DESCRIPTION`
1570
- * + `RICH_CONTENT_DESCRIPTION`
1571
- */
1559
+ /** Fields to include in the response. */
1572
1560
  fields?: SingleEntityOpsRequestedFields[];
1573
1561
  }
1574
1562
  interface GetCategoryResponse {
@@ -1580,14 +1568,7 @@ interface UpdateCategoryRequest {
1580
1568
  category: Category;
1581
1569
  /** Category tree reference details. */
1582
1570
  treeReference: TreeReference;
1583
- /**
1584
- * Fields to include in the response.
1585
- *
1586
- * Supported values:
1587
- * + `BREADCRUMBS`
1588
- * + `DESCRIPTION`
1589
- * + `RICH_CONTENT_DESCRIPTION`
1590
- */
1571
+ /** Fields to include in the response. */
1591
1572
  fields?: SingleEntityOpsRequestedFields[];
1592
1573
  }
1593
1574
  interface UpdateCategoryResponse {
@@ -1612,14 +1593,7 @@ interface QueryCategoriesRequest {
1612
1593
  * Used only in the first request. Following requests use the cursor token.
1613
1594
  */
1614
1595
  returnNonVisibleCategories?: boolean;
1615
- /**
1616
- * Fields to include in the response.
1617
- *
1618
- * Supported values:
1619
- * + `BREADCRUMBS`
1620
- * + `DESCRIPTION`
1621
- * + `RICH_CONTENT_DESCRIPTION`
1622
- */
1596
+ /** Fields to include in the response. */
1623
1597
  fields?: RequestedFields[];
1624
1598
  }
1625
1599
  interface CursorQuery extends CursorQueryPagingMethodOneOf {
@@ -1718,14 +1692,7 @@ interface SearchCategoriesRequest {
1718
1692
  * Default: `false` - only visible categories are returned in the response
1719
1693
  */
1720
1694
  returnNonVisibleCategories?: boolean;
1721
- /**
1722
- * Fields to include in the response.
1723
- *
1724
- * Supported values:
1725
- * + `BREADCRUMBS`
1726
- * + `DESCRIPTION`
1727
- * + `RICH_CONTENT_DESCRIPTION`
1728
- */
1695
+ /** Fields to include in the response. */
1729
1696
  fields?: RequestedFields[];
1730
1697
  }
1731
1698
  interface CursorSearch extends CursorSearchPagingMethodOneOf {
@@ -2156,14 +2123,7 @@ interface DeprecatedSearchCategoriesWithOffsetRequest {
2156
2123
  treeReference?: TreeReference;
2157
2124
  /** Whether to return categories with `visible:false`. Default: false so only visible categories will be in response. */
2158
2125
  returnNonVisibleCategories?: boolean;
2159
- /**
2160
- * Fields to include in the response.
2161
- *
2162
- * Supported values:
2163
- * + `BREADCRUMBS`
2164
- * + `DESCRIPTION`
2165
- * + `RICH_CONTENT_DESCRIPTION`
2166
- */
2126
+ /** Fields to include in the response. */
2167
2127
  fields?: RequestedFields[];
2168
2128
  }
2169
2129
  interface OffsetSearch extends OffsetSearchPagingMethodOneOf {
@@ -2284,14 +2244,7 @@ interface BulkCreateCategoriesRequest {
2284
2244
  * Default: `false`
2285
2245
  */
2286
2246
  returnEntity?: boolean;
2287
- /**
2288
- * Fields to include in the response.
2289
- *
2290
- * Supported values:
2291
- * + `BREADCRUMBS`
2292
- * + `DESCRIPTION`
2293
- * + `RICH_CONTENT_DESCRIPTION`
2294
- */
2247
+ /** Fields to include in the response. */
2295
2248
  fields?: RequestedFields[];
2296
2249
  }
2297
2250
  interface BulkCreateCategoriesResponse {
@@ -2347,14 +2300,7 @@ interface BulkUpdateCategoriesRequest {
2347
2300
  * Default: `false`
2348
2301
  */
2349
2302
  returnEntity?: boolean;
2350
- /**
2351
- * Fields to include in the response.
2352
- *
2353
- * Supported values:
2354
- * + `BREADCRUMBS`
2355
- * + `DESCRIPTION`
2356
- * + `RICH_CONTENT_DESCRIPTION`
2357
- */
2303
+ /** Fields to include in the response. */
2358
2304
  fields?: RequestedFields[];
2359
2305
  }
2360
2306
  interface MaskedCategory {
@@ -2384,14 +2330,7 @@ interface UpdateCategoryVisibilityRequest {
2384
2330
  * To prevent conflicting changes, the current revision must be passed on update.
2385
2331
  */
2386
2332
  revision: string | null;
2387
- /**
2388
- * Fields to include in the response.
2389
- *
2390
- * Supported values:
2391
- * + `BREADCRUMBS`
2392
- * + `DESCRIPTION`
2393
- * + `RICH_CONTENT_DESCRIPTION`
2394
- */
2333
+ /** Fields to include in the response. */
2395
2334
  fields?: SingleEntityOpsRequestedFields[];
2396
2335
  }
2397
2336
  interface UpdateCategoryVisibilityResponse {
@@ -2411,14 +2350,7 @@ interface BulkUpdateCategoryVisibilityRequest {
2411
2350
  * Default: `false`
2412
2351
  */
2413
2352
  returnEntity?: boolean;
2414
- /**
2415
- * Fields to include in the response.
2416
- *
2417
- * Supported values:
2418
- * + `BREADCRUMBS`
2419
- * + `DESCRIPTION`
2420
- * + `RICH_CONTENT_DESCRIPTION`
2421
- */
2353
+ /** Fields to include in the response. */
2422
2354
  fields?: RequestedFields[];
2423
2355
  }
2424
2356
  interface BulkUpdateCategoryVisibilityResponse {
@@ -3235,28 +3167,87 @@ interface SetArrangedItemsResponseNonNullableFields {
3235
3167
  interface GetArrangedItemsResponseNonNullableFields {
3236
3168
  items: ItemReferenceNonNullableFields[];
3237
3169
  }
3170
+ interface BaseEventMetadata {
3171
+ /** App instance ID. */
3172
+ instanceId?: string | null;
3173
+ /** Event type. */
3174
+ eventType?: string;
3175
+ /** The identification type and identity data. */
3176
+ identity?: IdentificationData;
3177
+ }
3178
+ interface EventMetadata extends BaseEventMetadata {
3179
+ /**
3180
+ * Unique event ID.
3181
+ * Allows clients to ignore duplicate webhooks.
3182
+ */
3183
+ _id?: string;
3184
+ /**
3185
+ * Assumes actions are also always typed to an entity_type
3186
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
3187
+ */
3188
+ entityFqdn?: string;
3189
+ /**
3190
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
3191
+ * This is although the created/updated/deleted notion is duplication of the oneof types
3192
+ * Example: created/updated/deleted/started/completed/email_opened
3193
+ */
3194
+ slug?: string;
3195
+ /** ID of the entity associated with the event. */
3196
+ entityId?: string;
3197
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
3198
+ eventTime?: Date;
3199
+ /**
3200
+ * Whether the event was triggered as a result of a privacy regulation application
3201
+ * (for example, GDPR).
3202
+ */
3203
+ triggeredByAnonymizeRequest?: boolean | null;
3204
+ /** If present, indicates the action that triggered the event. */
3205
+ originatedFrom?: string | null;
3206
+ /**
3207
+ * A sequence number defining the order of updates to the underlying entity.
3208
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
3209
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
3210
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
3211
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
3212
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
3213
+ */
3214
+ entityEventSequence?: string | null;
3215
+ }
3216
+ interface CategoryCreatedEnvelope {
3217
+ entity: Category;
3218
+ metadata: EventMetadata;
3219
+ }
3220
+ interface CategoryUpdatedEnvelope {
3221
+ entity: Category;
3222
+ metadata: EventMetadata;
3223
+ }
3224
+ interface CategoryDeletedEnvelope {
3225
+ metadata: EventMetadata;
3226
+ }
3227
+ interface CategoryMovedEnvelope {
3228
+ data: CategoryMoved;
3229
+ metadata: EventMetadata;
3230
+ }
3231
+ interface CategoryItemAddedToCategoryEnvelope {
3232
+ data: ItemAddedToCategory;
3233
+ metadata: EventMetadata;
3234
+ }
3235
+ interface CategoryItemRemovedFromCategoryEnvelope {
3236
+ data: ItemRemovedFromCategory;
3237
+ metadata: EventMetadata;
3238
+ }
3239
+ interface CategoryItemsArrangedInCategoryEnvelope {
3240
+ data: ItemsArrangedInCategory;
3241
+ metadata: EventMetadata;
3242
+ }
3238
3243
  interface CreateCategoryOptions {
3239
3244
  /** Category tree reference details. */
3240
3245
  treeReference: TreeReference;
3241
- /**
3242
- * Fields to include in the response.
3243
- *
3244
- * Supported values:
3245
- * + `BREADCRUMBS`
3246
- * + `DESCRIPTION`
3247
- * + `RICH_CONTENT_DESCRIPTION`
3248
- */
3246
+ /** Fields to include in the response. */
3249
3247
  fields?: SingleEntityOpsRequestedFields[];
3250
3248
  }
3251
3249
  interface GetCategoryOptions {
3252
- /**
3253
- * Fields to include in the response.
3254
- *
3255
- * Supported values:
3256
- * + `BREADCRUMBS`
3257
- * + `DESCRIPTION`
3258
- * + `RICH_CONTENT_DESCRIPTION`
3259
- */
3250
+ /** Fields to include in the response. */
3260
3251
  fields?: SingleEntityOpsRequestedFields[];
3261
3252
  }
3262
3253
  interface UpdateCategory {
@@ -3326,7 +3317,7 @@ interface UpdateCategory {
3326
3317
  * Category description using rich content.
3327
3318
  *
3328
3319
  * Learn more about [Working with Rich Content](https://dev.wix.com/docs/go-headless/tutorials-templates/other-tutorials/working-with-rich-content).
3329
- * > **Note:** Returned only when you pass `"BREADCRUMBS"` to the `fields` array in Categories API requests.
3320
+ * > **Note:** Returned only when you pass `"RICH_CONTENT_DESCRIPTION"` to the `fields` array in Categories API requests.
3330
3321
  */
3331
3322
  richContentDescription?: RichContent;
3332
3323
  /**
@@ -3345,14 +3336,7 @@ interface UpdateCategory {
3345
3336
  interface UpdateCategoryOptions {
3346
3337
  /** Category tree reference details. */
3347
3338
  treeReference: TreeReference;
3348
- /**
3349
- * Fields to include in the response.
3350
- *
3351
- * Supported values:
3352
- * + `BREADCRUMBS`
3353
- * + `DESCRIPTION`
3354
- * + `RICH_CONTENT_DESCRIPTION`
3355
- */
3339
+ /** Fields to include in the response. */
3356
3340
  fields?: SingleEntityOpsRequestedFields[];
3357
3341
  }
3358
3342
  interface QueryCategoriesOptions {
@@ -3363,14 +3347,7 @@ interface QueryCategoriesOptions {
3363
3347
  * Used only in the first request. Following requests use the cursor token.
3364
3348
  */
3365
3349
  returnNonVisibleCategories?: boolean | undefined;
3366
- /**
3367
- * Fields to include in the response.
3368
- *
3369
- * Supported values:
3370
- * + `BREADCRUMBS`
3371
- * + `DESCRIPTION`
3372
- * + `RICH_CONTENT_DESCRIPTION`
3373
- */
3350
+ /** Fields to include in the response. */
3374
3351
  fields?: RequestedFields[] | undefined;
3375
3352
  }
3376
3353
  interface QueryCursorResult {
@@ -3464,14 +3441,7 @@ interface SearchCategoriesOptions {
3464
3441
  * Default: `false` - only visible categories are returned in the response
3465
3442
  */
3466
3443
  returnNonVisibleCategories?: boolean;
3467
- /**
3468
- * Fields to include in the response.
3469
- *
3470
- * Supported values:
3471
- * + `BREADCRUMBS`
3472
- * + `DESCRIPTION`
3473
- * + `RICH_CONTENT_DESCRIPTION`
3474
- */
3444
+ /** Fields to include in the response. */
3475
3445
  fields?: RequestedFields[];
3476
3446
  }
3477
3447
  interface CountCategoriesOptions {
@@ -3519,14 +3489,7 @@ interface BulkUpdateCategoriesOptions {
3519
3489
  * Default: `false`
3520
3490
  */
3521
3491
  returnEntity?: boolean;
3522
- /**
3523
- * Fields to include in the response.
3524
- *
3525
- * Supported values:
3526
- * + `BREADCRUMBS`
3527
- * + `DESCRIPTION`
3528
- * + `RICH_CONTENT_DESCRIPTION`
3529
- */
3492
+ /** Fields to include in the response. */
3530
3493
  fields?: RequestedFields[];
3531
3494
  }
3532
3495
  interface UpdateCategoryVisibilityOptions {
@@ -3544,14 +3507,7 @@ interface UpdateCategoryVisibilityOptions {
3544
3507
  * To prevent conflicting changes, the current revision must be passed on update.
3545
3508
  */
3546
3509
  revision: string | null;
3547
- /**
3548
- * Fields to include in the response.
3549
- *
3550
- * Supported values:
3551
- * + `BREADCRUMBS`
3552
- * + `DESCRIPTION`
3553
- * + `RICH_CONTENT_DESCRIPTION`
3554
- */
3510
+ /** Fields to include in the response. */
3555
3511
  fields?: SingleEntityOpsRequestedFields[];
3556
3512
  }
3557
3513
  interface BulkAddItemsToCategoryOptions {
@@ -3629,6 +3585,16 @@ type APIMetadata = {
3629
3585
  packageName?: string;
3630
3586
  };
3631
3587
  type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
3588
+ type EventDefinition<Payload = unknown, Type extends string = string> = {
3589
+ __type: 'event-definition';
3590
+ type: Type;
3591
+ isDomainEvent?: boolean;
3592
+ transformations?: (envelope: unknown) => Payload;
3593
+ __payload: Payload;
3594
+ };
3595
+ declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
3596
+ type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
3597
+ type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
3632
3598
 
3633
3599
  declare global {
3634
3600
  // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
@@ -3639,6 +3605,8 @@ declare global {
3639
3605
 
3640
3606
  declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
3641
3607
 
3608
+ declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
3609
+
3642
3610
  declare const createCategory: ReturnType<typeof createRESTModule<typeof publicCreateCategory>>;
3643
3611
  declare const getCategory: ReturnType<typeof createRESTModule<typeof publicGetCategory>>;
3644
3612
  declare const updateCategory: ReturnType<typeof createRESTModule<typeof publicUpdateCategory>>;
@@ -3658,6 +3626,13 @@ declare const listCategoriesForItem: ReturnType<typeof createRESTModule<typeof p
3658
3626
  declare const listTrees: ReturnType<typeof createRESTModule<typeof publicListTrees>>;
3659
3627
  declare const setArrangedItems: ReturnType<typeof createRESTModule<typeof publicSetArrangedItems>>;
3660
3628
  declare const getArrangedItems: ReturnType<typeof createRESTModule<typeof publicGetArrangedItems>>;
3629
+ declare const onCategoryCreated: ReturnType<typeof createEventModule<typeof publicOnCategoryCreated>>;
3630
+ declare const onCategoryUpdated: ReturnType<typeof createEventModule<typeof publicOnCategoryUpdated>>;
3631
+ declare const onCategoryDeleted: ReturnType<typeof createEventModule<typeof publicOnCategoryDeleted>>;
3632
+ declare const onCategoryMoved: ReturnType<typeof createEventModule<typeof publicOnCategoryMoved>>;
3633
+ declare const onCategoryItemAddedToCategory: ReturnType<typeof createEventModule<typeof publicOnCategoryItemAddedToCategory>>;
3634
+ declare const onCategoryItemRemovedFromCategory: ReturnType<typeof createEventModule<typeof publicOnCategoryItemRemovedFromCategory>>;
3635
+ declare const onCategoryItemsArrangedInCategory: ReturnType<typeof createEventModule<typeof publicOnCategoryItemsArrangedInCategory>>;
3661
3636
 
3662
3637
  type index_d_ActionEvent = ActionEvent;
3663
3638
  type index_d_Aggregation = Aggregation;
@@ -3682,6 +3657,7 @@ type index_d_Background = Background;
3682
3657
  type index_d_BackgroundBackgroundOneOf = BackgroundBackgroundOneOf;
3683
3658
  type index_d_BackgroundType = BackgroundType;
3684
3659
  declare const index_d_BackgroundType: typeof BackgroundType;
3660
+ type index_d_BaseEventMetadata = BaseEventMetadata;
3685
3661
  type index_d_BlockquoteData = BlockquoteData;
3686
3662
  type index_d_BookingData = BookingData;
3687
3663
  type index_d_Border = Border;
@@ -3728,9 +3704,16 @@ type index_d_ButtonData = ButtonData;
3728
3704
  type index_d_CategoriesQueryBuilder = CategoriesQueryBuilder;
3729
3705
  type index_d_CategoriesQueryResult = CategoriesQueryResult;
3730
3706
  type index_d_Category = Category;
3707
+ type index_d_CategoryCreatedEnvelope = CategoryCreatedEnvelope;
3708
+ type index_d_CategoryDeletedEnvelope = CategoryDeletedEnvelope;
3709
+ type index_d_CategoryItemAddedToCategoryEnvelope = CategoryItemAddedToCategoryEnvelope;
3710
+ type index_d_CategoryItemRemovedFromCategoryEnvelope = CategoryItemRemovedFromCategoryEnvelope;
3711
+ type index_d_CategoryItemsArrangedInCategoryEnvelope = CategoryItemsArrangedInCategoryEnvelope;
3731
3712
  type index_d_CategoryMoved = CategoryMoved;
3713
+ type index_d_CategoryMovedEnvelope = CategoryMovedEnvelope;
3732
3714
  type index_d_CategoryNonNullableFields = CategoryNonNullableFields;
3733
3715
  type index_d_CategoryTreeNode = CategoryTreeNode;
3716
+ type index_d_CategoryUpdatedEnvelope = CategoryUpdatedEnvelope;
3734
3717
  type index_d_CellStyle = CellStyle;
3735
3718
  type index_d_CodeBlockData = CodeBlockData;
3736
3719
  type index_d_CollapsibleListData = CollapsibleListData;
@@ -3780,6 +3763,7 @@ type index_d_EntityCreatedEvent = EntityCreatedEvent;
3780
3763
  type index_d_EntityDeletedEvent = EntityDeletedEvent;
3781
3764
  type index_d_EntityUpdatedEvent = EntityUpdatedEvent;
3782
3765
  type index_d_EventData = EventData;
3766
+ type index_d_EventMetadata = EventMetadata;
3783
3767
  type index_d_ExtendedFields = ExtendedFields;
3784
3768
  type index_d_File = File;
3785
3769
  type index_d_FileData = FileData;
@@ -4034,13 +4018,20 @@ declare const index_d_listCategoriesForItem: typeof listCategoriesForItem;
4034
4018
  declare const index_d_listItemsInCategory: typeof listItemsInCategory;
4035
4019
  declare const index_d_listTrees: typeof listTrees;
4036
4020
  declare const index_d_moveCategory: typeof moveCategory;
4021
+ declare const index_d_onCategoryCreated: typeof onCategoryCreated;
4022
+ declare const index_d_onCategoryDeleted: typeof onCategoryDeleted;
4023
+ declare const index_d_onCategoryItemAddedToCategory: typeof onCategoryItemAddedToCategory;
4024
+ declare const index_d_onCategoryItemRemovedFromCategory: typeof onCategoryItemRemovedFromCategory;
4025
+ declare const index_d_onCategoryItemsArrangedInCategory: typeof onCategoryItemsArrangedInCategory;
4026
+ declare const index_d_onCategoryMoved: typeof onCategoryMoved;
4027
+ declare const index_d_onCategoryUpdated: typeof onCategoryUpdated;
4037
4028
  declare const index_d_queryCategories: typeof queryCategories;
4038
4029
  declare const index_d_searchCategories: typeof searchCategories;
4039
4030
  declare const index_d_setArrangedItems: typeof setArrangedItems;
4040
4031
  declare const index_d_updateCategory: typeof updateCategory;
4041
4032
  declare const index_d_updateCategoryVisibility: typeof updateCategoryVisibility;
4042
4033
  declare namespace index_d {
4043
- 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_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreadcrumbItem as BreadcrumbItem, type index_d_BreadcrumbItemValues as BreadcrumbItemValues, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type index_d_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type index_d_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type index_d_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type index_d_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type index_d_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type index_d_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type index_d_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type index_d_BulkCategoriesResult as BulkCategoriesResult, type index_d_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type index_d_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type index_d_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type index_d_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type index_d_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type index_d_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type index_d_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type index_d_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type index_d_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type index_d_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type index_d_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type index_d_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type index_d_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type index_d_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type index_d_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type index_d_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type index_d_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type index_d_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type index_d_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type index_d_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type index_d_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type index_d_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type index_d_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type index_d_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type index_d_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, type index_d_CategoriesQueryBuilder as CategoriesQueryBuilder, type index_d_CategoriesQueryResult as CategoriesQueryResult, type index_d_Category as Category, type index_d_CategoryMoved as CategoryMoved, type index_d_CategoryNonNullableFields as CategoryNonNullableFields, type index_d_CategoryTreeNode as CategoryTreeNode, type index_d_CellStyle as CellStyle, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCursors as CommonCursors, type index_d_CompactCategory as CompactCategory, type index_d_CountCategoriesOptions as CountCategoriesOptions, type index_d_CountCategoriesRequest as CountCategoriesRequest, type index_d_CountCategoriesResponse as CountCategoriesResponse, type index_d_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type index_d_CreateCategoryOptions as CreateCategoryOptions, type index_d_CreateCategoryRequest as CreateCategoryRequest, type index_d_CreateCategoryResponse as CreateCategoryResponse, type index_d_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_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_ExtendedFields as ExtendedFields, type index_d_File as File, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetArrangedItemsRequest as GetArrangedItemsRequest, type index_d_GetArrangedItemsResponse as GetArrangedItemsResponse, type index_d_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type index_d_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type index_d_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type index_d_GetCategoryOptions as GetCategoryOptions, type index_d_GetCategoryRequest as GetCategoryRequest, type index_d_GetCategoryResponse as GetCategoryResponse, type index_d_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_GroupByValueResults as GroupByValueResults, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, type index_d_ImageData as ImageData, type index_d_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d_InitialExpandedItems as InitialExpandedItems, index_d_Interval as Interval, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_Item as Item, type index_d_ItemAddedToCategory as ItemAddedToCategory, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemReference as ItemReference, type index_d_ItemReferenceMetadata as ItemReferenceMetadata, type index_d_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d_ItemStyle as ItemStyle, type index_d_ItemsAddedToCategory as ItemsAddedToCategory, type index_d_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d_Keyword as Keyword, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, type index_d_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type index_d_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type index_d_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type index_d_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type index_d_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type index_d_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type index_d_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type index_d_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type index_d_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type index_d_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type index_d_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type index_d_ListTreesRequest as ListTreesRequest, type index_d_ListTreesResponse as ListTreesResponse, type index_d_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_MaskedCategory as MaskedCategory, type index_d_Media as Media, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_MissingValues as MissingValues, index_d_Mode as Mode, type index_d_MoveCategoryOptions as MoveCategoryOptions, type index_d_MoveCategoryRequest as MoveCategoryRequest, type index_d_MoveCategoryResponse as MoveCategoryResponse, type index_d_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type index_d_MoveItemInCategoryRequest as MoveItemInCategoryRequest, index_d_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type index_d_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type index_d_NestedAggregation as NestedAggregation, type index_d_NestedAggregationItem as NestedAggregationItem, type index_d_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d_NestedAggregationResults as NestedAggregationResults, type index_d_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d_NestedAggregationType as NestedAggregationType, type index_d_NestedResultValue as NestedResultValue, type index_d_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d_NestedResults as NestedResults, type index_d_NestedValueAggregationResult as NestedValueAggregationResult, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, type index_d_Oembed as Oembed, type index_d_OffsetSearch as OffsetSearch, type index_d_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, type index_d_PDFSettings as PDFSettings, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadata as PagingMetadata, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_ParagraphData as ParagraphData, type index_d_ParentCategory as ParentCategory, type index_d_Permissions as Permissions, type index_d_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollSettings as PollSettings, index_d_Position as Position, type index_d_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, index_d_bulkAddItemToCategories as bulkAddItemToCategories, index_d_bulkAddItemsToCategory as bulkAddItemsToCategory, index_d_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, index_d_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, index_d_bulkUpdateCategories as bulkUpdateCategories, index_d_countCategories as countCategories, index_d_createCategory as createCategory, index_d_deleteCategory as deleteCategory, index_d_getArrangedItems as getArrangedItems, index_d_getCategory as getCategory, index_d_listCategoriesForItem as listCategoriesForItem, index_d_listItemsInCategory as listItemsInCategory, index_d_listTrees as listTrees, index_d_moveCategory as moveCategory, index_d_queryCategories as queryCategories, index_d_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
4034
+ export { type index_d_ActionEvent as ActionEvent, type index_d_Aggregation as Aggregation, type index_d_AggregationData as AggregationData, type index_d_AggregationKindOneOf as AggregationKindOneOf, type index_d_AggregationResults as AggregationResults, type index_d_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d_AggregationType as AggregationType, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_App as App, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreadcrumbItem as BreadcrumbItem, type index_d_BreadcrumbItemValues as BreadcrumbItemValues, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type index_d_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type index_d_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type index_d_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type index_d_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type index_d_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type index_d_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type index_d_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type index_d_BulkCategoriesResult as BulkCategoriesResult, type index_d_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type index_d_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type index_d_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type index_d_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type index_d_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type index_d_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type index_d_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type index_d_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type index_d_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type index_d_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type index_d_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type index_d_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type index_d_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type index_d_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type index_d_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type index_d_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type index_d_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type index_d_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type index_d_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type index_d_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type index_d_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type index_d_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type index_d_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type index_d_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type index_d_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, type index_d_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_CommonCursors as CommonCursors, type index_d_CompactCategory as CompactCategory, type index_d_CountCategoriesOptions as CountCategoriesOptions, type index_d_CountCategoriesRequest as CountCategoriesRequest, type index_d_CountCategoriesResponse as CountCategoriesResponse, type index_d_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type index_d_CreateCategoryOptions as CreateCategoryOptions, type index_d_CreateCategoryRequest as CreateCategoryRequest, type index_d_CreateCategoryResponse as CreateCategoryResponse, type index_d_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_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_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollSettings as PollSettings, index_d_Position as Position, type index_d_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, index_d_bulkAddItemToCategories as bulkAddItemToCategories, index_d_bulkAddItemsToCategory as bulkAddItemsToCategory, index_d_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, index_d_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, index_d_bulkUpdateCategories as bulkUpdateCategories, index_d_countCategories as countCategories, index_d_createCategory as createCategory, index_d_deleteCategory as deleteCategory, index_d_getArrangedItems as getArrangedItems, index_d_getCategory as getCategory, index_d_listCategoriesForItem as listCategoriesForItem, index_d_listItemsInCategory as listItemsInCategory, index_d_listTrees as listTrees, index_d_moveCategory as moveCategory, index_d_onCategoryCreated as onCategoryCreated, index_d_onCategoryDeleted as onCategoryDeleted, index_d_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, index_d_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, index_d_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, index_d_onCategoryMoved as onCategoryMoved, index_d_onCategoryUpdated as onCategoryUpdated, index_d_queryCategories as queryCategories, index_d_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
4044
4035
  }
4045
4036
 
4046
4037
  export { index_d as categories };
@@ -65,7 +65,7 @@ interface Category$1 {
65
65
  * Category description using rich content.
66
66
  *
67
67
  * Learn more about [Working with Rich Content](https://dev.wix.com/docs/go-headless/tutorials-templates/other-tutorials/working-with-rich-content).
68
- * > **Note:** Returned only when you pass `"BREADCRUMBS"` to the `fields` array in Categories API requests.
68
+ * > **Note:** Returned only when you pass `"RICH_CONTENT_DESCRIPTION"` to the `fields` array in Categories API requests.
69
69
  */
70
70
  richContentDescription?: RichContent$1;
71
71
  /**
@@ -1387,14 +1387,7 @@ interface CreateCategoryRequest$1 {
1387
1387
  category: Category$1;
1388
1388
  /** Category tree reference details. */
1389
1389
  treeReference: TreeReference$1;
1390
- /**
1391
- * Fields to include in the response.
1392
- *
1393
- * Supported values:
1394
- * + `BREADCRUMBS`
1395
- * + `DESCRIPTION`
1396
- * + `RICH_CONTENT_DESCRIPTION`
1397
- */
1390
+ /** Fields to include in the response. */
1398
1391
  fields?: SingleEntityOpsRequestedFields$1[];
1399
1392
  }
1400
1393
  declare enum SingleEntityOpsRequestedFields$1 {
@@ -1412,14 +1405,7 @@ interface GetCategoryRequest$1 {
1412
1405
  categoryId: string;
1413
1406
  /** Category tree reference details. */
1414
1407
  treeReference: TreeReference$1;
1415
- /**
1416
- * Fields to include in the response.
1417
- *
1418
- * Supported values:
1419
- * + `BREADCRUMBS`
1420
- * + `DESCRIPTION`
1421
- * + `RICH_CONTENT_DESCRIPTION`
1422
- */
1408
+ /** Fields to include in the response. */
1423
1409
  fields?: SingleEntityOpsRequestedFields$1[];
1424
1410
  }
1425
1411
  interface GetCategoryResponse$1 {
@@ -1431,14 +1417,7 @@ interface UpdateCategoryRequest$1 {
1431
1417
  category: Category$1;
1432
1418
  /** Category tree reference details. */
1433
1419
  treeReference: TreeReference$1;
1434
- /**
1435
- * Fields to include in the response.
1436
- *
1437
- * Supported values:
1438
- * + `BREADCRUMBS`
1439
- * + `DESCRIPTION`
1440
- * + `RICH_CONTENT_DESCRIPTION`
1441
- */
1420
+ /** Fields to include in the response. */
1442
1421
  fields?: SingleEntityOpsRequestedFields$1[];
1443
1422
  }
1444
1423
  interface UpdateCategoryResponse$1 {
@@ -1463,14 +1442,7 @@ interface QueryCategoriesRequest$1 {
1463
1442
  * Used only in the first request. Following requests use the cursor token.
1464
1443
  */
1465
1444
  returnNonVisibleCategories?: boolean;
1466
- /**
1467
- * Fields to include in the response.
1468
- *
1469
- * Supported values:
1470
- * + `BREADCRUMBS`
1471
- * + `DESCRIPTION`
1472
- * + `RICH_CONTENT_DESCRIPTION`
1473
- */
1445
+ /** Fields to include in the response. */
1474
1446
  fields?: RequestedFields$1[];
1475
1447
  }
1476
1448
  interface CursorQuery$1 extends CursorQueryPagingMethodOneOf$1 {
@@ -1553,14 +1525,7 @@ interface SearchCategoriesRequest$1 {
1553
1525
  * Default: `false` - only visible categories are returned in the response
1554
1526
  */
1555
1527
  returnNonVisibleCategories?: boolean;
1556
- /**
1557
- * Fields to include in the response.
1558
- *
1559
- * Supported values:
1560
- * + `BREADCRUMBS`
1561
- * + `DESCRIPTION`
1562
- * + `RICH_CONTENT_DESCRIPTION`
1563
- */
1528
+ /** Fields to include in the response. */
1564
1529
  fields?: RequestedFields$1[];
1565
1530
  }
1566
1531
  interface CursorSearch$1 extends CursorSearchPagingMethodOneOf$1 {
@@ -2087,14 +2052,7 @@ interface BulkUpdateCategoriesRequest$1 {
2087
2052
  * Default: `false`
2088
2053
  */
2089
2054
  returnEntity?: boolean;
2090
- /**
2091
- * Fields to include in the response.
2092
- *
2093
- * Supported values:
2094
- * + `BREADCRUMBS`
2095
- * + `DESCRIPTION`
2096
- * + `RICH_CONTENT_DESCRIPTION`
2097
- */
2055
+ /** Fields to include in the response. */
2098
2056
  fields?: RequestedFields$1[];
2099
2057
  }
2100
2058
  interface MaskedCategory$1 {
@@ -2124,14 +2082,7 @@ interface UpdateCategoryVisibilityRequest$1 {
2124
2082
  * To prevent conflicting changes, the current revision must be passed on update.
2125
2083
  */
2126
2084
  revision: string | null;
2127
- /**
2128
- * Fields to include in the response.
2129
- *
2130
- * Supported values:
2131
- * + `BREADCRUMBS`
2132
- * + `DESCRIPTION`
2133
- * + `RICH_CONTENT_DESCRIPTION`
2134
- */
2085
+ /** Fields to include in the response. */
2135
2086
  fields?: SingleEntityOpsRequestedFields$1[];
2136
2087
  }
2137
2088
  interface UpdateCategoryVisibilityResponse$1 {
@@ -2806,7 +2757,7 @@ interface Category {
2806
2757
  * Category description using rich content.
2807
2758
  *
2808
2759
  * Learn more about [Working with Rich Content](https://dev.wix.com/docs/go-headless/tutorials-templates/other-tutorials/working-with-rich-content).
2809
- * > **Note:** Returned only when you pass `"BREADCRUMBS"` to the `fields` array in Categories API requests.
2760
+ * > **Note:** Returned only when you pass `"RICH_CONTENT_DESCRIPTION"` to the `fields` array in Categories API requests.
2810
2761
  */
2811
2762
  richContentDescription?: RichContent;
2812
2763
  /**
@@ -4105,14 +4056,7 @@ interface CreateCategoryRequest {
4105
4056
  category: Category;
4106
4057
  /** Category tree reference details. */
4107
4058
  treeReference: TreeReference;
4108
- /**
4109
- * Fields to include in the response.
4110
- *
4111
- * Supported values:
4112
- * + `BREADCRUMBS`
4113
- * + `DESCRIPTION`
4114
- * + `RICH_CONTENT_DESCRIPTION`
4115
- */
4059
+ /** Fields to include in the response. */
4116
4060
  fields?: SingleEntityOpsRequestedFields[];
4117
4061
  }
4118
4062
  declare enum SingleEntityOpsRequestedFields {
@@ -4130,14 +4074,7 @@ interface GetCategoryRequest {
4130
4074
  categoryId: string;
4131
4075
  /** Category tree reference details. */
4132
4076
  treeReference: TreeReference;
4133
- /**
4134
- * Fields to include in the response.
4135
- *
4136
- * Supported values:
4137
- * + `BREADCRUMBS`
4138
- * + `DESCRIPTION`
4139
- * + `RICH_CONTENT_DESCRIPTION`
4140
- */
4077
+ /** Fields to include in the response. */
4141
4078
  fields?: SingleEntityOpsRequestedFields[];
4142
4079
  }
4143
4080
  interface GetCategoryResponse {
@@ -4149,14 +4086,7 @@ interface UpdateCategoryRequest {
4149
4086
  category: Category;
4150
4087
  /** Category tree reference details. */
4151
4088
  treeReference: TreeReference;
4152
- /**
4153
- * Fields to include in the response.
4154
- *
4155
- * Supported values:
4156
- * + `BREADCRUMBS`
4157
- * + `DESCRIPTION`
4158
- * + `RICH_CONTENT_DESCRIPTION`
4159
- */
4089
+ /** Fields to include in the response. */
4160
4090
  fields?: SingleEntityOpsRequestedFields[];
4161
4091
  }
4162
4092
  interface UpdateCategoryResponse {
@@ -4181,14 +4111,7 @@ interface QueryCategoriesRequest {
4181
4111
  * Used only in the first request. Following requests use the cursor token.
4182
4112
  */
4183
4113
  returnNonVisibleCategories?: boolean;
4184
- /**
4185
- * Fields to include in the response.
4186
- *
4187
- * Supported values:
4188
- * + `BREADCRUMBS`
4189
- * + `DESCRIPTION`
4190
- * + `RICH_CONTENT_DESCRIPTION`
4191
- */
4114
+ /** Fields to include in the response. */
4192
4115
  fields?: RequestedFields[];
4193
4116
  }
4194
4117
  interface CursorQuery extends CursorQueryPagingMethodOneOf {
@@ -4271,14 +4194,7 @@ interface SearchCategoriesRequest {
4271
4194
  * Default: `false` - only visible categories are returned in the response
4272
4195
  */
4273
4196
  returnNonVisibleCategories?: boolean;
4274
- /**
4275
- * Fields to include in the response.
4276
- *
4277
- * Supported values:
4278
- * + `BREADCRUMBS`
4279
- * + `DESCRIPTION`
4280
- * + `RICH_CONTENT_DESCRIPTION`
4281
- */
4197
+ /** Fields to include in the response. */
4282
4198
  fields?: RequestedFields[];
4283
4199
  }
4284
4200
  interface CursorSearch extends CursorSearchPagingMethodOneOf {
@@ -4805,14 +4721,7 @@ interface BulkUpdateCategoriesRequest {
4805
4721
  * Default: `false`
4806
4722
  */
4807
4723
  returnEntity?: boolean;
4808
- /**
4809
- * Fields to include in the response.
4810
- *
4811
- * Supported values:
4812
- * + `BREADCRUMBS`
4813
- * + `DESCRIPTION`
4814
- * + `RICH_CONTENT_DESCRIPTION`
4815
- */
4724
+ /** Fields to include in the response. */
4816
4725
  fields?: RequestedFields[];
4817
4726
  }
4818
4727
  interface MaskedCategory {
@@ -4842,14 +4751,7 @@ interface UpdateCategoryVisibilityRequest {
4842
4751
  * To prevent conflicting changes, the current revision must be passed on update.
4843
4752
  */
4844
4753
  revision: string | null;
4845
- /**
4846
- * Fields to include in the response.
4847
- *
4848
- * Supported values:
4849
- * + `BREADCRUMBS`
4850
- * + `DESCRIPTION`
4851
- * + `RICH_CONTENT_DESCRIPTION`
4852
- */
4754
+ /** Fields to include in the response. */
4853
4755
  fields?: SingleEntityOpsRequestedFields[];
4854
4756
  }
4855
4757
  interface UpdateCategoryVisibilityResponse {