@wix/stores 1.0.199 → 1.0.201
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/type-bundles/context.bundle.d.ts +156 -154
- package/type-bundles/index.bundle.d.ts +156 -154
- package/type-bundles/meta.bundle.d.ts +57 -50
|
@@ -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$
|
|
2650
|
-
declare function updateProduct$
|
|
2651
|
-
declare function deleteProduct$
|
|
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$
|
|
2669
|
-
declare function getProduct$
|
|
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$
|
|
2688
|
-
declare const createProduct: ReturnType<typeof createRESTModule$a<_publicCreateProductType>>;
|
|
2689
|
-
type _publicUpdateProductType = typeof updateProduct$
|
|
2690
|
-
declare const updateProduct: ReturnType<typeof createRESTModule$a<_publicUpdateProductType>>;
|
|
2691
|
-
type _publicDeleteProductType = typeof deleteProduct$
|
|
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$
|
|
2726
|
-
declare const queryProducts: ReturnType<typeof createRESTModule$a<_publicQueryProductsType>>;
|
|
2727
|
-
type _publicGetProductType = typeof getProduct$
|
|
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 index_d$a_GetCollectionBySlugResponse = GetCollectionBySlugResponse;
|
|
|
2808
2810
|
type index_d$a_GetCollectionBySlugResponseNonNullableFields = GetCollectionBySlugResponseNonNullableFields;
|
|
2809
2811
|
type index_d$a_GetCollectionRequest = GetCollectionRequest;
|
|
2810
2812
|
type index_d$a_GetCollectionResponse = GetCollectionResponse;
|
|
2811
|
-
type index_d$a_GetProductOptions = GetProductOptions;
|
|
2812
2813
|
type index_d$a_GetProductPlatformizedRequest = GetProductPlatformizedRequest;
|
|
2813
2814
|
type index_d$a_GetProductPlatformizedResponse = GetProductPlatformizedResponse;
|
|
2814
2815
|
type index_d$a_GetProductResponseNonNullableFields = GetProductResponseNonNullableFields;
|
|
@@ -2903,7 +2904,6 @@ type index_d$a_UpdateCollection = UpdateCollection;
|
|
|
2903
2904
|
type index_d$a_UpdateCollectionRequest = UpdateCollectionRequest;
|
|
2904
2905
|
type index_d$a_UpdateCollectionResponse = UpdateCollectionResponse;
|
|
2905
2906
|
type index_d$a_UpdateCollectionResponseNonNullableFields = UpdateCollectionResponseNonNullableFields;
|
|
2906
|
-
type index_d$a_UpdateProduct = UpdateProduct;
|
|
2907
2907
|
type index_d$a_UpdateProductPlatformizedRequest = UpdateProductPlatformizedRequest;
|
|
2908
2908
|
type index_d$a_UpdateProductPlatformizedResponse = UpdateProductPlatformizedResponse;
|
|
2909
2909
|
type index_d$a_UpdateVariantsRequest = UpdateVariantsRequest;
|
|
@@ -2927,13 +2927,10 @@ type index_d$a__publicAddProductsToCollectionType = _publicAddProductsToCollecti
|
|
|
2927
2927
|
type index_d$a__publicBulkAdjustProductPropertyType = _publicBulkAdjustProductPropertyType;
|
|
2928
2928
|
type index_d$a__publicBulkUpdateProductsPropertyType = _publicBulkUpdateProductsPropertyType;
|
|
2929
2929
|
type index_d$a__publicCreateCollectionType = _publicCreateCollectionType;
|
|
2930
|
-
type index_d$a__publicCreateProductType = _publicCreateProductType;
|
|
2931
2930
|
type index_d$a__publicDeleteCollectionType = _publicDeleteCollectionType;
|
|
2932
2931
|
type index_d$a__publicDeleteProductOptionsType = _publicDeleteProductOptionsType;
|
|
2933
|
-
type index_d$a__publicDeleteProductType = _publicDeleteProductType;
|
|
2934
2932
|
type index_d$a__publicGetCollectionBySlugType = _publicGetCollectionBySlugType;
|
|
2935
2933
|
type index_d$a__publicGetProductOptionsAvailabilityType = _publicGetProductOptionsAvailabilityType;
|
|
2936
|
-
type index_d$a__publicGetProductType = _publicGetProductType;
|
|
2937
2934
|
type index_d$a__publicGetStoreVariantType = _publicGetStoreVariantType;
|
|
2938
2935
|
type index_d$a__publicOnProductChangedType = _publicOnProductChangedType;
|
|
2939
2936
|
type index_d$a__publicOnProductCollectionChangedType = _publicOnProductCollectionChangedType;
|
|
@@ -2941,7 +2938,6 @@ type index_d$a__publicOnProductCollectionCreatedType = _publicOnProductCollectio
|
|
|
2941
2938
|
type index_d$a__publicOnProductCollectionDeletedType = _publicOnProductCollectionDeletedType;
|
|
2942
2939
|
type index_d$a__publicOnProductVariantsChangedType = _publicOnProductVariantsChangedType;
|
|
2943
2940
|
type index_d$a__publicQueryProductVariantsType = _publicQueryProductVariantsType;
|
|
2944
|
-
type index_d$a__publicQueryProductsType = _publicQueryProductsType;
|
|
2945
2941
|
type index_d$a__publicQueryStoreVariantsType = _publicQueryStoreVariantsType;
|
|
2946
2942
|
type index_d$a__publicRemoveBrandType = _publicRemoveBrandType;
|
|
2947
2943
|
type index_d$a__publicRemoveProductMediaFromChoicesType = _publicRemoveProductMediaFromChoicesType;
|
|
@@ -2950,7 +2946,6 @@ type index_d$a__publicRemoveProductsFromCollectionType = _publicRemoveProductsFr
|
|
|
2950
2946
|
type index_d$a__publicRemoveRibbonType = _publicRemoveRibbonType;
|
|
2951
2947
|
type index_d$a__publicResetAllProductVariantDataType = _publicResetAllProductVariantDataType;
|
|
2952
2948
|
type index_d$a__publicUpdateCollectionType = _publicUpdateCollectionType;
|
|
2953
|
-
type index_d$a__publicUpdateProductType = _publicUpdateProductType;
|
|
2954
2949
|
type index_d$a__publicUpdateProductVariantsType = _publicUpdateProductVariantsType;
|
|
2955
2950
|
declare const index_d$a_addProductMedia: typeof addProductMedia;
|
|
2956
2951
|
declare const index_d$a_addProductMediaToChoices: typeof addProductMediaToChoices;
|
|
@@ -2958,12 +2953,9 @@ declare const index_d$a_addProductsToCollection: typeof addProductsToCollection;
|
|
|
2958
2953
|
declare const index_d$a_bulkAdjustProductProperty: typeof bulkAdjustProductProperty;
|
|
2959
2954
|
declare const index_d$a_bulkUpdateProductsProperty: typeof bulkUpdateProductsProperty;
|
|
2960
2955
|
declare const index_d$a_createCollection: typeof createCollection;
|
|
2961
|
-
declare const index_d$a_createProduct: typeof createProduct;
|
|
2962
2956
|
declare const index_d$a_deleteCollection: typeof deleteCollection;
|
|
2963
|
-
declare const index_d$a_deleteProduct: typeof deleteProduct;
|
|
2964
2957
|
declare const index_d$a_deleteProductOptions: typeof deleteProductOptions;
|
|
2965
2958
|
declare const index_d$a_getCollectionBySlug: typeof getCollectionBySlug;
|
|
2966
|
-
declare const index_d$a_getProduct: typeof getProduct;
|
|
2967
2959
|
declare const index_d$a_getProductOptionsAvailability: typeof getProductOptionsAvailability;
|
|
2968
2960
|
declare const index_d$a_getStoreVariant: typeof getStoreVariant;
|
|
2969
2961
|
declare const index_d$a_onProductChanged: typeof onProductChanged;
|
|
@@ -2972,7 +2964,6 @@ declare const index_d$a_onProductCollectionCreated: typeof onProductCollectionCr
|
|
|
2972
2964
|
declare const index_d$a_onProductCollectionDeleted: typeof onProductCollectionDeleted;
|
|
2973
2965
|
declare const index_d$a_onProductVariantsChanged: typeof onProductVariantsChanged;
|
|
2974
2966
|
declare const index_d$a_queryProductVariants: typeof queryProductVariants;
|
|
2975
|
-
declare const index_d$a_queryProducts: typeof queryProducts;
|
|
2976
2967
|
declare const index_d$a_queryStoreVariants: typeof queryStoreVariants;
|
|
2977
2968
|
declare const index_d$a_removeBrand: typeof removeBrand;
|
|
2978
2969
|
declare const index_d$a_removeProductMedia: typeof removeProductMedia;
|
|
@@ -2981,10 +2972,9 @@ declare const index_d$a_removeProductsFromCollection: typeof removeProductsFromC
|
|
|
2981
2972
|
declare const index_d$a_removeRibbon: typeof removeRibbon;
|
|
2982
2973
|
declare const index_d$a_resetAllProductVariantData: typeof resetAllProductVariantData;
|
|
2983
2974
|
declare const index_d$a_updateCollection: typeof updateCollection;
|
|
2984
|
-
declare const index_d$a_updateProduct: typeof updateProduct;
|
|
2985
2975
|
declare const index_d$a_updateProductVariants: typeof updateProductVariants;
|
|
2986
2976
|
declare namespace index_d$a {
|
|
2987
|
-
export { type index_d$a_AddProductMediaRequest as AddProductMediaRequest, type index_d$a_AddProductMediaResponse as AddProductMediaResponse, type index_d$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type index_d$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type index_d$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type index_d$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type index_d$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type index_d$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type index_d$a_AggregateProductsRequest as AggregateProductsRequest, type index_d$a_AggregateProductsResponse as AggregateProductsResponse, type index_d$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type index_d$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type index_d$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type index_d$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type index_d$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type index_d$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type index_d$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type index_d$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type index_d$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type index_d$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type index_d$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type index_d$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type index_d$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type index_d$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 index_d$a_Collection as Collection, type index_d$a_CollectionChanged as CollectionChanged, type index_d$a_CollectionCreated as CollectionCreated, type index_d$a_CollectionDeleted as CollectionDeleted, type index_d$a_CostAndProfitData as CostAndProfitData, type index_d$a_CreateCollectionRequest as CreateCollectionRequest, type index_d$a_CreateCollectionResponse as CreateCollectionResponse, type index_d$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type index_d$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type index_d$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type index_d$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type index_d$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 index_d$a_CustomFieldsContainer as CustomFieldsContainer, type index_d$a_CustomTextField as CustomTextField, type index_d$a_DeleteCollectionRequest as DeleteCollectionRequest, type index_d$a_DeleteCollectionResponse as DeleteCollectionResponse, type index_d$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type index_d$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type index_d$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type index_d$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 index_d$a_FormattedPrice as FormattedPrice, type index_d$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type index_d$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type index_d$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type index_d$a_GetCollectionRequest as GetCollectionRequest, type index_d$a_GetCollectionResponse as GetCollectionResponse, type index_d$a_GetProductOptions as GetProductOptions, type index_d$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type index_d$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type index_d$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type index_d$a_GetProductsRequest as GetProductsRequest, type index_d$a_GetProductsResponse as GetProductsResponse, type index_d$a_GetStoreVariantRequest as GetStoreVariantRequest, type index_d$a_GetStoreVariantResponse as GetStoreVariantResponse, type index_d$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 index_d$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type index_d$a_MediaDataForWrite as MediaDataForWrite, type index_d$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type index_d$a_MediaItem as MediaItem, type index_d$a_MediaItemItemOneOf as MediaItemItemOneOf, index_d$a_MediaItemType as MediaItemType, type index_d$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type index_d$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type index_d$a_NumericPropertyRange as NumericPropertyRange, type index_d$a_OptionAndChoice as OptionAndChoice, index_d$a_OptionType as OptionType, type index_d$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type index_d$a_PagingWithBigLimit as PagingWithBigLimit, type index_d$a_PercentageData as PercentageData, type index_d$a_PlatformMedia as PlatformMedia, type index_d$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type index_d$a_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$a_PlatformQuery as PlatformQuery, type index_d$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type index_d$a_PriceData as PriceData, type index_d$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type index_d$a_ProductChanged as ProductChanged, type index_d$a_ProductChangedEnvelope as ProductChangedEnvelope, type index_d$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type index_d$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type index_d$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type index_d$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type index_d$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type index_d$a_ProductOption as ProductOption, type index_d$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type index_d$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type index_d$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type index_d$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type index_d$a_PropertyAdjustmentData as PropertyAdjustmentData, type index_d$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type index_d$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type index_d$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type index_d$a_QueryCollectionsRequest as QueryCollectionsRequest, type index_d$a_QueryCollectionsResponse as QueryCollectionsResponse, type index_d$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type index_d$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type index_d$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type index_d$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type index_d$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type index_d$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type index_d$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type index_d$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type index_d$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type index_d$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type index_d$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type index_d$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type index_d$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type index_d$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type index_d$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type index_d$a_ReCloneStoreRequest as ReCloneStoreRequest, type index_d$a_ReCloneStoreResponse as ReCloneStoreResponse, type index_d$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type index_d$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type index_d$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type index_d$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type index_d$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type index_d$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type index_d$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type index_d$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type index_d$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type index_d$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type index_d$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type index_d$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type index_d$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type index_d$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type index_d$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type index_d$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type index_d$a_SetValue as SetValue, type index_d$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type index_d$a_Stock as Stock, type index_d$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type index_d$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type index_d$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type index_d$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type index_d$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type index_d$a_UpdateCollection as UpdateCollection, type index_d$a_UpdateCollectionRequest as UpdateCollectionRequest, type index_d$a_UpdateCollectionResponse as UpdateCollectionResponse, type index_d$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type index_d$a_UpdateProduct as UpdateProduct, type index_d$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type index_d$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type index_d$a_UpdateVariantsRequest as UpdateVariantsRequest, type index_d$a_UpdateVariantsResponse as UpdateVariantsResponse, type index_d$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type index_d$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type index_d$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type index_d$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type index_d$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type index_d$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type index_d$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type index_d$a_VariantChanged as VariantChanged, type index_d$a_VariantData as VariantData, type index_d$a_VariantDataWithNoStock as VariantDataWithNoStock, type index_d$a_VariantOverride as VariantOverride, type index_d$a_VariantStock as VariantStock, type index_d$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type index_d$a__publicAddProductMediaToChoicesType as _publicAddProductMediaToChoicesType, type index_d$a__publicAddProductMediaType as _publicAddProductMediaType, type index_d$a__publicAddProductsToCollectionType as _publicAddProductsToCollectionType, type index_d$a__publicBulkAdjustProductPropertyType as _publicBulkAdjustProductPropertyType, type index_d$a__publicBulkUpdateProductsPropertyType as _publicBulkUpdateProductsPropertyType, type index_d$a__publicCreateCollectionType as _publicCreateCollectionType, type index_d$a__publicCreateProductType as _publicCreateProductType, type index_d$a__publicDeleteCollectionType as _publicDeleteCollectionType, type index_d$a__publicDeleteProductOptionsType as _publicDeleteProductOptionsType, type index_d$a__publicDeleteProductType as _publicDeleteProductType, type index_d$a__publicGetCollectionBySlugType as _publicGetCollectionBySlugType, type index_d$a__publicGetProductOptionsAvailabilityType as _publicGetProductOptionsAvailabilityType, type index_d$a__publicGetProductType as _publicGetProductType, type index_d$a__publicGetStoreVariantType as _publicGetStoreVariantType, type index_d$a__publicOnProductChangedType as _publicOnProductChangedType, type index_d$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type index_d$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type index_d$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type index_d$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, type index_d$a__publicQueryProductVariantsType as _publicQueryProductVariantsType, type index_d$a__publicQueryProductsType as _publicQueryProductsType, type index_d$a__publicQueryStoreVariantsType as _publicQueryStoreVariantsType, type index_d$a__publicRemoveBrandType as _publicRemoveBrandType, type index_d$a__publicRemoveProductMediaFromChoicesType as _publicRemoveProductMediaFromChoicesType, type index_d$a__publicRemoveProductMediaType as _publicRemoveProductMediaType, type index_d$a__publicRemoveProductsFromCollectionType as _publicRemoveProductsFromCollectionType, type index_d$a__publicRemoveRibbonType as _publicRemoveRibbonType, type index_d$a__publicResetAllProductVariantDataType as _publicResetAllProductVariantDataType, type index_d$a__publicUpdateCollectionType as _publicUpdateCollectionType, type index_d$a__publicUpdateProductType as _publicUpdateProductType, type index_d$a__publicUpdateProductVariantsType as _publicUpdateProductVariantsType, index_d$a_addProductMedia as addProductMedia, index_d$a_addProductMediaToChoices as addProductMediaToChoices, index_d$a_addProductsToCollection as addProductsToCollection, index_d$a_bulkAdjustProductProperty as bulkAdjustProductProperty, index_d$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, index_d$a_createCollection as createCollection, index_d$a_createProduct as createProduct, index_d$a_deleteCollection as deleteCollection, index_d$a_deleteProduct as deleteProduct, index_d$a_deleteProductOptions as deleteProductOptions, index_d$a_getCollectionBySlug as getCollectionBySlug, index_d$a_getProduct as getProduct, index_d$a_getProductOptionsAvailability as getProductOptionsAvailability, index_d$a_getStoreVariant as getStoreVariant, index_d$a_onProductChanged as onProductChanged, index_d$a_onProductCollectionChanged as onProductCollectionChanged, index_d$a_onProductCollectionCreated as onProductCollectionCreated, index_d$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, index_d$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, index_d$a_queryProductVariants as queryProductVariants, index_d$a_queryProducts as queryProducts, index_d$a_queryStoreVariants as queryStoreVariants, index_d$a_removeBrand as removeBrand, index_d$a_removeProductMedia as removeProductMedia, index_d$a_removeProductMediaFromChoices as removeProductMediaFromChoices, index_d$a_removeProductsFromCollection as removeProductsFromCollection, index_d$a_removeRibbon as removeRibbon, index_d$a_resetAllProductVariantData as resetAllProductVariantData, index_d$a_updateCollection as updateCollection, index_d$a_updateProduct as updateProduct, index_d$a_updateProductVariants as updateProductVariants };
|
|
2977
|
+
export { type index_d$a_AddProductMediaRequest as AddProductMediaRequest, type index_d$a_AddProductMediaResponse as AddProductMediaResponse, type index_d$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type index_d$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type index_d$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type index_d$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type index_d$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type index_d$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type index_d$a_AggregateProductsRequest as AggregateProductsRequest, type index_d$a_AggregateProductsResponse as AggregateProductsResponse, type index_d$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type index_d$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type index_d$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type index_d$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type index_d$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type index_d$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type index_d$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type index_d$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type index_d$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type index_d$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type index_d$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type index_d$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type index_d$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type index_d$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 index_d$a_Collection as Collection, type index_d$a_CollectionChanged as CollectionChanged, type index_d$a_CollectionCreated as CollectionCreated, type index_d$a_CollectionDeleted as CollectionDeleted, type index_d$a_CostAndProfitData as CostAndProfitData, type index_d$a_CreateCollectionRequest as CreateCollectionRequest, type index_d$a_CreateCollectionResponse as CreateCollectionResponse, type index_d$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type index_d$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type index_d$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type index_d$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type index_d$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 index_d$a_CustomFieldsContainer as CustomFieldsContainer, type index_d$a_CustomTextField as CustomTextField, type index_d$a_DeleteCollectionRequest as DeleteCollectionRequest, type index_d$a_DeleteCollectionResponse as DeleteCollectionResponse, type index_d$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type index_d$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type index_d$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type index_d$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 index_d$a_FormattedPrice as FormattedPrice, type index_d$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type index_d$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type index_d$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type index_d$a_GetCollectionRequest as GetCollectionRequest, type index_d$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type index_d$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type index_d$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type index_d$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type index_d$a_GetProductsRequest as GetProductsRequest, type index_d$a_GetProductsResponse as GetProductsResponse, type index_d$a_GetStoreVariantRequest as GetStoreVariantRequest, type index_d$a_GetStoreVariantResponse as GetStoreVariantResponse, type index_d$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 index_d$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type index_d$a_MediaDataForWrite as MediaDataForWrite, type index_d$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type index_d$a_MediaItem as MediaItem, type index_d$a_MediaItemItemOneOf as MediaItemItemOneOf, index_d$a_MediaItemType as MediaItemType, type index_d$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type index_d$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type index_d$a_NumericPropertyRange as NumericPropertyRange, type index_d$a_OptionAndChoice as OptionAndChoice, index_d$a_OptionType as OptionType, type index_d$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type index_d$a_PagingWithBigLimit as PagingWithBigLimit, type index_d$a_PercentageData as PercentageData, type index_d$a_PlatformMedia as PlatformMedia, type index_d$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type index_d$a_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$a_PlatformQuery as PlatformQuery, type index_d$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type index_d$a_PriceData as PriceData, type index_d$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type index_d$a_ProductChanged as ProductChanged, type index_d$a_ProductChangedEnvelope as ProductChangedEnvelope, type index_d$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type index_d$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type index_d$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type index_d$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type index_d$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type index_d$a_ProductOption as ProductOption, type index_d$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type index_d$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type index_d$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type index_d$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type index_d$a_PropertyAdjustmentData as PropertyAdjustmentData, type index_d$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type index_d$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type index_d$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type index_d$a_QueryCollectionsRequest as QueryCollectionsRequest, type index_d$a_QueryCollectionsResponse as QueryCollectionsResponse, type index_d$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type index_d$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type index_d$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type index_d$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type index_d$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type index_d$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type index_d$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type index_d$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type index_d$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type index_d$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type index_d$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type index_d$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type index_d$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type index_d$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type index_d$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type index_d$a_ReCloneStoreRequest as ReCloneStoreRequest, type index_d$a_ReCloneStoreResponse as ReCloneStoreResponse, type index_d$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type index_d$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type index_d$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type index_d$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type index_d$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type index_d$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type index_d$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type index_d$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type index_d$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type index_d$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type index_d$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type index_d$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type index_d$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type index_d$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type index_d$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type index_d$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type index_d$a_SetValue as SetValue, type index_d$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type index_d$a_Stock as Stock, type index_d$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type index_d$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type index_d$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type index_d$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type index_d$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type index_d$a_UpdateCollection as UpdateCollection, type index_d$a_UpdateCollectionRequest as UpdateCollectionRequest, type index_d$a_UpdateCollectionResponse as UpdateCollectionResponse, type index_d$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type UpdateProduct$1 as UpdateProduct, type index_d$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type index_d$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type index_d$a_UpdateVariantsRequest as UpdateVariantsRequest, type index_d$a_UpdateVariantsResponse as UpdateVariantsResponse, type index_d$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type index_d$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type index_d$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type index_d$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type index_d$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type index_d$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type index_d$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type index_d$a_VariantChanged as VariantChanged, type index_d$a_VariantData as VariantData, type index_d$a_VariantDataWithNoStock as VariantDataWithNoStock, type index_d$a_VariantOverride as VariantOverride, type index_d$a_VariantStock as VariantStock, type index_d$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type index_d$a__publicAddProductMediaToChoicesType as _publicAddProductMediaToChoicesType, type index_d$a__publicAddProductMediaType as _publicAddProductMediaType, type index_d$a__publicAddProductsToCollectionType as _publicAddProductsToCollectionType, type index_d$a__publicBulkAdjustProductPropertyType as _publicBulkAdjustProductPropertyType, type index_d$a__publicBulkUpdateProductsPropertyType as _publicBulkUpdateProductsPropertyType, type index_d$a__publicCreateCollectionType as _publicCreateCollectionType, type _publicCreateProductType$1 as _publicCreateProductType, type index_d$a__publicDeleteCollectionType as _publicDeleteCollectionType, type index_d$a__publicDeleteProductOptionsType as _publicDeleteProductOptionsType, type _publicDeleteProductType$1 as _publicDeleteProductType, type index_d$a__publicGetCollectionBySlugType as _publicGetCollectionBySlugType, type index_d$a__publicGetProductOptionsAvailabilityType as _publicGetProductOptionsAvailabilityType, type _publicGetProductType$1 as _publicGetProductType, type index_d$a__publicGetStoreVariantType as _publicGetStoreVariantType, type index_d$a__publicOnProductChangedType as _publicOnProductChangedType, type index_d$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type index_d$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type index_d$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type index_d$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, type index_d$a__publicQueryProductVariantsType as _publicQueryProductVariantsType, type _publicQueryProductsType$1 as _publicQueryProductsType, type index_d$a__publicQueryStoreVariantsType as _publicQueryStoreVariantsType, type index_d$a__publicRemoveBrandType as _publicRemoveBrandType, type index_d$a__publicRemoveProductMediaFromChoicesType as _publicRemoveProductMediaFromChoicesType, type index_d$a__publicRemoveProductMediaType as _publicRemoveProductMediaType, type index_d$a__publicRemoveProductsFromCollectionType as _publicRemoveProductsFromCollectionType, type index_d$a__publicRemoveRibbonType as _publicRemoveRibbonType, type index_d$a__publicResetAllProductVariantDataType as _publicResetAllProductVariantDataType, type index_d$a__publicUpdateCollectionType as _publicUpdateCollectionType, type _publicUpdateProductType$1 as _publicUpdateProductType, type index_d$a__publicUpdateProductVariantsType as _publicUpdateProductVariantsType, index_d$a_addProductMedia as addProductMedia, index_d$a_addProductMediaToChoices as addProductMediaToChoices, index_d$a_addProductsToCollection as addProductsToCollection, index_d$a_bulkAdjustProductProperty as bulkAdjustProductProperty, index_d$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, index_d$a_createCollection as createCollection, createProduct$2 as createProduct, index_d$a_deleteCollection as deleteCollection, deleteProduct$2 as deleteProduct, index_d$a_deleteProductOptions as deleteProductOptions, index_d$a_getCollectionBySlug as getCollectionBySlug, getProduct$2 as getProduct, index_d$a_getProductOptionsAvailability as getProductOptionsAvailability, index_d$a_getStoreVariant as getStoreVariant, index_d$a_onProductChanged as onProductChanged, index_d$a_onProductCollectionChanged as onProductCollectionChanged, index_d$a_onProductCollectionCreated as onProductCollectionCreated, index_d$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, index_d$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, index_d$a_queryProductVariants as queryProductVariants, queryProducts$2 as queryProducts, index_d$a_queryStoreVariants as queryStoreVariants, index_d$a_removeBrand as removeBrand, index_d$a_removeProductMedia as removeProductMedia, index_d$a_removeProductMediaFromChoices as removeProductMediaFromChoices, index_d$a_removeProductsFromCollection as removeProductsFromCollection, index_d$a_removeRibbon as removeRibbon, index_d$a_resetAllProductVariantData as resetAllProductVariantData, index_d$a_updateCollection as updateCollection, updateProduct$2 as updateProduct, index_d$a_updateProductVariants as updateProductVariants };
|
|
2988
2978
|
}
|
|
2989
2979
|
|
|
2990
2980
|
/**
|
|
@@ -8133,7 +8123,7 @@ interface SearchInventoryItemsResponse {
|
|
|
8133
8123
|
aggregationData?: AggregationData$1;
|
|
8134
8124
|
}
|
|
8135
8125
|
interface CursorPagingMetadata$3 {
|
|
8136
|
-
/** Number of items returned in
|
|
8126
|
+
/** Number of items returned in current page. */
|
|
8137
8127
|
count?: number | null;
|
|
8138
8128
|
/** Cursor strings that point to the next page, previous page, or both. */
|
|
8139
8129
|
cursors?: Cursors$3;
|
|
@@ -11881,6 +11871,12 @@ interface ProductWithInventory extends ProductWithInventoryTypedPropertiesOneOf
|
|
|
11881
11871
|
* When passing `productType: PHYSICAL`, you must also pass `physicalProperties`.
|
|
11882
11872
|
*/
|
|
11883
11873
|
productType?: ProductType;
|
|
11874
|
+
/**
|
|
11875
|
+
* A unique human-friendly identifier for the product.
|
|
11876
|
+
* Unlike the product ID, the handle can be set by the user to ensure consistency across multiple platforms.
|
|
11877
|
+
* In case handle wasn't given, the handle will be automatically generated.
|
|
11878
|
+
*/
|
|
11879
|
+
handle?: string | null;
|
|
11884
11880
|
/**
|
|
11885
11881
|
* Product variants.
|
|
11886
11882
|
*
|
|
@@ -15187,7 +15183,7 @@ interface ProductDeletedEnvelope {
|
|
|
15187
15183
|
entity: V3Product;
|
|
15188
15184
|
metadata: EventMetadata$1;
|
|
15189
15185
|
}
|
|
15190
|
-
interface
|
|
15186
|
+
interface CreateProductOptions {
|
|
15191
15187
|
/** Fields to include in the response. */
|
|
15192
15188
|
fields?: SingleEntityOpsRequestedFields[];
|
|
15193
15189
|
}
|
|
@@ -15201,7 +15197,7 @@ interface CreateProductWithInventoryOptions {
|
|
|
15201
15197
|
/** Fields to include in the response. */
|
|
15202
15198
|
fields?: SingleEntityOpsRequestedFields[];
|
|
15203
15199
|
}
|
|
15204
|
-
interface
|
|
15200
|
+
interface UpdateProduct {
|
|
15205
15201
|
/**
|
|
15206
15202
|
* Physical properties.
|
|
15207
15203
|
*
|
|
@@ -15404,7 +15400,7 @@ interface CatalogUpdateProduct {
|
|
|
15404
15400
|
*/
|
|
15405
15401
|
variantSummary?: VariantSummary;
|
|
15406
15402
|
}
|
|
15407
|
-
interface
|
|
15403
|
+
interface UpdateProductOptions {
|
|
15408
15404
|
/** Fields to include in the response. */
|
|
15409
15405
|
fields?: SingleEntityOpsRequestedFields[];
|
|
15410
15406
|
}
|
|
@@ -15509,6 +15505,12 @@ interface UpdateProductWithInventoryProduct {
|
|
|
15509
15505
|
* When passing `productType: PHYSICAL`, you must also pass `physicalProperties`.
|
|
15510
15506
|
*/
|
|
15511
15507
|
productType?: ProductType;
|
|
15508
|
+
/**
|
|
15509
|
+
* A unique human-friendly identifier for the product.
|
|
15510
|
+
* Unlike the product ID, the handle can be set by the user to ensure consistency across multiple platforms.
|
|
15511
|
+
* In case handle wasn't given, the handle will be automatically generated.
|
|
15512
|
+
*/
|
|
15513
|
+
handle?: string | null;
|
|
15512
15514
|
/**
|
|
15513
15515
|
* Product variants.
|
|
15514
15516
|
*
|
|
@@ -15534,7 +15536,7 @@ interface UpdateProductWithInventoryOptions {
|
|
|
15534
15536
|
/** Fields to include in the response. */
|
|
15535
15537
|
fields?: SingleEntityOpsRequestedFields[];
|
|
15536
15538
|
}
|
|
15537
|
-
interface
|
|
15539
|
+
interface BulkCreateProductsOptions {
|
|
15538
15540
|
/**
|
|
15539
15541
|
* Whether to return the full product entities in the response.
|
|
15540
15542
|
*
|
|
@@ -15554,7 +15556,7 @@ interface BulkCreateProductsWithInventoryOptions {
|
|
|
15554
15556
|
/** Fields to include in the response. */
|
|
15555
15557
|
fields?: RequestedFields$1[];
|
|
15556
15558
|
}
|
|
15557
|
-
interface
|
|
15559
|
+
interface BulkUpdateProductsOptions {
|
|
15558
15560
|
/**
|
|
15559
15561
|
* Whether to return the full product entities in the response.
|
|
15560
15562
|
*
|
|
@@ -15574,7 +15576,7 @@ interface BulkUpdateProductsWithInventoryOptions {
|
|
|
15574
15576
|
/** Fields to include in the response. */
|
|
15575
15577
|
fields?: RequestedFields$1[];
|
|
15576
15578
|
}
|
|
15577
|
-
interface
|
|
15579
|
+
interface BulkUpdateProductsByFilterOptions {
|
|
15578
15580
|
/** Filter object. */
|
|
15579
15581
|
filter?: Record<string, any> | null;
|
|
15580
15582
|
/** Product to update. */
|
|
@@ -15582,25 +15584,25 @@ interface CatalogBulkUpdateProductsByFilterOptions {
|
|
|
15582
15584
|
/** Free text to match in searchable fields. */
|
|
15583
15585
|
search?: WixCommonSearchDetails;
|
|
15584
15586
|
}
|
|
15585
|
-
interface
|
|
15587
|
+
interface UpdateExtendedFieldsOptions {
|
|
15586
15588
|
/** Data to update. */
|
|
15587
15589
|
namespaceData: Record<string, any> | null;
|
|
15588
15590
|
/** Fields to include in the response. */
|
|
15589
15591
|
fields?: SingleEntityOpsRequestedFields[];
|
|
15590
15592
|
}
|
|
15591
|
-
interface
|
|
15593
|
+
interface BulkDeleteProductsByFilterOptions {
|
|
15592
15594
|
/** Free text to match in searchable fields. */
|
|
15593
15595
|
search?: WixCommonSearchDetails;
|
|
15594
15596
|
}
|
|
15595
|
-
interface
|
|
15597
|
+
interface GetProductOptions {
|
|
15596
15598
|
/** Fields to include in the response. */
|
|
15597
15599
|
fields?: SingleEntityOpsRequestedFields[];
|
|
15598
15600
|
}
|
|
15599
|
-
interface
|
|
15601
|
+
interface GetProductBySlugOptions {
|
|
15600
15602
|
/** Fields to include in the response. */
|
|
15601
15603
|
fields?: SingleEntityOpsRequestedFields[];
|
|
15602
15604
|
}
|
|
15603
|
-
interface
|
|
15605
|
+
interface SearchProductsOptions {
|
|
15604
15606
|
/** Search options. */
|
|
15605
15607
|
search?: CommonCursorSearch;
|
|
15606
15608
|
/** Fields to include in the response. */
|
|
@@ -15687,7 +15689,7 @@ interface ProductsQueryBuilder {
|
|
|
15687
15689
|
/** @documentationMaturity preview */
|
|
15688
15690
|
find: () => Promise<ProductsQueryResult>;
|
|
15689
15691
|
}
|
|
15690
|
-
interface
|
|
15692
|
+
interface CountProductsOptions {
|
|
15691
15693
|
/** Filter object. */
|
|
15692
15694
|
filter?: Record<string, any> | null;
|
|
15693
15695
|
/** Free text to match in searchable fields. */
|
|
@@ -15728,13 +15730,13 @@ interface BulkAdjustProductVariantsByFilterOptions {
|
|
|
15728
15730
|
/** Free text to match in searchable fields. */
|
|
15729
15731
|
search?: WixCommonSearchDetails;
|
|
15730
15732
|
}
|
|
15731
|
-
interface
|
|
15733
|
+
interface BulkAddInfoSectionsToProductsByFilterOptions {
|
|
15732
15734
|
/** IDs of the info sections to add. */
|
|
15733
15735
|
infoSectionIds: string[];
|
|
15734
15736
|
/** Free text to match in searchable fields. */
|
|
15735
15737
|
search?: WixCommonSearchDetails;
|
|
15736
15738
|
}
|
|
15737
|
-
interface
|
|
15739
|
+
interface BulkAddInfoSectionsToProductsOptions {
|
|
15738
15740
|
/** List of IDs of info sections to add. */
|
|
15739
15741
|
infoSectionIds: string[];
|
|
15740
15742
|
/**
|
|
@@ -15746,13 +15748,13 @@ interface CatalogBulkAddInfoSectionsToProductsOptions {
|
|
|
15746
15748
|
/** Fields to include in the response. */
|
|
15747
15749
|
fields?: RequestedFields$1[];
|
|
15748
15750
|
}
|
|
15749
|
-
interface
|
|
15751
|
+
interface BulkRemoveInfoSectionsFromProductsByFilterOptions {
|
|
15750
15752
|
/** IDs of info sections to remove. */
|
|
15751
15753
|
infoSectionIds: string[];
|
|
15752
15754
|
/** Free text to match in searchable fields. */
|
|
15753
15755
|
search?: WixCommonSearchDetails;
|
|
15754
15756
|
}
|
|
15755
|
-
interface
|
|
15757
|
+
interface BulkRemoveInfoSectionsFromProductsOptions {
|
|
15756
15758
|
/** List of IDs of info sections to remove. */
|
|
15757
15759
|
infoSectionIds: string[];
|
|
15758
15760
|
/**
|
|
@@ -15781,30 +15783,30 @@ interface BulkRemoveProductsFromCategoriesByFilterOptions {
|
|
|
15781
15783
|
search?: WixCommonSearchDetails;
|
|
15782
15784
|
}
|
|
15783
15785
|
|
|
15784
|
-
declare function
|
|
15786
|
+
declare function createProduct$1(httpClient: HttpClient): (product: V3Product, options?: CreateProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
|
|
15785
15787
|
declare function createProductWithInventory$1(httpClient: HttpClient): (product: ProductWithInventory, options?: CreateProductWithInventoryOptions) => Promise<CreateProductWithInventoryResponse & CreateProductWithInventoryResponseNonNullableFields>;
|
|
15786
|
-
declare function
|
|
15788
|
+
declare function updateProduct$1(httpClient: HttpClient): (_id: string | null, product: UpdateProduct, options?: UpdateProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
|
|
15787
15789
|
declare function updateProductWithInventory$1(httpClient: HttpClient): (_id: string | null, product: UpdateProductWithInventoryProduct, options?: UpdateProductWithInventoryOptions) => Promise<UpdateProductWithInventoryResponse & UpdateProductWithInventoryResponseNonNullableFields>;
|
|
15788
|
-
declare function
|
|
15790
|
+
declare function bulkCreateProducts$1(httpClient: HttpClient): (products: V3Product[], options?: BulkCreateProductsOptions) => Promise<BulkCreateProductsResponse & BulkCreateProductsResponseNonNullableFields>;
|
|
15789
15791
|
declare function bulkCreateProductsWithInventory$1(httpClient: HttpClient): (products: ProductWithInventory[], options?: BulkCreateProductsWithInventoryOptions) => Promise<BulkCreateProductsWithInventoryResponse & BulkCreateProductsWithInventoryResponseNonNullableFields>;
|
|
15790
|
-
declare function
|
|
15792
|
+
declare function bulkUpdateProducts$1(httpClient: HttpClient): (products: V3MaskedProduct[], options?: BulkUpdateProductsOptions) => Promise<BulkUpdateProductsResponse & BulkUpdateProductsResponseNonNullableFields>;
|
|
15791
15793
|
declare function bulkUpdateProductsWithInventory$1(httpClient: HttpClient): (products: MaskedProductWithInventory[], options?: BulkUpdateProductsWithInventoryOptions) => Promise<BulkUpdateProductsWithInventoryResponse & BulkUpdateProductsWithInventoryResponseNonNullableFields>;
|
|
15792
|
-
declare function
|
|
15793
|
-
declare function
|
|
15794
|
-
declare function
|
|
15795
|
-
declare function
|
|
15796
|
-
declare function
|
|
15797
|
-
declare function
|
|
15798
|
-
declare function
|
|
15799
|
-
declare function
|
|
15800
|
-
declare function
|
|
15801
|
-
declare function
|
|
15794
|
+
declare function bulkUpdateProductsByFilter$1(httpClient: HttpClient): (options?: BulkUpdateProductsByFilterOptions) => Promise<V3BulkUpdateProductsByFilterResponse & V3BulkUpdateProductsByFilterResponseNonNullableFields>;
|
|
15795
|
+
declare function updateExtendedFields$1(httpClient: HttpClient): (productId: string, namespace: string, options?: UpdateExtendedFieldsOptions) => Promise<V3UpdateExtendedFieldsResponse & V3UpdateExtendedFieldsResponseNonNullableFields>;
|
|
15796
|
+
declare function deleteProduct$1(httpClient: HttpClient): (productId: string) => Promise<void>;
|
|
15797
|
+
declare function bulkDeleteProducts$1(httpClient: HttpClient): (productIds: string[]) => Promise<V3BulkDeleteProductsResponse & V3BulkDeleteProductsResponseNonNullableFields>;
|
|
15798
|
+
declare function bulkDeleteProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkDeleteProductsByFilterOptions) => Promise<V3BulkDeleteProductsByFilterResponse & V3BulkDeleteProductsByFilterResponseNonNullableFields>;
|
|
15799
|
+
declare function getProduct$1(httpClient: HttpClient): (productId: string, options?: GetProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
|
|
15800
|
+
declare function getProductBySlug$1(httpClient: HttpClient): (slug: string, options?: GetProductBySlugOptions) => Promise<V3GetProductBySlugResponse & V3GetProductBySlugResponseNonNullableFields>;
|
|
15801
|
+
declare function searchProducts$1(httpClient: HttpClient): (options?: SearchProductsOptions) => Promise<V3SearchProductsResponse & V3SearchProductsResponseNonNullableFields>;
|
|
15802
|
+
declare function queryProducts$1(httpClient: HttpClient): (options?: QueryProductsOptions) => ProductsQueryBuilder;
|
|
15803
|
+
declare function countProducts$1(httpClient: HttpClient): (options?: CountProductsOptions) => Promise<V3CountProductsResponse & V3CountProductsResponseNonNullableFields>;
|
|
15802
15804
|
declare function bulkUpdateProductVariantsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkUpdateProductVariantsByFilterOptions) => Promise<BulkUpdateProductVariantsByFilterResponse & BulkUpdateProductVariantsByFilterResponseNonNullableFields>;
|
|
15803
15805
|
declare function bulkAdjustProductVariantsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkAdjustProductVariantsByFilterOptions) => Promise<BulkAdjustProductVariantsByFilterResponse & BulkAdjustProductVariantsByFilterResponseNonNullableFields>;
|
|
15804
|
-
declare function
|
|
15805
|
-
declare function
|
|
15806
|
-
declare function
|
|
15807
|
-
declare function
|
|
15806
|
+
declare function bulkAddInfoSectionsToProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkAddInfoSectionsToProductsByFilterOptions) => Promise<V3BulkAddInfoSectionsToProductsByFilterResponse & V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields>;
|
|
15807
|
+
declare function bulkAddInfoSectionsToProducts$1(httpClient: HttpClient): (products: V3ProductIdWithRevision[], options?: BulkAddInfoSectionsToProductsOptions) => Promise<V3BulkAddInfoSectionsToProductsResponse & V3BulkAddInfoSectionsToProductsResponseNonNullableFields>;
|
|
15808
|
+
declare function bulkRemoveInfoSectionsFromProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkRemoveInfoSectionsFromProductsByFilterOptions) => Promise<V3BulkRemoveInfoSectionsFromProductsByFilterResponse & V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields>;
|
|
15809
|
+
declare function bulkRemoveInfoSectionsFromProducts$1(httpClient: HttpClient): (products: V3ProductIdWithRevision[], options?: BulkRemoveInfoSectionsFromProductsOptions) => Promise<V3BulkRemoveInfoSectionsFromProductsResponse & V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields>;
|
|
15808
15810
|
declare function bulkAddProductsToCategoriesByFilter$1(httpClient: HttpClient): (options?: BulkAddProductsToCategoriesByFilterOptions) => Promise<BulkAddProductsToCategoriesByFilterResponse & BulkAddProductsToCategoriesByFilterResponseNonNullableFields>;
|
|
15809
15811
|
declare function bulkRemoveProductsFromCategoriesByFilter$1(httpClient: HttpClient): (options?: BulkRemoveProductsFromCategoriesByFilterOptions) => Promise<BulkRemoveProductsFromCategoriesByFilterResponse & BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields>;
|
|
15810
15812
|
declare const onProductCreated$1: EventDefinition<ProductCreatedEnvelope, "wix.stores.catalog.v3.product_created">;
|
|
@@ -15815,54 +15817,54 @@ declare function createRESTModule$5<T extends RESTFunctionDescriptor>(descriptor
|
|
|
15815
15817
|
|
|
15816
15818
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
15817
15819
|
|
|
15818
|
-
type
|
|
15819
|
-
declare const
|
|
15820
|
+
type _publicCreateProductType = typeof createProduct$1;
|
|
15821
|
+
declare const createProduct: ReturnType<typeof createRESTModule$5<_publicCreateProductType>>;
|
|
15820
15822
|
type _publicCreateProductWithInventoryType = typeof createProductWithInventory$1;
|
|
15821
15823
|
declare const createProductWithInventory: ReturnType<typeof createRESTModule$5<_publicCreateProductWithInventoryType>>;
|
|
15822
|
-
type
|
|
15823
|
-
declare const
|
|
15824
|
+
type _publicUpdateProductType = typeof updateProduct$1;
|
|
15825
|
+
declare const updateProduct: ReturnType<typeof createRESTModule$5<_publicUpdateProductType>>;
|
|
15824
15826
|
type _publicUpdateProductWithInventoryType = typeof updateProductWithInventory$1;
|
|
15825
15827
|
declare const updateProductWithInventory: ReturnType<typeof createRESTModule$5<_publicUpdateProductWithInventoryType>>;
|
|
15826
|
-
type
|
|
15827
|
-
declare const
|
|
15828
|
+
type _publicBulkCreateProductsType = typeof bulkCreateProducts$1;
|
|
15829
|
+
declare const bulkCreateProducts: ReturnType<typeof createRESTModule$5<_publicBulkCreateProductsType>>;
|
|
15828
15830
|
type _publicBulkCreateProductsWithInventoryType = typeof bulkCreateProductsWithInventory$1;
|
|
15829
15831
|
declare const bulkCreateProductsWithInventory: ReturnType<typeof createRESTModule$5<_publicBulkCreateProductsWithInventoryType>>;
|
|
15830
|
-
type
|
|
15831
|
-
declare const
|
|
15832
|
+
type _publicBulkUpdateProductsType = typeof bulkUpdateProducts$1;
|
|
15833
|
+
declare const bulkUpdateProducts: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductsType>>;
|
|
15832
15834
|
type _publicBulkUpdateProductsWithInventoryType = typeof bulkUpdateProductsWithInventory$1;
|
|
15833
15835
|
declare const bulkUpdateProductsWithInventory: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductsWithInventoryType>>;
|
|
15834
|
-
type
|
|
15835
|
-
declare const
|
|
15836
|
-
type
|
|
15837
|
-
declare const
|
|
15838
|
-
type
|
|
15839
|
-
declare const
|
|
15840
|
-
type
|
|
15841
|
-
declare const
|
|
15842
|
-
type
|
|
15843
|
-
declare const
|
|
15844
|
-
type
|
|
15845
|
-
declare const
|
|
15846
|
-
type
|
|
15847
|
-
declare const
|
|
15848
|
-
type
|
|
15849
|
-
declare const
|
|
15850
|
-
type
|
|
15851
|
-
declare const
|
|
15852
|
-
type
|
|
15853
|
-
declare const
|
|
15836
|
+
type _publicBulkUpdateProductsByFilterType = typeof bulkUpdateProductsByFilter$1;
|
|
15837
|
+
declare const bulkUpdateProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductsByFilterType>>;
|
|
15838
|
+
type _publicUpdateExtendedFieldsType = typeof updateExtendedFields$1;
|
|
15839
|
+
declare const updateExtendedFields: ReturnType<typeof createRESTModule$5<_publicUpdateExtendedFieldsType>>;
|
|
15840
|
+
type _publicDeleteProductType = typeof deleteProduct$1;
|
|
15841
|
+
declare const deleteProduct: ReturnType<typeof createRESTModule$5<_publicDeleteProductType>>;
|
|
15842
|
+
type _publicBulkDeleteProductsType = typeof bulkDeleteProducts$1;
|
|
15843
|
+
declare const bulkDeleteProducts: ReturnType<typeof createRESTModule$5<_publicBulkDeleteProductsType>>;
|
|
15844
|
+
type _publicBulkDeleteProductsByFilterType = typeof bulkDeleteProductsByFilter$1;
|
|
15845
|
+
declare const bulkDeleteProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkDeleteProductsByFilterType>>;
|
|
15846
|
+
type _publicGetProductType = typeof getProduct$1;
|
|
15847
|
+
declare const getProduct: ReturnType<typeof createRESTModule$5<_publicGetProductType>>;
|
|
15848
|
+
type _publicGetProductBySlugType = typeof getProductBySlug$1;
|
|
15849
|
+
declare const getProductBySlug: ReturnType<typeof createRESTModule$5<_publicGetProductBySlugType>>;
|
|
15850
|
+
type _publicSearchProductsType = typeof searchProducts$1;
|
|
15851
|
+
declare const searchProducts: ReturnType<typeof createRESTModule$5<_publicSearchProductsType>>;
|
|
15852
|
+
type _publicQueryProductsType = typeof queryProducts$1;
|
|
15853
|
+
declare const queryProducts: ReturnType<typeof createRESTModule$5<_publicQueryProductsType>>;
|
|
15854
|
+
type _publicCountProductsType = typeof countProducts$1;
|
|
15855
|
+
declare const countProducts: ReturnType<typeof createRESTModule$5<_publicCountProductsType>>;
|
|
15854
15856
|
type _publicBulkUpdateProductVariantsByFilterType = typeof bulkUpdateProductVariantsByFilter$1;
|
|
15855
15857
|
declare const bulkUpdateProductVariantsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductVariantsByFilterType>>;
|
|
15856
15858
|
type _publicBulkAdjustProductVariantsByFilterType = typeof bulkAdjustProductVariantsByFilter$1;
|
|
15857
15859
|
declare const bulkAdjustProductVariantsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAdjustProductVariantsByFilterType>>;
|
|
15858
|
-
type
|
|
15859
|
-
declare const
|
|
15860
|
-
type
|
|
15861
|
-
declare const
|
|
15862
|
-
type
|
|
15863
|
-
declare const
|
|
15864
|
-
type
|
|
15865
|
-
declare const
|
|
15860
|
+
type _publicBulkAddInfoSectionsToProductsByFilterType = typeof bulkAddInfoSectionsToProductsByFilter$1;
|
|
15861
|
+
declare const bulkAddInfoSectionsToProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAddInfoSectionsToProductsByFilterType>>;
|
|
15862
|
+
type _publicBulkAddInfoSectionsToProductsType = typeof bulkAddInfoSectionsToProducts$1;
|
|
15863
|
+
declare const bulkAddInfoSectionsToProducts: ReturnType<typeof createRESTModule$5<_publicBulkAddInfoSectionsToProductsType>>;
|
|
15864
|
+
type _publicBulkRemoveInfoSectionsFromProductsByFilterType = typeof bulkRemoveInfoSectionsFromProductsByFilter$1;
|
|
15865
|
+
declare const bulkRemoveInfoSectionsFromProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkRemoveInfoSectionsFromProductsByFilterType>>;
|
|
15866
|
+
type _publicBulkRemoveInfoSectionsFromProductsType = typeof bulkRemoveInfoSectionsFromProducts$1;
|
|
15867
|
+
declare const bulkRemoveInfoSectionsFromProducts: ReturnType<typeof createRESTModule$5<_publicBulkRemoveInfoSectionsFromProductsType>>;
|
|
15866
15868
|
type _publicBulkAddProductsToCategoriesByFilterType = typeof bulkAddProductsToCategoriesByFilter$1;
|
|
15867
15869
|
declare const bulkAddProductsToCategoriesByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAddProductsToCategoriesByFilterType>>;
|
|
15868
15870
|
type _publicBulkRemoveProductsFromCategoriesByFilterType = typeof bulkRemoveProductsFromCategoriesByFilter$1;
|
|
@@ -15938,8 +15940,10 @@ type index_d$5_BorderColors = BorderColors;
|
|
|
15938
15940
|
type index_d$5_Brand = Brand;
|
|
15939
15941
|
type index_d$5_BreadCrumb = BreadCrumb;
|
|
15940
15942
|
type index_d$5_BreadcrumbsInfo = BreadcrumbsInfo;
|
|
15943
|
+
type index_d$5_BulkAddInfoSectionsToProductsByFilterOptions = BulkAddInfoSectionsToProductsByFilterOptions;
|
|
15941
15944
|
type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest = BulkAddInfoSectionsToProductsByFilterRequest;
|
|
15942
15945
|
type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse = BulkAddInfoSectionsToProductsByFilterResponse;
|
|
15946
|
+
type index_d$5_BulkAddInfoSectionsToProductsOptions = BulkAddInfoSectionsToProductsOptions;
|
|
15943
15947
|
type index_d$5_BulkAddInfoSectionsToProductsRequest = BulkAddInfoSectionsToProductsRequest;
|
|
15944
15948
|
type index_d$5_BulkAddInfoSectionsToProductsResponse = BulkAddInfoSectionsToProductsResponse;
|
|
15945
15949
|
type index_d$5_BulkAddProductsToCategoriesByFilterOptions = BulkAddProductsToCategoriesByFilterOptions;
|
|
@@ -15954,6 +15958,7 @@ type index_d$5_BulkAdjustProductVariantsByFilterResponse = BulkAdjustProductVari
|
|
|
15954
15958
|
type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields = BulkAdjustProductVariantsByFilterResponseNonNullableFields;
|
|
15955
15959
|
type index_d$5_BulkAdjustVariantsByFilterRequest = BulkAdjustVariantsByFilterRequest;
|
|
15956
15960
|
type index_d$5_BulkAdjustVariantsByFilterResponse = BulkAdjustVariantsByFilterResponse;
|
|
15961
|
+
type index_d$5_BulkCreateProductsOptions = BulkCreateProductsOptions;
|
|
15957
15962
|
type index_d$5_BulkCreateProductsRequest = BulkCreateProductsRequest;
|
|
15958
15963
|
type index_d$5_BulkCreateProductsResponse = BulkCreateProductsResponse;
|
|
15959
15964
|
type index_d$5_BulkCreateProductsResponseNonNullableFields = BulkCreateProductsResponseNonNullableFields;
|
|
@@ -15961,6 +15966,7 @@ type index_d$5_BulkCreateProductsWithInventoryOptions = BulkCreateProductsWithIn
|
|
|
15961
15966
|
type index_d$5_BulkCreateProductsWithInventoryRequest = BulkCreateProductsWithInventoryRequest;
|
|
15962
15967
|
type index_d$5_BulkCreateProductsWithInventoryResponse = BulkCreateProductsWithInventoryResponse;
|
|
15963
15968
|
type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields = BulkCreateProductsWithInventoryResponseNonNullableFields;
|
|
15969
|
+
type index_d$5_BulkDeleteProductsByFilterOptions = BulkDeleteProductsByFilterOptions;
|
|
15964
15970
|
type index_d$5_BulkDeleteProductsByFilterRequest = BulkDeleteProductsByFilterRequest;
|
|
15965
15971
|
type index_d$5_BulkDeleteProductsByFilterResponse = BulkDeleteProductsByFilterResponse;
|
|
15966
15972
|
type index_d$5_BulkDeleteProductsRequest = BulkDeleteProductsRequest;
|
|
@@ -15971,8 +15977,10 @@ type index_d$5_BulkInventoryItemResult = BulkInventoryItemResult;
|
|
|
15971
15977
|
type index_d$5_BulkInventoryItemResults = BulkInventoryItemResults;
|
|
15972
15978
|
type index_d$5_BulkProductResult = BulkProductResult;
|
|
15973
15979
|
type index_d$5_BulkProductResults = BulkProductResults;
|
|
15980
|
+
type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterOptions = BulkRemoveInfoSectionsFromProductsByFilterOptions;
|
|
15974
15981
|
type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest = BulkRemoveInfoSectionsFromProductsByFilterRequest;
|
|
15975
15982
|
type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse = BulkRemoveInfoSectionsFromProductsByFilterResponse;
|
|
15983
|
+
type index_d$5_BulkRemoveInfoSectionsFromProductsOptions = BulkRemoveInfoSectionsFromProductsOptions;
|
|
15976
15984
|
type index_d$5_BulkRemoveInfoSectionsFromProductsRequest = BulkRemoveInfoSectionsFromProductsRequest;
|
|
15977
15985
|
type index_d$5_BulkRemoveInfoSectionsFromProductsResponse = BulkRemoveInfoSectionsFromProductsResponse;
|
|
15978
15986
|
type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions = BulkRemoveProductsFromCategoriesByFilterOptions;
|
|
@@ -15983,8 +15991,10 @@ type index_d$5_BulkUpdateProductVariantsByFilterOptions = BulkUpdateProductVaria
|
|
|
15983
15991
|
type index_d$5_BulkUpdateProductVariantsByFilterRequest = BulkUpdateProductVariantsByFilterRequest;
|
|
15984
15992
|
type index_d$5_BulkUpdateProductVariantsByFilterResponse = BulkUpdateProductVariantsByFilterResponse;
|
|
15985
15993
|
type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields = BulkUpdateProductVariantsByFilterResponseNonNullableFields;
|
|
15994
|
+
type index_d$5_BulkUpdateProductsByFilterOptions = BulkUpdateProductsByFilterOptions;
|
|
15986
15995
|
type index_d$5_BulkUpdateProductsByFilterRequest = BulkUpdateProductsByFilterRequest;
|
|
15987
15996
|
type index_d$5_BulkUpdateProductsByFilterResponse = BulkUpdateProductsByFilterResponse;
|
|
15997
|
+
type index_d$5_BulkUpdateProductsOptions = BulkUpdateProductsOptions;
|
|
15988
15998
|
type index_d$5_BulkUpdateProductsRequest = BulkUpdateProductsRequest;
|
|
15989
15999
|
type index_d$5_BulkUpdateProductsResponse = BulkUpdateProductsResponse;
|
|
15990
16000
|
type index_d$5_BulkUpdateProductsResponseNonNullableFields = BulkUpdateProductsResponseNonNullableFields;
|
|
@@ -15996,22 +16006,6 @@ type index_d$5_BulkUpdateVariantsByFilterRequest = BulkUpdateVariantsByFilterReq
|
|
|
15996
16006
|
type index_d$5_BulkUpdateVariantsByFilterResponse = BulkUpdateVariantsByFilterResponse;
|
|
15997
16007
|
type index_d$5_BulletedListData = BulletedListData;
|
|
15998
16008
|
type index_d$5_ButtonData = ButtonData;
|
|
15999
|
-
type index_d$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions = CatalogBulkAddInfoSectionsToProductsByFilterOptions;
|
|
16000
|
-
type index_d$5_CatalogBulkAddInfoSectionsToProductsOptions = CatalogBulkAddInfoSectionsToProductsOptions;
|
|
16001
|
-
type index_d$5_CatalogBulkCreateProductsOptions = CatalogBulkCreateProductsOptions;
|
|
16002
|
-
type index_d$5_CatalogBulkDeleteProductsByFilterOptions = CatalogBulkDeleteProductsByFilterOptions;
|
|
16003
|
-
type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions = CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions;
|
|
16004
|
-
type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsOptions = CatalogBulkRemoveInfoSectionsFromProductsOptions;
|
|
16005
|
-
type index_d$5_CatalogBulkUpdateProductsByFilterOptions = CatalogBulkUpdateProductsByFilterOptions;
|
|
16006
|
-
type index_d$5_CatalogBulkUpdateProductsOptions = CatalogBulkUpdateProductsOptions;
|
|
16007
|
-
type index_d$5_CatalogCountProductsOptions = CatalogCountProductsOptions;
|
|
16008
|
-
type index_d$5_CatalogCreateProductOptions = CatalogCreateProductOptions;
|
|
16009
|
-
type index_d$5_CatalogGetProductBySlugOptions = CatalogGetProductBySlugOptions;
|
|
16010
|
-
type index_d$5_CatalogGetProductOptions = CatalogGetProductOptions;
|
|
16011
|
-
type index_d$5_CatalogSearchProductsOptions = CatalogSearchProductsOptions;
|
|
16012
|
-
type index_d$5_CatalogUpdateExtendedFieldsOptions = CatalogUpdateExtendedFieldsOptions;
|
|
16013
|
-
type index_d$5_CatalogUpdateProduct = CatalogUpdateProduct;
|
|
16014
|
-
type index_d$5_CatalogUpdateProductOptions = CatalogUpdateProductOptions;
|
|
16015
16009
|
type index_d$5_CatalogV3BulkProductResult = CatalogV3BulkProductResult;
|
|
16016
16010
|
type index_d$5_CategoryMoved = CategoryMoved;
|
|
16017
16011
|
type index_d$5_CellStyle = CellStyle;
|
|
@@ -16058,8 +16052,10 @@ type index_d$5_ConnectedOption = ConnectedOption;
|
|
|
16058
16052
|
type index_d$5_ConnectedOptionChoice = ConnectedOptionChoice;
|
|
16059
16053
|
type index_d$5_ConnectedOptionChoiceValueOneOf = ConnectedOptionChoiceValueOneOf;
|
|
16060
16054
|
type index_d$5_ConnectedOptionOptionSettingsOneOf = ConnectedOptionOptionSettingsOneOf;
|
|
16055
|
+
type index_d$5_CountProductsOptions = CountProductsOptions;
|
|
16061
16056
|
type index_d$5_CountProductsRequest = CountProductsRequest;
|
|
16062
16057
|
type index_d$5_CountProductsResponse = CountProductsResponse;
|
|
16058
|
+
type index_d$5_CreateProductOptions = CreateProductOptions;
|
|
16063
16059
|
type index_d$5_CreateProductRequest = CreateProductRequest;
|
|
16064
16060
|
type index_d$5_CreateProductResponse = CreateProductResponse;
|
|
16065
16061
|
type index_d$5_CreateProductResponseNonNullableFields = CreateProductResponseNonNullableFields;
|
|
@@ -16125,8 +16121,10 @@ type index_d$5_GIF = GIF;
|
|
|
16125
16121
|
type index_d$5_GIFData = GIFData;
|
|
16126
16122
|
type index_d$5_GalleryData = GalleryData;
|
|
16127
16123
|
type index_d$5_GalleryOptions = GalleryOptions;
|
|
16124
|
+
type index_d$5_GetProductBySlugOptions = GetProductBySlugOptions;
|
|
16128
16125
|
type index_d$5_GetProductBySlugRequest = GetProductBySlugRequest;
|
|
16129
16126
|
type index_d$5_GetProductBySlugResponse = GetProductBySlugResponse;
|
|
16127
|
+
type index_d$5_GetProductOptions = GetProductOptions;
|
|
16130
16128
|
type index_d$5_GetProductRequest = GetProductRequest;
|
|
16131
16129
|
type index_d$5_GetProductResponse = GetProductResponse;
|
|
16132
16130
|
type index_d$5_GetVariantsRequest = GetVariantsRequest;
|
|
@@ -16313,6 +16311,7 @@ type index_d$5_SearchDetails = SearchDetails;
|
|
|
16313
16311
|
type index_d$5_SearchDetailsMode = SearchDetailsMode;
|
|
16314
16312
|
declare const index_d$5_SearchDetailsMode: typeof SearchDetailsMode;
|
|
16315
16313
|
type index_d$5_SearchIndexingNotification = SearchIndexingNotification;
|
|
16314
|
+
type index_d$5_SearchProductsOptions = SearchProductsOptions;
|
|
16316
16315
|
type index_d$5_SearchProductsRequest = SearchProductsRequest;
|
|
16317
16316
|
type index_d$5_SearchProductsResponse = SearchProductsResponse;
|
|
16318
16317
|
type index_d$5_SecuredMedia = SecuredMedia;
|
|
@@ -16360,8 +16359,11 @@ type index_d$5_UpdateByFilterOperation = UpdateByFilterOperation;
|
|
|
16360
16359
|
type index_d$5_UpdateDocumentsEvent = UpdateDocumentsEvent;
|
|
16361
16360
|
type index_d$5_UpdateDocumentsEventOperationOneOf = UpdateDocumentsEventOperationOneOf;
|
|
16362
16361
|
type index_d$5_UpdateExistingOperation = UpdateExistingOperation;
|
|
16362
|
+
type index_d$5_UpdateExtendedFieldsOptions = UpdateExtendedFieldsOptions;
|
|
16363
16363
|
type index_d$5_UpdateExtendedFieldsRequest = UpdateExtendedFieldsRequest;
|
|
16364
16364
|
type index_d$5_UpdateExtendedFieldsResponse = UpdateExtendedFieldsResponse;
|
|
16365
|
+
type index_d$5_UpdateProduct = UpdateProduct;
|
|
16366
|
+
type index_d$5_UpdateProductOptions = UpdateProductOptions;
|
|
16365
16367
|
type index_d$5_UpdateProductRequest = UpdateProductRequest;
|
|
16366
16368
|
type index_d$5_UpdateProductResponse = UpdateProductResponse;
|
|
16367
16369
|
type index_d$5_UpdateProductResponseNonNullableFields = UpdateProductResponseNonNullableFields;
|
|
@@ -16478,66 +16480,66 @@ type index_d$5_WixCommonSearchDetails = WixCommonSearchDetails;
|
|
|
16478
16480
|
type index_d$5_WixCommonSortOrder = WixCommonSortOrder;
|
|
16479
16481
|
declare const index_d$5_WixCommonSortOrder: typeof WixCommonSortOrder;
|
|
16480
16482
|
type index_d$5_WixCommonSorting = WixCommonSorting;
|
|
16483
|
+
type index_d$5__publicBulkAddInfoSectionsToProductsByFilterType = _publicBulkAddInfoSectionsToProductsByFilterType;
|
|
16484
|
+
type index_d$5__publicBulkAddInfoSectionsToProductsType = _publicBulkAddInfoSectionsToProductsType;
|
|
16481
16485
|
type index_d$5__publicBulkAddProductsToCategoriesByFilterType = _publicBulkAddProductsToCategoriesByFilterType;
|
|
16482
16486
|
type index_d$5__publicBulkAdjustProductVariantsByFilterType = _publicBulkAdjustProductVariantsByFilterType;
|
|
16487
|
+
type index_d$5__publicBulkCreateProductsType = _publicBulkCreateProductsType;
|
|
16483
16488
|
type index_d$5__publicBulkCreateProductsWithInventoryType = _publicBulkCreateProductsWithInventoryType;
|
|
16489
|
+
type index_d$5__publicBulkDeleteProductsByFilterType = _publicBulkDeleteProductsByFilterType;
|
|
16490
|
+
type index_d$5__publicBulkDeleteProductsType = _publicBulkDeleteProductsType;
|
|
16491
|
+
type index_d$5__publicBulkRemoveInfoSectionsFromProductsByFilterType = _publicBulkRemoveInfoSectionsFromProductsByFilterType;
|
|
16492
|
+
type index_d$5__publicBulkRemoveInfoSectionsFromProductsType = _publicBulkRemoveInfoSectionsFromProductsType;
|
|
16484
16493
|
type index_d$5__publicBulkRemoveProductsFromCategoriesByFilterType = _publicBulkRemoveProductsFromCategoriesByFilterType;
|
|
16485
16494
|
type index_d$5__publicBulkUpdateProductVariantsByFilterType = _publicBulkUpdateProductVariantsByFilterType;
|
|
16495
|
+
type index_d$5__publicBulkUpdateProductsByFilterType = _publicBulkUpdateProductsByFilterType;
|
|
16496
|
+
type index_d$5__publicBulkUpdateProductsType = _publicBulkUpdateProductsType;
|
|
16486
16497
|
type index_d$5__publicBulkUpdateProductsWithInventoryType = _publicBulkUpdateProductsWithInventoryType;
|
|
16487
|
-
type index_d$
|
|
16488
|
-
type index_d$
|
|
16489
|
-
type index_d$5__publicCatalogBulkCreateProductsType = _publicCatalogBulkCreateProductsType;
|
|
16490
|
-
type index_d$5__publicCatalogBulkDeleteProductsByFilterType = _publicCatalogBulkDeleteProductsByFilterType;
|
|
16491
|
-
type index_d$5__publicCatalogBulkDeleteProductsType = _publicCatalogBulkDeleteProductsType;
|
|
16492
|
-
type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType = _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType;
|
|
16493
|
-
type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsType = _publicCatalogBulkRemoveInfoSectionsFromProductsType;
|
|
16494
|
-
type index_d$5__publicCatalogBulkUpdateProductsByFilterType = _publicCatalogBulkUpdateProductsByFilterType;
|
|
16495
|
-
type index_d$5__publicCatalogBulkUpdateProductsType = _publicCatalogBulkUpdateProductsType;
|
|
16496
|
-
type index_d$5__publicCatalogCountProductsType = _publicCatalogCountProductsType;
|
|
16497
|
-
type index_d$5__publicCatalogCreateProductType = _publicCatalogCreateProductType;
|
|
16498
|
-
type index_d$5__publicCatalogDeleteProductType = _publicCatalogDeleteProductType;
|
|
16499
|
-
type index_d$5__publicCatalogGetProductBySlugType = _publicCatalogGetProductBySlugType;
|
|
16500
|
-
type index_d$5__publicCatalogGetProductType = _publicCatalogGetProductType;
|
|
16501
|
-
type index_d$5__publicCatalogQueryProductsType = _publicCatalogQueryProductsType;
|
|
16502
|
-
type index_d$5__publicCatalogSearchProductsType = _publicCatalogSearchProductsType;
|
|
16503
|
-
type index_d$5__publicCatalogUpdateExtendedFieldsType = _publicCatalogUpdateExtendedFieldsType;
|
|
16504
|
-
type index_d$5__publicCatalogUpdateProductType = _publicCatalogUpdateProductType;
|
|
16498
|
+
type index_d$5__publicCountProductsType = _publicCountProductsType;
|
|
16499
|
+
type index_d$5__publicCreateProductType = _publicCreateProductType;
|
|
16505
16500
|
type index_d$5__publicCreateProductWithInventoryType = _publicCreateProductWithInventoryType;
|
|
16501
|
+
type index_d$5__publicDeleteProductType = _publicDeleteProductType;
|
|
16502
|
+
type index_d$5__publicGetProductBySlugType = _publicGetProductBySlugType;
|
|
16503
|
+
type index_d$5__publicGetProductType = _publicGetProductType;
|
|
16506
16504
|
type index_d$5__publicOnProductCreatedType = _publicOnProductCreatedType;
|
|
16507
16505
|
type index_d$5__publicOnProductDeletedType = _publicOnProductDeletedType;
|
|
16508
16506
|
type index_d$5__publicOnProductUpdatedType = _publicOnProductUpdatedType;
|
|
16507
|
+
type index_d$5__publicQueryProductsType = _publicQueryProductsType;
|
|
16508
|
+
type index_d$5__publicSearchProductsType = _publicSearchProductsType;
|
|
16509
|
+
type index_d$5__publicUpdateExtendedFieldsType = _publicUpdateExtendedFieldsType;
|
|
16510
|
+
type index_d$5__publicUpdateProductType = _publicUpdateProductType;
|
|
16509
16511
|
type index_d$5__publicUpdateProductWithInventoryType = _publicUpdateProductWithInventoryType;
|
|
16512
|
+
declare const index_d$5_bulkAddInfoSectionsToProducts: typeof bulkAddInfoSectionsToProducts;
|
|
16513
|
+
declare const index_d$5_bulkAddInfoSectionsToProductsByFilter: typeof bulkAddInfoSectionsToProductsByFilter;
|
|
16510
16514
|
declare const index_d$5_bulkAddProductsToCategoriesByFilter: typeof bulkAddProductsToCategoriesByFilter;
|
|
16511
16515
|
declare const index_d$5_bulkAdjustProductVariantsByFilter: typeof bulkAdjustProductVariantsByFilter;
|
|
16516
|
+
declare const index_d$5_bulkCreateProducts: typeof bulkCreateProducts;
|
|
16512
16517
|
declare const index_d$5_bulkCreateProductsWithInventory: typeof bulkCreateProductsWithInventory;
|
|
16518
|
+
declare const index_d$5_bulkDeleteProducts: typeof bulkDeleteProducts;
|
|
16519
|
+
declare const index_d$5_bulkDeleteProductsByFilter: typeof bulkDeleteProductsByFilter;
|
|
16520
|
+
declare const index_d$5_bulkRemoveInfoSectionsFromProducts: typeof bulkRemoveInfoSectionsFromProducts;
|
|
16521
|
+
declare const index_d$5_bulkRemoveInfoSectionsFromProductsByFilter: typeof bulkRemoveInfoSectionsFromProductsByFilter;
|
|
16513
16522
|
declare const index_d$5_bulkRemoveProductsFromCategoriesByFilter: typeof bulkRemoveProductsFromCategoriesByFilter;
|
|
16514
16523
|
declare const index_d$5_bulkUpdateProductVariantsByFilter: typeof bulkUpdateProductVariantsByFilter;
|
|
16524
|
+
declare const index_d$5_bulkUpdateProducts: typeof bulkUpdateProducts;
|
|
16525
|
+
declare const index_d$5_bulkUpdateProductsByFilter: typeof bulkUpdateProductsByFilter;
|
|
16515
16526
|
declare const index_d$5_bulkUpdateProductsWithInventory: typeof bulkUpdateProductsWithInventory;
|
|
16516
|
-
declare const index_d$
|
|
16517
|
-
declare const index_d$
|
|
16518
|
-
declare const index_d$5_catalogBulkCreateProducts: typeof catalogBulkCreateProducts;
|
|
16519
|
-
declare const index_d$5_catalogBulkDeleteProducts: typeof catalogBulkDeleteProducts;
|
|
16520
|
-
declare const index_d$5_catalogBulkDeleteProductsByFilter: typeof catalogBulkDeleteProductsByFilter;
|
|
16521
|
-
declare const index_d$5_catalogBulkRemoveInfoSectionsFromProducts: typeof catalogBulkRemoveInfoSectionsFromProducts;
|
|
16522
|
-
declare const index_d$5_catalogBulkRemoveInfoSectionsFromProductsByFilter: typeof catalogBulkRemoveInfoSectionsFromProductsByFilter;
|
|
16523
|
-
declare const index_d$5_catalogBulkUpdateProducts: typeof catalogBulkUpdateProducts;
|
|
16524
|
-
declare const index_d$5_catalogBulkUpdateProductsByFilter: typeof catalogBulkUpdateProductsByFilter;
|
|
16525
|
-
declare const index_d$5_catalogCountProducts: typeof catalogCountProducts;
|
|
16526
|
-
declare const index_d$5_catalogCreateProduct: typeof catalogCreateProduct;
|
|
16527
|
-
declare const index_d$5_catalogDeleteProduct: typeof catalogDeleteProduct;
|
|
16528
|
-
declare const index_d$5_catalogGetProduct: typeof catalogGetProduct;
|
|
16529
|
-
declare const index_d$5_catalogGetProductBySlug: typeof catalogGetProductBySlug;
|
|
16530
|
-
declare const index_d$5_catalogQueryProducts: typeof catalogQueryProducts;
|
|
16531
|
-
declare const index_d$5_catalogSearchProducts: typeof catalogSearchProducts;
|
|
16532
|
-
declare const index_d$5_catalogUpdateExtendedFields: typeof catalogUpdateExtendedFields;
|
|
16533
|
-
declare const index_d$5_catalogUpdateProduct: typeof catalogUpdateProduct;
|
|
16527
|
+
declare const index_d$5_countProducts: typeof countProducts;
|
|
16528
|
+
declare const index_d$5_createProduct: typeof createProduct;
|
|
16534
16529
|
declare const index_d$5_createProductWithInventory: typeof createProductWithInventory;
|
|
16530
|
+
declare const index_d$5_deleteProduct: typeof deleteProduct;
|
|
16531
|
+
declare const index_d$5_getProduct: typeof getProduct;
|
|
16532
|
+
declare const index_d$5_getProductBySlug: typeof getProductBySlug;
|
|
16535
16533
|
declare const index_d$5_onProductCreated: typeof onProductCreated;
|
|
16536
16534
|
declare const index_d$5_onProductDeleted: typeof onProductDeleted;
|
|
16537
16535
|
declare const index_d$5_onProductUpdated: typeof onProductUpdated;
|
|
16536
|
+
declare const index_d$5_queryProducts: typeof queryProducts;
|
|
16537
|
+
declare const index_d$5_searchProducts: typeof searchProducts;
|
|
16538
|
+
declare const index_d$5_updateExtendedFields: typeof updateExtendedFields;
|
|
16539
|
+
declare const index_d$5_updateProduct: typeof updateProduct;
|
|
16538
16540
|
declare const index_d$5_updateProductWithInventory: typeof updateProductWithInventory;
|
|
16539
16541
|
declare namespace index_d$5 {
|
|
16540
|
-
export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions as CatalogBulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_CatalogBulkAddInfoSectionsToProductsOptions as CatalogBulkAddInfoSectionsToProductsOptions, type index_d$5_CatalogBulkCreateProductsOptions as CatalogBulkCreateProductsOptions, type index_d$5_CatalogBulkDeleteProductsByFilterOptions as CatalogBulkDeleteProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions as CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsOptions as CatalogBulkRemoveInfoSectionsFromProductsOptions, type index_d$5_CatalogBulkUpdateProductsByFilterOptions as CatalogBulkUpdateProductsByFilterOptions, type index_d$5_CatalogBulkUpdateProductsOptions as CatalogBulkUpdateProductsOptions, type index_d$5_CatalogCountProductsOptions as CatalogCountProductsOptions, type index_d$5_CatalogCreateProductOptions as CatalogCreateProductOptions, type index_d$5_CatalogGetProductBySlugOptions as CatalogGetProductBySlugOptions, type index_d$5_CatalogGetProductOptions as CatalogGetProductOptions, type index_d$5_CatalogSearchProductsOptions as CatalogSearchProductsOptions, type index_d$5_CatalogUpdateExtendedFieldsOptions as CatalogUpdateExtendedFieldsOptions, type index_d$5_CatalogUpdateProduct as CatalogUpdateProduct, type index_d$5_CatalogUpdateProductOptions as CatalogUpdateProductOptions, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CategoryMoved as CategoryMoved, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_GetVariantsRequest as GetVariantsRequest, type index_d$5_GetVariantsResponse as GetVariantsResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemAddedToCategory as ItemAddedToCategory, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemReference as ItemReference, type index_d$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d$5_ItemStyle as ItemStyle, type index_d$5_ItemsAddedToCategory as ItemsAddedToCategory, type index_d$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_ParentCategory as ParentCategory, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$5_TreeReference as TreeReference, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, type index_d$5__publicBulkAddProductsToCategoriesByFilterType as _publicBulkAddProductsToCategoriesByFilterType, type index_d$5__publicBulkAdjustProductVariantsByFilterType as _publicBulkAdjustProductVariantsByFilterType, type index_d$5__publicBulkCreateProductsWithInventoryType as _publicBulkCreateProductsWithInventoryType, type index_d$5__publicBulkRemoveProductsFromCategoriesByFilterType as _publicBulkRemoveProductsFromCategoriesByFilterType, type index_d$5__publicBulkUpdateProductVariantsByFilterType as _publicBulkUpdateProductVariantsByFilterType, type index_d$5__publicBulkUpdateProductsWithInventoryType as _publicBulkUpdateProductsWithInventoryType, type index_d$5__publicCatalogBulkAddInfoSectionsToProductsByFilterType as _publicCatalogBulkAddInfoSectionsToProductsByFilterType, type index_d$5__publicCatalogBulkAddInfoSectionsToProductsType as _publicCatalogBulkAddInfoSectionsToProductsType, type index_d$5__publicCatalogBulkCreateProductsType as _publicCatalogBulkCreateProductsType, type index_d$5__publicCatalogBulkDeleteProductsByFilterType as _publicCatalogBulkDeleteProductsByFilterType, type index_d$5__publicCatalogBulkDeleteProductsType as _publicCatalogBulkDeleteProductsType, type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType as _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType, type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsType as _publicCatalogBulkRemoveInfoSectionsFromProductsType, type index_d$5__publicCatalogBulkUpdateProductsByFilterType as _publicCatalogBulkUpdateProductsByFilterType, type index_d$5__publicCatalogBulkUpdateProductsType as _publicCatalogBulkUpdateProductsType, type index_d$5__publicCatalogCountProductsType as _publicCatalogCountProductsType, type index_d$5__publicCatalogCreateProductType as _publicCatalogCreateProductType, type index_d$5__publicCatalogDeleteProductType as _publicCatalogDeleteProductType, type index_d$5__publicCatalogGetProductBySlugType as _publicCatalogGetProductBySlugType, type index_d$5__publicCatalogGetProductType as _publicCatalogGetProductType, type index_d$5__publicCatalogQueryProductsType as _publicCatalogQueryProductsType, type index_d$5__publicCatalogSearchProductsType as _publicCatalogSearchProductsType, type index_d$5__publicCatalogUpdateExtendedFieldsType as _publicCatalogUpdateExtendedFieldsType, type index_d$5__publicCatalogUpdateProductType as _publicCatalogUpdateProductType, type index_d$5__publicCreateProductWithInventoryType as _publicCreateProductWithInventoryType, type index_d$5__publicOnProductCreatedType as _publicOnProductCreatedType, type index_d$5__publicOnProductDeletedType as _publicOnProductDeletedType, type index_d$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, type index_d$5__publicUpdateProductWithInventoryType as _publicUpdateProductWithInventoryType, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_catalogBulkAddInfoSectionsToProducts as catalogBulkAddInfoSectionsToProducts, index_d$5_catalogBulkAddInfoSectionsToProductsByFilter as catalogBulkAddInfoSectionsToProductsByFilter, index_d$5_catalogBulkCreateProducts as catalogBulkCreateProducts, index_d$5_catalogBulkDeleteProducts as catalogBulkDeleteProducts, index_d$5_catalogBulkDeleteProductsByFilter as catalogBulkDeleteProductsByFilter, index_d$5_catalogBulkRemoveInfoSectionsFromProducts as catalogBulkRemoveInfoSectionsFromProducts, index_d$5_catalogBulkRemoveInfoSectionsFromProductsByFilter as catalogBulkRemoveInfoSectionsFromProductsByFilter, index_d$5_catalogBulkUpdateProducts as catalogBulkUpdateProducts, index_d$5_catalogBulkUpdateProductsByFilter as catalogBulkUpdateProductsByFilter, index_d$5_catalogCountProducts as catalogCountProducts, index_d$5_catalogCreateProduct as catalogCreateProduct, index_d$5_catalogDeleteProduct as catalogDeleteProduct, index_d$5_catalogGetProduct as catalogGetProduct, index_d$5_catalogGetProductBySlug as catalogGetProductBySlug, index_d$5_catalogQueryProducts as catalogQueryProducts, index_d$5_catalogSearchProducts as catalogSearchProducts, index_d$5_catalogUpdateExtendedFields as catalogUpdateExtendedFields, index_d$5_catalogUpdateProduct as catalogUpdateProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, index_d$5_updateProductWithInventory as updateProductWithInventory };
|
|
16542
|
+
export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CategoryMoved as CategoryMoved, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsOptions as CountProductsOptions, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductOptions as CreateProductOptions, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugOptions as GetProductBySlugOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductOptions as GetProductOptions, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_GetVariantsRequest as GetVariantsRequest, type index_d$5_GetVariantsResponse as GetVariantsResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemAddedToCategory as ItemAddedToCategory, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemReference as ItemReference, type index_d$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d$5_ItemStyle as ItemStyle, type index_d$5_ItemsAddedToCategory as ItemsAddedToCategory, type index_d$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_ParentCategory as ParentCategory, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsOptions as SearchProductsOptions, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$5_TreeReference as TreeReference, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProduct as UpdateProduct, type index_d$5_UpdateProductOptions as UpdateProductOptions, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, type index_d$5__publicBulkAddInfoSectionsToProductsByFilterType as _publicBulkAddInfoSectionsToProductsByFilterType, type index_d$5__publicBulkAddInfoSectionsToProductsType as _publicBulkAddInfoSectionsToProductsType, type index_d$5__publicBulkAddProductsToCategoriesByFilterType as _publicBulkAddProductsToCategoriesByFilterType, type index_d$5__publicBulkAdjustProductVariantsByFilterType as _publicBulkAdjustProductVariantsByFilterType, type index_d$5__publicBulkCreateProductsType as _publicBulkCreateProductsType, type index_d$5__publicBulkCreateProductsWithInventoryType as _publicBulkCreateProductsWithInventoryType, type index_d$5__publicBulkDeleteProductsByFilterType as _publicBulkDeleteProductsByFilterType, type index_d$5__publicBulkDeleteProductsType as _publicBulkDeleteProductsType, type index_d$5__publicBulkRemoveInfoSectionsFromProductsByFilterType as _publicBulkRemoveInfoSectionsFromProductsByFilterType, type index_d$5__publicBulkRemoveInfoSectionsFromProductsType as _publicBulkRemoveInfoSectionsFromProductsType, type index_d$5__publicBulkRemoveProductsFromCategoriesByFilterType as _publicBulkRemoveProductsFromCategoriesByFilterType, type index_d$5__publicBulkUpdateProductVariantsByFilterType as _publicBulkUpdateProductVariantsByFilterType, type index_d$5__publicBulkUpdateProductsByFilterType as _publicBulkUpdateProductsByFilterType, type index_d$5__publicBulkUpdateProductsType as _publicBulkUpdateProductsType, type index_d$5__publicBulkUpdateProductsWithInventoryType as _publicBulkUpdateProductsWithInventoryType, type index_d$5__publicCountProductsType as _publicCountProductsType, type index_d$5__publicCreateProductType as _publicCreateProductType, type index_d$5__publicCreateProductWithInventoryType as _publicCreateProductWithInventoryType, type index_d$5__publicDeleteProductType as _publicDeleteProductType, type index_d$5__publicGetProductBySlugType as _publicGetProductBySlugType, type index_d$5__publicGetProductType as _publicGetProductType, type index_d$5__publicOnProductCreatedType as _publicOnProductCreatedType, type index_d$5__publicOnProductDeletedType as _publicOnProductDeletedType, type index_d$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, type index_d$5__publicQueryProductsType as _publicQueryProductsType, type index_d$5__publicSearchProductsType as _publicSearchProductsType, type index_d$5__publicUpdateExtendedFieldsType as _publicUpdateExtendedFieldsType, type index_d$5__publicUpdateProductType as _publicUpdateProductType, type index_d$5__publicUpdateProductWithInventoryType as _publicUpdateProductWithInventoryType, index_d$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, index_d$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProducts as bulkCreateProducts, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkDeleteProducts as bulkDeleteProducts, index_d$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, index_d$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, index_d$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProducts as bulkUpdateProducts, index_d$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_countProducts as countProducts, index_d$5_createProduct as createProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_deleteProduct as deleteProduct, index_d$5_getProduct as getProduct, index_d$5_getProductBySlug as getProductBySlug, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, index_d$5_queryProducts as queryProducts, index_d$5_searchProducts as searchProducts, index_d$5_updateExtendedFields as updateExtendedFields, index_d$5_updateProduct as updateProduct, index_d$5_updateProductWithInventory as updateProductWithInventory };
|
|
16541
16543
|
}
|
|
16542
16544
|
|
|
16543
16545
|
interface Provision {
|