@wix/stores 1.0.196 → 1.0.197

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/stores",
3
- "version": "1.0.196",
3
+ "version": "1.0.197",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -26,7 +26,7 @@
26
26
  "@wix/stores_inventory": "1.0.34",
27
27
  "@wix/stores_inventory-items-v-3": "1.0.8",
28
28
  "@wix/stores_products": "1.0.41",
29
- "@wix/stores_products-v-3": "1.0.18",
29
+ "@wix/stores_products-v-3": "1.0.19",
30
30
  "@wix/stores_ribbons-v-3": "1.0.7",
31
31
  "@wix/stores_stores-locations-v-3": "1.0.6",
32
32
  "@wix/stores_subscription-options": "1.0.32",
@@ -55,5 +55,5 @@
55
55
  "fqdn": ""
56
56
  }
57
57
  },
58
- "falconPackageHash": "a7be8779c06037f29c723513cb15cbb144e66ad35e97f715754822b4"
58
+ "falconPackageHash": "227007d710d5ee74ae4d904e792ffb749952225c32a75cf6d81d1a1f"
59
59
  }
@@ -12364,7 +12364,7 @@ interface BulkUpdateProductsWithInventoryResponse {
12364
12364
  }
12365
12365
  interface V3BulkUpdateProductsByFilterRequest {
12366
12366
  /** Filter object. */
12367
- filter: Record<string, any> | null;
12367
+ filter?: Record<string, any> | null;
12368
12368
  /** Product to update. */
12369
12369
  product: V3Product;
12370
12370
  /** Free text to match in searchable fields. */
@@ -12394,20 +12394,6 @@ interface V3BulkUpdateProductsByFilterResponse {
12394
12394
  */
12395
12395
  jobId?: string;
12396
12396
  }
12397
- interface VariantAdded {
12398
- /** Added variant. */
12399
- variant?: Variant;
12400
- }
12401
- interface VariantUpdated {
12402
- /** Variant before update. */
12403
- previous?: Variant;
12404
- /** Current variant (after update). */
12405
- current?: Variant;
12406
- }
12407
- interface VariantRemoved {
12408
- /** Removed variant. */
12409
- variant?: Variant;
12410
- }
12411
12397
  interface V3UpdateExtendedFieldsRequest {
12412
12398
  /** Product ID. */
12413
12399
  productId: string;
@@ -15197,18 +15183,6 @@ interface ProductUpdatedEnvelope {
15197
15183
  entity: V3Product;
15198
15184
  metadata: EventMetadata$1;
15199
15185
  }
15200
- interface ProductVariantAddedEnvelope {
15201
- data: VariantAdded;
15202
- metadata: EventMetadata$1;
15203
- }
15204
- interface ProductVariantUpdatedEnvelope {
15205
- data: VariantUpdated;
15206
- metadata: EventMetadata$1;
15207
- }
15208
- interface ProductVariantRemovedEnvelope {
15209
- data: VariantRemoved;
15210
- metadata: EventMetadata$1;
15211
- }
15212
15186
  interface ProductDeletedEnvelope {
15213
15187
  entity: V3Product;
15214
15188
  metadata: EventMetadata$1;
@@ -15601,6 +15575,8 @@ interface BulkUpdateProductsWithInventoryOptions {
15601
15575
  fields?: RequestedFields$1[];
15602
15576
  }
15603
15577
  interface CatalogBulkUpdateProductsByFilterOptions {
15578
+ /** Filter object. */
15579
+ filter?: Record<string, any> | null;
15604
15580
  /** Product to update. */
15605
15581
  product: V3Product;
15606
15582
  /** Free text to match in searchable fields. */
@@ -15813,7 +15789,7 @@ declare function catalogBulkCreateProducts$1(httpClient: HttpClient): (products:
15813
15789
  declare function bulkCreateProductsWithInventory$1(httpClient: HttpClient): (products: ProductWithInventory[], options?: BulkCreateProductsWithInventoryOptions) => Promise<BulkCreateProductsWithInventoryResponse & BulkCreateProductsWithInventoryResponseNonNullableFields>;
15814
15790
  declare function catalogBulkUpdateProducts$1(httpClient: HttpClient): (products: V3MaskedProduct[], options?: CatalogBulkUpdateProductsOptions) => Promise<BulkUpdateProductsResponse & BulkUpdateProductsResponseNonNullableFields>;
15815
15791
  declare function bulkUpdateProductsWithInventory$1(httpClient: HttpClient): (products: MaskedProductWithInventory[], options?: BulkUpdateProductsWithInventoryOptions) => Promise<BulkUpdateProductsWithInventoryResponse & BulkUpdateProductsWithInventoryResponseNonNullableFields>;
15816
- declare function catalogBulkUpdateProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CatalogBulkUpdateProductsByFilterOptions) => Promise<V3BulkUpdateProductsByFilterResponse & V3BulkUpdateProductsByFilterResponseNonNullableFields>;
15792
+ declare function catalogBulkUpdateProductsByFilter$1(httpClient: HttpClient): (options?: CatalogBulkUpdateProductsByFilterOptions) => Promise<V3BulkUpdateProductsByFilterResponse & V3BulkUpdateProductsByFilterResponseNonNullableFields>;
15817
15793
  declare function catalogUpdateExtendedFields$1(httpClient: HttpClient): (productId: string, namespace: string, options?: CatalogUpdateExtendedFieldsOptions) => Promise<V3UpdateExtendedFieldsResponse & V3UpdateExtendedFieldsResponseNonNullableFields>;
15818
15794
  declare function catalogDeleteProduct$1(httpClient: HttpClient): (productId: string) => Promise<void>;
15819
15795
  declare function catalogBulkDeleteProducts$1(httpClient: HttpClient): (productIds: string[]) => Promise<V3BulkDeleteProductsResponse & V3BulkDeleteProductsResponseNonNullableFields>;
@@ -15833,9 +15809,6 @@ declare function bulkAddProductsToCategoriesByFilter$1(httpClient: HttpClient):
15833
15809
  declare function bulkRemoveProductsFromCategoriesByFilter$1(httpClient: HttpClient): (options?: BulkRemoveProductsFromCategoriesByFilterOptions) => Promise<BulkRemoveProductsFromCategoriesByFilterResponse & BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields>;
15834
15810
  declare const onProductCreated$1: EventDefinition<ProductCreatedEnvelope, "wix.stores.catalog.v3.product_created">;
15835
15811
  declare const onProductUpdated$1: EventDefinition<ProductUpdatedEnvelope, "wix.stores.catalog.v3.product_updated">;
15836
- declare const onProductVariantAdded$1: EventDefinition<ProductVariantAddedEnvelope, "wix.stores.catalog.v3.product_variant_added">;
15837
- declare const onProductVariantUpdated$1: EventDefinition<ProductVariantUpdatedEnvelope, "wix.stores.catalog.v3.product_variant_updated">;
15838
- declare const onProductVariantRemoved$1: EventDefinition<ProductVariantRemovedEnvelope, "wix.stores.catalog.v3.product_variant_removed">;
15839
15812
  declare const onProductDeleted$1: EventDefinition<ProductDeletedEnvelope, "wix.stores.catalog.v3.product_deleted">;
15840
15813
 
15841
15814
  declare function createRESTModule$5<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
@@ -15901,15 +15874,6 @@ declare const onProductCreated: ReturnType<typeof createEventModule$2<_publicOnP
15901
15874
  type _publicOnProductUpdatedType = typeof onProductUpdated$1;
15902
15875
  declare const onProductUpdated: ReturnType<typeof createEventModule$2<_publicOnProductUpdatedType>>;
15903
15876
 
15904
- type _publicOnProductVariantAddedType = typeof onProductVariantAdded$1;
15905
- declare const onProductVariantAdded: ReturnType<typeof createEventModule$2<_publicOnProductVariantAddedType>>;
15906
-
15907
- type _publicOnProductVariantUpdatedType = typeof onProductVariantUpdated$1;
15908
- declare const onProductVariantUpdated: ReturnType<typeof createEventModule$2<_publicOnProductVariantUpdatedType>>;
15909
-
15910
- type _publicOnProductVariantRemovedType = typeof onProductVariantRemoved$1;
15911
- declare const onProductVariantRemoved: ReturnType<typeof createEventModule$2<_publicOnProductVariantRemovedType>>;
15912
-
15913
15877
  type _publicOnProductDeletedType = typeof onProductDeleted$1;
15914
15878
  declare const onProductDeleted: ReturnType<typeof createEventModule$2<_publicOnProductDeletedType>>;
15915
15879
 
@@ -16319,10 +16283,7 @@ declare const context$5_ProductOptionRenderType: typeof ProductOptionRenderType;
16319
16283
  type context$5_ProductType = ProductType;
16320
16284
  declare const context$5_ProductType: typeof ProductType;
16321
16285
  type context$5_ProductUpdatedEnvelope = ProductUpdatedEnvelope;
16322
- type context$5_ProductVariantAddedEnvelope = ProductVariantAddedEnvelope;
16323
16286
  type context$5_ProductVariantIds = ProductVariantIds;
16324
- type context$5_ProductVariantRemovedEnvelope = ProductVariantRemovedEnvelope;
16325
- type context$5_ProductVariantUpdatedEnvelope = ProductVariantUpdatedEnvelope;
16326
16287
  type context$5_ProductVariants = ProductVariants;
16327
16288
  type context$5_ProductWithInventory = ProductWithInventory;
16328
16289
  type context$5_ProductWithInventoryTypedPropertiesOneOf = ProductWithInventoryTypedPropertiesOneOf;
@@ -16478,14 +16439,11 @@ type context$5_ValueResult = ValueResult;
16478
16439
  type context$5_ValueResults = ValueResults;
16479
16440
  type context$5_ValueResultsValueAggregationResult = ValueResultsValueAggregationResult;
16480
16441
  type context$5_Variant = Variant;
16481
- type context$5_VariantAdded = VariantAdded;
16482
16442
  type context$5_VariantDigitalProperties = VariantDigitalProperties;
16483
16443
  type context$5_VariantNotAlignedWithProduct = VariantNotAlignedWithProduct;
16484
16444
  type context$5_VariantPhysicalProperties = VariantPhysicalProperties;
16485
- type context$5_VariantRemoved = VariantRemoved;
16486
16445
  type context$5_VariantSummary = VariantSummary;
16487
16446
  type context$5_VariantTypedPropertiesOneOf = VariantTypedPropertiesOneOf;
16488
- type context$5_VariantUpdated = VariantUpdated;
16489
16447
  type context$5_VariantWithInventory = VariantWithInventory;
16490
16448
  type context$5_VariantWithInventoryTypedPropertiesOneOf = VariantWithInventoryTypedPropertiesOneOf;
16491
16449
  type context$5_VariantsInfo = VariantsInfo;
@@ -16548,9 +16506,6 @@ type context$5__publicCreateProductWithInventoryType = _publicCreateProductWithI
16548
16506
  type context$5__publicOnProductCreatedType = _publicOnProductCreatedType;
16549
16507
  type context$5__publicOnProductDeletedType = _publicOnProductDeletedType;
16550
16508
  type context$5__publicOnProductUpdatedType = _publicOnProductUpdatedType;
16551
- type context$5__publicOnProductVariantAddedType = _publicOnProductVariantAddedType;
16552
- type context$5__publicOnProductVariantRemovedType = _publicOnProductVariantRemovedType;
16553
- type context$5__publicOnProductVariantUpdatedType = _publicOnProductVariantUpdatedType;
16554
16509
  type context$5__publicUpdateProductWithInventoryType = _publicUpdateProductWithInventoryType;
16555
16510
  declare const context$5_bulkAddProductsToCategoriesByFilter: typeof bulkAddProductsToCategoriesByFilter;
16556
16511
  declare const context$5_bulkAdjustProductVariantsByFilter: typeof bulkAdjustProductVariantsByFilter;
@@ -16580,12 +16535,9 @@ declare const context$5_createProductWithInventory: typeof createProductWithInve
16580
16535
  declare const context$5_onProductCreated: typeof onProductCreated;
16581
16536
  declare const context$5_onProductDeleted: typeof onProductDeleted;
16582
16537
  declare const context$5_onProductUpdated: typeof onProductUpdated;
16583
- declare const context$5_onProductVariantAdded: typeof onProductVariantAdded;
16584
- declare const context$5_onProductVariantRemoved: typeof onProductVariantRemoved;
16585
- declare const context$5_onProductVariantUpdated: typeof onProductVariantUpdated;
16586
16538
  declare const context$5_updateProductWithInventory: typeof updateProductWithInventory;
16587
16539
  declare namespace context$5 {
16588
- export { type ActionEvent$2 as ActionEvent, type context$5_AdjustValue as AdjustValue, type context$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type context$5_Aggregation as Aggregation, type context$5_AggregationData as AggregationData, type context$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type context$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type context$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type context$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, context$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type context$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, context$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, type context$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type context$5_AggregationResults as AggregationResults, type context$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type context$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type context$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type context$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type context$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type context$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type context$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type context$5_AggregationResultsValueResults as AggregationResultsValueResults, type context$5_AggregationScalarAggregation as AggregationScalarAggregation, context$5_AggregationType as AggregationType, type context$5_AggregationValueAggregation as AggregationValueAggregation, type context$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, context$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type context$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, context$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, context$5_Alignment as Alignment, type context$5_AnchorData as AnchorData, type App$2 as App, type context$5_AppEmbedData as AppEmbedData, type context$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type context$5_AudioData as AudioData, context$5_AvailabilityStatus as AvailabilityStatus, type context$5_Background as Background, type context$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions as CatalogBulkAddInfoSectionsToProductsByFilterOptions, type context$5_CatalogBulkAddInfoSectionsToProductsOptions as CatalogBulkAddInfoSectionsToProductsOptions, type context$5_CatalogBulkCreateProductsOptions as CatalogBulkCreateProductsOptions, type context$5_CatalogBulkDeleteProductsByFilterOptions as CatalogBulkDeleteProductsByFilterOptions, type context$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions as CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_CatalogBulkRemoveInfoSectionsFromProductsOptions as CatalogBulkRemoveInfoSectionsFromProductsOptions, type context$5_CatalogBulkUpdateProductsByFilterOptions as CatalogBulkUpdateProductsByFilterOptions, type context$5_CatalogBulkUpdateProductsOptions as CatalogBulkUpdateProductsOptions, type context$5_CatalogCountProductsOptions as CatalogCountProductsOptions, type context$5_CatalogCreateProductOptions as CatalogCreateProductOptions, type context$5_CatalogGetProductBySlugOptions as CatalogGetProductBySlugOptions, type context$5_CatalogGetProductOptions as CatalogGetProductOptions, type context$5_CatalogSearchProductsOptions as CatalogSearchProductsOptions, type context$5_CatalogUpdateExtendedFieldsOptions as CatalogUpdateExtendedFieldsOptions, type context$5_CatalogUpdateProduct as CatalogUpdateProduct, type context$5_CatalogUpdateProductOptions as CatalogUpdateProductOptions, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_CategoryMoved as CategoryMoved, type context$5_CellStyle as CellStyle, context$5_ChoiceType as ChoiceType, type context$5_ChoicesSettings as ChoicesSettings, type context$5_CodeBlockData as CodeBlockData, type context$5_CollapsibleListData as CollapsibleListData, type context$5_ColorData as ColorData, type context$5_Colors as Colors, type context$5_CommonAggregation as CommonAggregation, type context$5_CommonAggregationData as CommonAggregationData, type context$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type context$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type context$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type context$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type context$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, context$5_CommonAggregationType as CommonAggregationType, type context$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type context$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type context$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type context$5_CommonCursorPaging as CommonCursorPaging, type context$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$5_CommonCursorQuery as CommonCursorQuery, type context$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type context$5_CommonCursorSearch as CommonCursorSearch, type context$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type context$5_CommonCursors as CommonCursors, type context$5_CommonItemMetadata as CommonItemMetadata, context$5_CommonScalarType as CommonScalarType, type context$5_CommonSearchDetails as CommonSearchDetails, context$5_CommonSearchDetailsMode as CommonSearchDetailsMode, context$5_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type context$5_ExtendedFields as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_GetVariantsRequest as GetVariantsRequest, type context$5_GetVariantsResponse as GetVariantsResponse, type context$5_Gradient as Gradient, type context$5_GroupByAggregation as GroupByAggregation, type context$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$5_GroupByValueResults as GroupByValueResults, type context$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type context$5_HTMLData as HTMLData, type context$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$5_HeadingData as HeadingData, type context$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$5_Image as Image, type context$5_ImageData as ImageData, type context$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type context$5_IndexDocument as IndexDocument, type context$5_InfoSection as InfoSection, context$5_InitialExpandedItems as InitialExpandedItems, context$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type context$5_Inventory as Inventory, context$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type context$5_InventoryItem as InventoryItem, type context$5_InventoryItemComposite as InventoryItemComposite, type context$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type context$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type context$5_InventoryStatus as InventoryStatus, type context$5_Item as Item, type context$5_ItemAddedToCategory as ItemAddedToCategory, type context$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemReference as ItemReference, type context$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type context$5_ItemStyle as ItemStyle, type context$5_ItemsAddedToCategory as ItemsAddedToCategory, type context$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type context$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context$5_Keyword as Keyword, type context$5_Layout as Layout, context$5_LayoutType as LayoutType, context$5_LineStyle as LineStyle, type context$5_Link as Link, type context$5_LinkData as LinkData, type context$5_LinkDataOneOf as LinkDataOneOf, type context$5_LinkPreviewData as LinkPreviewData, type context$5_ListValue as ListValue, type context$5_MapData as MapData, type context$5_MapSettings as MapSettings, context$5_MapType as MapType, type context$5_MaskedProduct as MaskedProduct, type context$5_MaskedProductWithInventory as MaskedProductWithInventory, context$5_MeasurementUnit as MeasurementUnit, type context$5_Media as Media, type context$5_MediaItemsInfo as MediaItemsInfo, type context$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type context$5_Metadata as Metadata, type context$5_MinVariantPriceInfo as MinVariantPriceInfo, context$5_MissingValues as MissingValues, context$5_Mode as Mode, type context$5_ModifierChoicesSettings as ModifierChoicesSettings, context$5_ModifierRenderType as ModifierRenderType, type context$5_MultipleColors as MultipleColors, type context$5_NestedAggregation as NestedAggregation, type context$5_NestedAggregationItem as NestedAggregationItem, type context$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context$5_NestedAggregationResults as NestedAggregationResults, type context$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$5_NestedAggregationType as NestedAggregationType, type context$5_NestedResultValue as NestedResultValue, type context$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$5_NestedResults as NestedResults, type context$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type context$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type context$5_NestedResultsRangeResult as NestedResultsRangeResult, type context$5_NestedResultsResults as NestedResultsResults, type context$5_NestedResultsScalarResult as NestedResultsScalarResult, type context$5_NestedResultsValueResult as NestedResultsValueResult, type context$5_NestedValueAggregationResult as NestedValueAggregationResult, type context$5_Node as Node, type context$5_NodeDataOneOf as NodeDataOneOf, type context$5_NodeStyle as NodeStyle, context$5_NodeType as NodeType, context$5_NullValue as NullValue, type context$5_Oembed as Oembed, type context$5_Option as Option, type context$5_OptionChoice as OptionChoice, type context$5_OptionChoiceIds as OptionChoiceIds, type context$5_OptionChoiceNames as OptionChoiceNames, type context$5_OptionChoiceReferences as OptionChoiceReferences, type context$5_OptionDesign as OptionDesign, type context$5_OptionLayout as OptionLayout, type context$5_OrderedListData as OrderedListData, context$5_Orientation as Orientation, type context$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type context$5_ParagraphData as ParagraphData, type context$5_ParentCategory as ParentCategory, type context$5_Permissions as Permissions, type context$5_PhysicalProperties as PhysicalProperties, type context$5_PlatformOffsetSearch as PlatformOffsetSearch, type context$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context$5_PlatformPaging as PlatformPaging, type context$5_PlaybackOptions as PlaybackOptions, type context$5_PluginContainerData as PluginContainerData, context$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$5_PluginContainerDataWidth as PluginContainerDataWidth, type context$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$5_Poll as Poll, type context$5_PollData as PollData, type context$5_PollDataLayout as PollDataLayout, type context$5_PollDesign as PollDesign, type context$5_PollLayout as PollLayout, context$5_PollLayoutDirection as PollLayoutDirection, context$5_PollLayoutType as PollLayoutType, type context$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, context$5_PreorderStatus as PreorderStatus, type context$5_PriceInfo as PriceInfo, type context$5_PricePerUnit as PricePerUnit, type context$5_PricePerUnitRange as PricePerUnitRange, type context$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type context$5_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategoriesInfo as ProductCategoriesInfo, type context$5_ProductCategory as ProductCategory, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantAddedEnvelope as ProductVariantAddedEnvelope, type context$5_ProductVariantIds as ProductVariantIds, type context$5_ProductVariantRemovedEnvelope as ProductVariantRemovedEnvelope, type context$5_ProductVariantUpdatedEnvelope as ProductVariantUpdatedEnvelope, type context$5_ProductVariants as ProductVariants, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_ProductsQueryBuilder as ProductsQueryBuilder, type context$5_ProductsQueryResult as ProductsQueryResult, type context$5_QueryProductsOptions as QueryProductsOptions, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, type context$5_TreeReference as TreeReference, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantAdded as VariantAdded, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantRemoved as VariantRemoved, type context$5_VariantSummary as VariantSummary, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantUpdated as VariantUpdated, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, type context$5_WixCommonAggregation as WixCommonAggregation, type context$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, context$5_WixCommonAggregationType as WixCommonAggregationType, type context$5_WixCommonItemMetadata as WixCommonItemMetadata, context$5_WixCommonScalarType as WixCommonScalarType, type context$5_WixCommonSearchDetails as WixCommonSearchDetails, context$5_WixCommonSortOrder as WixCommonSortOrder, type context$5_WixCommonSorting as WixCommonSorting, type context$5__publicBulkAddProductsToCategoriesByFilterType as _publicBulkAddProductsToCategoriesByFilterType, type context$5__publicBulkAdjustProductVariantsByFilterType as _publicBulkAdjustProductVariantsByFilterType, type context$5__publicBulkCreateProductsWithInventoryType as _publicBulkCreateProductsWithInventoryType, type context$5__publicBulkRemoveProductsFromCategoriesByFilterType as _publicBulkRemoveProductsFromCategoriesByFilterType, type context$5__publicBulkUpdateProductVariantsByFilterType as _publicBulkUpdateProductVariantsByFilterType, type context$5__publicBulkUpdateProductsWithInventoryType as _publicBulkUpdateProductsWithInventoryType, type context$5__publicCatalogBulkAddInfoSectionsToProductsByFilterType as _publicCatalogBulkAddInfoSectionsToProductsByFilterType, type context$5__publicCatalogBulkAddInfoSectionsToProductsType as _publicCatalogBulkAddInfoSectionsToProductsType, type context$5__publicCatalogBulkCreateProductsType as _publicCatalogBulkCreateProductsType, type context$5__publicCatalogBulkDeleteProductsByFilterType as _publicCatalogBulkDeleteProductsByFilterType, type context$5__publicCatalogBulkDeleteProductsType as _publicCatalogBulkDeleteProductsType, type context$5__publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType as _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType, type context$5__publicCatalogBulkRemoveInfoSectionsFromProductsType as _publicCatalogBulkRemoveInfoSectionsFromProductsType, type context$5__publicCatalogBulkUpdateProductsByFilterType as _publicCatalogBulkUpdateProductsByFilterType, type context$5__publicCatalogBulkUpdateProductsType as _publicCatalogBulkUpdateProductsType, type context$5__publicCatalogCountProductsType as _publicCatalogCountProductsType, type context$5__publicCatalogCreateProductType as _publicCatalogCreateProductType, type context$5__publicCatalogDeleteProductType as _publicCatalogDeleteProductType, type context$5__publicCatalogGetProductBySlugType as _publicCatalogGetProductBySlugType, type context$5__publicCatalogGetProductType as _publicCatalogGetProductType, type context$5__publicCatalogQueryProductsType as _publicCatalogQueryProductsType, type context$5__publicCatalogSearchProductsType as _publicCatalogSearchProductsType, type context$5__publicCatalogUpdateExtendedFieldsType as _publicCatalogUpdateExtendedFieldsType, type context$5__publicCatalogUpdateProductType as _publicCatalogUpdateProductType, type context$5__publicCreateProductWithInventoryType as _publicCreateProductWithInventoryType, type context$5__publicOnProductCreatedType as _publicOnProductCreatedType, type context$5__publicOnProductDeletedType as _publicOnProductDeletedType, type context$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, type context$5__publicOnProductVariantAddedType as _publicOnProductVariantAddedType, type context$5__publicOnProductVariantRemovedType as _publicOnProductVariantRemovedType, type context$5__publicOnProductVariantUpdatedType as _publicOnProductVariantUpdatedType, type context$5__publicUpdateProductWithInventoryType as _publicUpdateProductWithInventoryType, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_catalogBulkAddInfoSectionsToProducts as catalogBulkAddInfoSectionsToProducts, context$5_catalogBulkAddInfoSectionsToProductsByFilter as catalogBulkAddInfoSectionsToProductsByFilter, context$5_catalogBulkCreateProducts as catalogBulkCreateProducts, context$5_catalogBulkDeleteProducts as catalogBulkDeleteProducts, context$5_catalogBulkDeleteProductsByFilter as catalogBulkDeleteProductsByFilter, context$5_catalogBulkRemoveInfoSectionsFromProducts as catalogBulkRemoveInfoSectionsFromProducts, context$5_catalogBulkRemoveInfoSectionsFromProductsByFilter as catalogBulkRemoveInfoSectionsFromProductsByFilter, context$5_catalogBulkUpdateProducts as catalogBulkUpdateProducts, context$5_catalogBulkUpdateProductsByFilter as catalogBulkUpdateProductsByFilter, context$5_catalogCountProducts as catalogCountProducts, context$5_catalogCreateProduct as catalogCreateProduct, context$5_catalogDeleteProduct as catalogDeleteProduct, context$5_catalogGetProduct as catalogGetProduct, context$5_catalogGetProductBySlug as catalogGetProductBySlug, context$5_catalogQueryProducts as catalogQueryProducts, context$5_catalogSearchProducts as catalogSearchProducts, context$5_catalogUpdateExtendedFields as catalogUpdateExtendedFields, context$5_catalogUpdateProduct as catalogUpdateProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, context$5_onProductVariantAdded as onProductVariantAdded, context$5_onProductVariantRemoved as onProductVariantRemoved, context$5_onProductVariantUpdated as onProductVariantUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, onProductVariantAdded$1 as publicOnProductVariantAdded, onProductVariantRemoved$1 as publicOnProductVariantRemoved, onProductVariantUpdated$1 as publicOnProductVariantUpdated, context$5_updateProductWithInventory as updateProductWithInventory };
16540
+ export { type ActionEvent$2 as ActionEvent, type context$5_AdjustValue as AdjustValue, type context$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type context$5_Aggregation as Aggregation, type context$5_AggregationData as AggregationData, type context$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type context$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type context$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type context$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, context$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type context$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, context$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, type context$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type context$5_AggregationResults as AggregationResults, type context$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type context$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type context$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type context$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type context$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type context$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type context$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type context$5_AggregationResultsValueResults as AggregationResultsValueResults, type context$5_AggregationScalarAggregation as AggregationScalarAggregation, context$5_AggregationType as AggregationType, type context$5_AggregationValueAggregation as AggregationValueAggregation, type context$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, context$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type context$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, context$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, context$5_Alignment as Alignment, type context$5_AnchorData as AnchorData, type App$2 as App, type context$5_AppEmbedData as AppEmbedData, type context$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type context$5_AudioData as AudioData, context$5_AvailabilityStatus as AvailabilityStatus, type context$5_Background as Background, type context$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions as CatalogBulkAddInfoSectionsToProductsByFilterOptions, type context$5_CatalogBulkAddInfoSectionsToProductsOptions as CatalogBulkAddInfoSectionsToProductsOptions, type context$5_CatalogBulkCreateProductsOptions as CatalogBulkCreateProductsOptions, type context$5_CatalogBulkDeleteProductsByFilterOptions as CatalogBulkDeleteProductsByFilterOptions, type context$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions as CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_CatalogBulkRemoveInfoSectionsFromProductsOptions as CatalogBulkRemoveInfoSectionsFromProductsOptions, type context$5_CatalogBulkUpdateProductsByFilterOptions as CatalogBulkUpdateProductsByFilterOptions, type context$5_CatalogBulkUpdateProductsOptions as CatalogBulkUpdateProductsOptions, type context$5_CatalogCountProductsOptions as CatalogCountProductsOptions, type context$5_CatalogCreateProductOptions as CatalogCreateProductOptions, type context$5_CatalogGetProductBySlugOptions as CatalogGetProductBySlugOptions, type context$5_CatalogGetProductOptions as CatalogGetProductOptions, type context$5_CatalogSearchProductsOptions as CatalogSearchProductsOptions, type context$5_CatalogUpdateExtendedFieldsOptions as CatalogUpdateExtendedFieldsOptions, type context$5_CatalogUpdateProduct as CatalogUpdateProduct, type context$5_CatalogUpdateProductOptions as CatalogUpdateProductOptions, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_CategoryMoved as CategoryMoved, type context$5_CellStyle as CellStyle, context$5_ChoiceType as ChoiceType, type context$5_ChoicesSettings as ChoicesSettings, type context$5_CodeBlockData as CodeBlockData, type context$5_CollapsibleListData as CollapsibleListData, type context$5_ColorData as ColorData, type context$5_Colors as Colors, type context$5_CommonAggregation as CommonAggregation, type context$5_CommonAggregationData as CommonAggregationData, type context$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type context$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type context$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type context$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type context$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, context$5_CommonAggregationType as CommonAggregationType, type context$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type context$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type context$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type context$5_CommonCursorPaging as CommonCursorPaging, type context$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$5_CommonCursorQuery as CommonCursorQuery, type context$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type context$5_CommonCursorSearch as CommonCursorSearch, type context$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type context$5_CommonCursors as CommonCursors, type context$5_CommonItemMetadata as CommonItemMetadata, context$5_CommonScalarType as CommonScalarType, type context$5_CommonSearchDetails as CommonSearchDetails, context$5_CommonSearchDetailsMode as CommonSearchDetailsMode, context$5_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type context$5_ExtendedFields as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_GetVariantsRequest as GetVariantsRequest, type context$5_GetVariantsResponse as GetVariantsResponse, type context$5_Gradient as Gradient, type context$5_GroupByAggregation as GroupByAggregation, type context$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$5_GroupByValueResults as GroupByValueResults, type context$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type context$5_HTMLData as HTMLData, type context$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$5_HeadingData as HeadingData, type context$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$5_Image as Image, type context$5_ImageData as ImageData, type context$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type context$5_IndexDocument as IndexDocument, type context$5_InfoSection as InfoSection, context$5_InitialExpandedItems as InitialExpandedItems, context$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type context$5_Inventory as Inventory, context$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type context$5_InventoryItem as InventoryItem, type context$5_InventoryItemComposite as InventoryItemComposite, type context$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type context$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type context$5_InventoryStatus as InventoryStatus, type context$5_Item as Item, type context$5_ItemAddedToCategory as ItemAddedToCategory, type context$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemReference as ItemReference, type context$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type context$5_ItemStyle as ItemStyle, type context$5_ItemsAddedToCategory as ItemsAddedToCategory, type context$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type context$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context$5_Keyword as Keyword, type context$5_Layout as Layout, context$5_LayoutType as LayoutType, context$5_LineStyle as LineStyle, type context$5_Link as Link, type context$5_LinkData as LinkData, type context$5_LinkDataOneOf as LinkDataOneOf, type context$5_LinkPreviewData as LinkPreviewData, type context$5_ListValue as ListValue, type context$5_MapData as MapData, type context$5_MapSettings as MapSettings, context$5_MapType as MapType, type context$5_MaskedProduct as MaskedProduct, type context$5_MaskedProductWithInventory as MaskedProductWithInventory, context$5_MeasurementUnit as MeasurementUnit, type context$5_Media as Media, type context$5_MediaItemsInfo as MediaItemsInfo, type context$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type context$5_Metadata as Metadata, type context$5_MinVariantPriceInfo as MinVariantPriceInfo, context$5_MissingValues as MissingValues, context$5_Mode as Mode, type context$5_ModifierChoicesSettings as ModifierChoicesSettings, context$5_ModifierRenderType as ModifierRenderType, type context$5_MultipleColors as MultipleColors, type context$5_NestedAggregation as NestedAggregation, type context$5_NestedAggregationItem as NestedAggregationItem, type context$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context$5_NestedAggregationResults as NestedAggregationResults, type context$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$5_NestedAggregationType as NestedAggregationType, type context$5_NestedResultValue as NestedResultValue, type context$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$5_NestedResults as NestedResults, type context$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type context$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type context$5_NestedResultsRangeResult as NestedResultsRangeResult, type context$5_NestedResultsResults as NestedResultsResults, type context$5_NestedResultsScalarResult as NestedResultsScalarResult, type context$5_NestedResultsValueResult as NestedResultsValueResult, type context$5_NestedValueAggregationResult as NestedValueAggregationResult, type context$5_Node as Node, type context$5_NodeDataOneOf as NodeDataOneOf, type context$5_NodeStyle as NodeStyle, context$5_NodeType as NodeType, context$5_NullValue as NullValue, type context$5_Oembed as Oembed, type context$5_Option as Option, type context$5_OptionChoice as OptionChoice, type context$5_OptionChoiceIds as OptionChoiceIds, type context$5_OptionChoiceNames as OptionChoiceNames, type context$5_OptionChoiceReferences as OptionChoiceReferences, type context$5_OptionDesign as OptionDesign, type context$5_OptionLayout as OptionLayout, type context$5_OrderedListData as OrderedListData, context$5_Orientation as Orientation, type context$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type context$5_ParagraphData as ParagraphData, type context$5_ParentCategory as ParentCategory, type context$5_Permissions as Permissions, type context$5_PhysicalProperties as PhysicalProperties, type context$5_PlatformOffsetSearch as PlatformOffsetSearch, type context$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context$5_PlatformPaging as PlatformPaging, type context$5_PlaybackOptions as PlaybackOptions, type context$5_PluginContainerData as PluginContainerData, context$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$5_PluginContainerDataWidth as PluginContainerDataWidth, type context$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$5_Poll as Poll, type context$5_PollData as PollData, type context$5_PollDataLayout as PollDataLayout, type context$5_PollDesign as PollDesign, type context$5_PollLayout as PollLayout, context$5_PollLayoutDirection as PollLayoutDirection, context$5_PollLayoutType as PollLayoutType, type context$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, context$5_PreorderStatus as PreorderStatus, type context$5_PriceInfo as PriceInfo, type context$5_PricePerUnit as PricePerUnit, type context$5_PricePerUnitRange as PricePerUnitRange, type context$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type context$5_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategoriesInfo as ProductCategoriesInfo, type context$5_ProductCategory as ProductCategory, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantIds as ProductVariantIds, type context$5_ProductVariants as ProductVariants, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_ProductsQueryBuilder as ProductsQueryBuilder, type context$5_ProductsQueryResult as ProductsQueryResult, type context$5_QueryProductsOptions as QueryProductsOptions, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, type context$5_TreeReference as TreeReference, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantSummary as VariantSummary, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, type context$5_WixCommonAggregation as WixCommonAggregation, type context$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, context$5_WixCommonAggregationType as WixCommonAggregationType, type context$5_WixCommonItemMetadata as WixCommonItemMetadata, context$5_WixCommonScalarType as WixCommonScalarType, type context$5_WixCommonSearchDetails as WixCommonSearchDetails, context$5_WixCommonSortOrder as WixCommonSortOrder, type context$5_WixCommonSorting as WixCommonSorting, type context$5__publicBulkAddProductsToCategoriesByFilterType as _publicBulkAddProductsToCategoriesByFilterType, type context$5__publicBulkAdjustProductVariantsByFilterType as _publicBulkAdjustProductVariantsByFilterType, type context$5__publicBulkCreateProductsWithInventoryType as _publicBulkCreateProductsWithInventoryType, type context$5__publicBulkRemoveProductsFromCategoriesByFilterType as _publicBulkRemoveProductsFromCategoriesByFilterType, type context$5__publicBulkUpdateProductVariantsByFilterType as _publicBulkUpdateProductVariantsByFilterType, type context$5__publicBulkUpdateProductsWithInventoryType as _publicBulkUpdateProductsWithInventoryType, type context$5__publicCatalogBulkAddInfoSectionsToProductsByFilterType as _publicCatalogBulkAddInfoSectionsToProductsByFilterType, type context$5__publicCatalogBulkAddInfoSectionsToProductsType as _publicCatalogBulkAddInfoSectionsToProductsType, type context$5__publicCatalogBulkCreateProductsType as _publicCatalogBulkCreateProductsType, type context$5__publicCatalogBulkDeleteProductsByFilterType as _publicCatalogBulkDeleteProductsByFilterType, type context$5__publicCatalogBulkDeleteProductsType as _publicCatalogBulkDeleteProductsType, type context$5__publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType as _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType, type context$5__publicCatalogBulkRemoveInfoSectionsFromProductsType as _publicCatalogBulkRemoveInfoSectionsFromProductsType, type context$5__publicCatalogBulkUpdateProductsByFilterType as _publicCatalogBulkUpdateProductsByFilterType, type context$5__publicCatalogBulkUpdateProductsType as _publicCatalogBulkUpdateProductsType, type context$5__publicCatalogCountProductsType as _publicCatalogCountProductsType, type context$5__publicCatalogCreateProductType as _publicCatalogCreateProductType, type context$5__publicCatalogDeleteProductType as _publicCatalogDeleteProductType, type context$5__publicCatalogGetProductBySlugType as _publicCatalogGetProductBySlugType, type context$5__publicCatalogGetProductType as _publicCatalogGetProductType, type context$5__publicCatalogQueryProductsType as _publicCatalogQueryProductsType, type context$5__publicCatalogSearchProductsType as _publicCatalogSearchProductsType, type context$5__publicCatalogUpdateExtendedFieldsType as _publicCatalogUpdateExtendedFieldsType, type context$5__publicCatalogUpdateProductType as _publicCatalogUpdateProductType, type context$5__publicCreateProductWithInventoryType as _publicCreateProductWithInventoryType, type context$5__publicOnProductCreatedType as _publicOnProductCreatedType, type context$5__publicOnProductDeletedType as _publicOnProductDeletedType, type context$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, type context$5__publicUpdateProductWithInventoryType as _publicUpdateProductWithInventoryType, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_catalogBulkAddInfoSectionsToProducts as catalogBulkAddInfoSectionsToProducts, context$5_catalogBulkAddInfoSectionsToProductsByFilter as catalogBulkAddInfoSectionsToProductsByFilter, context$5_catalogBulkCreateProducts as catalogBulkCreateProducts, context$5_catalogBulkDeleteProducts as catalogBulkDeleteProducts, context$5_catalogBulkDeleteProductsByFilter as catalogBulkDeleteProductsByFilter, context$5_catalogBulkRemoveInfoSectionsFromProducts as catalogBulkRemoveInfoSectionsFromProducts, context$5_catalogBulkRemoveInfoSectionsFromProductsByFilter as catalogBulkRemoveInfoSectionsFromProductsByFilter, context$5_catalogBulkUpdateProducts as catalogBulkUpdateProducts, context$5_catalogBulkUpdateProductsByFilter as catalogBulkUpdateProductsByFilter, context$5_catalogCountProducts as catalogCountProducts, context$5_catalogCreateProduct as catalogCreateProduct, context$5_catalogDeleteProduct as catalogDeleteProduct, context$5_catalogGetProduct as catalogGetProduct, context$5_catalogGetProductBySlug as catalogGetProductBySlug, context$5_catalogQueryProducts as catalogQueryProducts, context$5_catalogSearchProducts as catalogSearchProducts, context$5_catalogUpdateExtendedFields as catalogUpdateExtendedFields, context$5_catalogUpdateProduct as catalogUpdateProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, context$5_updateProductWithInventory as updateProductWithInventory };
16589
16541
  }
16590
16542
 
16591
16543
  interface Provision {
@@ -12364,7 +12364,7 @@ interface BulkUpdateProductsWithInventoryResponse {
12364
12364
  }
12365
12365
  interface V3BulkUpdateProductsByFilterRequest {
12366
12366
  /** Filter object. */
12367
- filter: Record<string, any> | null;
12367
+ filter?: Record<string, any> | null;
12368
12368
  /** Product to update. */
12369
12369
  product: V3Product;
12370
12370
  /** Free text to match in searchable fields. */
@@ -12394,20 +12394,6 @@ interface V3BulkUpdateProductsByFilterResponse {
12394
12394
  */
12395
12395
  jobId?: string;
12396
12396
  }
12397
- interface VariantAdded {
12398
- /** Added variant. */
12399
- variant?: Variant;
12400
- }
12401
- interface VariantUpdated {
12402
- /** Variant before update. */
12403
- previous?: Variant;
12404
- /** Current variant (after update). */
12405
- current?: Variant;
12406
- }
12407
- interface VariantRemoved {
12408
- /** Removed variant. */
12409
- variant?: Variant;
12410
- }
12411
12397
  interface V3UpdateExtendedFieldsRequest {
12412
12398
  /** Product ID. */
12413
12399
  productId: string;
@@ -15197,18 +15183,6 @@ interface ProductUpdatedEnvelope {
15197
15183
  entity: V3Product;
15198
15184
  metadata: EventMetadata$1;
15199
15185
  }
15200
- interface ProductVariantAddedEnvelope {
15201
- data: VariantAdded;
15202
- metadata: EventMetadata$1;
15203
- }
15204
- interface ProductVariantUpdatedEnvelope {
15205
- data: VariantUpdated;
15206
- metadata: EventMetadata$1;
15207
- }
15208
- interface ProductVariantRemovedEnvelope {
15209
- data: VariantRemoved;
15210
- metadata: EventMetadata$1;
15211
- }
15212
15186
  interface ProductDeletedEnvelope {
15213
15187
  entity: V3Product;
15214
15188
  metadata: EventMetadata$1;
@@ -15601,6 +15575,8 @@ interface BulkUpdateProductsWithInventoryOptions {
15601
15575
  fields?: RequestedFields$1[];
15602
15576
  }
15603
15577
  interface CatalogBulkUpdateProductsByFilterOptions {
15578
+ /** Filter object. */
15579
+ filter?: Record<string, any> | null;
15604
15580
  /** Product to update. */
15605
15581
  product: V3Product;
15606
15582
  /** Free text to match in searchable fields. */
@@ -15813,7 +15789,7 @@ declare function catalogBulkCreateProducts$1(httpClient: HttpClient): (products:
15813
15789
  declare function bulkCreateProductsWithInventory$1(httpClient: HttpClient): (products: ProductWithInventory[], options?: BulkCreateProductsWithInventoryOptions) => Promise<BulkCreateProductsWithInventoryResponse & BulkCreateProductsWithInventoryResponseNonNullableFields>;
15814
15790
  declare function catalogBulkUpdateProducts$1(httpClient: HttpClient): (products: V3MaskedProduct[], options?: CatalogBulkUpdateProductsOptions) => Promise<BulkUpdateProductsResponse & BulkUpdateProductsResponseNonNullableFields>;
15815
15791
  declare function bulkUpdateProductsWithInventory$1(httpClient: HttpClient): (products: MaskedProductWithInventory[], options?: BulkUpdateProductsWithInventoryOptions) => Promise<BulkUpdateProductsWithInventoryResponse & BulkUpdateProductsWithInventoryResponseNonNullableFields>;
15816
- declare function catalogBulkUpdateProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CatalogBulkUpdateProductsByFilterOptions) => Promise<V3BulkUpdateProductsByFilterResponse & V3BulkUpdateProductsByFilterResponseNonNullableFields>;
15792
+ declare function catalogBulkUpdateProductsByFilter$1(httpClient: HttpClient): (options?: CatalogBulkUpdateProductsByFilterOptions) => Promise<V3BulkUpdateProductsByFilterResponse & V3BulkUpdateProductsByFilterResponseNonNullableFields>;
15817
15793
  declare function catalogUpdateExtendedFields$1(httpClient: HttpClient): (productId: string, namespace: string, options?: CatalogUpdateExtendedFieldsOptions) => Promise<V3UpdateExtendedFieldsResponse & V3UpdateExtendedFieldsResponseNonNullableFields>;
15818
15794
  declare function catalogDeleteProduct$1(httpClient: HttpClient): (productId: string) => Promise<void>;
15819
15795
  declare function catalogBulkDeleteProducts$1(httpClient: HttpClient): (productIds: string[]) => Promise<V3BulkDeleteProductsResponse & V3BulkDeleteProductsResponseNonNullableFields>;
@@ -15833,9 +15809,6 @@ declare function bulkAddProductsToCategoriesByFilter$1(httpClient: HttpClient):
15833
15809
  declare function bulkRemoveProductsFromCategoriesByFilter$1(httpClient: HttpClient): (options?: BulkRemoveProductsFromCategoriesByFilterOptions) => Promise<BulkRemoveProductsFromCategoriesByFilterResponse & BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields>;
15834
15810
  declare const onProductCreated$1: EventDefinition<ProductCreatedEnvelope, "wix.stores.catalog.v3.product_created">;
15835
15811
  declare const onProductUpdated$1: EventDefinition<ProductUpdatedEnvelope, "wix.stores.catalog.v3.product_updated">;
15836
- declare const onProductVariantAdded$1: EventDefinition<ProductVariantAddedEnvelope, "wix.stores.catalog.v3.product_variant_added">;
15837
- declare const onProductVariantUpdated$1: EventDefinition<ProductVariantUpdatedEnvelope, "wix.stores.catalog.v3.product_variant_updated">;
15838
- declare const onProductVariantRemoved$1: EventDefinition<ProductVariantRemovedEnvelope, "wix.stores.catalog.v3.product_variant_removed">;
15839
15812
  declare const onProductDeleted$1: EventDefinition<ProductDeletedEnvelope, "wix.stores.catalog.v3.product_deleted">;
15840
15813
 
15841
15814
  declare function createRESTModule$5<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
@@ -15901,15 +15874,6 @@ declare const onProductCreated: ReturnType<typeof createEventModule$2<_publicOnP
15901
15874
  type _publicOnProductUpdatedType = typeof onProductUpdated$1;
15902
15875
  declare const onProductUpdated: ReturnType<typeof createEventModule$2<_publicOnProductUpdatedType>>;
15903
15876
 
15904
- type _publicOnProductVariantAddedType = typeof onProductVariantAdded$1;
15905
- declare const onProductVariantAdded: ReturnType<typeof createEventModule$2<_publicOnProductVariantAddedType>>;
15906
-
15907
- type _publicOnProductVariantUpdatedType = typeof onProductVariantUpdated$1;
15908
- declare const onProductVariantUpdated: ReturnType<typeof createEventModule$2<_publicOnProductVariantUpdatedType>>;
15909
-
15910
- type _publicOnProductVariantRemovedType = typeof onProductVariantRemoved$1;
15911
- declare const onProductVariantRemoved: ReturnType<typeof createEventModule$2<_publicOnProductVariantRemovedType>>;
15912
-
15913
15877
  type _publicOnProductDeletedType = typeof onProductDeleted$1;
15914
15878
  declare const onProductDeleted: ReturnType<typeof createEventModule$2<_publicOnProductDeletedType>>;
15915
15879
 
@@ -16319,10 +16283,7 @@ declare const index_d$5_ProductOptionRenderType: typeof ProductOptionRenderType;
16319
16283
  type index_d$5_ProductType = ProductType;
16320
16284
  declare const index_d$5_ProductType: typeof ProductType;
16321
16285
  type index_d$5_ProductUpdatedEnvelope = ProductUpdatedEnvelope;
16322
- type index_d$5_ProductVariantAddedEnvelope = ProductVariantAddedEnvelope;
16323
16286
  type index_d$5_ProductVariantIds = ProductVariantIds;
16324
- type index_d$5_ProductVariantRemovedEnvelope = ProductVariantRemovedEnvelope;
16325
- type index_d$5_ProductVariantUpdatedEnvelope = ProductVariantUpdatedEnvelope;
16326
16287
  type index_d$5_ProductVariants = ProductVariants;
16327
16288
  type index_d$5_ProductWithInventory = ProductWithInventory;
16328
16289
  type index_d$5_ProductWithInventoryTypedPropertiesOneOf = ProductWithInventoryTypedPropertiesOneOf;
@@ -16478,14 +16439,11 @@ type index_d$5_ValueResult = ValueResult;
16478
16439
  type index_d$5_ValueResults = ValueResults;
16479
16440
  type index_d$5_ValueResultsValueAggregationResult = ValueResultsValueAggregationResult;
16480
16441
  type index_d$5_Variant = Variant;
16481
- type index_d$5_VariantAdded = VariantAdded;
16482
16442
  type index_d$5_VariantDigitalProperties = VariantDigitalProperties;
16483
16443
  type index_d$5_VariantNotAlignedWithProduct = VariantNotAlignedWithProduct;
16484
16444
  type index_d$5_VariantPhysicalProperties = VariantPhysicalProperties;
16485
- type index_d$5_VariantRemoved = VariantRemoved;
16486
16445
  type index_d$5_VariantSummary = VariantSummary;
16487
16446
  type index_d$5_VariantTypedPropertiesOneOf = VariantTypedPropertiesOneOf;
16488
- type index_d$5_VariantUpdated = VariantUpdated;
16489
16447
  type index_d$5_VariantWithInventory = VariantWithInventory;
16490
16448
  type index_d$5_VariantWithInventoryTypedPropertiesOneOf = VariantWithInventoryTypedPropertiesOneOf;
16491
16449
  type index_d$5_VariantsInfo = VariantsInfo;
@@ -16548,9 +16506,6 @@ type index_d$5__publicCreateProductWithInventoryType = _publicCreateProductWithI
16548
16506
  type index_d$5__publicOnProductCreatedType = _publicOnProductCreatedType;
16549
16507
  type index_d$5__publicOnProductDeletedType = _publicOnProductDeletedType;
16550
16508
  type index_d$5__publicOnProductUpdatedType = _publicOnProductUpdatedType;
16551
- type index_d$5__publicOnProductVariantAddedType = _publicOnProductVariantAddedType;
16552
- type index_d$5__publicOnProductVariantRemovedType = _publicOnProductVariantRemovedType;
16553
- type index_d$5__publicOnProductVariantUpdatedType = _publicOnProductVariantUpdatedType;
16554
16509
  type index_d$5__publicUpdateProductWithInventoryType = _publicUpdateProductWithInventoryType;
16555
16510
  declare const index_d$5_bulkAddProductsToCategoriesByFilter: typeof bulkAddProductsToCategoriesByFilter;
16556
16511
  declare const index_d$5_bulkAdjustProductVariantsByFilter: typeof bulkAdjustProductVariantsByFilter;
@@ -16580,12 +16535,9 @@ declare const index_d$5_createProductWithInventory: typeof createProductWithInve
16580
16535
  declare const index_d$5_onProductCreated: typeof onProductCreated;
16581
16536
  declare const index_d$5_onProductDeleted: typeof onProductDeleted;
16582
16537
  declare const index_d$5_onProductUpdated: typeof onProductUpdated;
16583
- declare const index_d$5_onProductVariantAdded: typeof onProductVariantAdded;
16584
- declare const index_d$5_onProductVariantRemoved: typeof onProductVariantRemoved;
16585
- declare const index_d$5_onProductVariantUpdated: typeof onProductVariantUpdated;
16586
16538
  declare const index_d$5_updateProductWithInventory: typeof updateProductWithInventory;
16587
16539
  declare namespace index_d$5 {
16588
- export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions as CatalogBulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_CatalogBulkAddInfoSectionsToProductsOptions as CatalogBulkAddInfoSectionsToProductsOptions, type index_d$5_CatalogBulkCreateProductsOptions as CatalogBulkCreateProductsOptions, type index_d$5_CatalogBulkDeleteProductsByFilterOptions as CatalogBulkDeleteProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions as CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsOptions as CatalogBulkRemoveInfoSectionsFromProductsOptions, type index_d$5_CatalogBulkUpdateProductsByFilterOptions as CatalogBulkUpdateProductsByFilterOptions, type index_d$5_CatalogBulkUpdateProductsOptions as CatalogBulkUpdateProductsOptions, type index_d$5_CatalogCountProductsOptions as CatalogCountProductsOptions, type index_d$5_CatalogCreateProductOptions as CatalogCreateProductOptions, type index_d$5_CatalogGetProductBySlugOptions as CatalogGetProductBySlugOptions, type index_d$5_CatalogGetProductOptions as CatalogGetProductOptions, type index_d$5_CatalogSearchProductsOptions as CatalogSearchProductsOptions, type index_d$5_CatalogUpdateExtendedFieldsOptions as CatalogUpdateExtendedFieldsOptions, type index_d$5_CatalogUpdateProduct as CatalogUpdateProduct, type index_d$5_CatalogUpdateProductOptions as CatalogUpdateProductOptions, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CategoryMoved as CategoryMoved, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_GetVariantsRequest as GetVariantsRequest, type index_d$5_GetVariantsResponse as GetVariantsResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemAddedToCategory as ItemAddedToCategory, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemReference as ItemReference, type index_d$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d$5_ItemStyle as ItemStyle, type index_d$5_ItemsAddedToCategory as ItemsAddedToCategory, type index_d$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_ParentCategory as ParentCategory, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantAddedEnvelope as ProductVariantAddedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariantRemovedEnvelope as ProductVariantRemovedEnvelope, type index_d$5_ProductVariantUpdatedEnvelope as ProductVariantUpdatedEnvelope, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$5_TreeReference as TreeReference, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantAdded as VariantAdded, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantRemoved as VariantRemoved, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantUpdated as VariantUpdated, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, type index_d$5__publicBulkAddProductsToCategoriesByFilterType as _publicBulkAddProductsToCategoriesByFilterType, type index_d$5__publicBulkAdjustProductVariantsByFilterType as _publicBulkAdjustProductVariantsByFilterType, type index_d$5__publicBulkCreateProductsWithInventoryType as _publicBulkCreateProductsWithInventoryType, type index_d$5__publicBulkRemoveProductsFromCategoriesByFilterType as _publicBulkRemoveProductsFromCategoriesByFilterType, type index_d$5__publicBulkUpdateProductVariantsByFilterType as _publicBulkUpdateProductVariantsByFilterType, type index_d$5__publicBulkUpdateProductsWithInventoryType as _publicBulkUpdateProductsWithInventoryType, type index_d$5__publicCatalogBulkAddInfoSectionsToProductsByFilterType as _publicCatalogBulkAddInfoSectionsToProductsByFilterType, type index_d$5__publicCatalogBulkAddInfoSectionsToProductsType as _publicCatalogBulkAddInfoSectionsToProductsType, type index_d$5__publicCatalogBulkCreateProductsType as _publicCatalogBulkCreateProductsType, type index_d$5__publicCatalogBulkDeleteProductsByFilterType as _publicCatalogBulkDeleteProductsByFilterType, type index_d$5__publicCatalogBulkDeleteProductsType as _publicCatalogBulkDeleteProductsType, type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType as _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType, type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsType as _publicCatalogBulkRemoveInfoSectionsFromProductsType, type index_d$5__publicCatalogBulkUpdateProductsByFilterType as _publicCatalogBulkUpdateProductsByFilterType, type index_d$5__publicCatalogBulkUpdateProductsType as _publicCatalogBulkUpdateProductsType, type index_d$5__publicCatalogCountProductsType as _publicCatalogCountProductsType, type index_d$5__publicCatalogCreateProductType as _publicCatalogCreateProductType, type index_d$5__publicCatalogDeleteProductType as _publicCatalogDeleteProductType, type index_d$5__publicCatalogGetProductBySlugType as _publicCatalogGetProductBySlugType, type index_d$5__publicCatalogGetProductType as _publicCatalogGetProductType, type index_d$5__publicCatalogQueryProductsType as _publicCatalogQueryProductsType, type index_d$5__publicCatalogSearchProductsType as _publicCatalogSearchProductsType, type index_d$5__publicCatalogUpdateExtendedFieldsType as _publicCatalogUpdateExtendedFieldsType, type index_d$5__publicCatalogUpdateProductType as _publicCatalogUpdateProductType, type index_d$5__publicCreateProductWithInventoryType as _publicCreateProductWithInventoryType, type index_d$5__publicOnProductCreatedType as _publicOnProductCreatedType, type index_d$5__publicOnProductDeletedType as _publicOnProductDeletedType, type index_d$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, type index_d$5__publicOnProductVariantAddedType as _publicOnProductVariantAddedType, type index_d$5__publicOnProductVariantRemovedType as _publicOnProductVariantRemovedType, type index_d$5__publicOnProductVariantUpdatedType as _publicOnProductVariantUpdatedType, type index_d$5__publicUpdateProductWithInventoryType as _publicUpdateProductWithInventoryType, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_catalogBulkAddInfoSectionsToProducts as catalogBulkAddInfoSectionsToProducts, index_d$5_catalogBulkAddInfoSectionsToProductsByFilter as catalogBulkAddInfoSectionsToProductsByFilter, index_d$5_catalogBulkCreateProducts as catalogBulkCreateProducts, index_d$5_catalogBulkDeleteProducts as catalogBulkDeleteProducts, index_d$5_catalogBulkDeleteProductsByFilter as catalogBulkDeleteProductsByFilter, index_d$5_catalogBulkRemoveInfoSectionsFromProducts as catalogBulkRemoveInfoSectionsFromProducts, index_d$5_catalogBulkRemoveInfoSectionsFromProductsByFilter as catalogBulkRemoveInfoSectionsFromProductsByFilter, index_d$5_catalogBulkUpdateProducts as catalogBulkUpdateProducts, index_d$5_catalogBulkUpdateProductsByFilter as catalogBulkUpdateProductsByFilter, index_d$5_catalogCountProducts as catalogCountProducts, index_d$5_catalogCreateProduct as catalogCreateProduct, index_d$5_catalogDeleteProduct as catalogDeleteProduct, index_d$5_catalogGetProduct as catalogGetProduct, index_d$5_catalogGetProductBySlug as catalogGetProductBySlug, index_d$5_catalogQueryProducts as catalogQueryProducts, index_d$5_catalogSearchProducts as catalogSearchProducts, index_d$5_catalogUpdateExtendedFields as catalogUpdateExtendedFields, index_d$5_catalogUpdateProduct as catalogUpdateProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, index_d$5_onProductVariantAdded as onProductVariantAdded, index_d$5_onProductVariantRemoved as onProductVariantRemoved, index_d$5_onProductVariantUpdated as onProductVariantUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, onProductVariantAdded$1 as publicOnProductVariantAdded, onProductVariantRemoved$1 as publicOnProductVariantRemoved, onProductVariantUpdated$1 as publicOnProductVariantUpdated, index_d$5_updateProductWithInventory as updateProductWithInventory };
16540
+ export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions as CatalogBulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_CatalogBulkAddInfoSectionsToProductsOptions as CatalogBulkAddInfoSectionsToProductsOptions, type index_d$5_CatalogBulkCreateProductsOptions as CatalogBulkCreateProductsOptions, type index_d$5_CatalogBulkDeleteProductsByFilterOptions as CatalogBulkDeleteProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions as CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsOptions as CatalogBulkRemoveInfoSectionsFromProductsOptions, type index_d$5_CatalogBulkUpdateProductsByFilterOptions as CatalogBulkUpdateProductsByFilterOptions, type index_d$5_CatalogBulkUpdateProductsOptions as CatalogBulkUpdateProductsOptions, type index_d$5_CatalogCountProductsOptions as CatalogCountProductsOptions, type index_d$5_CatalogCreateProductOptions as CatalogCreateProductOptions, type index_d$5_CatalogGetProductBySlugOptions as CatalogGetProductBySlugOptions, type index_d$5_CatalogGetProductOptions as CatalogGetProductOptions, type index_d$5_CatalogSearchProductsOptions as CatalogSearchProductsOptions, type index_d$5_CatalogUpdateExtendedFieldsOptions as CatalogUpdateExtendedFieldsOptions, type index_d$5_CatalogUpdateProduct as CatalogUpdateProduct, type index_d$5_CatalogUpdateProductOptions as CatalogUpdateProductOptions, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CategoryMoved as CategoryMoved, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_GetVariantsRequest as GetVariantsRequest, type index_d$5_GetVariantsResponse as GetVariantsResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemAddedToCategory as ItemAddedToCategory, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemReference as ItemReference, type index_d$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d$5_ItemStyle as ItemStyle, type index_d$5_ItemsAddedToCategory as ItemsAddedToCategory, type index_d$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_ParentCategory as ParentCategory, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$5_TreeReference as TreeReference, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, type index_d$5__publicBulkAddProductsToCategoriesByFilterType as _publicBulkAddProductsToCategoriesByFilterType, type index_d$5__publicBulkAdjustProductVariantsByFilterType as _publicBulkAdjustProductVariantsByFilterType, type index_d$5__publicBulkCreateProductsWithInventoryType as _publicBulkCreateProductsWithInventoryType, type index_d$5__publicBulkRemoveProductsFromCategoriesByFilterType as _publicBulkRemoveProductsFromCategoriesByFilterType, type index_d$5__publicBulkUpdateProductVariantsByFilterType as _publicBulkUpdateProductVariantsByFilterType, type index_d$5__publicBulkUpdateProductsWithInventoryType as _publicBulkUpdateProductsWithInventoryType, type index_d$5__publicCatalogBulkAddInfoSectionsToProductsByFilterType as _publicCatalogBulkAddInfoSectionsToProductsByFilterType, type index_d$5__publicCatalogBulkAddInfoSectionsToProductsType as _publicCatalogBulkAddInfoSectionsToProductsType, type index_d$5__publicCatalogBulkCreateProductsType as _publicCatalogBulkCreateProductsType, type index_d$5__publicCatalogBulkDeleteProductsByFilterType as _publicCatalogBulkDeleteProductsByFilterType, type index_d$5__publicCatalogBulkDeleteProductsType as _publicCatalogBulkDeleteProductsType, type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType as _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType, type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsType as _publicCatalogBulkRemoveInfoSectionsFromProductsType, type index_d$5__publicCatalogBulkUpdateProductsByFilterType as _publicCatalogBulkUpdateProductsByFilterType, type index_d$5__publicCatalogBulkUpdateProductsType as _publicCatalogBulkUpdateProductsType, type index_d$5__publicCatalogCountProductsType as _publicCatalogCountProductsType, type index_d$5__publicCatalogCreateProductType as _publicCatalogCreateProductType, type index_d$5__publicCatalogDeleteProductType as _publicCatalogDeleteProductType, type index_d$5__publicCatalogGetProductBySlugType as _publicCatalogGetProductBySlugType, type index_d$5__publicCatalogGetProductType as _publicCatalogGetProductType, type index_d$5__publicCatalogQueryProductsType as _publicCatalogQueryProductsType, type index_d$5__publicCatalogSearchProductsType as _publicCatalogSearchProductsType, type index_d$5__publicCatalogUpdateExtendedFieldsType as _publicCatalogUpdateExtendedFieldsType, type index_d$5__publicCatalogUpdateProductType as _publicCatalogUpdateProductType, type index_d$5__publicCreateProductWithInventoryType as _publicCreateProductWithInventoryType, type index_d$5__publicOnProductCreatedType as _publicOnProductCreatedType, type index_d$5__publicOnProductDeletedType as _publicOnProductDeletedType, type index_d$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, type index_d$5__publicUpdateProductWithInventoryType as _publicUpdateProductWithInventoryType, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_catalogBulkAddInfoSectionsToProducts as catalogBulkAddInfoSectionsToProducts, index_d$5_catalogBulkAddInfoSectionsToProductsByFilter as catalogBulkAddInfoSectionsToProductsByFilter, index_d$5_catalogBulkCreateProducts as catalogBulkCreateProducts, index_d$5_catalogBulkDeleteProducts as catalogBulkDeleteProducts, index_d$5_catalogBulkDeleteProductsByFilter as catalogBulkDeleteProductsByFilter, index_d$5_catalogBulkRemoveInfoSectionsFromProducts as catalogBulkRemoveInfoSectionsFromProducts, index_d$5_catalogBulkRemoveInfoSectionsFromProductsByFilter as catalogBulkRemoveInfoSectionsFromProductsByFilter, index_d$5_catalogBulkUpdateProducts as catalogBulkUpdateProducts, index_d$5_catalogBulkUpdateProductsByFilter as catalogBulkUpdateProductsByFilter, index_d$5_catalogCountProducts as catalogCountProducts, index_d$5_catalogCreateProduct as catalogCreateProduct, index_d$5_catalogDeleteProduct as catalogDeleteProduct, index_d$5_catalogGetProduct as catalogGetProduct, index_d$5_catalogGetProductBySlug as catalogGetProductBySlug, index_d$5_catalogQueryProducts as catalogQueryProducts, index_d$5_catalogSearchProducts as catalogSearchProducts, index_d$5_catalogUpdateExtendedFields as catalogUpdateExtendedFields, index_d$5_catalogUpdateProduct as catalogUpdateProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, index_d$5_updateProductWithInventory as updateProductWithInventory };
16589
16541
  }
16590
16542
 
16591
16543
  interface Provision {
@@ -14049,7 +14049,7 @@ interface BulkUpdateProductsWithInventoryResponse$1 {
14049
14049
  }
14050
14050
  interface V3BulkUpdateProductsByFilterRequest$1 {
14051
14051
  /** Filter object. */
14052
- filter: Record<string, any> | null;
14052
+ filter?: Record<string, any> | null;
14053
14053
  /** Product to update. */
14054
14054
  product: V3Product$1;
14055
14055
  /** Free text to match in searchable fields. */
@@ -18349,7 +18349,7 @@ interface BulkUpdateProductsWithInventoryResponse {
18349
18349
  }
18350
18350
  interface V3BulkUpdateProductsByFilterRequest {
18351
18351
  /** Filter object. */
18352
- filter: Record<string, any> | null;
18352
+ filter?: Record<string, any> | null;
18353
18353
  /** Product to update. */
18354
18354
  product: V3Product;
18355
18355
  /** Free text to match in searchable fields. */