@wix/stores 1.0.193 → 1.0.195
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 +17 -16
- package/type-bundles/context.bundle.d.ts +707 -176
- package/type-bundles/index.bundle.d.ts +707 -176
|
@@ -197,9 +197,12 @@ declare global {
|
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
|
|
200
|
+
declare function getWishlistById$1(httpClient: HttpClient): (_id: string, options?: GetWishlistByIdOptions) => Promise<WishlistData & WishlistDataNonNullableFields>;
|
|
201
|
+
|
|
200
202
|
declare function createRESTModule$c<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
201
203
|
|
|
202
|
-
|
|
204
|
+
type _publicGetWishlistByIdType = typeof getWishlistById$1;
|
|
205
|
+
declare const getWishlistById: ReturnType<typeof createRESTModule$c<_publicGetWishlistByIdType>>;
|
|
203
206
|
|
|
204
207
|
type index_d$c_AddToWishlistRequest = AddToWishlistRequest;
|
|
205
208
|
type index_d$c_AddToWishlistResponse = AddToWishlistResponse;
|
|
@@ -219,9 +222,10 @@ type index_d$c_WishlistData = WishlistData;
|
|
|
219
222
|
type index_d$c_WishlistDataNonNullableFields = WishlistDataNonNullableFields;
|
|
220
223
|
type index_d$c_WishlistItem = WishlistItem;
|
|
221
224
|
type index_d$c_WishlistItemKind = WishlistItemKind;
|
|
225
|
+
type index_d$c__publicGetWishlistByIdType = _publicGetWishlistByIdType;
|
|
222
226
|
declare const index_d$c_getWishlistById: typeof getWishlistById;
|
|
223
227
|
declare namespace index_d$c {
|
|
224
|
-
export { type index_d$c_AddToWishlistRequest as AddToWishlistRequest, type index_d$c_AddToWishlistResponse as AddToWishlistResponse, type index_d$c_GetWishlistByIdOptions as GetWishlistByIdOptions, type index_d$c_GetWishlistByIdRequest as GetWishlistByIdRequest, type index_d$c_GetWishlistByIdResponse as GetWishlistByIdResponse, type index_d$c_GetWishlistByIdResponseNonNullableFields as GetWishlistByIdResponseNonNullableFields, type index_d$c_GetWishlistRequest as GetWishlistRequest, type index_d$c_GetWishlistResponse as GetWishlistResponse, type index_d$c_GetWishlistsRequest as GetWishlistsRequest, type index_d$c_GetWishlistsResponse as GetWishlistsResponse, type IdentificationData$a as IdentificationData, type IdentificationDataIdOneOf$a as IdentificationDataIdOneOf, type index_d$c_ItemsAddedToWishlist as ItemsAddedToWishlist, type index_d$c_ItemsRemovedFromWishlist as ItemsRemovedFromWishlist, type MessageEnvelope$a as MessageEnvelope, type index_d$c_RemoveFromWishlistRequest as RemoveFromWishlistRequest, type index_d$c_RemoveFromWishlistResponse as RemoveFromWishlistResponse, WebhookIdentityType$a as WebhookIdentityType, type index_d$c_WishlistData as WishlistData, type index_d$c_WishlistDataNonNullableFields as WishlistDataNonNullableFields, type index_d$c_WishlistItem as WishlistItem, type index_d$c_WishlistItemKind as WishlistItemKind, index_d$c_getWishlistById as getWishlistById };
|
|
228
|
+
export { type index_d$c_AddToWishlistRequest as AddToWishlistRequest, type index_d$c_AddToWishlistResponse as AddToWishlistResponse, type index_d$c_GetWishlistByIdOptions as GetWishlistByIdOptions, type index_d$c_GetWishlistByIdRequest as GetWishlistByIdRequest, type index_d$c_GetWishlistByIdResponse as GetWishlistByIdResponse, type index_d$c_GetWishlistByIdResponseNonNullableFields as GetWishlistByIdResponseNonNullableFields, type index_d$c_GetWishlistRequest as GetWishlistRequest, type index_d$c_GetWishlistResponse as GetWishlistResponse, type index_d$c_GetWishlistsRequest as GetWishlistsRequest, type index_d$c_GetWishlistsResponse as GetWishlistsResponse, type IdentificationData$a as IdentificationData, type IdentificationDataIdOneOf$a as IdentificationDataIdOneOf, type index_d$c_ItemsAddedToWishlist as ItemsAddedToWishlist, type index_d$c_ItemsRemovedFromWishlist as ItemsRemovedFromWishlist, type MessageEnvelope$a as MessageEnvelope, type index_d$c_RemoveFromWishlistRequest as RemoveFromWishlistRequest, type index_d$c_RemoveFromWishlistResponse as RemoveFromWishlistResponse, WebhookIdentityType$a as WebhookIdentityType, type index_d$c_WishlistData as WishlistData, type index_d$c_WishlistDataNonNullableFields as WishlistDataNonNullableFields, type index_d$c_WishlistItem as WishlistItem, type index_d$c_WishlistItemKind as WishlistItemKind, type index_d$c__publicGetWishlistByIdType as _publicGetWishlistByIdType, index_d$c_getWishlistById as getWishlistById };
|
|
225
229
|
}
|
|
226
230
|
|
|
227
231
|
interface Collection$1 {
|
|
@@ -549,20 +553,29 @@ interface CollectionsQueryBuilder {
|
|
|
549
553
|
find: () => Promise<CollectionsQueryResult>;
|
|
550
554
|
}
|
|
551
555
|
|
|
556
|
+
declare function queryCollections$1(httpClient: HttpClient): () => CollectionsQueryBuilder;
|
|
557
|
+
declare function getCollection$1(httpClient: HttpClient): (_id: string) => Promise<Collection$1 & CollectionNonNullableFields$1>;
|
|
558
|
+
declare function getCollectionBySlug$3(httpClient: HttpClient): (slug: string) => Promise<GetCollectionBySlugResponse$1 & GetCollectionBySlugResponseNonNullableFields$1>;
|
|
559
|
+
|
|
552
560
|
declare function createRESTModule$b<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
553
561
|
|
|
554
|
-
|
|
555
|
-
declare const
|
|
556
|
-
|
|
562
|
+
type _publicQueryCollectionsType = typeof queryCollections$1;
|
|
563
|
+
declare const queryCollections: ReturnType<typeof createRESTModule$b<_publicQueryCollectionsType>>;
|
|
564
|
+
type _publicGetCollectionType = typeof getCollection$1;
|
|
565
|
+
declare const getCollection: ReturnType<typeof createRESTModule$b<_publicGetCollectionType>>;
|
|
566
|
+
type _publicGetCollectionBySlugType$1 = typeof getCollectionBySlug$3;
|
|
567
|
+
declare const getCollectionBySlug$2: ReturnType<typeof createRESTModule$b<_publicGetCollectionBySlugType>>;
|
|
557
568
|
|
|
558
569
|
type index_d$b_CollectionsQueryBuilder = CollectionsQueryBuilder;
|
|
559
570
|
type index_d$b_CollectionsQueryResult = CollectionsQueryResult;
|
|
560
571
|
type index_d$b_GetCollectionResponseNonNullableFields = GetCollectionResponseNonNullableFields;
|
|
561
572
|
type index_d$b_QueryCollectionsResponseNonNullableFields = QueryCollectionsResponseNonNullableFields;
|
|
573
|
+
type index_d$b__publicGetCollectionType = _publicGetCollectionType;
|
|
574
|
+
type index_d$b__publicQueryCollectionsType = _publicQueryCollectionsType;
|
|
562
575
|
declare const index_d$b_getCollection: typeof getCollection;
|
|
563
576
|
declare const index_d$b_queryCollections: typeof queryCollections;
|
|
564
577
|
declare namespace index_d$b {
|
|
565
|
-
export { type Collection$1 as Collection, type CollectionNonNullableFields$1 as CollectionNonNullableFields, type index_d$b_CollectionsQueryBuilder as CollectionsQueryBuilder, type index_d$b_CollectionsQueryResult as CollectionsQueryResult, type CursorPaging$8 as CursorPaging, type Cursors$8 as Cursors, type GetCollectionBySlugRequest$1 as GetCollectionBySlugRequest, type GetCollectionBySlugResponse$1 as GetCollectionBySlugResponse, type GetCollectionBySlugResponseNonNullableFields$1 as GetCollectionBySlugResponseNonNullableFields, type GetCollectionRequest$1 as GetCollectionRequest, type GetCollectionResponse$1 as GetCollectionResponse, type index_d$b_GetCollectionResponseNonNullableFields as GetCollectionResponseNonNullableFields, type Keyword$2 as Keyword, type Media$3 as Media, type MediaItem$1 as MediaItem, type MediaItemItemOneOf$1 as MediaItemItemOneOf, MediaItemType$1 as MediaItemType, type MediaItemUrlAndSize$1 as MediaItemUrlAndSize, type MediaItemVideo$1 as MediaItemVideo, type PlatformPaging$3 as PlatformPaging, type PlatformPagingMetadata$1 as PlatformPagingMetadata, type PlatformQuery$1 as PlatformQuery, type PlatformQueryPagingMethodOneOf$1 as PlatformQueryPagingMethodOneOf, type QueryCollectionsRequest$1 as QueryCollectionsRequest, type QueryCollectionsResponse$1 as QueryCollectionsResponse, type index_d$b_QueryCollectionsResponseNonNullableFields as QueryCollectionsResponseNonNullableFields, type SeoSchema$2 as SeoSchema, type Settings$3 as Settings, SortOrder$8 as SortOrder, type Sorting$8 as Sorting, type Tag$2 as Tag, index_d$b_getCollection as getCollection, getCollectionBySlug$
|
|
578
|
+
export { type Collection$1 as Collection, type CollectionNonNullableFields$1 as CollectionNonNullableFields, type index_d$b_CollectionsQueryBuilder as CollectionsQueryBuilder, type index_d$b_CollectionsQueryResult as CollectionsQueryResult, type CursorPaging$8 as CursorPaging, type Cursors$8 as Cursors, type GetCollectionBySlugRequest$1 as GetCollectionBySlugRequest, type GetCollectionBySlugResponse$1 as GetCollectionBySlugResponse, type GetCollectionBySlugResponseNonNullableFields$1 as GetCollectionBySlugResponseNonNullableFields, type GetCollectionRequest$1 as GetCollectionRequest, type GetCollectionResponse$1 as GetCollectionResponse, type index_d$b_GetCollectionResponseNonNullableFields as GetCollectionResponseNonNullableFields, type Keyword$2 as Keyword, type Media$3 as Media, type MediaItem$1 as MediaItem, type MediaItemItemOneOf$1 as MediaItemItemOneOf, MediaItemType$1 as MediaItemType, type MediaItemUrlAndSize$1 as MediaItemUrlAndSize, type MediaItemVideo$1 as MediaItemVideo, type PlatformPaging$3 as PlatformPaging, type PlatformPagingMetadata$1 as PlatformPagingMetadata, type PlatformQuery$1 as PlatformQuery, type PlatformQueryPagingMethodOneOf$1 as PlatformQueryPagingMethodOneOf, type QueryCollectionsRequest$1 as QueryCollectionsRequest, type QueryCollectionsResponse$1 as QueryCollectionsResponse, type index_d$b_QueryCollectionsResponseNonNullableFields as QueryCollectionsResponseNonNullableFields, type SeoSchema$2 as SeoSchema, type Settings$3 as Settings, SortOrder$8 as SortOrder, type Sorting$8 as Sorting, type Tag$2 as Tag, type _publicGetCollectionBySlugType$1 as _publicGetCollectionBySlugType, type index_d$b__publicGetCollectionType as _publicGetCollectionType, type index_d$b__publicQueryCollectionsType as _publicQueryCollectionsType, index_d$b_getCollection as getCollection, getCollectionBySlug$2 as getCollectionBySlug, index_d$b_queryCollections as queryCollections };
|
|
566
579
|
}
|
|
567
580
|
|
|
568
581
|
interface Product$2 {
|
|
@@ -2633,43 +2646,117 @@ interface QueryProductVariantsOptions {
|
|
|
2633
2646
|
includeMerchantSpecificData?: boolean;
|
|
2634
2647
|
}
|
|
2635
2648
|
|
|
2649
|
+
declare function createProduct$1(httpClient: HttpClient): (product: Product$2) => Promise<CreateProductResponse$1 & CreateProductResponseNonNullableFields$1>;
|
|
2650
|
+
declare function updateProduct$1(httpClient: HttpClient): (_id: string, product: UpdateProduct) => Promise<UpdateProductResponse$1 & UpdateProductResponseNonNullableFields$1>;
|
|
2651
|
+
declare function deleteProduct$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
2652
|
+
declare function updateProductVariants$1(httpClient: HttpClient): (_id: string, variants: VariantOverride[]) => Promise<UpdateVariantsResponse & UpdateVariantsResponseNonNullableFields>;
|
|
2653
|
+
declare function resetAllProductVariantData$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
2654
|
+
declare function addProductsToCollection$1(httpClient: HttpClient): (_id: string, productIds: string[]) => Promise<void>;
|
|
2655
|
+
declare function removeProductsFromCollection$1(httpClient: HttpClient): (_id: string, productIds: string[]) => Promise<void>;
|
|
2656
|
+
declare function addProductMedia$1(httpClient: HttpClient): (_id: string, media: MediaDataForWrite[]) => Promise<void>;
|
|
2657
|
+
declare function removeProductMedia$1(httpClient: HttpClient): (_id: string, mediaIds: string[]) => Promise<void>;
|
|
2658
|
+
declare function addProductMediaToChoices$1(httpClient: HttpClient): (_id: string, media: MediaAssignmentToChoice[]) => Promise<void>;
|
|
2659
|
+
declare function removeProductMediaFromChoices$1(httpClient: HttpClient): (_id: string, media: MediaAssignmentToChoice[]) => Promise<void>;
|
|
2660
|
+
declare function deleteProductOptions$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
2661
|
+
declare function removeBrand$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
2662
|
+
declare function createCollection$1(httpClient: HttpClient): (collection: Collection) => Promise<CreateCollectionResponse & CreateCollectionResponseNonNullableFields>;
|
|
2663
|
+
declare function updateCollection$1(httpClient: HttpClient): (_id: string | null, collection: UpdateCollection) => Promise<UpdateCollectionResponse & UpdateCollectionResponseNonNullableFields>;
|
|
2664
|
+
declare function deleteCollection$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
2665
|
+
declare function removeRibbon$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
2666
|
+
declare function bulkUpdateProductsProperty$1(httpClient: HttpClient): (ids: string[], set: SetValue) => Promise<BulkUpdateProductsResponse$1 & BulkUpdateProductsResponseNonNullableFields$1>;
|
|
2667
|
+
declare function bulkAdjustProductProperty$1(httpClient: HttpClient): (adjust: AdjustValue$1, ids: string[]) => Promise<BulkAdjustProductPropertiesResponse & BulkAdjustProductPropertiesResponseNonNullableFields>;
|
|
2668
|
+
declare function queryProducts$1(httpClient: HttpClient): () => ProductsQueryBuilder$1;
|
|
2669
|
+
declare function getProduct$1(httpClient: HttpClient): (_id: string, options?: GetProductOptions) => Promise<GetProductResponse$1 & GetProductResponseNonNullableFields>;
|
|
2670
|
+
declare function getCollectionBySlug$1(httpClient: HttpClient): (slug: string) => Promise<GetCollectionBySlugResponse & GetCollectionBySlugResponseNonNullableFields>;
|
|
2671
|
+
declare function getProductOptionsAvailability$1(httpClient: HttpClient): (_id: string, options: Record<string, string>) => Promise<ProductOptionsAvailabilityResponse & ProductOptionsAvailabilityResponseNonNullableFields>;
|
|
2672
|
+
declare function queryProductVariants$1(httpClient: HttpClient): (_id: string, options?: QueryProductVariantsOptions) => Promise<QueryProductVariantsResponse & QueryProductVariantsResponseNonNullableFields>;
|
|
2673
|
+
declare function queryStoreVariants$1(httpClient: HttpClient): (query: PlatformQuery) => Promise<QueryStoreVariantsResponse & QueryStoreVariantsResponseNonNullableFields>;
|
|
2674
|
+
declare function getStoreVariant$1(httpClient: HttpClient): (_id: string) => Promise<GetStoreVariantResponse & GetStoreVariantResponseNonNullableFields>;
|
|
2675
|
+
declare const onProductCreated$3: EventDefinition<ProductCreatedEnvelope$1, "com.wix.ecommerce.catalog.api.v1.ProductCreated">;
|
|
2676
|
+
declare const onProductChanged$1: EventDefinition<ProductChangedEnvelope, "com.wix.ecommerce.catalog.api.v1.ProductChanged">;
|
|
2677
|
+
declare const onProductDeleted$3: EventDefinition<ProductDeletedEnvelope$1, "com.wix.ecommerce.catalog.api.v1.ProductDeleted">;
|
|
2678
|
+
declare const onProductCollectionCreated$1: EventDefinition<ProductCollectionCreatedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionCreated">;
|
|
2679
|
+
declare const onProductCollectionChanged$1: EventDefinition<ProductCollectionChangedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionChanged">;
|
|
2680
|
+
declare const onProductCollectionDeleted$1: EventDefinition<ProductCollectionDeletedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionDeleted">;
|
|
2681
|
+
declare const onProductVariantsChanged$1: EventDefinition<ProductVariantsChangedEnvelope, "com.wix.ecommerce.catalog.api.v1.VariantsChanged">;
|
|
2682
|
+
|
|
2636
2683
|
declare function createRESTModule$a<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
2637
2684
|
|
|
2638
2685
|
declare function createEventModule$7<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2639
2686
|
|
|
2640
|
-
|
|
2641
|
-
declare const
|
|
2642
|
-
|
|
2643
|
-
declare const
|
|
2644
|
-
|
|
2645
|
-
declare const
|
|
2646
|
-
|
|
2647
|
-
declare const
|
|
2648
|
-
|
|
2649
|
-
declare const
|
|
2650
|
-
|
|
2651
|
-
declare const
|
|
2652
|
-
|
|
2653
|
-
declare const
|
|
2654
|
-
|
|
2655
|
-
declare const
|
|
2656
|
-
|
|
2657
|
-
declare const
|
|
2658
|
-
|
|
2659
|
-
declare const
|
|
2660
|
-
|
|
2661
|
-
declare const
|
|
2662
|
-
|
|
2663
|
-
declare const
|
|
2664
|
-
|
|
2665
|
-
declare const
|
|
2666
|
-
|
|
2667
|
-
declare const
|
|
2668
|
-
|
|
2669
|
-
declare const
|
|
2670
|
-
|
|
2671
|
-
declare const
|
|
2672
|
-
|
|
2687
|
+
type _publicCreateProductType = typeof createProduct$1;
|
|
2688
|
+
declare const createProduct: ReturnType<typeof createRESTModule$a<_publicCreateProductType>>;
|
|
2689
|
+
type _publicUpdateProductType = typeof updateProduct$1;
|
|
2690
|
+
declare const updateProduct: ReturnType<typeof createRESTModule$a<_publicUpdateProductType>>;
|
|
2691
|
+
type _publicDeleteProductType = typeof deleteProduct$1;
|
|
2692
|
+
declare const deleteProduct: ReturnType<typeof createRESTModule$a<_publicDeleteProductType>>;
|
|
2693
|
+
type _publicUpdateProductVariantsType = typeof updateProductVariants$1;
|
|
2694
|
+
declare const updateProductVariants: ReturnType<typeof createRESTModule$a<_publicUpdateProductVariantsType>>;
|
|
2695
|
+
type _publicResetAllProductVariantDataType = typeof resetAllProductVariantData$1;
|
|
2696
|
+
declare const resetAllProductVariantData: ReturnType<typeof createRESTModule$a<_publicResetAllProductVariantDataType>>;
|
|
2697
|
+
type _publicAddProductsToCollectionType = typeof addProductsToCollection$1;
|
|
2698
|
+
declare const addProductsToCollection: ReturnType<typeof createRESTModule$a<_publicAddProductsToCollectionType>>;
|
|
2699
|
+
type _publicRemoveProductsFromCollectionType = typeof removeProductsFromCollection$1;
|
|
2700
|
+
declare const removeProductsFromCollection: ReturnType<typeof createRESTModule$a<_publicRemoveProductsFromCollectionType>>;
|
|
2701
|
+
type _publicAddProductMediaType = typeof addProductMedia$1;
|
|
2702
|
+
declare const addProductMedia: ReturnType<typeof createRESTModule$a<_publicAddProductMediaType>>;
|
|
2703
|
+
type _publicRemoveProductMediaType = typeof removeProductMedia$1;
|
|
2704
|
+
declare const removeProductMedia: ReturnType<typeof createRESTModule$a<_publicRemoveProductMediaType>>;
|
|
2705
|
+
type _publicAddProductMediaToChoicesType = typeof addProductMediaToChoices$1;
|
|
2706
|
+
declare const addProductMediaToChoices: ReturnType<typeof createRESTModule$a<_publicAddProductMediaToChoicesType>>;
|
|
2707
|
+
type _publicRemoveProductMediaFromChoicesType = typeof removeProductMediaFromChoices$1;
|
|
2708
|
+
declare const removeProductMediaFromChoices: ReturnType<typeof createRESTModule$a<_publicRemoveProductMediaFromChoicesType>>;
|
|
2709
|
+
type _publicDeleteProductOptionsType = typeof deleteProductOptions$1;
|
|
2710
|
+
declare const deleteProductOptions: ReturnType<typeof createRESTModule$a<_publicDeleteProductOptionsType>>;
|
|
2711
|
+
type _publicRemoveBrandType = typeof removeBrand$1;
|
|
2712
|
+
declare const removeBrand: ReturnType<typeof createRESTModule$a<_publicRemoveBrandType>>;
|
|
2713
|
+
type _publicCreateCollectionType = typeof createCollection$1;
|
|
2714
|
+
declare const createCollection: ReturnType<typeof createRESTModule$a<_publicCreateCollectionType>>;
|
|
2715
|
+
type _publicUpdateCollectionType = typeof updateCollection$1;
|
|
2716
|
+
declare const updateCollection: ReturnType<typeof createRESTModule$a<_publicUpdateCollectionType>>;
|
|
2717
|
+
type _publicDeleteCollectionType = typeof deleteCollection$1;
|
|
2718
|
+
declare const deleteCollection: ReturnType<typeof createRESTModule$a<_publicDeleteCollectionType>>;
|
|
2719
|
+
type _publicRemoveRibbonType = typeof removeRibbon$1;
|
|
2720
|
+
declare const removeRibbon: ReturnType<typeof createRESTModule$a<_publicRemoveRibbonType>>;
|
|
2721
|
+
type _publicBulkUpdateProductsPropertyType = typeof bulkUpdateProductsProperty$1;
|
|
2722
|
+
declare const bulkUpdateProductsProperty: ReturnType<typeof createRESTModule$a<_publicBulkUpdateProductsPropertyType>>;
|
|
2723
|
+
type _publicBulkAdjustProductPropertyType = typeof bulkAdjustProductProperty$1;
|
|
2724
|
+
declare const bulkAdjustProductProperty: ReturnType<typeof createRESTModule$a<_publicBulkAdjustProductPropertyType>>;
|
|
2725
|
+
type _publicQueryProductsType = typeof queryProducts$1;
|
|
2726
|
+
declare const queryProducts: ReturnType<typeof createRESTModule$a<_publicQueryProductsType>>;
|
|
2727
|
+
type _publicGetProductType = typeof getProduct$1;
|
|
2728
|
+
declare const getProduct: ReturnType<typeof createRESTModule$a<_publicGetProductType>>;
|
|
2729
|
+
type _publicGetCollectionBySlugType = typeof getCollectionBySlug$1;
|
|
2730
|
+
declare const getCollectionBySlug: ReturnType<typeof createRESTModule$a<_publicGetCollectionBySlugType>>;
|
|
2731
|
+
type _publicGetProductOptionsAvailabilityType = typeof getProductOptionsAvailability$1;
|
|
2732
|
+
declare const getProductOptionsAvailability: ReturnType<typeof createRESTModule$a<_publicGetProductOptionsAvailabilityType>>;
|
|
2733
|
+
type _publicQueryProductVariantsType = typeof queryProductVariants$1;
|
|
2734
|
+
declare const queryProductVariants: ReturnType<typeof createRESTModule$a<_publicQueryProductVariantsType>>;
|
|
2735
|
+
type _publicQueryStoreVariantsType = typeof queryStoreVariants$1;
|
|
2736
|
+
declare const queryStoreVariants: ReturnType<typeof createRESTModule$a<_publicQueryStoreVariantsType>>;
|
|
2737
|
+
type _publicGetStoreVariantType = typeof getStoreVariant$1;
|
|
2738
|
+
declare const getStoreVariant: ReturnType<typeof createRESTModule$a<_publicGetStoreVariantType>>;
|
|
2739
|
+
|
|
2740
|
+
type _publicOnProductCreatedType$1 = typeof onProductCreated$3;
|
|
2741
|
+
declare const onProductCreated$2: ReturnType<typeof createEventModule$7<_publicOnProductCreatedType>>;
|
|
2742
|
+
|
|
2743
|
+
type _publicOnProductChangedType = typeof onProductChanged$1;
|
|
2744
|
+
declare const onProductChanged: ReturnType<typeof createEventModule$7<_publicOnProductChangedType>>;
|
|
2745
|
+
|
|
2746
|
+
type _publicOnProductDeletedType$1 = typeof onProductDeleted$3;
|
|
2747
|
+
declare const onProductDeleted$2: ReturnType<typeof createEventModule$7<_publicOnProductDeletedType>>;
|
|
2748
|
+
|
|
2749
|
+
type _publicOnProductCollectionCreatedType = typeof onProductCollectionCreated$1;
|
|
2750
|
+
declare const onProductCollectionCreated: ReturnType<typeof createEventModule$7<_publicOnProductCollectionCreatedType>>;
|
|
2751
|
+
|
|
2752
|
+
type _publicOnProductCollectionChangedType = typeof onProductCollectionChanged$1;
|
|
2753
|
+
declare const onProductCollectionChanged: ReturnType<typeof createEventModule$7<_publicOnProductCollectionChangedType>>;
|
|
2754
|
+
|
|
2755
|
+
type _publicOnProductCollectionDeletedType = typeof onProductCollectionDeleted$1;
|
|
2756
|
+
declare const onProductCollectionDeleted: ReturnType<typeof createEventModule$7<_publicOnProductCollectionDeletedType>>;
|
|
2757
|
+
|
|
2758
|
+
type _publicOnProductVariantsChangedType = typeof onProductVariantsChanged$1;
|
|
2759
|
+
declare const onProductVariantsChanged: ReturnType<typeof createEventModule$7<_publicOnProductVariantsChangedType>>;
|
|
2673
2760
|
|
|
2674
2761
|
type index_d$a_AddProductMediaRequest = AddProductMediaRequest;
|
|
2675
2762
|
type index_d$a_AddProductMediaResponse = AddProductMediaResponse;
|
|
@@ -2834,6 +2921,37 @@ type index_d$a_VariantDataWithNoStock = VariantDataWithNoStock;
|
|
|
2834
2921
|
type index_d$a_VariantOverride = VariantOverride;
|
|
2835
2922
|
type index_d$a_VariantStock = VariantStock;
|
|
2836
2923
|
type index_d$a_VariantsChanged = VariantsChanged;
|
|
2924
|
+
type index_d$a__publicAddProductMediaToChoicesType = _publicAddProductMediaToChoicesType;
|
|
2925
|
+
type index_d$a__publicAddProductMediaType = _publicAddProductMediaType;
|
|
2926
|
+
type index_d$a__publicAddProductsToCollectionType = _publicAddProductsToCollectionType;
|
|
2927
|
+
type index_d$a__publicBulkAdjustProductPropertyType = _publicBulkAdjustProductPropertyType;
|
|
2928
|
+
type index_d$a__publicBulkUpdateProductsPropertyType = _publicBulkUpdateProductsPropertyType;
|
|
2929
|
+
type index_d$a__publicCreateCollectionType = _publicCreateCollectionType;
|
|
2930
|
+
type index_d$a__publicCreateProductType = _publicCreateProductType;
|
|
2931
|
+
type index_d$a__publicDeleteCollectionType = _publicDeleteCollectionType;
|
|
2932
|
+
type index_d$a__publicDeleteProductOptionsType = _publicDeleteProductOptionsType;
|
|
2933
|
+
type index_d$a__publicDeleteProductType = _publicDeleteProductType;
|
|
2934
|
+
type index_d$a__publicGetCollectionBySlugType = _publicGetCollectionBySlugType;
|
|
2935
|
+
type index_d$a__publicGetProductOptionsAvailabilityType = _publicGetProductOptionsAvailabilityType;
|
|
2936
|
+
type index_d$a__publicGetProductType = _publicGetProductType;
|
|
2937
|
+
type index_d$a__publicGetStoreVariantType = _publicGetStoreVariantType;
|
|
2938
|
+
type index_d$a__publicOnProductChangedType = _publicOnProductChangedType;
|
|
2939
|
+
type index_d$a__publicOnProductCollectionChangedType = _publicOnProductCollectionChangedType;
|
|
2940
|
+
type index_d$a__publicOnProductCollectionCreatedType = _publicOnProductCollectionCreatedType;
|
|
2941
|
+
type index_d$a__publicOnProductCollectionDeletedType = _publicOnProductCollectionDeletedType;
|
|
2942
|
+
type index_d$a__publicOnProductVariantsChangedType = _publicOnProductVariantsChangedType;
|
|
2943
|
+
type index_d$a__publicQueryProductVariantsType = _publicQueryProductVariantsType;
|
|
2944
|
+
type index_d$a__publicQueryProductsType = _publicQueryProductsType;
|
|
2945
|
+
type index_d$a__publicQueryStoreVariantsType = _publicQueryStoreVariantsType;
|
|
2946
|
+
type index_d$a__publicRemoveBrandType = _publicRemoveBrandType;
|
|
2947
|
+
type index_d$a__publicRemoveProductMediaFromChoicesType = _publicRemoveProductMediaFromChoicesType;
|
|
2948
|
+
type index_d$a__publicRemoveProductMediaType = _publicRemoveProductMediaType;
|
|
2949
|
+
type index_d$a__publicRemoveProductsFromCollectionType = _publicRemoveProductsFromCollectionType;
|
|
2950
|
+
type index_d$a__publicRemoveRibbonType = _publicRemoveRibbonType;
|
|
2951
|
+
type index_d$a__publicResetAllProductVariantDataType = _publicResetAllProductVariantDataType;
|
|
2952
|
+
type index_d$a__publicUpdateCollectionType = _publicUpdateCollectionType;
|
|
2953
|
+
type index_d$a__publicUpdateProductType = _publicUpdateProductType;
|
|
2954
|
+
type index_d$a__publicUpdateProductVariantsType = _publicUpdateProductVariantsType;
|
|
2837
2955
|
declare const index_d$a_addProductMedia: typeof addProductMedia;
|
|
2838
2956
|
declare const index_d$a_addProductMediaToChoices: typeof addProductMediaToChoices;
|
|
2839
2957
|
declare const index_d$a_addProductsToCollection: typeof addProductsToCollection;
|
|
@@ -2866,7 +2984,7 @@ declare const index_d$a_updateCollection: typeof updateCollection;
|
|
|
2866
2984
|
declare const index_d$a_updateProduct: typeof updateProduct;
|
|
2867
2985
|
declare const index_d$a_updateProductVariants: typeof updateProductVariants;
|
|
2868
2986
|
declare namespace index_d$a {
|
|
2869
|
-
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, 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$1 as onProductCreated, onProductDeleted$1 as onProductDeleted, index_d$a_onProductVariantsChanged as onProductVariantsChanged, 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 };
|
|
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 };
|
|
2870
2988
|
}
|
|
2871
2989
|
|
|
2872
2990
|
/**
|
|
@@ -3615,23 +3733,53 @@ interface BulkGetOrCreateBrandsOptions {
|
|
|
3615
3733
|
fields?: RequestedFields$4[];
|
|
3616
3734
|
}
|
|
3617
3735
|
|
|
3736
|
+
declare function createBrand$1(httpClient: HttpClient): (brand: Brand$1) => Promise<Brand$1 & BrandNonNullableFields>;
|
|
3737
|
+
declare function getBrand$1(httpClient: HttpClient): (brandId: string, options?: GetBrandOptions) => Promise<Brand$1 & BrandNonNullableFields>;
|
|
3738
|
+
declare function updateBrand$1(httpClient: HttpClient): (_id: string | null, brand: UpdateBrand, options?: UpdateBrandOptions) => Promise<Brand$1 & BrandNonNullableFields>;
|
|
3739
|
+
declare function deleteBrand$1(httpClient: HttpClient): (brandId: string) => Promise<void>;
|
|
3740
|
+
declare function queryBrands$1(httpClient: HttpClient): (options?: QueryBrandsOptions) => BrandsQueryBuilder;
|
|
3741
|
+
declare function bulkCreateBrands$1(httpClient: HttpClient): (brands: Brand$1[], options?: BulkCreateBrandsOptions) => Promise<BulkCreateBrandsResponse & BulkCreateBrandsResponseNonNullableFields>;
|
|
3742
|
+
declare function bulkUpdateBrands$1(httpClient: HttpClient): (brands: MaskedBrand[], options?: BulkUpdateBrandsOptions) => Promise<BulkUpdateBrandsResponse & BulkUpdateBrandsResponseNonNullableFields>;
|
|
3743
|
+
declare function getOrCreateBrand$1(httpClient: HttpClient): (brandName: string, options?: GetOrCreateBrandOptions) => Promise<GetOrCreateBrandResponse & GetOrCreateBrandResponseNonNullableFields>;
|
|
3744
|
+
declare function bulkGetOrCreateBrands$1(httpClient: HttpClient): (brandNames: string[], options?: BulkGetOrCreateBrandsOptions) => Promise<BulkGetOrCreateBrandsResponse & BulkGetOrCreateBrandsResponseNonNullableFields>;
|
|
3745
|
+
declare function bulkDeleteBrands$1(httpClient: HttpClient): (brandIds: string[]) => Promise<BulkDeleteBrandsResponse & BulkDeleteBrandsResponseNonNullableFields>;
|
|
3746
|
+
declare const onBrandCreated$1: EventDefinition<BrandCreatedEnvelope, "wix.stores.catalog.v3.brand_created">;
|
|
3747
|
+
declare const onBrandUpdated$1: EventDefinition<BrandUpdatedEnvelope, "wix.stores.catalog.v3.brand_updated">;
|
|
3748
|
+
declare const onBrandDeleted$1: EventDefinition<BrandDeletedEnvelope, "wix.stores.catalog.v3.brand_deleted">;
|
|
3749
|
+
|
|
3618
3750
|
declare function createRESTModule$9<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
3619
3751
|
|
|
3620
3752
|
declare function createEventModule$6<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
3621
3753
|
|
|
3622
|
-
|
|
3623
|
-
declare const
|
|
3624
|
-
|
|
3625
|
-
declare const
|
|
3626
|
-
|
|
3627
|
-
declare const
|
|
3628
|
-
|
|
3629
|
-
declare const
|
|
3630
|
-
|
|
3631
|
-
declare const
|
|
3632
|
-
|
|
3633
|
-
declare const
|
|
3634
|
-
|
|
3754
|
+
type _publicCreateBrandType = typeof createBrand$1;
|
|
3755
|
+
declare const createBrand: ReturnType<typeof createRESTModule$9<_publicCreateBrandType>>;
|
|
3756
|
+
type _publicGetBrandType = typeof getBrand$1;
|
|
3757
|
+
declare const getBrand: ReturnType<typeof createRESTModule$9<_publicGetBrandType>>;
|
|
3758
|
+
type _publicUpdateBrandType = typeof updateBrand$1;
|
|
3759
|
+
declare const updateBrand: ReturnType<typeof createRESTModule$9<_publicUpdateBrandType>>;
|
|
3760
|
+
type _publicDeleteBrandType = typeof deleteBrand$1;
|
|
3761
|
+
declare const deleteBrand: ReturnType<typeof createRESTModule$9<_publicDeleteBrandType>>;
|
|
3762
|
+
type _publicQueryBrandsType = typeof queryBrands$1;
|
|
3763
|
+
declare const queryBrands: ReturnType<typeof createRESTModule$9<_publicQueryBrandsType>>;
|
|
3764
|
+
type _publicBulkCreateBrandsType = typeof bulkCreateBrands$1;
|
|
3765
|
+
declare const bulkCreateBrands: ReturnType<typeof createRESTModule$9<_publicBulkCreateBrandsType>>;
|
|
3766
|
+
type _publicBulkUpdateBrandsType = typeof bulkUpdateBrands$1;
|
|
3767
|
+
declare const bulkUpdateBrands: ReturnType<typeof createRESTModule$9<_publicBulkUpdateBrandsType>>;
|
|
3768
|
+
type _publicGetOrCreateBrandType = typeof getOrCreateBrand$1;
|
|
3769
|
+
declare const getOrCreateBrand: ReturnType<typeof createRESTModule$9<_publicGetOrCreateBrandType>>;
|
|
3770
|
+
type _publicBulkGetOrCreateBrandsType = typeof bulkGetOrCreateBrands$1;
|
|
3771
|
+
declare const bulkGetOrCreateBrands: ReturnType<typeof createRESTModule$9<_publicBulkGetOrCreateBrandsType>>;
|
|
3772
|
+
type _publicBulkDeleteBrandsType = typeof bulkDeleteBrands$1;
|
|
3773
|
+
declare const bulkDeleteBrands: ReturnType<typeof createRESTModule$9<_publicBulkDeleteBrandsType>>;
|
|
3774
|
+
|
|
3775
|
+
type _publicOnBrandCreatedType = typeof onBrandCreated$1;
|
|
3776
|
+
declare const onBrandCreated: ReturnType<typeof createEventModule$6<_publicOnBrandCreatedType>>;
|
|
3777
|
+
|
|
3778
|
+
type _publicOnBrandUpdatedType = typeof onBrandUpdated$1;
|
|
3779
|
+
declare const onBrandUpdated: ReturnType<typeof createEventModule$6<_publicOnBrandUpdatedType>>;
|
|
3780
|
+
|
|
3781
|
+
type _publicOnBrandDeletedType = typeof onBrandDeleted$1;
|
|
3782
|
+
declare const onBrandDeleted: ReturnType<typeof createEventModule$6<_publicOnBrandDeletedType>>;
|
|
3635
3783
|
|
|
3636
3784
|
type index_d$9_BrandCreatedEnvelope = BrandCreatedEnvelope;
|
|
3637
3785
|
type index_d$9_BrandDeletedEnvelope = BrandDeletedEnvelope;
|
|
@@ -3679,6 +3827,19 @@ type index_d$9_UpdateBrandOptions = UpdateBrandOptions;
|
|
|
3679
3827
|
type index_d$9_UpdateBrandRequest = UpdateBrandRequest;
|
|
3680
3828
|
type index_d$9_UpdateBrandResponse = UpdateBrandResponse;
|
|
3681
3829
|
type index_d$9_UpdateBrandResponseNonNullableFields = UpdateBrandResponseNonNullableFields;
|
|
3830
|
+
type index_d$9__publicBulkCreateBrandsType = _publicBulkCreateBrandsType;
|
|
3831
|
+
type index_d$9__publicBulkDeleteBrandsType = _publicBulkDeleteBrandsType;
|
|
3832
|
+
type index_d$9__publicBulkGetOrCreateBrandsType = _publicBulkGetOrCreateBrandsType;
|
|
3833
|
+
type index_d$9__publicBulkUpdateBrandsType = _publicBulkUpdateBrandsType;
|
|
3834
|
+
type index_d$9__publicCreateBrandType = _publicCreateBrandType;
|
|
3835
|
+
type index_d$9__publicDeleteBrandType = _publicDeleteBrandType;
|
|
3836
|
+
type index_d$9__publicGetBrandType = _publicGetBrandType;
|
|
3837
|
+
type index_d$9__publicGetOrCreateBrandType = _publicGetOrCreateBrandType;
|
|
3838
|
+
type index_d$9__publicOnBrandCreatedType = _publicOnBrandCreatedType;
|
|
3839
|
+
type index_d$9__publicOnBrandDeletedType = _publicOnBrandDeletedType;
|
|
3840
|
+
type index_d$9__publicOnBrandUpdatedType = _publicOnBrandUpdatedType;
|
|
3841
|
+
type index_d$9__publicQueryBrandsType = _publicQueryBrandsType;
|
|
3842
|
+
type index_d$9__publicUpdateBrandType = _publicUpdateBrandType;
|
|
3682
3843
|
declare const index_d$9_bulkCreateBrands: typeof bulkCreateBrands;
|
|
3683
3844
|
declare const index_d$9_bulkDeleteBrands: typeof bulkDeleteBrands;
|
|
3684
3845
|
declare const index_d$9_bulkGetOrCreateBrands: typeof bulkGetOrCreateBrands;
|
|
@@ -3693,7 +3854,7 @@ declare const index_d$9_onBrandUpdated: typeof onBrandUpdated;
|
|
|
3693
3854
|
declare const index_d$9_queryBrands: typeof queryBrands;
|
|
3694
3855
|
declare const index_d$9_updateBrand: typeof updateBrand;
|
|
3695
3856
|
declare namespace index_d$9 {
|
|
3696
|
-
export { type ActionEvent$6 as ActionEvent, type App$6 as App, type ApplicationError$5 as ApplicationError, type BaseEventMetadata$6 as BaseEventMetadata, type Brand$1 as Brand, type index_d$9_BrandCreatedEnvelope as BrandCreatedEnvelope, type index_d$9_BrandDeletedEnvelope as BrandDeletedEnvelope, type index_d$9_BrandNonNullableFields as BrandNonNullableFields, type index_d$9_BrandUpdatedEnvelope as BrandUpdatedEnvelope, type index_d$9_BrandsQueryBuilder as BrandsQueryBuilder, type index_d$9_BrandsQueryResult as BrandsQueryResult, type BulkActionMetadata$5 as BulkActionMetadata, type index_d$9_BulkBrandsResult as BulkBrandsResult, type index_d$9_BulkCreateBrandsOptions as BulkCreateBrandsOptions, type index_d$9_BulkCreateBrandsRequest as BulkCreateBrandsRequest, type index_d$9_BulkCreateBrandsResponse as BulkCreateBrandsResponse, type index_d$9_BulkCreateBrandsResponseNonNullableFields as BulkCreateBrandsResponseNonNullableFields, type index_d$9_BulkDeleteBrandsRequest as BulkDeleteBrandsRequest, type index_d$9_BulkDeleteBrandsResponse as BulkDeleteBrandsResponse, type index_d$9_BulkDeleteBrandsResponseBulkBrandsResult as BulkDeleteBrandsResponseBulkBrandsResult, type index_d$9_BulkDeleteBrandsResponseNonNullableFields as BulkDeleteBrandsResponseNonNullableFields, type index_d$9_BulkGetOrCreateBrandsOptions as BulkGetOrCreateBrandsOptions, type index_d$9_BulkGetOrCreateBrandsRequest as BulkGetOrCreateBrandsRequest, type index_d$9_BulkGetOrCreateBrandsResponse as BulkGetOrCreateBrandsResponse, type index_d$9_BulkGetOrCreateBrandsResponseNonNullableFields as BulkGetOrCreateBrandsResponseNonNullableFields, type index_d$9_BulkUpdateBrandsOptions as BulkUpdateBrandsOptions, type index_d$9_BulkUpdateBrandsRequest as BulkUpdateBrandsRequest, type index_d$9_BulkUpdateBrandsResponse as BulkUpdateBrandsResponse, type index_d$9_BulkUpdateBrandsResponseNonNullableFields as BulkUpdateBrandsResponseNonNullableFields, type index_d$9_CreateBrandRequest as CreateBrandRequest, type index_d$9_CreateBrandResponse as CreateBrandResponse, type index_d$9_CreateBrandResponseNonNullableFields as CreateBrandResponseNonNullableFields, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$5 as CursorQuery, type CursorQueryPagingMethodOneOf$5 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type index_d$9_DeleteBrandRequest as DeleteBrandRequest, type index_d$9_DeleteBrandResponse as DeleteBrandResponse, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type Empty$7 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type EventMetadata$5 as EventMetadata, type File$6 as File, type index_d$9_GetBrandOptions as GetBrandOptions, type index_d$9_GetBrandRequest as GetBrandRequest, type index_d$9_GetBrandResponse as GetBrandResponse, type index_d$9_GetBrandResponseNonNullableFields as GetBrandResponseNonNullableFields, type index_d$9_GetOrCreateBrandOptions as GetOrCreateBrandOptions, type index_d$9_GetOrCreateBrandRequest as GetOrCreateBrandRequest, type index_d$9_GetOrCreateBrandResponse as GetOrCreateBrandResponse, type index_d$9_GetOrCreateBrandResponseNonNullableFields as GetOrCreateBrandResponseNonNullableFields, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, type InvalidateCache$6 as InvalidateCache, type InvalidateCacheGetByOneOf$6 as InvalidateCacheGetByOneOf, type ItemMetadata$5 as ItemMetadata, type index_d$9_MaskedBrand as MaskedBrand, type MessageEnvelope$8 as MessageEnvelope, type Page$6 as Page, type index_d$9_QueryBrandsOptions as QueryBrandsOptions, type index_d$9_QueryBrandsRequest as QueryBrandsRequest, type index_d$9_QueryBrandsResponse as QueryBrandsResponse, type index_d$9_QueryBrandsResponseNonNullableFields as QueryBrandsResponseNonNullableFields, RequestedFields$4 as RequestedFields, type RestoreInfo$6 as RestoreInfo, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, type URI$6 as URI, type index_d$9_UpdateBrand as UpdateBrand, type index_d$9_UpdateBrandOptions as UpdateBrandOptions, type index_d$9_UpdateBrandRequest as UpdateBrandRequest, type index_d$9_UpdateBrandResponse as UpdateBrandResponse, type index_d$9_UpdateBrandResponseNonNullableFields as UpdateBrandResponseNonNullableFields, WebhookIdentityType$8 as WebhookIdentityType, index_d$9_bulkCreateBrands as bulkCreateBrands, index_d$9_bulkDeleteBrands as bulkDeleteBrands, index_d$9_bulkGetOrCreateBrands as bulkGetOrCreateBrands, index_d$9_bulkUpdateBrands as bulkUpdateBrands, index_d$9_createBrand as createBrand, index_d$9_deleteBrand as deleteBrand, index_d$9_getBrand as getBrand, index_d$9_getOrCreateBrand as getOrCreateBrand, index_d$9_onBrandCreated as onBrandCreated, index_d$9_onBrandDeleted as onBrandDeleted, index_d$9_onBrandUpdated as onBrandUpdated, index_d$9_queryBrands as queryBrands, index_d$9_updateBrand as updateBrand };
|
|
3857
|
+
export { type ActionEvent$6 as ActionEvent, type App$6 as App, type ApplicationError$5 as ApplicationError, type BaseEventMetadata$6 as BaseEventMetadata, type Brand$1 as Brand, type index_d$9_BrandCreatedEnvelope as BrandCreatedEnvelope, type index_d$9_BrandDeletedEnvelope as BrandDeletedEnvelope, type index_d$9_BrandNonNullableFields as BrandNonNullableFields, type index_d$9_BrandUpdatedEnvelope as BrandUpdatedEnvelope, type index_d$9_BrandsQueryBuilder as BrandsQueryBuilder, type index_d$9_BrandsQueryResult as BrandsQueryResult, type BulkActionMetadata$5 as BulkActionMetadata, type index_d$9_BulkBrandsResult as BulkBrandsResult, type index_d$9_BulkCreateBrandsOptions as BulkCreateBrandsOptions, type index_d$9_BulkCreateBrandsRequest as BulkCreateBrandsRequest, type index_d$9_BulkCreateBrandsResponse as BulkCreateBrandsResponse, type index_d$9_BulkCreateBrandsResponseNonNullableFields as BulkCreateBrandsResponseNonNullableFields, type index_d$9_BulkDeleteBrandsRequest as BulkDeleteBrandsRequest, type index_d$9_BulkDeleteBrandsResponse as BulkDeleteBrandsResponse, type index_d$9_BulkDeleteBrandsResponseBulkBrandsResult as BulkDeleteBrandsResponseBulkBrandsResult, type index_d$9_BulkDeleteBrandsResponseNonNullableFields as BulkDeleteBrandsResponseNonNullableFields, type index_d$9_BulkGetOrCreateBrandsOptions as BulkGetOrCreateBrandsOptions, type index_d$9_BulkGetOrCreateBrandsRequest as BulkGetOrCreateBrandsRequest, type index_d$9_BulkGetOrCreateBrandsResponse as BulkGetOrCreateBrandsResponse, type index_d$9_BulkGetOrCreateBrandsResponseNonNullableFields as BulkGetOrCreateBrandsResponseNonNullableFields, type index_d$9_BulkUpdateBrandsOptions as BulkUpdateBrandsOptions, type index_d$9_BulkUpdateBrandsRequest as BulkUpdateBrandsRequest, type index_d$9_BulkUpdateBrandsResponse as BulkUpdateBrandsResponse, type index_d$9_BulkUpdateBrandsResponseNonNullableFields as BulkUpdateBrandsResponseNonNullableFields, type index_d$9_CreateBrandRequest as CreateBrandRequest, type index_d$9_CreateBrandResponse as CreateBrandResponse, type index_d$9_CreateBrandResponseNonNullableFields as CreateBrandResponseNonNullableFields, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$5 as CursorQuery, type CursorQueryPagingMethodOneOf$5 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type index_d$9_DeleteBrandRequest as DeleteBrandRequest, type index_d$9_DeleteBrandResponse as DeleteBrandResponse, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type Empty$7 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type EventMetadata$5 as EventMetadata, type File$6 as File, type index_d$9_GetBrandOptions as GetBrandOptions, type index_d$9_GetBrandRequest as GetBrandRequest, type index_d$9_GetBrandResponse as GetBrandResponse, type index_d$9_GetBrandResponseNonNullableFields as GetBrandResponseNonNullableFields, type index_d$9_GetOrCreateBrandOptions as GetOrCreateBrandOptions, type index_d$9_GetOrCreateBrandRequest as GetOrCreateBrandRequest, type index_d$9_GetOrCreateBrandResponse as GetOrCreateBrandResponse, type index_d$9_GetOrCreateBrandResponseNonNullableFields as GetOrCreateBrandResponseNonNullableFields, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, type InvalidateCache$6 as InvalidateCache, type InvalidateCacheGetByOneOf$6 as InvalidateCacheGetByOneOf, type ItemMetadata$5 as ItemMetadata, type index_d$9_MaskedBrand as MaskedBrand, type MessageEnvelope$8 as MessageEnvelope, type Page$6 as Page, type index_d$9_QueryBrandsOptions as QueryBrandsOptions, type index_d$9_QueryBrandsRequest as QueryBrandsRequest, type index_d$9_QueryBrandsResponse as QueryBrandsResponse, type index_d$9_QueryBrandsResponseNonNullableFields as QueryBrandsResponseNonNullableFields, RequestedFields$4 as RequestedFields, type RestoreInfo$6 as RestoreInfo, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, type URI$6 as URI, type index_d$9_UpdateBrand as UpdateBrand, type index_d$9_UpdateBrandOptions as UpdateBrandOptions, type index_d$9_UpdateBrandRequest as UpdateBrandRequest, type index_d$9_UpdateBrandResponse as UpdateBrandResponse, type index_d$9_UpdateBrandResponseNonNullableFields as UpdateBrandResponseNonNullableFields, WebhookIdentityType$8 as WebhookIdentityType, type index_d$9__publicBulkCreateBrandsType as _publicBulkCreateBrandsType, type index_d$9__publicBulkDeleteBrandsType as _publicBulkDeleteBrandsType, type index_d$9__publicBulkGetOrCreateBrandsType as _publicBulkGetOrCreateBrandsType, type index_d$9__publicBulkUpdateBrandsType as _publicBulkUpdateBrandsType, type index_d$9__publicCreateBrandType as _publicCreateBrandType, type index_d$9__publicDeleteBrandType as _publicDeleteBrandType, type index_d$9__publicGetBrandType as _publicGetBrandType, type index_d$9__publicGetOrCreateBrandType as _publicGetOrCreateBrandType, type index_d$9__publicOnBrandCreatedType as _publicOnBrandCreatedType, type index_d$9__publicOnBrandDeletedType as _publicOnBrandDeletedType, type index_d$9__publicOnBrandUpdatedType as _publicOnBrandUpdatedType, type index_d$9__publicQueryBrandsType as _publicQueryBrandsType, type index_d$9__publicUpdateBrandType as _publicUpdateBrandType, index_d$9_bulkCreateBrands as bulkCreateBrands, index_d$9_bulkDeleteBrands as bulkDeleteBrands, index_d$9_bulkGetOrCreateBrands as bulkGetOrCreateBrands, index_d$9_bulkUpdateBrands as bulkUpdateBrands, index_d$9_createBrand as createBrand, index_d$9_deleteBrand as deleteBrand, index_d$9_getBrand as getBrand, index_d$9_getOrCreateBrand as getOrCreateBrand, index_d$9_onBrandCreated as onBrandCreated, index_d$9_onBrandDeleted as onBrandDeleted, index_d$9_onBrandUpdated as onBrandUpdated, onBrandCreated$1 as publicOnBrandCreated, onBrandDeleted$1 as publicOnBrandDeleted, onBrandUpdated$1 as publicOnBrandUpdated, index_d$9_queryBrands as queryBrands, index_d$9_updateBrand as updateBrand };
|
|
3697
3858
|
}
|
|
3698
3859
|
|
|
3699
3860
|
/**
|
|
@@ -4652,24 +4813,56 @@ interface BulkUpdateCustomizationsOptions {
|
|
|
4652
4813
|
fields?: RequestedFields$3[];
|
|
4653
4814
|
}
|
|
4654
4815
|
|
|
4816
|
+
declare function createCustomization$1(httpClient: HttpClient): (customization: Customization) => Promise<Customization & CustomizationNonNullableFields>;
|
|
4817
|
+
declare function getCustomization$1(httpClient: HttpClient): (customizationId: string, options?: GetCustomizationOptions) => Promise<Customization & CustomizationNonNullableFields>;
|
|
4818
|
+
declare function updateCustomization$1(httpClient: HttpClient): (_id: string | null, customization: UpdateCustomization, options?: UpdateCustomizationOptions) => Promise<Customization & CustomizationNonNullableFields>;
|
|
4819
|
+
declare function deleteCustomization$1(httpClient: HttpClient): (customizationId: string) => Promise<void>;
|
|
4820
|
+
declare function queryCustomizations$1(httpClient: HttpClient): (options?: QueryCustomizationsOptions) => CustomizationsQueryBuilder;
|
|
4821
|
+
declare function bulkCreateCustomizations$1(httpClient: HttpClient): (customizations: Customization[], options?: BulkCreateCustomizationsOptions) => Promise<BulkCreateCustomizationsResponse & BulkCreateCustomizationsResponseNonNullableFields>;
|
|
4822
|
+
declare function addCustomizationChoices$1(httpClient: HttpClient): (customizationId: string, choices: Choice[], options?: AddCustomizationChoicesOptions) => Promise<AddCustomizationChoicesResponse & AddCustomizationChoicesResponseNonNullableFields>;
|
|
4823
|
+
declare function setCustomizationChoices$1(httpClient: HttpClient): (customizationId: string, choices: Choice[], options?: SetCustomizationChoicesOptions) => Promise<SetCustomizationChoicesResponse & SetCustomizationChoicesResponseNonNullableFields>;
|
|
4824
|
+
declare function removeCustomizationChoices$1(httpClient: HttpClient): (customizationId: string, choiceIds: string[], options?: RemoveCustomizationChoicesOptions) => Promise<RemoveCustomizationChoicesResponse & RemoveCustomizationChoicesResponseNonNullableFields>;
|
|
4825
|
+
declare function bulkAddCustomizationChoices$1(httpClient: HttpClient): (customizationsChoices: CustomizationChoices[], options?: BulkAddCustomizationChoicesOptions) => Promise<BulkAddCustomizationChoicesResponse & BulkAddCustomizationChoicesResponseNonNullableFields>;
|
|
4826
|
+
declare function bulkUpdateCustomizations$1(httpClient: HttpClient): (customizations: MaskedCustomization[], options?: BulkUpdateCustomizationsOptions) => Promise<BulkUpdateCustomizationsResponse & BulkUpdateCustomizationsResponseNonNullableFields>;
|
|
4827
|
+
declare const onCustomizationCreated$1: EventDefinition<CustomizationCreatedEnvelope, "wix.stores.catalog.v3.customization_created">;
|
|
4828
|
+
declare const onCustomizationUpdated$1: EventDefinition<CustomizationUpdatedEnvelope, "wix.stores.catalog.v3.customization_updated">;
|
|
4829
|
+
declare const onCustomizationDeleted$1: EventDefinition<CustomizationDeletedEnvelope, "wix.stores.catalog.v3.customization_deleted">;
|
|
4830
|
+
|
|
4655
4831
|
declare function createRESTModule$8<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4656
4832
|
|
|
4657
4833
|
declare function createEventModule$5<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4658
4834
|
|
|
4659
|
-
|
|
4660
|
-
declare const
|
|
4661
|
-
|
|
4662
|
-
declare const
|
|
4663
|
-
|
|
4664
|
-
declare const
|
|
4665
|
-
|
|
4666
|
-
declare const
|
|
4667
|
-
|
|
4668
|
-
declare const
|
|
4669
|
-
|
|
4670
|
-
declare const
|
|
4671
|
-
|
|
4672
|
-
declare const
|
|
4835
|
+
type _publicCreateCustomizationType = typeof createCustomization$1;
|
|
4836
|
+
declare const createCustomization: ReturnType<typeof createRESTModule$8<_publicCreateCustomizationType>>;
|
|
4837
|
+
type _publicGetCustomizationType = typeof getCustomization$1;
|
|
4838
|
+
declare const getCustomization: ReturnType<typeof createRESTModule$8<_publicGetCustomizationType>>;
|
|
4839
|
+
type _publicUpdateCustomizationType = typeof updateCustomization$1;
|
|
4840
|
+
declare const updateCustomization: ReturnType<typeof createRESTModule$8<_publicUpdateCustomizationType>>;
|
|
4841
|
+
type _publicDeleteCustomizationType = typeof deleteCustomization$1;
|
|
4842
|
+
declare const deleteCustomization: ReturnType<typeof createRESTModule$8<_publicDeleteCustomizationType>>;
|
|
4843
|
+
type _publicQueryCustomizationsType = typeof queryCustomizations$1;
|
|
4844
|
+
declare const queryCustomizations: ReturnType<typeof createRESTModule$8<_publicQueryCustomizationsType>>;
|
|
4845
|
+
type _publicBulkCreateCustomizationsType = typeof bulkCreateCustomizations$1;
|
|
4846
|
+
declare const bulkCreateCustomizations: ReturnType<typeof createRESTModule$8<_publicBulkCreateCustomizationsType>>;
|
|
4847
|
+
type _publicAddCustomizationChoicesType = typeof addCustomizationChoices$1;
|
|
4848
|
+
declare const addCustomizationChoices: ReturnType<typeof createRESTModule$8<_publicAddCustomizationChoicesType>>;
|
|
4849
|
+
type _publicSetCustomizationChoicesType = typeof setCustomizationChoices$1;
|
|
4850
|
+
declare const setCustomizationChoices: ReturnType<typeof createRESTModule$8<_publicSetCustomizationChoicesType>>;
|
|
4851
|
+
type _publicRemoveCustomizationChoicesType = typeof removeCustomizationChoices$1;
|
|
4852
|
+
declare const removeCustomizationChoices: ReturnType<typeof createRESTModule$8<_publicRemoveCustomizationChoicesType>>;
|
|
4853
|
+
type _publicBulkAddCustomizationChoicesType = typeof bulkAddCustomizationChoices$1;
|
|
4854
|
+
declare const bulkAddCustomizationChoices: ReturnType<typeof createRESTModule$8<_publicBulkAddCustomizationChoicesType>>;
|
|
4855
|
+
type _publicBulkUpdateCustomizationsType = typeof bulkUpdateCustomizations$1;
|
|
4856
|
+
declare const bulkUpdateCustomizations: ReturnType<typeof createRESTModule$8<_publicBulkUpdateCustomizationsType>>;
|
|
4857
|
+
|
|
4858
|
+
type _publicOnCustomizationCreatedType = typeof onCustomizationCreated$1;
|
|
4859
|
+
declare const onCustomizationCreated: ReturnType<typeof createEventModule$5<_publicOnCustomizationCreatedType>>;
|
|
4860
|
+
|
|
4861
|
+
type _publicOnCustomizationUpdatedType = typeof onCustomizationUpdated$1;
|
|
4862
|
+
declare const onCustomizationUpdated: ReturnType<typeof createEventModule$5<_publicOnCustomizationUpdatedType>>;
|
|
4863
|
+
|
|
4864
|
+
type _publicOnCustomizationDeletedType = typeof onCustomizationDeleted$1;
|
|
4865
|
+
declare const onCustomizationDeleted: ReturnType<typeof createEventModule$5<_publicOnCustomizationDeletedType>>;
|
|
4673
4866
|
|
|
4674
4867
|
type index_d$8_AddCustomizationChoicesOptions = AddCustomizationChoicesOptions;
|
|
4675
4868
|
type index_d$8_AddCustomizationChoicesRequest = AddCustomizationChoicesRequest;
|
|
@@ -4731,6 +4924,20 @@ type index_d$8_UpdateCustomizationOptions = UpdateCustomizationOptions;
|
|
|
4731
4924
|
type index_d$8_UpdateCustomizationRequest = UpdateCustomizationRequest;
|
|
4732
4925
|
type index_d$8_UpdateCustomizationResponse = UpdateCustomizationResponse;
|
|
4733
4926
|
type index_d$8_UpdateCustomizationResponseNonNullableFields = UpdateCustomizationResponseNonNullableFields;
|
|
4927
|
+
type index_d$8__publicAddCustomizationChoicesType = _publicAddCustomizationChoicesType;
|
|
4928
|
+
type index_d$8__publicBulkAddCustomizationChoicesType = _publicBulkAddCustomizationChoicesType;
|
|
4929
|
+
type index_d$8__publicBulkCreateCustomizationsType = _publicBulkCreateCustomizationsType;
|
|
4930
|
+
type index_d$8__publicBulkUpdateCustomizationsType = _publicBulkUpdateCustomizationsType;
|
|
4931
|
+
type index_d$8__publicCreateCustomizationType = _publicCreateCustomizationType;
|
|
4932
|
+
type index_d$8__publicDeleteCustomizationType = _publicDeleteCustomizationType;
|
|
4933
|
+
type index_d$8__publicGetCustomizationType = _publicGetCustomizationType;
|
|
4934
|
+
type index_d$8__publicOnCustomizationCreatedType = _publicOnCustomizationCreatedType;
|
|
4935
|
+
type index_d$8__publicOnCustomizationDeletedType = _publicOnCustomizationDeletedType;
|
|
4936
|
+
type index_d$8__publicOnCustomizationUpdatedType = _publicOnCustomizationUpdatedType;
|
|
4937
|
+
type index_d$8__publicQueryCustomizationsType = _publicQueryCustomizationsType;
|
|
4938
|
+
type index_d$8__publicRemoveCustomizationChoicesType = _publicRemoveCustomizationChoicesType;
|
|
4939
|
+
type index_d$8__publicSetCustomizationChoicesType = _publicSetCustomizationChoicesType;
|
|
4940
|
+
type index_d$8__publicUpdateCustomizationType = _publicUpdateCustomizationType;
|
|
4734
4941
|
declare const index_d$8_addCustomizationChoices: typeof addCustomizationChoices;
|
|
4735
4942
|
declare const index_d$8_bulkAddCustomizationChoices: typeof bulkAddCustomizationChoices;
|
|
4736
4943
|
declare const index_d$8_bulkCreateCustomizations: typeof bulkCreateCustomizations;
|
|
@@ -4746,7 +4953,7 @@ declare const index_d$8_removeCustomizationChoices: typeof removeCustomizationCh
|
|
|
4746
4953
|
declare const index_d$8_setCustomizationChoices: typeof setCustomizationChoices;
|
|
4747
4954
|
declare const index_d$8_updateCustomization: typeof updateCustomization;
|
|
4748
4955
|
declare namespace index_d$8 {
|
|
4749
|
-
export { type ActionEvent$5 as ActionEvent, type index_d$8_AddCustomizationChoicesOptions as AddCustomizationChoicesOptions, type index_d$8_AddCustomizationChoicesRequest as AddCustomizationChoicesRequest, type index_d$8_AddCustomizationChoicesResponse as AddCustomizationChoicesResponse, type index_d$8_AddCustomizationChoicesResponseNonNullableFields as AddCustomizationChoicesResponseNonNullableFields, type App$5 as App, type ApplicationError$4 as ApplicationError, type BaseEventMetadata$5 as BaseEventMetadata, type BulkActionMetadata$4 as BulkActionMetadata, type index_d$8_BulkAddCustomizationChoicesOptions as BulkAddCustomizationChoicesOptions, type index_d$8_BulkAddCustomizationChoicesRequest as BulkAddCustomizationChoicesRequest, type index_d$8_BulkAddCustomizationChoicesResponse as BulkAddCustomizationChoicesResponse, type index_d$8_BulkAddCustomizationChoicesResponseNonNullableFields as BulkAddCustomizationChoicesResponseNonNullableFields, type index_d$8_BulkCreateCustomizationsOptions as BulkCreateCustomizationsOptions, type index_d$8_BulkCreateCustomizationsRequest as BulkCreateCustomizationsRequest, type index_d$8_BulkCreateCustomizationsResponse as BulkCreateCustomizationsResponse, type index_d$8_BulkCreateCustomizationsResponseNonNullableFields as BulkCreateCustomizationsResponseNonNullableFields, type index_d$8_BulkCustomizationResult as BulkCustomizationResult, type index_d$8_BulkUpdateCustomizationsOptions as BulkUpdateCustomizationsOptions, type index_d$8_BulkUpdateCustomizationsRequest as BulkUpdateCustomizationsRequest, type index_d$8_BulkUpdateCustomizationsResponse as BulkUpdateCustomizationsResponse, type index_d$8_BulkUpdateCustomizationsResponseNonNullableFields as BulkUpdateCustomizationsResponseNonNullableFields, type index_d$8_Choice as Choice, ChoiceType$1 as ChoiceType, type index_d$8_ChoiceValueOneOf as ChoiceValueOneOf, type ChoicesSettings$1 as ChoicesSettings, type index_d$8_CreateCustomizationRequest as CreateCustomizationRequest, type index_d$8_CreateCustomizationResponse as CreateCustomizationResponse, type index_d$8_CreateCustomizationResponseNonNullableFields as CreateCustomizationResponseNonNullableFields, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_Customization as Customization, type index_d$8_CustomizationChoices as CustomizationChoices, type index_d$8_CustomizationCreatedEnvelope as CustomizationCreatedEnvelope, type index_d$8_CustomizationCustomizationSettingsOneOf as CustomizationCustomizationSettingsOneOf, type index_d$8_CustomizationDeletedEnvelope as CustomizationDeletedEnvelope, type index_d$8_CustomizationIdsWrapper as CustomizationIdsWrapper, type index_d$8_CustomizationNonNullableFields as CustomizationNonNullableFields, index_d$8_CustomizationRenderType as CustomizationRenderType, index_d$8_CustomizationType as CustomizationType, type index_d$8_CustomizationUpdatedEnvelope as CustomizationUpdatedEnvelope, type index_d$8_CustomizationsQueryBuilder as CustomizationsQueryBuilder, type index_d$8_CustomizationsQueryResult as CustomizationsQueryResult, type index_d$8_DeleteCustomizationRequest as DeleteCustomizationRequest, type index_d$8_DeleteCustomizationResponse as DeleteCustomizationResponse, type DomainEvent$5 as DomainEvent, type DomainEventBodyOneOf$5 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$5 as EntityCreatedEvent, type EntityDeletedEvent$5 as EntityDeletedEvent, type EntityUpdatedEvent$5 as EntityUpdatedEvent, type EventMetadata$4 as EventMetadata, type File$5 as File, type FreeTextSettings$1 as FreeTextSettings, type index_d$8_GetCustomizationOptions as GetCustomizationOptions, type index_d$8_GetCustomizationRequest as GetCustomizationRequest, type index_d$8_GetCustomizationResponse as GetCustomizationResponse, type index_d$8_GetCustomizationResponseNonNullableFields as GetCustomizationResponseNonNullableFields, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type InvalidateCache$5 as InvalidateCache, type InvalidateCacheGetByOneOf$5 as InvalidateCacheGetByOneOf, type ItemMetadata$4 as ItemMetadata, type index_d$8_MaskedCustomization as MaskedCustomization, type MessageEnvelope$7 as MessageEnvelope, type MultipleColors$1 as MultipleColors, type Page$5 as Page, type index_d$8_QueryCustomizationsOptions as QueryCustomizationsOptions, type index_d$8_QueryCustomizationsRequest as QueryCustomizationsRequest, type index_d$8_QueryCustomizationsResponse as QueryCustomizationsResponse, type index_d$8_QueryCustomizationsResponseNonNullableFields as QueryCustomizationsResponseNonNullableFields, type index_d$8_RemoveCustomizationChoicesOptions as RemoveCustomizationChoicesOptions, type index_d$8_RemoveCustomizationChoicesRequest as RemoveCustomizationChoicesRequest, type index_d$8_RemoveCustomizationChoicesResponse as RemoveCustomizationChoicesResponse, type index_d$8_RemoveCustomizationChoicesResponseNonNullableFields as RemoveCustomizationChoicesResponseNonNullableFields, RequestedFields$3 as RequestedFields, type RestoreInfo$5 as RestoreInfo, type index_d$8_SetCustomizationChoicesOptions as SetCustomizationChoicesOptions, type index_d$8_SetCustomizationChoicesRequest as SetCustomizationChoicesRequest, type index_d$8_SetCustomizationChoicesResponse as SetCustomizationChoicesResponse, type index_d$8_SetCustomizationChoicesResponseNonNullableFields as SetCustomizationChoicesResponseNonNullableFields, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type URI$5 as URI, type index_d$8_UpdateCustomization as UpdateCustomization, type index_d$8_UpdateCustomizationOptions as UpdateCustomizationOptions, type index_d$8_UpdateCustomizationRequest as UpdateCustomizationRequest, type index_d$8_UpdateCustomizationResponse as UpdateCustomizationResponse, type index_d$8_UpdateCustomizationResponseNonNullableFields as UpdateCustomizationResponseNonNullableFields, WebhookIdentityType$7 as WebhookIdentityType, index_d$8_addCustomizationChoices as addCustomizationChoices, index_d$8_bulkAddCustomizationChoices as bulkAddCustomizationChoices, index_d$8_bulkCreateCustomizations as bulkCreateCustomizations, index_d$8_bulkUpdateCustomizations as bulkUpdateCustomizations, index_d$8_createCustomization as createCustomization, index_d$8_deleteCustomization as deleteCustomization, index_d$8_getCustomization as getCustomization, index_d$8_onCustomizationCreated as onCustomizationCreated, index_d$8_onCustomizationDeleted as onCustomizationDeleted, index_d$8_onCustomizationUpdated as onCustomizationUpdated, index_d$8_queryCustomizations as queryCustomizations, index_d$8_removeCustomizationChoices as removeCustomizationChoices, index_d$8_setCustomizationChoices as setCustomizationChoices, index_d$8_updateCustomization as updateCustomization };
|
|
4956
|
+
export { type ActionEvent$5 as ActionEvent, type index_d$8_AddCustomizationChoicesOptions as AddCustomizationChoicesOptions, type index_d$8_AddCustomizationChoicesRequest as AddCustomizationChoicesRequest, type index_d$8_AddCustomizationChoicesResponse as AddCustomizationChoicesResponse, type index_d$8_AddCustomizationChoicesResponseNonNullableFields as AddCustomizationChoicesResponseNonNullableFields, type App$5 as App, type ApplicationError$4 as ApplicationError, type BaseEventMetadata$5 as BaseEventMetadata, type BulkActionMetadata$4 as BulkActionMetadata, type index_d$8_BulkAddCustomizationChoicesOptions as BulkAddCustomizationChoicesOptions, type index_d$8_BulkAddCustomizationChoicesRequest as BulkAddCustomizationChoicesRequest, type index_d$8_BulkAddCustomizationChoicesResponse as BulkAddCustomizationChoicesResponse, type index_d$8_BulkAddCustomizationChoicesResponseNonNullableFields as BulkAddCustomizationChoicesResponseNonNullableFields, type index_d$8_BulkCreateCustomizationsOptions as BulkCreateCustomizationsOptions, type index_d$8_BulkCreateCustomizationsRequest as BulkCreateCustomizationsRequest, type index_d$8_BulkCreateCustomizationsResponse as BulkCreateCustomizationsResponse, type index_d$8_BulkCreateCustomizationsResponseNonNullableFields as BulkCreateCustomizationsResponseNonNullableFields, type index_d$8_BulkCustomizationResult as BulkCustomizationResult, type index_d$8_BulkUpdateCustomizationsOptions as BulkUpdateCustomizationsOptions, type index_d$8_BulkUpdateCustomizationsRequest as BulkUpdateCustomizationsRequest, type index_d$8_BulkUpdateCustomizationsResponse as BulkUpdateCustomizationsResponse, type index_d$8_BulkUpdateCustomizationsResponseNonNullableFields as BulkUpdateCustomizationsResponseNonNullableFields, type index_d$8_Choice as Choice, ChoiceType$1 as ChoiceType, type index_d$8_ChoiceValueOneOf as ChoiceValueOneOf, type ChoicesSettings$1 as ChoicesSettings, type index_d$8_CreateCustomizationRequest as CreateCustomizationRequest, type index_d$8_CreateCustomizationResponse as CreateCustomizationResponse, type index_d$8_CreateCustomizationResponseNonNullableFields as CreateCustomizationResponseNonNullableFields, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_Customization as Customization, type index_d$8_CustomizationChoices as CustomizationChoices, type index_d$8_CustomizationCreatedEnvelope as CustomizationCreatedEnvelope, type index_d$8_CustomizationCustomizationSettingsOneOf as CustomizationCustomizationSettingsOneOf, type index_d$8_CustomizationDeletedEnvelope as CustomizationDeletedEnvelope, type index_d$8_CustomizationIdsWrapper as CustomizationIdsWrapper, type index_d$8_CustomizationNonNullableFields as CustomizationNonNullableFields, index_d$8_CustomizationRenderType as CustomizationRenderType, index_d$8_CustomizationType as CustomizationType, type index_d$8_CustomizationUpdatedEnvelope as CustomizationUpdatedEnvelope, type index_d$8_CustomizationsQueryBuilder as CustomizationsQueryBuilder, type index_d$8_CustomizationsQueryResult as CustomizationsQueryResult, type index_d$8_DeleteCustomizationRequest as DeleteCustomizationRequest, type index_d$8_DeleteCustomizationResponse as DeleteCustomizationResponse, type DomainEvent$5 as DomainEvent, type DomainEventBodyOneOf$5 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$5 as EntityCreatedEvent, type EntityDeletedEvent$5 as EntityDeletedEvent, type EntityUpdatedEvent$5 as EntityUpdatedEvent, type EventMetadata$4 as EventMetadata, type File$5 as File, type FreeTextSettings$1 as FreeTextSettings, type index_d$8_GetCustomizationOptions as GetCustomizationOptions, type index_d$8_GetCustomizationRequest as GetCustomizationRequest, type index_d$8_GetCustomizationResponse as GetCustomizationResponse, type index_d$8_GetCustomizationResponseNonNullableFields as GetCustomizationResponseNonNullableFields, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type InvalidateCache$5 as InvalidateCache, type InvalidateCacheGetByOneOf$5 as InvalidateCacheGetByOneOf, type ItemMetadata$4 as ItemMetadata, type index_d$8_MaskedCustomization as MaskedCustomization, type MessageEnvelope$7 as MessageEnvelope, type MultipleColors$1 as MultipleColors, type Page$5 as Page, type index_d$8_QueryCustomizationsOptions as QueryCustomizationsOptions, type index_d$8_QueryCustomizationsRequest as QueryCustomizationsRequest, type index_d$8_QueryCustomizationsResponse as QueryCustomizationsResponse, type index_d$8_QueryCustomizationsResponseNonNullableFields as QueryCustomizationsResponseNonNullableFields, type index_d$8_RemoveCustomizationChoicesOptions as RemoveCustomizationChoicesOptions, type index_d$8_RemoveCustomizationChoicesRequest as RemoveCustomizationChoicesRequest, type index_d$8_RemoveCustomizationChoicesResponse as RemoveCustomizationChoicesResponse, type index_d$8_RemoveCustomizationChoicesResponseNonNullableFields as RemoveCustomizationChoicesResponseNonNullableFields, RequestedFields$3 as RequestedFields, type RestoreInfo$5 as RestoreInfo, type index_d$8_SetCustomizationChoicesOptions as SetCustomizationChoicesOptions, type index_d$8_SetCustomizationChoicesRequest as SetCustomizationChoicesRequest, type index_d$8_SetCustomizationChoicesResponse as SetCustomizationChoicesResponse, type index_d$8_SetCustomizationChoicesResponseNonNullableFields as SetCustomizationChoicesResponseNonNullableFields, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type URI$5 as URI, type index_d$8_UpdateCustomization as UpdateCustomization, type index_d$8_UpdateCustomizationOptions as UpdateCustomizationOptions, type index_d$8_UpdateCustomizationRequest as UpdateCustomizationRequest, type index_d$8_UpdateCustomizationResponse as UpdateCustomizationResponse, type index_d$8_UpdateCustomizationResponseNonNullableFields as UpdateCustomizationResponseNonNullableFields, WebhookIdentityType$7 as WebhookIdentityType, type index_d$8__publicAddCustomizationChoicesType as _publicAddCustomizationChoicesType, type index_d$8__publicBulkAddCustomizationChoicesType as _publicBulkAddCustomizationChoicesType, type index_d$8__publicBulkCreateCustomizationsType as _publicBulkCreateCustomizationsType, type index_d$8__publicBulkUpdateCustomizationsType as _publicBulkUpdateCustomizationsType, type index_d$8__publicCreateCustomizationType as _publicCreateCustomizationType, type index_d$8__publicDeleteCustomizationType as _publicDeleteCustomizationType, type index_d$8__publicGetCustomizationType as _publicGetCustomizationType, type index_d$8__publicOnCustomizationCreatedType as _publicOnCustomizationCreatedType, type index_d$8__publicOnCustomizationDeletedType as _publicOnCustomizationDeletedType, type index_d$8__publicOnCustomizationUpdatedType as _publicOnCustomizationUpdatedType, type index_d$8__publicQueryCustomizationsType as _publicQueryCustomizationsType, type index_d$8__publicRemoveCustomizationChoicesType as _publicRemoveCustomizationChoicesType, type index_d$8__publicSetCustomizationChoicesType as _publicSetCustomizationChoicesType, type index_d$8__publicUpdateCustomizationType as _publicUpdateCustomizationType, index_d$8_addCustomizationChoices as addCustomizationChoices, index_d$8_bulkAddCustomizationChoices as bulkAddCustomizationChoices, index_d$8_bulkCreateCustomizations as bulkCreateCustomizations, index_d$8_bulkUpdateCustomizations as bulkUpdateCustomizations, index_d$8_createCustomization as createCustomization, index_d$8_deleteCustomization as deleteCustomization, index_d$8_getCustomization as getCustomization, index_d$8_onCustomizationCreated as onCustomizationCreated, index_d$8_onCustomizationDeleted as onCustomizationDeleted, index_d$8_onCustomizationUpdated as onCustomizationUpdated, onCustomizationCreated$1 as publicOnCustomizationCreated, onCustomizationDeleted$1 as publicOnCustomizationDeleted, onCustomizationUpdated$1 as publicOnCustomizationUpdated, index_d$8_queryCustomizations as queryCustomizations, index_d$8_removeCustomizationChoices as removeCustomizationChoices, index_d$8_setCustomizationChoices as setCustomizationChoices, index_d$8_updateCustomization as updateCustomization };
|
|
4750
4957
|
}
|
|
4751
4958
|
|
|
4752
4959
|
/**
|
|
@@ -7037,23 +7244,53 @@ interface BulkUpdateInfoSectionsOptions {
|
|
|
7037
7244
|
fields?: RequestedFields$2[];
|
|
7038
7245
|
}
|
|
7039
7246
|
|
|
7247
|
+
declare function createInfoSection$1(httpClient: HttpClient): (infoSection: InfoSection$1) => Promise<InfoSection$1 & InfoSectionNonNullableFields$1>;
|
|
7248
|
+
declare function getInfoSection$1(httpClient: HttpClient): (infoSectionId: string, options?: GetInfoSectionOptions) => Promise<InfoSection$1 & InfoSectionNonNullableFields$1>;
|
|
7249
|
+
declare function getOrCreateInfoSection$1(httpClient: HttpClient): (options?: GetOrCreateInfoSectionOptions) => Promise<GetOrCreateInfoSectionResponse & GetOrCreateInfoSectionResponseNonNullableFields>;
|
|
7250
|
+
declare function bulkGetOrCreateInfoSections$1(httpClient: HttpClient): (options?: BulkGetOrCreateInfoSectionsOptions) => Promise<BulkGetOrCreateInfoSectionsResponse & BulkGetOrCreateInfoSectionsResponseNonNullableFields>;
|
|
7251
|
+
declare function updateInfoSection$1(httpClient: HttpClient): (_id: string | null, infoSection: UpdateInfoSection, options?: UpdateInfoSectionOptions) => Promise<InfoSection$1 & InfoSectionNonNullableFields$1>;
|
|
7252
|
+
declare function deleteInfoSection$1(httpClient: HttpClient): (infoSectionId: string) => Promise<void>;
|
|
7253
|
+
declare function queryInfoSections$1(httpClient: HttpClient): (options?: QueryInfoSectionsOptions) => InfoSectionsQueryBuilder;
|
|
7254
|
+
declare function bulkCreateInfoSections$1(httpClient: HttpClient): (infoSections: InfoSection$1[], options?: BulkCreateInfoSectionsOptions) => Promise<BulkCreateInfoSectionsResponse & BulkCreateInfoSectionsResponseNonNullableFields>;
|
|
7255
|
+
declare function bulkUpdateInfoSections$1(httpClient: HttpClient): (infoSections: MaskedInfoSection[], options?: BulkUpdateInfoSectionsOptions) => Promise<BulkUpdateInfoSectionsResponse & BulkUpdateInfoSectionsResponseNonNullableFields>;
|
|
7256
|
+
declare function bulkDeleteInfoSections$1(httpClient: HttpClient): (infoSectionIds: string[]) => Promise<BulkDeleteInfoSectionsResponse & BulkDeleteInfoSectionsResponseNonNullableFields>;
|
|
7257
|
+
declare const onInfoSectionCreated$1: EventDefinition<InfoSectionCreatedEnvelope, "wix.stores.catalog.v3.info_section_created">;
|
|
7258
|
+
declare const onInfoSectionUpdated$1: EventDefinition<InfoSectionUpdatedEnvelope, "wix.stores.catalog.v3.info_section_updated">;
|
|
7259
|
+
declare const onInfoSectionDeleted$1: EventDefinition<InfoSectionDeletedEnvelope, "wix.stores.catalog.v3.info_section_deleted">;
|
|
7260
|
+
|
|
7040
7261
|
declare function createRESTModule$7<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
7041
7262
|
|
|
7042
7263
|
declare function createEventModule$4<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
7043
7264
|
|
|
7044
|
-
|
|
7045
|
-
declare const
|
|
7046
|
-
|
|
7047
|
-
declare const
|
|
7048
|
-
|
|
7049
|
-
declare const
|
|
7050
|
-
|
|
7051
|
-
declare const
|
|
7052
|
-
|
|
7053
|
-
declare const
|
|
7054
|
-
|
|
7055
|
-
declare const
|
|
7056
|
-
|
|
7265
|
+
type _publicCreateInfoSectionType = typeof createInfoSection$1;
|
|
7266
|
+
declare const createInfoSection: ReturnType<typeof createRESTModule$7<_publicCreateInfoSectionType>>;
|
|
7267
|
+
type _publicGetInfoSectionType = typeof getInfoSection$1;
|
|
7268
|
+
declare const getInfoSection: ReturnType<typeof createRESTModule$7<_publicGetInfoSectionType>>;
|
|
7269
|
+
type _publicGetOrCreateInfoSectionType = typeof getOrCreateInfoSection$1;
|
|
7270
|
+
declare const getOrCreateInfoSection: ReturnType<typeof createRESTModule$7<_publicGetOrCreateInfoSectionType>>;
|
|
7271
|
+
type _publicBulkGetOrCreateInfoSectionsType = typeof bulkGetOrCreateInfoSections$1;
|
|
7272
|
+
declare const bulkGetOrCreateInfoSections: ReturnType<typeof createRESTModule$7<_publicBulkGetOrCreateInfoSectionsType>>;
|
|
7273
|
+
type _publicUpdateInfoSectionType = typeof updateInfoSection$1;
|
|
7274
|
+
declare const updateInfoSection: ReturnType<typeof createRESTModule$7<_publicUpdateInfoSectionType>>;
|
|
7275
|
+
type _publicDeleteInfoSectionType = typeof deleteInfoSection$1;
|
|
7276
|
+
declare const deleteInfoSection: ReturnType<typeof createRESTModule$7<_publicDeleteInfoSectionType>>;
|
|
7277
|
+
type _publicQueryInfoSectionsType = typeof queryInfoSections$1;
|
|
7278
|
+
declare const queryInfoSections: ReturnType<typeof createRESTModule$7<_publicQueryInfoSectionsType>>;
|
|
7279
|
+
type _publicBulkCreateInfoSectionsType = typeof bulkCreateInfoSections$1;
|
|
7280
|
+
declare const bulkCreateInfoSections: ReturnType<typeof createRESTModule$7<_publicBulkCreateInfoSectionsType>>;
|
|
7281
|
+
type _publicBulkUpdateInfoSectionsType = typeof bulkUpdateInfoSections$1;
|
|
7282
|
+
declare const bulkUpdateInfoSections: ReturnType<typeof createRESTModule$7<_publicBulkUpdateInfoSectionsType>>;
|
|
7283
|
+
type _publicBulkDeleteInfoSectionsType = typeof bulkDeleteInfoSections$1;
|
|
7284
|
+
declare const bulkDeleteInfoSections: ReturnType<typeof createRESTModule$7<_publicBulkDeleteInfoSectionsType>>;
|
|
7285
|
+
|
|
7286
|
+
type _publicOnInfoSectionCreatedType = typeof onInfoSectionCreated$1;
|
|
7287
|
+
declare const onInfoSectionCreated: ReturnType<typeof createEventModule$4<_publicOnInfoSectionCreatedType>>;
|
|
7288
|
+
|
|
7289
|
+
type _publicOnInfoSectionUpdatedType = typeof onInfoSectionUpdated$1;
|
|
7290
|
+
declare const onInfoSectionUpdated: ReturnType<typeof createEventModule$4<_publicOnInfoSectionUpdatedType>>;
|
|
7291
|
+
|
|
7292
|
+
type _publicOnInfoSectionDeletedType = typeof onInfoSectionDeleted$1;
|
|
7293
|
+
declare const onInfoSectionDeleted: ReturnType<typeof createEventModule$4<_publicOnInfoSectionDeletedType>>;
|
|
7057
7294
|
|
|
7058
7295
|
type index_d$7_BulkCreateInfoSectionsOptions = BulkCreateInfoSectionsOptions;
|
|
7059
7296
|
type index_d$7_BulkCreateInfoSectionsRequest = BulkCreateInfoSectionsRequest;
|
|
@@ -7101,6 +7338,19 @@ type index_d$7_UpdateInfoSectionOptions = UpdateInfoSectionOptions;
|
|
|
7101
7338
|
type index_d$7_UpdateInfoSectionRequest = UpdateInfoSectionRequest;
|
|
7102
7339
|
type index_d$7_UpdateInfoSectionResponse = UpdateInfoSectionResponse;
|
|
7103
7340
|
type index_d$7_UpdateInfoSectionResponseNonNullableFields = UpdateInfoSectionResponseNonNullableFields;
|
|
7341
|
+
type index_d$7__publicBulkCreateInfoSectionsType = _publicBulkCreateInfoSectionsType;
|
|
7342
|
+
type index_d$7__publicBulkDeleteInfoSectionsType = _publicBulkDeleteInfoSectionsType;
|
|
7343
|
+
type index_d$7__publicBulkGetOrCreateInfoSectionsType = _publicBulkGetOrCreateInfoSectionsType;
|
|
7344
|
+
type index_d$7__publicBulkUpdateInfoSectionsType = _publicBulkUpdateInfoSectionsType;
|
|
7345
|
+
type index_d$7__publicCreateInfoSectionType = _publicCreateInfoSectionType;
|
|
7346
|
+
type index_d$7__publicDeleteInfoSectionType = _publicDeleteInfoSectionType;
|
|
7347
|
+
type index_d$7__publicGetInfoSectionType = _publicGetInfoSectionType;
|
|
7348
|
+
type index_d$7__publicGetOrCreateInfoSectionType = _publicGetOrCreateInfoSectionType;
|
|
7349
|
+
type index_d$7__publicOnInfoSectionCreatedType = _publicOnInfoSectionCreatedType;
|
|
7350
|
+
type index_d$7__publicOnInfoSectionDeletedType = _publicOnInfoSectionDeletedType;
|
|
7351
|
+
type index_d$7__publicOnInfoSectionUpdatedType = _publicOnInfoSectionUpdatedType;
|
|
7352
|
+
type index_d$7__publicQueryInfoSectionsType = _publicQueryInfoSectionsType;
|
|
7353
|
+
type index_d$7__publicUpdateInfoSectionType = _publicUpdateInfoSectionType;
|
|
7104
7354
|
declare const index_d$7_bulkCreateInfoSections: typeof bulkCreateInfoSections;
|
|
7105
7355
|
declare const index_d$7_bulkDeleteInfoSections: typeof bulkDeleteInfoSections;
|
|
7106
7356
|
declare const index_d$7_bulkGetOrCreateInfoSections: typeof bulkGetOrCreateInfoSections;
|
|
@@ -7115,7 +7365,7 @@ declare const index_d$7_onInfoSectionUpdated: typeof onInfoSectionUpdated;
|
|
|
7115
7365
|
declare const index_d$7_queryInfoSections: typeof queryInfoSections;
|
|
7116
7366
|
declare const index_d$7_updateInfoSection: typeof updateInfoSection;
|
|
7117
7367
|
declare namespace index_d$7 {
|
|
7118
|
-
export { type ActionEvent$4 as ActionEvent, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type App$4 as App, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$3 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BaseEventMetadata$4 as BaseEventMetadata, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$3 as BulkActionMetadata, type index_d$7_BulkCreateInfoSectionsOptions as BulkCreateInfoSectionsOptions, type index_d$7_BulkCreateInfoSectionsRequest as BulkCreateInfoSectionsRequest, type index_d$7_BulkCreateInfoSectionsResponse as BulkCreateInfoSectionsResponse, type index_d$7_BulkCreateInfoSectionsResponseNonNullableFields as BulkCreateInfoSectionsResponseNonNullableFields, type index_d$7_BulkDeleteInfoSectionsRequest as BulkDeleteInfoSectionsRequest, type index_d$7_BulkDeleteInfoSectionsResponse as BulkDeleteInfoSectionsResponse, type index_d$7_BulkDeleteInfoSectionsResponseNonNullableFields as BulkDeleteInfoSectionsResponseNonNullableFields, type index_d$7_BulkGetOrCreateInfoSectionsOptions as BulkGetOrCreateInfoSectionsOptions, type index_d$7_BulkGetOrCreateInfoSectionsRequest as BulkGetOrCreateInfoSectionsRequest, type index_d$7_BulkGetOrCreateInfoSectionsResponse as BulkGetOrCreateInfoSectionsResponse, type index_d$7_BulkGetOrCreateInfoSectionsResponseNonNullableFields as BulkGetOrCreateInfoSectionsResponseNonNullableFields, type index_d$7_BulkInfoSectionItemResult as BulkInfoSectionItemResult, type index_d$7_BulkInfoSectionResult as BulkInfoSectionResult, type index_d$7_BulkUpdateInfoSectionsOptions as BulkUpdateInfoSectionsOptions, type index_d$7_BulkUpdateInfoSectionsRequest as BulkUpdateInfoSectionsRequest, type index_d$7_BulkUpdateInfoSectionsResponse as BulkUpdateInfoSectionsResponse, type index_d$7_BulkUpdateInfoSectionsResponseNonNullableFields as BulkUpdateInfoSectionsResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type index_d$7_CreateInfoSectionRequest as CreateInfoSectionRequest, type index_d$7_CreateInfoSectionResponse as CreateInfoSectionResponse, type index_d$7_CreateInfoSectionResponseNonNullableFields as CreateInfoSectionResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$4 as Cursors, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type index_d$7_DeleteInfoSectionRequest as DeleteInfoSectionRequest, type index_d$7_DeleteInfoSectionResponse as DeleteInfoSectionResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type EmbedData$1 as EmbedData, type Empty$5 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventData$1 as EventData, type EventMetadata$3 as EventMetadata, type File$4 as File, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type index_d$7_GetInfoSectionOptions as GetInfoSectionOptions, type index_d$7_GetInfoSectionRequest as GetInfoSectionRequest, type index_d$7_GetInfoSectionResponse as GetInfoSectionResponse, type index_d$7_GetInfoSectionResponseNonNullableFields as GetInfoSectionResponseNonNullableFields, type index_d$7_GetOrCreateInfoSectionOptions as GetOrCreateInfoSectionOptions, type index_d$7_GetOrCreateInfoSectionRequest as GetOrCreateInfoSectionRequest, type index_d$7_GetOrCreateInfoSectionResponse as GetOrCreateInfoSectionResponse, type index_d$7_GetOrCreateInfoSectionResponseNonNullableFields as GetOrCreateInfoSectionResponseNonNullableFields, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, type InfoSection$1 as InfoSection, type index_d$7_InfoSectionCreatedEnvelope as InfoSectionCreatedEnvelope, type index_d$7_InfoSectionDeletedEnvelope as InfoSectionDeletedEnvelope, type index_d$7_InfoSectionForGetOrCreate as InfoSectionForGetOrCreate, type InfoSectionNonNullableFields$1 as InfoSectionNonNullableFields, type index_d$7_InfoSectionUpdatedEnvelope as InfoSectionUpdatedEnvelope, type index_d$7_InfoSectionsQueryBuilder as InfoSectionsQueryBuilder, type index_d$7_InfoSectionsQueryResult as InfoSectionsQueryResult, InitialExpandedItems$1 as InitialExpandedItems, type InvalidateCache$4 as InvalidateCache, type InvalidateCacheGetByOneOf$4 as InvalidateCacheGetByOneOf, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$3 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type index_d$7_MaskedInfoSection as MaskedInfoSection, type Media$1 as Media, type MentionData$1 as MentionData, type MessageEnvelope$6 as MessageEnvelope, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type Page$4 as Page, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type index_d$7_QueryInfoSectionsOptions as QueryInfoSectionsOptions, type index_d$7_QueryInfoSectionsRequest as QueryInfoSectionsRequest, type index_d$7_QueryInfoSectionsResponse as QueryInfoSectionsResponse, type index_d$7_QueryInfoSectionsResponseNonNullableFields as QueryInfoSectionsResponseNonNullableFields, type Rel$1 as Rel, RequestedFields$2 as RequestedFields, type RestoreInfo$4 as RestoreInfo, type RichContent$1 as RichContent, type Settings$1 as Settings, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, Type$1 as Type, type URI$4 as URI, type index_d$7_UpdateInfoSection as UpdateInfoSection, type index_d$7_UpdateInfoSectionOptions as UpdateInfoSectionOptions, type index_d$7_UpdateInfoSectionRequest as UpdateInfoSectionRequest, type index_d$7_UpdateInfoSectionResponse as UpdateInfoSectionResponse, type index_d$7_UpdateInfoSectionResponseNonNullableFields as UpdateInfoSectionResponseNonNullableFields, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$6 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, index_d$7_bulkCreateInfoSections as bulkCreateInfoSections, index_d$7_bulkDeleteInfoSections as bulkDeleteInfoSections, index_d$7_bulkGetOrCreateInfoSections as bulkGetOrCreateInfoSections, index_d$7_bulkUpdateInfoSections as bulkUpdateInfoSections, index_d$7_createInfoSection as createInfoSection, index_d$7_deleteInfoSection as deleteInfoSection, index_d$7_getInfoSection as getInfoSection, index_d$7_getOrCreateInfoSection as getOrCreateInfoSection, index_d$7_onInfoSectionCreated as onInfoSectionCreated, index_d$7_onInfoSectionDeleted as onInfoSectionDeleted, index_d$7_onInfoSectionUpdated as onInfoSectionUpdated, index_d$7_queryInfoSections as queryInfoSections, index_d$7_updateInfoSection as updateInfoSection };
|
|
7368
|
+
export { type ActionEvent$4 as ActionEvent, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type App$4 as App, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$3 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BaseEventMetadata$4 as BaseEventMetadata, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$3 as BulkActionMetadata, type index_d$7_BulkCreateInfoSectionsOptions as BulkCreateInfoSectionsOptions, type index_d$7_BulkCreateInfoSectionsRequest as BulkCreateInfoSectionsRequest, type index_d$7_BulkCreateInfoSectionsResponse as BulkCreateInfoSectionsResponse, type index_d$7_BulkCreateInfoSectionsResponseNonNullableFields as BulkCreateInfoSectionsResponseNonNullableFields, type index_d$7_BulkDeleteInfoSectionsRequest as BulkDeleteInfoSectionsRequest, type index_d$7_BulkDeleteInfoSectionsResponse as BulkDeleteInfoSectionsResponse, type index_d$7_BulkDeleteInfoSectionsResponseNonNullableFields as BulkDeleteInfoSectionsResponseNonNullableFields, type index_d$7_BulkGetOrCreateInfoSectionsOptions as BulkGetOrCreateInfoSectionsOptions, type index_d$7_BulkGetOrCreateInfoSectionsRequest as BulkGetOrCreateInfoSectionsRequest, type index_d$7_BulkGetOrCreateInfoSectionsResponse as BulkGetOrCreateInfoSectionsResponse, type index_d$7_BulkGetOrCreateInfoSectionsResponseNonNullableFields as BulkGetOrCreateInfoSectionsResponseNonNullableFields, type index_d$7_BulkInfoSectionItemResult as BulkInfoSectionItemResult, type index_d$7_BulkInfoSectionResult as BulkInfoSectionResult, type index_d$7_BulkUpdateInfoSectionsOptions as BulkUpdateInfoSectionsOptions, type index_d$7_BulkUpdateInfoSectionsRequest as BulkUpdateInfoSectionsRequest, type index_d$7_BulkUpdateInfoSectionsResponse as BulkUpdateInfoSectionsResponse, type index_d$7_BulkUpdateInfoSectionsResponseNonNullableFields as BulkUpdateInfoSectionsResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type index_d$7_CreateInfoSectionRequest as CreateInfoSectionRequest, type index_d$7_CreateInfoSectionResponse as CreateInfoSectionResponse, type index_d$7_CreateInfoSectionResponseNonNullableFields as CreateInfoSectionResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$4 as Cursors, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type index_d$7_DeleteInfoSectionRequest as DeleteInfoSectionRequest, type index_d$7_DeleteInfoSectionResponse as DeleteInfoSectionResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type EmbedData$1 as EmbedData, type Empty$5 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventData$1 as EventData, type EventMetadata$3 as EventMetadata, type File$4 as File, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type index_d$7_GetInfoSectionOptions as GetInfoSectionOptions, type index_d$7_GetInfoSectionRequest as GetInfoSectionRequest, type index_d$7_GetInfoSectionResponse as GetInfoSectionResponse, type index_d$7_GetInfoSectionResponseNonNullableFields as GetInfoSectionResponseNonNullableFields, type index_d$7_GetOrCreateInfoSectionOptions as GetOrCreateInfoSectionOptions, type index_d$7_GetOrCreateInfoSectionRequest as GetOrCreateInfoSectionRequest, type index_d$7_GetOrCreateInfoSectionResponse as GetOrCreateInfoSectionResponse, type index_d$7_GetOrCreateInfoSectionResponseNonNullableFields as GetOrCreateInfoSectionResponseNonNullableFields, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, type InfoSection$1 as InfoSection, type index_d$7_InfoSectionCreatedEnvelope as InfoSectionCreatedEnvelope, type index_d$7_InfoSectionDeletedEnvelope as InfoSectionDeletedEnvelope, type index_d$7_InfoSectionForGetOrCreate as InfoSectionForGetOrCreate, type InfoSectionNonNullableFields$1 as InfoSectionNonNullableFields, type index_d$7_InfoSectionUpdatedEnvelope as InfoSectionUpdatedEnvelope, type index_d$7_InfoSectionsQueryBuilder as InfoSectionsQueryBuilder, type index_d$7_InfoSectionsQueryResult as InfoSectionsQueryResult, InitialExpandedItems$1 as InitialExpandedItems, type InvalidateCache$4 as InvalidateCache, type InvalidateCacheGetByOneOf$4 as InvalidateCacheGetByOneOf, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$3 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type index_d$7_MaskedInfoSection as MaskedInfoSection, type Media$1 as Media, type MentionData$1 as MentionData, type MessageEnvelope$6 as MessageEnvelope, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type Page$4 as Page, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type index_d$7_QueryInfoSectionsOptions as QueryInfoSectionsOptions, type index_d$7_QueryInfoSectionsRequest as QueryInfoSectionsRequest, type index_d$7_QueryInfoSectionsResponse as QueryInfoSectionsResponse, type index_d$7_QueryInfoSectionsResponseNonNullableFields as QueryInfoSectionsResponseNonNullableFields, type Rel$1 as Rel, RequestedFields$2 as RequestedFields, type RestoreInfo$4 as RestoreInfo, type RichContent$1 as RichContent, type Settings$1 as Settings, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, Type$1 as Type, type URI$4 as URI, type index_d$7_UpdateInfoSection as UpdateInfoSection, type index_d$7_UpdateInfoSectionOptions as UpdateInfoSectionOptions, type index_d$7_UpdateInfoSectionRequest as UpdateInfoSectionRequest, type index_d$7_UpdateInfoSectionResponse as UpdateInfoSectionResponse, type index_d$7_UpdateInfoSectionResponseNonNullableFields as UpdateInfoSectionResponseNonNullableFields, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$6 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type index_d$7__publicBulkCreateInfoSectionsType as _publicBulkCreateInfoSectionsType, type index_d$7__publicBulkDeleteInfoSectionsType as _publicBulkDeleteInfoSectionsType, type index_d$7__publicBulkGetOrCreateInfoSectionsType as _publicBulkGetOrCreateInfoSectionsType, type index_d$7__publicBulkUpdateInfoSectionsType as _publicBulkUpdateInfoSectionsType, type index_d$7__publicCreateInfoSectionType as _publicCreateInfoSectionType, type index_d$7__publicDeleteInfoSectionType as _publicDeleteInfoSectionType, type index_d$7__publicGetInfoSectionType as _publicGetInfoSectionType, type index_d$7__publicGetOrCreateInfoSectionType as _publicGetOrCreateInfoSectionType, type index_d$7__publicOnInfoSectionCreatedType as _publicOnInfoSectionCreatedType, type index_d$7__publicOnInfoSectionDeletedType as _publicOnInfoSectionDeletedType, type index_d$7__publicOnInfoSectionUpdatedType as _publicOnInfoSectionUpdatedType, type index_d$7__publicQueryInfoSectionsType as _publicQueryInfoSectionsType, type index_d$7__publicUpdateInfoSectionType as _publicUpdateInfoSectionType, index_d$7_bulkCreateInfoSections as bulkCreateInfoSections, index_d$7_bulkDeleteInfoSections as bulkDeleteInfoSections, index_d$7_bulkGetOrCreateInfoSections as bulkGetOrCreateInfoSections, index_d$7_bulkUpdateInfoSections as bulkUpdateInfoSections, index_d$7_createInfoSection as createInfoSection, index_d$7_deleteInfoSection as deleteInfoSection, index_d$7_getInfoSection as getInfoSection, index_d$7_getOrCreateInfoSection as getOrCreateInfoSection, index_d$7_onInfoSectionCreated as onInfoSectionCreated, index_d$7_onInfoSectionDeleted as onInfoSectionDeleted, index_d$7_onInfoSectionUpdated as onInfoSectionUpdated, onInfoSectionCreated$1 as publicOnInfoSectionCreated, onInfoSectionDeleted$1 as publicOnInfoSectionDeleted, onInfoSectionUpdated$1 as publicOnInfoSectionUpdated, index_d$7_queryInfoSections as queryInfoSections, index_d$7_updateInfoSection as updateInfoSection };
|
|
7119
7369
|
}
|
|
7120
7370
|
|
|
7121
7371
|
/** Inventory Item. */
|
|
@@ -8796,29 +9046,73 @@ interface BulkIncrementInventoryItemsByVariantAndLocationOptions {
|
|
|
8796
9046
|
reason?: ReasonType$1;
|
|
8797
9047
|
}
|
|
8798
9048
|
|
|
9049
|
+
declare function createInventoryItem$1(httpClient: HttpClient): (inventoryItem: InventoryItem$1) => Promise<InventoryItem$1 & InventoryItemNonNullableFields$1>;
|
|
9050
|
+
declare function bulkCreateInventoryItems$1(httpClient: HttpClient): (inventoryItems: InventoryItem$1[], options?: BulkCreateInventoryItemsOptions) => Promise<BulkCreateInventoryItemsResponse & BulkCreateInventoryItemsResponseNonNullableFields>;
|
|
9051
|
+
declare function getInventoryItem$1(httpClient: HttpClient): (inventoryItemId: string) => Promise<InventoryItem$1 & InventoryItemNonNullableFields$1>;
|
|
9052
|
+
declare function updateInventoryItem$1(httpClient: HttpClient): (_id: string | null, inventoryItem: UpdateInventoryItem, options?: UpdateInventoryItemOptions) => Promise<InventoryItem$1 & InventoryItemNonNullableFields$1>;
|
|
9053
|
+
declare function bulkUpdateInventoryItems$1(httpClient: HttpClient): (inventoryItems: MaskedInventoryItem[], options?: BulkUpdateInventoryItemsOptions) => Promise<BulkUpdateInventoryItemsResponse$1 & BulkUpdateInventoryItemsResponseNonNullableFields>;
|
|
9054
|
+
declare function bulkUpdateInventoryItemsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkUpdateInventoryItemsByFilterOptions) => Promise<BulkUpdateInventoryItemsByFilterResponse & BulkUpdateInventoryItemsByFilterResponseNonNullableFields>;
|
|
9055
|
+
declare function deleteInventoryItem$1(httpClient: HttpClient): (inventoryItemId: string) => Promise<void>;
|
|
9056
|
+
declare function bulkDeleteInventoryItems$1(httpClient: HttpClient): (inventoryItemIds: string[]) => Promise<BulkDeleteInventoryItemsResponse & BulkDeleteInventoryItemsResponseNonNullableFields>;
|
|
9057
|
+
declare function queryInventoryItems$1(httpClient: HttpClient): () => InventoryItemsQueryBuilder;
|
|
9058
|
+
declare function searchInventoryItems$1(httpClient: HttpClient): (options?: SearchInventoryItemsOptions) => Promise<SearchInventoryItemsResponse & SearchInventoryItemsResponseNonNullableFields>;
|
|
9059
|
+
declare function bulkDecrementInventoryItems$1(httpClient: HttpClient): (decrementData: DecrementDataById[], options?: BulkDecrementInventoryItemsOptions) => Promise<BulkDecrementInventoryItemsResponse & BulkDecrementInventoryItemsResponseNonNullableFields>;
|
|
9060
|
+
declare function bulkIncrementInventoryItems$1(httpClient: HttpClient): (incrementData: IncrementDataById[], options?: BulkIncrementInventoryItemsOptions) => Promise<BulkIncrementInventoryItemsResponse & BulkIncrementInventoryItemsResponseNonNullableFields>;
|
|
9061
|
+
declare function bulkDecrementInventoryItemsByVariantAndLocation$1(httpClient: HttpClient): (decrementData: DecrementDataByVariantAndLocation[], options?: BulkDecrementInventoryItemsByVariantAndLocationOptions) => Promise<BulkDecrementInventoryItemsByVariantAndLocationResponse & BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields>;
|
|
9062
|
+
declare function bulkIncrementInventoryItemsByVariantAndLocation$1(httpClient: HttpClient): (incrementData: IncrementDataByVariantAndLocation[], options?: BulkIncrementInventoryItemsByVariantAndLocationOptions) => Promise<BulkIncrementInventoryItemsByVariantAndLocationResponse & BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields>;
|
|
9063
|
+
declare const onInventoryItemCreated$1: EventDefinition<InventoryItemCreatedEnvelope, "wix.stores.catalog.v3.inventory_item_created">;
|
|
9064
|
+
declare const onInventoryItemUpdated$1: EventDefinition<InventoryItemUpdatedEnvelope, "wix.stores.catalog.v3.inventory_item_updated">;
|
|
9065
|
+
declare const onInventoryItemStockStatusUpdated$1: EventDefinition<InventoryItemStockStatusUpdatedEnvelope, "wix.stores.catalog.v3.inventory_item_stock_status_updated">;
|
|
9066
|
+
declare const onInventoryItemUpdatedWithReason$1: EventDefinition<InventoryItemUpdatedWithReasonEnvelope, "wix.stores.catalog.v3.inventory_item_updated_with_reason">;
|
|
9067
|
+
declare const onInventoryItemDeleted$1: EventDefinition<InventoryItemDeletedEnvelope, "wix.stores.catalog.v3.inventory_item_deleted">;
|
|
9068
|
+
|
|
8799
9069
|
declare function createRESTModule$6<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
8800
9070
|
|
|
8801
9071
|
declare function createEventModule$3<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
8802
9072
|
|
|
8803
|
-
|
|
8804
|
-
declare const
|
|
8805
|
-
|
|
8806
|
-
declare const
|
|
8807
|
-
|
|
8808
|
-
declare const
|
|
8809
|
-
|
|
8810
|
-
declare const
|
|
8811
|
-
|
|
8812
|
-
declare const
|
|
8813
|
-
|
|
8814
|
-
declare const
|
|
8815
|
-
|
|
8816
|
-
declare const
|
|
8817
|
-
|
|
8818
|
-
declare const
|
|
8819
|
-
|
|
8820
|
-
declare const
|
|
8821
|
-
|
|
9073
|
+
type _publicCreateInventoryItemType = typeof createInventoryItem$1;
|
|
9074
|
+
declare const createInventoryItem: ReturnType<typeof createRESTModule$6<_publicCreateInventoryItemType>>;
|
|
9075
|
+
type _publicBulkCreateInventoryItemsType = typeof bulkCreateInventoryItems$1;
|
|
9076
|
+
declare const bulkCreateInventoryItems: ReturnType<typeof createRESTModule$6<_publicBulkCreateInventoryItemsType>>;
|
|
9077
|
+
type _publicGetInventoryItemType = typeof getInventoryItem$1;
|
|
9078
|
+
declare const getInventoryItem: ReturnType<typeof createRESTModule$6<_publicGetInventoryItemType>>;
|
|
9079
|
+
type _publicUpdateInventoryItemType = typeof updateInventoryItem$1;
|
|
9080
|
+
declare const updateInventoryItem: ReturnType<typeof createRESTModule$6<_publicUpdateInventoryItemType>>;
|
|
9081
|
+
type _publicBulkUpdateInventoryItemsType = typeof bulkUpdateInventoryItems$1;
|
|
9082
|
+
declare const bulkUpdateInventoryItems: ReturnType<typeof createRESTModule$6<_publicBulkUpdateInventoryItemsType>>;
|
|
9083
|
+
type _publicBulkUpdateInventoryItemsByFilterType = typeof bulkUpdateInventoryItemsByFilter$1;
|
|
9084
|
+
declare const bulkUpdateInventoryItemsByFilter: ReturnType<typeof createRESTModule$6<_publicBulkUpdateInventoryItemsByFilterType>>;
|
|
9085
|
+
type _publicDeleteInventoryItemType = typeof deleteInventoryItem$1;
|
|
9086
|
+
declare const deleteInventoryItem: ReturnType<typeof createRESTModule$6<_publicDeleteInventoryItemType>>;
|
|
9087
|
+
type _publicBulkDeleteInventoryItemsType = typeof bulkDeleteInventoryItems$1;
|
|
9088
|
+
declare const bulkDeleteInventoryItems: ReturnType<typeof createRESTModule$6<_publicBulkDeleteInventoryItemsType>>;
|
|
9089
|
+
type _publicQueryInventoryItemsType = typeof queryInventoryItems$1;
|
|
9090
|
+
declare const queryInventoryItems: ReturnType<typeof createRESTModule$6<_publicQueryInventoryItemsType>>;
|
|
9091
|
+
type _publicSearchInventoryItemsType = typeof searchInventoryItems$1;
|
|
9092
|
+
declare const searchInventoryItems: ReturnType<typeof createRESTModule$6<_publicSearchInventoryItemsType>>;
|
|
9093
|
+
type _publicBulkDecrementInventoryItemsType = typeof bulkDecrementInventoryItems$1;
|
|
9094
|
+
declare const bulkDecrementInventoryItems: ReturnType<typeof createRESTModule$6<_publicBulkDecrementInventoryItemsType>>;
|
|
9095
|
+
type _publicBulkIncrementInventoryItemsType = typeof bulkIncrementInventoryItems$1;
|
|
9096
|
+
declare const bulkIncrementInventoryItems: ReturnType<typeof createRESTModule$6<_publicBulkIncrementInventoryItemsType>>;
|
|
9097
|
+
type _publicBulkDecrementInventoryItemsByVariantAndLocationType = typeof bulkDecrementInventoryItemsByVariantAndLocation$1;
|
|
9098
|
+
declare const bulkDecrementInventoryItemsByVariantAndLocation: ReturnType<typeof createRESTModule$6<_publicBulkDecrementInventoryItemsByVariantAndLocationType>>;
|
|
9099
|
+
type _publicBulkIncrementInventoryItemsByVariantAndLocationType = typeof bulkIncrementInventoryItemsByVariantAndLocation$1;
|
|
9100
|
+
declare const bulkIncrementInventoryItemsByVariantAndLocation: ReturnType<typeof createRESTModule$6<_publicBulkIncrementInventoryItemsByVariantAndLocationType>>;
|
|
9101
|
+
|
|
9102
|
+
type _publicOnInventoryItemCreatedType = typeof onInventoryItemCreated$1;
|
|
9103
|
+
declare const onInventoryItemCreated: ReturnType<typeof createEventModule$3<_publicOnInventoryItemCreatedType>>;
|
|
9104
|
+
|
|
9105
|
+
type _publicOnInventoryItemUpdatedType = typeof onInventoryItemUpdated$1;
|
|
9106
|
+
declare const onInventoryItemUpdated: ReturnType<typeof createEventModule$3<_publicOnInventoryItemUpdatedType>>;
|
|
9107
|
+
|
|
9108
|
+
type _publicOnInventoryItemStockStatusUpdatedType = typeof onInventoryItemStockStatusUpdated$1;
|
|
9109
|
+
declare const onInventoryItemStockStatusUpdated: ReturnType<typeof createEventModule$3<_publicOnInventoryItemStockStatusUpdatedType>>;
|
|
9110
|
+
|
|
9111
|
+
type _publicOnInventoryItemUpdatedWithReasonType = typeof onInventoryItemUpdatedWithReason$1;
|
|
9112
|
+
declare const onInventoryItemUpdatedWithReason: ReturnType<typeof createEventModule$3<_publicOnInventoryItemUpdatedWithReasonType>>;
|
|
9113
|
+
|
|
9114
|
+
type _publicOnInventoryItemDeletedType = typeof onInventoryItemDeleted$1;
|
|
9115
|
+
declare const onInventoryItemDeleted: ReturnType<typeof createEventModule$3<_publicOnInventoryItemDeletedType>>;
|
|
8822
9116
|
|
|
8823
9117
|
type index_d$6_AdjustInventoryAction = AdjustInventoryAction;
|
|
8824
9118
|
type index_d$6_AdjustInventoryActionActionOneOf = AdjustInventoryActionActionOneOf;
|
|
@@ -8898,6 +9192,25 @@ type index_d$6_UpdateInventoryItemRequest = UpdateInventoryItemRequest;
|
|
|
8898
9192
|
type index_d$6_UpdateInventoryItemResponse = UpdateInventoryItemResponse;
|
|
8899
9193
|
type index_d$6_UpdateInventoryItemResponseNonNullableFields = UpdateInventoryItemResponseNonNullableFields;
|
|
8900
9194
|
type index_d$6_V3BulkInventoryItemResult = V3BulkInventoryItemResult;
|
|
9195
|
+
type index_d$6__publicBulkCreateInventoryItemsType = _publicBulkCreateInventoryItemsType;
|
|
9196
|
+
type index_d$6__publicBulkDecrementInventoryItemsByVariantAndLocationType = _publicBulkDecrementInventoryItemsByVariantAndLocationType;
|
|
9197
|
+
type index_d$6__publicBulkDecrementInventoryItemsType = _publicBulkDecrementInventoryItemsType;
|
|
9198
|
+
type index_d$6__publicBulkDeleteInventoryItemsType = _publicBulkDeleteInventoryItemsType;
|
|
9199
|
+
type index_d$6__publicBulkIncrementInventoryItemsByVariantAndLocationType = _publicBulkIncrementInventoryItemsByVariantAndLocationType;
|
|
9200
|
+
type index_d$6__publicBulkIncrementInventoryItemsType = _publicBulkIncrementInventoryItemsType;
|
|
9201
|
+
type index_d$6__publicBulkUpdateInventoryItemsByFilterType = _publicBulkUpdateInventoryItemsByFilterType;
|
|
9202
|
+
type index_d$6__publicBulkUpdateInventoryItemsType = _publicBulkUpdateInventoryItemsType;
|
|
9203
|
+
type index_d$6__publicCreateInventoryItemType = _publicCreateInventoryItemType;
|
|
9204
|
+
type index_d$6__publicDeleteInventoryItemType = _publicDeleteInventoryItemType;
|
|
9205
|
+
type index_d$6__publicGetInventoryItemType = _publicGetInventoryItemType;
|
|
9206
|
+
type index_d$6__publicOnInventoryItemCreatedType = _publicOnInventoryItemCreatedType;
|
|
9207
|
+
type index_d$6__publicOnInventoryItemDeletedType = _publicOnInventoryItemDeletedType;
|
|
9208
|
+
type index_d$6__publicOnInventoryItemStockStatusUpdatedType = _publicOnInventoryItemStockStatusUpdatedType;
|
|
9209
|
+
type index_d$6__publicOnInventoryItemUpdatedType = _publicOnInventoryItemUpdatedType;
|
|
9210
|
+
type index_d$6__publicOnInventoryItemUpdatedWithReasonType = _publicOnInventoryItemUpdatedWithReasonType;
|
|
9211
|
+
type index_d$6__publicQueryInventoryItemsType = _publicQueryInventoryItemsType;
|
|
9212
|
+
type index_d$6__publicSearchInventoryItemsType = _publicSearchInventoryItemsType;
|
|
9213
|
+
type index_d$6__publicUpdateInventoryItemType = _publicUpdateInventoryItemType;
|
|
8901
9214
|
declare const index_d$6_bulkCreateInventoryItems: typeof bulkCreateInventoryItems;
|
|
8902
9215
|
declare const index_d$6_bulkDecrementInventoryItems: typeof bulkDecrementInventoryItems;
|
|
8903
9216
|
declare const index_d$6_bulkDecrementInventoryItemsByVariantAndLocation: typeof bulkDecrementInventoryItemsByVariantAndLocation;
|
|
@@ -8918,7 +9231,7 @@ declare const index_d$6_queryInventoryItems: typeof queryInventoryItems;
|
|
|
8918
9231
|
declare const index_d$6_searchInventoryItems: typeof searchInventoryItems;
|
|
8919
9232
|
declare const index_d$6_updateInventoryItem: typeof updateInventoryItem;
|
|
8920
9233
|
declare namespace index_d$6 {
|
|
8921
|
-
export { type ActionEvent$3 as ActionEvent, type index_d$6_AdjustInventoryAction as AdjustInventoryAction, type index_d$6_AdjustInventoryActionActionOneOf as AdjustInventoryActionActionOneOf, type Aggregation$1 as Aggregation, type AggregationData$1 as AggregationData, type AggregationKindOneOf$1 as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type AggregationResultsScalarResult$1 as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type App$3 as App, type ApplicationError$2 as ApplicationError, AvailabilityStatus$1 as AvailabilityStatus, type BaseEventMetadata$3 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type index_d$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type index_d$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type index_d$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type index_d$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type index_d$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type index_d$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type index_d$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type index_d$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type index_d$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type index_d$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type index_d$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type index_d$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type index_d$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type index_d$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type index_d$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type index_d$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type index_d$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type index_d$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type index_d$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type index_d$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type index_d$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type index_d$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type index_d$6_CreateInventoryItemRequest as CreateInventoryItemRequest, type index_d$6_CreateInventoryItemResponse as CreateInventoryItemResponse, type index_d$6_CreateInventoryItemResponseNonNullableFields as CreateInventoryItemResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$3 as Cursors, type DateHistogramAggregation$1 as DateHistogramAggregation, type DateHistogramResult$1 as DateHistogramResult, type DateHistogramResults$1 as DateHistogramResults, type index_d$6_DecrementDataById as DecrementDataById, type index_d$6_DecrementDataByVariantAndLocation as DecrementDataByVariantAndLocation, type index_d$6_DeleteInventoryItemRequest as DeleteInventoryItemRequest, type index_d$6_DeleteInventoryItemResponse as DeleteInventoryItemResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type File$3 as File, type index_d$6_GetInventoryItemRequest as GetInventoryItemRequest, type index_d$6_GetInventoryItemResponse as GetInventoryItemResponse, type index_d$6_GetInventoryItemResponseNonNullableFields as GetInventoryItemResponseNonNullableFields, type GroupByAggregation$1 as GroupByAggregation, type GroupByAggregationKindOneOf$1 as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type IncludeMissingValuesOptions$1 as IncludeMissingValuesOptions, type index_d$6_IncrementDataById as IncrementDataById, type index_d$6_IncrementDataByVariantAndLocation as IncrementDataByVariantAndLocation, Interval$1 as Interval, type InvalidateCache$3 as InvalidateCache, type InvalidateCacheGetByOneOf$3 as InvalidateCacheGetByOneOf, type index_d$6_InventoryCursorPaging as InventoryCursorPaging, type InventoryItem$1 as InventoryItem, type index_d$6_InventoryItemCreatedEnvelope as InventoryItemCreatedEnvelope, type index_d$6_InventoryItemDeletedEnvelope as InventoryItemDeletedEnvelope, type InventoryItemNonNullableFields$1 as InventoryItemNonNullableFields, type index_d$6_InventoryItemStockStatusUpdatedEnvelope as InventoryItemStockStatusUpdatedEnvelope, type index_d$6_InventoryItemStockStatusUpdatedEvent as InventoryItemStockStatusUpdatedEvent, type InventoryItemTrackingMethodOneOf$1 as InventoryItemTrackingMethodOneOf, type index_d$6_InventoryItemUpdatedEnvelope as InventoryItemUpdatedEnvelope, type index_d$6_InventoryItemUpdatedWithReason as InventoryItemUpdatedWithReason, type index_d$6_InventoryItemUpdatedWithReasonEnvelope as InventoryItemUpdatedWithReasonEnvelope, type index_d$6_InventoryItemsQueryBuilder as InventoryItemsQueryBuilder, type index_d$6_InventoryItemsQueryResult as InventoryItemsQueryResult, type index_d$6_InventoryPaging as InventoryPaging, type index_d$6_InventoryQuery as InventoryQuery, type index_d$6_InventoryQueryPagingMethodOneOf as InventoryQueryPagingMethodOneOf, type ItemMetadata$2 as ItemMetadata, type index_d$6_MaskedInventoryItem as MaskedInventoryItem, type MessageEnvelope$5 as MessageEnvelope, MissingValues$1 as MissingValues, Mode$1 as Mode, type NestedAggregation$1 as NestedAggregation, type NestedAggregationItem$1 as NestedAggregationItem, type NestedAggregationItemKindOneOf$1 as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, NestedAggregationType$1 as NestedAggregationType, type NestedResultValue$1 as NestedResultValue, type NestedResultValueResultOneOf$1 as NestedResultValueResultOneOf, type NestedResults$1 as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type Page$3 as Page, type PagingMetadata$3 as PagingMetadata, type PlatformOffsetSearch$1 as PlatformOffsetSearch, type PlatformOffsetSearchPagingMethodOneOf$1 as PlatformOffsetSearchPagingMethodOneOf, type PlatformPaging$1 as PlatformPaging, type index_d$6_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type PreorderInfo$2 as PreorderInfo, type Product$1 as Product, type index_d$6_ProductInventoryItems as ProductInventoryItems, type index_d$6_QueryInventoryItemsRequest as QueryInventoryItemsRequest, type index_d$6_QueryInventoryItemsResponse as QueryInventoryItemsResponse, type index_d$6_QueryInventoryItemsResponseNonNullableFields as QueryInventoryItemsResponseNonNullableFields, type RangeAggregation$1 as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type RangeBucket$1 as RangeBucket, type RangeResult$1 as RangeResult, type RangeResults$1 as RangeResults, ReasonType$1 as ReasonType, type RestoreInfo$3 as RestoreInfo, type Results$1 as Results, type ScalarAggregation$1 as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type SearchDetails$1 as SearchDetails, type index_d$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type index_d$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type index_d$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type index_d$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type index_d$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type index_d$6_SearchInventoryItemsWithOffsetResponse as SearchInventoryItemsWithOffsetResponse, SortDirection$1 as SortDirection, SortOrder$3 as SortOrder, SortType$1 as SortType, type Sorting$3 as Sorting, type URI$3 as URI, type index_d$6_UpdateInventoryItem as UpdateInventoryItem, type index_d$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type index_d$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type index_d$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type index_d$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type index_d$6_V3BulkInventoryItemResult as V3BulkInventoryItemResult, type ValueAggregation$1 as ValueAggregation, type ValueAggregationOptionsOneOf$1 as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type ValueResult$1 as ValueResult, type ValueResults$1 as ValueResults, WebhookIdentityType$5 as WebhookIdentityType, index_d$6_bulkCreateInventoryItems as bulkCreateInventoryItems, index_d$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, index_d$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, index_d$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, index_d$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, index_d$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, index_d$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, index_d$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, index_d$6_createInventoryItem as createInventoryItem, index_d$6_deleteInventoryItem as deleteInventoryItem, index_d$6_getInventoryItem as getInventoryItem, index_d$6_onInventoryItemCreated as onInventoryItemCreated, index_d$6_onInventoryItemDeleted as onInventoryItemDeleted, index_d$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, index_d$6_onInventoryItemUpdated as onInventoryItemUpdated, index_d$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, index_d$6_queryInventoryItems as queryInventoryItems, index_d$6_searchInventoryItems as searchInventoryItems, index_d$6_updateInventoryItem as updateInventoryItem };
|
|
9234
|
+
export { type ActionEvent$3 as ActionEvent, type index_d$6_AdjustInventoryAction as AdjustInventoryAction, type index_d$6_AdjustInventoryActionActionOneOf as AdjustInventoryActionActionOneOf, type Aggregation$1 as Aggregation, type AggregationData$1 as AggregationData, type AggregationKindOneOf$1 as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type AggregationResultsScalarResult$1 as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type App$3 as App, type ApplicationError$2 as ApplicationError, AvailabilityStatus$1 as AvailabilityStatus, type BaseEventMetadata$3 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type index_d$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type index_d$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type index_d$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type index_d$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type index_d$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type index_d$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type index_d$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type index_d$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type index_d$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type index_d$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type index_d$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type index_d$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type index_d$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type index_d$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type index_d$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type index_d$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type index_d$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type index_d$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type index_d$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type index_d$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type index_d$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type index_d$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type index_d$6_CreateInventoryItemRequest as CreateInventoryItemRequest, type index_d$6_CreateInventoryItemResponse as CreateInventoryItemResponse, type index_d$6_CreateInventoryItemResponseNonNullableFields as CreateInventoryItemResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$3 as Cursors, type DateHistogramAggregation$1 as DateHistogramAggregation, type DateHistogramResult$1 as DateHistogramResult, type DateHistogramResults$1 as DateHistogramResults, type index_d$6_DecrementDataById as DecrementDataById, type index_d$6_DecrementDataByVariantAndLocation as DecrementDataByVariantAndLocation, type index_d$6_DeleteInventoryItemRequest as DeleteInventoryItemRequest, type index_d$6_DeleteInventoryItemResponse as DeleteInventoryItemResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type File$3 as File, type index_d$6_GetInventoryItemRequest as GetInventoryItemRequest, type index_d$6_GetInventoryItemResponse as GetInventoryItemResponse, type index_d$6_GetInventoryItemResponseNonNullableFields as GetInventoryItemResponseNonNullableFields, type GroupByAggregation$1 as GroupByAggregation, type GroupByAggregationKindOneOf$1 as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type IncludeMissingValuesOptions$1 as IncludeMissingValuesOptions, type index_d$6_IncrementDataById as IncrementDataById, type index_d$6_IncrementDataByVariantAndLocation as IncrementDataByVariantAndLocation, Interval$1 as Interval, type InvalidateCache$3 as InvalidateCache, type InvalidateCacheGetByOneOf$3 as InvalidateCacheGetByOneOf, type index_d$6_InventoryCursorPaging as InventoryCursorPaging, type InventoryItem$1 as InventoryItem, type index_d$6_InventoryItemCreatedEnvelope as InventoryItemCreatedEnvelope, type index_d$6_InventoryItemDeletedEnvelope as InventoryItemDeletedEnvelope, type InventoryItemNonNullableFields$1 as InventoryItemNonNullableFields, type index_d$6_InventoryItemStockStatusUpdatedEnvelope as InventoryItemStockStatusUpdatedEnvelope, type index_d$6_InventoryItemStockStatusUpdatedEvent as InventoryItemStockStatusUpdatedEvent, type InventoryItemTrackingMethodOneOf$1 as InventoryItemTrackingMethodOneOf, type index_d$6_InventoryItemUpdatedEnvelope as InventoryItemUpdatedEnvelope, type index_d$6_InventoryItemUpdatedWithReason as InventoryItemUpdatedWithReason, type index_d$6_InventoryItemUpdatedWithReasonEnvelope as InventoryItemUpdatedWithReasonEnvelope, type index_d$6_InventoryItemsQueryBuilder as InventoryItemsQueryBuilder, type index_d$6_InventoryItemsQueryResult as InventoryItemsQueryResult, type index_d$6_InventoryPaging as InventoryPaging, type index_d$6_InventoryQuery as InventoryQuery, type index_d$6_InventoryQueryPagingMethodOneOf as InventoryQueryPagingMethodOneOf, type ItemMetadata$2 as ItemMetadata, type index_d$6_MaskedInventoryItem as MaskedInventoryItem, type MessageEnvelope$5 as MessageEnvelope, MissingValues$1 as MissingValues, Mode$1 as Mode, type NestedAggregation$1 as NestedAggregation, type NestedAggregationItem$1 as NestedAggregationItem, type NestedAggregationItemKindOneOf$1 as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, NestedAggregationType$1 as NestedAggregationType, type NestedResultValue$1 as NestedResultValue, type NestedResultValueResultOneOf$1 as NestedResultValueResultOneOf, type NestedResults$1 as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type Page$3 as Page, type PagingMetadata$3 as PagingMetadata, type PlatformOffsetSearch$1 as PlatformOffsetSearch, type PlatformOffsetSearchPagingMethodOneOf$1 as PlatformOffsetSearchPagingMethodOneOf, type PlatformPaging$1 as PlatformPaging, type index_d$6_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type PreorderInfo$2 as PreorderInfo, type Product$1 as Product, type index_d$6_ProductInventoryItems as ProductInventoryItems, type index_d$6_QueryInventoryItemsRequest as QueryInventoryItemsRequest, type index_d$6_QueryInventoryItemsResponse as QueryInventoryItemsResponse, type index_d$6_QueryInventoryItemsResponseNonNullableFields as QueryInventoryItemsResponseNonNullableFields, type RangeAggregation$1 as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type RangeBucket$1 as RangeBucket, type RangeResult$1 as RangeResult, type RangeResults$1 as RangeResults, ReasonType$1 as ReasonType, type RestoreInfo$3 as RestoreInfo, type Results$1 as Results, type ScalarAggregation$1 as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type SearchDetails$1 as SearchDetails, type index_d$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type index_d$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type index_d$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type index_d$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type index_d$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type index_d$6_SearchInventoryItemsWithOffsetResponse as SearchInventoryItemsWithOffsetResponse, SortDirection$1 as SortDirection, SortOrder$3 as SortOrder, SortType$1 as SortType, type Sorting$3 as Sorting, type URI$3 as URI, type index_d$6_UpdateInventoryItem as UpdateInventoryItem, type index_d$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type index_d$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type index_d$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type index_d$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type index_d$6_V3BulkInventoryItemResult as V3BulkInventoryItemResult, type ValueAggregation$1 as ValueAggregation, type ValueAggregationOptionsOneOf$1 as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type ValueResult$1 as ValueResult, type ValueResults$1 as ValueResults, WebhookIdentityType$5 as WebhookIdentityType, type index_d$6__publicBulkCreateInventoryItemsType as _publicBulkCreateInventoryItemsType, type index_d$6__publicBulkDecrementInventoryItemsByVariantAndLocationType as _publicBulkDecrementInventoryItemsByVariantAndLocationType, type index_d$6__publicBulkDecrementInventoryItemsType as _publicBulkDecrementInventoryItemsType, type index_d$6__publicBulkDeleteInventoryItemsType as _publicBulkDeleteInventoryItemsType, type index_d$6__publicBulkIncrementInventoryItemsByVariantAndLocationType as _publicBulkIncrementInventoryItemsByVariantAndLocationType, type index_d$6__publicBulkIncrementInventoryItemsType as _publicBulkIncrementInventoryItemsType, type index_d$6__publicBulkUpdateInventoryItemsByFilterType as _publicBulkUpdateInventoryItemsByFilterType, type index_d$6__publicBulkUpdateInventoryItemsType as _publicBulkUpdateInventoryItemsType, type index_d$6__publicCreateInventoryItemType as _publicCreateInventoryItemType, type index_d$6__publicDeleteInventoryItemType as _publicDeleteInventoryItemType, type index_d$6__publicGetInventoryItemType as _publicGetInventoryItemType, type index_d$6__publicOnInventoryItemCreatedType as _publicOnInventoryItemCreatedType, type index_d$6__publicOnInventoryItemDeletedType as _publicOnInventoryItemDeletedType, type index_d$6__publicOnInventoryItemStockStatusUpdatedType as _publicOnInventoryItemStockStatusUpdatedType, type index_d$6__publicOnInventoryItemUpdatedType as _publicOnInventoryItemUpdatedType, type index_d$6__publicOnInventoryItemUpdatedWithReasonType as _publicOnInventoryItemUpdatedWithReasonType, type index_d$6__publicQueryInventoryItemsType as _publicQueryInventoryItemsType, type index_d$6__publicSearchInventoryItemsType as _publicSearchInventoryItemsType, type index_d$6__publicUpdateInventoryItemType as _publicUpdateInventoryItemType, index_d$6_bulkCreateInventoryItems as bulkCreateInventoryItems, index_d$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, index_d$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, index_d$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, index_d$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, index_d$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, index_d$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, index_d$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, index_d$6_createInventoryItem as createInventoryItem, index_d$6_deleteInventoryItem as deleteInventoryItem, index_d$6_getInventoryItem as getInventoryItem, index_d$6_onInventoryItemCreated as onInventoryItemCreated, index_d$6_onInventoryItemDeleted as onInventoryItemDeleted, index_d$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, index_d$6_onInventoryItemUpdated as onInventoryItemUpdated, index_d$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, onInventoryItemCreated$1 as publicOnInventoryItemCreated, onInventoryItemDeleted$1 as publicOnInventoryItemDeleted, onInventoryItemStockStatusUpdated$1 as publicOnInventoryItemStockStatusUpdated, onInventoryItemUpdated$1 as publicOnInventoryItemUpdated, onInventoryItemUpdatedWithReason$1 as publicOnInventoryItemUpdatedWithReason, index_d$6_queryInventoryItems as queryInventoryItems, index_d$6_searchInventoryItems as searchInventoryItems, index_d$6_updateInventoryItem as updateInventoryItem };
|
|
8922
9235
|
}
|
|
8923
9236
|
|
|
8924
9237
|
interface V3Product extends V3ProductTypedPropertiesOneOf {
|
|
@@ -15492,42 +15805,113 @@ interface BulkRemoveProductsFromCategoriesByFilterOptions {
|
|
|
15492
15805
|
search?: WixCommonSearchDetails;
|
|
15493
15806
|
}
|
|
15494
15807
|
|
|
15808
|
+
declare function catalogCreateProduct$1(httpClient: HttpClient): (product: V3Product, options?: CatalogCreateProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
|
|
15809
|
+
declare function createProductWithInventory$1(httpClient: HttpClient): (product: ProductWithInventory, options?: CreateProductWithInventoryOptions) => Promise<CreateProductWithInventoryResponse & CreateProductWithInventoryResponseNonNullableFields>;
|
|
15810
|
+
declare function catalogUpdateProduct$1(httpClient: HttpClient): (_id: string | null, product: CatalogUpdateProduct, options?: CatalogUpdateProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
|
|
15811
|
+
declare function updateProductWithInventory$1(httpClient: HttpClient): (_id: string | null, product: UpdateProductWithInventoryProduct, options?: UpdateProductWithInventoryOptions) => Promise<UpdateProductWithInventoryResponse & UpdateProductWithInventoryResponseNonNullableFields>;
|
|
15812
|
+
declare function catalogBulkCreateProducts$1(httpClient: HttpClient): (products: V3Product[], options?: CatalogBulkCreateProductsOptions) => Promise<BulkCreateProductsResponse & BulkCreateProductsResponseNonNullableFields>;
|
|
15813
|
+
declare function bulkCreateProductsWithInventory$1(httpClient: HttpClient): (products: ProductWithInventory[], options?: BulkCreateProductsWithInventoryOptions) => Promise<BulkCreateProductsWithInventoryResponse & BulkCreateProductsWithInventoryResponseNonNullableFields>;
|
|
15814
|
+
declare function catalogBulkUpdateProducts$1(httpClient: HttpClient): (products: V3MaskedProduct[], options?: CatalogBulkUpdateProductsOptions) => Promise<BulkUpdateProductsResponse & BulkUpdateProductsResponseNonNullableFields>;
|
|
15815
|
+
declare function bulkUpdateProductsWithInventory$1(httpClient: HttpClient): (products: MaskedProductWithInventory[], options?: BulkUpdateProductsWithInventoryOptions) => Promise<BulkUpdateProductsWithInventoryResponse & BulkUpdateProductsWithInventoryResponseNonNullableFields>;
|
|
15816
|
+
declare function catalogBulkUpdateProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CatalogBulkUpdateProductsByFilterOptions) => Promise<V3BulkUpdateProductsByFilterResponse & V3BulkUpdateProductsByFilterResponseNonNullableFields>;
|
|
15817
|
+
declare function catalogUpdateExtendedFields$1(httpClient: HttpClient): (productId: string, namespace: string, options?: CatalogUpdateExtendedFieldsOptions) => Promise<V3UpdateExtendedFieldsResponse & V3UpdateExtendedFieldsResponseNonNullableFields>;
|
|
15818
|
+
declare function catalogDeleteProduct$1(httpClient: HttpClient): (productId: string) => Promise<void>;
|
|
15819
|
+
declare function catalogBulkDeleteProducts$1(httpClient: HttpClient): (productIds: string[]) => Promise<V3BulkDeleteProductsResponse & V3BulkDeleteProductsResponseNonNullableFields>;
|
|
15820
|
+
declare function catalogBulkDeleteProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CatalogBulkDeleteProductsByFilterOptions) => Promise<V3BulkDeleteProductsByFilterResponse & V3BulkDeleteProductsByFilterResponseNonNullableFields>;
|
|
15821
|
+
declare function catalogGetProduct$1(httpClient: HttpClient): (productId: string, options?: CatalogGetProductOptions) => Promise<V3Product & V3ProductNonNullableFields>;
|
|
15822
|
+
declare function catalogGetProductBySlug$1(httpClient: HttpClient): (slug: string, options?: CatalogGetProductBySlugOptions) => Promise<V3GetProductBySlugResponse & V3GetProductBySlugResponseNonNullableFields>;
|
|
15823
|
+
declare function catalogSearchProducts$1(httpClient: HttpClient): (options?: CatalogSearchProductsOptions) => Promise<V3SearchProductsResponse & V3SearchProductsResponseNonNullableFields>;
|
|
15824
|
+
declare function catalogQueryProducts$1(httpClient: HttpClient): (options?: QueryProductsOptions) => ProductsQueryBuilder;
|
|
15825
|
+
declare function catalogCountProducts$1(httpClient: HttpClient): (options?: CatalogCountProductsOptions) => Promise<V3CountProductsResponse & V3CountProductsResponseNonNullableFields>;
|
|
15826
|
+
declare function bulkUpdateProductVariantsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkUpdateProductVariantsByFilterOptions) => Promise<BulkUpdateProductVariantsByFilterResponse & BulkUpdateProductVariantsByFilterResponseNonNullableFields>;
|
|
15827
|
+
declare function bulkAdjustProductVariantsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: BulkAdjustProductVariantsByFilterOptions) => Promise<BulkAdjustProductVariantsByFilterResponse & BulkAdjustProductVariantsByFilterResponseNonNullableFields>;
|
|
15828
|
+
declare function catalogBulkAddInfoSectionsToProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CatalogBulkAddInfoSectionsToProductsByFilterOptions) => Promise<V3BulkAddInfoSectionsToProductsByFilterResponse & V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields>;
|
|
15829
|
+
declare function catalogBulkAddInfoSectionsToProducts$1(httpClient: HttpClient): (products: V3ProductIdWithRevision[], options?: CatalogBulkAddInfoSectionsToProductsOptions) => Promise<V3BulkAddInfoSectionsToProductsResponse & V3BulkAddInfoSectionsToProductsResponseNonNullableFields>;
|
|
15830
|
+
declare function catalogBulkRemoveInfoSectionsFromProductsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions) => Promise<V3BulkRemoveInfoSectionsFromProductsByFilterResponse & V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields>;
|
|
15831
|
+
declare function catalogBulkRemoveInfoSectionsFromProducts$1(httpClient: HttpClient): (products: V3ProductIdWithRevision[], options?: CatalogBulkRemoveInfoSectionsFromProductsOptions) => Promise<V3BulkRemoveInfoSectionsFromProductsResponse & V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields>;
|
|
15832
|
+
declare function bulkAddProductsToCategoriesByFilter$1(httpClient: HttpClient): (options?: BulkAddProductsToCategoriesByFilterOptions) => Promise<BulkAddProductsToCategoriesByFilterResponse & BulkAddProductsToCategoriesByFilterResponseNonNullableFields>;
|
|
15833
|
+
declare function bulkRemoveProductsFromCategoriesByFilter$1(httpClient: HttpClient): (options?: BulkRemoveProductsFromCategoriesByFilterOptions) => Promise<BulkRemoveProductsFromCategoriesByFilterResponse & BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields>;
|
|
15834
|
+
declare const onProductCreated$1: EventDefinition<ProductCreatedEnvelope, "wix.stores.catalog.v3.product_created">;
|
|
15835
|
+
declare const onProductUpdated$1: EventDefinition<ProductUpdatedEnvelope, "wix.stores.catalog.v3.product_updated">;
|
|
15836
|
+
declare const onProductVariantAdded$1: EventDefinition<ProductVariantAddedEnvelope, "wix.stores.catalog.v3.product_variant_added">;
|
|
15837
|
+
declare const onProductVariantUpdated$1: EventDefinition<ProductVariantUpdatedEnvelope, "wix.stores.catalog.v3.product_variant_updated">;
|
|
15838
|
+
declare const onProductVariantRemoved$1: EventDefinition<ProductVariantRemovedEnvelope, "wix.stores.catalog.v3.product_variant_removed">;
|
|
15839
|
+
declare const onProductDeleted$1: EventDefinition<ProductDeletedEnvelope, "wix.stores.catalog.v3.product_deleted">;
|
|
15840
|
+
|
|
15495
15841
|
declare function createRESTModule$5<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
15496
15842
|
|
|
15497
15843
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
15498
15844
|
|
|
15499
|
-
|
|
15500
|
-
declare const
|
|
15501
|
-
|
|
15502
|
-
declare const
|
|
15503
|
-
|
|
15504
|
-
declare const
|
|
15505
|
-
|
|
15506
|
-
declare const
|
|
15507
|
-
|
|
15508
|
-
declare const
|
|
15509
|
-
|
|
15510
|
-
declare const
|
|
15511
|
-
|
|
15512
|
-
declare const
|
|
15513
|
-
|
|
15514
|
-
declare const
|
|
15515
|
-
|
|
15516
|
-
declare const
|
|
15517
|
-
|
|
15518
|
-
declare const
|
|
15519
|
-
|
|
15520
|
-
declare const
|
|
15521
|
-
|
|
15522
|
-
declare const
|
|
15523
|
-
|
|
15524
|
-
declare const
|
|
15525
|
-
|
|
15526
|
-
declare const
|
|
15527
|
-
|
|
15528
|
-
declare const
|
|
15529
|
-
|
|
15530
|
-
declare const
|
|
15845
|
+
type _publicCatalogCreateProductType = typeof catalogCreateProduct$1;
|
|
15846
|
+
declare const catalogCreateProduct: ReturnType<typeof createRESTModule$5<_publicCatalogCreateProductType>>;
|
|
15847
|
+
type _publicCreateProductWithInventoryType = typeof createProductWithInventory$1;
|
|
15848
|
+
declare const createProductWithInventory: ReturnType<typeof createRESTModule$5<_publicCreateProductWithInventoryType>>;
|
|
15849
|
+
type _publicCatalogUpdateProductType = typeof catalogUpdateProduct$1;
|
|
15850
|
+
declare const catalogUpdateProduct: ReturnType<typeof createRESTModule$5<_publicCatalogUpdateProductType>>;
|
|
15851
|
+
type _publicUpdateProductWithInventoryType = typeof updateProductWithInventory$1;
|
|
15852
|
+
declare const updateProductWithInventory: ReturnType<typeof createRESTModule$5<_publicUpdateProductWithInventoryType>>;
|
|
15853
|
+
type _publicCatalogBulkCreateProductsType = typeof catalogBulkCreateProducts$1;
|
|
15854
|
+
declare const catalogBulkCreateProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkCreateProductsType>>;
|
|
15855
|
+
type _publicBulkCreateProductsWithInventoryType = typeof bulkCreateProductsWithInventory$1;
|
|
15856
|
+
declare const bulkCreateProductsWithInventory: ReturnType<typeof createRESTModule$5<_publicBulkCreateProductsWithInventoryType>>;
|
|
15857
|
+
type _publicCatalogBulkUpdateProductsType = typeof catalogBulkUpdateProducts$1;
|
|
15858
|
+
declare const catalogBulkUpdateProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkUpdateProductsType>>;
|
|
15859
|
+
type _publicBulkUpdateProductsWithInventoryType = typeof bulkUpdateProductsWithInventory$1;
|
|
15860
|
+
declare const bulkUpdateProductsWithInventory: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductsWithInventoryType>>;
|
|
15861
|
+
type _publicCatalogBulkUpdateProductsByFilterType = typeof catalogBulkUpdateProductsByFilter$1;
|
|
15862
|
+
declare const catalogBulkUpdateProductsByFilter: ReturnType<typeof createRESTModule$5<_publicCatalogBulkUpdateProductsByFilterType>>;
|
|
15863
|
+
type _publicCatalogUpdateExtendedFieldsType = typeof catalogUpdateExtendedFields$1;
|
|
15864
|
+
declare const catalogUpdateExtendedFields: ReturnType<typeof createRESTModule$5<_publicCatalogUpdateExtendedFieldsType>>;
|
|
15865
|
+
type _publicCatalogDeleteProductType = typeof catalogDeleteProduct$1;
|
|
15866
|
+
declare const catalogDeleteProduct: ReturnType<typeof createRESTModule$5<_publicCatalogDeleteProductType>>;
|
|
15867
|
+
type _publicCatalogBulkDeleteProductsType = typeof catalogBulkDeleteProducts$1;
|
|
15868
|
+
declare const catalogBulkDeleteProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkDeleteProductsType>>;
|
|
15869
|
+
type _publicCatalogBulkDeleteProductsByFilterType = typeof catalogBulkDeleteProductsByFilter$1;
|
|
15870
|
+
declare const catalogBulkDeleteProductsByFilter: ReturnType<typeof createRESTModule$5<_publicCatalogBulkDeleteProductsByFilterType>>;
|
|
15871
|
+
type _publicCatalogGetProductType = typeof catalogGetProduct$1;
|
|
15872
|
+
declare const catalogGetProduct: ReturnType<typeof createRESTModule$5<_publicCatalogGetProductType>>;
|
|
15873
|
+
type _publicCatalogGetProductBySlugType = typeof catalogGetProductBySlug$1;
|
|
15874
|
+
declare const catalogGetProductBySlug: ReturnType<typeof createRESTModule$5<_publicCatalogGetProductBySlugType>>;
|
|
15875
|
+
type _publicCatalogSearchProductsType = typeof catalogSearchProducts$1;
|
|
15876
|
+
declare const catalogSearchProducts: ReturnType<typeof createRESTModule$5<_publicCatalogSearchProductsType>>;
|
|
15877
|
+
type _publicCatalogQueryProductsType = typeof catalogQueryProducts$1;
|
|
15878
|
+
declare const catalogQueryProducts: ReturnType<typeof createRESTModule$5<_publicCatalogQueryProductsType>>;
|
|
15879
|
+
type _publicCatalogCountProductsType = typeof catalogCountProducts$1;
|
|
15880
|
+
declare const catalogCountProducts: ReturnType<typeof createRESTModule$5<_publicCatalogCountProductsType>>;
|
|
15881
|
+
type _publicBulkUpdateProductVariantsByFilterType = typeof bulkUpdateProductVariantsByFilter$1;
|
|
15882
|
+
declare const bulkUpdateProductVariantsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductVariantsByFilterType>>;
|
|
15883
|
+
type _publicBulkAdjustProductVariantsByFilterType = typeof bulkAdjustProductVariantsByFilter$1;
|
|
15884
|
+
declare const bulkAdjustProductVariantsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAdjustProductVariantsByFilterType>>;
|
|
15885
|
+
type _publicCatalogBulkAddInfoSectionsToProductsByFilterType = typeof catalogBulkAddInfoSectionsToProductsByFilter$1;
|
|
15886
|
+
declare const catalogBulkAddInfoSectionsToProductsByFilter: ReturnType<typeof createRESTModule$5<_publicCatalogBulkAddInfoSectionsToProductsByFilterType>>;
|
|
15887
|
+
type _publicCatalogBulkAddInfoSectionsToProductsType = typeof catalogBulkAddInfoSectionsToProducts$1;
|
|
15888
|
+
declare const catalogBulkAddInfoSectionsToProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkAddInfoSectionsToProductsType>>;
|
|
15889
|
+
type _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType = typeof catalogBulkRemoveInfoSectionsFromProductsByFilter$1;
|
|
15890
|
+
declare const catalogBulkRemoveInfoSectionsFromProductsByFilter: ReturnType<typeof createRESTModule$5<_publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType>>;
|
|
15891
|
+
type _publicCatalogBulkRemoveInfoSectionsFromProductsType = typeof catalogBulkRemoveInfoSectionsFromProducts$1;
|
|
15892
|
+
declare const catalogBulkRemoveInfoSectionsFromProducts: ReturnType<typeof createRESTModule$5<_publicCatalogBulkRemoveInfoSectionsFromProductsType>>;
|
|
15893
|
+
type _publicBulkAddProductsToCategoriesByFilterType = typeof bulkAddProductsToCategoriesByFilter$1;
|
|
15894
|
+
declare const bulkAddProductsToCategoriesByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAddProductsToCategoriesByFilterType>>;
|
|
15895
|
+
type _publicBulkRemoveProductsFromCategoriesByFilterType = typeof bulkRemoveProductsFromCategoriesByFilter$1;
|
|
15896
|
+
declare const bulkRemoveProductsFromCategoriesByFilter: ReturnType<typeof createRESTModule$5<_publicBulkRemoveProductsFromCategoriesByFilterType>>;
|
|
15897
|
+
|
|
15898
|
+
type _publicOnProductCreatedType = typeof onProductCreated$1;
|
|
15899
|
+
declare const onProductCreated: ReturnType<typeof createEventModule$2<_publicOnProductCreatedType>>;
|
|
15900
|
+
|
|
15901
|
+
type _publicOnProductUpdatedType = typeof onProductUpdated$1;
|
|
15902
|
+
declare const onProductUpdated: ReturnType<typeof createEventModule$2<_publicOnProductUpdatedType>>;
|
|
15903
|
+
|
|
15904
|
+
type _publicOnProductVariantAddedType = typeof onProductVariantAdded$1;
|
|
15905
|
+
declare const onProductVariantAdded: ReturnType<typeof createEventModule$2<_publicOnProductVariantAddedType>>;
|
|
15906
|
+
|
|
15907
|
+
type _publicOnProductVariantUpdatedType = typeof onProductVariantUpdated$1;
|
|
15908
|
+
declare const onProductVariantUpdated: ReturnType<typeof createEventModule$2<_publicOnProductVariantUpdatedType>>;
|
|
15909
|
+
|
|
15910
|
+
type _publicOnProductVariantRemovedType = typeof onProductVariantRemoved$1;
|
|
15911
|
+
declare const onProductVariantRemoved: ReturnType<typeof createEventModule$2<_publicOnProductVariantRemovedType>>;
|
|
15912
|
+
|
|
15913
|
+
type _publicOnProductDeletedType = typeof onProductDeleted$1;
|
|
15914
|
+
declare const onProductDeleted: ReturnType<typeof createEventModule$2<_publicOnProductDeletedType>>;
|
|
15531
15915
|
|
|
15532
15916
|
type index_d$5_AdjustValue = AdjustValue;
|
|
15533
15917
|
type index_d$5_AdjustValueAdjustValueOneOf = AdjustValueAdjustValueOneOf;
|
|
@@ -16136,6 +16520,38 @@ type index_d$5_WixCommonSearchDetails = WixCommonSearchDetails;
|
|
|
16136
16520
|
type index_d$5_WixCommonSortOrder = WixCommonSortOrder;
|
|
16137
16521
|
declare const index_d$5_WixCommonSortOrder: typeof WixCommonSortOrder;
|
|
16138
16522
|
type index_d$5_WixCommonSorting = WixCommonSorting;
|
|
16523
|
+
type index_d$5__publicBulkAddProductsToCategoriesByFilterType = _publicBulkAddProductsToCategoriesByFilterType;
|
|
16524
|
+
type index_d$5__publicBulkAdjustProductVariantsByFilterType = _publicBulkAdjustProductVariantsByFilterType;
|
|
16525
|
+
type index_d$5__publicBulkCreateProductsWithInventoryType = _publicBulkCreateProductsWithInventoryType;
|
|
16526
|
+
type index_d$5__publicBulkRemoveProductsFromCategoriesByFilterType = _publicBulkRemoveProductsFromCategoriesByFilterType;
|
|
16527
|
+
type index_d$5__publicBulkUpdateProductVariantsByFilterType = _publicBulkUpdateProductVariantsByFilterType;
|
|
16528
|
+
type index_d$5__publicBulkUpdateProductsWithInventoryType = _publicBulkUpdateProductsWithInventoryType;
|
|
16529
|
+
type index_d$5__publicCatalogBulkAddInfoSectionsToProductsByFilterType = _publicCatalogBulkAddInfoSectionsToProductsByFilterType;
|
|
16530
|
+
type index_d$5__publicCatalogBulkAddInfoSectionsToProductsType = _publicCatalogBulkAddInfoSectionsToProductsType;
|
|
16531
|
+
type index_d$5__publicCatalogBulkCreateProductsType = _publicCatalogBulkCreateProductsType;
|
|
16532
|
+
type index_d$5__publicCatalogBulkDeleteProductsByFilterType = _publicCatalogBulkDeleteProductsByFilterType;
|
|
16533
|
+
type index_d$5__publicCatalogBulkDeleteProductsType = _publicCatalogBulkDeleteProductsType;
|
|
16534
|
+
type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType = _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType;
|
|
16535
|
+
type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsType = _publicCatalogBulkRemoveInfoSectionsFromProductsType;
|
|
16536
|
+
type index_d$5__publicCatalogBulkUpdateProductsByFilterType = _publicCatalogBulkUpdateProductsByFilterType;
|
|
16537
|
+
type index_d$5__publicCatalogBulkUpdateProductsType = _publicCatalogBulkUpdateProductsType;
|
|
16538
|
+
type index_d$5__publicCatalogCountProductsType = _publicCatalogCountProductsType;
|
|
16539
|
+
type index_d$5__publicCatalogCreateProductType = _publicCatalogCreateProductType;
|
|
16540
|
+
type index_d$5__publicCatalogDeleteProductType = _publicCatalogDeleteProductType;
|
|
16541
|
+
type index_d$5__publicCatalogGetProductBySlugType = _publicCatalogGetProductBySlugType;
|
|
16542
|
+
type index_d$5__publicCatalogGetProductType = _publicCatalogGetProductType;
|
|
16543
|
+
type index_d$5__publicCatalogQueryProductsType = _publicCatalogQueryProductsType;
|
|
16544
|
+
type index_d$5__publicCatalogSearchProductsType = _publicCatalogSearchProductsType;
|
|
16545
|
+
type index_d$5__publicCatalogUpdateExtendedFieldsType = _publicCatalogUpdateExtendedFieldsType;
|
|
16546
|
+
type index_d$5__publicCatalogUpdateProductType = _publicCatalogUpdateProductType;
|
|
16547
|
+
type index_d$5__publicCreateProductWithInventoryType = _publicCreateProductWithInventoryType;
|
|
16548
|
+
type index_d$5__publicOnProductCreatedType = _publicOnProductCreatedType;
|
|
16549
|
+
type index_d$5__publicOnProductDeletedType = _publicOnProductDeletedType;
|
|
16550
|
+
type index_d$5__publicOnProductUpdatedType = _publicOnProductUpdatedType;
|
|
16551
|
+
type index_d$5__publicOnProductVariantAddedType = _publicOnProductVariantAddedType;
|
|
16552
|
+
type index_d$5__publicOnProductVariantRemovedType = _publicOnProductVariantRemovedType;
|
|
16553
|
+
type index_d$5__publicOnProductVariantUpdatedType = _publicOnProductVariantUpdatedType;
|
|
16554
|
+
type index_d$5__publicUpdateProductWithInventoryType = _publicUpdateProductWithInventoryType;
|
|
16139
16555
|
declare const index_d$5_bulkAddProductsToCategoriesByFilter: typeof bulkAddProductsToCategoriesByFilter;
|
|
16140
16556
|
declare const index_d$5_bulkAdjustProductVariantsByFilter: typeof bulkAdjustProductVariantsByFilter;
|
|
16141
16557
|
declare const index_d$5_bulkCreateProductsWithInventory: typeof bulkCreateProductsWithInventory;
|
|
@@ -16169,7 +16585,7 @@ declare const index_d$5_onProductVariantRemoved: typeof onProductVariantRemoved;
|
|
|
16169
16585
|
declare const index_d$5_onProductVariantUpdated: typeof onProductVariantUpdated;
|
|
16170
16586
|
declare const index_d$5_updateProductWithInventory: typeof updateProductWithInventory;
|
|
16171
16587
|
declare namespace index_d$5 {
|
|
16172
|
-
export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions as CatalogBulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_CatalogBulkAddInfoSectionsToProductsOptions as CatalogBulkAddInfoSectionsToProductsOptions, type index_d$5_CatalogBulkCreateProductsOptions as CatalogBulkCreateProductsOptions, type index_d$5_CatalogBulkDeleteProductsByFilterOptions as CatalogBulkDeleteProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions as CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsOptions as CatalogBulkRemoveInfoSectionsFromProductsOptions, type index_d$5_CatalogBulkUpdateProductsByFilterOptions as CatalogBulkUpdateProductsByFilterOptions, type index_d$5_CatalogBulkUpdateProductsOptions as CatalogBulkUpdateProductsOptions, type index_d$5_CatalogCountProductsOptions as CatalogCountProductsOptions, type index_d$5_CatalogCreateProductOptions as CatalogCreateProductOptions, type index_d$5_CatalogGetProductBySlugOptions as CatalogGetProductBySlugOptions, type index_d$5_CatalogGetProductOptions as CatalogGetProductOptions, type index_d$5_CatalogSearchProductsOptions as CatalogSearchProductsOptions, type index_d$5_CatalogUpdateExtendedFieldsOptions as CatalogUpdateExtendedFieldsOptions, type index_d$5_CatalogUpdateProduct as CatalogUpdateProduct, type index_d$5_CatalogUpdateProductOptions as CatalogUpdateProductOptions, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CategoryMoved as CategoryMoved, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_GetVariantsRequest as GetVariantsRequest, type index_d$5_GetVariantsResponse as GetVariantsResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemAddedToCategory as ItemAddedToCategory, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemReference as ItemReference, type index_d$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d$5_ItemStyle as ItemStyle, type index_d$5_ItemsAddedToCategory as ItemsAddedToCategory, type index_d$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_ParentCategory as ParentCategory, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantAddedEnvelope as ProductVariantAddedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariantRemovedEnvelope as ProductVariantRemovedEnvelope, type index_d$5_ProductVariantUpdatedEnvelope as ProductVariantUpdatedEnvelope, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$5_TreeReference as TreeReference, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantAdded as VariantAdded, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantRemoved as VariantRemoved, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantUpdated as VariantUpdated, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_catalogBulkAddInfoSectionsToProducts as catalogBulkAddInfoSectionsToProducts, index_d$5_catalogBulkAddInfoSectionsToProductsByFilter as catalogBulkAddInfoSectionsToProductsByFilter, index_d$5_catalogBulkCreateProducts as catalogBulkCreateProducts, index_d$5_catalogBulkDeleteProducts as catalogBulkDeleteProducts, index_d$5_catalogBulkDeleteProductsByFilter as catalogBulkDeleteProductsByFilter, index_d$5_catalogBulkRemoveInfoSectionsFromProducts as catalogBulkRemoveInfoSectionsFromProducts, index_d$5_catalogBulkRemoveInfoSectionsFromProductsByFilter as catalogBulkRemoveInfoSectionsFromProductsByFilter, index_d$5_catalogBulkUpdateProducts as catalogBulkUpdateProducts, index_d$5_catalogBulkUpdateProductsByFilter as catalogBulkUpdateProductsByFilter, index_d$5_catalogCountProducts as catalogCountProducts, index_d$5_catalogCreateProduct as catalogCreateProduct, index_d$5_catalogDeleteProduct as catalogDeleteProduct, index_d$5_catalogGetProduct as catalogGetProduct, index_d$5_catalogGetProductBySlug as catalogGetProductBySlug, index_d$5_catalogQueryProducts as catalogQueryProducts, index_d$5_catalogSearchProducts as catalogSearchProducts, index_d$5_catalogUpdateExtendedFields as catalogUpdateExtendedFields, index_d$5_catalogUpdateProduct as catalogUpdateProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, index_d$5_onProductVariantAdded as onProductVariantAdded, index_d$5_onProductVariantRemoved as onProductVariantRemoved, index_d$5_onProductVariantUpdated as onProductVariantUpdated, index_d$5_updateProductWithInventory as updateProductWithInventory };
|
|
16588
|
+
export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions as CatalogBulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_CatalogBulkAddInfoSectionsToProductsOptions as CatalogBulkAddInfoSectionsToProductsOptions, type index_d$5_CatalogBulkCreateProductsOptions as CatalogBulkCreateProductsOptions, type index_d$5_CatalogBulkDeleteProductsByFilterOptions as CatalogBulkDeleteProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions as CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_CatalogBulkRemoveInfoSectionsFromProductsOptions as CatalogBulkRemoveInfoSectionsFromProductsOptions, type index_d$5_CatalogBulkUpdateProductsByFilterOptions as CatalogBulkUpdateProductsByFilterOptions, type index_d$5_CatalogBulkUpdateProductsOptions as CatalogBulkUpdateProductsOptions, type index_d$5_CatalogCountProductsOptions as CatalogCountProductsOptions, type index_d$5_CatalogCreateProductOptions as CatalogCreateProductOptions, type index_d$5_CatalogGetProductBySlugOptions as CatalogGetProductBySlugOptions, type index_d$5_CatalogGetProductOptions as CatalogGetProductOptions, type index_d$5_CatalogSearchProductsOptions as CatalogSearchProductsOptions, type index_d$5_CatalogUpdateExtendedFieldsOptions as CatalogUpdateExtendedFieldsOptions, type index_d$5_CatalogUpdateProduct as CatalogUpdateProduct, type index_d$5_CatalogUpdateProductOptions as CatalogUpdateProductOptions, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CategoryMoved as CategoryMoved, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_GetVariantsRequest as GetVariantsRequest, type index_d$5_GetVariantsResponse as GetVariantsResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemAddedToCategory as ItemAddedToCategory, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemReference as ItemReference, type index_d$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d$5_ItemStyle as ItemStyle, type index_d$5_ItemsAddedToCategory as ItemsAddedToCategory, type index_d$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_ParentCategory as ParentCategory, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantAddedEnvelope as ProductVariantAddedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariantRemovedEnvelope as ProductVariantRemovedEnvelope, type index_d$5_ProductVariantUpdatedEnvelope as ProductVariantUpdatedEnvelope, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$5_TreeReference as TreeReference, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantAdded as VariantAdded, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantRemoved as VariantRemoved, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantUpdated as VariantUpdated, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, type index_d$5__publicBulkAddProductsToCategoriesByFilterType as _publicBulkAddProductsToCategoriesByFilterType, type index_d$5__publicBulkAdjustProductVariantsByFilterType as _publicBulkAdjustProductVariantsByFilterType, type index_d$5__publicBulkCreateProductsWithInventoryType as _publicBulkCreateProductsWithInventoryType, type index_d$5__publicBulkRemoveProductsFromCategoriesByFilterType as _publicBulkRemoveProductsFromCategoriesByFilterType, type index_d$5__publicBulkUpdateProductVariantsByFilterType as _publicBulkUpdateProductVariantsByFilterType, type index_d$5__publicBulkUpdateProductsWithInventoryType as _publicBulkUpdateProductsWithInventoryType, type index_d$5__publicCatalogBulkAddInfoSectionsToProductsByFilterType as _publicCatalogBulkAddInfoSectionsToProductsByFilterType, type index_d$5__publicCatalogBulkAddInfoSectionsToProductsType as _publicCatalogBulkAddInfoSectionsToProductsType, type index_d$5__publicCatalogBulkCreateProductsType as _publicCatalogBulkCreateProductsType, type index_d$5__publicCatalogBulkDeleteProductsByFilterType as _publicCatalogBulkDeleteProductsByFilterType, type index_d$5__publicCatalogBulkDeleteProductsType as _publicCatalogBulkDeleteProductsType, type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType as _publicCatalogBulkRemoveInfoSectionsFromProductsByFilterType, type index_d$5__publicCatalogBulkRemoveInfoSectionsFromProductsType as _publicCatalogBulkRemoveInfoSectionsFromProductsType, type index_d$5__publicCatalogBulkUpdateProductsByFilterType as _publicCatalogBulkUpdateProductsByFilterType, type index_d$5__publicCatalogBulkUpdateProductsType as _publicCatalogBulkUpdateProductsType, type index_d$5__publicCatalogCountProductsType as _publicCatalogCountProductsType, type index_d$5__publicCatalogCreateProductType as _publicCatalogCreateProductType, type index_d$5__publicCatalogDeleteProductType as _publicCatalogDeleteProductType, type index_d$5__publicCatalogGetProductBySlugType as _publicCatalogGetProductBySlugType, type index_d$5__publicCatalogGetProductType as _publicCatalogGetProductType, type index_d$5__publicCatalogQueryProductsType as _publicCatalogQueryProductsType, type index_d$5__publicCatalogSearchProductsType as _publicCatalogSearchProductsType, type index_d$5__publicCatalogUpdateExtendedFieldsType as _publicCatalogUpdateExtendedFieldsType, type index_d$5__publicCatalogUpdateProductType as _publicCatalogUpdateProductType, type index_d$5__publicCreateProductWithInventoryType as _publicCreateProductWithInventoryType, type index_d$5__publicOnProductCreatedType as _publicOnProductCreatedType, type index_d$5__publicOnProductDeletedType as _publicOnProductDeletedType, type index_d$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, type index_d$5__publicOnProductVariantAddedType as _publicOnProductVariantAddedType, type index_d$5__publicOnProductVariantRemovedType as _publicOnProductVariantRemovedType, type index_d$5__publicOnProductVariantUpdatedType as _publicOnProductVariantUpdatedType, type index_d$5__publicUpdateProductWithInventoryType as _publicUpdateProductWithInventoryType, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_catalogBulkAddInfoSectionsToProducts as catalogBulkAddInfoSectionsToProducts, index_d$5_catalogBulkAddInfoSectionsToProductsByFilter as catalogBulkAddInfoSectionsToProductsByFilter, index_d$5_catalogBulkCreateProducts as catalogBulkCreateProducts, index_d$5_catalogBulkDeleteProducts as catalogBulkDeleteProducts, index_d$5_catalogBulkDeleteProductsByFilter as catalogBulkDeleteProductsByFilter, index_d$5_catalogBulkRemoveInfoSectionsFromProducts as catalogBulkRemoveInfoSectionsFromProducts, index_d$5_catalogBulkRemoveInfoSectionsFromProductsByFilter as catalogBulkRemoveInfoSectionsFromProductsByFilter, index_d$5_catalogBulkUpdateProducts as catalogBulkUpdateProducts, index_d$5_catalogBulkUpdateProductsByFilter as catalogBulkUpdateProductsByFilter, index_d$5_catalogCountProducts as catalogCountProducts, index_d$5_catalogCreateProduct as catalogCreateProduct, index_d$5_catalogDeleteProduct as catalogDeleteProduct, index_d$5_catalogGetProduct as catalogGetProduct, index_d$5_catalogGetProductBySlug as catalogGetProductBySlug, index_d$5_catalogQueryProducts as catalogQueryProducts, index_d$5_catalogSearchProducts as catalogSearchProducts, index_d$5_catalogUpdateExtendedFields as catalogUpdateExtendedFields, index_d$5_catalogUpdateProduct as catalogUpdateProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, index_d$5_onProductVariantAdded as onProductVariantAdded, index_d$5_onProductVariantRemoved as onProductVariantRemoved, index_d$5_onProductVariantUpdated as onProductVariantUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, onProductVariantAdded$1 as publicOnProductVariantAdded, onProductVariantRemoved$1 as publicOnProductVariantRemoved, onProductVariantUpdated$1 as publicOnProductVariantUpdated, index_d$5_updateProductWithInventory as updateProductWithInventory };
|
|
16173
16589
|
}
|
|
16174
16590
|
|
|
16175
16591
|
interface Provision {
|
|
@@ -16542,9 +16958,12 @@ interface GetCatalogVersionResponseNonNullableFields {
|
|
|
16542
16958
|
catalogVersion: Version;
|
|
16543
16959
|
}
|
|
16544
16960
|
|
|
16961
|
+
declare function getCatalogVersion$1(httpClient: HttpClient): () => Promise<GetCatalogVersionResponse & GetCatalogVersionResponseNonNullableFields>;
|
|
16962
|
+
|
|
16545
16963
|
declare function createRESTModule$4<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
16546
16964
|
|
|
16547
|
-
|
|
16965
|
+
type _publicGetCatalogVersionType = typeof getCatalogVersion$1;
|
|
16966
|
+
declare const getCatalogVersion: ReturnType<typeof createRESTModule$4<_publicGetCatalogVersionType>>;
|
|
16548
16967
|
|
|
16549
16968
|
type index_d$4_Asset = Asset;
|
|
16550
16969
|
type index_d$4_DefaultDeliveryProfileSetup = DefaultDeliveryProfileSetup;
|
|
@@ -16584,9 +17003,10 @@ type index_d$4_StudioAssigned = StudioAssigned;
|
|
|
16584
17003
|
type index_d$4_StudioUnassigned = StudioUnassigned;
|
|
16585
17004
|
type index_d$4_Version = Version;
|
|
16586
17005
|
declare const index_d$4_Version: typeof Version;
|
|
17006
|
+
type index_d$4__publicGetCatalogVersionType = _publicGetCatalogVersionType;
|
|
16587
17007
|
declare const index_d$4_getCatalogVersion: typeof getCatalogVersion;
|
|
16588
17008
|
declare namespace index_d$4 {
|
|
16589
|
-
export { type index_d$4_Asset as Asset, type index_d$4_DefaultDeliveryProfileSetup as DefaultDeliveryProfileSetup, type index_d$4_DeleteContext as DeleteContext, index_d$4_DeleteStatus as DeleteStatus, type Empty$2 as Empty, type index_d$4_GetCatalogVersionRequest as GetCatalogVersionRequest, type index_d$4_GetCatalogVersionResponse as GetCatalogVersionResponse, type index_d$4_GetCatalogVersionResponseNonNullableFields as GetCatalogVersionResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type index_d$4_InstallBassAppDependencyRequest as InstallBassAppDependencyRequest, type index_d$4_InstallBassAppDependencyResponse as InstallBassAppDependencyResponse, type MessageEnvelope$3 as MessageEnvelope, type index_d$4_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d$4_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, index_d$4_Namespace as Namespace, type index_d$4_NamespaceChanged as NamespaceChanged, type index_d$4_Provision as Provision, type index_d$4_ProvisionRequest as ProvisionRequest, type index_d$4_ProvisionResponse as ProvisionResponse, type index_d$4_ServiceProvisioned as ServiceProvisioned, type index_d$4_ServiceRemoved as ServiceRemoved, type index_d$4_SiteCreated as SiteCreated, index_d$4_SiteCreatedContext as SiteCreatedContext, type index_d$4_SiteDeleted as SiteDeleted, type index_d$4_SiteHardDeleted as SiteHardDeleted, type index_d$4_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d$4_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d$4_SitePublished as SitePublished, type index_d$4_SiteRenamed as SiteRenamed, type index_d$4_SiteTransferred as SiteTransferred, type index_d$4_SiteUndeleted as SiteUndeleted, type index_d$4_SiteUnpublished as SiteUnpublished, index_d$4_State as State, type index_d$4_StudioAssigned as StudioAssigned, type index_d$4_StudioUnassigned as StudioUnassigned, index_d$4_Version as Version, WebhookIdentityType$3 as WebhookIdentityType, index_d$4_getCatalogVersion as getCatalogVersion };
|
|
17009
|
+
export { type index_d$4_Asset as Asset, type index_d$4_DefaultDeliveryProfileSetup as DefaultDeliveryProfileSetup, type index_d$4_DeleteContext as DeleteContext, index_d$4_DeleteStatus as DeleteStatus, type Empty$2 as Empty, type index_d$4_GetCatalogVersionRequest as GetCatalogVersionRequest, type index_d$4_GetCatalogVersionResponse as GetCatalogVersionResponse, type index_d$4_GetCatalogVersionResponseNonNullableFields as GetCatalogVersionResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type index_d$4_InstallBassAppDependencyRequest as InstallBassAppDependencyRequest, type index_d$4_InstallBassAppDependencyResponse as InstallBassAppDependencyResponse, type MessageEnvelope$3 as MessageEnvelope, type index_d$4_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d$4_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, index_d$4_Namespace as Namespace, type index_d$4_NamespaceChanged as NamespaceChanged, type index_d$4_Provision as Provision, type index_d$4_ProvisionRequest as ProvisionRequest, type index_d$4_ProvisionResponse as ProvisionResponse, type index_d$4_ServiceProvisioned as ServiceProvisioned, type index_d$4_ServiceRemoved as ServiceRemoved, type index_d$4_SiteCreated as SiteCreated, index_d$4_SiteCreatedContext as SiteCreatedContext, type index_d$4_SiteDeleted as SiteDeleted, type index_d$4_SiteHardDeleted as SiteHardDeleted, type index_d$4_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d$4_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d$4_SitePublished as SitePublished, type index_d$4_SiteRenamed as SiteRenamed, type index_d$4_SiteTransferred as SiteTransferred, type index_d$4_SiteUndeleted as SiteUndeleted, type index_d$4_SiteUnpublished as SiteUnpublished, index_d$4_State as State, type index_d$4_StudioAssigned as StudioAssigned, type index_d$4_StudioUnassigned as StudioUnassigned, index_d$4_Version as Version, WebhookIdentityType$3 as WebhookIdentityType, type index_d$4__publicGetCatalogVersionType as _publicGetCatalogVersionType, index_d$4_getCatalogVersion as getCatalogVersion };
|
|
16590
17010
|
}
|
|
16591
17011
|
|
|
16592
17012
|
/** A Ribbon is a visual element that you can assign to products to highlight them on your site. */
|
|
@@ -17327,23 +17747,53 @@ interface BulkGetOrCreateRibbonsOptions {
|
|
|
17327
17747
|
fields?: RequestedFields[];
|
|
17328
17748
|
}
|
|
17329
17749
|
|
|
17750
|
+
declare function createRibbon$1(httpClient: HttpClient): (ribbon: Ribbon) => Promise<Ribbon & RibbonNonNullableFields>;
|
|
17751
|
+
declare function getRibbon$1(httpClient: HttpClient): (ribbonId: string, options?: GetRibbonOptions) => Promise<Ribbon & RibbonNonNullableFields>;
|
|
17752
|
+
declare function updateRibbon$1(httpClient: HttpClient): (_id: string | null, ribbon: UpdateRibbon, options?: UpdateRibbonOptions) => Promise<Ribbon & RibbonNonNullableFields>;
|
|
17753
|
+
declare function deleteRibbon$1(httpClient: HttpClient): (ribbonId: string) => Promise<void>;
|
|
17754
|
+
declare function queryRibbons$1(httpClient: HttpClient): (options?: QueryRibbonsOptions) => RibbonsQueryBuilder;
|
|
17755
|
+
declare function bulkCreateRibbons$1(httpClient: HttpClient): (ribbons: Ribbon[], options?: BulkCreateRibbonsOptions) => Promise<BulkCreateRibbonsResponse & BulkCreateRibbonsResponseNonNullableFields>;
|
|
17756
|
+
declare function bulkUpdateRibbons$1(httpClient: HttpClient): (ribbons: MaskedRibbon[], options?: BulkUpdateRibbonsOptions) => Promise<BulkUpdateRibbonsResponse & BulkUpdateRibbonsResponseNonNullableFields>;
|
|
17757
|
+
declare function getOrCreateRibbon$1(httpClient: HttpClient): (ribbonName: string, options?: GetOrCreateRibbonOptions) => Promise<GetOrCreateRibbonResponse & GetOrCreateRibbonResponseNonNullableFields>;
|
|
17758
|
+
declare function bulkGetOrCreateRibbons$1(httpClient: HttpClient): (ribbonNames: string[], options?: BulkGetOrCreateRibbonsOptions) => Promise<BulkGetOrCreateRibbonsResponse & BulkGetOrCreateRibbonsResponseNonNullableFields>;
|
|
17759
|
+
declare function bulkDeleteRibbons$1(httpClient: HttpClient): (ribbonIds: string[]) => Promise<BulkDeleteRibbonsResponse & BulkDeleteRibbonsResponseNonNullableFields>;
|
|
17760
|
+
declare const onRibbonCreated$1: EventDefinition<RibbonCreatedEnvelope, "wix.stores.catalog.v3.ribbon_created">;
|
|
17761
|
+
declare const onRibbonUpdated$1: EventDefinition<RibbonUpdatedEnvelope, "wix.stores.catalog.v3.ribbon_updated">;
|
|
17762
|
+
declare const onRibbonDeleted$1: EventDefinition<RibbonDeletedEnvelope, "wix.stores.catalog.v3.ribbon_deleted">;
|
|
17763
|
+
|
|
17330
17764
|
declare function createRESTModule$3<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
17331
17765
|
|
|
17332
17766
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
17333
17767
|
|
|
17334
|
-
|
|
17335
|
-
declare const
|
|
17336
|
-
|
|
17337
|
-
declare const
|
|
17338
|
-
|
|
17339
|
-
declare const
|
|
17340
|
-
|
|
17341
|
-
declare const
|
|
17342
|
-
|
|
17343
|
-
declare const
|
|
17344
|
-
|
|
17345
|
-
declare const
|
|
17346
|
-
|
|
17768
|
+
type _publicCreateRibbonType = typeof createRibbon$1;
|
|
17769
|
+
declare const createRibbon: ReturnType<typeof createRESTModule$3<_publicCreateRibbonType>>;
|
|
17770
|
+
type _publicGetRibbonType = typeof getRibbon$1;
|
|
17771
|
+
declare const getRibbon: ReturnType<typeof createRESTModule$3<_publicGetRibbonType>>;
|
|
17772
|
+
type _publicUpdateRibbonType = typeof updateRibbon$1;
|
|
17773
|
+
declare const updateRibbon: ReturnType<typeof createRESTModule$3<_publicUpdateRibbonType>>;
|
|
17774
|
+
type _publicDeleteRibbonType = typeof deleteRibbon$1;
|
|
17775
|
+
declare const deleteRibbon: ReturnType<typeof createRESTModule$3<_publicDeleteRibbonType>>;
|
|
17776
|
+
type _publicQueryRibbonsType = typeof queryRibbons$1;
|
|
17777
|
+
declare const queryRibbons: ReturnType<typeof createRESTModule$3<_publicQueryRibbonsType>>;
|
|
17778
|
+
type _publicBulkCreateRibbonsType = typeof bulkCreateRibbons$1;
|
|
17779
|
+
declare const bulkCreateRibbons: ReturnType<typeof createRESTModule$3<_publicBulkCreateRibbonsType>>;
|
|
17780
|
+
type _publicBulkUpdateRibbonsType = typeof bulkUpdateRibbons$1;
|
|
17781
|
+
declare const bulkUpdateRibbons: ReturnType<typeof createRESTModule$3<_publicBulkUpdateRibbonsType>>;
|
|
17782
|
+
type _publicGetOrCreateRibbonType = typeof getOrCreateRibbon$1;
|
|
17783
|
+
declare const getOrCreateRibbon: ReturnType<typeof createRESTModule$3<_publicGetOrCreateRibbonType>>;
|
|
17784
|
+
type _publicBulkGetOrCreateRibbonsType = typeof bulkGetOrCreateRibbons$1;
|
|
17785
|
+
declare const bulkGetOrCreateRibbons: ReturnType<typeof createRESTModule$3<_publicBulkGetOrCreateRibbonsType>>;
|
|
17786
|
+
type _publicBulkDeleteRibbonsType = typeof bulkDeleteRibbons$1;
|
|
17787
|
+
declare const bulkDeleteRibbons: ReturnType<typeof createRESTModule$3<_publicBulkDeleteRibbonsType>>;
|
|
17788
|
+
|
|
17789
|
+
type _publicOnRibbonCreatedType = typeof onRibbonCreated$1;
|
|
17790
|
+
declare const onRibbonCreated: ReturnType<typeof createEventModule$1<_publicOnRibbonCreatedType>>;
|
|
17791
|
+
|
|
17792
|
+
type _publicOnRibbonUpdatedType = typeof onRibbonUpdated$1;
|
|
17793
|
+
declare const onRibbonUpdated: ReturnType<typeof createEventModule$1<_publicOnRibbonUpdatedType>>;
|
|
17794
|
+
|
|
17795
|
+
type _publicOnRibbonDeletedType = typeof onRibbonDeleted$1;
|
|
17796
|
+
declare const onRibbonDeleted: ReturnType<typeof createEventModule$1<_publicOnRibbonDeletedType>>;
|
|
17347
17797
|
|
|
17348
17798
|
type index_d$3_ApplicationError = ApplicationError;
|
|
17349
17799
|
type index_d$3_BulkActionMetadata = BulkActionMetadata;
|
|
@@ -17398,6 +17848,19 @@ type index_d$3_UpdateRibbonRequest = UpdateRibbonRequest;
|
|
|
17398
17848
|
type index_d$3_UpdateRibbonResponse = UpdateRibbonResponse;
|
|
17399
17849
|
type index_d$3_UpdateRibbonResponseNonNullableFields = UpdateRibbonResponseNonNullableFields;
|
|
17400
17850
|
type index_d$3_V3BulkRibbonResult = V3BulkRibbonResult;
|
|
17851
|
+
type index_d$3__publicBulkCreateRibbonsType = _publicBulkCreateRibbonsType;
|
|
17852
|
+
type index_d$3__publicBulkDeleteRibbonsType = _publicBulkDeleteRibbonsType;
|
|
17853
|
+
type index_d$3__publicBulkGetOrCreateRibbonsType = _publicBulkGetOrCreateRibbonsType;
|
|
17854
|
+
type index_d$3__publicBulkUpdateRibbonsType = _publicBulkUpdateRibbonsType;
|
|
17855
|
+
type index_d$3__publicCreateRibbonType = _publicCreateRibbonType;
|
|
17856
|
+
type index_d$3__publicDeleteRibbonType = _publicDeleteRibbonType;
|
|
17857
|
+
type index_d$3__publicGetOrCreateRibbonType = _publicGetOrCreateRibbonType;
|
|
17858
|
+
type index_d$3__publicGetRibbonType = _publicGetRibbonType;
|
|
17859
|
+
type index_d$3__publicOnRibbonCreatedType = _publicOnRibbonCreatedType;
|
|
17860
|
+
type index_d$3__publicOnRibbonDeletedType = _publicOnRibbonDeletedType;
|
|
17861
|
+
type index_d$3__publicOnRibbonUpdatedType = _publicOnRibbonUpdatedType;
|
|
17862
|
+
type index_d$3__publicQueryRibbonsType = _publicQueryRibbonsType;
|
|
17863
|
+
type index_d$3__publicUpdateRibbonType = _publicUpdateRibbonType;
|
|
17401
17864
|
declare const index_d$3_bulkCreateRibbons: typeof bulkCreateRibbons;
|
|
17402
17865
|
declare const index_d$3_bulkDeleteRibbons: typeof bulkDeleteRibbons;
|
|
17403
17866
|
declare const index_d$3_bulkGetOrCreateRibbons: typeof bulkGetOrCreateRibbons;
|
|
@@ -17412,7 +17875,7 @@ declare const index_d$3_onRibbonUpdated: typeof onRibbonUpdated;
|
|
|
17412
17875
|
declare const index_d$3_queryRibbons: typeof queryRibbons;
|
|
17413
17876
|
declare const index_d$3_updateRibbon: typeof updateRibbon;
|
|
17414
17877
|
declare namespace index_d$3 {
|
|
17415
|
-
export { type ActionEvent$1 as ActionEvent, type App$1 as App, type index_d$3_ApplicationError as ApplicationError, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$3_BulkActionMetadata as BulkActionMetadata, type index_d$3_BulkCreateRibbonsOptions as BulkCreateRibbonsOptions, type index_d$3_BulkCreateRibbonsRequest as BulkCreateRibbonsRequest, type index_d$3_BulkCreateRibbonsResponse as BulkCreateRibbonsResponse, type index_d$3_BulkCreateRibbonsResponseNonNullableFields as BulkCreateRibbonsResponseNonNullableFields, type index_d$3_BulkDeleteRibbonsRequest as BulkDeleteRibbonsRequest, type index_d$3_BulkDeleteRibbonsResponse as BulkDeleteRibbonsResponse, type index_d$3_BulkDeleteRibbonsResponseNonNullableFields as BulkDeleteRibbonsResponseNonNullableFields, type index_d$3_BulkGetOrCreateRibbonsOptions as BulkGetOrCreateRibbonsOptions, type index_d$3_BulkGetOrCreateRibbonsRequest as BulkGetOrCreateRibbonsRequest, type index_d$3_BulkGetOrCreateRibbonsResponse as BulkGetOrCreateRibbonsResponse, type index_d$3_BulkGetOrCreateRibbonsResponseNonNullableFields as BulkGetOrCreateRibbonsResponseNonNullableFields, type index_d$3_BulkRibbonResult as BulkRibbonResult, type index_d$3_BulkUpdateRibbonsOptions as BulkUpdateRibbonsOptions, type index_d$3_BulkUpdateRibbonsRequest as BulkUpdateRibbonsRequest, type index_d$3_BulkUpdateRibbonsResponse as BulkUpdateRibbonsResponse, type index_d$3_BulkUpdateRibbonsResponseNonNullableFields as BulkUpdateRibbonsResponseNonNullableFields, type index_d$3_CreateRibbonRequest as CreateRibbonRequest, type index_d$3_CreateRibbonResponse as CreateRibbonResponse, type index_d$3_CreateRibbonResponseNonNullableFields as CreateRibbonResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$3_DeleteRibbonRequest as DeleteRibbonRequest, type index_d$3_DeleteRibbonResponse as DeleteRibbonResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$3_EventMetadata as EventMetadata, type File$1 as File, type index_d$3_GetOrCreateRibbonOptions as GetOrCreateRibbonOptions, type index_d$3_GetOrCreateRibbonRequest as GetOrCreateRibbonRequest, type index_d$3_GetOrCreateRibbonResponse as GetOrCreateRibbonResponse, type index_d$3_GetOrCreateRibbonResponseNonNullableFields as GetOrCreateRibbonResponseNonNullableFields, type index_d$3_GetRibbonOptions as GetRibbonOptions, type index_d$3_GetRibbonRequest as GetRibbonRequest, type index_d$3_GetRibbonResponse as GetRibbonResponse, type index_d$3_GetRibbonResponseNonNullableFields as GetRibbonResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type InvalidateCache$1 as InvalidateCache, type InvalidateCacheGetByOneOf$1 as InvalidateCacheGetByOneOf, type index_d$3_ItemMetadata as ItemMetadata, type index_d$3_MaskedRibbon as MaskedRibbon, type MessageEnvelope$2 as MessageEnvelope, type Page$1 as Page, type index_d$3_QueryRibbonsOptions as QueryRibbonsOptions, type index_d$3_QueryRibbonsRequest as QueryRibbonsRequest, type index_d$3_QueryRibbonsResponse as QueryRibbonsResponse, type index_d$3_QueryRibbonsResponseNonNullableFields as QueryRibbonsResponseNonNullableFields, index_d$3_RequestedFields as RequestedFields, type RestoreInfo$1 as RestoreInfo, type index_d$3_Ribbon as Ribbon, type index_d$3_RibbonCreatedEnvelope as RibbonCreatedEnvelope, type index_d$3_RibbonDeletedEnvelope as RibbonDeletedEnvelope, type index_d$3_RibbonNonNullableFields as RibbonNonNullableFields, type index_d$3_RibbonUpdatedEnvelope as RibbonUpdatedEnvelope, type index_d$3_RibbonsQueryBuilder as RibbonsQueryBuilder, type index_d$3_RibbonsQueryResult as RibbonsQueryResult, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type URI$1 as URI, type index_d$3_UpdateRibbon as UpdateRibbon, type index_d$3_UpdateRibbonOptions as UpdateRibbonOptions, type index_d$3_UpdateRibbonRequest as UpdateRibbonRequest, type index_d$3_UpdateRibbonResponse as UpdateRibbonResponse, type index_d$3_UpdateRibbonResponseNonNullableFields as UpdateRibbonResponseNonNullableFields, type index_d$3_V3BulkRibbonResult as V3BulkRibbonResult, WebhookIdentityType$2 as WebhookIdentityType, index_d$3_bulkCreateRibbons as bulkCreateRibbons, index_d$3_bulkDeleteRibbons as bulkDeleteRibbons, index_d$3_bulkGetOrCreateRibbons as bulkGetOrCreateRibbons, index_d$3_bulkUpdateRibbons as bulkUpdateRibbons, index_d$3_createRibbon as createRibbon, index_d$3_deleteRibbon as deleteRibbon, index_d$3_getOrCreateRibbon as getOrCreateRibbon, index_d$3_getRibbon as getRibbon, index_d$3_onRibbonCreated as onRibbonCreated, index_d$3_onRibbonDeleted as onRibbonDeleted, index_d$3_onRibbonUpdated as onRibbonUpdated, index_d$3_queryRibbons as queryRibbons, index_d$3_updateRibbon as updateRibbon };
|
|
17878
|
+
export { type ActionEvent$1 as ActionEvent, type App$1 as App, type index_d$3_ApplicationError as ApplicationError, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$3_BulkActionMetadata as BulkActionMetadata, type index_d$3_BulkCreateRibbonsOptions as BulkCreateRibbonsOptions, type index_d$3_BulkCreateRibbonsRequest as BulkCreateRibbonsRequest, type index_d$3_BulkCreateRibbonsResponse as BulkCreateRibbonsResponse, type index_d$3_BulkCreateRibbonsResponseNonNullableFields as BulkCreateRibbonsResponseNonNullableFields, type index_d$3_BulkDeleteRibbonsRequest as BulkDeleteRibbonsRequest, type index_d$3_BulkDeleteRibbonsResponse as BulkDeleteRibbonsResponse, type index_d$3_BulkDeleteRibbonsResponseNonNullableFields as BulkDeleteRibbonsResponseNonNullableFields, type index_d$3_BulkGetOrCreateRibbonsOptions as BulkGetOrCreateRibbonsOptions, type index_d$3_BulkGetOrCreateRibbonsRequest as BulkGetOrCreateRibbonsRequest, type index_d$3_BulkGetOrCreateRibbonsResponse as BulkGetOrCreateRibbonsResponse, type index_d$3_BulkGetOrCreateRibbonsResponseNonNullableFields as BulkGetOrCreateRibbonsResponseNonNullableFields, type index_d$3_BulkRibbonResult as BulkRibbonResult, type index_d$3_BulkUpdateRibbonsOptions as BulkUpdateRibbonsOptions, type index_d$3_BulkUpdateRibbonsRequest as BulkUpdateRibbonsRequest, type index_d$3_BulkUpdateRibbonsResponse as BulkUpdateRibbonsResponse, type index_d$3_BulkUpdateRibbonsResponseNonNullableFields as BulkUpdateRibbonsResponseNonNullableFields, type index_d$3_CreateRibbonRequest as CreateRibbonRequest, type index_d$3_CreateRibbonResponse as CreateRibbonResponse, type index_d$3_CreateRibbonResponseNonNullableFields as CreateRibbonResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$3_DeleteRibbonRequest as DeleteRibbonRequest, type index_d$3_DeleteRibbonResponse as DeleteRibbonResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$3_EventMetadata as EventMetadata, type File$1 as File, type index_d$3_GetOrCreateRibbonOptions as GetOrCreateRibbonOptions, type index_d$3_GetOrCreateRibbonRequest as GetOrCreateRibbonRequest, type index_d$3_GetOrCreateRibbonResponse as GetOrCreateRibbonResponse, type index_d$3_GetOrCreateRibbonResponseNonNullableFields as GetOrCreateRibbonResponseNonNullableFields, type index_d$3_GetRibbonOptions as GetRibbonOptions, type index_d$3_GetRibbonRequest as GetRibbonRequest, type index_d$3_GetRibbonResponse as GetRibbonResponse, type index_d$3_GetRibbonResponseNonNullableFields as GetRibbonResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type InvalidateCache$1 as InvalidateCache, type InvalidateCacheGetByOneOf$1 as InvalidateCacheGetByOneOf, type index_d$3_ItemMetadata as ItemMetadata, type index_d$3_MaskedRibbon as MaskedRibbon, type MessageEnvelope$2 as MessageEnvelope, type Page$1 as Page, type index_d$3_QueryRibbonsOptions as QueryRibbonsOptions, type index_d$3_QueryRibbonsRequest as QueryRibbonsRequest, type index_d$3_QueryRibbonsResponse as QueryRibbonsResponse, type index_d$3_QueryRibbonsResponseNonNullableFields as QueryRibbonsResponseNonNullableFields, index_d$3_RequestedFields as RequestedFields, type RestoreInfo$1 as RestoreInfo, type index_d$3_Ribbon as Ribbon, type index_d$3_RibbonCreatedEnvelope as RibbonCreatedEnvelope, type index_d$3_RibbonDeletedEnvelope as RibbonDeletedEnvelope, type index_d$3_RibbonNonNullableFields as RibbonNonNullableFields, type index_d$3_RibbonUpdatedEnvelope as RibbonUpdatedEnvelope, type index_d$3_RibbonsQueryBuilder as RibbonsQueryBuilder, type index_d$3_RibbonsQueryResult as RibbonsQueryResult, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type URI$1 as URI, type index_d$3_UpdateRibbon as UpdateRibbon, type index_d$3_UpdateRibbonOptions as UpdateRibbonOptions, type index_d$3_UpdateRibbonRequest as UpdateRibbonRequest, type index_d$3_UpdateRibbonResponse as UpdateRibbonResponse, type index_d$3_UpdateRibbonResponseNonNullableFields as UpdateRibbonResponseNonNullableFields, type index_d$3_V3BulkRibbonResult as V3BulkRibbonResult, WebhookIdentityType$2 as WebhookIdentityType, type index_d$3__publicBulkCreateRibbonsType as _publicBulkCreateRibbonsType, type index_d$3__publicBulkDeleteRibbonsType as _publicBulkDeleteRibbonsType, type index_d$3__publicBulkGetOrCreateRibbonsType as _publicBulkGetOrCreateRibbonsType, type index_d$3__publicBulkUpdateRibbonsType as _publicBulkUpdateRibbonsType, type index_d$3__publicCreateRibbonType as _publicCreateRibbonType, type index_d$3__publicDeleteRibbonType as _publicDeleteRibbonType, type index_d$3__publicGetOrCreateRibbonType as _publicGetOrCreateRibbonType, type index_d$3__publicGetRibbonType as _publicGetRibbonType, type index_d$3__publicOnRibbonCreatedType as _publicOnRibbonCreatedType, type index_d$3__publicOnRibbonDeletedType as _publicOnRibbonDeletedType, type index_d$3__publicOnRibbonUpdatedType as _publicOnRibbonUpdatedType, type index_d$3__publicQueryRibbonsType as _publicQueryRibbonsType, type index_d$3__publicUpdateRibbonType as _publicUpdateRibbonType, index_d$3_bulkCreateRibbons as bulkCreateRibbons, index_d$3_bulkDeleteRibbons as bulkDeleteRibbons, index_d$3_bulkGetOrCreateRibbons as bulkGetOrCreateRibbons, index_d$3_bulkUpdateRibbons as bulkUpdateRibbons, index_d$3_createRibbon as createRibbon, index_d$3_deleteRibbon as deleteRibbon, index_d$3_getOrCreateRibbon as getOrCreateRibbon, index_d$3_getRibbon as getRibbon, index_d$3_onRibbonCreated as onRibbonCreated, index_d$3_onRibbonDeleted as onRibbonDeleted, index_d$3_onRibbonUpdated as onRibbonUpdated, onRibbonCreated$1 as publicOnRibbonCreated, onRibbonDeleted$1 as publicOnRibbonDeleted, onRibbonUpdated$1 as publicOnRibbonUpdated, index_d$3_queryRibbons as queryRibbons, index_d$3_updateRibbon as updateRibbon };
|
|
17416
17879
|
}
|
|
17417
17880
|
|
|
17418
17881
|
/** A location is a physical or virtual site where products are sold. */
|
|
@@ -17837,10 +18300,15 @@ interface StoresLocationsQueryBuilder {
|
|
|
17837
18300
|
find: () => Promise<StoresLocationsQueryResult>;
|
|
17838
18301
|
}
|
|
17839
18302
|
|
|
18303
|
+
declare function getStoresLocation$1(httpClient: HttpClient): (storesLocationId: string) => Promise<StoresLocation & StoresLocationNonNullableFields>;
|
|
18304
|
+
declare function queryStoresLocations$1(httpClient: HttpClient): () => StoresLocationsQueryBuilder;
|
|
18305
|
+
|
|
17840
18306
|
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
17841
18307
|
|
|
17842
|
-
|
|
17843
|
-
declare const
|
|
18308
|
+
type _publicGetStoresLocationType = typeof getStoresLocation$1;
|
|
18309
|
+
declare const getStoresLocation: ReturnType<typeof createRESTModule$2<_publicGetStoresLocationType>>;
|
|
18310
|
+
type _publicQueryStoresLocationsType = typeof queryStoresLocations$1;
|
|
18311
|
+
declare const queryStoresLocations: ReturnType<typeof createRESTModule$2<_publicQueryStoresLocationsType>>;
|
|
17844
18312
|
|
|
17845
18313
|
type index_d$2_ActionEvent = ActionEvent;
|
|
17846
18314
|
type index_d$2_App = App;
|
|
@@ -17884,10 +18352,12 @@ type index_d$2_StoresLocationsQueryResult = StoresLocationsQueryResult;
|
|
|
17884
18352
|
type index_d$2_URI = URI;
|
|
17885
18353
|
type index_d$2_UpdateStoresLocationRequest = UpdateStoresLocationRequest;
|
|
17886
18354
|
type index_d$2_UpdateStoresLocationResponse = UpdateStoresLocationResponse;
|
|
18355
|
+
type index_d$2__publicGetStoresLocationType = _publicGetStoresLocationType;
|
|
18356
|
+
type index_d$2__publicQueryStoresLocationsType = _publicQueryStoresLocationsType;
|
|
17887
18357
|
declare const index_d$2_getStoresLocation: typeof getStoresLocation;
|
|
17888
18358
|
declare const index_d$2_queryStoresLocations: typeof queryStoresLocations;
|
|
17889
18359
|
declare namespace index_d$2 {
|
|
17890
|
-
export { type index_d$2_ActionEvent as ActionEvent, type index_d$2_App as App, type index_d$2_CreateStoresLocationRequest as CreateStoresLocationRequest, type index_d$2_CreateStoresLocationResponse as CreateStoresLocationResponse, type index_d$2_CursorPaging as CursorPaging, type index_d$2_CursorPagingMetadata as CursorPagingMetadata, type index_d$2_CursorQuery as CursorQuery, type index_d$2_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d$2_Cursors as Cursors, type index_d$2_DeleteStoresLocationRequest as DeleteStoresLocationRequest, type index_d$2_DeleteStoresLocationResponse as DeleteStoresLocationResponse, type index_d$2_DomainEvent as DomainEvent, type index_d$2_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$2_Empty as Empty, type index_d$2_EntityCreatedEvent as EntityCreatedEvent, type index_d$2_EntityDeletedEvent as EntityDeletedEvent, type index_d$2_EntityUpdatedEvent as EntityUpdatedEvent, type index_d$2_File as File, type index_d$2_GetOrCreateDefaultStoresLocationRequest as GetOrCreateDefaultStoresLocationRequest, type index_d$2_GetOrCreateDefaultStoresLocationResponse as GetOrCreateDefaultStoresLocationResponse, type index_d$2_GetStoresLocationRequest as GetStoresLocationRequest, type index_d$2_GetStoresLocationResponse as GetStoresLocationResponse, type index_d$2_GetStoresLocationResponseNonNullableFields as GetStoresLocationResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$2_InvalidateCache as InvalidateCache, type index_d$2_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, index_d$2_LocationType as LocationType, type MessageEnvelope$1 as MessageEnvelope, type index_d$2_Page as Page, type index_d$2_QueryStoresLocationsRequest as QueryStoresLocationsRequest, type index_d$2_QueryStoresLocationsResponse as QueryStoresLocationsResponse, type index_d$2_QueryStoresLocationsResponseNonNullableFields as QueryStoresLocationsResponseNonNullableFields, type index_d$2_RestoreInfo as RestoreInfo, index_d$2_SortOrder as SortOrder, type index_d$2_Sorting as Sorting, type index_d$2_StoresLocation as StoresLocation, type index_d$2_StoresLocationNonNullableFields as StoresLocationNonNullableFields, type index_d$2_StoresLocationsQueryBuilder as StoresLocationsQueryBuilder, type index_d$2_StoresLocationsQueryResult as StoresLocationsQueryResult, type index_d$2_URI as URI, type index_d$2_UpdateStoresLocationRequest as UpdateStoresLocationRequest, type index_d$2_UpdateStoresLocationResponse as UpdateStoresLocationResponse, WebhookIdentityType$1 as WebhookIdentityType, index_d$2_getStoresLocation as getStoresLocation, index_d$2_queryStoresLocations as queryStoresLocations };
|
|
18360
|
+
export { type index_d$2_ActionEvent as ActionEvent, type index_d$2_App as App, type index_d$2_CreateStoresLocationRequest as CreateStoresLocationRequest, type index_d$2_CreateStoresLocationResponse as CreateStoresLocationResponse, type index_d$2_CursorPaging as CursorPaging, type index_d$2_CursorPagingMetadata as CursorPagingMetadata, type index_d$2_CursorQuery as CursorQuery, type index_d$2_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d$2_Cursors as Cursors, type index_d$2_DeleteStoresLocationRequest as DeleteStoresLocationRequest, type index_d$2_DeleteStoresLocationResponse as DeleteStoresLocationResponse, type index_d$2_DomainEvent as DomainEvent, type index_d$2_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$2_Empty as Empty, type index_d$2_EntityCreatedEvent as EntityCreatedEvent, type index_d$2_EntityDeletedEvent as EntityDeletedEvent, type index_d$2_EntityUpdatedEvent as EntityUpdatedEvent, type index_d$2_File as File, type index_d$2_GetOrCreateDefaultStoresLocationRequest as GetOrCreateDefaultStoresLocationRequest, type index_d$2_GetOrCreateDefaultStoresLocationResponse as GetOrCreateDefaultStoresLocationResponse, type index_d$2_GetStoresLocationRequest as GetStoresLocationRequest, type index_d$2_GetStoresLocationResponse as GetStoresLocationResponse, type index_d$2_GetStoresLocationResponseNonNullableFields as GetStoresLocationResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$2_InvalidateCache as InvalidateCache, type index_d$2_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, index_d$2_LocationType as LocationType, type MessageEnvelope$1 as MessageEnvelope, type index_d$2_Page as Page, type index_d$2_QueryStoresLocationsRequest as QueryStoresLocationsRequest, type index_d$2_QueryStoresLocationsResponse as QueryStoresLocationsResponse, type index_d$2_QueryStoresLocationsResponseNonNullableFields as QueryStoresLocationsResponseNonNullableFields, type index_d$2_RestoreInfo as RestoreInfo, index_d$2_SortOrder as SortOrder, type index_d$2_Sorting as Sorting, type index_d$2_StoresLocation as StoresLocation, type index_d$2_StoresLocationNonNullableFields as StoresLocationNonNullableFields, type index_d$2_StoresLocationsQueryBuilder as StoresLocationsQueryBuilder, type index_d$2_StoresLocationsQueryResult as StoresLocationsQueryResult, type index_d$2_URI as URI, type index_d$2_UpdateStoresLocationRequest as UpdateStoresLocationRequest, type index_d$2_UpdateStoresLocationResponse as UpdateStoresLocationResponse, WebhookIdentityType$1 as WebhookIdentityType, type index_d$2__publicGetStoresLocationType as _publicGetStoresLocationType, type index_d$2__publicQueryStoresLocationsType as _publicQueryStoresLocationsType, index_d$2_getStoresLocation as getStoresLocation, index_d$2_queryStoresLocations as queryStoresLocations };
|
|
17891
18361
|
}
|
|
17892
18362
|
|
|
17893
18363
|
interface SubscriptionOption {
|
|
@@ -18234,20 +18704,45 @@ interface GetProductIdsForSubscriptionOptionOptions {
|
|
|
18234
18704
|
paging?: Paging$1;
|
|
18235
18705
|
}
|
|
18236
18706
|
|
|
18707
|
+
declare function createSubscriptionOption$1(httpClient: HttpClient): (subscriptionOption: SubscriptionOption) => Promise<SubscriptionOption & SubscriptionOptionNonNullableFields>;
|
|
18708
|
+
declare function updateSubscriptionOption$1(httpClient: HttpClient): (_id: string | null, subscriptionOption: UpdateSubscriptionOption) => Promise<SubscriptionOption & SubscriptionOptionNonNullableFields>;
|
|
18709
|
+
declare function deleteSubscriptionOption$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
18710
|
+
declare function bulkCreateSubscriptionOptions$1(httpClient: HttpClient): (subscriptionOptions: SubscriptionOption[]) => Promise<BulkCreateSubscriptionOptionsResponse & BulkCreateSubscriptionOptionsResponseNonNullableFields>;
|
|
18711
|
+
declare function bulkUpdateSubscriptionOptions$1(httpClient: HttpClient): (subscriptionOptions: SubscriptionOption[]) => Promise<BulkUpdateSubscriptionOptionsResponse & BulkUpdateSubscriptionOptionsResponseNonNullableFields>;
|
|
18712
|
+
declare function bulkDeleteSubscriptionOptions$1(httpClient: HttpClient): (ids: string[]) => Promise<void>;
|
|
18713
|
+
declare function assignSubscriptionOptionsToProduct$1(httpClient: HttpClient): (productId: string, options?: AssignSubscriptionOptionsToProductOptions) => Promise<void>;
|
|
18714
|
+
declare function allowOneTimePurchases$1(httpClient: HttpClient): (productId: string, allowed: boolean | null) => Promise<void>;
|
|
18715
|
+
declare function getSubscriptionOption$1(httpClient: HttpClient): (_id: string) => Promise<SubscriptionOption & SubscriptionOptionNonNullableFields>;
|
|
18716
|
+
declare function getSubscriptionOptionsForProduct$1(httpClient: HttpClient): (productId: string, options?: GetSubscriptionOptionsForProductOptions) => Promise<GetSubscriptionOptionsForProductResponse & GetSubscriptionOptionsForProductResponseNonNullableFields>;
|
|
18717
|
+
declare function getProductIdsForSubscriptionOption$1(httpClient: HttpClient): (_id: string, options?: GetProductIdsForSubscriptionOptionOptions) => Promise<GetProductIdsForSubscriptionOptionResponse & GetProductIdsForSubscriptionOptionResponseNonNullableFields>;
|
|
18718
|
+
declare function getOneTimePurchasesStatus$1(httpClient: HttpClient): (productId: string) => Promise<GetOneTimePurchasesStatusResponse & GetOneTimePurchasesStatusResponseNonNullableFields>;
|
|
18719
|
+
|
|
18237
18720
|
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
18238
18721
|
|
|
18239
|
-
|
|
18240
|
-
declare const
|
|
18241
|
-
|
|
18242
|
-
declare const
|
|
18243
|
-
|
|
18244
|
-
declare const
|
|
18245
|
-
|
|
18246
|
-
declare const
|
|
18247
|
-
|
|
18248
|
-
declare const
|
|
18249
|
-
|
|
18250
|
-
declare const
|
|
18722
|
+
type _publicCreateSubscriptionOptionType = typeof createSubscriptionOption$1;
|
|
18723
|
+
declare const createSubscriptionOption: ReturnType<typeof createRESTModule$1<_publicCreateSubscriptionOptionType>>;
|
|
18724
|
+
type _publicUpdateSubscriptionOptionType = typeof updateSubscriptionOption$1;
|
|
18725
|
+
declare const updateSubscriptionOption: ReturnType<typeof createRESTModule$1<_publicUpdateSubscriptionOptionType>>;
|
|
18726
|
+
type _publicDeleteSubscriptionOptionType = typeof deleteSubscriptionOption$1;
|
|
18727
|
+
declare const deleteSubscriptionOption: ReturnType<typeof createRESTModule$1<_publicDeleteSubscriptionOptionType>>;
|
|
18728
|
+
type _publicBulkCreateSubscriptionOptionsType = typeof bulkCreateSubscriptionOptions$1;
|
|
18729
|
+
declare const bulkCreateSubscriptionOptions: ReturnType<typeof createRESTModule$1<_publicBulkCreateSubscriptionOptionsType>>;
|
|
18730
|
+
type _publicBulkUpdateSubscriptionOptionsType = typeof bulkUpdateSubscriptionOptions$1;
|
|
18731
|
+
declare const bulkUpdateSubscriptionOptions: ReturnType<typeof createRESTModule$1<_publicBulkUpdateSubscriptionOptionsType>>;
|
|
18732
|
+
type _publicBulkDeleteSubscriptionOptionsType = typeof bulkDeleteSubscriptionOptions$1;
|
|
18733
|
+
declare const bulkDeleteSubscriptionOptions: ReturnType<typeof createRESTModule$1<_publicBulkDeleteSubscriptionOptionsType>>;
|
|
18734
|
+
type _publicAssignSubscriptionOptionsToProductType = typeof assignSubscriptionOptionsToProduct$1;
|
|
18735
|
+
declare const assignSubscriptionOptionsToProduct: ReturnType<typeof createRESTModule$1<_publicAssignSubscriptionOptionsToProductType>>;
|
|
18736
|
+
type _publicAllowOneTimePurchasesType = typeof allowOneTimePurchases$1;
|
|
18737
|
+
declare const allowOneTimePurchases: ReturnType<typeof createRESTModule$1<_publicAllowOneTimePurchasesType>>;
|
|
18738
|
+
type _publicGetSubscriptionOptionType = typeof getSubscriptionOption$1;
|
|
18739
|
+
declare const getSubscriptionOption: ReturnType<typeof createRESTModule$1<_publicGetSubscriptionOptionType>>;
|
|
18740
|
+
type _publicGetSubscriptionOptionsForProductType = typeof getSubscriptionOptionsForProduct$1;
|
|
18741
|
+
declare const getSubscriptionOptionsForProduct: ReturnType<typeof createRESTModule$1<_publicGetSubscriptionOptionsForProductType>>;
|
|
18742
|
+
type _publicGetProductIdsForSubscriptionOptionType = typeof getProductIdsForSubscriptionOption$1;
|
|
18743
|
+
declare const getProductIdsForSubscriptionOption: ReturnType<typeof createRESTModule$1<_publicGetProductIdsForSubscriptionOptionType>>;
|
|
18744
|
+
type _publicGetOneTimePurchasesStatusType = typeof getOneTimePurchasesStatus$1;
|
|
18745
|
+
declare const getOneTimePurchasesStatus: ReturnType<typeof createRESTModule$1<_publicGetOneTimePurchasesStatusType>>;
|
|
18251
18746
|
|
|
18252
18747
|
type index_d$1_AllowOneTimePurchasesRequest = AllowOneTimePurchasesRequest;
|
|
18253
18748
|
type index_d$1_AllowOneTimePurchasesResponse = AllowOneTimePurchasesResponse;
|
|
@@ -18306,6 +18801,18 @@ type index_d$1_UpdateSubscriptionOption = UpdateSubscriptionOption;
|
|
|
18306
18801
|
type index_d$1_UpdateSubscriptionOptionRequest = UpdateSubscriptionOptionRequest;
|
|
18307
18802
|
type index_d$1_UpdateSubscriptionOptionResponse = UpdateSubscriptionOptionResponse;
|
|
18308
18803
|
type index_d$1_UpdateSubscriptionOptionResponseNonNullableFields = UpdateSubscriptionOptionResponseNonNullableFields;
|
|
18804
|
+
type index_d$1__publicAllowOneTimePurchasesType = _publicAllowOneTimePurchasesType;
|
|
18805
|
+
type index_d$1__publicAssignSubscriptionOptionsToProductType = _publicAssignSubscriptionOptionsToProductType;
|
|
18806
|
+
type index_d$1__publicBulkCreateSubscriptionOptionsType = _publicBulkCreateSubscriptionOptionsType;
|
|
18807
|
+
type index_d$1__publicBulkDeleteSubscriptionOptionsType = _publicBulkDeleteSubscriptionOptionsType;
|
|
18808
|
+
type index_d$1__publicBulkUpdateSubscriptionOptionsType = _publicBulkUpdateSubscriptionOptionsType;
|
|
18809
|
+
type index_d$1__publicCreateSubscriptionOptionType = _publicCreateSubscriptionOptionType;
|
|
18810
|
+
type index_d$1__publicDeleteSubscriptionOptionType = _publicDeleteSubscriptionOptionType;
|
|
18811
|
+
type index_d$1__publicGetOneTimePurchasesStatusType = _publicGetOneTimePurchasesStatusType;
|
|
18812
|
+
type index_d$1__publicGetProductIdsForSubscriptionOptionType = _publicGetProductIdsForSubscriptionOptionType;
|
|
18813
|
+
type index_d$1__publicGetSubscriptionOptionType = _publicGetSubscriptionOptionType;
|
|
18814
|
+
type index_d$1__publicGetSubscriptionOptionsForProductType = _publicGetSubscriptionOptionsForProductType;
|
|
18815
|
+
type index_d$1__publicUpdateSubscriptionOptionType = _publicUpdateSubscriptionOptionType;
|
|
18309
18816
|
declare const index_d$1_allowOneTimePurchases: typeof allowOneTimePurchases;
|
|
18310
18817
|
declare const index_d$1_assignSubscriptionOptionsToProduct: typeof assignSubscriptionOptionsToProduct;
|
|
18311
18818
|
declare const index_d$1_bulkCreateSubscriptionOptions: typeof bulkCreateSubscriptionOptions;
|
|
@@ -18319,7 +18826,7 @@ declare const index_d$1_getSubscriptionOption: typeof getSubscriptionOption;
|
|
|
18319
18826
|
declare const index_d$1_getSubscriptionOptionsForProduct: typeof getSubscriptionOptionsForProduct;
|
|
18320
18827
|
declare const index_d$1_updateSubscriptionOption: typeof updateSubscriptionOption;
|
|
18321
18828
|
declare namespace index_d$1 {
|
|
18322
|
-
export { type index_d$1_AllowOneTimePurchasesRequest as AllowOneTimePurchasesRequest, type index_d$1_AllowOneTimePurchasesResponse as AllowOneTimePurchasesResponse, type index_d$1_AssignSubscriptionOptionsToProductOptions as AssignSubscriptionOptionsToProductOptions, type index_d$1_AssignSubscriptionOptionsToProductRequest as AssignSubscriptionOptionsToProductRequest, type index_d$1_AssignSubscriptionOptionsToProductResponse as AssignSubscriptionOptionsToProductResponse, type index_d$1_BulkCalculatePricesRequest as BulkCalculatePricesRequest, type index_d$1_BulkCalculatePricesRequestItem as BulkCalculatePricesRequestItem, type index_d$1_BulkCalculatePricesRequestV2 as BulkCalculatePricesRequestV2, type index_d$1_BulkCalculatePricesResponse as BulkCalculatePricesResponse, type index_d$1_BulkCalculatePricesResponseItem as BulkCalculatePricesResponseItem, type index_d$1_BulkCalculatePricesResponseV2 as BulkCalculatePricesResponseV2, type index_d$1_BulkCreateSubscriptionOptionsRequest as BulkCreateSubscriptionOptionsRequest, type index_d$1_BulkCreateSubscriptionOptionsResponse as BulkCreateSubscriptionOptionsResponse, type index_d$1_BulkCreateSubscriptionOptionsResponseNonNullableFields as BulkCreateSubscriptionOptionsResponseNonNullableFields, type index_d$1_BulkDeleteSubscriptionOptionsRequest as BulkDeleteSubscriptionOptionsRequest, type index_d$1_BulkDeleteSubscriptionOptionsResponse as BulkDeleteSubscriptionOptionsResponse, type index_d$1_BulkUpdateSubscriptionOptionsRequest as BulkUpdateSubscriptionOptionsRequest, type index_d$1_BulkUpdateSubscriptionOptionsResponse as BulkUpdateSubscriptionOptionsResponse, type index_d$1_BulkUpdateSubscriptionOptionsResponseNonNullableFields as BulkUpdateSubscriptionOptionsResponseNonNullableFields, type index_d$1_CalculatePricesRequest as CalculatePricesRequest, type index_d$1_CalculatePricesResponse as CalculatePricesResponse, type index_d$1_CreateSubscriptionOptionRequest as CreateSubscriptionOptionRequest, type index_d$1_CreateSubscriptionOptionResponse as CreateSubscriptionOptionResponse, type index_d$1_CreateSubscriptionOptionResponseNonNullableFields as CreateSubscriptionOptionResponseNonNullableFields, type index_d$1_DeleteSubscriptionOptionRequest as DeleteSubscriptionOptionRequest, type index_d$1_DeleteSubscriptionOptionResponse as DeleteSubscriptionOptionResponse, type index_d$1_Discount as Discount, index_d$1_DiscountType as DiscountType, type index_d$1_GetOneTimePurchasesStatusRequest as GetOneTimePurchasesStatusRequest, type index_d$1_GetOneTimePurchasesStatusResponse as GetOneTimePurchasesStatusResponse, type index_d$1_GetOneTimePurchasesStatusResponseNonNullableFields as GetOneTimePurchasesStatusResponseNonNullableFields, type index_d$1_GetProductIdsForSubscriptionOptionOptions as GetProductIdsForSubscriptionOptionOptions, type index_d$1_GetProductIdsForSubscriptionOptionRequest as GetProductIdsForSubscriptionOptionRequest, type index_d$1_GetProductIdsForSubscriptionOptionResponse as GetProductIdsForSubscriptionOptionResponse, type index_d$1_GetProductIdsForSubscriptionOptionResponseNonNullableFields as GetProductIdsForSubscriptionOptionResponseNonNullableFields, type index_d$1_GetSubscriptionOptionRequest as GetSubscriptionOptionRequest, type index_d$1_GetSubscriptionOptionResponse as GetSubscriptionOptionResponse, type index_d$1_GetSubscriptionOptionResponseNonNullableFields as GetSubscriptionOptionResponseNonNullableFields, type index_d$1_GetSubscriptionOptionsForProductOptions as GetSubscriptionOptionsForProductOptions, type index_d$1_GetSubscriptionOptionsForProductRequest as GetSubscriptionOptionsForProductRequest, type index_d$1_GetSubscriptionOptionsForProductResponse as GetSubscriptionOptionsForProductResponse, type index_d$1_GetSubscriptionOptionsForProductResponseNonNullableFields as GetSubscriptionOptionsForProductResponseNonNullableFields, type index_d$1_ListSubscriptionOptionsRequest as ListSubscriptionOptionsRequest, type index_d$1_ListSubscriptionOptionsResponse as ListSubscriptionOptionsResponse, type Paging$1 as Paging, type PagingMetadata$1 as PagingMetadata, index_d$1_SubscriptionFrequency as SubscriptionFrequency, type index_d$1_SubscriptionOption as SubscriptionOption, type index_d$1_SubscriptionOptionInProduct as SubscriptionOptionInProduct, type index_d$1_SubscriptionOptionNonNullableFields as SubscriptionOptionNonNullableFields, type index_d$1_SubscriptionOptionPriceData as SubscriptionOptionPriceData, type index_d$1_SubscriptionOptionPrices as SubscriptionOptionPrices, type index_d$1_SubscriptionSettings as SubscriptionSettings, type index_d$1_UpdateSubscriptionOption as UpdateSubscriptionOption, type index_d$1_UpdateSubscriptionOptionRequest as UpdateSubscriptionOptionRequest, type index_d$1_UpdateSubscriptionOptionResponse as UpdateSubscriptionOptionResponse, type index_d$1_UpdateSubscriptionOptionResponseNonNullableFields as UpdateSubscriptionOptionResponseNonNullableFields, index_d$1_allowOneTimePurchases as allowOneTimePurchases, index_d$1_assignSubscriptionOptionsToProduct as assignSubscriptionOptionsToProduct, index_d$1_bulkCreateSubscriptionOptions as bulkCreateSubscriptionOptions, index_d$1_bulkDeleteSubscriptionOptions as bulkDeleteSubscriptionOptions, index_d$1_bulkUpdateSubscriptionOptions as bulkUpdateSubscriptionOptions, index_d$1_createSubscriptionOption as createSubscriptionOption, index_d$1_deleteSubscriptionOption as deleteSubscriptionOption, index_d$1_getOneTimePurchasesStatus as getOneTimePurchasesStatus, index_d$1_getProductIdsForSubscriptionOption as getProductIdsForSubscriptionOption, index_d$1_getSubscriptionOption as getSubscriptionOption, index_d$1_getSubscriptionOptionsForProduct as getSubscriptionOptionsForProduct, index_d$1_updateSubscriptionOption as updateSubscriptionOption };
|
|
18829
|
+
export { type index_d$1_AllowOneTimePurchasesRequest as AllowOneTimePurchasesRequest, type index_d$1_AllowOneTimePurchasesResponse as AllowOneTimePurchasesResponse, type index_d$1_AssignSubscriptionOptionsToProductOptions as AssignSubscriptionOptionsToProductOptions, type index_d$1_AssignSubscriptionOptionsToProductRequest as AssignSubscriptionOptionsToProductRequest, type index_d$1_AssignSubscriptionOptionsToProductResponse as AssignSubscriptionOptionsToProductResponse, type index_d$1_BulkCalculatePricesRequest as BulkCalculatePricesRequest, type index_d$1_BulkCalculatePricesRequestItem as BulkCalculatePricesRequestItem, type index_d$1_BulkCalculatePricesRequestV2 as BulkCalculatePricesRequestV2, type index_d$1_BulkCalculatePricesResponse as BulkCalculatePricesResponse, type index_d$1_BulkCalculatePricesResponseItem as BulkCalculatePricesResponseItem, type index_d$1_BulkCalculatePricesResponseV2 as BulkCalculatePricesResponseV2, type index_d$1_BulkCreateSubscriptionOptionsRequest as BulkCreateSubscriptionOptionsRequest, type index_d$1_BulkCreateSubscriptionOptionsResponse as BulkCreateSubscriptionOptionsResponse, type index_d$1_BulkCreateSubscriptionOptionsResponseNonNullableFields as BulkCreateSubscriptionOptionsResponseNonNullableFields, type index_d$1_BulkDeleteSubscriptionOptionsRequest as BulkDeleteSubscriptionOptionsRequest, type index_d$1_BulkDeleteSubscriptionOptionsResponse as BulkDeleteSubscriptionOptionsResponse, type index_d$1_BulkUpdateSubscriptionOptionsRequest as BulkUpdateSubscriptionOptionsRequest, type index_d$1_BulkUpdateSubscriptionOptionsResponse as BulkUpdateSubscriptionOptionsResponse, type index_d$1_BulkUpdateSubscriptionOptionsResponseNonNullableFields as BulkUpdateSubscriptionOptionsResponseNonNullableFields, type index_d$1_CalculatePricesRequest as CalculatePricesRequest, type index_d$1_CalculatePricesResponse as CalculatePricesResponse, type index_d$1_CreateSubscriptionOptionRequest as CreateSubscriptionOptionRequest, type index_d$1_CreateSubscriptionOptionResponse as CreateSubscriptionOptionResponse, type index_d$1_CreateSubscriptionOptionResponseNonNullableFields as CreateSubscriptionOptionResponseNonNullableFields, type index_d$1_DeleteSubscriptionOptionRequest as DeleteSubscriptionOptionRequest, type index_d$1_DeleteSubscriptionOptionResponse as DeleteSubscriptionOptionResponse, type index_d$1_Discount as Discount, index_d$1_DiscountType as DiscountType, type index_d$1_GetOneTimePurchasesStatusRequest as GetOneTimePurchasesStatusRequest, type index_d$1_GetOneTimePurchasesStatusResponse as GetOneTimePurchasesStatusResponse, type index_d$1_GetOneTimePurchasesStatusResponseNonNullableFields as GetOneTimePurchasesStatusResponseNonNullableFields, type index_d$1_GetProductIdsForSubscriptionOptionOptions as GetProductIdsForSubscriptionOptionOptions, type index_d$1_GetProductIdsForSubscriptionOptionRequest as GetProductIdsForSubscriptionOptionRequest, type index_d$1_GetProductIdsForSubscriptionOptionResponse as GetProductIdsForSubscriptionOptionResponse, type index_d$1_GetProductIdsForSubscriptionOptionResponseNonNullableFields as GetProductIdsForSubscriptionOptionResponseNonNullableFields, type index_d$1_GetSubscriptionOptionRequest as GetSubscriptionOptionRequest, type index_d$1_GetSubscriptionOptionResponse as GetSubscriptionOptionResponse, type index_d$1_GetSubscriptionOptionResponseNonNullableFields as GetSubscriptionOptionResponseNonNullableFields, type index_d$1_GetSubscriptionOptionsForProductOptions as GetSubscriptionOptionsForProductOptions, type index_d$1_GetSubscriptionOptionsForProductRequest as GetSubscriptionOptionsForProductRequest, type index_d$1_GetSubscriptionOptionsForProductResponse as GetSubscriptionOptionsForProductResponse, type index_d$1_GetSubscriptionOptionsForProductResponseNonNullableFields as GetSubscriptionOptionsForProductResponseNonNullableFields, type index_d$1_ListSubscriptionOptionsRequest as ListSubscriptionOptionsRequest, type index_d$1_ListSubscriptionOptionsResponse as ListSubscriptionOptionsResponse, type Paging$1 as Paging, type PagingMetadata$1 as PagingMetadata, index_d$1_SubscriptionFrequency as SubscriptionFrequency, type index_d$1_SubscriptionOption as SubscriptionOption, type index_d$1_SubscriptionOptionInProduct as SubscriptionOptionInProduct, type index_d$1_SubscriptionOptionNonNullableFields as SubscriptionOptionNonNullableFields, type index_d$1_SubscriptionOptionPriceData as SubscriptionOptionPriceData, type index_d$1_SubscriptionOptionPrices as SubscriptionOptionPrices, type index_d$1_SubscriptionSettings as SubscriptionSettings, type index_d$1_UpdateSubscriptionOption as UpdateSubscriptionOption, type index_d$1_UpdateSubscriptionOptionRequest as UpdateSubscriptionOptionRequest, type index_d$1_UpdateSubscriptionOptionResponse as UpdateSubscriptionOptionResponse, type index_d$1_UpdateSubscriptionOptionResponseNonNullableFields as UpdateSubscriptionOptionResponseNonNullableFields, type index_d$1__publicAllowOneTimePurchasesType as _publicAllowOneTimePurchasesType, type index_d$1__publicAssignSubscriptionOptionsToProductType as _publicAssignSubscriptionOptionsToProductType, type index_d$1__publicBulkCreateSubscriptionOptionsType as _publicBulkCreateSubscriptionOptionsType, type index_d$1__publicBulkDeleteSubscriptionOptionsType as _publicBulkDeleteSubscriptionOptionsType, type index_d$1__publicBulkUpdateSubscriptionOptionsType as _publicBulkUpdateSubscriptionOptionsType, type index_d$1__publicCreateSubscriptionOptionType as _publicCreateSubscriptionOptionType, type index_d$1__publicDeleteSubscriptionOptionType as _publicDeleteSubscriptionOptionType, type index_d$1__publicGetOneTimePurchasesStatusType as _publicGetOneTimePurchasesStatusType, type index_d$1__publicGetProductIdsForSubscriptionOptionType as _publicGetProductIdsForSubscriptionOptionType, type index_d$1__publicGetSubscriptionOptionType as _publicGetSubscriptionOptionType, type index_d$1__publicGetSubscriptionOptionsForProductType as _publicGetSubscriptionOptionsForProductType, type index_d$1__publicUpdateSubscriptionOptionType as _publicUpdateSubscriptionOptionType, index_d$1_allowOneTimePurchases as allowOneTimePurchases, index_d$1_assignSubscriptionOptionsToProduct as assignSubscriptionOptionsToProduct, index_d$1_bulkCreateSubscriptionOptions as bulkCreateSubscriptionOptions, index_d$1_bulkDeleteSubscriptionOptions as bulkDeleteSubscriptionOptions, index_d$1_bulkUpdateSubscriptionOptions as bulkUpdateSubscriptionOptions, index_d$1_createSubscriptionOption as createSubscriptionOption, index_d$1_deleteSubscriptionOption as deleteSubscriptionOption, index_d$1_getOneTimePurchasesStatus as getOneTimePurchasesStatus, index_d$1_getProductIdsForSubscriptionOption as getProductIdsForSubscriptionOption, index_d$1_getSubscriptionOption as getSubscriptionOption, index_d$1_getSubscriptionOptionsForProduct as getSubscriptionOptionsForProduct, index_d$1_updateSubscriptionOption as updateSubscriptionOption };
|
|
18323
18830
|
}
|
|
18324
18831
|
|
|
18325
18832
|
interface InventoryItemV2 {
|
|
@@ -18749,17 +19256,34 @@ interface UpdateInventoryVariantsInventoryItem {
|
|
|
18749
19256
|
preorderInfo?: PreorderInfo;
|
|
18750
19257
|
}
|
|
18751
19258
|
|
|
19259
|
+
declare function getInventoryVariants$1(httpClient: HttpClient): (inventoryId: string, options?: GetInventoryVariantsOptions) => Promise<GetInventoryVariantsResponse & GetInventoryVariantsResponseNonNullableFields>;
|
|
19260
|
+
declare function queryInventory$1(httpClient: HttpClient): (options?: QueryInventoryOptions) => Promise<QueryInventoryResponse & QueryInventoryResponseNonNullableFields>;
|
|
19261
|
+
declare function updateInventoryVariants$1(httpClient: HttpClient): (productId: string | null, inventoryItem: UpdateInventoryVariantsInventoryItem) => Promise<void>;
|
|
19262
|
+
declare function decrementInventory$1(httpClient: HttpClient): (decrementData: DecrementData[]) => Promise<void>;
|
|
19263
|
+
declare function incrementInventory$1(httpClient: HttpClient): (incrementData: IncrementData[]) => Promise<void>;
|
|
19264
|
+
declare const onInventoryItemChanged$1: EventDefinition<InventoryItemChangedEnvelope, "com.wix.ecommerce.inventory.api.v1.InventoryItemChanged">;
|
|
19265
|
+
declare const onInventoryVariantsChanged$1: EventDefinition<InventoryVariantsChangedEnvelope, "com.wix.ecommerce.inventory.api.v1.InventoryVariantsChanged">;
|
|
19266
|
+
|
|
18752
19267
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
18753
19268
|
|
|
18754
19269
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
18755
19270
|
|
|
18756
|
-
|
|
18757
|
-
declare const
|
|
18758
|
-
|
|
18759
|
-
declare const
|
|
18760
|
-
|
|
18761
|
-
declare const
|
|
18762
|
-
|
|
19271
|
+
type _publicGetInventoryVariantsType = typeof getInventoryVariants$1;
|
|
19272
|
+
declare const getInventoryVariants: ReturnType<typeof createRESTModule<_publicGetInventoryVariantsType>>;
|
|
19273
|
+
type _publicQueryInventoryType = typeof queryInventory$1;
|
|
19274
|
+
declare const queryInventory: ReturnType<typeof createRESTModule<_publicQueryInventoryType>>;
|
|
19275
|
+
type _publicUpdateInventoryVariantsType = typeof updateInventoryVariants$1;
|
|
19276
|
+
declare const updateInventoryVariants: ReturnType<typeof createRESTModule<_publicUpdateInventoryVariantsType>>;
|
|
19277
|
+
type _publicDecrementInventoryType = typeof decrementInventory$1;
|
|
19278
|
+
declare const decrementInventory: ReturnType<typeof createRESTModule<_publicDecrementInventoryType>>;
|
|
19279
|
+
type _publicIncrementInventoryType = typeof incrementInventory$1;
|
|
19280
|
+
declare const incrementInventory: ReturnType<typeof createRESTModule<_publicIncrementInventoryType>>;
|
|
19281
|
+
|
|
19282
|
+
type _publicOnInventoryItemChangedType = typeof onInventoryItemChanged$1;
|
|
19283
|
+
declare const onInventoryItemChanged: ReturnType<typeof createEventModule<_publicOnInventoryItemChangedType>>;
|
|
19284
|
+
|
|
19285
|
+
type _publicOnInventoryVariantsChangedType = typeof onInventoryVariantsChanged$1;
|
|
19286
|
+
declare const onInventoryVariantsChanged: ReturnType<typeof createEventModule<_publicOnInventoryVariantsChangedType>>;
|
|
18763
19287
|
|
|
18764
19288
|
type index_d_BaseEventMetadata = BaseEventMetadata;
|
|
18765
19289
|
type index_d_BulkUpdateInventoryItemsRequest = BulkUpdateInventoryItemsRequest;
|
|
@@ -18808,6 +19332,13 @@ type index_d_UpdateInventoryVariantsRequest = UpdateInventoryVariantsRequest;
|
|
|
18808
19332
|
type index_d_UpdateInventoryVariantsResponse = UpdateInventoryVariantsResponse;
|
|
18809
19333
|
type index_d_WebhookIdentityType = WebhookIdentityType;
|
|
18810
19334
|
declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
|
|
19335
|
+
type index_d__publicDecrementInventoryType = _publicDecrementInventoryType;
|
|
19336
|
+
type index_d__publicGetInventoryVariantsType = _publicGetInventoryVariantsType;
|
|
19337
|
+
type index_d__publicIncrementInventoryType = _publicIncrementInventoryType;
|
|
19338
|
+
type index_d__publicOnInventoryItemChangedType = _publicOnInventoryItemChangedType;
|
|
19339
|
+
type index_d__publicOnInventoryVariantsChangedType = _publicOnInventoryVariantsChangedType;
|
|
19340
|
+
type index_d__publicQueryInventoryType = _publicQueryInventoryType;
|
|
19341
|
+
type index_d__publicUpdateInventoryVariantsType = _publicUpdateInventoryVariantsType;
|
|
18811
19342
|
declare const index_d_decrementInventory: typeof decrementInventory;
|
|
18812
19343
|
declare const index_d_getInventoryVariants: typeof getInventoryVariants;
|
|
18813
19344
|
declare const index_d_incrementInventory: typeof incrementInventory;
|
|
@@ -18816,7 +19347,7 @@ declare const index_d_onInventoryVariantsChanged: typeof onInventoryVariantsChan
|
|
|
18816
19347
|
declare const index_d_queryInventory: typeof queryInventory;
|
|
18817
19348
|
declare const index_d_updateInventoryVariants: typeof updateInventoryVariants;
|
|
18818
19349
|
declare namespace index_d {
|
|
18819
|
-
export { type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BulkUpdateInventoryItemsRequest as BulkUpdateInventoryItemsRequest, type index_d_BulkUpdateInventoryItemsResponse as BulkUpdateInventoryItemsResponse, type index_d_BulkUpdateInventoryVariantsRequest as BulkUpdateInventoryVariantsRequest, type index_d_BulkUpdateInventoryVariantsRequestActionOneOf as BulkUpdateInventoryVariantsRequestActionOneOf, type index_d_BulkUpdateInventoryVariantsResponse as BulkUpdateInventoryVariantsResponse, type index_d_ChangedInventoryVariant as ChangedInventoryVariant, type index_d_ChangedInventoryVariantData as ChangedInventoryVariantData, type index_d_DecrementData as DecrementData, type index_d_DecrementDataIdOneOf as DecrementDataIdOneOf, type index_d_DecrementInventoryRequest as DecrementInventoryRequest, type index_d_DecrementInventoryResponse as DecrementInventoryResponse, type index_d_GetInventoryItemsRequest as GetInventoryItemsRequest, type index_d_GetInventoryItemsResponse as GetInventoryItemsResponse, type index_d_GetInventoryVariantsOptions as GetInventoryVariantsOptions, type index_d_GetInventoryVariantsRequest as GetInventoryVariantsRequest, type index_d_GetInventoryVariantsRequestIdOneOf as GetInventoryVariantsRequestIdOneOf, type index_d_GetInventoryVariantsResponse as GetInventoryVariantsResponse, type index_d_GetInventoryVariantsResponseNonNullableFields as GetInventoryVariantsResponseNonNullableFields, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_IncrementData as IncrementData, type index_d_IncrementDataIdOneOf as IncrementDataIdOneOf, type index_d_IncrementInventoryRequest as IncrementInventoryRequest, type index_d_IncrementInventoryResponse as IncrementInventoryResponse, type index_d_InventoryItemChanged as InventoryItemChanged, type index_d_InventoryItemChangedEnvelope as InventoryItemChangedEnvelope, type index_d_InventoryItemV2 as InventoryItemV2, type index_d_InventoryVariantV2 as InventoryVariantV2, type index_d_InventoryVariantsChanged as InventoryVariantsChanged, type index_d_InventoryVariantsChangedEnvelope as InventoryVariantsChangedEnvelope, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Paging as Paging, type index_d_PagingMetadata as PagingMetadata, type index_d_PreorderInfo as PreorderInfo, type index_d_Query as Query, type index_d_QueryInventoryOptions as QueryInventoryOptions, type index_d_QueryInventoryRequest as QueryInventoryRequest, type index_d_QueryInventoryResponse as QueryInventoryResponse, type index_d_QueryInventoryResponseNonNullableFields as QueryInventoryResponseNonNullableFields, index_d_ReasonType as ReasonType, type index_d_UpdateInventoryVariantsInventoryItem as UpdateInventoryVariantsInventoryItem, type index_d_UpdateInventoryVariantsRequest as UpdateInventoryVariantsRequest, type index_d_UpdateInventoryVariantsResponse as UpdateInventoryVariantsResponse, index_d_WebhookIdentityType as WebhookIdentityType, index_d_decrementInventory as decrementInventory, index_d_getInventoryVariants as getInventoryVariants, index_d_incrementInventory as incrementInventory, index_d_onInventoryItemChanged as onInventoryItemChanged, index_d_onInventoryVariantsChanged as onInventoryVariantsChanged, index_d_queryInventory as queryInventory, index_d_updateInventoryVariants as updateInventoryVariants };
|
|
19350
|
+
export { type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BulkUpdateInventoryItemsRequest as BulkUpdateInventoryItemsRequest, type index_d_BulkUpdateInventoryItemsResponse as BulkUpdateInventoryItemsResponse, type index_d_BulkUpdateInventoryVariantsRequest as BulkUpdateInventoryVariantsRequest, type index_d_BulkUpdateInventoryVariantsRequestActionOneOf as BulkUpdateInventoryVariantsRequestActionOneOf, type index_d_BulkUpdateInventoryVariantsResponse as BulkUpdateInventoryVariantsResponse, type index_d_ChangedInventoryVariant as ChangedInventoryVariant, type index_d_ChangedInventoryVariantData as ChangedInventoryVariantData, type index_d_DecrementData as DecrementData, type index_d_DecrementDataIdOneOf as DecrementDataIdOneOf, type index_d_DecrementInventoryRequest as DecrementInventoryRequest, type index_d_DecrementInventoryResponse as DecrementInventoryResponse, type index_d_GetInventoryItemsRequest as GetInventoryItemsRequest, type index_d_GetInventoryItemsResponse as GetInventoryItemsResponse, type index_d_GetInventoryVariantsOptions as GetInventoryVariantsOptions, type index_d_GetInventoryVariantsRequest as GetInventoryVariantsRequest, type index_d_GetInventoryVariantsRequestIdOneOf as GetInventoryVariantsRequestIdOneOf, type index_d_GetInventoryVariantsResponse as GetInventoryVariantsResponse, type index_d_GetInventoryVariantsResponseNonNullableFields as GetInventoryVariantsResponseNonNullableFields, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_IncrementData as IncrementData, type index_d_IncrementDataIdOneOf as IncrementDataIdOneOf, type index_d_IncrementInventoryRequest as IncrementInventoryRequest, type index_d_IncrementInventoryResponse as IncrementInventoryResponse, type index_d_InventoryItemChanged as InventoryItemChanged, type index_d_InventoryItemChangedEnvelope as InventoryItemChangedEnvelope, type index_d_InventoryItemV2 as InventoryItemV2, type index_d_InventoryVariantV2 as InventoryVariantV2, type index_d_InventoryVariantsChanged as InventoryVariantsChanged, type index_d_InventoryVariantsChangedEnvelope as InventoryVariantsChangedEnvelope, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Paging as Paging, type index_d_PagingMetadata as PagingMetadata, type index_d_PreorderInfo as PreorderInfo, type index_d_Query as Query, type index_d_QueryInventoryOptions as QueryInventoryOptions, type index_d_QueryInventoryRequest as QueryInventoryRequest, type index_d_QueryInventoryResponse as QueryInventoryResponse, type index_d_QueryInventoryResponseNonNullableFields as QueryInventoryResponseNonNullableFields, index_d_ReasonType as ReasonType, type index_d_UpdateInventoryVariantsInventoryItem as UpdateInventoryVariantsInventoryItem, type index_d_UpdateInventoryVariantsRequest as UpdateInventoryVariantsRequest, type index_d_UpdateInventoryVariantsResponse as UpdateInventoryVariantsResponse, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicDecrementInventoryType as _publicDecrementInventoryType, type index_d__publicGetInventoryVariantsType as _publicGetInventoryVariantsType, type index_d__publicIncrementInventoryType as _publicIncrementInventoryType, type index_d__publicOnInventoryItemChangedType as _publicOnInventoryItemChangedType, type index_d__publicOnInventoryVariantsChangedType as _publicOnInventoryVariantsChangedType, type index_d__publicQueryInventoryType as _publicQueryInventoryType, type index_d__publicUpdateInventoryVariantsType as _publicUpdateInventoryVariantsType, index_d_decrementInventory as decrementInventory, index_d_getInventoryVariants as getInventoryVariants, index_d_incrementInventory as incrementInventory, index_d_onInventoryItemChanged as onInventoryItemChanged, index_d_onInventoryVariantsChanged as onInventoryVariantsChanged, onInventoryItemChanged$1 as publicOnInventoryItemChanged, onInventoryVariantsChanged$1 as publicOnInventoryVariantsChanged, index_d_queryInventory as queryInventory, index_d_updateInventoryVariants as updateInventoryVariants };
|
|
18820
19351
|
}
|
|
18821
19352
|
|
|
18822
19353
|
export { index_d$9 as brandsV3, index_d$4 as catalogProvision, index_d$b as collections, index_d$8 as customizationsV3, index_d$7 as infoSectionsV3, index_d as inventory, index_d$6 as inventoryItemsV3, index_d$a as products, index_d$5 as productsV3, index_d$3 as ribbonsV3, index_d$2 as storesLocationsV3, index_d$1 as subscriptionOptions, index_d$c as wishlist };
|