@wix/stores 1.0.199 → 1.0.200

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.
@@ -1587,6 +1587,8 @@ interface ProductCreated {
1587
1587
  costAndProfitData?: CostAndProfitData;
1588
1588
  /** Information about the version of the catalog from where this event was triggered. */
1589
1589
  originatedFromVersion?: Version$1;
1590
+ /** Event slug. A human readable identifier of the event. */
1591
+ slug?: string;
1590
1592
  }
1591
1593
  declare enum Version$1 {
1592
1594
  V1_CATALOG = "V1_CATALOG",
@@ -2389,7 +2391,7 @@ interface ProductVariantsChangedEnvelope {
2389
2391
  data: VariantsChanged;
2390
2392
  metadata: BaseEventMetadata$7;
2391
2393
  }
2392
- interface UpdateProduct {
2394
+ interface UpdateProduct$1 {
2393
2395
  /**
2394
2396
  * Product ID (generated automatically by the catalog).
2395
2397
  * @readonly
@@ -2629,7 +2631,7 @@ interface ProductsQueryBuilder$1 {
2629
2631
  /** @documentationMaturity preview */
2630
2632
  find: () => Promise<ProductsQueryResult$1>;
2631
2633
  }
2632
- interface GetProductOptions {
2634
+ interface GetProductOptions$1 {
2633
2635
  /** Whether merchant specific data, such as cost and profit data, should be included in the response. Requires permissions to manage products. */
2634
2636
  includeMerchantSpecificData?: boolean;
2635
2637
  }
@@ -2646,9 +2648,9 @@ interface QueryProductVariantsOptions {
2646
2648
  includeMerchantSpecificData?: boolean;
2647
2649
  }
2648
2650
 
2649
- declare function createProduct$1(httpClient: HttpClient): (product: Product$2) => Promise<CreateProductResponse$1 & CreateProductResponseNonNullableFields$1>;
2650
- declare function updateProduct$1(httpClient: HttpClient): (_id: string, product: UpdateProduct) => Promise<UpdateProductResponse$1 & UpdateProductResponseNonNullableFields$1>;
2651
- declare function deleteProduct$1(httpClient: HttpClient): (_id: string) => Promise<void>;
2651
+ declare function createProduct$3(httpClient: HttpClient): (product: Product$2) => Promise<CreateProductResponse$1 & CreateProductResponseNonNullableFields$1>;
2652
+ declare function updateProduct$3(httpClient: HttpClient): (_id: string, product: UpdateProduct$1) => Promise<UpdateProductResponse$1 & UpdateProductResponseNonNullableFields$1>;
2653
+ declare function deleteProduct$3(httpClient: HttpClient): (_id: string) => Promise<void>;
2652
2654
  declare function updateProductVariants$1(httpClient: HttpClient): (_id: string, variants: VariantOverride[]) => Promise<UpdateVariantsResponse & UpdateVariantsResponseNonNullableFields>;
2653
2655
  declare function resetAllProductVariantData$1(httpClient: HttpClient): (_id: string) => Promise<void>;
2654
2656
  declare function addProductsToCollection$1(httpClient: HttpClient): (_id: string, productIds: string[]) => Promise<void>;
@@ -2665,8 +2667,8 @@ declare function deleteCollection$1(httpClient: HttpClient): (_id: string) => Pr
2665
2667
  declare function removeRibbon$1(httpClient: HttpClient): (_id: string) => Promise<void>;
2666
2668
  declare function bulkUpdateProductsProperty$1(httpClient: HttpClient): (ids: string[], set: SetValue) => Promise<BulkUpdateProductsResponse$1 & BulkUpdateProductsResponseNonNullableFields$1>;
2667
2669
  declare function bulkAdjustProductProperty$1(httpClient: HttpClient): (adjust: AdjustValue$1, ids: string[]) => Promise<BulkAdjustProductPropertiesResponse & BulkAdjustProductPropertiesResponseNonNullableFields>;
2668
- declare function queryProducts$1(httpClient: HttpClient): () => ProductsQueryBuilder$1;
2669
- declare function getProduct$1(httpClient: HttpClient): (_id: string, options?: GetProductOptions) => Promise<GetProductResponse$1 & GetProductResponseNonNullableFields>;
2670
+ declare function queryProducts$3(httpClient: HttpClient): () => ProductsQueryBuilder$1;
2671
+ declare function getProduct$3(httpClient: HttpClient): (_id: string, options?: GetProductOptions$1) => Promise<GetProductResponse$1 & GetProductResponseNonNullableFields>;
2670
2672
  declare function getCollectionBySlug$1(httpClient: HttpClient): (slug: string) => Promise<GetCollectionBySlugResponse & GetCollectionBySlugResponseNonNullableFields>;
2671
2673
  declare function getProductOptionsAvailability$1(httpClient: HttpClient): (_id: string, options: Record<string, string>) => Promise<ProductOptionsAvailabilityResponse & ProductOptionsAvailabilityResponseNonNullableFields>;
2672
2674
  declare function queryProductVariants$1(httpClient: HttpClient): (_id: string, options?: QueryProductVariantsOptions) => Promise<QueryProductVariantsResponse & QueryProductVariantsResponseNonNullableFields>;
@@ -2684,12 +2686,12 @@ declare function createRESTModule$a<T extends RESTFunctionDescriptor>(descriptor
2684
2686
 
2685
2687
  declare function createEventModule$7<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
2686
2688
 
2687
- type _publicCreateProductType = typeof createProduct$1;
2688
- declare const createProduct: ReturnType<typeof createRESTModule$a<_publicCreateProductType>>;
2689
- type _publicUpdateProductType = typeof updateProduct$1;
2690
- declare const updateProduct: ReturnType<typeof createRESTModule$a<_publicUpdateProductType>>;
2691
- type _publicDeleteProductType = typeof deleteProduct$1;
2692
- declare const deleteProduct: ReturnType<typeof createRESTModule$a<_publicDeleteProductType>>;
2689
+ type _publicCreateProductType$1 = typeof createProduct$3;
2690
+ declare const createProduct$2: ReturnType<typeof createRESTModule$a<_publicCreateProductType>>;
2691
+ type _publicUpdateProductType$1 = typeof updateProduct$3;
2692
+ declare const updateProduct$2: ReturnType<typeof createRESTModule$a<_publicUpdateProductType>>;
2693
+ type _publicDeleteProductType$1 = typeof deleteProduct$3;
2694
+ declare const deleteProduct$2: ReturnType<typeof createRESTModule$a<_publicDeleteProductType>>;
2693
2695
  type _publicUpdateProductVariantsType = typeof updateProductVariants$1;
2694
2696
  declare const updateProductVariants: ReturnType<typeof createRESTModule$a<_publicUpdateProductVariantsType>>;
2695
2697
  type _publicResetAllProductVariantDataType = typeof resetAllProductVariantData$1;
@@ -2722,10 +2724,10 @@ type _publicBulkUpdateProductsPropertyType = typeof bulkUpdateProductsProperty$1
2722
2724
  declare const bulkUpdateProductsProperty: ReturnType<typeof createRESTModule$a<_publicBulkUpdateProductsPropertyType>>;
2723
2725
  type _publicBulkAdjustProductPropertyType = typeof bulkAdjustProductProperty$1;
2724
2726
  declare const bulkAdjustProductProperty: ReturnType<typeof createRESTModule$a<_publicBulkAdjustProductPropertyType>>;
2725
- type _publicQueryProductsType = typeof queryProducts$1;
2726
- declare const queryProducts: ReturnType<typeof createRESTModule$a<_publicQueryProductsType>>;
2727
- type _publicGetProductType = typeof getProduct$1;
2728
- declare const getProduct: ReturnType<typeof createRESTModule$a<_publicGetProductType>>;
2727
+ type _publicQueryProductsType$1 = typeof queryProducts$3;
2728
+ declare const queryProducts$2: ReturnType<typeof createRESTModule$a<_publicQueryProductsType>>;
2729
+ type _publicGetProductType$1 = typeof getProduct$3;
2730
+ declare const getProduct$2: ReturnType<typeof createRESTModule$a<_publicGetProductType>>;
2729
2731
  type _publicGetCollectionBySlugType = typeof getCollectionBySlug$1;
2730
2732
  declare const getCollectionBySlug: ReturnType<typeof createRESTModule$a<_publicGetCollectionBySlugType>>;
2731
2733
  type _publicGetProductOptionsAvailabilityType = typeof getProductOptionsAvailability$1;
@@ -2808,7 +2810,6 @@ type context$a_GetCollectionBySlugResponse = GetCollectionBySlugResponse;
2808
2810
  type context$a_GetCollectionBySlugResponseNonNullableFields = GetCollectionBySlugResponseNonNullableFields;
2809
2811
  type context$a_GetCollectionRequest = GetCollectionRequest;
2810
2812
  type context$a_GetCollectionResponse = GetCollectionResponse;
2811
- type context$a_GetProductOptions = GetProductOptions;
2812
2813
  type context$a_GetProductPlatformizedRequest = GetProductPlatformizedRequest;
2813
2814
  type context$a_GetProductPlatformizedResponse = GetProductPlatformizedResponse;
2814
2815
  type context$a_GetProductResponseNonNullableFields = GetProductResponseNonNullableFields;
@@ -2903,7 +2904,6 @@ type context$a_UpdateCollection = UpdateCollection;
2903
2904
  type context$a_UpdateCollectionRequest = UpdateCollectionRequest;
2904
2905
  type context$a_UpdateCollectionResponse = UpdateCollectionResponse;
2905
2906
  type context$a_UpdateCollectionResponseNonNullableFields = UpdateCollectionResponseNonNullableFields;
2906
- type context$a_UpdateProduct = UpdateProduct;
2907
2907
  type context$a_UpdateProductPlatformizedRequest = UpdateProductPlatformizedRequest;
2908
2908
  type context$a_UpdateProductPlatformizedResponse = UpdateProductPlatformizedResponse;
2909
2909
  type context$a_UpdateVariantsRequest = UpdateVariantsRequest;
@@ -2927,13 +2927,10 @@ type context$a__publicAddProductsToCollectionType = _publicAddProductsToCollecti
2927
2927
  type context$a__publicBulkAdjustProductPropertyType = _publicBulkAdjustProductPropertyType;
2928
2928
  type context$a__publicBulkUpdateProductsPropertyType = _publicBulkUpdateProductsPropertyType;
2929
2929
  type context$a__publicCreateCollectionType = _publicCreateCollectionType;
2930
- type context$a__publicCreateProductType = _publicCreateProductType;
2931
2930
  type context$a__publicDeleteCollectionType = _publicDeleteCollectionType;
2932
2931
  type context$a__publicDeleteProductOptionsType = _publicDeleteProductOptionsType;
2933
- type context$a__publicDeleteProductType = _publicDeleteProductType;
2934
2932
  type context$a__publicGetCollectionBySlugType = _publicGetCollectionBySlugType;
2935
2933
  type context$a__publicGetProductOptionsAvailabilityType = _publicGetProductOptionsAvailabilityType;
2936
- type context$a__publicGetProductType = _publicGetProductType;
2937
2934
  type context$a__publicGetStoreVariantType = _publicGetStoreVariantType;
2938
2935
  type context$a__publicOnProductChangedType = _publicOnProductChangedType;
2939
2936
  type context$a__publicOnProductCollectionChangedType = _publicOnProductCollectionChangedType;
@@ -2941,7 +2938,6 @@ type context$a__publicOnProductCollectionCreatedType = _publicOnProductCollectio
2941
2938
  type context$a__publicOnProductCollectionDeletedType = _publicOnProductCollectionDeletedType;
2942
2939
  type context$a__publicOnProductVariantsChangedType = _publicOnProductVariantsChangedType;
2943
2940
  type context$a__publicQueryProductVariantsType = _publicQueryProductVariantsType;
2944
- type context$a__publicQueryProductsType = _publicQueryProductsType;
2945
2941
  type context$a__publicQueryStoreVariantsType = _publicQueryStoreVariantsType;
2946
2942
  type context$a__publicRemoveBrandType = _publicRemoveBrandType;
2947
2943
  type context$a__publicRemoveProductMediaFromChoicesType = _publicRemoveProductMediaFromChoicesType;
@@ -2950,7 +2946,6 @@ type context$a__publicRemoveProductsFromCollectionType = _publicRemoveProductsFr
2950
2946
  type context$a__publicRemoveRibbonType = _publicRemoveRibbonType;
2951
2947
  type context$a__publicResetAllProductVariantDataType = _publicResetAllProductVariantDataType;
2952
2948
  type context$a__publicUpdateCollectionType = _publicUpdateCollectionType;
2953
- type context$a__publicUpdateProductType = _publicUpdateProductType;
2954
2949
  type context$a__publicUpdateProductVariantsType = _publicUpdateProductVariantsType;
2955
2950
  declare const context$a_addProductMedia: typeof addProductMedia;
2956
2951
  declare const context$a_addProductMediaToChoices: typeof addProductMediaToChoices;
@@ -2958,12 +2953,9 @@ declare const context$a_addProductsToCollection: typeof addProductsToCollection;
2958
2953
  declare const context$a_bulkAdjustProductProperty: typeof bulkAdjustProductProperty;
2959
2954
  declare const context$a_bulkUpdateProductsProperty: typeof bulkUpdateProductsProperty;
2960
2955
  declare const context$a_createCollection: typeof createCollection;
2961
- declare const context$a_createProduct: typeof createProduct;
2962
2956
  declare const context$a_deleteCollection: typeof deleteCollection;
2963
- declare const context$a_deleteProduct: typeof deleteProduct;
2964
2957
  declare const context$a_deleteProductOptions: typeof deleteProductOptions;
2965
2958
  declare const context$a_getCollectionBySlug: typeof getCollectionBySlug;
2966
- declare const context$a_getProduct: typeof getProduct;
2967
2959
  declare const context$a_getProductOptionsAvailability: typeof getProductOptionsAvailability;
2968
2960
  declare const context$a_getStoreVariant: typeof getStoreVariant;
2969
2961
  declare const context$a_onProductChanged: typeof onProductChanged;
@@ -2972,7 +2964,6 @@ declare const context$a_onProductCollectionCreated: typeof onProductCollectionCr
2972
2964
  declare const context$a_onProductCollectionDeleted: typeof onProductCollectionDeleted;
2973
2965
  declare const context$a_onProductVariantsChanged: typeof onProductVariantsChanged;
2974
2966
  declare const context$a_queryProductVariants: typeof queryProductVariants;
2975
- declare const context$a_queryProducts: typeof queryProducts;
2976
2967
  declare const context$a_queryStoreVariants: typeof queryStoreVariants;
2977
2968
  declare const context$a_removeBrand: typeof removeBrand;
2978
2969
  declare const context$a_removeProductMedia: typeof removeProductMedia;
@@ -2981,10 +2972,9 @@ declare const context$a_removeProductsFromCollection: typeof removeProductsFromC
2981
2972
  declare const context$a_removeRibbon: typeof removeRibbon;
2982
2973
  declare const context$a_resetAllProductVariantData: typeof resetAllProductVariantData;
2983
2974
  declare const context$a_updateCollection: typeof updateCollection;
2984
- declare const context$a_updateProduct: typeof updateProduct;
2985
2975
  declare const context$a_updateProductVariants: typeof updateProductVariants;
2986
2976
  declare namespace context$a {
2987
- export { type context$a_AddProductMediaRequest as AddProductMediaRequest, type context$a_AddProductMediaResponse as AddProductMediaResponse, type context$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type context$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type context$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type context$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type context$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type context$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type context$a_AggregateProductsRequest as AggregateProductsRequest, type context$a_AggregateProductsResponse as AggregateProductsResponse, type context$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type context$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type context$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type context$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type context$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type context$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type context$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type context$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type context$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type context$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type context$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type context$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type context$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type context$a_BulkUpdateProductsByFilterSyncResponse as BulkUpdateProductsByFilterSyncResponse, type BulkUpdateProductsRequest$1 as BulkUpdateProductsRequest, type BulkUpdateProductsResponse$1 as BulkUpdateProductsResponse, type BulkUpdateProductsResponseNonNullableFields$1 as BulkUpdateProductsResponseNonNullableFields, type Choice$1 as Choice, type context$a_Collection as Collection, type context$a_CollectionChanged as CollectionChanged, type context$a_CollectionCreated as CollectionCreated, type context$a_CollectionDeleted as CollectionDeleted, type context$a_CostAndProfitData as CostAndProfitData, type context$a_CreateCollectionRequest as CreateCollectionRequest, type context$a_CreateCollectionResponse as CreateCollectionResponse, type context$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type context$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type context$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type context$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type context$a_CreateProductPlatformizedResponse as CreateProductPlatformizedResponse, type CreateProductRequest$1 as CreateProductRequest, type CreateProductResponse$1 as CreateProductResponse, type CreateProductResponseNonNullableFields$1 as CreateProductResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type Cursors$7 as Cursors, type context$a_CustomFieldsContainer as CustomFieldsContainer, type context$a_CustomTextField as CustomTextField, type context$a_DeleteCollectionRequest as DeleteCollectionRequest, type context$a_DeleteCollectionResponse as DeleteCollectionResponse, type context$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type context$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type context$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type context$a_DeleteProductPlatformizedResponse as DeleteProductPlatformizedResponse, type DeleteProductRequest$1 as DeleteProductRequest, type DeleteProductResponse$1 as DeleteProductResponse, type Discount$1 as Discount, DiscountType$2 as DiscountType, FileType$1 as FileType, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type context$a_GetProductOptions as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type context$a_PagingWithBigLimit as PagingWithBigLimit, type context$a_PercentageData as PercentageData, type context$a_PlatformMedia as PlatformMedia, type context$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type context$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type context$a_ProductOption as ProductOption, type context$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type context$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type context$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type context$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type context$a_PropertyAdjustmentData as PropertyAdjustmentData, type context$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type context$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type context$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type context$a_QueryCollectionsRequest as QueryCollectionsRequest, type context$a_QueryCollectionsResponse as QueryCollectionsResponse, type context$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type context$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type context$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type context$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type context$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type context$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type context$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type context$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type context$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type context$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type context$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type context$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type context$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type context$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type context$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type context$a_ReCloneStoreRequest as ReCloneStoreRequest, type context$a_ReCloneStoreResponse as ReCloneStoreResponse, type context$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type context$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type context$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type context$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type context$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type context$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type context$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type context$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type context$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type context$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type context$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type context$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type context$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type context$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type context$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type context$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type context$a_SetValue as SetValue, type context$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type context$a_Stock as Stock, type context$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type context$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type context$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type context$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type context$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type context$a_UpdateCollection as UpdateCollection, type context$a_UpdateCollectionRequest as UpdateCollectionRequest, type context$a_UpdateCollectionResponse as UpdateCollectionResponse, type context$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type context$a_UpdateProduct as UpdateProduct, type context$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type context$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type context$a_UpdateVariantsRequest as UpdateVariantsRequest, type context$a_UpdateVariantsResponse as UpdateVariantsResponse, type context$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type context$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type context$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type context$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type context$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type context$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type context$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type context$a_VariantChanged as VariantChanged, type context$a_VariantData as VariantData, type context$a_VariantDataWithNoStock as VariantDataWithNoStock, type context$a_VariantOverride as VariantOverride, type context$a_VariantStock as VariantStock, type context$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type context$a__publicAddProductMediaToChoicesType as _publicAddProductMediaToChoicesType, type context$a__publicAddProductMediaType as _publicAddProductMediaType, type context$a__publicAddProductsToCollectionType as _publicAddProductsToCollectionType, type context$a__publicBulkAdjustProductPropertyType as _publicBulkAdjustProductPropertyType, type context$a__publicBulkUpdateProductsPropertyType as _publicBulkUpdateProductsPropertyType, type context$a__publicCreateCollectionType as _publicCreateCollectionType, type context$a__publicCreateProductType as _publicCreateProductType, type context$a__publicDeleteCollectionType as _publicDeleteCollectionType, type context$a__publicDeleteProductOptionsType as _publicDeleteProductOptionsType, type context$a__publicDeleteProductType as _publicDeleteProductType, type context$a__publicGetCollectionBySlugType as _publicGetCollectionBySlugType, type context$a__publicGetProductOptionsAvailabilityType as _publicGetProductOptionsAvailabilityType, type context$a__publicGetProductType as _publicGetProductType, type context$a__publicGetStoreVariantType as _publicGetStoreVariantType, type context$a__publicOnProductChangedType as _publicOnProductChangedType, type context$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type context$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type context$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type context$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, type context$a__publicQueryProductVariantsType as _publicQueryProductVariantsType, type context$a__publicQueryProductsType as _publicQueryProductsType, type context$a__publicQueryStoreVariantsType as _publicQueryStoreVariantsType, type context$a__publicRemoveBrandType as _publicRemoveBrandType, type context$a__publicRemoveProductMediaFromChoicesType as _publicRemoveProductMediaFromChoicesType, type context$a__publicRemoveProductMediaType as _publicRemoveProductMediaType, type context$a__publicRemoveProductsFromCollectionType as _publicRemoveProductsFromCollectionType, type context$a__publicRemoveRibbonType as _publicRemoveRibbonType, type context$a__publicResetAllProductVariantDataType as _publicResetAllProductVariantDataType, type context$a__publicUpdateCollectionType as _publicUpdateCollectionType, type context$a__publicUpdateProductType as _publicUpdateProductType, type context$a__publicUpdateProductVariantsType as _publicUpdateProductVariantsType, context$a_addProductMedia as addProductMedia, context$a_addProductMediaToChoices as addProductMediaToChoices, context$a_addProductsToCollection as addProductsToCollection, context$a_bulkAdjustProductProperty as bulkAdjustProductProperty, context$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, context$a_createCollection as createCollection, context$a_createProduct as createProduct, context$a_deleteCollection as deleteCollection, context$a_deleteProduct as deleteProduct, context$a_deleteProductOptions as deleteProductOptions, context$a_getCollectionBySlug as getCollectionBySlug, context$a_getProduct as getProduct, context$a_getProductOptionsAvailability as getProductOptionsAvailability, context$a_getStoreVariant as getStoreVariant, context$a_onProductChanged as onProductChanged, context$a_onProductCollectionChanged as onProductCollectionChanged, context$a_onProductCollectionCreated as onProductCollectionCreated, context$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, context$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, onProductCreated$3 as publicOnProductCreated, onProductDeleted$3 as publicOnProductDeleted, onProductVariantsChanged$1 as publicOnProductVariantsChanged, context$a_queryProductVariants as queryProductVariants, context$a_queryProducts as queryProducts, context$a_queryStoreVariants as queryStoreVariants, context$a_removeBrand as removeBrand, context$a_removeProductMedia as removeProductMedia, context$a_removeProductMediaFromChoices as removeProductMediaFromChoices, context$a_removeProductsFromCollection as removeProductsFromCollection, context$a_removeRibbon as removeRibbon, context$a_resetAllProductVariantData as resetAllProductVariantData, context$a_updateCollection as updateCollection, context$a_updateProduct as updateProduct, context$a_updateProductVariants as updateProductVariants };
2977
+ export { type context$a_AddProductMediaRequest as AddProductMediaRequest, type context$a_AddProductMediaResponse as AddProductMediaResponse, type context$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type context$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type context$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type context$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type context$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type context$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type context$a_AggregateProductsRequest as AggregateProductsRequest, type context$a_AggregateProductsResponse as AggregateProductsResponse, type context$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type context$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type context$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type context$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type context$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type context$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type context$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type context$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type context$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type context$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type context$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type context$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type context$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type context$a_BulkUpdateProductsByFilterSyncResponse as BulkUpdateProductsByFilterSyncResponse, type BulkUpdateProductsRequest$1 as BulkUpdateProductsRequest, type BulkUpdateProductsResponse$1 as BulkUpdateProductsResponse, type BulkUpdateProductsResponseNonNullableFields$1 as BulkUpdateProductsResponseNonNullableFields, type Choice$1 as Choice, type context$a_Collection as Collection, type context$a_CollectionChanged as CollectionChanged, type context$a_CollectionCreated as CollectionCreated, type context$a_CollectionDeleted as CollectionDeleted, type context$a_CostAndProfitData as CostAndProfitData, type context$a_CreateCollectionRequest as CreateCollectionRequest, type context$a_CreateCollectionResponse as CreateCollectionResponse, type context$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type context$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type context$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type context$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type context$a_CreateProductPlatformizedResponse as CreateProductPlatformizedResponse, type CreateProductRequest$1 as CreateProductRequest, type CreateProductResponse$1 as CreateProductResponse, type CreateProductResponseNonNullableFields$1 as CreateProductResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type Cursors$7 as Cursors, type context$a_CustomFieldsContainer as CustomFieldsContainer, type context$a_CustomTextField as CustomTextField, type context$a_DeleteCollectionRequest as DeleteCollectionRequest, type context$a_DeleteCollectionResponse as DeleteCollectionResponse, type context$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type context$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type context$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type context$a_DeleteProductPlatformizedResponse as DeleteProductPlatformizedResponse, type DeleteProductRequest$1 as DeleteProductRequest, type DeleteProductResponse$1 as DeleteProductResponse, type Discount$1 as Discount, DiscountType$2 as DiscountType, FileType$1 as FileType, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type context$a_PagingWithBigLimit as PagingWithBigLimit, type context$a_PercentageData as PercentageData, type context$a_PlatformMedia as PlatformMedia, type context$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type context$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type context$a_ProductOption as ProductOption, type context$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type context$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type context$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type context$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type context$a_PropertyAdjustmentData as PropertyAdjustmentData, type context$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type context$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type context$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type context$a_QueryCollectionsRequest as QueryCollectionsRequest, type context$a_QueryCollectionsResponse as QueryCollectionsResponse, type context$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type context$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type context$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type context$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type context$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type context$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type context$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type context$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type context$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type context$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type context$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type context$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type context$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type context$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type context$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type context$a_ReCloneStoreRequest as ReCloneStoreRequest, type context$a_ReCloneStoreResponse as ReCloneStoreResponse, type context$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type context$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type context$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type context$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type context$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type context$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type context$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type context$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type context$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type context$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type context$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type context$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type context$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type context$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type context$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type context$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type context$a_SetValue as SetValue, type context$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type context$a_Stock as Stock, type context$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type context$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type context$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type context$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type context$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type context$a_UpdateCollection as UpdateCollection, type context$a_UpdateCollectionRequest as UpdateCollectionRequest, type context$a_UpdateCollectionResponse as UpdateCollectionResponse, type context$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type UpdateProduct$1 as UpdateProduct, type context$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type context$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type context$a_UpdateVariantsRequest as UpdateVariantsRequest, type context$a_UpdateVariantsResponse as UpdateVariantsResponse, type context$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type context$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type context$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type context$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type context$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type context$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type context$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type context$a_VariantChanged as VariantChanged, type context$a_VariantData as VariantData, type context$a_VariantDataWithNoStock as VariantDataWithNoStock, type context$a_VariantOverride as VariantOverride, type context$a_VariantStock as VariantStock, type context$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type context$a__publicAddProductMediaToChoicesType as _publicAddProductMediaToChoicesType, type context$a__publicAddProductMediaType as _publicAddProductMediaType, type context$a__publicAddProductsToCollectionType as _publicAddProductsToCollectionType, type context$a__publicBulkAdjustProductPropertyType as _publicBulkAdjustProductPropertyType, type context$a__publicBulkUpdateProductsPropertyType as _publicBulkUpdateProductsPropertyType, type context$a__publicCreateCollectionType as _publicCreateCollectionType, type _publicCreateProductType$1 as _publicCreateProductType, type context$a__publicDeleteCollectionType as _publicDeleteCollectionType, type context$a__publicDeleteProductOptionsType as _publicDeleteProductOptionsType, type _publicDeleteProductType$1 as _publicDeleteProductType, type context$a__publicGetCollectionBySlugType as _publicGetCollectionBySlugType, type context$a__publicGetProductOptionsAvailabilityType as _publicGetProductOptionsAvailabilityType, type _publicGetProductType$1 as _publicGetProductType, type context$a__publicGetStoreVariantType as _publicGetStoreVariantType, type context$a__publicOnProductChangedType as _publicOnProductChangedType, type context$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type context$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type context$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type context$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, type context$a__publicQueryProductVariantsType as _publicQueryProductVariantsType, type _publicQueryProductsType$1 as _publicQueryProductsType, type context$a__publicQueryStoreVariantsType as _publicQueryStoreVariantsType, type context$a__publicRemoveBrandType as _publicRemoveBrandType, type context$a__publicRemoveProductMediaFromChoicesType as _publicRemoveProductMediaFromChoicesType, type context$a__publicRemoveProductMediaType as _publicRemoveProductMediaType, type context$a__publicRemoveProductsFromCollectionType as _publicRemoveProductsFromCollectionType, type context$a__publicRemoveRibbonType as _publicRemoveRibbonType, type context$a__publicResetAllProductVariantDataType as _publicResetAllProductVariantDataType, type context$a__publicUpdateCollectionType as _publicUpdateCollectionType, type _publicUpdateProductType$1 as _publicUpdateProductType, type context$a__publicUpdateProductVariantsType as _publicUpdateProductVariantsType, context$a_addProductMedia as addProductMedia, context$a_addProductMediaToChoices as addProductMediaToChoices, context$a_addProductsToCollection as addProductsToCollection, context$a_bulkAdjustProductProperty as bulkAdjustProductProperty, context$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, context$a_createCollection as createCollection, createProduct$2 as createProduct, context$a_deleteCollection as deleteCollection, deleteProduct$2 as deleteProduct, context$a_deleteProductOptions as deleteProductOptions, context$a_getCollectionBySlug as getCollectionBySlug, getProduct$2 as getProduct, context$a_getProductOptionsAvailability as getProductOptionsAvailability, context$a_getStoreVariant as getStoreVariant, context$a_onProductChanged as onProductChanged, context$a_onProductCollectionChanged as onProductCollectionChanged, context$a_onProductCollectionCreated as onProductCollectionCreated, context$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, context$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, onProductCreated$3 as publicOnProductCreated, onProductDeleted$3 as publicOnProductDeleted, onProductVariantsChanged$1 as publicOnProductVariantsChanged, context$a_queryProductVariants as queryProductVariants, queryProducts$2 as queryProducts, context$a_queryStoreVariants as queryStoreVariants, context$a_removeBrand as removeBrand, context$a_removeProductMedia as removeProductMedia, context$a_removeProductMediaFromChoices as removeProductMediaFromChoices, context$a_removeProductsFromCollection as removeProductsFromCollection, context$a_removeRibbon as removeRibbon, context$a_resetAllProductVariantData as resetAllProductVariantData, context$a_updateCollection as updateCollection, updateProduct$2 as updateProduct, context$a_updateProductVariants as updateProductVariants };
2988
2978
  }
2989
2979
 
2990
2980
  /**
@@ -15187,7 +15177,7 @@ interface ProductDeletedEnvelope {
15187
15177
  entity: V3Product;
15188
15178
  metadata: EventMetadata$1;
15189
15179
  }
15190
- interface CatalogCreateProductOptions {
15180
+ interface CreateProductOptions {
15191
15181
  /** Fields to include in the response. */
15192
15182
  fields?: SingleEntityOpsRequestedFields[];
15193
15183
  }
@@ -15201,7 +15191,7 @@ interface CreateProductWithInventoryOptions {
15201
15191
  /** Fields to include in the response. */
15202
15192
  fields?: SingleEntityOpsRequestedFields[];
15203
15193
  }
15204
- interface CatalogUpdateProduct {
15194
+ interface UpdateProduct {
15205
15195
  /**
15206
15196
  * Physical properties.
15207
15197
  *
@@ -15404,7 +15394,7 @@ interface CatalogUpdateProduct {
15404
15394
  */
15405
15395
  variantSummary?: VariantSummary;
15406
15396
  }
15407
- interface CatalogUpdateProductOptions {
15397
+ interface UpdateProductOptions {
15408
15398
  /** Fields to include in the response. */
15409
15399
  fields?: SingleEntityOpsRequestedFields[];
15410
15400
  }
@@ -15534,7 +15524,7 @@ interface UpdateProductWithInventoryOptions {
15534
15524
  /** Fields to include in the response. */
15535
15525
  fields?: SingleEntityOpsRequestedFields[];
15536
15526
  }
15537
- interface CatalogBulkCreateProductsOptions {
15527
+ interface BulkCreateProductsOptions {
15538
15528
  /**
15539
15529
  * Whether to return the full product entities in the response.
15540
15530
  *
@@ -15554,7 +15544,7 @@ interface BulkCreateProductsWithInventoryOptions {
15554
15544
  /** Fields to include in the response. */
15555
15545
  fields?: RequestedFields$1[];
15556
15546
  }
15557
- interface CatalogBulkUpdateProductsOptions {
15547
+ interface BulkUpdateProductsOptions {
15558
15548
  /**
15559
15549
  * Whether to return the full product entities in the response.
15560
15550
  *
@@ -15574,7 +15564,7 @@ interface BulkUpdateProductsWithInventoryOptions {
15574
15564
  /** Fields to include in the response. */
15575
15565
  fields?: RequestedFields$1[];
15576
15566
  }
15577
- interface CatalogBulkUpdateProductsByFilterOptions {
15567
+ interface BulkUpdateProductsByFilterOptions {
15578
15568
  /** Filter object. */
15579
15569
  filter?: Record<string, any> | null;
15580
15570
  /** Product to update. */
@@ -15582,25 +15572,25 @@ interface CatalogBulkUpdateProductsByFilterOptions {
15582
15572
  /** Free text to match in searchable fields. */
15583
15573
  search?: WixCommonSearchDetails;
15584
15574
  }
15585
- interface CatalogUpdateExtendedFieldsOptions {
15575
+ interface UpdateExtendedFieldsOptions {
15586
15576
  /** Data to update. */
15587
15577
  namespaceData: Record<string, any> | null;
15588
15578
  /** Fields to include in the response. */
15589
15579
  fields?: SingleEntityOpsRequestedFields[];
15590
15580
  }
15591
- interface CatalogBulkDeleteProductsByFilterOptions {
15581
+ interface BulkDeleteProductsByFilterOptions {
15592
15582
  /** Free text to match in searchable fields. */
15593
15583
  search?: WixCommonSearchDetails;
15594
15584
  }
15595
- interface CatalogGetProductOptions {
15585
+ interface GetProductOptions {
15596
15586
  /** Fields to include in the response. */
15597
15587
  fields?: SingleEntityOpsRequestedFields[];
15598
15588
  }
15599
- interface CatalogGetProductBySlugOptions {
15589
+ interface GetProductBySlugOptions {
15600
15590
  /** Fields to include in the response. */
15601
15591
  fields?: SingleEntityOpsRequestedFields[];
15602
15592
  }
15603
- interface CatalogSearchProductsOptions {
15593
+ interface SearchProductsOptions {
15604
15594
  /** Search options. */
15605
15595
  search?: CommonCursorSearch;
15606
15596
  /** Fields to include in the response. */
@@ -15687,7 +15677,7 @@ interface ProductsQueryBuilder {
15687
15677
  /** @documentationMaturity preview */
15688
15678
  find: () => Promise<ProductsQueryResult>;
15689
15679
  }
15690
- interface CatalogCountProductsOptions {
15680
+ interface CountProductsOptions {
15691
15681
  /** Filter object. */
15692
15682
  filter?: Record<string, any> | null;
15693
15683
  /** Free text to match in searchable fields. */
@@ -15728,13 +15718,13 @@ interface BulkAdjustProductVariantsByFilterOptions {
15728
15718
  /** Free text to match in searchable fields. */
15729
15719
  search?: WixCommonSearchDetails;
15730
15720
  }
15731
- interface CatalogBulkAddInfoSectionsToProductsByFilterOptions {
15721
+ interface BulkAddInfoSectionsToProductsByFilterOptions {
15732
15722
  /** IDs of the info sections to add. */
15733
15723
  infoSectionIds: string[];
15734
15724
  /** Free text to match in searchable fields. */
15735
15725
  search?: WixCommonSearchDetails;
15736
15726
  }
15737
- interface CatalogBulkAddInfoSectionsToProductsOptions {
15727
+ interface BulkAddInfoSectionsToProductsOptions {
15738
15728
  /** List of IDs of info sections to add. */
15739
15729
  infoSectionIds: string[];
15740
15730
  /**
@@ -15746,13 +15736,13 @@ interface CatalogBulkAddInfoSectionsToProductsOptions {
15746
15736
  /** Fields to include in the response. */
15747
15737
  fields?: RequestedFields$1[];
15748
15738
  }
15749
- interface CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions {
15739
+ interface BulkRemoveInfoSectionsFromProductsByFilterOptions {
15750
15740
  /** IDs of info sections to remove. */
15751
15741
  infoSectionIds: string[];
15752
15742
  /** Free text to match in searchable fields. */
15753
15743
  search?: WixCommonSearchDetails;
15754
15744
  }
15755
- interface CatalogBulkRemoveInfoSectionsFromProductsOptions {
15745
+ interface BulkRemoveInfoSectionsFromProductsOptions {
15756
15746
  /** List of IDs of info sections to remove. */
15757
15747
  infoSectionIds: string[];
15758
15748
  /**
@@ -15781,30 +15771,30 @@ interface BulkRemoveProductsFromCategoriesByFilterOptions {
15781
15771
  search?: WixCommonSearchDetails;
15782
15772
  }
15783
15773
 
15784
- declare function catalogCreateProduct$1(httpClient: HttpClient): (product: V3Product, options?: CatalogCreateProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
15774
+ declare function createProduct$1(httpClient: HttpClient): (product: V3Product, options?: CreateProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
15785
15775
  declare function createProductWithInventory$1(httpClient: HttpClient): (product: ProductWithInventory, options?: CreateProductWithInventoryOptions) => Promise<CreateProductWithInventoryResponse & CreateProductWithInventoryResponseNonNullableFields>;
15786
- declare function catalogUpdateProduct$1(httpClient: HttpClient): (_id: string | null, product: CatalogUpdateProduct, options?: CatalogUpdateProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
15776
+ declare function updateProduct$1(httpClient: HttpClient): (_id: string | null, product: UpdateProduct, options?: UpdateProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
15787
15777
  declare function updateProductWithInventory$1(httpClient: HttpClient): (_id: string | null, product: UpdateProductWithInventoryProduct, options?: UpdateProductWithInventoryOptions) => Promise<UpdateProductWithInventoryResponse & UpdateProductWithInventoryResponseNonNullableFields>;
15788
- declare function catalogBulkCreateProducts$1(httpClient: HttpClient): (products: V3Product[], options?: CatalogBulkCreateProductsOptions) => Promise<BulkCreateProductsResponse & BulkCreateProductsResponseNonNullableFields>;
15778
+ declare function bulkCreateProducts$1(httpClient: HttpClient): (products: V3Product[], options?: BulkCreateProductsOptions) => Promise<BulkCreateProductsResponse & BulkCreateProductsResponseNonNullableFields>;
15789
15779
  declare function bulkCreateProductsWithInventory$1(httpClient: HttpClient): (products: ProductWithInventory[], options?: BulkCreateProductsWithInventoryOptions) => Promise<BulkCreateProductsWithInventoryResponse & BulkCreateProductsWithInventoryResponseNonNullableFields>;
15790
- declare function catalogBulkUpdateProducts$1(httpClient: HttpClient): (products: V3MaskedProduct[], options?: CatalogBulkUpdateProductsOptions) => Promise<BulkUpdateProductsResponse & BulkUpdateProductsResponseNonNullableFields>;
15780
+ declare function bulkUpdateProducts$1(httpClient: HttpClient): (products: V3MaskedProduct[], options?: BulkUpdateProductsOptions) => Promise<BulkUpdateProductsResponse & BulkUpdateProductsResponseNonNullableFields>;
15791
15781
  declare function bulkUpdateProductsWithInventory$1(httpClient: HttpClient): (products: MaskedProductWithInventory[], options?: BulkUpdateProductsWithInventoryOptions) => Promise<BulkUpdateProductsWithInventoryResponse & BulkUpdateProductsWithInventoryResponseNonNullableFields>;
15792
- declare function catalogBulkUpdateProductsByFilter$1(httpClient: HttpClient): (options?: CatalogBulkUpdateProductsByFilterOptions) => Promise<V3BulkUpdateProductsByFilterResponse & V3BulkUpdateProductsByFilterResponseNonNullableFields>;
15793
- declare function catalogUpdateExtendedFields$1(httpClient: HttpClient): (productId: string, namespace: string, options?: CatalogUpdateExtendedFieldsOptions) => Promise<V3UpdateExtendedFieldsResponse & V3UpdateExtendedFieldsResponseNonNullableFields>;
15794
- declare function catalogDeleteProduct$1(httpClient: HttpClient): (productId: string) => Promise<void>;
15795
- declare function catalogBulkDeleteProducts$1(httpClient: HttpClient): (productIds: string[]) => Promise<V3BulkDeleteProductsResponse & V3BulkDeleteProductsResponseNonNullableFields>;
15796
- declare function catalogBulkDeleteProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CatalogBulkDeleteProductsByFilterOptions) => Promise<V3BulkDeleteProductsByFilterResponse & V3BulkDeleteProductsByFilterResponseNonNullableFields>;
15797
- declare function catalogGetProduct$1(httpClient: HttpClient): (productId: string, options?: CatalogGetProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
15798
- declare function catalogGetProductBySlug$1(httpClient: HttpClient): (slug: string, options?: CatalogGetProductBySlugOptions) => Promise<V3GetProductBySlugResponse & V3GetProductBySlugResponseNonNullableFields>;
15799
- declare function catalogSearchProducts$1(httpClient: HttpClient): (options?: CatalogSearchProductsOptions) => Promise<V3SearchProductsResponse & V3SearchProductsResponseNonNullableFields>;
15800
- declare function catalogQueryProducts$1(httpClient: HttpClient): (options?: QueryProductsOptions) => ProductsQueryBuilder;
15801
- declare function catalogCountProducts$1(httpClient: HttpClient): (options?: CatalogCountProductsOptions) => Promise<V3CountProductsResponse & V3CountProductsResponseNonNullableFields>;
15782
+ declare function bulkUpdateProductsByFilter$1(httpClient: HttpClient): (options?: BulkUpdateProductsByFilterOptions) => Promise<V3BulkUpdateProductsByFilterResponse & V3BulkUpdateProductsByFilterResponseNonNullableFields>;
15783
+ declare function updateExtendedFields$1(httpClient: HttpClient): (productId: string, namespace: string, options?: UpdateExtendedFieldsOptions) => Promise<V3UpdateExtendedFieldsResponse & V3UpdateExtendedFieldsResponseNonNullableFields>;
15784
+ declare function deleteProduct$1(httpClient: HttpClient): (productId: string) => Promise<void>;
15785
+ declare function bulkDeleteProducts$1(httpClient: HttpClient): (productIds: string[]) => Promise<V3BulkDeleteProductsResponse & V3BulkDeleteProductsResponseNonNullableFields>;
15786
+ declare function bulkDeleteProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkDeleteProductsByFilterOptions) => Promise<V3BulkDeleteProductsByFilterResponse & V3BulkDeleteProductsByFilterResponseNonNullableFields>;
15787
+ declare function getProduct$1(httpClient: HttpClient): (productId: string, options?: GetProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
15788
+ declare function getProductBySlug$1(httpClient: HttpClient): (slug: string, options?: GetProductBySlugOptions) => Promise<V3GetProductBySlugResponse & V3GetProductBySlugResponseNonNullableFields>;
15789
+ declare function searchProducts$1(httpClient: HttpClient): (options?: SearchProductsOptions) => Promise<V3SearchProductsResponse & V3SearchProductsResponseNonNullableFields>;
15790
+ declare function queryProducts$1(httpClient: HttpClient): (options?: QueryProductsOptions) => ProductsQueryBuilder;
15791
+ declare function countProducts$1(httpClient: HttpClient): (options?: CountProductsOptions) => Promise<V3CountProductsResponse & V3CountProductsResponseNonNullableFields>;
15802
15792
  declare function bulkUpdateProductVariantsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkUpdateProductVariantsByFilterOptions) => Promise<BulkUpdateProductVariantsByFilterResponse & BulkUpdateProductVariantsByFilterResponseNonNullableFields>;
15803
15793
  declare function bulkAdjustProductVariantsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkAdjustProductVariantsByFilterOptions) => Promise<BulkAdjustProductVariantsByFilterResponse & BulkAdjustProductVariantsByFilterResponseNonNullableFields>;
15804
- declare function catalogBulkAddInfoSectionsToProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CatalogBulkAddInfoSectionsToProductsByFilterOptions) => Promise<V3BulkAddInfoSectionsToProductsByFilterResponse & V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields>;
15805
- declare function catalogBulkAddInfoSectionsToProducts$1(httpClient: HttpClient): (products: V3ProductIdWithRevision[], options?: CatalogBulkAddInfoSectionsToProductsOptions) => Promise<V3BulkAddInfoSectionsToProductsResponse & V3BulkAddInfoSectionsToProductsResponseNonNullableFields>;
15806
- declare function catalogBulkRemoveInfoSectionsFromProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions) => Promise<V3BulkRemoveInfoSectionsFromProductsByFilterResponse & V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields>;
15807
- declare function catalogBulkRemoveInfoSectionsFromProducts$1(httpClient: HttpClient): (products: V3ProductIdWithRevision[], options?: CatalogBulkRemoveInfoSectionsFromProductsOptions) => Promise<V3BulkRemoveInfoSectionsFromProductsResponse & V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields>;
15794
+ declare function bulkAddInfoSectionsToProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkAddInfoSectionsToProductsByFilterOptions) => Promise<V3BulkAddInfoSectionsToProductsByFilterResponse & V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields>;
15795
+ declare function bulkAddInfoSectionsToProducts$1(httpClient: HttpClient): (products: V3ProductIdWithRevision[], options?: BulkAddInfoSectionsToProductsOptions) => Promise<V3BulkAddInfoSectionsToProductsResponse & V3BulkAddInfoSectionsToProductsResponseNonNullableFields>;
15796
+ declare function bulkRemoveInfoSectionsFromProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkRemoveInfoSectionsFromProductsByFilterOptions) => Promise<V3BulkRemoveInfoSectionsFromProductsByFilterResponse & V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields>;
15797
+ declare function bulkRemoveInfoSectionsFromProducts$1(httpClient: HttpClient): (products: V3ProductIdWithRevision[], options?: BulkRemoveInfoSectionsFromProductsOptions) => Promise<V3BulkRemoveInfoSectionsFromProductsResponse & V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields>;
15808
15798
  declare function bulkAddProductsToCategoriesByFilter$1(httpClient: HttpClient): (options?: BulkAddProductsToCategoriesByFilterOptions) => Promise<BulkAddProductsToCategoriesByFilterResponse & BulkAddProductsToCategoriesByFilterResponseNonNullableFields>;
15809
15799
  declare function bulkRemoveProductsFromCategoriesByFilter$1(httpClient: HttpClient): (options?: BulkRemoveProductsFromCategoriesByFilterOptions) => Promise<BulkRemoveProductsFromCategoriesByFilterResponse & BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields>;
15810
15800
  declare const onProductCreated$1: EventDefinition<ProductCreatedEnvelope, "wix.stores.catalog.v3.product_created">;
@@ -15815,54 +15805,54 @@ declare function createRESTModule$5<T extends RESTFunctionDescriptor>(descriptor
15815
15805
 
15816
15806
  declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
15817
15807
 
15818
- type _publicCatalogCreateProductType = typeof catalogCreateProduct$1;
15819
- declare const catalogCreateProduct: ReturnType<typeof createRESTModule$5<_publicCatalogCreateProductType>>;
15808
+ type _publicCreateProductType = typeof createProduct$1;
15809
+ declare const createProduct: ReturnType<typeof createRESTModule$5<_publicCreateProductType>>;
15820
15810
  type _publicCreateProductWithInventoryType = typeof createProductWithInventory$1;
15821
15811
  declare const createProductWithInventory: ReturnType<typeof createRESTModule$5<_publicCreateProductWithInventoryType>>;
15822
- type _publicCatalogUpdateProductType = typeof catalogUpdateProduct$1;
15823
- declare const catalogUpdateProduct: ReturnType<typeof createRESTModule$5<_publicCatalogUpdateProductType>>;
15812
+ type _publicUpdateProductType = typeof updateProduct$1;
15813
+ declare const updateProduct: ReturnType<typeof createRESTModule$5<_publicUpdateProductType>>;
15824
15814
  type _publicUpdateProductWithInventoryType = typeof updateProductWithInventory$1;
15825
15815
  declare const updateProductWithInventory: ReturnType<typeof createRESTModule$5<_publicUpdateProductWithInventoryType>>;
15826
- type _publicCatalogBulkCreateProductsType = typeof catalogBulkCreateProducts$1;
15827
- declare const catalogBulkCreateProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkCreateProductsType>>;
15816
+ type _publicBulkCreateProductsType = typeof bulkCreateProducts$1;
15817
+ declare const bulkCreateProducts: ReturnType<typeof createRESTModule$5<_publicBulkCreateProductsType>>;
15828
15818
  type _publicBulkCreateProductsWithInventoryType = typeof bulkCreateProductsWithInventory$1;
15829
15819
  declare const bulkCreateProductsWithInventory: ReturnType<typeof createRESTModule$5<_publicBulkCreateProductsWithInventoryType>>;
15830
- type _publicCatalogBulkUpdateProductsType = typeof catalogBulkUpdateProducts$1;
15831
- declare const catalogBulkUpdateProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkUpdateProductsType>>;
15820
+ type _publicBulkUpdateProductsType = typeof bulkUpdateProducts$1;
15821
+ declare const bulkUpdateProducts: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductsType>>;
15832
15822
  type _publicBulkUpdateProductsWithInventoryType = typeof bulkUpdateProductsWithInventory$1;
15833
15823
  declare const bulkUpdateProductsWithInventory: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductsWithInventoryType>>;
15834
- type _publicCatalogBulkUpdateProductsByFilterType = typeof catalogBulkUpdateProductsByFilter$1;
15835
- declare const catalogBulkUpdateProductsByFilter: ReturnType<typeof createRESTModule$5<_publicCatalogBulkUpdateProductsByFilterType>>;
15836
- type _publicCatalogUpdateExtendedFieldsType = typeof catalogUpdateExtendedFields$1;
15837
- declare const catalogUpdateExtendedFields: ReturnType<typeof createRESTModule$5<_publicCatalogUpdateExtendedFieldsType>>;
15838
- type _publicCatalogDeleteProductType = typeof catalogDeleteProduct$1;
15839
- declare const catalogDeleteProduct: ReturnType<typeof createRESTModule$5<_publicCatalogDeleteProductType>>;
15840
- type _publicCatalogBulkDeleteProductsType = typeof catalogBulkDeleteProducts$1;
15841
- declare const catalogBulkDeleteProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkDeleteProductsType>>;
15842
- type _publicCatalogBulkDeleteProductsByFilterType = typeof catalogBulkDeleteProductsByFilter$1;
15843
- declare const catalogBulkDeleteProductsByFilter: ReturnType<typeof createRESTModule$5<_publicCatalogBulkDeleteProductsByFilterType>>;
15844
- type _publicCatalogGetProductType = typeof catalogGetProduct$1;
15845
- declare const catalogGetProduct: ReturnType<typeof createRESTModule$5<_publicCatalogGetProductType>>;
15846
- type _publicCatalogGetProductBySlugType = typeof catalogGetProductBySlug$1;
15847
- declare const catalogGetProductBySlug: ReturnType<typeof createRESTModule$5<_publicCatalogGetProductBySlugType>>;
15848
- type _publicCatalogSearchProductsType = typeof catalogSearchProducts$1;
15849
- declare const catalogSearchProducts: ReturnType<typeof createRESTModule$5<_publicCatalogSearchProductsType>>;
15850
- type _publicCatalogQueryProductsType = typeof catalogQueryProducts$1;
15851
- declare const catalogQueryProducts: ReturnType<typeof createRESTModule$5<_publicCatalogQueryProductsType>>;
15852
- type _publicCatalogCountProductsType = typeof catalogCountProducts$1;
15853
- declare const catalogCountProducts: ReturnType<typeof createRESTModule$5<_publicCatalogCountProductsType>>;
15824
+ type _publicBulkUpdateProductsByFilterType = typeof bulkUpdateProductsByFilter$1;
15825
+ declare const bulkUpdateProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductsByFilterType>>;
15826
+ type _publicUpdateExtendedFieldsType = typeof updateExtendedFields$1;
15827
+ declare const updateExtendedFields: ReturnType<typeof createRESTModule$5<_publicUpdateExtendedFieldsType>>;
15828
+ type _publicDeleteProductType = typeof deleteProduct$1;
15829
+ declare const deleteProduct: ReturnType<typeof createRESTModule$5<_publicDeleteProductType>>;
15830
+ type _publicBulkDeleteProductsType = typeof bulkDeleteProducts$1;
15831
+ declare const bulkDeleteProducts: ReturnType<typeof createRESTModule$5<_publicBulkDeleteProductsType>>;
15832
+ type _publicBulkDeleteProductsByFilterType = typeof bulkDeleteProductsByFilter$1;
15833
+ declare const bulkDeleteProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkDeleteProductsByFilterType>>;
15834
+ type _publicGetProductType = typeof getProduct$1;
15835
+ declare const getProduct: ReturnType<typeof createRESTModule$5<_publicGetProductType>>;
15836
+ type _publicGetProductBySlugType = typeof getProductBySlug$1;
15837
+ declare const getProductBySlug: ReturnType<typeof createRESTModule$5<_publicGetProductBySlugType>>;
15838
+ type _publicSearchProductsType = typeof searchProducts$1;
15839
+ declare const searchProducts: ReturnType<typeof createRESTModule$5<_publicSearchProductsType>>;
15840
+ type _publicQueryProductsType = typeof queryProducts$1;
15841
+ declare const queryProducts: ReturnType<typeof createRESTModule$5<_publicQueryProductsType>>;
15842
+ type _publicCountProductsType = typeof countProducts$1;
15843
+ declare const countProducts: ReturnType<typeof createRESTModule$5<_publicCountProductsType>>;
15854
15844
  type _publicBulkUpdateProductVariantsByFilterType = typeof bulkUpdateProductVariantsByFilter$1;
15855
15845
  declare const bulkUpdateProductVariantsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductVariantsByFilterType>>;
15856
15846
  type _publicBulkAdjustProductVariantsByFilterType = typeof bulkAdjustProductVariantsByFilter$1;
15857
15847
  declare const bulkAdjustProductVariantsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAdjustProductVariantsByFilterType>>;
15858
- type _publicCatalogBulkAddInfoSectionsToProductsByFilterType = typeof catalogBulkAddInfoSectionsToProductsByFilter$1;
15859
- declare const catalogBulkAddInfoSectionsToProductsByFilter: ReturnType<typeof createRESTModule$5<_publicCatalogBulkAddInfoSectionsToProductsByFilterType>>;
15860
- type _publicCatalogBulkAddInfoSectionsToProductsType = typeof catalogBulkAddInfoSectionsToProducts$1;
15861
- declare const catalogBulkAddInfoSectionsToProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkAddInfoSectionsToProductsType>>;
15862
- type _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType = typeof catalogBulkRemoveInfoSectionsFromProductsByFilter$1;
15863
- declare const catalogBulkRemoveInfoSectionsFromProductsByFilter: ReturnType<typeof createRESTModule$5<_publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType>>;
15864
- type _publicCatalogBulkRemoveInfoSectionsFromProductsType = typeof catalogBulkRemoveInfoSectionsFromProducts$1;
15865
- declare const catalogBulkRemoveInfoSectionsFromProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkRemoveInfoSectionsFromProductsType>>;
15848
+ type _publicBulkAddInfoSectionsToProductsByFilterType = typeof bulkAddInfoSectionsToProductsByFilter$1;
15849
+ declare const bulkAddInfoSectionsToProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAddInfoSectionsToProductsByFilterType>>;
15850
+ type _publicBulkAddInfoSectionsToProductsType = typeof bulkAddInfoSectionsToProducts$1;
15851
+ declare const bulkAddInfoSectionsToProducts: ReturnType<typeof createRESTModule$5<_publicBulkAddInfoSectionsToProductsType>>;
15852
+ type _publicBulkRemoveInfoSectionsFromProductsByFilterType = typeof bulkRemoveInfoSectionsFromProductsByFilter$1;
15853
+ declare const bulkRemoveInfoSectionsFromProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkRemoveInfoSectionsFromProductsByFilterType>>;
15854
+ type _publicBulkRemoveInfoSectionsFromProductsType = typeof bulkRemoveInfoSectionsFromProducts$1;
15855
+ declare const bulkRemoveInfoSectionsFromProducts: ReturnType<typeof createRESTModule$5<_publicBulkRemoveInfoSectionsFromProductsType>>;
15866
15856
  type _publicBulkAddProductsToCategoriesByFilterType = typeof bulkAddProductsToCategoriesByFilter$1;
15867
15857
  declare const bulkAddProductsToCategoriesByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAddProductsToCategoriesByFilterType>>;
15868
15858
  type _publicBulkRemoveProductsFromCategoriesByFilterType = typeof bulkRemoveProductsFromCategoriesByFilter$1;
@@ -15938,8 +15928,10 @@ type context$5_BorderColors = BorderColors;
15938
15928
  type context$5_Brand = Brand;
15939
15929
  type context$5_BreadCrumb = BreadCrumb;
15940
15930
  type context$5_BreadcrumbsInfo = BreadcrumbsInfo;
15931
+ type context$5_BulkAddInfoSectionsToProductsByFilterOptions = BulkAddInfoSectionsToProductsByFilterOptions;
15941
15932
  type context$5_BulkAddInfoSectionsToProductsByFilterRequest = BulkAddInfoSectionsToProductsByFilterRequest;
15942
15933
  type context$5_BulkAddInfoSectionsToProductsByFilterResponse = BulkAddInfoSectionsToProductsByFilterResponse;
15934
+ type context$5_BulkAddInfoSectionsToProductsOptions = BulkAddInfoSectionsToProductsOptions;
15943
15935
  type context$5_BulkAddInfoSectionsToProductsRequest = BulkAddInfoSectionsToProductsRequest;
15944
15936
  type context$5_BulkAddInfoSectionsToProductsResponse = BulkAddInfoSectionsToProductsResponse;
15945
15937
  type context$5_BulkAddProductsToCategoriesByFilterOptions = BulkAddProductsToCategoriesByFilterOptions;
@@ -15954,6 +15946,7 @@ type context$5_BulkAdjustProductVariantsByFilterResponse = BulkAdjustProductVari
15954
15946
  type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields = BulkAdjustProductVariantsByFilterResponseNonNullableFields;
15955
15947
  type context$5_BulkAdjustVariantsByFilterRequest = BulkAdjustVariantsByFilterRequest;
15956
15948
  type context$5_BulkAdjustVariantsByFilterResponse = BulkAdjustVariantsByFilterResponse;
15949
+ type context$5_BulkCreateProductsOptions = BulkCreateProductsOptions;
15957
15950
  type context$5_BulkCreateProductsRequest = BulkCreateProductsRequest;
15958
15951
  type context$5_BulkCreateProductsResponse = BulkCreateProductsResponse;
15959
15952
  type context$5_BulkCreateProductsResponseNonNullableFields = BulkCreateProductsResponseNonNullableFields;
@@ -15961,6 +15954,7 @@ type context$5_BulkCreateProductsWithInventoryOptions = BulkCreateProductsWithIn
15961
15954
  type context$5_BulkCreateProductsWithInventoryRequest = BulkCreateProductsWithInventoryRequest;
15962
15955
  type context$5_BulkCreateProductsWithInventoryResponse = BulkCreateProductsWithInventoryResponse;
15963
15956
  type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields = BulkCreateProductsWithInventoryResponseNonNullableFields;
15957
+ type context$5_BulkDeleteProductsByFilterOptions = BulkDeleteProductsByFilterOptions;
15964
15958
  type context$5_BulkDeleteProductsByFilterRequest = BulkDeleteProductsByFilterRequest;
15965
15959
  type context$5_BulkDeleteProductsByFilterResponse = BulkDeleteProductsByFilterResponse;
15966
15960
  type context$5_BulkDeleteProductsRequest = BulkDeleteProductsRequest;
@@ -15971,8 +15965,10 @@ type context$5_BulkInventoryItemResult = BulkInventoryItemResult;
15971
15965
  type context$5_BulkInventoryItemResults = BulkInventoryItemResults;
15972
15966
  type context$5_BulkProductResult = BulkProductResult;
15973
15967
  type context$5_BulkProductResults = BulkProductResults;
15968
+ type context$5_BulkRemoveInfoSectionsFromProductsByFilterOptions = BulkRemoveInfoSectionsFromProductsByFilterOptions;
15974
15969
  type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest = BulkRemoveInfoSectionsFromProductsByFilterRequest;
15975
15970
  type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse = BulkRemoveInfoSectionsFromProductsByFilterResponse;
15971
+ type context$5_BulkRemoveInfoSectionsFromProductsOptions = BulkRemoveInfoSectionsFromProductsOptions;
15976
15972
  type context$5_BulkRemoveInfoSectionsFromProductsRequest = BulkRemoveInfoSectionsFromProductsRequest;
15977
15973
  type context$5_BulkRemoveInfoSectionsFromProductsResponse = BulkRemoveInfoSectionsFromProductsResponse;
15978
15974
  type context$5_BulkRemoveProductsFromCategoriesByFilterOptions = BulkRemoveProductsFromCategoriesByFilterOptions;
@@ -15983,8 +15979,10 @@ type context$5_BulkUpdateProductVariantsByFilterOptions = BulkUpdateProductVaria
15983
15979
  type context$5_BulkUpdateProductVariantsByFilterRequest = BulkUpdateProductVariantsByFilterRequest;
15984
15980
  type context$5_BulkUpdateProductVariantsByFilterResponse = BulkUpdateProductVariantsByFilterResponse;
15985
15981
  type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields = BulkUpdateProductVariantsByFilterResponseNonNullableFields;
15982
+ type context$5_BulkUpdateProductsByFilterOptions = BulkUpdateProductsByFilterOptions;
15986
15983
  type context$5_BulkUpdateProductsByFilterRequest = BulkUpdateProductsByFilterRequest;
15987
15984
  type context$5_BulkUpdateProductsByFilterResponse = BulkUpdateProductsByFilterResponse;
15985
+ type context$5_BulkUpdateProductsOptions = BulkUpdateProductsOptions;
15988
15986
  type context$5_BulkUpdateProductsRequest = BulkUpdateProductsRequest;
15989
15987
  type context$5_BulkUpdateProductsResponse = BulkUpdateProductsResponse;
15990
15988
  type context$5_BulkUpdateProductsResponseNonNullableFields = BulkUpdateProductsResponseNonNullableFields;
@@ -15996,22 +15994,6 @@ type context$5_BulkUpdateVariantsByFilterRequest = BulkUpdateVariantsByFilterReq
15996
15994
  type context$5_BulkUpdateVariantsByFilterResponse = BulkUpdateVariantsByFilterResponse;
15997
15995
  type context$5_BulletedListData = BulletedListData;
15998
15996
  type context$5_ButtonData = ButtonData;
15999
- type context$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions = CatalogBulkAddInfoSectionsToProductsByFilterOptions;
16000
- type context$5_CatalogBulkAddInfoSectionsToProductsOptions = CatalogBulkAddInfoSectionsToProductsOptions;
16001
- type context$5_CatalogBulkCreateProductsOptions = CatalogBulkCreateProductsOptions;
16002
- type context$5_CatalogBulkDeleteProductsByFilterOptions = CatalogBulkDeleteProductsByFilterOptions;
16003
- type context$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions = CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions;
16004
- type context$5_CatalogBulkRemoveInfoSectionsFromProductsOptions = CatalogBulkRemoveInfoSectionsFromProductsOptions;
16005
- type context$5_CatalogBulkUpdateProductsByFilterOptions = CatalogBulkUpdateProductsByFilterOptions;
16006
- type context$5_CatalogBulkUpdateProductsOptions = CatalogBulkUpdateProductsOptions;
16007
- type context$5_CatalogCountProductsOptions = CatalogCountProductsOptions;
16008
- type context$5_CatalogCreateProductOptions = CatalogCreateProductOptions;
16009
- type context$5_CatalogGetProductBySlugOptions = CatalogGetProductBySlugOptions;
16010
- type context$5_CatalogGetProductOptions = CatalogGetProductOptions;
16011
- type context$5_CatalogSearchProductsOptions = CatalogSearchProductsOptions;
16012
- type context$5_CatalogUpdateExtendedFieldsOptions = CatalogUpdateExtendedFieldsOptions;
16013
- type context$5_CatalogUpdateProduct = CatalogUpdateProduct;
16014
- type context$5_CatalogUpdateProductOptions = CatalogUpdateProductOptions;
16015
15997
  type context$5_CatalogV3BulkProductResult = CatalogV3BulkProductResult;
16016
15998
  type context$5_CategoryMoved = CategoryMoved;
16017
15999
  type context$5_CellStyle = CellStyle;
@@ -16058,8 +16040,10 @@ type context$5_ConnectedOption = ConnectedOption;
16058
16040
  type context$5_ConnectedOptionChoice = ConnectedOptionChoice;
16059
16041
  type context$5_ConnectedOptionChoiceValueOneOf = ConnectedOptionChoiceValueOneOf;
16060
16042
  type context$5_ConnectedOptionOptionSettingsOneOf = ConnectedOptionOptionSettingsOneOf;
16043
+ type context$5_CountProductsOptions = CountProductsOptions;
16061
16044
  type context$5_CountProductsRequest = CountProductsRequest;
16062
16045
  type context$5_CountProductsResponse = CountProductsResponse;
16046
+ type context$5_CreateProductOptions = CreateProductOptions;
16063
16047
  type context$5_CreateProductRequest = CreateProductRequest;
16064
16048
  type context$5_CreateProductResponse = CreateProductResponse;
16065
16049
  type context$5_CreateProductResponseNonNullableFields = CreateProductResponseNonNullableFields;
@@ -16125,8 +16109,10 @@ type context$5_GIF = GIF;
16125
16109
  type context$5_GIFData = GIFData;
16126
16110
  type context$5_GalleryData = GalleryData;
16127
16111
  type context$5_GalleryOptions = GalleryOptions;
16112
+ type context$5_GetProductBySlugOptions = GetProductBySlugOptions;
16128
16113
  type context$5_GetProductBySlugRequest = GetProductBySlugRequest;
16129
16114
  type context$5_GetProductBySlugResponse = GetProductBySlugResponse;
16115
+ type context$5_GetProductOptions = GetProductOptions;
16130
16116
  type context$5_GetProductRequest = GetProductRequest;
16131
16117
  type context$5_GetProductResponse = GetProductResponse;
16132
16118
  type context$5_GetVariantsRequest = GetVariantsRequest;
@@ -16313,6 +16299,7 @@ type context$5_SearchDetails = SearchDetails;
16313
16299
  type context$5_SearchDetailsMode = SearchDetailsMode;
16314
16300
  declare const context$5_SearchDetailsMode: typeof SearchDetailsMode;
16315
16301
  type context$5_SearchIndexingNotification = SearchIndexingNotification;
16302
+ type context$5_SearchProductsOptions = SearchProductsOptions;
16316
16303
  type context$5_SearchProductsRequest = SearchProductsRequest;
16317
16304
  type context$5_SearchProductsResponse = SearchProductsResponse;
16318
16305
  type context$5_SecuredMedia = SecuredMedia;
@@ -16360,8 +16347,11 @@ type context$5_UpdateByFilterOperation = UpdateByFilterOperation;
16360
16347
  type context$5_UpdateDocumentsEvent = UpdateDocumentsEvent;
16361
16348
  type context$5_UpdateDocumentsEventOperationOneOf = UpdateDocumentsEventOperationOneOf;
16362
16349
  type context$5_UpdateExistingOperation = UpdateExistingOperation;
16350
+ type context$5_UpdateExtendedFieldsOptions = UpdateExtendedFieldsOptions;
16363
16351
  type context$5_UpdateExtendedFieldsRequest = UpdateExtendedFieldsRequest;
16364
16352
  type context$5_UpdateExtendedFieldsResponse = UpdateExtendedFieldsResponse;
16353
+ type context$5_UpdateProduct = UpdateProduct;
16354
+ type context$5_UpdateProductOptions = UpdateProductOptions;
16365
16355
  type context$5_UpdateProductRequest = UpdateProductRequest;
16366
16356
  type context$5_UpdateProductResponse = UpdateProductResponse;
16367
16357
  type context$5_UpdateProductResponseNonNullableFields = UpdateProductResponseNonNullableFields;
@@ -16478,66 +16468,66 @@ type context$5_WixCommonSearchDetails = WixCommonSearchDetails;
16478
16468
  type context$5_WixCommonSortOrder = WixCommonSortOrder;
16479
16469
  declare const context$5_WixCommonSortOrder: typeof WixCommonSortOrder;
16480
16470
  type context$5_WixCommonSorting = WixCommonSorting;
16471
+ type context$5__publicBulkAddInfoSectionsToProductsByFilterType = _publicBulkAddInfoSectionsToProductsByFilterType;
16472
+ type context$5__publicBulkAddInfoSectionsToProductsType = _publicBulkAddInfoSectionsToProductsType;
16481
16473
  type context$5__publicBulkAddProductsToCategoriesByFilterType = _publicBulkAddProductsToCategoriesByFilterType;
16482
16474
  type context$5__publicBulkAdjustProductVariantsByFilterType = _publicBulkAdjustProductVariantsByFilterType;
16475
+ type context$5__publicBulkCreateProductsType = _publicBulkCreateProductsType;
16483
16476
  type context$5__publicBulkCreateProductsWithInventoryType = _publicBulkCreateProductsWithInventoryType;
16477
+ type context$5__publicBulkDeleteProductsByFilterType = _publicBulkDeleteProductsByFilterType;
16478
+ type context$5__publicBulkDeleteProductsType = _publicBulkDeleteProductsType;
16479
+ type context$5__publicBulkRemoveInfoSectionsFromProductsByFilterType = _publicBulkRemoveInfoSectionsFromProductsByFilterType;
16480
+ type context$5__publicBulkRemoveInfoSectionsFromProductsType = _publicBulkRemoveInfoSectionsFromProductsType;
16484
16481
  type context$5__publicBulkRemoveProductsFromCategoriesByFilterType = _publicBulkRemoveProductsFromCategoriesByFilterType;
16485
16482
  type context$5__publicBulkUpdateProductVariantsByFilterType = _publicBulkUpdateProductVariantsByFilterType;
16483
+ type context$5__publicBulkUpdateProductsByFilterType = _publicBulkUpdateProductsByFilterType;
16484
+ type context$5__publicBulkUpdateProductsType = _publicBulkUpdateProductsType;
16486
16485
  type context$5__publicBulkUpdateProductsWithInventoryType = _publicBulkUpdateProductsWithInventoryType;
16487
- type context$5__publicCatalogBulkAddInfoSectionsToProductsByFilterType = _publicCatalogBulkAddInfoSectionsToProductsByFilterType;
16488
- type context$5__publicCatalogBulkAddInfoSectionsToProductsType = _publicCatalogBulkAddInfoSectionsToProductsType;
16489
- type context$5__publicCatalogBulkCreateProductsType = _publicCatalogBulkCreateProductsType;
16490
- type context$5__publicCatalogBulkDeleteProductsByFilterType = _publicCatalogBulkDeleteProductsByFilterType;
16491
- type context$5__publicCatalogBulkDeleteProductsType = _publicCatalogBulkDeleteProductsType;
16492
- type context$5__publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType = _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType;
16493
- type context$5__publicCatalogBulkRemoveInfoSectionsFromProductsType = _publicCatalogBulkRemoveInfoSectionsFromProductsType;
16494
- type context$5__publicCatalogBulkUpdateProductsByFilterType = _publicCatalogBulkUpdateProductsByFilterType;
16495
- type context$5__publicCatalogBulkUpdateProductsType = _publicCatalogBulkUpdateProductsType;
16496
- type context$5__publicCatalogCountProductsType = _publicCatalogCountProductsType;
16497
- type context$5__publicCatalogCreateProductType = _publicCatalogCreateProductType;
16498
- type context$5__publicCatalogDeleteProductType = _publicCatalogDeleteProductType;
16499
- type context$5__publicCatalogGetProductBySlugType = _publicCatalogGetProductBySlugType;
16500
- type context$5__publicCatalogGetProductType = _publicCatalogGetProductType;
16501
- type context$5__publicCatalogQueryProductsType = _publicCatalogQueryProductsType;
16502
- type context$5__publicCatalogSearchProductsType = _publicCatalogSearchProductsType;
16503
- type context$5__publicCatalogUpdateExtendedFieldsType = _publicCatalogUpdateExtendedFieldsType;
16504
- type context$5__publicCatalogUpdateProductType = _publicCatalogUpdateProductType;
16486
+ type context$5__publicCountProductsType = _publicCountProductsType;
16487
+ type context$5__publicCreateProductType = _publicCreateProductType;
16505
16488
  type context$5__publicCreateProductWithInventoryType = _publicCreateProductWithInventoryType;
16489
+ type context$5__publicDeleteProductType = _publicDeleteProductType;
16490
+ type context$5__publicGetProductBySlugType = _publicGetProductBySlugType;
16491
+ type context$5__publicGetProductType = _publicGetProductType;
16506
16492
  type context$5__publicOnProductCreatedType = _publicOnProductCreatedType;
16507
16493
  type context$5__publicOnProductDeletedType = _publicOnProductDeletedType;
16508
16494
  type context$5__publicOnProductUpdatedType = _publicOnProductUpdatedType;
16495
+ type context$5__publicQueryProductsType = _publicQueryProductsType;
16496
+ type context$5__publicSearchProductsType = _publicSearchProductsType;
16497
+ type context$5__publicUpdateExtendedFieldsType = _publicUpdateExtendedFieldsType;
16498
+ type context$5__publicUpdateProductType = _publicUpdateProductType;
16509
16499
  type context$5__publicUpdateProductWithInventoryType = _publicUpdateProductWithInventoryType;
16500
+ declare const context$5_bulkAddInfoSectionsToProducts: typeof bulkAddInfoSectionsToProducts;
16501
+ declare const context$5_bulkAddInfoSectionsToProductsByFilter: typeof bulkAddInfoSectionsToProductsByFilter;
16510
16502
  declare const context$5_bulkAddProductsToCategoriesByFilter: typeof bulkAddProductsToCategoriesByFilter;
16511
16503
  declare const context$5_bulkAdjustProductVariantsByFilter: typeof bulkAdjustProductVariantsByFilter;
16504
+ declare const context$5_bulkCreateProducts: typeof bulkCreateProducts;
16512
16505
  declare const context$5_bulkCreateProductsWithInventory: typeof bulkCreateProductsWithInventory;
16506
+ declare const context$5_bulkDeleteProducts: typeof bulkDeleteProducts;
16507
+ declare const context$5_bulkDeleteProductsByFilter: typeof bulkDeleteProductsByFilter;
16508
+ declare const context$5_bulkRemoveInfoSectionsFromProducts: typeof bulkRemoveInfoSectionsFromProducts;
16509
+ declare const context$5_bulkRemoveInfoSectionsFromProductsByFilter: typeof bulkRemoveInfoSectionsFromProductsByFilter;
16513
16510
  declare const context$5_bulkRemoveProductsFromCategoriesByFilter: typeof bulkRemoveProductsFromCategoriesByFilter;
16514
16511
  declare const context$5_bulkUpdateProductVariantsByFilter: typeof bulkUpdateProductVariantsByFilter;
16512
+ declare const context$5_bulkUpdateProducts: typeof bulkUpdateProducts;
16513
+ declare const context$5_bulkUpdateProductsByFilter: typeof bulkUpdateProductsByFilter;
16515
16514
  declare const context$5_bulkUpdateProductsWithInventory: typeof bulkUpdateProductsWithInventory;
16516
- declare const context$5_catalogBulkAddInfoSectionsToProducts: typeof catalogBulkAddInfoSectionsToProducts;
16517
- declare const context$5_catalogBulkAddInfoSectionsToProductsByFilter: typeof catalogBulkAddInfoSectionsToProductsByFilter;
16518
- declare const context$5_catalogBulkCreateProducts: typeof catalogBulkCreateProducts;
16519
- declare const context$5_catalogBulkDeleteProducts: typeof catalogBulkDeleteProducts;
16520
- declare const context$5_catalogBulkDeleteProductsByFilter: typeof catalogBulkDeleteProductsByFilter;
16521
- declare const context$5_catalogBulkRemoveInfoSectionsFromProducts: typeof catalogBulkRemoveInfoSectionsFromProducts;
16522
- declare const context$5_catalogBulkRemoveInfoSectionsFromProductsByFilter: typeof catalogBulkRemoveInfoSectionsFromProductsByFilter;
16523
- declare const context$5_catalogBulkUpdateProducts: typeof catalogBulkUpdateProducts;
16524
- declare const context$5_catalogBulkUpdateProductsByFilter: typeof catalogBulkUpdateProductsByFilter;
16525
- declare const context$5_catalogCountProducts: typeof catalogCountProducts;
16526
- declare const context$5_catalogCreateProduct: typeof catalogCreateProduct;
16527
- declare const context$5_catalogDeleteProduct: typeof catalogDeleteProduct;
16528
- declare const context$5_catalogGetProduct: typeof catalogGetProduct;
16529
- declare const context$5_catalogGetProductBySlug: typeof catalogGetProductBySlug;
16530
- declare const context$5_catalogQueryProducts: typeof catalogQueryProducts;
16531
- declare const context$5_catalogSearchProducts: typeof catalogSearchProducts;
16532
- declare const context$5_catalogUpdateExtendedFields: typeof catalogUpdateExtendedFields;
16533
- declare const context$5_catalogUpdateProduct: typeof catalogUpdateProduct;
16515
+ declare const context$5_countProducts: typeof countProducts;
16516
+ declare const context$5_createProduct: typeof createProduct;
16534
16517
  declare const context$5_createProductWithInventory: typeof createProductWithInventory;
16518
+ declare const context$5_deleteProduct: typeof deleteProduct;
16519
+ declare const context$5_getProduct: typeof getProduct;
16520
+ declare const context$5_getProductBySlug: typeof getProductBySlug;
16535
16521
  declare const context$5_onProductCreated: typeof onProductCreated;
16536
16522
  declare const context$5_onProductDeleted: typeof onProductDeleted;
16537
16523
  declare const context$5_onProductUpdated: typeof onProductUpdated;
16524
+ declare const context$5_queryProducts: typeof queryProducts;
16525
+ declare const context$5_searchProducts: typeof searchProducts;
16526
+ declare const context$5_updateExtendedFields: typeof updateExtendedFields;
16527
+ declare const context$5_updateProduct: typeof updateProduct;
16538
16528
  declare const context$5_updateProductWithInventory: typeof updateProductWithInventory;
16539
16529
  declare namespace context$5 {
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 };
16530
+ 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_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, 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_BulkCreateProductsOptions as BulkCreateProductsOptions, 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_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, 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_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, 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_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, 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_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_CountProductsOptions as CountProductsOptions, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductOptions as CreateProductOptions, 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_GetProductBySlugOptions as GetProductBySlugOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductOptions as GetProductOptions, 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_SearchProductsOptions as SearchProductsOptions, 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_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProduct as UpdateProduct, type context$5_UpdateProductOptions as UpdateProductOptions, 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__publicBulkAddInfoSectionsToProductsByFilterType as _publicBulkAddInfoSectionsToProductsByFilterType, type context$5__publicBulkAddInfoSectionsToProductsType as _publicBulkAddInfoSectionsToProductsType, type context$5__publicBulkAddProductsToCategoriesByFilterType as _publicBulkAddProductsToCategoriesByFilterType, type context$5__publicBulkAdjustProductVariantsByFilterType as _publicBulkAdjustProductVariantsByFilterType, type context$5__publicBulkCreateProductsType as _publicBulkCreateProductsType, type context$5__publicBulkCreateProductsWithInventoryType as _publicBulkCreateProductsWithInventoryType, type context$5__publicBulkDeleteProductsByFilterType as _publicBulkDeleteProductsByFilterType, type context$5__publicBulkDeleteProductsType as _publicBulkDeleteProductsType, type context$5__publicBulkRemoveInfoSectionsFromProductsByFilterType as _publicBulkRemoveInfoSectionsFromProductsByFilterType, type context$5__publicBulkRemoveInfoSectionsFromProductsType as _publicBulkRemoveInfoSectionsFromProductsType, type context$5__publicBulkRemoveProductsFromCategoriesByFilterType as _publicBulkRemoveProductsFromCategoriesByFilterType, type context$5__publicBulkUpdateProductVariantsByFilterType as _publicBulkUpdateProductVariantsByFilterType, type context$5__publicBulkUpdateProductsByFilterType as _publicBulkUpdateProductsByFilterType, type context$5__publicBulkUpdateProductsType as _publicBulkUpdateProductsType, type context$5__publicBulkUpdateProductsWithInventoryType as _publicBulkUpdateProductsWithInventoryType, type context$5__publicCountProductsType as _publicCountProductsType, type context$5__publicCreateProductType as _publicCreateProductType, type context$5__publicCreateProductWithInventoryType as _publicCreateProductWithInventoryType, type context$5__publicDeleteProductType as _publicDeleteProductType, type context$5__publicGetProductBySlugType as _publicGetProductBySlugType, type context$5__publicGetProductType as _publicGetProductType, type context$5__publicOnProductCreatedType as _publicOnProductCreatedType, type context$5__publicOnProductDeletedType as _publicOnProductDeletedType, type context$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, type context$5__publicQueryProductsType as _publicQueryProductsType, type context$5__publicSearchProductsType as _publicSearchProductsType, type context$5__publicUpdateExtendedFieldsType as _publicUpdateExtendedFieldsType, type context$5__publicUpdateProductType as _publicUpdateProductType, type context$5__publicUpdateProductWithInventoryType as _publicUpdateProductWithInventoryType, context$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, context$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProducts as bulkCreateProducts, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkDeleteProducts as bulkDeleteProducts, context$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, context$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, context$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProducts as bulkUpdateProducts, context$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_countProducts as countProducts, context$5_createProduct as createProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_deleteProduct as deleteProduct, context$5_getProduct as getProduct, context$5_getProductBySlug as getProductBySlug, 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_queryProducts as queryProducts, context$5_searchProducts as searchProducts, context$5_updateExtendedFields as updateExtendedFields, context$5_updateProduct as updateProduct, context$5_updateProductWithInventory as updateProductWithInventory };
16541
16531
  }
16542
16532
 
16543
16533
  interface Provision {