@wix/stores 1.0.205 → 1.0.207
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 +15 -15
- package/type-bundles/context.bundle.d.ts +154 -453
- package/type-bundles/index.bundle.d.ts +154 -453
- package/type-bundles/meta.bundle.d.ts +12 -46
|
@@ -207,10 +207,7 @@ interface GetWishlistByIdSignature {
|
|
|
207
207
|
(_id: string, options?: GetWishlistByIdOptions | undefined): Promise<WishlistData & WishlistDataNonNullableFields>;
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
-
declare
|
|
211
|
-
|
|
212
|
-
type _publicGetWishlistByIdType = typeof getWishlistById$1;
|
|
213
|
-
declare const getWishlistById: ReturnType<typeof createRESTModule$c<_publicGetWishlistByIdType>>;
|
|
210
|
+
declare const getWishlistById: BuildRESTFunction<typeof getWishlistById$1> & typeof getWishlistById$1;
|
|
214
211
|
|
|
215
212
|
type context$c_AddToWishlistRequest = AddToWishlistRequest;
|
|
216
213
|
type context$c_AddToWishlistResponse = AddToWishlistResponse;
|
|
@@ -230,10 +227,9 @@ type context$c_WishlistData = WishlistData;
|
|
|
230
227
|
type context$c_WishlistDataNonNullableFields = WishlistDataNonNullableFields;
|
|
231
228
|
type context$c_WishlistItem = WishlistItem;
|
|
232
229
|
type context$c_WishlistItemKind = WishlistItemKind;
|
|
233
|
-
type context$c__publicGetWishlistByIdType = _publicGetWishlistByIdType;
|
|
234
230
|
declare const context$c_getWishlistById: typeof getWishlistById;
|
|
235
231
|
declare namespace context$c {
|
|
236
|
-
export { type context$c_AddToWishlistRequest as AddToWishlistRequest, type context$c_AddToWishlistResponse as AddToWishlistResponse, type context$c_GetWishlistByIdOptions as GetWishlistByIdOptions, type context$c_GetWishlistByIdRequest as GetWishlistByIdRequest, type context$c_GetWishlistByIdResponse as GetWishlistByIdResponse, type context$c_GetWishlistByIdResponseNonNullableFields as GetWishlistByIdResponseNonNullableFields, type context$c_GetWishlistRequest as GetWishlistRequest, type context$c_GetWishlistResponse as GetWishlistResponse, type context$c_GetWishlistsRequest as GetWishlistsRequest, type context$c_GetWishlistsResponse as GetWishlistsResponse, type IdentificationData$a as IdentificationData, type IdentificationDataIdOneOf$a as IdentificationDataIdOneOf, type context$c_ItemsAddedToWishlist as ItemsAddedToWishlist, type context$c_ItemsRemovedFromWishlist as ItemsRemovedFromWishlist, type MessageEnvelope$a as MessageEnvelope, type context$c_RemoveFromWishlistRequest as RemoveFromWishlistRequest, type context$c_RemoveFromWishlistResponse as RemoveFromWishlistResponse, WebhookIdentityType$a as WebhookIdentityType, type context$c_WishlistData as WishlistData, type context$c_WishlistDataNonNullableFields as WishlistDataNonNullableFields, type context$c_WishlistItem as WishlistItem, type context$c_WishlistItemKind as WishlistItemKind,
|
|
232
|
+
export { type context$c_AddToWishlistRequest as AddToWishlistRequest, type context$c_AddToWishlistResponse as AddToWishlistResponse, type context$c_GetWishlistByIdOptions as GetWishlistByIdOptions, type context$c_GetWishlistByIdRequest as GetWishlistByIdRequest, type context$c_GetWishlistByIdResponse as GetWishlistByIdResponse, type context$c_GetWishlistByIdResponseNonNullableFields as GetWishlistByIdResponseNonNullableFields, type context$c_GetWishlistRequest as GetWishlistRequest, type context$c_GetWishlistResponse as GetWishlistResponse, type context$c_GetWishlistsRequest as GetWishlistsRequest, type context$c_GetWishlistsResponse as GetWishlistsResponse, type IdentificationData$a as IdentificationData, type IdentificationDataIdOneOf$a as IdentificationDataIdOneOf, type context$c_ItemsAddedToWishlist as ItemsAddedToWishlist, type context$c_ItemsRemovedFromWishlist as ItemsRemovedFromWishlist, type MessageEnvelope$a as MessageEnvelope, type context$c_RemoveFromWishlistRequest as RemoveFromWishlistRequest, type context$c_RemoveFromWishlistResponse as RemoveFromWishlistResponse, WebhookIdentityType$a as WebhookIdentityType, type context$c_WishlistData as WishlistData, type context$c_WishlistDataNonNullableFields as WishlistDataNonNullableFields, type context$c_WishlistItem as WishlistItem, type context$c_WishlistItemKind as WishlistItemKind, context$c_getWishlistById as getWishlistById };
|
|
237
233
|
}
|
|
238
234
|
|
|
239
235
|
interface Collection$1 {
|
|
@@ -586,25 +582,18 @@ interface GetCollectionBySlugSignature$1 {
|
|
|
586
582
|
(slug: string): Promise<GetCollectionBySlugResponse$1 & GetCollectionBySlugResponseNonNullableFields$1>;
|
|
587
583
|
}
|
|
588
584
|
|
|
589
|
-
declare
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
declare const queryCollections: ReturnType<typeof createRESTModule$b<_publicQueryCollectionsType>>;
|
|
593
|
-
type _publicGetCollectionType = typeof getCollection$1;
|
|
594
|
-
declare const getCollection: ReturnType<typeof createRESTModule$b<_publicGetCollectionType>>;
|
|
595
|
-
type _publicGetCollectionBySlugType$1 = typeof getCollectionBySlug$3;
|
|
596
|
-
declare const getCollectionBySlug$2: ReturnType<typeof createRESTModule$b<_publicGetCollectionBySlugType>>;
|
|
585
|
+
declare const queryCollections: BuildRESTFunction<typeof queryCollections$1> & typeof queryCollections$1;
|
|
586
|
+
declare const getCollection: BuildRESTFunction<typeof getCollection$1> & typeof getCollection$1;
|
|
587
|
+
declare const getCollectionBySlug$2: BuildRESTFunction<typeof getCollectionBySlug$3> & typeof getCollectionBySlug$3;
|
|
597
588
|
|
|
598
589
|
type context$b_CollectionsQueryBuilder = CollectionsQueryBuilder;
|
|
599
590
|
type context$b_CollectionsQueryResult = CollectionsQueryResult;
|
|
600
591
|
type context$b_GetCollectionResponseNonNullableFields = GetCollectionResponseNonNullableFields;
|
|
601
592
|
type context$b_QueryCollectionsResponseNonNullableFields = QueryCollectionsResponseNonNullableFields;
|
|
602
|
-
type context$b__publicGetCollectionType = _publicGetCollectionType;
|
|
603
|
-
type context$b__publicQueryCollectionsType = _publicQueryCollectionsType;
|
|
604
593
|
declare const context$b_getCollection: typeof getCollection;
|
|
605
594
|
declare const context$b_queryCollections: typeof queryCollections;
|
|
606
595
|
declare namespace context$b {
|
|
607
|
-
export { type Collection$1 as Collection, type CollectionNonNullableFields$1 as CollectionNonNullableFields, type context$b_CollectionsQueryBuilder as CollectionsQueryBuilder, type context$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 context$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 context$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,
|
|
596
|
+
export { type Collection$1 as Collection, type CollectionNonNullableFields$1 as CollectionNonNullableFields, type context$b_CollectionsQueryBuilder as CollectionsQueryBuilder, type context$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 context$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 context$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, context$b_getCollection as getCollection, getCollectionBySlug$2 as getCollectionBySlug, context$b_queryCollections as queryCollections };
|
|
608
597
|
}
|
|
609
598
|
|
|
610
599
|
interface Product$2 {
|
|
@@ -2914,62 +2903,34 @@ declare const onProductCollectionChanged$1: EventDefinition<ProductCollectionCha
|
|
|
2914
2903
|
declare const onProductCollectionDeleted$1: EventDefinition<ProductCollectionDeletedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionDeleted">;
|
|
2915
2904
|
declare const onProductVariantsChanged$1: EventDefinition<ProductVariantsChangedEnvelope, "com.wix.ecommerce.catalog.api.v1.VariantsChanged">;
|
|
2916
2905
|
|
|
2917
|
-
declare function createRESTModule$a<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
2918
|
-
|
|
2919
2906
|
declare function createEventModule$7<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2920
2907
|
|
|
2921
|
-
|
|
2922
|
-
declare const
|
|
2923
|
-
|
|
2924
|
-
declare const
|
|
2925
|
-
|
|
2926
|
-
declare const
|
|
2927
|
-
|
|
2928
|
-
declare const
|
|
2929
|
-
|
|
2930
|
-
declare const
|
|
2931
|
-
|
|
2932
|
-
declare const
|
|
2933
|
-
|
|
2934
|
-
declare const
|
|
2935
|
-
|
|
2936
|
-
declare const
|
|
2937
|
-
|
|
2938
|
-
declare const
|
|
2939
|
-
|
|
2940
|
-
declare const
|
|
2941
|
-
|
|
2942
|
-
declare const
|
|
2943
|
-
|
|
2944
|
-
declare const
|
|
2945
|
-
|
|
2946
|
-
declare const
|
|
2947
|
-
type _publicCreateCollectionType = typeof createCollection$1;
|
|
2948
|
-
declare const createCollection: ReturnType<typeof createRESTModule$a<_publicCreateCollectionType>>;
|
|
2949
|
-
type _publicUpdateCollectionType = typeof updateCollection$1;
|
|
2950
|
-
declare const updateCollection: ReturnType<typeof createRESTModule$a<_publicUpdateCollectionType>>;
|
|
2951
|
-
type _publicDeleteCollectionType = typeof deleteCollection$1;
|
|
2952
|
-
declare const deleteCollection: ReturnType<typeof createRESTModule$a<_publicDeleteCollectionType>>;
|
|
2953
|
-
type _publicRemoveRibbonType = typeof removeRibbon$1;
|
|
2954
|
-
declare const removeRibbon: ReturnType<typeof createRESTModule$a<_publicRemoveRibbonType>>;
|
|
2955
|
-
type _publicBulkUpdateProductsPropertyType = typeof bulkUpdateProductsProperty$1;
|
|
2956
|
-
declare const bulkUpdateProductsProperty: ReturnType<typeof createRESTModule$a<_publicBulkUpdateProductsPropertyType>>;
|
|
2957
|
-
type _publicBulkAdjustProductPropertyType = typeof bulkAdjustProductProperty$1;
|
|
2958
|
-
declare const bulkAdjustProductProperty: ReturnType<typeof createRESTModule$a<_publicBulkAdjustProductPropertyType>>;
|
|
2959
|
-
type _publicQueryProductsType$1 = typeof queryProducts$3;
|
|
2960
|
-
declare const queryProducts$2: ReturnType<typeof createRESTModule$a<_publicQueryProductsType>>;
|
|
2961
|
-
type _publicGetProductType$1 = typeof getProduct$3;
|
|
2962
|
-
declare const getProduct$2: ReturnType<typeof createRESTModule$a<_publicGetProductType>>;
|
|
2963
|
-
type _publicGetCollectionBySlugType = typeof getCollectionBySlug$1;
|
|
2964
|
-
declare const getCollectionBySlug: ReturnType<typeof createRESTModule$a<_publicGetCollectionBySlugType>>;
|
|
2965
|
-
type _publicGetProductOptionsAvailabilityType = typeof getProductOptionsAvailability$1;
|
|
2966
|
-
declare const getProductOptionsAvailability: ReturnType<typeof createRESTModule$a<_publicGetProductOptionsAvailabilityType>>;
|
|
2967
|
-
type _publicQueryProductVariantsType = typeof queryProductVariants$1;
|
|
2968
|
-
declare const queryProductVariants: ReturnType<typeof createRESTModule$a<_publicQueryProductVariantsType>>;
|
|
2969
|
-
type _publicQueryStoreVariantsType = typeof queryStoreVariants$1;
|
|
2970
|
-
declare const queryStoreVariants: ReturnType<typeof createRESTModule$a<_publicQueryStoreVariantsType>>;
|
|
2971
|
-
type _publicGetStoreVariantType = typeof getStoreVariant$1;
|
|
2972
|
-
declare const getStoreVariant: ReturnType<typeof createRESTModule$a<_publicGetStoreVariantType>>;
|
|
2908
|
+
declare const createProduct$2: BuildRESTFunction<typeof createProduct$3> & typeof createProduct$3;
|
|
2909
|
+
declare const updateProduct$2: BuildRESTFunction<typeof updateProduct$3> & typeof updateProduct$3;
|
|
2910
|
+
declare const deleteProduct$2: BuildRESTFunction<typeof deleteProduct$3> & typeof deleteProduct$3;
|
|
2911
|
+
declare const updateProductVariants: BuildRESTFunction<typeof updateProductVariants$1> & typeof updateProductVariants$1;
|
|
2912
|
+
declare const resetAllProductVariantData: BuildRESTFunction<typeof resetAllProductVariantData$1> & typeof resetAllProductVariantData$1;
|
|
2913
|
+
declare const addProductsToCollection: BuildRESTFunction<typeof addProductsToCollection$1> & typeof addProductsToCollection$1;
|
|
2914
|
+
declare const removeProductsFromCollection: BuildRESTFunction<typeof removeProductsFromCollection$1> & typeof removeProductsFromCollection$1;
|
|
2915
|
+
declare const addProductMedia: BuildRESTFunction<typeof addProductMedia$1> & typeof addProductMedia$1;
|
|
2916
|
+
declare const removeProductMedia: BuildRESTFunction<typeof removeProductMedia$1> & typeof removeProductMedia$1;
|
|
2917
|
+
declare const addProductMediaToChoices: BuildRESTFunction<typeof addProductMediaToChoices$1> & typeof addProductMediaToChoices$1;
|
|
2918
|
+
declare const removeProductMediaFromChoices: BuildRESTFunction<typeof removeProductMediaFromChoices$1> & typeof removeProductMediaFromChoices$1;
|
|
2919
|
+
declare const deleteProductOptions: BuildRESTFunction<typeof deleteProductOptions$1> & typeof deleteProductOptions$1;
|
|
2920
|
+
declare const removeBrand: BuildRESTFunction<typeof removeBrand$1> & typeof removeBrand$1;
|
|
2921
|
+
declare const createCollection: BuildRESTFunction<typeof createCollection$1> & typeof createCollection$1;
|
|
2922
|
+
declare const updateCollection: BuildRESTFunction<typeof updateCollection$1> & typeof updateCollection$1;
|
|
2923
|
+
declare const deleteCollection: BuildRESTFunction<typeof deleteCollection$1> & typeof deleteCollection$1;
|
|
2924
|
+
declare const removeRibbon: BuildRESTFunction<typeof removeRibbon$1> & typeof removeRibbon$1;
|
|
2925
|
+
declare const bulkUpdateProductsProperty: BuildRESTFunction<typeof bulkUpdateProductsProperty$1> & typeof bulkUpdateProductsProperty$1;
|
|
2926
|
+
declare const bulkAdjustProductProperty: BuildRESTFunction<typeof bulkAdjustProductProperty$1> & typeof bulkAdjustProductProperty$1;
|
|
2927
|
+
declare const queryProducts$2: BuildRESTFunction<typeof queryProducts$3> & typeof queryProducts$3;
|
|
2928
|
+
declare const getProduct$2: BuildRESTFunction<typeof getProduct$3> & typeof getProduct$3;
|
|
2929
|
+
declare const getCollectionBySlug: BuildRESTFunction<typeof getCollectionBySlug$1> & typeof getCollectionBySlug$1;
|
|
2930
|
+
declare const getProductOptionsAvailability: BuildRESTFunction<typeof getProductOptionsAvailability$1> & typeof getProductOptionsAvailability$1;
|
|
2931
|
+
declare const queryProductVariants: BuildRESTFunction<typeof queryProductVariants$1> & typeof queryProductVariants$1;
|
|
2932
|
+
declare const queryStoreVariants: BuildRESTFunction<typeof queryStoreVariants$1> & typeof queryStoreVariants$1;
|
|
2933
|
+
declare const getStoreVariant: BuildRESTFunction<typeof getStoreVariant$1> & typeof getStoreVariant$1;
|
|
2973
2934
|
|
|
2974
2935
|
type _publicOnProductCreatedType$1 = typeof onProductCreated$3;
|
|
2975
2936
|
/**
|
|
@@ -3174,32 +3135,11 @@ type context$a_VariantDataWithNoStock = VariantDataWithNoStock;
|
|
|
3174
3135
|
type context$a_VariantOverride = VariantOverride;
|
|
3175
3136
|
type context$a_VariantStock = VariantStock;
|
|
3176
3137
|
type context$a_VariantsChanged = VariantsChanged;
|
|
3177
|
-
type context$a__publicAddProductMediaToChoicesType = _publicAddProductMediaToChoicesType;
|
|
3178
|
-
type context$a__publicAddProductMediaType = _publicAddProductMediaType;
|
|
3179
|
-
type context$a__publicAddProductsToCollectionType = _publicAddProductsToCollectionType;
|
|
3180
|
-
type context$a__publicBulkAdjustProductPropertyType = _publicBulkAdjustProductPropertyType;
|
|
3181
|
-
type context$a__publicBulkUpdateProductsPropertyType = _publicBulkUpdateProductsPropertyType;
|
|
3182
|
-
type context$a__publicCreateCollectionType = _publicCreateCollectionType;
|
|
3183
|
-
type context$a__publicDeleteCollectionType = _publicDeleteCollectionType;
|
|
3184
|
-
type context$a__publicDeleteProductOptionsType = _publicDeleteProductOptionsType;
|
|
3185
|
-
type context$a__publicGetCollectionBySlugType = _publicGetCollectionBySlugType;
|
|
3186
|
-
type context$a__publicGetProductOptionsAvailabilityType = _publicGetProductOptionsAvailabilityType;
|
|
3187
|
-
type context$a__publicGetStoreVariantType = _publicGetStoreVariantType;
|
|
3188
3138
|
type context$a__publicOnProductChangedType = _publicOnProductChangedType;
|
|
3189
3139
|
type context$a__publicOnProductCollectionChangedType = _publicOnProductCollectionChangedType;
|
|
3190
3140
|
type context$a__publicOnProductCollectionCreatedType = _publicOnProductCollectionCreatedType;
|
|
3191
3141
|
type context$a__publicOnProductCollectionDeletedType = _publicOnProductCollectionDeletedType;
|
|
3192
3142
|
type context$a__publicOnProductVariantsChangedType = _publicOnProductVariantsChangedType;
|
|
3193
|
-
type context$a__publicQueryProductVariantsType = _publicQueryProductVariantsType;
|
|
3194
|
-
type context$a__publicQueryStoreVariantsType = _publicQueryStoreVariantsType;
|
|
3195
|
-
type context$a__publicRemoveBrandType = _publicRemoveBrandType;
|
|
3196
|
-
type context$a__publicRemoveProductMediaFromChoicesType = _publicRemoveProductMediaFromChoicesType;
|
|
3197
|
-
type context$a__publicRemoveProductMediaType = _publicRemoveProductMediaType;
|
|
3198
|
-
type context$a__publicRemoveProductsFromCollectionType = _publicRemoveProductsFromCollectionType;
|
|
3199
|
-
type context$a__publicRemoveRibbonType = _publicRemoveRibbonType;
|
|
3200
|
-
type context$a__publicResetAllProductVariantDataType = _publicResetAllProductVariantDataType;
|
|
3201
|
-
type context$a__publicUpdateCollectionType = _publicUpdateCollectionType;
|
|
3202
|
-
type context$a__publicUpdateProductVariantsType = _publicUpdateProductVariantsType;
|
|
3203
3143
|
declare const context$a_addProductMedia: typeof addProductMedia;
|
|
3204
3144
|
declare const context$a_addProductMediaToChoices: typeof addProductMediaToChoices;
|
|
3205
3145
|
declare const context$a_addProductsToCollection: typeof addProductsToCollection;
|
|
@@ -3227,7 +3167,7 @@ declare const context$a_resetAllProductVariantData: typeof resetAllProductVarian
|
|
|
3227
3167
|
declare const context$a_updateCollection: typeof updateCollection;
|
|
3228
3168
|
declare const context$a_updateProductVariants: typeof updateProductVariants;
|
|
3229
3169
|
declare namespace context$a {
|
|
3230
|
-
export { type context$a_AddProductMediaRequest as AddProductMediaRequest, type context$a_AddProductMediaResponse as AddProductMediaResponse, type context$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type context$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type context$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type context$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type context$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type context$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type context$a_AggregateProductsRequest as AggregateProductsRequest, type context$a_AggregateProductsResponse as AggregateProductsResponse, type context$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type context$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type context$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type context$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type context$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type context$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type context$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type context$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type context$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type context$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type context$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type context$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type context$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type context$a_BulkUpdateProductsByFilterSyncResponse as BulkUpdateProductsByFilterSyncResponse, type BulkUpdateProductsRequest$1 as BulkUpdateProductsRequest, type BulkUpdateProductsResponse$1 as BulkUpdateProductsResponse, type BulkUpdateProductsResponseNonNullableFields$1 as BulkUpdateProductsResponseNonNullableFields, type Choice$1 as Choice, type context$a_Collection as Collection, type context$a_CollectionChanged as CollectionChanged, type context$a_CollectionCreated as CollectionCreated, type context$a_CollectionDeleted as CollectionDeleted, type context$a_CostAndProfitData as CostAndProfitData, type context$a_CreateCollectionRequest as CreateCollectionRequest, type context$a_CreateCollectionResponse as CreateCollectionResponse, type context$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type context$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type context$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type context$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type context$a_CreateProductPlatformizedResponse as CreateProductPlatformizedResponse, type CreateProductRequest$1 as CreateProductRequest, type CreateProductResponse$1 as CreateProductResponse, type CreateProductResponseNonNullableFields$1 as CreateProductResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type Cursors$7 as Cursors, type context$a_CustomFieldsContainer as CustomFieldsContainer, type context$a_CustomTextField as CustomTextField, type context$a_DeleteCollectionRequest as DeleteCollectionRequest, type context$a_DeleteCollectionResponse as DeleteCollectionResponse, type context$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type context$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type context$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type context$a_DeleteProductPlatformizedResponse as DeleteProductPlatformizedResponse, type DeleteProductRequest$1 as DeleteProductRequest, type DeleteProductResponse$1 as DeleteProductResponse, type Discount$1 as Discount, DiscountType$2 as DiscountType, FileType$1 as FileType, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type context$a_PagingWithBigLimit as PagingWithBigLimit, type context$a_PercentageData as PercentageData, type context$a_PlatformMedia as PlatformMedia, type context$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type context$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type context$a_ProductOption as ProductOption, type context$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type context$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type context$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type context$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type context$a_PropertyAdjustmentData as PropertyAdjustmentData, type context$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type context$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type context$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type context$a_QueryCollectionsRequest as QueryCollectionsRequest, type context$a_QueryCollectionsResponse as QueryCollectionsResponse, type context$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type context$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type context$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type context$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type context$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type context$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type context$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type context$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type context$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type context$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type context$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type context$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type context$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type context$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type context$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type context$a_ReCloneStoreRequest as ReCloneStoreRequest, type context$a_ReCloneStoreResponse as ReCloneStoreResponse, type context$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type context$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type context$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type context$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type context$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type context$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type context$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type context$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type context$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type context$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type context$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type context$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type context$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type context$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type context$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type context$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type context$a_SetValue as SetValue, type context$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type context$a_Stock as Stock, type context$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type context$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type context$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type context$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type context$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type context$a_UpdateCollection as UpdateCollection, type context$a_UpdateCollectionRequest as UpdateCollectionRequest, type context$a_UpdateCollectionResponse as UpdateCollectionResponse, type context$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type UpdateProduct$1 as UpdateProduct, type context$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type context$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type context$a_UpdateVariantsRequest as UpdateVariantsRequest, type context$a_UpdateVariantsResponse as UpdateVariantsResponse, type context$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type context$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type context$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type context$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type context$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type context$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type context$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type context$a_VariantChanged as VariantChanged, type context$a_VariantData as VariantData, type context$a_VariantDataWithNoStock as VariantDataWithNoStock, type context$a_VariantOverride as VariantOverride, type context$a_VariantStock as VariantStock, type context$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type context$a__publicAddProductMediaToChoicesType as _publicAddProductMediaToChoicesType, type context$a__publicAddProductMediaType as _publicAddProductMediaType, type context$a__publicAddProductsToCollectionType as _publicAddProductsToCollectionType, type context$a__publicBulkAdjustProductPropertyType as _publicBulkAdjustProductPropertyType, type context$a__publicBulkUpdateProductsPropertyType as _publicBulkUpdateProductsPropertyType, type context$a__publicCreateCollectionType as _publicCreateCollectionType, type _publicCreateProductType$1 as _publicCreateProductType, type context$a__publicDeleteCollectionType as _publicDeleteCollectionType, type context$a__publicDeleteProductOptionsType as _publicDeleteProductOptionsType, type _publicDeleteProductType$1 as _publicDeleteProductType, type context$a__publicGetCollectionBySlugType as _publicGetCollectionBySlugType, type context$a__publicGetProductOptionsAvailabilityType as _publicGetProductOptionsAvailabilityType, type _publicGetProductType$1 as _publicGetProductType, type context$a__publicGetStoreVariantType as _publicGetStoreVariantType, type context$a__publicOnProductChangedType as _publicOnProductChangedType, type context$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type context$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type context$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type context$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, type context$a__publicQueryProductVariantsType as _publicQueryProductVariantsType, type _publicQueryProductsType$1 as _publicQueryProductsType, type context$a__publicQueryStoreVariantsType as _publicQueryStoreVariantsType, type context$a__publicRemoveBrandType as _publicRemoveBrandType, type context$a__publicRemoveProductMediaFromChoicesType as _publicRemoveProductMediaFromChoicesType, type context$a__publicRemoveProductMediaType as _publicRemoveProductMediaType, type context$a__publicRemoveProductsFromCollectionType as _publicRemoveProductsFromCollectionType, type context$a__publicRemoveRibbonType as _publicRemoveRibbonType, type context$a__publicResetAllProductVariantDataType as _publicResetAllProductVariantDataType, type context$a__publicUpdateCollectionType as _publicUpdateCollectionType, type _publicUpdateProductType$1 as _publicUpdateProductType, type context$a__publicUpdateProductVariantsType as _publicUpdateProductVariantsType, context$a_addProductMedia as addProductMedia, context$a_addProductMediaToChoices as addProductMediaToChoices, context$a_addProductsToCollection as addProductsToCollection, context$a_bulkAdjustProductProperty as bulkAdjustProductProperty, context$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, context$a_createCollection as createCollection, createProduct$2 as createProduct, context$a_deleteCollection as deleteCollection, deleteProduct$2 as deleteProduct, context$a_deleteProductOptions as deleteProductOptions, context$a_getCollectionBySlug as getCollectionBySlug, getProduct$2 as getProduct, context$a_getProductOptionsAvailability as getProductOptionsAvailability, context$a_getStoreVariant as getStoreVariant, context$a_onProductChanged as onProductChanged, context$a_onProductCollectionChanged as onProductCollectionChanged, context$a_onProductCollectionCreated as onProductCollectionCreated, context$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, context$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, onProductCreated$3 as publicOnProductCreated, onProductDeleted$3 as publicOnProductDeleted, onProductVariantsChanged$1 as publicOnProductVariantsChanged, context$a_queryProductVariants as queryProductVariants, queryProducts$2 as queryProducts, context$a_queryStoreVariants as queryStoreVariants, context$a_removeBrand as removeBrand, context$a_removeProductMedia as removeProductMedia, context$a_removeProductMediaFromChoices as removeProductMediaFromChoices, context$a_removeProductsFromCollection as removeProductsFromCollection, context$a_removeRibbon as removeRibbon, context$a_resetAllProductVariantData as resetAllProductVariantData, context$a_updateCollection as updateCollection, updateProduct$2 as updateProduct, context$a_updateProductVariants as updateProductVariants };
|
|
3170
|
+
export { type context$a_AddProductMediaRequest as AddProductMediaRequest, type context$a_AddProductMediaResponse as AddProductMediaResponse, type context$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type context$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type context$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type context$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type context$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type context$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type context$a_AggregateProductsRequest as AggregateProductsRequest, type context$a_AggregateProductsResponse as AggregateProductsResponse, type context$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type context$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type context$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type context$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type context$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type context$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type context$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type context$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type context$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type context$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type context$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type context$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type context$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type context$a_BulkUpdateProductsByFilterSyncResponse as BulkUpdateProductsByFilterSyncResponse, type BulkUpdateProductsRequest$1 as BulkUpdateProductsRequest, type BulkUpdateProductsResponse$1 as BulkUpdateProductsResponse, type BulkUpdateProductsResponseNonNullableFields$1 as BulkUpdateProductsResponseNonNullableFields, type Choice$1 as Choice, type context$a_Collection as Collection, type context$a_CollectionChanged as CollectionChanged, type context$a_CollectionCreated as CollectionCreated, type context$a_CollectionDeleted as CollectionDeleted, type context$a_CostAndProfitData as CostAndProfitData, type context$a_CreateCollectionRequest as CreateCollectionRequest, type context$a_CreateCollectionResponse as CreateCollectionResponse, type context$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type context$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type context$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type context$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type context$a_CreateProductPlatformizedResponse as CreateProductPlatformizedResponse, type CreateProductRequest$1 as CreateProductRequest, type CreateProductResponse$1 as CreateProductResponse, type CreateProductResponseNonNullableFields$1 as CreateProductResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type Cursors$7 as Cursors, type context$a_CustomFieldsContainer as CustomFieldsContainer, type context$a_CustomTextField as CustomTextField, type context$a_DeleteCollectionRequest as DeleteCollectionRequest, type context$a_DeleteCollectionResponse as DeleteCollectionResponse, type context$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type context$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type context$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type context$a_DeleteProductPlatformizedResponse as DeleteProductPlatformizedResponse, type DeleteProductRequest$1 as DeleteProductRequest, type DeleteProductResponse$1 as DeleteProductResponse, type Discount$1 as Discount, DiscountType$2 as DiscountType, FileType$1 as FileType, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type context$a_PagingWithBigLimit as PagingWithBigLimit, type context$a_PercentageData as PercentageData, type context$a_PlatformMedia as PlatformMedia, type context$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type context$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type context$a_ProductOption as ProductOption, type context$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type context$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type context$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type context$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type context$a_PropertyAdjustmentData as PropertyAdjustmentData, type context$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type context$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type context$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type context$a_QueryCollectionsRequest as QueryCollectionsRequest, type context$a_QueryCollectionsResponse as QueryCollectionsResponse, type context$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type context$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type context$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type context$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type context$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type context$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type context$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type context$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type context$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type context$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type context$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type context$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type context$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type context$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type context$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type context$a_ReCloneStoreRequest as ReCloneStoreRequest, type context$a_ReCloneStoreResponse as ReCloneStoreResponse, type context$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type context$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type context$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type context$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type context$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type context$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type context$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type context$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type context$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type context$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type context$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type context$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type context$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type context$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type context$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type context$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type context$a_SetValue as SetValue, type context$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type context$a_Stock as Stock, type context$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type context$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type context$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type context$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type context$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type context$a_UpdateCollection as UpdateCollection, type context$a_UpdateCollectionRequest as UpdateCollectionRequest, type context$a_UpdateCollectionResponse as UpdateCollectionResponse, type context$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type UpdateProduct$1 as UpdateProduct, type context$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type context$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type context$a_UpdateVariantsRequest as UpdateVariantsRequest, type context$a_UpdateVariantsResponse as UpdateVariantsResponse, type context$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type context$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type context$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type context$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type context$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type context$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type context$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type context$a_VariantChanged as VariantChanged, type context$a_VariantData as VariantData, type context$a_VariantDataWithNoStock as VariantDataWithNoStock, type context$a_VariantOverride as VariantOverride, type context$a_VariantStock as VariantStock, type context$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type context$a__publicOnProductChangedType as _publicOnProductChangedType, type context$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type context$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type context$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type context$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, context$a_addProductMedia as addProductMedia, context$a_addProductMediaToChoices as addProductMediaToChoices, context$a_addProductsToCollection as addProductsToCollection, context$a_bulkAdjustProductProperty as bulkAdjustProductProperty, context$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, context$a_createCollection as createCollection, createProduct$2 as createProduct, context$a_deleteCollection as deleteCollection, deleteProduct$2 as deleteProduct, context$a_deleteProductOptions as deleteProductOptions, context$a_getCollectionBySlug as getCollectionBySlug, getProduct$2 as getProduct, context$a_getProductOptionsAvailability as getProductOptionsAvailability, context$a_getStoreVariant as getStoreVariant, context$a_onProductChanged as onProductChanged, context$a_onProductCollectionChanged as onProductCollectionChanged, context$a_onProductCollectionCreated as onProductCollectionCreated, context$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, context$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, onProductCreated$3 as publicOnProductCreated, onProductDeleted$3 as publicOnProductDeleted, onProductVariantsChanged$1 as publicOnProductVariantsChanged, context$a_queryProductVariants as queryProductVariants, queryProducts$2 as queryProducts, context$a_queryStoreVariants as queryStoreVariants, context$a_removeBrand as removeBrand, context$a_removeProductMedia as removeProductMedia, context$a_removeProductMediaFromChoices as removeProductMediaFromChoices, context$a_removeProductsFromCollection as removeProductsFromCollection, context$a_removeRibbon as removeRibbon, context$a_resetAllProductVariantData as resetAllProductVariantData, context$a_updateCollection as updateCollection, updateProduct$2 as updateProduct, context$a_updateProductVariants as updateProductVariants };
|
|
3231
3171
|
}
|
|
3232
3172
|
|
|
3233
3173
|
/**
|
|
@@ -4090,30 +4030,18 @@ declare const onBrandCreated$1: EventDefinition<BrandCreatedEnvelope, "wix.store
|
|
|
4090
4030
|
declare const onBrandUpdated$1: EventDefinition<BrandUpdatedEnvelope, "wix.stores.catalog.v3.brand_updated">;
|
|
4091
4031
|
declare const onBrandDeleted$1: EventDefinition<BrandDeletedEnvelope, "wix.stores.catalog.v3.brand_deleted">;
|
|
4092
4032
|
|
|
4093
|
-
declare function createRESTModule$9<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4094
|
-
|
|
4095
4033
|
declare function createEventModule$6<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4096
4034
|
|
|
4097
|
-
|
|
4098
|
-
declare const
|
|
4099
|
-
|
|
4100
|
-
declare const
|
|
4101
|
-
|
|
4102
|
-
declare const
|
|
4103
|
-
|
|
4104
|
-
declare const
|
|
4105
|
-
|
|
4106
|
-
declare const
|
|
4107
|
-
type _publicBulkCreateBrandsType = typeof bulkCreateBrands$1;
|
|
4108
|
-
declare const bulkCreateBrands: ReturnType<typeof createRESTModule$9<_publicBulkCreateBrandsType>>;
|
|
4109
|
-
type _publicBulkUpdateBrandsType = typeof bulkUpdateBrands$1;
|
|
4110
|
-
declare const bulkUpdateBrands: ReturnType<typeof createRESTModule$9<_publicBulkUpdateBrandsType>>;
|
|
4111
|
-
type _publicGetOrCreateBrandType = typeof getOrCreateBrand$1;
|
|
4112
|
-
declare const getOrCreateBrand: ReturnType<typeof createRESTModule$9<_publicGetOrCreateBrandType>>;
|
|
4113
|
-
type _publicBulkGetOrCreateBrandsType = typeof bulkGetOrCreateBrands$1;
|
|
4114
|
-
declare const bulkGetOrCreateBrands: ReturnType<typeof createRESTModule$9<_publicBulkGetOrCreateBrandsType>>;
|
|
4115
|
-
type _publicBulkDeleteBrandsType = typeof bulkDeleteBrands$1;
|
|
4116
|
-
declare const bulkDeleteBrands: ReturnType<typeof createRESTModule$9<_publicBulkDeleteBrandsType>>;
|
|
4035
|
+
declare const createBrand: BuildRESTFunction<typeof createBrand$1> & typeof createBrand$1;
|
|
4036
|
+
declare const getBrand: BuildRESTFunction<typeof getBrand$1> & typeof getBrand$1;
|
|
4037
|
+
declare const updateBrand: BuildRESTFunction<typeof updateBrand$1> & typeof updateBrand$1;
|
|
4038
|
+
declare const deleteBrand: BuildRESTFunction<typeof deleteBrand$1> & typeof deleteBrand$1;
|
|
4039
|
+
declare const queryBrands: BuildRESTFunction<typeof queryBrands$1> & typeof queryBrands$1;
|
|
4040
|
+
declare const bulkCreateBrands: BuildRESTFunction<typeof bulkCreateBrands$1> & typeof bulkCreateBrands$1;
|
|
4041
|
+
declare const bulkUpdateBrands: BuildRESTFunction<typeof bulkUpdateBrands$1> & typeof bulkUpdateBrands$1;
|
|
4042
|
+
declare const getOrCreateBrand: BuildRESTFunction<typeof getOrCreateBrand$1> & typeof getOrCreateBrand$1;
|
|
4043
|
+
declare const bulkGetOrCreateBrands: BuildRESTFunction<typeof bulkGetOrCreateBrands$1> & typeof bulkGetOrCreateBrands$1;
|
|
4044
|
+
declare const bulkDeleteBrands: BuildRESTFunction<typeof bulkDeleteBrands$1> & typeof bulkDeleteBrands$1;
|
|
4117
4045
|
|
|
4118
4046
|
type _publicOnBrandCreatedType = typeof onBrandCreated$1;
|
|
4119
4047
|
/**
|
|
@@ -4179,19 +4107,9 @@ type context$9_UpdateBrandOptions = UpdateBrandOptions;
|
|
|
4179
4107
|
type context$9_UpdateBrandRequest = UpdateBrandRequest;
|
|
4180
4108
|
type context$9_UpdateBrandResponse = UpdateBrandResponse;
|
|
4181
4109
|
type context$9_UpdateBrandResponseNonNullableFields = UpdateBrandResponseNonNullableFields;
|
|
4182
|
-
type context$9__publicBulkCreateBrandsType = _publicBulkCreateBrandsType;
|
|
4183
|
-
type context$9__publicBulkDeleteBrandsType = _publicBulkDeleteBrandsType;
|
|
4184
|
-
type context$9__publicBulkGetOrCreateBrandsType = _publicBulkGetOrCreateBrandsType;
|
|
4185
|
-
type context$9__publicBulkUpdateBrandsType = _publicBulkUpdateBrandsType;
|
|
4186
|
-
type context$9__publicCreateBrandType = _publicCreateBrandType;
|
|
4187
|
-
type context$9__publicDeleteBrandType = _publicDeleteBrandType;
|
|
4188
|
-
type context$9__publicGetBrandType = _publicGetBrandType;
|
|
4189
|
-
type context$9__publicGetOrCreateBrandType = _publicGetOrCreateBrandType;
|
|
4190
4110
|
type context$9__publicOnBrandCreatedType = _publicOnBrandCreatedType;
|
|
4191
4111
|
type context$9__publicOnBrandDeletedType = _publicOnBrandDeletedType;
|
|
4192
4112
|
type context$9__publicOnBrandUpdatedType = _publicOnBrandUpdatedType;
|
|
4193
|
-
type context$9__publicQueryBrandsType = _publicQueryBrandsType;
|
|
4194
|
-
type context$9__publicUpdateBrandType = _publicUpdateBrandType;
|
|
4195
4113
|
declare const context$9_bulkCreateBrands: typeof bulkCreateBrands;
|
|
4196
4114
|
declare const context$9_bulkDeleteBrands: typeof bulkDeleteBrands;
|
|
4197
4115
|
declare const context$9_bulkGetOrCreateBrands: typeof bulkGetOrCreateBrands;
|
|
@@ -4206,7 +4124,7 @@ declare const context$9_onBrandUpdated: typeof onBrandUpdated;
|
|
|
4206
4124
|
declare const context$9_queryBrands: typeof queryBrands;
|
|
4207
4125
|
declare const context$9_updateBrand: typeof updateBrand;
|
|
4208
4126
|
declare namespace context$9 {
|
|
4209
|
-
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 context$9_BrandCreatedEnvelope as BrandCreatedEnvelope, type context$9_BrandDeletedEnvelope as BrandDeletedEnvelope, type context$9_BrandNonNullableFields as BrandNonNullableFields, type context$9_BrandUpdatedEnvelope as BrandUpdatedEnvelope, type context$9_BrandsQueryBuilder as BrandsQueryBuilder, type context$9_BrandsQueryResult as BrandsQueryResult, type BulkActionMetadata$5 as BulkActionMetadata, type context$9_BulkBrandsResult as BulkBrandsResult, type context$9_BulkCreateBrandsOptions as BulkCreateBrandsOptions, type context$9_BulkCreateBrandsRequest as BulkCreateBrandsRequest, type context$9_BulkCreateBrandsResponse as BulkCreateBrandsResponse, type context$9_BulkCreateBrandsResponseNonNullableFields as BulkCreateBrandsResponseNonNullableFields, type context$9_BulkDeleteBrandsRequest as BulkDeleteBrandsRequest, type context$9_BulkDeleteBrandsResponse as BulkDeleteBrandsResponse, type context$9_BulkDeleteBrandsResponseBulkBrandsResult as BulkDeleteBrandsResponseBulkBrandsResult, type context$9_BulkDeleteBrandsResponseNonNullableFields as BulkDeleteBrandsResponseNonNullableFields, type context$9_BulkGetOrCreateBrandsOptions as BulkGetOrCreateBrandsOptions, type context$9_BulkGetOrCreateBrandsRequest as BulkGetOrCreateBrandsRequest, type context$9_BulkGetOrCreateBrandsResponse as BulkGetOrCreateBrandsResponse, type context$9_BulkGetOrCreateBrandsResponseNonNullableFields as BulkGetOrCreateBrandsResponseNonNullableFields, type context$9_BulkUpdateBrandsOptions as BulkUpdateBrandsOptions, type context$9_BulkUpdateBrandsRequest as BulkUpdateBrandsRequest, type context$9_BulkUpdateBrandsResponse as BulkUpdateBrandsResponse, type context$9_BulkUpdateBrandsResponseNonNullableFields as BulkUpdateBrandsResponseNonNullableFields, type context$9_CreateBrandRequest as CreateBrandRequest, type context$9_CreateBrandResponse as CreateBrandResponse, type context$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 context$9_DeleteBrandRequest as DeleteBrandRequest, type context$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 context$9_GetBrandOptions as GetBrandOptions, type context$9_GetBrandRequest as GetBrandRequest, type context$9_GetBrandResponse as GetBrandResponse, type context$9_GetBrandResponseNonNullableFields as GetBrandResponseNonNullableFields, type context$9_GetOrCreateBrandOptions as GetOrCreateBrandOptions, type context$9_GetOrCreateBrandRequest as GetOrCreateBrandRequest, type context$9_GetOrCreateBrandResponse as GetOrCreateBrandResponse, type context$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 context$9_MaskedBrand as MaskedBrand, type MessageEnvelope$8 as MessageEnvelope, type Page$6 as Page, type context$9_QueryBrandsOptions as QueryBrandsOptions, type context$9_QueryBrandsRequest as QueryBrandsRequest, type context$9_QueryBrandsResponse as QueryBrandsResponse, type context$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 context$9_UpdateBrand as UpdateBrand, type context$9_UpdateBrandOptions as UpdateBrandOptions, type context$9_UpdateBrandRequest as UpdateBrandRequest, type context$9_UpdateBrandResponse as UpdateBrandResponse, type context$9_UpdateBrandResponseNonNullableFields as UpdateBrandResponseNonNullableFields, WebhookIdentityType$8 as WebhookIdentityType, type context$
|
|
4127
|
+
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 context$9_BrandCreatedEnvelope as BrandCreatedEnvelope, type context$9_BrandDeletedEnvelope as BrandDeletedEnvelope, type context$9_BrandNonNullableFields as BrandNonNullableFields, type context$9_BrandUpdatedEnvelope as BrandUpdatedEnvelope, type context$9_BrandsQueryBuilder as BrandsQueryBuilder, type context$9_BrandsQueryResult as BrandsQueryResult, type BulkActionMetadata$5 as BulkActionMetadata, type context$9_BulkBrandsResult as BulkBrandsResult, type context$9_BulkCreateBrandsOptions as BulkCreateBrandsOptions, type context$9_BulkCreateBrandsRequest as BulkCreateBrandsRequest, type context$9_BulkCreateBrandsResponse as BulkCreateBrandsResponse, type context$9_BulkCreateBrandsResponseNonNullableFields as BulkCreateBrandsResponseNonNullableFields, type context$9_BulkDeleteBrandsRequest as BulkDeleteBrandsRequest, type context$9_BulkDeleteBrandsResponse as BulkDeleteBrandsResponse, type context$9_BulkDeleteBrandsResponseBulkBrandsResult as BulkDeleteBrandsResponseBulkBrandsResult, type context$9_BulkDeleteBrandsResponseNonNullableFields as BulkDeleteBrandsResponseNonNullableFields, type context$9_BulkGetOrCreateBrandsOptions as BulkGetOrCreateBrandsOptions, type context$9_BulkGetOrCreateBrandsRequest as BulkGetOrCreateBrandsRequest, type context$9_BulkGetOrCreateBrandsResponse as BulkGetOrCreateBrandsResponse, type context$9_BulkGetOrCreateBrandsResponseNonNullableFields as BulkGetOrCreateBrandsResponseNonNullableFields, type context$9_BulkUpdateBrandsOptions as BulkUpdateBrandsOptions, type context$9_BulkUpdateBrandsRequest as BulkUpdateBrandsRequest, type context$9_BulkUpdateBrandsResponse as BulkUpdateBrandsResponse, type context$9_BulkUpdateBrandsResponseNonNullableFields as BulkUpdateBrandsResponseNonNullableFields, type context$9_CreateBrandRequest as CreateBrandRequest, type context$9_CreateBrandResponse as CreateBrandResponse, type context$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 context$9_DeleteBrandRequest as DeleteBrandRequest, type context$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 context$9_GetBrandOptions as GetBrandOptions, type context$9_GetBrandRequest as GetBrandRequest, type context$9_GetBrandResponse as GetBrandResponse, type context$9_GetBrandResponseNonNullableFields as GetBrandResponseNonNullableFields, type context$9_GetOrCreateBrandOptions as GetOrCreateBrandOptions, type context$9_GetOrCreateBrandRequest as GetOrCreateBrandRequest, type context$9_GetOrCreateBrandResponse as GetOrCreateBrandResponse, type context$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 context$9_MaskedBrand as MaskedBrand, type MessageEnvelope$8 as MessageEnvelope, type Page$6 as Page, type context$9_QueryBrandsOptions as QueryBrandsOptions, type context$9_QueryBrandsRequest as QueryBrandsRequest, type context$9_QueryBrandsResponse as QueryBrandsResponse, type context$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 context$9_UpdateBrand as UpdateBrand, type context$9_UpdateBrandOptions as UpdateBrandOptions, type context$9_UpdateBrandRequest as UpdateBrandRequest, type context$9_UpdateBrandResponse as UpdateBrandResponse, type context$9_UpdateBrandResponseNonNullableFields as UpdateBrandResponseNonNullableFields, WebhookIdentityType$8 as WebhookIdentityType, type context$9__publicOnBrandCreatedType as _publicOnBrandCreatedType, type context$9__publicOnBrandDeletedType as _publicOnBrandDeletedType, type context$9__publicOnBrandUpdatedType as _publicOnBrandUpdatedType, context$9_bulkCreateBrands as bulkCreateBrands, context$9_bulkDeleteBrands as bulkDeleteBrands, context$9_bulkGetOrCreateBrands as bulkGetOrCreateBrands, context$9_bulkUpdateBrands as bulkUpdateBrands, context$9_createBrand as createBrand, context$9_deleteBrand as deleteBrand, context$9_getBrand as getBrand, context$9_getOrCreateBrand as getOrCreateBrand, context$9_onBrandCreated as onBrandCreated, context$9_onBrandDeleted as onBrandDeleted, context$9_onBrandUpdated as onBrandUpdated, onBrandCreated$1 as publicOnBrandCreated, onBrandDeleted$1 as publicOnBrandDeleted, onBrandUpdated$1 as publicOnBrandUpdated, context$9_queryBrands as queryBrands, context$9_updateBrand as updateBrand };
|
|
4210
4128
|
}
|
|
4211
4129
|
|
|
4212
4130
|
/**
|
|
@@ -5290,32 +5208,19 @@ declare const onCustomizationCreated$1: EventDefinition<CustomizationCreatedEnve
|
|
|
5290
5208
|
declare const onCustomizationUpdated$1: EventDefinition<CustomizationUpdatedEnvelope, "wix.stores.catalog.v3.customization_updated">;
|
|
5291
5209
|
declare const onCustomizationDeleted$1: EventDefinition<CustomizationDeletedEnvelope, "wix.stores.catalog.v3.customization_deleted">;
|
|
5292
5210
|
|
|
5293
|
-
declare function createRESTModule$8<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
5294
|
-
|
|
5295
5211
|
declare function createEventModule$5<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5296
5212
|
|
|
5297
|
-
|
|
5298
|
-
declare const
|
|
5299
|
-
|
|
5300
|
-
declare const
|
|
5301
|
-
|
|
5302
|
-
declare const
|
|
5303
|
-
|
|
5304
|
-
declare const
|
|
5305
|
-
|
|
5306
|
-
declare const
|
|
5307
|
-
|
|
5308
|
-
declare const bulkCreateCustomizations: ReturnType<typeof createRESTModule$8<_publicBulkCreateCustomizationsType>>;
|
|
5309
|
-
type _publicAddCustomizationChoicesType = typeof addCustomizationChoices$1;
|
|
5310
|
-
declare const addCustomizationChoices: ReturnType<typeof createRESTModule$8<_publicAddCustomizationChoicesType>>;
|
|
5311
|
-
type _publicSetCustomizationChoicesType = typeof setCustomizationChoices$1;
|
|
5312
|
-
declare const setCustomizationChoices: ReturnType<typeof createRESTModule$8<_publicSetCustomizationChoicesType>>;
|
|
5313
|
-
type _publicRemoveCustomizationChoicesType = typeof removeCustomizationChoices$1;
|
|
5314
|
-
declare const removeCustomizationChoices: ReturnType<typeof createRESTModule$8<_publicRemoveCustomizationChoicesType>>;
|
|
5315
|
-
type _publicBulkAddCustomizationChoicesType = typeof bulkAddCustomizationChoices$1;
|
|
5316
|
-
declare const bulkAddCustomizationChoices: ReturnType<typeof createRESTModule$8<_publicBulkAddCustomizationChoicesType>>;
|
|
5317
|
-
type _publicBulkUpdateCustomizationsType = typeof bulkUpdateCustomizations$1;
|
|
5318
|
-
declare const bulkUpdateCustomizations: ReturnType<typeof createRESTModule$8<_publicBulkUpdateCustomizationsType>>;
|
|
5213
|
+
declare const createCustomization: BuildRESTFunction<typeof createCustomization$1> & typeof createCustomization$1;
|
|
5214
|
+
declare const getCustomization: BuildRESTFunction<typeof getCustomization$1> & typeof getCustomization$1;
|
|
5215
|
+
declare const updateCustomization: BuildRESTFunction<typeof updateCustomization$1> & typeof updateCustomization$1;
|
|
5216
|
+
declare const deleteCustomization: BuildRESTFunction<typeof deleteCustomization$1> & typeof deleteCustomization$1;
|
|
5217
|
+
declare const queryCustomizations: BuildRESTFunction<typeof queryCustomizations$1> & typeof queryCustomizations$1;
|
|
5218
|
+
declare const bulkCreateCustomizations: BuildRESTFunction<typeof bulkCreateCustomizations$1> & typeof bulkCreateCustomizations$1;
|
|
5219
|
+
declare const addCustomizationChoices: BuildRESTFunction<typeof addCustomizationChoices$1> & typeof addCustomizationChoices$1;
|
|
5220
|
+
declare const setCustomizationChoices: BuildRESTFunction<typeof setCustomizationChoices$1> & typeof setCustomizationChoices$1;
|
|
5221
|
+
declare const removeCustomizationChoices: BuildRESTFunction<typeof removeCustomizationChoices$1> & typeof removeCustomizationChoices$1;
|
|
5222
|
+
declare const bulkAddCustomizationChoices: BuildRESTFunction<typeof bulkAddCustomizationChoices$1> & typeof bulkAddCustomizationChoices$1;
|
|
5223
|
+
declare const bulkUpdateCustomizations: BuildRESTFunction<typeof bulkUpdateCustomizations$1> & typeof bulkUpdateCustomizations$1;
|
|
5319
5224
|
|
|
5320
5225
|
type _publicOnCustomizationCreatedType = typeof onCustomizationCreated$1;
|
|
5321
5226
|
/**
|
|
@@ -5395,20 +5300,9 @@ type context$8_UpdateCustomizationOptions = UpdateCustomizationOptions;
|
|
|
5395
5300
|
type context$8_UpdateCustomizationRequest = UpdateCustomizationRequest;
|
|
5396
5301
|
type context$8_UpdateCustomizationResponse = UpdateCustomizationResponse;
|
|
5397
5302
|
type context$8_UpdateCustomizationResponseNonNullableFields = UpdateCustomizationResponseNonNullableFields;
|
|
5398
|
-
type context$8__publicAddCustomizationChoicesType = _publicAddCustomizationChoicesType;
|
|
5399
|
-
type context$8__publicBulkAddCustomizationChoicesType = _publicBulkAddCustomizationChoicesType;
|
|
5400
|
-
type context$8__publicBulkCreateCustomizationsType = _publicBulkCreateCustomizationsType;
|
|
5401
|
-
type context$8__publicBulkUpdateCustomizationsType = _publicBulkUpdateCustomizationsType;
|
|
5402
|
-
type context$8__publicCreateCustomizationType = _publicCreateCustomizationType;
|
|
5403
|
-
type context$8__publicDeleteCustomizationType = _publicDeleteCustomizationType;
|
|
5404
|
-
type context$8__publicGetCustomizationType = _publicGetCustomizationType;
|
|
5405
5303
|
type context$8__publicOnCustomizationCreatedType = _publicOnCustomizationCreatedType;
|
|
5406
5304
|
type context$8__publicOnCustomizationDeletedType = _publicOnCustomizationDeletedType;
|
|
5407
5305
|
type context$8__publicOnCustomizationUpdatedType = _publicOnCustomizationUpdatedType;
|
|
5408
|
-
type context$8__publicQueryCustomizationsType = _publicQueryCustomizationsType;
|
|
5409
|
-
type context$8__publicRemoveCustomizationChoicesType = _publicRemoveCustomizationChoicesType;
|
|
5410
|
-
type context$8__publicSetCustomizationChoicesType = _publicSetCustomizationChoicesType;
|
|
5411
|
-
type context$8__publicUpdateCustomizationType = _publicUpdateCustomizationType;
|
|
5412
5306
|
declare const context$8_addCustomizationChoices: typeof addCustomizationChoices;
|
|
5413
5307
|
declare const context$8_bulkAddCustomizationChoices: typeof bulkAddCustomizationChoices;
|
|
5414
5308
|
declare const context$8_bulkCreateCustomizations: typeof bulkCreateCustomizations;
|
|
@@ -5424,7 +5318,7 @@ declare const context$8_removeCustomizationChoices: typeof removeCustomizationCh
|
|
|
5424
5318
|
declare const context$8_setCustomizationChoices: typeof setCustomizationChoices;
|
|
5425
5319
|
declare const context$8_updateCustomization: typeof updateCustomization;
|
|
5426
5320
|
declare namespace context$8 {
|
|
5427
|
-
export { type ActionEvent$5 as ActionEvent, type context$8_AddCustomizationChoicesOptions as AddCustomizationChoicesOptions, type context$8_AddCustomizationChoicesRequest as AddCustomizationChoicesRequest, type context$8_AddCustomizationChoicesResponse as AddCustomizationChoicesResponse, type context$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 context$8_BulkAddCustomizationChoicesOptions as BulkAddCustomizationChoicesOptions, type context$8_BulkAddCustomizationChoicesRequest as BulkAddCustomizationChoicesRequest, type context$8_BulkAddCustomizationChoicesResponse as BulkAddCustomizationChoicesResponse, type context$8_BulkAddCustomizationChoicesResponseNonNullableFields as BulkAddCustomizationChoicesResponseNonNullableFields, type context$8_BulkCreateCustomizationsOptions as BulkCreateCustomizationsOptions, type context$8_BulkCreateCustomizationsRequest as BulkCreateCustomizationsRequest, type context$8_BulkCreateCustomizationsResponse as BulkCreateCustomizationsResponse, type context$8_BulkCreateCustomizationsResponseNonNullableFields as BulkCreateCustomizationsResponseNonNullableFields, type context$8_BulkCustomizationResult as BulkCustomizationResult, type context$8_BulkUpdateCustomizationsOptions as BulkUpdateCustomizationsOptions, type context$8_BulkUpdateCustomizationsRequest as BulkUpdateCustomizationsRequest, type context$8_BulkUpdateCustomizationsResponse as BulkUpdateCustomizationsResponse, type context$8_BulkUpdateCustomizationsResponseNonNullableFields as BulkUpdateCustomizationsResponseNonNullableFields, type context$8_Choice as Choice, ChoiceType$1 as ChoiceType, type context$8_ChoiceValueOneOf as ChoiceValueOneOf, type ChoicesSettings$1 as ChoicesSettings, type context$8_CreateCustomizationRequest as CreateCustomizationRequest, type context$8_CreateCustomizationResponse as CreateCustomizationResponse, type context$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 context$8_Customization as Customization, type context$8_CustomizationChoices as CustomizationChoices, type context$8_CustomizationCreatedEnvelope as CustomizationCreatedEnvelope, type context$8_CustomizationCustomizationSettingsOneOf as CustomizationCustomizationSettingsOneOf, type context$8_CustomizationDeletedEnvelope as CustomizationDeletedEnvelope, type context$8_CustomizationIdsWrapper as CustomizationIdsWrapper, type context$8_CustomizationNonNullableFields as CustomizationNonNullableFields, context$8_CustomizationRenderType as CustomizationRenderType, context$8_CustomizationType as CustomizationType, type context$8_CustomizationUpdatedEnvelope as CustomizationUpdatedEnvelope, type context$8_CustomizationsQueryBuilder as CustomizationsQueryBuilder, type context$8_CustomizationsQueryResult as CustomizationsQueryResult, type context$8_DeleteCustomizationRequest as DeleteCustomizationRequest, type context$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 context$8_GetCustomizationOptions as GetCustomizationOptions, type context$8_GetCustomizationRequest as GetCustomizationRequest, type context$8_GetCustomizationResponse as GetCustomizationResponse, type context$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 context$8_MaskedCustomization as MaskedCustomization, type MessageEnvelope$7 as MessageEnvelope, type MultipleColors$1 as MultipleColors, type Page$5 as Page, type context$8_QueryCustomizationsOptions as QueryCustomizationsOptions, type context$8_QueryCustomizationsRequest as QueryCustomizationsRequest, type context$8_QueryCustomizationsResponse as QueryCustomizationsResponse, type context$8_QueryCustomizationsResponseNonNullableFields as QueryCustomizationsResponseNonNullableFields, type context$8_RemoveCustomizationChoicesOptions as RemoveCustomizationChoicesOptions, type context$8_RemoveCustomizationChoicesRequest as RemoveCustomizationChoicesRequest, type context$8_RemoveCustomizationChoicesResponse as RemoveCustomizationChoicesResponse, type context$8_RemoveCustomizationChoicesResponseNonNullableFields as RemoveCustomizationChoicesResponseNonNullableFields, RequestedFields$3 as RequestedFields, type RestoreInfo$5 as RestoreInfo, type context$8_SetCustomizationChoicesOptions as SetCustomizationChoicesOptions, type context$8_SetCustomizationChoicesRequest as SetCustomizationChoicesRequest, type context$8_SetCustomizationChoicesResponse as SetCustomizationChoicesResponse, type context$8_SetCustomizationChoicesResponseNonNullableFields as SetCustomizationChoicesResponseNonNullableFields, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type URI$5 as URI, type context$8_UpdateCustomization as UpdateCustomization, type context$8_UpdateCustomizationOptions as UpdateCustomizationOptions, type context$8_UpdateCustomizationRequest as UpdateCustomizationRequest, type context$8_UpdateCustomizationResponse as UpdateCustomizationResponse, type context$8_UpdateCustomizationResponseNonNullableFields as UpdateCustomizationResponseNonNullableFields, WebhookIdentityType$7 as WebhookIdentityType, type context$
|
|
5321
|
+
export { type ActionEvent$5 as ActionEvent, type context$8_AddCustomizationChoicesOptions as AddCustomizationChoicesOptions, type context$8_AddCustomizationChoicesRequest as AddCustomizationChoicesRequest, type context$8_AddCustomizationChoicesResponse as AddCustomizationChoicesResponse, type context$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 context$8_BulkAddCustomizationChoicesOptions as BulkAddCustomizationChoicesOptions, type context$8_BulkAddCustomizationChoicesRequest as BulkAddCustomizationChoicesRequest, type context$8_BulkAddCustomizationChoicesResponse as BulkAddCustomizationChoicesResponse, type context$8_BulkAddCustomizationChoicesResponseNonNullableFields as BulkAddCustomizationChoicesResponseNonNullableFields, type context$8_BulkCreateCustomizationsOptions as BulkCreateCustomizationsOptions, type context$8_BulkCreateCustomizationsRequest as BulkCreateCustomizationsRequest, type context$8_BulkCreateCustomizationsResponse as BulkCreateCustomizationsResponse, type context$8_BulkCreateCustomizationsResponseNonNullableFields as BulkCreateCustomizationsResponseNonNullableFields, type context$8_BulkCustomizationResult as BulkCustomizationResult, type context$8_BulkUpdateCustomizationsOptions as BulkUpdateCustomizationsOptions, type context$8_BulkUpdateCustomizationsRequest as BulkUpdateCustomizationsRequest, type context$8_BulkUpdateCustomizationsResponse as BulkUpdateCustomizationsResponse, type context$8_BulkUpdateCustomizationsResponseNonNullableFields as BulkUpdateCustomizationsResponseNonNullableFields, type context$8_Choice as Choice, ChoiceType$1 as ChoiceType, type context$8_ChoiceValueOneOf as ChoiceValueOneOf, type ChoicesSettings$1 as ChoicesSettings, type context$8_CreateCustomizationRequest as CreateCustomizationRequest, type context$8_CreateCustomizationResponse as CreateCustomizationResponse, type context$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 context$8_Customization as Customization, type context$8_CustomizationChoices as CustomizationChoices, type context$8_CustomizationCreatedEnvelope as CustomizationCreatedEnvelope, type context$8_CustomizationCustomizationSettingsOneOf as CustomizationCustomizationSettingsOneOf, type context$8_CustomizationDeletedEnvelope as CustomizationDeletedEnvelope, type context$8_CustomizationIdsWrapper as CustomizationIdsWrapper, type context$8_CustomizationNonNullableFields as CustomizationNonNullableFields, context$8_CustomizationRenderType as CustomizationRenderType, context$8_CustomizationType as CustomizationType, type context$8_CustomizationUpdatedEnvelope as CustomizationUpdatedEnvelope, type context$8_CustomizationsQueryBuilder as CustomizationsQueryBuilder, type context$8_CustomizationsQueryResult as CustomizationsQueryResult, type context$8_DeleteCustomizationRequest as DeleteCustomizationRequest, type context$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 context$8_GetCustomizationOptions as GetCustomizationOptions, type context$8_GetCustomizationRequest as GetCustomizationRequest, type context$8_GetCustomizationResponse as GetCustomizationResponse, type context$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 context$8_MaskedCustomization as MaskedCustomization, type MessageEnvelope$7 as MessageEnvelope, type MultipleColors$1 as MultipleColors, type Page$5 as Page, type context$8_QueryCustomizationsOptions as QueryCustomizationsOptions, type context$8_QueryCustomizationsRequest as QueryCustomizationsRequest, type context$8_QueryCustomizationsResponse as QueryCustomizationsResponse, type context$8_QueryCustomizationsResponseNonNullableFields as QueryCustomizationsResponseNonNullableFields, type context$8_RemoveCustomizationChoicesOptions as RemoveCustomizationChoicesOptions, type context$8_RemoveCustomizationChoicesRequest as RemoveCustomizationChoicesRequest, type context$8_RemoveCustomizationChoicesResponse as RemoveCustomizationChoicesResponse, type context$8_RemoveCustomizationChoicesResponseNonNullableFields as RemoveCustomizationChoicesResponseNonNullableFields, RequestedFields$3 as RequestedFields, type RestoreInfo$5 as RestoreInfo, type context$8_SetCustomizationChoicesOptions as SetCustomizationChoicesOptions, type context$8_SetCustomizationChoicesRequest as SetCustomizationChoicesRequest, type context$8_SetCustomizationChoicesResponse as SetCustomizationChoicesResponse, type context$8_SetCustomizationChoicesResponseNonNullableFields as SetCustomizationChoicesResponseNonNullableFields, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type URI$5 as URI, type context$8_UpdateCustomization as UpdateCustomization, type context$8_UpdateCustomizationOptions as UpdateCustomizationOptions, type context$8_UpdateCustomizationRequest as UpdateCustomizationRequest, type context$8_UpdateCustomizationResponse as UpdateCustomizationResponse, type context$8_UpdateCustomizationResponseNonNullableFields as UpdateCustomizationResponseNonNullableFields, WebhookIdentityType$7 as WebhookIdentityType, type context$8__publicOnCustomizationCreatedType as _publicOnCustomizationCreatedType, type context$8__publicOnCustomizationDeletedType as _publicOnCustomizationDeletedType, type context$8__publicOnCustomizationUpdatedType as _publicOnCustomizationUpdatedType, context$8_addCustomizationChoices as addCustomizationChoices, context$8_bulkAddCustomizationChoices as bulkAddCustomizationChoices, context$8_bulkCreateCustomizations as bulkCreateCustomizations, context$8_bulkUpdateCustomizations as bulkUpdateCustomizations, context$8_createCustomization as createCustomization, context$8_deleteCustomization as deleteCustomization, context$8_getCustomization as getCustomization, context$8_onCustomizationCreated as onCustomizationCreated, context$8_onCustomizationDeleted as onCustomizationDeleted, context$8_onCustomizationUpdated as onCustomizationUpdated, onCustomizationCreated$1 as publicOnCustomizationCreated, onCustomizationDeleted$1 as publicOnCustomizationDeleted, onCustomizationUpdated$1 as publicOnCustomizationUpdated, context$8_queryCustomizations as queryCustomizations, context$8_removeCustomizationChoices as removeCustomizationChoices, context$8_setCustomizationChoices as setCustomizationChoices, context$8_updateCustomization as updateCustomization };
|
|
5428
5322
|
}
|
|
5429
5323
|
|
|
5430
5324
|
/**
|
|
@@ -7832,30 +7726,18 @@ declare const onInfoSectionCreated$1: EventDefinition<InfoSectionCreatedEnvelope
|
|
|
7832
7726
|
declare const onInfoSectionUpdated$1: EventDefinition<InfoSectionUpdatedEnvelope, "wix.stores.catalog.v3.info_section_updated">;
|
|
7833
7727
|
declare const onInfoSectionDeleted$1: EventDefinition<InfoSectionDeletedEnvelope, "wix.stores.catalog.v3.info_section_deleted">;
|
|
7834
7728
|
|
|
7835
|
-
declare function createRESTModule$7<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
7836
|
-
|
|
7837
7729
|
declare function createEventModule$4<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
7838
7730
|
|
|
7839
|
-
|
|
7840
|
-
declare const
|
|
7841
|
-
|
|
7842
|
-
declare const
|
|
7843
|
-
|
|
7844
|
-
declare const
|
|
7845
|
-
|
|
7846
|
-
declare const
|
|
7847
|
-
|
|
7848
|
-
declare const
|
|
7849
|
-
type _publicDeleteInfoSectionType = typeof deleteInfoSection$1;
|
|
7850
|
-
declare const deleteInfoSection: ReturnType<typeof createRESTModule$7<_publicDeleteInfoSectionType>>;
|
|
7851
|
-
type _publicQueryInfoSectionsType = typeof queryInfoSections$1;
|
|
7852
|
-
declare const queryInfoSections: ReturnType<typeof createRESTModule$7<_publicQueryInfoSectionsType>>;
|
|
7853
|
-
type _publicBulkCreateInfoSectionsType = typeof bulkCreateInfoSections$1;
|
|
7854
|
-
declare const bulkCreateInfoSections: ReturnType<typeof createRESTModule$7<_publicBulkCreateInfoSectionsType>>;
|
|
7855
|
-
type _publicBulkUpdateInfoSectionsType = typeof bulkUpdateInfoSections$1;
|
|
7856
|
-
declare const bulkUpdateInfoSections: ReturnType<typeof createRESTModule$7<_publicBulkUpdateInfoSectionsType>>;
|
|
7857
|
-
type _publicBulkDeleteInfoSectionsType = typeof bulkDeleteInfoSections$1;
|
|
7858
|
-
declare const bulkDeleteInfoSections: ReturnType<typeof createRESTModule$7<_publicBulkDeleteInfoSectionsType>>;
|
|
7731
|
+
declare const createInfoSection: BuildRESTFunction<typeof createInfoSection$1> & typeof createInfoSection$1;
|
|
7732
|
+
declare const getInfoSection: BuildRESTFunction<typeof getInfoSection$1> & typeof getInfoSection$1;
|
|
7733
|
+
declare const getOrCreateInfoSection: BuildRESTFunction<typeof getOrCreateInfoSection$1> & typeof getOrCreateInfoSection$1;
|
|
7734
|
+
declare const bulkGetOrCreateInfoSections: BuildRESTFunction<typeof bulkGetOrCreateInfoSections$1> & typeof bulkGetOrCreateInfoSections$1;
|
|
7735
|
+
declare const updateInfoSection: BuildRESTFunction<typeof updateInfoSection$1> & typeof updateInfoSection$1;
|
|
7736
|
+
declare const deleteInfoSection: BuildRESTFunction<typeof deleteInfoSection$1> & typeof deleteInfoSection$1;
|
|
7737
|
+
declare const queryInfoSections: BuildRESTFunction<typeof queryInfoSections$1> & typeof queryInfoSections$1;
|
|
7738
|
+
declare const bulkCreateInfoSections: BuildRESTFunction<typeof bulkCreateInfoSections$1> & typeof bulkCreateInfoSections$1;
|
|
7739
|
+
declare const bulkUpdateInfoSections: BuildRESTFunction<typeof bulkUpdateInfoSections$1> & typeof bulkUpdateInfoSections$1;
|
|
7740
|
+
declare const bulkDeleteInfoSections: BuildRESTFunction<typeof bulkDeleteInfoSections$1> & typeof bulkDeleteInfoSections$1;
|
|
7859
7741
|
|
|
7860
7742
|
type _publicOnInfoSectionCreatedType = typeof onInfoSectionCreated$1;
|
|
7861
7743
|
/**
|
|
@@ -7921,19 +7803,9 @@ type context$7_UpdateInfoSectionOptions = UpdateInfoSectionOptions;
|
|
|
7921
7803
|
type context$7_UpdateInfoSectionRequest = UpdateInfoSectionRequest;
|
|
7922
7804
|
type context$7_UpdateInfoSectionResponse = UpdateInfoSectionResponse;
|
|
7923
7805
|
type context$7_UpdateInfoSectionResponseNonNullableFields = UpdateInfoSectionResponseNonNullableFields;
|
|
7924
|
-
type context$7__publicBulkCreateInfoSectionsType = _publicBulkCreateInfoSectionsType;
|
|
7925
|
-
type context$7__publicBulkDeleteInfoSectionsType = _publicBulkDeleteInfoSectionsType;
|
|
7926
|
-
type context$7__publicBulkGetOrCreateInfoSectionsType = _publicBulkGetOrCreateInfoSectionsType;
|
|
7927
|
-
type context$7__publicBulkUpdateInfoSectionsType = _publicBulkUpdateInfoSectionsType;
|
|
7928
|
-
type context$7__publicCreateInfoSectionType = _publicCreateInfoSectionType;
|
|
7929
|
-
type context$7__publicDeleteInfoSectionType = _publicDeleteInfoSectionType;
|
|
7930
|
-
type context$7__publicGetInfoSectionType = _publicGetInfoSectionType;
|
|
7931
|
-
type context$7__publicGetOrCreateInfoSectionType = _publicGetOrCreateInfoSectionType;
|
|
7932
7806
|
type context$7__publicOnInfoSectionCreatedType = _publicOnInfoSectionCreatedType;
|
|
7933
7807
|
type context$7__publicOnInfoSectionDeletedType = _publicOnInfoSectionDeletedType;
|
|
7934
7808
|
type context$7__publicOnInfoSectionUpdatedType = _publicOnInfoSectionUpdatedType;
|
|
7935
|
-
type context$7__publicQueryInfoSectionsType = _publicQueryInfoSectionsType;
|
|
7936
|
-
type context$7__publicUpdateInfoSectionType = _publicUpdateInfoSectionType;
|
|
7937
7809
|
declare const context$7_bulkCreateInfoSections: typeof bulkCreateInfoSections;
|
|
7938
7810
|
declare const context$7_bulkDeleteInfoSections: typeof bulkDeleteInfoSections;
|
|
7939
7811
|
declare const context$7_bulkGetOrCreateInfoSections: typeof bulkGetOrCreateInfoSections;
|
|
@@ -7948,7 +7820,7 @@ declare const context$7_onInfoSectionUpdated: typeof onInfoSectionUpdated;
|
|
|
7948
7820
|
declare const context$7_queryInfoSections: typeof queryInfoSections;
|
|
7949
7821
|
declare const context$7_updateInfoSection: typeof updateInfoSection;
|
|
7950
7822
|
declare namespace context$7 {
|
|
7951
|
-
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 context$7_BulkCreateInfoSectionsOptions as BulkCreateInfoSectionsOptions, type context$7_BulkCreateInfoSectionsRequest as BulkCreateInfoSectionsRequest, type context$7_BulkCreateInfoSectionsResponse as BulkCreateInfoSectionsResponse, type context$7_BulkCreateInfoSectionsResponseNonNullableFields as BulkCreateInfoSectionsResponseNonNullableFields, type context$7_BulkDeleteInfoSectionsRequest as BulkDeleteInfoSectionsRequest, type context$7_BulkDeleteInfoSectionsResponse as BulkDeleteInfoSectionsResponse, type context$7_BulkDeleteInfoSectionsResponseNonNullableFields as BulkDeleteInfoSectionsResponseNonNullableFields, type context$7_BulkGetOrCreateInfoSectionsOptions as BulkGetOrCreateInfoSectionsOptions, type context$7_BulkGetOrCreateInfoSectionsRequest as BulkGetOrCreateInfoSectionsRequest, type context$7_BulkGetOrCreateInfoSectionsResponse as BulkGetOrCreateInfoSectionsResponse, type context$7_BulkGetOrCreateInfoSectionsResponseNonNullableFields as BulkGetOrCreateInfoSectionsResponseNonNullableFields, type context$7_BulkInfoSectionItemResult as BulkInfoSectionItemResult, type context$7_BulkInfoSectionResult as BulkInfoSectionResult, type context$7_BulkUpdateInfoSectionsOptions as BulkUpdateInfoSectionsOptions, type context$7_BulkUpdateInfoSectionsRequest as BulkUpdateInfoSectionsRequest, type context$7_BulkUpdateInfoSectionsResponse as BulkUpdateInfoSectionsResponse, type context$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 context$7_CreateInfoSectionRequest as CreateInfoSectionRequest, type context$7_CreateInfoSectionResponse as CreateInfoSectionResponse, type context$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 context$7_DeleteInfoSectionRequest as DeleteInfoSectionRequest, type context$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 context$7_GetInfoSectionOptions as GetInfoSectionOptions, type context$7_GetInfoSectionRequest as GetInfoSectionRequest, type context$7_GetInfoSectionResponse as GetInfoSectionResponse, type context$7_GetInfoSectionResponseNonNullableFields as GetInfoSectionResponseNonNullableFields, type context$7_GetOrCreateInfoSectionOptions as GetOrCreateInfoSectionOptions, type context$7_GetOrCreateInfoSectionRequest as GetOrCreateInfoSectionRequest, type context$7_GetOrCreateInfoSectionResponse as GetOrCreateInfoSectionResponse, type context$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 context$7_InfoSectionCreatedEnvelope as InfoSectionCreatedEnvelope, type context$7_InfoSectionDeletedEnvelope as InfoSectionDeletedEnvelope, type context$7_InfoSectionForGetOrCreate as InfoSectionForGetOrCreate, type InfoSectionNonNullableFields$1 as InfoSectionNonNullableFields, type context$7_InfoSectionUpdatedEnvelope as InfoSectionUpdatedEnvelope, type context$7_InfoSectionsQueryBuilder as InfoSectionsQueryBuilder, type context$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 context$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 context$7_QueryInfoSectionsOptions as QueryInfoSectionsOptions, type context$7_QueryInfoSectionsRequest as QueryInfoSectionsRequest, type context$7_QueryInfoSectionsResponse as QueryInfoSectionsResponse, type context$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 context$7_UpdateInfoSection as UpdateInfoSection, type context$7_UpdateInfoSectionOptions as UpdateInfoSectionOptions, type context$7_UpdateInfoSectionRequest as UpdateInfoSectionRequest, type context$7_UpdateInfoSectionResponse as UpdateInfoSectionResponse, type context$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 context$7__publicBulkCreateInfoSectionsType as _publicBulkCreateInfoSectionsType, type context$7__publicBulkDeleteInfoSectionsType as _publicBulkDeleteInfoSectionsType, type context$7__publicBulkGetOrCreateInfoSectionsType as _publicBulkGetOrCreateInfoSectionsType, type context$7__publicBulkUpdateInfoSectionsType as _publicBulkUpdateInfoSectionsType, type context$7__publicCreateInfoSectionType as _publicCreateInfoSectionType, type context$7__publicDeleteInfoSectionType as _publicDeleteInfoSectionType, type context$7__publicGetInfoSectionType as _publicGetInfoSectionType, type context$7__publicGetOrCreateInfoSectionType as _publicGetOrCreateInfoSectionType, type context$7__publicOnInfoSectionCreatedType as _publicOnInfoSectionCreatedType, type context$7__publicOnInfoSectionDeletedType as _publicOnInfoSectionDeletedType, type context$7__publicOnInfoSectionUpdatedType as _publicOnInfoSectionUpdatedType, type context$7__publicQueryInfoSectionsType as _publicQueryInfoSectionsType, type context$7__publicUpdateInfoSectionType as _publicUpdateInfoSectionType, context$7_bulkCreateInfoSections as bulkCreateInfoSections, context$7_bulkDeleteInfoSections as bulkDeleteInfoSections, context$7_bulkGetOrCreateInfoSections as bulkGetOrCreateInfoSections, context$7_bulkUpdateInfoSections as bulkUpdateInfoSections, context$7_createInfoSection as createInfoSection, context$7_deleteInfoSection as deleteInfoSection, context$7_getInfoSection as getInfoSection, context$7_getOrCreateInfoSection as getOrCreateInfoSection, context$7_onInfoSectionCreated as onInfoSectionCreated, context$7_onInfoSectionDeleted as onInfoSectionDeleted, context$7_onInfoSectionUpdated as onInfoSectionUpdated, onInfoSectionCreated$1 as publicOnInfoSectionCreated, onInfoSectionDeleted$1 as publicOnInfoSectionDeleted, onInfoSectionUpdated$1 as publicOnInfoSectionUpdated, context$7_queryInfoSections as queryInfoSections, context$7_updateInfoSection as updateInfoSection };
|
|
7823
|
+
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 context$7_BulkCreateInfoSectionsOptions as BulkCreateInfoSectionsOptions, type context$7_BulkCreateInfoSectionsRequest as BulkCreateInfoSectionsRequest, type context$7_BulkCreateInfoSectionsResponse as BulkCreateInfoSectionsResponse, type context$7_BulkCreateInfoSectionsResponseNonNullableFields as BulkCreateInfoSectionsResponseNonNullableFields, type context$7_BulkDeleteInfoSectionsRequest as BulkDeleteInfoSectionsRequest, type context$7_BulkDeleteInfoSectionsResponse as BulkDeleteInfoSectionsResponse, type context$7_BulkDeleteInfoSectionsResponseNonNullableFields as BulkDeleteInfoSectionsResponseNonNullableFields, type context$7_BulkGetOrCreateInfoSectionsOptions as BulkGetOrCreateInfoSectionsOptions, type context$7_BulkGetOrCreateInfoSectionsRequest as BulkGetOrCreateInfoSectionsRequest, type context$7_BulkGetOrCreateInfoSectionsResponse as BulkGetOrCreateInfoSectionsResponse, type context$7_BulkGetOrCreateInfoSectionsResponseNonNullableFields as BulkGetOrCreateInfoSectionsResponseNonNullableFields, type context$7_BulkInfoSectionItemResult as BulkInfoSectionItemResult, type context$7_BulkInfoSectionResult as BulkInfoSectionResult, type context$7_BulkUpdateInfoSectionsOptions as BulkUpdateInfoSectionsOptions, type context$7_BulkUpdateInfoSectionsRequest as BulkUpdateInfoSectionsRequest, type context$7_BulkUpdateInfoSectionsResponse as BulkUpdateInfoSectionsResponse, type context$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 context$7_CreateInfoSectionRequest as CreateInfoSectionRequest, type context$7_CreateInfoSectionResponse as CreateInfoSectionResponse, type context$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 context$7_DeleteInfoSectionRequest as DeleteInfoSectionRequest, type context$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 context$7_GetInfoSectionOptions as GetInfoSectionOptions, type context$7_GetInfoSectionRequest as GetInfoSectionRequest, type context$7_GetInfoSectionResponse as GetInfoSectionResponse, type context$7_GetInfoSectionResponseNonNullableFields as GetInfoSectionResponseNonNullableFields, type context$7_GetOrCreateInfoSectionOptions as GetOrCreateInfoSectionOptions, type context$7_GetOrCreateInfoSectionRequest as GetOrCreateInfoSectionRequest, type context$7_GetOrCreateInfoSectionResponse as GetOrCreateInfoSectionResponse, type context$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 context$7_InfoSectionCreatedEnvelope as InfoSectionCreatedEnvelope, type context$7_InfoSectionDeletedEnvelope as InfoSectionDeletedEnvelope, type context$7_InfoSectionForGetOrCreate as InfoSectionForGetOrCreate, type InfoSectionNonNullableFields$1 as InfoSectionNonNullableFields, type context$7_InfoSectionUpdatedEnvelope as InfoSectionUpdatedEnvelope, type context$7_InfoSectionsQueryBuilder as InfoSectionsQueryBuilder, type context$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 context$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 context$7_QueryInfoSectionsOptions as QueryInfoSectionsOptions, type context$7_QueryInfoSectionsRequest as QueryInfoSectionsRequest, type context$7_QueryInfoSectionsResponse as QueryInfoSectionsResponse, type context$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 context$7_UpdateInfoSection as UpdateInfoSection, type context$7_UpdateInfoSectionOptions as UpdateInfoSectionOptions, type context$7_UpdateInfoSectionRequest as UpdateInfoSectionRequest, type context$7_UpdateInfoSectionResponse as UpdateInfoSectionResponse, type context$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 context$7__publicOnInfoSectionCreatedType as _publicOnInfoSectionCreatedType, type context$7__publicOnInfoSectionDeletedType as _publicOnInfoSectionDeletedType, type context$7__publicOnInfoSectionUpdatedType as _publicOnInfoSectionUpdatedType, context$7_bulkCreateInfoSections as bulkCreateInfoSections, context$7_bulkDeleteInfoSections as bulkDeleteInfoSections, context$7_bulkGetOrCreateInfoSections as bulkGetOrCreateInfoSections, context$7_bulkUpdateInfoSections as bulkUpdateInfoSections, context$7_createInfoSection as createInfoSection, context$7_deleteInfoSection as deleteInfoSection, context$7_getInfoSection as getInfoSection, context$7_getOrCreateInfoSection as getOrCreateInfoSection, context$7_onInfoSectionCreated as onInfoSectionCreated, context$7_onInfoSectionDeleted as onInfoSectionDeleted, context$7_onInfoSectionUpdated as onInfoSectionUpdated, onInfoSectionCreated$1 as publicOnInfoSectionCreated, onInfoSectionDeleted$1 as publicOnInfoSectionDeleted, onInfoSectionUpdated$1 as publicOnInfoSectionUpdated, context$7_queryInfoSections as queryInfoSections, context$7_updateInfoSection as updateInfoSection };
|
|
7952
7824
|
}
|
|
7953
7825
|
|
|
7954
7826
|
/** Inventory Item. */
|
|
@@ -8022,7 +7894,7 @@ interface InventoryItem$1 extends InventoryItemTrackingMethodOneOf$1 {
|
|
|
8022
7894
|
*
|
|
8023
7895
|
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
|
|
8024
7896
|
*/
|
|
8025
|
-
extendedFields?: ExtendedFields$
|
|
7897
|
+
extendedFields?: ExtendedFields$1;
|
|
8026
7898
|
}
|
|
8027
7899
|
/** @oneof */
|
|
8028
7900
|
interface InventoryItemTrackingMethodOneOf$1 {
|
|
@@ -8092,7 +7964,7 @@ interface Product$1 {
|
|
|
8092
7964
|
/** Variant SKU (stock keeping unit). */
|
|
8093
7965
|
variantSku?: string | null;
|
|
8094
7966
|
}
|
|
8095
|
-
interface ExtendedFields$
|
|
7967
|
+
interface ExtendedFields$1 {
|
|
8096
7968
|
/**
|
|
8097
7969
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
8098
7970
|
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
@@ -9473,7 +9345,7 @@ interface UpdateInventoryItem {
|
|
|
9473
9345
|
*
|
|
9474
9346
|
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
|
|
9475
9347
|
*/
|
|
9476
|
-
extendedFields?: ExtendedFields$
|
|
9348
|
+
extendedFields?: ExtendedFields$1;
|
|
9477
9349
|
}
|
|
9478
9350
|
interface UpdateInventoryItemOptions {
|
|
9479
9351
|
/** Reason for update. */
|
|
@@ -9798,38 +9670,22 @@ declare const onInventoryItemStockStatusUpdated$1: EventDefinition<InventoryItem
|
|
|
9798
9670
|
declare const onInventoryItemUpdatedWithReason$1: EventDefinition<InventoryItemUpdatedWithReasonEnvelope, "wix.stores.catalog.v3.inventory_item_updated_with_reason">;
|
|
9799
9671
|
declare const onInventoryItemDeleted$1: EventDefinition<InventoryItemDeletedEnvelope, "wix.stores.catalog.v3.inventory_item_deleted">;
|
|
9800
9672
|
|
|
9801
|
-
declare function createRESTModule$6<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
9802
|
-
|
|
9803
9673
|
declare function createEventModule$3<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
9804
9674
|
|
|
9805
|
-
|
|
9806
|
-
declare const
|
|
9807
|
-
|
|
9808
|
-
declare const
|
|
9809
|
-
|
|
9810
|
-
declare const
|
|
9811
|
-
|
|
9812
|
-
declare const
|
|
9813
|
-
|
|
9814
|
-
declare const
|
|
9815
|
-
|
|
9816
|
-
declare const
|
|
9817
|
-
|
|
9818
|
-
declare const
|
|
9819
|
-
type _publicBulkDeleteInventoryItemsType = typeof bulkDeleteInventoryItems$1;
|
|
9820
|
-
declare const bulkDeleteInventoryItems: ReturnType<typeof createRESTModule$6<_publicBulkDeleteInventoryItemsType>>;
|
|
9821
|
-
type _publicQueryInventoryItemsType = typeof queryInventoryItems$1;
|
|
9822
|
-
declare const queryInventoryItems: ReturnType<typeof createRESTModule$6<_publicQueryInventoryItemsType>>;
|
|
9823
|
-
type _publicSearchInventoryItemsType = typeof searchInventoryItems$1;
|
|
9824
|
-
declare const searchInventoryItems: ReturnType<typeof createRESTModule$6<_publicSearchInventoryItemsType>>;
|
|
9825
|
-
type _publicBulkDecrementInventoryItemsType = typeof bulkDecrementInventoryItems$1;
|
|
9826
|
-
declare const bulkDecrementInventoryItems: ReturnType<typeof createRESTModule$6<_publicBulkDecrementInventoryItemsType>>;
|
|
9827
|
-
type _publicBulkIncrementInventoryItemsType = typeof bulkIncrementInventoryItems$1;
|
|
9828
|
-
declare const bulkIncrementInventoryItems: ReturnType<typeof createRESTModule$6<_publicBulkIncrementInventoryItemsType>>;
|
|
9829
|
-
type _publicBulkDecrementInventoryItemsByVariantAndLocationType = typeof bulkDecrementInventoryItemsByVariantAndLocation$1;
|
|
9830
|
-
declare const bulkDecrementInventoryItemsByVariantAndLocation: ReturnType<typeof createRESTModule$6<_publicBulkDecrementInventoryItemsByVariantAndLocationType>>;
|
|
9831
|
-
type _publicBulkIncrementInventoryItemsByVariantAndLocationType = typeof bulkIncrementInventoryItemsByVariantAndLocation$1;
|
|
9832
|
-
declare const bulkIncrementInventoryItemsByVariantAndLocation: ReturnType<typeof createRESTModule$6<_publicBulkIncrementInventoryItemsByVariantAndLocationType>>;
|
|
9675
|
+
declare const createInventoryItem: BuildRESTFunction<typeof createInventoryItem$1> & typeof createInventoryItem$1;
|
|
9676
|
+
declare const bulkCreateInventoryItems: BuildRESTFunction<typeof bulkCreateInventoryItems$1> & typeof bulkCreateInventoryItems$1;
|
|
9677
|
+
declare const getInventoryItem: BuildRESTFunction<typeof getInventoryItem$1> & typeof getInventoryItem$1;
|
|
9678
|
+
declare const updateInventoryItem: BuildRESTFunction<typeof updateInventoryItem$1> & typeof updateInventoryItem$1;
|
|
9679
|
+
declare const bulkUpdateInventoryItems: BuildRESTFunction<typeof bulkUpdateInventoryItems$1> & typeof bulkUpdateInventoryItems$1;
|
|
9680
|
+
declare const bulkUpdateInventoryItemsByFilter: BuildRESTFunction<typeof bulkUpdateInventoryItemsByFilter$1> & typeof bulkUpdateInventoryItemsByFilter$1;
|
|
9681
|
+
declare const deleteInventoryItem: BuildRESTFunction<typeof deleteInventoryItem$1> & typeof deleteInventoryItem$1;
|
|
9682
|
+
declare const bulkDeleteInventoryItems: BuildRESTFunction<typeof bulkDeleteInventoryItems$1> & typeof bulkDeleteInventoryItems$1;
|
|
9683
|
+
declare const queryInventoryItems: BuildRESTFunction<typeof queryInventoryItems$1> & typeof queryInventoryItems$1;
|
|
9684
|
+
declare const searchInventoryItems: BuildRESTFunction<typeof searchInventoryItems$1> & typeof searchInventoryItems$1;
|
|
9685
|
+
declare const bulkDecrementInventoryItems: BuildRESTFunction<typeof bulkDecrementInventoryItems$1> & typeof bulkDecrementInventoryItems$1;
|
|
9686
|
+
declare const bulkIncrementInventoryItems: BuildRESTFunction<typeof bulkIncrementInventoryItems$1> & typeof bulkIncrementInventoryItems$1;
|
|
9687
|
+
declare const bulkDecrementInventoryItemsByVariantAndLocation: BuildRESTFunction<typeof bulkDecrementInventoryItemsByVariantAndLocation$1> & typeof bulkDecrementInventoryItemsByVariantAndLocation$1;
|
|
9688
|
+
declare const bulkIncrementInventoryItemsByVariantAndLocation: BuildRESTFunction<typeof bulkIncrementInventoryItemsByVariantAndLocation$1> & typeof bulkIncrementInventoryItemsByVariantAndLocation$1;
|
|
9833
9689
|
|
|
9834
9690
|
type _publicOnInventoryItemCreatedType = typeof onInventoryItemCreated$1;
|
|
9835
9691
|
/**
|
|
@@ -9939,25 +9795,11 @@ type context$6_UpdateInventoryItemRequest = UpdateInventoryItemRequest;
|
|
|
9939
9795
|
type context$6_UpdateInventoryItemResponse = UpdateInventoryItemResponse;
|
|
9940
9796
|
type context$6_UpdateInventoryItemResponseNonNullableFields = UpdateInventoryItemResponseNonNullableFields;
|
|
9941
9797
|
type context$6_V3BulkInventoryItemResult = V3BulkInventoryItemResult;
|
|
9942
|
-
type context$6__publicBulkCreateInventoryItemsType = _publicBulkCreateInventoryItemsType;
|
|
9943
|
-
type context$6__publicBulkDecrementInventoryItemsByVariantAndLocationType = _publicBulkDecrementInventoryItemsByVariantAndLocationType;
|
|
9944
|
-
type context$6__publicBulkDecrementInventoryItemsType = _publicBulkDecrementInventoryItemsType;
|
|
9945
|
-
type context$6__publicBulkDeleteInventoryItemsType = _publicBulkDeleteInventoryItemsType;
|
|
9946
|
-
type context$6__publicBulkIncrementInventoryItemsByVariantAndLocationType = _publicBulkIncrementInventoryItemsByVariantAndLocationType;
|
|
9947
|
-
type context$6__publicBulkIncrementInventoryItemsType = _publicBulkIncrementInventoryItemsType;
|
|
9948
|
-
type context$6__publicBulkUpdateInventoryItemsByFilterType = _publicBulkUpdateInventoryItemsByFilterType;
|
|
9949
|
-
type context$6__publicBulkUpdateInventoryItemsType = _publicBulkUpdateInventoryItemsType;
|
|
9950
|
-
type context$6__publicCreateInventoryItemType = _publicCreateInventoryItemType;
|
|
9951
|
-
type context$6__publicDeleteInventoryItemType = _publicDeleteInventoryItemType;
|
|
9952
|
-
type context$6__publicGetInventoryItemType = _publicGetInventoryItemType;
|
|
9953
9798
|
type context$6__publicOnInventoryItemCreatedType = _publicOnInventoryItemCreatedType;
|
|
9954
9799
|
type context$6__publicOnInventoryItemDeletedType = _publicOnInventoryItemDeletedType;
|
|
9955
9800
|
type context$6__publicOnInventoryItemStockStatusUpdatedType = _publicOnInventoryItemStockStatusUpdatedType;
|
|
9956
9801
|
type context$6__publicOnInventoryItemUpdatedType = _publicOnInventoryItemUpdatedType;
|
|
9957
9802
|
type context$6__publicOnInventoryItemUpdatedWithReasonType = _publicOnInventoryItemUpdatedWithReasonType;
|
|
9958
|
-
type context$6__publicQueryInventoryItemsType = _publicQueryInventoryItemsType;
|
|
9959
|
-
type context$6__publicSearchInventoryItemsType = _publicSearchInventoryItemsType;
|
|
9960
|
-
type context$6__publicUpdateInventoryItemType = _publicUpdateInventoryItemType;
|
|
9961
9803
|
declare const context$6_bulkCreateInventoryItems: typeof bulkCreateInventoryItems;
|
|
9962
9804
|
declare const context$6_bulkDecrementInventoryItems: typeof bulkDecrementInventoryItems;
|
|
9963
9805
|
declare const context$6_bulkDecrementInventoryItemsByVariantAndLocation: typeof bulkDecrementInventoryItemsByVariantAndLocation;
|
|
@@ -9978,7 +9820,7 @@ declare const context$6_queryInventoryItems: typeof queryInventoryItems;
|
|
|
9978
9820
|
declare const context$6_searchInventoryItems: typeof searchInventoryItems;
|
|
9979
9821
|
declare const context$6_updateInventoryItem: typeof updateInventoryItem;
|
|
9980
9822
|
declare namespace context$6 {
|
|
9981
|
-
export { type ActionEvent$3 as ActionEvent, type context$6_AdjustInventoryAction as AdjustInventoryAction, type context$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 context$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type context$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type context$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type context$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type context$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type context$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type context$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type context$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type context$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type context$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type context$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type context$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type context$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type context$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type context$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type context$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type context$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type context$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type context$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type context$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type context$6_CreateInventoryItemRequest as CreateInventoryItemRequest, type context$6_CreateInventoryItemResponse as CreateInventoryItemResponse, type context$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 context$6_DecrementDataById as DecrementDataById, type context$6_DecrementDataByVariantAndLocation as DecrementDataByVariantAndLocation, type context$6_DeleteInventoryItemRequest as DeleteInventoryItemRequest, type context$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$2 as ExtendedFields, type File$3 as File, type context$6_GetInventoryItemRequest as GetInventoryItemRequest, type context$6_GetInventoryItemResponse as GetInventoryItemResponse, type context$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 context$6_IncrementDataById as IncrementDataById, type context$6_IncrementDataByVariantAndLocation as IncrementDataByVariantAndLocation, Interval$1 as Interval, type InvalidateCache$3 as InvalidateCache, type InvalidateCacheGetByOneOf$3 as InvalidateCacheGetByOneOf, type context$6_InventoryCursorPaging as InventoryCursorPaging, type InventoryItem$1 as InventoryItem, type context$6_InventoryItemCreatedEnvelope as InventoryItemCreatedEnvelope, type context$6_InventoryItemDeletedEnvelope as InventoryItemDeletedEnvelope, type InventoryItemNonNullableFields$1 as InventoryItemNonNullableFields, type context$6_InventoryItemStockStatusUpdatedEnvelope as InventoryItemStockStatusUpdatedEnvelope, type context$6_InventoryItemStockStatusUpdatedEvent as InventoryItemStockStatusUpdatedEvent, type InventoryItemTrackingMethodOneOf$1 as InventoryItemTrackingMethodOneOf, type context$6_InventoryItemUpdatedEnvelope as InventoryItemUpdatedEnvelope, type context$6_InventoryItemUpdatedWithReason as InventoryItemUpdatedWithReason, type context$6_InventoryItemUpdatedWithReasonEnvelope as InventoryItemUpdatedWithReasonEnvelope, type context$6_InventoryItemsQueryBuilder as InventoryItemsQueryBuilder, type context$6_InventoryItemsQueryResult as InventoryItemsQueryResult, type context$6_InventoryPaging as InventoryPaging, type context$6_InventoryQuery as InventoryQuery, type context$6_InventoryQueryPagingMethodOneOf as InventoryQueryPagingMethodOneOf, type ItemMetadata$2 as ItemMetadata, type context$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 context$6_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type PreorderInfo$2 as PreorderInfo, type Product$1 as Product, type context$6_ProductInventoryItems as ProductInventoryItems, type context$6_QueryInventoryItemsRequest as QueryInventoryItemsRequest, type context$6_QueryInventoryItemsResponse as QueryInventoryItemsResponse, type context$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 context$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type context$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type context$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type context$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type context$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type context$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 context$6_UpdateInventoryItem as UpdateInventoryItem, type context$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type context$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type context$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type context$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type context$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 context$6__publicBulkCreateInventoryItemsType as _publicBulkCreateInventoryItemsType, type context$6__publicBulkDecrementInventoryItemsByVariantAndLocationType as _publicBulkDecrementInventoryItemsByVariantAndLocationType, type context$6__publicBulkDecrementInventoryItemsType as _publicBulkDecrementInventoryItemsType, type context$6__publicBulkDeleteInventoryItemsType as _publicBulkDeleteInventoryItemsType, type context$6__publicBulkIncrementInventoryItemsByVariantAndLocationType as _publicBulkIncrementInventoryItemsByVariantAndLocationType, type context$6__publicBulkIncrementInventoryItemsType as _publicBulkIncrementInventoryItemsType, type context$6__publicBulkUpdateInventoryItemsByFilterType as _publicBulkUpdateInventoryItemsByFilterType, type context$6__publicBulkUpdateInventoryItemsType as _publicBulkUpdateInventoryItemsType, type context$6__publicCreateInventoryItemType as _publicCreateInventoryItemType, type context$6__publicDeleteInventoryItemType as _publicDeleteInventoryItemType, type context$6__publicGetInventoryItemType as _publicGetInventoryItemType, type context$6__publicOnInventoryItemCreatedType as _publicOnInventoryItemCreatedType, type context$6__publicOnInventoryItemDeletedType as _publicOnInventoryItemDeletedType, type context$6__publicOnInventoryItemStockStatusUpdatedType as _publicOnInventoryItemStockStatusUpdatedType, type context$6__publicOnInventoryItemUpdatedType as _publicOnInventoryItemUpdatedType, type context$6__publicOnInventoryItemUpdatedWithReasonType as _publicOnInventoryItemUpdatedWithReasonType, type context$6__publicQueryInventoryItemsType as _publicQueryInventoryItemsType, type context$6__publicSearchInventoryItemsType as _publicSearchInventoryItemsType, type context$6__publicUpdateInventoryItemType as _publicUpdateInventoryItemType, context$6_bulkCreateInventoryItems as bulkCreateInventoryItems, context$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, context$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, context$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, context$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, context$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, context$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, context$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, context$6_createInventoryItem as createInventoryItem, context$6_deleteInventoryItem as deleteInventoryItem, context$6_getInventoryItem as getInventoryItem, context$6_onInventoryItemCreated as onInventoryItemCreated, context$6_onInventoryItemDeleted as onInventoryItemDeleted, context$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, context$6_onInventoryItemUpdated as onInventoryItemUpdated, context$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, onInventoryItemCreated$1 as publicOnInventoryItemCreated, onInventoryItemDeleted$1 as publicOnInventoryItemDeleted, onInventoryItemStockStatusUpdated$1 as publicOnInventoryItemStockStatusUpdated, onInventoryItemUpdated$1 as publicOnInventoryItemUpdated, onInventoryItemUpdatedWithReason$1 as publicOnInventoryItemUpdatedWithReason, context$6_queryInventoryItems as queryInventoryItems, context$6_searchInventoryItems as searchInventoryItems, context$6_updateInventoryItem as updateInventoryItem };
|
|
9823
|
+
export { type ActionEvent$3 as ActionEvent, type context$6_AdjustInventoryAction as AdjustInventoryAction, type context$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 context$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type context$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type context$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type context$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type context$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type context$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type context$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type context$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type context$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type context$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type context$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type context$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type context$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type context$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type context$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type context$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type context$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type context$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type context$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type context$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type context$6_CreateInventoryItemRequest as CreateInventoryItemRequest, type context$6_CreateInventoryItemResponse as CreateInventoryItemResponse, type context$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 context$6_DecrementDataById as DecrementDataById, type context$6_DecrementDataByVariantAndLocation as DecrementDataByVariantAndLocation, type context$6_DeleteInventoryItemRequest as DeleteInventoryItemRequest, type context$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 context$6_GetInventoryItemRequest as GetInventoryItemRequest, type context$6_GetInventoryItemResponse as GetInventoryItemResponse, type context$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 context$6_IncrementDataById as IncrementDataById, type context$6_IncrementDataByVariantAndLocation as IncrementDataByVariantAndLocation, Interval$1 as Interval, type InvalidateCache$3 as InvalidateCache, type InvalidateCacheGetByOneOf$3 as InvalidateCacheGetByOneOf, type context$6_InventoryCursorPaging as InventoryCursorPaging, type InventoryItem$1 as InventoryItem, type context$6_InventoryItemCreatedEnvelope as InventoryItemCreatedEnvelope, type context$6_InventoryItemDeletedEnvelope as InventoryItemDeletedEnvelope, type InventoryItemNonNullableFields$1 as InventoryItemNonNullableFields, type context$6_InventoryItemStockStatusUpdatedEnvelope as InventoryItemStockStatusUpdatedEnvelope, type context$6_InventoryItemStockStatusUpdatedEvent as InventoryItemStockStatusUpdatedEvent, type InventoryItemTrackingMethodOneOf$1 as InventoryItemTrackingMethodOneOf, type context$6_InventoryItemUpdatedEnvelope as InventoryItemUpdatedEnvelope, type context$6_InventoryItemUpdatedWithReason as InventoryItemUpdatedWithReason, type context$6_InventoryItemUpdatedWithReasonEnvelope as InventoryItemUpdatedWithReasonEnvelope, type context$6_InventoryItemsQueryBuilder as InventoryItemsQueryBuilder, type context$6_InventoryItemsQueryResult as InventoryItemsQueryResult, type context$6_InventoryPaging as InventoryPaging, type context$6_InventoryQuery as InventoryQuery, type context$6_InventoryQueryPagingMethodOneOf as InventoryQueryPagingMethodOneOf, type ItemMetadata$2 as ItemMetadata, type context$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 context$6_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type PreorderInfo$2 as PreorderInfo, type Product$1 as Product, type context$6_ProductInventoryItems as ProductInventoryItems, type context$6_QueryInventoryItemsRequest as QueryInventoryItemsRequest, type context$6_QueryInventoryItemsResponse as QueryInventoryItemsResponse, type context$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 context$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type context$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type context$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type context$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type context$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type context$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 context$6_UpdateInventoryItem as UpdateInventoryItem, type context$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type context$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type context$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type context$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type context$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 context$6__publicOnInventoryItemCreatedType as _publicOnInventoryItemCreatedType, type context$6__publicOnInventoryItemDeletedType as _publicOnInventoryItemDeletedType, type context$6__publicOnInventoryItemStockStatusUpdatedType as _publicOnInventoryItemStockStatusUpdatedType, type context$6__publicOnInventoryItemUpdatedType as _publicOnInventoryItemUpdatedType, type context$6__publicOnInventoryItemUpdatedWithReasonType as _publicOnInventoryItemUpdatedWithReasonType, context$6_bulkCreateInventoryItems as bulkCreateInventoryItems, context$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, context$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, context$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, context$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, context$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, context$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, context$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, context$6_createInventoryItem as createInventoryItem, context$6_deleteInventoryItem as deleteInventoryItem, context$6_getInventoryItem as getInventoryItem, context$6_onInventoryItemCreated as onInventoryItemCreated, context$6_onInventoryItemDeleted as onInventoryItemDeleted, context$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, context$6_onInventoryItemUpdated as onInventoryItemUpdated, context$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, onInventoryItemCreated$1 as publicOnInventoryItemCreated, onInventoryItemDeleted$1 as publicOnInventoryItemDeleted, onInventoryItemStockStatusUpdated$1 as publicOnInventoryItemStockStatusUpdated, onInventoryItemUpdated$1 as publicOnInventoryItemUpdated, onInventoryItemUpdatedWithReason$1 as publicOnInventoryItemUpdatedWithReason, context$6_queryInventoryItems as queryInventoryItems, context$6_searchInventoryItems as searchInventoryItems, context$6_updateInventoryItem as updateInventoryItem };
|
|
9982
9824
|
}
|
|
9983
9825
|
|
|
9984
9826
|
interface V3Product extends V3ProductTypedPropertiesOneOf {
|
|
@@ -10165,7 +10007,7 @@ interface V3Product extends V3ProductTypedPropertiesOneOf {
|
|
|
10165
10007
|
*
|
|
10166
10008
|
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
|
|
10167
10009
|
*/
|
|
10168
|
-
extendedFields?: ExtendedFields
|
|
10010
|
+
extendedFields?: ExtendedFields;
|
|
10169
10011
|
/** Product subscriptions. */
|
|
10170
10012
|
subscriptionDetails?: SubscriptionDetails;
|
|
10171
10013
|
/**
|
|
@@ -12100,7 +11942,7 @@ interface InventoryStatus {
|
|
|
12100
11942
|
/** Whether preorder is enabled for this variant. */
|
|
12101
11943
|
preorderEnabled?: boolean;
|
|
12102
11944
|
}
|
|
12103
|
-
interface ExtendedFields
|
|
11945
|
+
interface ExtendedFields {
|
|
12104
11946
|
/**
|
|
12105
11947
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
12106
11948
|
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
@@ -12631,7 +12473,7 @@ interface ProductWithInventory extends ProductWithInventoryTypedPropertiesOneOf
|
|
|
12631
12473
|
*
|
|
12632
12474
|
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
|
|
12633
12475
|
*/
|
|
12634
|
-
extendedFields?: ExtendedFields
|
|
12476
|
+
extendedFields?: ExtendedFields;
|
|
12635
12477
|
}
|
|
12636
12478
|
/** @oneof */
|
|
12637
12479
|
interface ProductWithInventoryTypedPropertiesOneOf {
|
|
@@ -12894,7 +12736,7 @@ interface InventoryItem extends InventoryItemTrackingMethodOneOf {
|
|
|
12894
12736
|
*
|
|
12895
12737
|
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
|
|
12896
12738
|
*/
|
|
12897
|
-
extendedFields?: ExtendedFields
|
|
12739
|
+
extendedFields?: ExtendedFields;
|
|
12898
12740
|
}
|
|
12899
12741
|
/** @oneof */
|
|
12900
12742
|
interface InventoryItemTrackingMethodOneOf {
|
|
@@ -16120,7 +15962,7 @@ interface UpdateProduct {
|
|
|
16120
15962
|
*
|
|
16121
15963
|
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
|
|
16122
15964
|
*/
|
|
16123
|
-
extendedFields?: ExtendedFields
|
|
15965
|
+
extendedFields?: ExtendedFields;
|
|
16124
15966
|
/** Product subscriptions. */
|
|
16125
15967
|
subscriptionDetails?: SubscriptionDetails;
|
|
16126
15968
|
/**
|
|
@@ -16253,7 +16095,7 @@ interface UpdateProductWithInventoryProduct {
|
|
|
16253
16095
|
*
|
|
16254
16096
|
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
|
|
16255
16097
|
*/
|
|
16256
|
-
extendedFields?: ExtendedFields
|
|
16098
|
+
extendedFields?: ExtendedFields;
|
|
16257
16099
|
}
|
|
16258
16100
|
interface UpdateProductWithInventoryOptions {
|
|
16259
16101
|
/**
|
|
@@ -16837,62 +16679,34 @@ declare const onProductCreated$1: EventDefinition<ProductCreatedEnvelope, "wix.s
|
|
|
16837
16679
|
declare const onProductUpdated$1: EventDefinition<ProductUpdatedEnvelope, "wix.stores.catalog.v3.product_updated">;
|
|
16838
16680
|
declare const onProductDeleted$1: EventDefinition<ProductDeletedEnvelope, "wix.stores.catalog.v3.product_deleted">;
|
|
16839
16681
|
|
|
16840
|
-
declare function createRESTModule$5<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
16841
|
-
|
|
16842
16682
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
16843
16683
|
|
|
16844
|
-
|
|
16845
|
-
declare const
|
|
16846
|
-
|
|
16847
|
-
declare const
|
|
16848
|
-
|
|
16849
|
-
declare const
|
|
16850
|
-
|
|
16851
|
-
declare const
|
|
16852
|
-
|
|
16853
|
-
declare const
|
|
16854
|
-
|
|
16855
|
-
declare const
|
|
16856
|
-
|
|
16857
|
-
declare const
|
|
16858
|
-
|
|
16859
|
-
declare const
|
|
16860
|
-
|
|
16861
|
-
declare const
|
|
16862
|
-
|
|
16863
|
-
declare const
|
|
16864
|
-
|
|
16865
|
-
declare const
|
|
16866
|
-
|
|
16867
|
-
declare const
|
|
16868
|
-
|
|
16869
|
-
declare const
|
|
16870
|
-
type _publicGetProductType = typeof getProduct$1;
|
|
16871
|
-
declare const getProduct: ReturnType<typeof createRESTModule$5<_publicGetProductType>>;
|
|
16872
|
-
type _publicGetProductBySlugType = typeof getProductBySlug$1;
|
|
16873
|
-
declare const getProductBySlug: ReturnType<typeof createRESTModule$5<_publicGetProductBySlugType>>;
|
|
16874
|
-
type _publicSearchProductsType = typeof searchProducts$1;
|
|
16875
|
-
declare const searchProducts: ReturnType<typeof createRESTModule$5<_publicSearchProductsType>>;
|
|
16876
|
-
type _publicQueryProductsType = typeof queryProducts$1;
|
|
16877
|
-
declare const queryProducts: ReturnType<typeof createRESTModule$5<_publicQueryProductsType>>;
|
|
16878
|
-
type _publicCountProductsType = typeof countProducts$1;
|
|
16879
|
-
declare const countProducts: ReturnType<typeof createRESTModule$5<_publicCountProductsType>>;
|
|
16880
|
-
type _publicBulkUpdateProductVariantsByFilterType = typeof bulkUpdateProductVariantsByFilter$1;
|
|
16881
|
-
declare const bulkUpdateProductVariantsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkUpdateProductVariantsByFilterType>>;
|
|
16882
|
-
type _publicBulkAdjustProductVariantsByFilterType = typeof bulkAdjustProductVariantsByFilter$1;
|
|
16883
|
-
declare const bulkAdjustProductVariantsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAdjustProductVariantsByFilterType>>;
|
|
16884
|
-
type _publicBulkAddInfoSectionsToProductsByFilterType = typeof bulkAddInfoSectionsToProductsByFilter$1;
|
|
16885
|
-
declare const bulkAddInfoSectionsToProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAddInfoSectionsToProductsByFilterType>>;
|
|
16886
|
-
type _publicBulkAddInfoSectionsToProductsType = typeof bulkAddInfoSectionsToProducts$1;
|
|
16887
|
-
declare const bulkAddInfoSectionsToProducts: ReturnType<typeof createRESTModule$5<_publicBulkAddInfoSectionsToProductsType>>;
|
|
16888
|
-
type _publicBulkRemoveInfoSectionsFromProductsByFilterType = typeof bulkRemoveInfoSectionsFromProductsByFilter$1;
|
|
16889
|
-
declare const bulkRemoveInfoSectionsFromProductsByFilter: ReturnType<typeof createRESTModule$5<_publicBulkRemoveInfoSectionsFromProductsByFilterType>>;
|
|
16890
|
-
type _publicBulkRemoveInfoSectionsFromProductsType = typeof bulkRemoveInfoSectionsFromProducts$1;
|
|
16891
|
-
declare const bulkRemoveInfoSectionsFromProducts: ReturnType<typeof createRESTModule$5<_publicBulkRemoveInfoSectionsFromProductsType>>;
|
|
16892
|
-
type _publicBulkAddProductsToCategoriesByFilterType = typeof bulkAddProductsToCategoriesByFilter$1;
|
|
16893
|
-
declare const bulkAddProductsToCategoriesByFilter: ReturnType<typeof createRESTModule$5<_publicBulkAddProductsToCategoriesByFilterType>>;
|
|
16894
|
-
type _publicBulkRemoveProductsFromCategoriesByFilterType = typeof bulkRemoveProductsFromCategoriesByFilter$1;
|
|
16895
|
-
declare const bulkRemoveProductsFromCategoriesByFilter: ReturnType<typeof createRESTModule$5<_publicBulkRemoveProductsFromCategoriesByFilterType>>;
|
|
16684
|
+
declare const createProduct: BuildRESTFunction<typeof createProduct$1> & typeof createProduct$1;
|
|
16685
|
+
declare const createProductWithInventory: BuildRESTFunction<typeof createProductWithInventory$1> & typeof createProductWithInventory$1;
|
|
16686
|
+
declare const updateProduct: BuildRESTFunction<typeof updateProduct$1> & typeof updateProduct$1;
|
|
16687
|
+
declare const updateProductWithInventory: BuildRESTFunction<typeof updateProductWithInventory$1> & typeof updateProductWithInventory$1;
|
|
16688
|
+
declare const bulkCreateProducts: BuildRESTFunction<typeof bulkCreateProducts$1> & typeof bulkCreateProducts$1;
|
|
16689
|
+
declare const bulkCreateProductsWithInventory: BuildRESTFunction<typeof bulkCreateProductsWithInventory$1> & typeof bulkCreateProductsWithInventory$1;
|
|
16690
|
+
declare const bulkUpdateProducts: BuildRESTFunction<typeof bulkUpdateProducts$1> & typeof bulkUpdateProducts$1;
|
|
16691
|
+
declare const bulkUpdateProductsWithInventory: BuildRESTFunction<typeof bulkUpdateProductsWithInventory$1> & typeof bulkUpdateProductsWithInventory$1;
|
|
16692
|
+
declare const bulkUpdateProductsByFilter: BuildRESTFunction<typeof bulkUpdateProductsByFilter$1> & typeof bulkUpdateProductsByFilter$1;
|
|
16693
|
+
declare const updateExtendedFields: BuildRESTFunction<typeof updateExtendedFields$1> & typeof updateExtendedFields$1;
|
|
16694
|
+
declare const deleteProduct: BuildRESTFunction<typeof deleteProduct$1> & typeof deleteProduct$1;
|
|
16695
|
+
declare const bulkDeleteProducts: BuildRESTFunction<typeof bulkDeleteProducts$1> & typeof bulkDeleteProducts$1;
|
|
16696
|
+
declare const bulkDeleteProductsByFilter: BuildRESTFunction<typeof bulkDeleteProductsByFilter$1> & typeof bulkDeleteProductsByFilter$1;
|
|
16697
|
+
declare const getProduct: BuildRESTFunction<typeof getProduct$1> & typeof getProduct$1;
|
|
16698
|
+
declare const getProductBySlug: BuildRESTFunction<typeof getProductBySlug$1> & typeof getProductBySlug$1;
|
|
16699
|
+
declare const searchProducts: BuildRESTFunction<typeof searchProducts$1> & typeof searchProducts$1;
|
|
16700
|
+
declare const queryProducts: BuildRESTFunction<typeof queryProducts$1> & typeof queryProducts$1;
|
|
16701
|
+
declare const countProducts: BuildRESTFunction<typeof countProducts$1> & typeof countProducts$1;
|
|
16702
|
+
declare const bulkUpdateProductVariantsByFilter: BuildRESTFunction<typeof bulkUpdateProductVariantsByFilter$1> & typeof bulkUpdateProductVariantsByFilter$1;
|
|
16703
|
+
declare const bulkAdjustProductVariantsByFilter: BuildRESTFunction<typeof bulkAdjustProductVariantsByFilter$1> & typeof bulkAdjustProductVariantsByFilter$1;
|
|
16704
|
+
declare const bulkAddInfoSectionsToProductsByFilter: BuildRESTFunction<typeof bulkAddInfoSectionsToProductsByFilter$1> & typeof bulkAddInfoSectionsToProductsByFilter$1;
|
|
16705
|
+
declare const bulkAddInfoSectionsToProducts: BuildRESTFunction<typeof bulkAddInfoSectionsToProducts$1> & typeof bulkAddInfoSectionsToProducts$1;
|
|
16706
|
+
declare const bulkRemoveInfoSectionsFromProductsByFilter: BuildRESTFunction<typeof bulkRemoveInfoSectionsFromProductsByFilter$1> & typeof bulkRemoveInfoSectionsFromProductsByFilter$1;
|
|
16707
|
+
declare const bulkRemoveInfoSectionsFromProducts: BuildRESTFunction<typeof bulkRemoveInfoSectionsFromProducts$1> & typeof bulkRemoveInfoSectionsFromProducts$1;
|
|
16708
|
+
declare const bulkAddProductsToCategoriesByFilter: BuildRESTFunction<typeof bulkAddProductsToCategoriesByFilter$1> & typeof bulkAddProductsToCategoriesByFilter$1;
|
|
16709
|
+
declare const bulkRemoveProductsFromCategoriesByFilter: BuildRESTFunction<typeof bulkRemoveProductsFromCategoriesByFilter$1> & typeof bulkRemoveProductsFromCategoriesByFilter$1;
|
|
16896
16710
|
|
|
16897
16711
|
type _publicOnProductCreatedType = typeof onProductCreated$1;
|
|
16898
16712
|
/** */
|
|
@@ -17133,6 +16947,7 @@ declare const context$5_Enum: typeof Enum;
|
|
|
17133
16947
|
type context$5_EventData = EventData;
|
|
17134
16948
|
type context$5_EventuallyConsistentQueryProductsRequest = EventuallyConsistentQueryProductsRequest;
|
|
17135
16949
|
type context$5_EventuallyConsistentQueryProductsResponse = EventuallyConsistentQueryProductsResponse;
|
|
16950
|
+
type context$5_ExtendedFields = ExtendedFields;
|
|
17136
16951
|
type context$5_FileData = FileData;
|
|
17137
16952
|
type context$5_FileSource = FileSource;
|
|
17138
16953
|
type context$5_FileSourceDataOneOf = FileSourceDataOneOf;
|
|
@@ -17506,35 +17321,9 @@ type context$5_WixCommonSearchDetails = WixCommonSearchDetails;
|
|
|
17506
17321
|
type context$5_WixCommonSortOrder = WixCommonSortOrder;
|
|
17507
17322
|
declare const context$5_WixCommonSortOrder: typeof WixCommonSortOrder;
|
|
17508
17323
|
type context$5_WixCommonSorting = WixCommonSorting;
|
|
17509
|
-
type context$5__publicBulkAddInfoSectionsToProductsByFilterType = _publicBulkAddInfoSectionsToProductsByFilterType;
|
|
17510
|
-
type context$5__publicBulkAddInfoSectionsToProductsType = _publicBulkAddInfoSectionsToProductsType;
|
|
17511
|
-
type context$5__publicBulkAddProductsToCategoriesByFilterType = _publicBulkAddProductsToCategoriesByFilterType;
|
|
17512
|
-
type context$5__publicBulkAdjustProductVariantsByFilterType = _publicBulkAdjustProductVariantsByFilterType;
|
|
17513
|
-
type context$5__publicBulkCreateProductsType = _publicBulkCreateProductsType;
|
|
17514
|
-
type context$5__publicBulkCreateProductsWithInventoryType = _publicBulkCreateProductsWithInventoryType;
|
|
17515
|
-
type context$5__publicBulkDeleteProductsByFilterType = _publicBulkDeleteProductsByFilterType;
|
|
17516
|
-
type context$5__publicBulkDeleteProductsType = _publicBulkDeleteProductsType;
|
|
17517
|
-
type context$5__publicBulkRemoveInfoSectionsFromProductsByFilterType = _publicBulkRemoveInfoSectionsFromProductsByFilterType;
|
|
17518
|
-
type context$5__publicBulkRemoveInfoSectionsFromProductsType = _publicBulkRemoveInfoSectionsFromProductsType;
|
|
17519
|
-
type context$5__publicBulkRemoveProductsFromCategoriesByFilterType = _publicBulkRemoveProductsFromCategoriesByFilterType;
|
|
17520
|
-
type context$5__publicBulkUpdateProductVariantsByFilterType = _publicBulkUpdateProductVariantsByFilterType;
|
|
17521
|
-
type context$5__publicBulkUpdateProductsByFilterType = _publicBulkUpdateProductsByFilterType;
|
|
17522
|
-
type context$5__publicBulkUpdateProductsType = _publicBulkUpdateProductsType;
|
|
17523
|
-
type context$5__publicBulkUpdateProductsWithInventoryType = _publicBulkUpdateProductsWithInventoryType;
|
|
17524
|
-
type context$5__publicCountProductsType = _publicCountProductsType;
|
|
17525
|
-
type context$5__publicCreateProductType = _publicCreateProductType;
|
|
17526
|
-
type context$5__publicCreateProductWithInventoryType = _publicCreateProductWithInventoryType;
|
|
17527
|
-
type context$5__publicDeleteProductType = _publicDeleteProductType;
|
|
17528
|
-
type context$5__publicGetProductBySlugType = _publicGetProductBySlugType;
|
|
17529
|
-
type context$5__publicGetProductType = _publicGetProductType;
|
|
17530
17324
|
type context$5__publicOnProductCreatedType = _publicOnProductCreatedType;
|
|
17531
17325
|
type context$5__publicOnProductDeletedType = _publicOnProductDeletedType;
|
|
17532
17326
|
type context$5__publicOnProductUpdatedType = _publicOnProductUpdatedType;
|
|
17533
|
-
type context$5__publicQueryProductsType = _publicQueryProductsType;
|
|
17534
|
-
type context$5__publicSearchProductsType = _publicSearchProductsType;
|
|
17535
|
-
type context$5__publicUpdateExtendedFieldsType = _publicUpdateExtendedFieldsType;
|
|
17536
|
-
type context$5__publicUpdateProductType = _publicUpdateProductType;
|
|
17537
|
-
type context$5__publicUpdateProductWithInventoryType = _publicUpdateProductWithInventoryType;
|
|
17538
17327
|
declare const context$5_bulkAddInfoSectionsToProducts: typeof bulkAddInfoSectionsToProducts;
|
|
17539
17328
|
declare const context$5_bulkAddInfoSectionsToProductsByFilter: typeof bulkAddInfoSectionsToProductsByFilter;
|
|
17540
17329
|
declare const context$5_bulkAddProductsToCategoriesByFilter: typeof bulkAddProductsToCategoriesByFilter;
|
|
@@ -17565,7 +17354,7 @@ declare const context$5_updateExtendedFields: typeof updateExtendedFields;
|
|
|
17565
17354
|
declare const context$5_updateProduct: typeof updateProduct;
|
|
17566
17355
|
declare const context$5_updateProductWithInventory: typeof updateProductWithInventory;
|
|
17567
17356
|
declare namespace context$5 {
|
|
17568
|
-
export { type ActionEvent$2 as ActionEvent, type context$5_AdjustValue as AdjustValue, type context$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type context$5_Aggregation as Aggregation, type context$5_AggregationData as AggregationData, type context$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type context$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type context$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type context$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, context$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type context$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, context$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, type context$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type context$5_AggregationResults as AggregationResults, type context$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type context$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type context$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type context$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type context$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type context$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type context$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type context$5_AggregationResultsValueResults as AggregationResultsValueResults, type context$5_AggregationScalarAggregation as AggregationScalarAggregation, context$5_AggregationType as AggregationType, type context$5_AggregationValueAggregation as AggregationValueAggregation, type context$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, context$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type context$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, context$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, context$5_Alignment as Alignment, type context$5_AnchorData as AnchorData, type App$2 as App, type context$5_AppEmbedData as AppEmbedData, type context$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type context$5_AudioData as AudioData, context$5_AvailabilityStatus as AvailabilityStatus, type context$5_Background as Background, type context$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_CategoryMoved as CategoryMoved, type context$5_CellStyle as CellStyle, context$5_ChoiceType as ChoiceType, type context$5_ChoicesSettings as ChoicesSettings, type context$5_CodeBlockData as CodeBlockData, type context$5_CollapsibleListData as CollapsibleListData, type context$5_ColorData as ColorData, type context$5_Colors as Colors, type context$5_CommonAggregation as CommonAggregation, type context$5_CommonAggregationData as CommonAggregationData, type context$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type context$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type context$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type context$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type context$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, context$5_CommonAggregationType as CommonAggregationType, type context$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type context$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type context$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type context$5_CommonCursorPaging as CommonCursorPaging, type context$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$5_CommonCursorQuery as CommonCursorQuery, type context$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type context$5_CommonCursorSearch as CommonCursorSearch, type context$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type context$5_CommonCursors as CommonCursors, type context$5_CommonItemMetadata as CommonItemMetadata, context$5_CommonScalarType as CommonScalarType, type context$5_CommonSearchDetails as CommonSearchDetails, context$5_CommonSearchDetailsMode as CommonSearchDetailsMode, context$5_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsOptions as CountProductsOptions, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductOptions as CreateProductOptions, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type ExtendedFields$1 as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugOptions as GetProductBySlugOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductOptions as GetProductOptions, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_GetVariantsRequest as GetVariantsRequest, type context$5_GetVariantsResponse as GetVariantsResponse, type context$5_Gradient as Gradient, type context$5_GroupByAggregation as GroupByAggregation, type context$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$5_GroupByValueResults as GroupByValueResults, type context$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type context$5_HTMLData as HTMLData, type context$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$5_HeadingData as HeadingData, type context$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$5_Image as Image, type context$5_ImageData as ImageData, type context$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type context$5_IndexDocument as IndexDocument, type context$5_InfoSection as InfoSection, context$5_InitialExpandedItems as InitialExpandedItems, context$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type context$5_Inventory as Inventory, context$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type context$5_InventoryItem as InventoryItem, type context$5_InventoryItemComposite as InventoryItemComposite, type context$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type context$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type context$5_InventoryStatus as InventoryStatus, type context$5_Item as Item, type context$5_ItemAddedToCategory as ItemAddedToCategory, type context$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemReference as ItemReference, type context$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type context$5_ItemStyle as ItemStyle, type context$5_ItemsAddedToCategory as ItemsAddedToCategory, type context$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type context$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context$5_Keyword as Keyword, type context$5_Layout as Layout, context$5_LayoutType as LayoutType, context$5_LineStyle as LineStyle, type context$5_Link as Link, type context$5_LinkData as LinkData, type context$5_LinkDataOneOf as LinkDataOneOf, type context$5_LinkPreviewData as LinkPreviewData, type context$5_ListValue as ListValue, type context$5_MapData as MapData, type context$5_MapSettings as MapSettings, context$5_MapType as MapType, type context$5_MaskedProduct as MaskedProduct, type context$5_MaskedProductWithInventory as MaskedProductWithInventory, context$5_MeasurementUnit as MeasurementUnit, type context$5_Media as Media, type context$5_MediaItemsInfo as MediaItemsInfo, type context$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type context$5_Metadata as Metadata, type context$5_MinVariantPriceInfo as MinVariantPriceInfo, context$5_MissingValues as MissingValues, context$5_Mode as Mode, type context$5_ModifierChoicesSettings as ModifierChoicesSettings, context$5_ModifierRenderType as ModifierRenderType, type context$5_MultipleColors as MultipleColors, type context$5_NestedAggregation as NestedAggregation, type context$5_NestedAggregationItem as NestedAggregationItem, type context$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context$5_NestedAggregationResults as NestedAggregationResults, type context$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$5_NestedAggregationType as NestedAggregationType, type context$5_NestedResultValue as NestedResultValue, type context$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$5_NestedResults as NestedResults, type context$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type context$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type context$5_NestedResultsRangeResult as NestedResultsRangeResult, type context$5_NestedResultsResults as NestedResultsResults, type context$5_NestedResultsScalarResult as NestedResultsScalarResult, type context$5_NestedResultsValueResult as NestedResultsValueResult, type context$5_NestedValueAggregationResult as NestedValueAggregationResult, type context$5_Node as Node, type context$5_NodeDataOneOf as NodeDataOneOf, type context$5_NodeStyle as NodeStyle, context$5_NodeType as NodeType, context$5_NullValue as NullValue, type context$5_Oembed as Oembed, type context$5_Option as Option, type context$5_OptionChoice as OptionChoice, type context$5_OptionChoiceIds as OptionChoiceIds, type context$5_OptionChoiceNames as OptionChoiceNames, type context$5_OptionChoiceReferences as OptionChoiceReferences, type context$5_OptionDesign as OptionDesign, type context$5_OptionLayout as OptionLayout, type context$5_OrderedListData as OrderedListData, context$5_Orientation as Orientation, type context$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type context$5_ParagraphData as ParagraphData, type context$5_ParentCategory as ParentCategory, type context$5_Permissions as Permissions, type context$5_PhysicalProperties as PhysicalProperties, type context$5_PlatformOffsetSearch as PlatformOffsetSearch, type context$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context$5_PlatformPaging as PlatformPaging, type context$5_PlaybackOptions as PlaybackOptions, type context$5_PluginContainerData as PluginContainerData, context$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$5_PluginContainerDataWidth as PluginContainerDataWidth, type context$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$5_Poll as Poll, type context$5_PollData as PollData, type context$5_PollDataLayout as PollDataLayout, type context$5_PollDesign as PollDesign, type context$5_PollLayout as PollLayout, context$5_PollLayoutDirection as PollLayoutDirection, context$5_PollLayoutType as PollLayoutType, type context$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, context$5_PreorderStatus as PreorderStatus, type context$5_PriceInfo as PriceInfo, type context$5_PricePerUnit as PricePerUnit, type context$5_PricePerUnitRange as PricePerUnitRange, type context$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type context$5_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategoriesInfo as ProductCategoriesInfo, type context$5_ProductCategory as ProductCategory, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantIds as ProductVariantIds, type context$5_ProductVariants as ProductVariants, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_ProductsQueryBuilder as ProductsQueryBuilder, type context$5_ProductsQueryResult as ProductsQueryResult, type context$5_QueryProductsOptions as QueryProductsOptions, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsOptions as SearchProductsOptions, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, type context$5_TreeReference as TreeReference, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProduct as UpdateProduct, type context$5_UpdateProductOptions as UpdateProductOptions, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantSummary as VariantSummary, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, type context$5_WixCommonAggregation as WixCommonAggregation, type context$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, context$5_WixCommonAggregationType as WixCommonAggregationType, type context$5_WixCommonItemMetadata as WixCommonItemMetadata, context$5_WixCommonScalarType as WixCommonScalarType, type context$5_WixCommonSearchDetails as WixCommonSearchDetails, context$5_WixCommonSortOrder as WixCommonSortOrder, type context$5_WixCommonSorting as WixCommonSorting, type context$5__publicBulkAddInfoSectionsToProductsByFilterType as _publicBulkAddInfoSectionsToProductsByFilterType, type context$5__publicBulkAddInfoSectionsToProductsType as _publicBulkAddInfoSectionsToProductsType, type context$5__publicBulkAddProductsToCategoriesByFilterType as _publicBulkAddProductsToCategoriesByFilterType, type context$5__publicBulkAdjustProductVariantsByFilterType as _publicBulkAdjustProductVariantsByFilterType, type context$5__publicBulkCreateProductsType as _publicBulkCreateProductsType, type context$5__publicBulkCreateProductsWithInventoryType as _publicBulkCreateProductsWithInventoryType, type context$5__publicBulkDeleteProductsByFilterType as _publicBulkDeleteProductsByFilterType, type context$5__publicBulkDeleteProductsType as _publicBulkDeleteProductsType, type context$5__publicBulkRemoveInfoSectionsFromProductsByFilterType as _publicBulkRemoveInfoSectionsFromProductsByFilterType, type context$5__publicBulkRemoveInfoSectionsFromProductsType as _publicBulkRemoveInfoSectionsFromProductsType, type context$5__publicBulkRemoveProductsFromCategoriesByFilterType as _publicBulkRemoveProductsFromCategoriesByFilterType, type context$5__publicBulkUpdateProductVariantsByFilterType as _publicBulkUpdateProductVariantsByFilterType, type context$5__publicBulkUpdateProductsByFilterType as _publicBulkUpdateProductsByFilterType, type context$5__publicBulkUpdateProductsType as _publicBulkUpdateProductsType, type context$5__publicBulkUpdateProductsWithInventoryType as _publicBulkUpdateProductsWithInventoryType, type context$5__publicCountProductsType as _publicCountProductsType, type context$5__publicCreateProductType as _publicCreateProductType, type context$5__publicCreateProductWithInventoryType as _publicCreateProductWithInventoryType, type context$5__publicDeleteProductType as _publicDeleteProductType, type context$5__publicGetProductBySlugType as _publicGetProductBySlugType, type context$5__publicGetProductType as _publicGetProductType, type context$5__publicOnProductCreatedType as _publicOnProductCreatedType, type context$5__publicOnProductDeletedType as _publicOnProductDeletedType, type context$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, type context$5__publicQueryProductsType as _publicQueryProductsType, type context$5__publicSearchProductsType as _publicSearchProductsType, type context$5__publicUpdateExtendedFieldsType as _publicUpdateExtendedFieldsType, type context$5__publicUpdateProductType as _publicUpdateProductType, type context$5__publicUpdateProductWithInventoryType as _publicUpdateProductWithInventoryType, context$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, context$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProducts as bulkCreateProducts, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkDeleteProducts as bulkDeleteProducts, context$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, context$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, context$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProducts as bulkUpdateProducts, context$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_countProducts as countProducts, context$5_createProduct as createProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_deleteProduct as deleteProduct, context$5_getProduct as getProduct, context$5_getProductBySlug as getProductBySlug, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, context$5_queryProducts as queryProducts, context$5_searchProducts as searchProducts, context$5_updateExtendedFields as updateExtendedFields, context$5_updateProduct as updateProduct, context$5_updateProductWithInventory as updateProductWithInventory };
|
|
17357
|
+
export { type ActionEvent$2 as ActionEvent, type context$5_AdjustValue as AdjustValue, type context$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type context$5_Aggregation as Aggregation, type context$5_AggregationData as AggregationData, type context$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type context$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type context$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type context$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, context$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type context$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, context$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, type context$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type context$5_AggregationResults as AggregationResults, type context$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type context$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type context$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type context$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type context$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type context$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type context$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type context$5_AggregationResultsValueResults as AggregationResultsValueResults, type context$5_AggregationScalarAggregation as AggregationScalarAggregation, context$5_AggregationType as AggregationType, type context$5_AggregationValueAggregation as AggregationValueAggregation, type context$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, context$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type context$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, context$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, context$5_Alignment as Alignment, type context$5_AnchorData as AnchorData, type App$2 as App, type context$5_AppEmbedData as AppEmbedData, type context$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type context$5_AudioData as AudioData, context$5_AvailabilityStatus as AvailabilityStatus, type context$5_Background as Background, type context$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_CategoryMoved as CategoryMoved, type context$5_CellStyle as CellStyle, context$5_ChoiceType as ChoiceType, type context$5_ChoicesSettings as ChoicesSettings, type context$5_CodeBlockData as CodeBlockData, type context$5_CollapsibleListData as CollapsibleListData, type context$5_ColorData as ColorData, type context$5_Colors as Colors, type context$5_CommonAggregation as CommonAggregation, type context$5_CommonAggregationData as CommonAggregationData, type context$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type context$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type context$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type context$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type context$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, context$5_CommonAggregationType as CommonAggregationType, type context$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type context$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type context$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type context$5_CommonCursorPaging as CommonCursorPaging, type context$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$5_CommonCursorQuery as CommonCursorQuery, type context$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type context$5_CommonCursorSearch as CommonCursorSearch, type context$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type context$5_CommonCursors as CommonCursors, type context$5_CommonItemMetadata as CommonItemMetadata, context$5_CommonScalarType as CommonScalarType, type context$5_CommonSearchDetails as CommonSearchDetails, context$5_CommonSearchDetailsMode as CommonSearchDetailsMode, context$5_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsOptions as CountProductsOptions, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductOptions as CreateProductOptions, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type context$5_ExtendedFields as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugOptions as GetProductBySlugOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductOptions as GetProductOptions, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_GetVariantsRequest as GetVariantsRequest, type context$5_GetVariantsResponse as GetVariantsResponse, type context$5_Gradient as Gradient, type context$5_GroupByAggregation as GroupByAggregation, type context$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$5_GroupByValueResults as GroupByValueResults, type context$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type context$5_HTMLData as HTMLData, type context$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$5_HeadingData as HeadingData, type context$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$5_Image as Image, type context$5_ImageData as ImageData, type context$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type context$5_IndexDocument as IndexDocument, type context$5_InfoSection as InfoSection, context$5_InitialExpandedItems as InitialExpandedItems, context$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type context$5_Inventory as Inventory, context$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type context$5_InventoryItem as InventoryItem, type context$5_InventoryItemComposite as InventoryItemComposite, type context$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type context$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type context$5_InventoryStatus as InventoryStatus, type context$5_Item as Item, type context$5_ItemAddedToCategory as ItemAddedToCategory, type context$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemReference as ItemReference, type context$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type context$5_ItemStyle as ItemStyle, type context$5_ItemsAddedToCategory as ItemsAddedToCategory, type context$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type context$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context$5_Keyword as Keyword, type context$5_Layout as Layout, context$5_LayoutType as LayoutType, context$5_LineStyle as LineStyle, type context$5_Link as Link, type context$5_LinkData as LinkData, type context$5_LinkDataOneOf as LinkDataOneOf, type context$5_LinkPreviewData as LinkPreviewData, type context$5_ListValue as ListValue, type context$5_MapData as MapData, type context$5_MapSettings as MapSettings, context$5_MapType as MapType, type context$5_MaskedProduct as MaskedProduct, type context$5_MaskedProductWithInventory as MaskedProductWithInventory, context$5_MeasurementUnit as MeasurementUnit, type context$5_Media as Media, type context$5_MediaItemsInfo as MediaItemsInfo, type context$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type context$5_Metadata as Metadata, type context$5_MinVariantPriceInfo as MinVariantPriceInfo, context$5_MissingValues as MissingValues, context$5_Mode as Mode, type context$5_ModifierChoicesSettings as ModifierChoicesSettings, context$5_ModifierRenderType as ModifierRenderType, type context$5_MultipleColors as MultipleColors, type context$5_NestedAggregation as NestedAggregation, type context$5_NestedAggregationItem as NestedAggregationItem, type context$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context$5_NestedAggregationResults as NestedAggregationResults, type context$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$5_NestedAggregationType as NestedAggregationType, type context$5_NestedResultValue as NestedResultValue, type context$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$5_NestedResults as NestedResults, type context$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type context$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type context$5_NestedResultsRangeResult as NestedResultsRangeResult, type context$5_NestedResultsResults as NestedResultsResults, type context$5_NestedResultsScalarResult as NestedResultsScalarResult, type context$5_NestedResultsValueResult as NestedResultsValueResult, type context$5_NestedValueAggregationResult as NestedValueAggregationResult, type context$5_Node as Node, type context$5_NodeDataOneOf as NodeDataOneOf, type context$5_NodeStyle as NodeStyle, context$5_NodeType as NodeType, context$5_NullValue as NullValue, type context$5_Oembed as Oembed, type context$5_Option as Option, type context$5_OptionChoice as OptionChoice, type context$5_OptionChoiceIds as OptionChoiceIds, type context$5_OptionChoiceNames as OptionChoiceNames, type context$5_OptionChoiceReferences as OptionChoiceReferences, type context$5_OptionDesign as OptionDesign, type context$5_OptionLayout as OptionLayout, type context$5_OrderedListData as OrderedListData, context$5_Orientation as Orientation, type context$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type context$5_ParagraphData as ParagraphData, type context$5_ParentCategory as ParentCategory, type context$5_Permissions as Permissions, type context$5_PhysicalProperties as PhysicalProperties, type context$5_PlatformOffsetSearch as PlatformOffsetSearch, type context$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context$5_PlatformPaging as PlatformPaging, type context$5_PlaybackOptions as PlaybackOptions, type context$5_PluginContainerData as PluginContainerData, context$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$5_PluginContainerDataWidth as PluginContainerDataWidth, type context$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$5_Poll as Poll, type context$5_PollData as PollData, type context$5_PollDataLayout as PollDataLayout, type context$5_PollDesign as PollDesign, type context$5_PollLayout as PollLayout, context$5_PollLayoutDirection as PollLayoutDirection, context$5_PollLayoutType as PollLayoutType, type context$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, context$5_PreorderStatus as PreorderStatus, type context$5_PriceInfo as PriceInfo, type context$5_PricePerUnit as PricePerUnit, type context$5_PricePerUnitRange as PricePerUnitRange, type context$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type context$5_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategoriesInfo as ProductCategoriesInfo, type context$5_ProductCategory as ProductCategory, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantIds as ProductVariantIds, type context$5_ProductVariants as ProductVariants, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_ProductsQueryBuilder as ProductsQueryBuilder, type context$5_ProductsQueryResult as ProductsQueryResult, type context$5_QueryProductsOptions as QueryProductsOptions, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsOptions as SearchProductsOptions, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, type context$5_TreeReference as TreeReference, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProduct as UpdateProduct, type context$5_UpdateProductOptions as UpdateProductOptions, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantSummary as VariantSummary, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, type context$5_WixCommonAggregation as WixCommonAggregation, type context$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, context$5_WixCommonAggregationType as WixCommonAggregationType, type context$5_WixCommonItemMetadata as WixCommonItemMetadata, context$5_WixCommonScalarType as WixCommonScalarType, type context$5_WixCommonSearchDetails as WixCommonSearchDetails, context$5_WixCommonSortOrder as WixCommonSortOrder, type context$5_WixCommonSorting as WixCommonSorting, type context$5__publicOnProductCreatedType as _publicOnProductCreatedType, type context$5__publicOnProductDeletedType as _publicOnProductDeletedType, type context$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, context$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, context$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProducts as bulkCreateProducts, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkDeleteProducts as bulkDeleteProducts, context$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, context$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, context$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProducts as bulkUpdateProducts, context$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_countProducts as countProducts, context$5_createProduct as createProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_deleteProduct as deleteProduct, context$5_getProduct as getProduct, context$5_getProductBySlug as getProductBySlug, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, context$5_queryProducts as queryProducts, context$5_searchProducts as searchProducts, context$5_updateExtendedFields as updateExtendedFields, context$5_updateProduct as updateProduct, context$5_updateProductWithInventory as updateProductWithInventory };
|
|
17569
17358
|
}
|
|
17570
17359
|
|
|
17571
17360
|
interface Provision {
|
|
@@ -17946,10 +17735,7 @@ interface GetCatalogVersionSignature {
|
|
|
17946
17735
|
(): Promise<GetCatalogVersionResponse & GetCatalogVersionResponseNonNullableFields>;
|
|
17947
17736
|
}
|
|
17948
17737
|
|
|
17949
|
-
declare
|
|
17950
|
-
|
|
17951
|
-
type _publicGetCatalogVersionType = typeof getCatalogVersion$1;
|
|
17952
|
-
declare const getCatalogVersion: ReturnType<typeof createRESTModule$4<_publicGetCatalogVersionType>>;
|
|
17738
|
+
declare const getCatalogVersion: BuildRESTFunction<typeof getCatalogVersion$1> & typeof getCatalogVersion$1;
|
|
17953
17739
|
|
|
17954
17740
|
type context$4_Asset = Asset;
|
|
17955
17741
|
type context$4_DefaultDeliveryProfileSetup = DefaultDeliveryProfileSetup;
|
|
@@ -17989,10 +17775,9 @@ type context$4_StudioAssigned = StudioAssigned;
|
|
|
17989
17775
|
type context$4_StudioUnassigned = StudioUnassigned;
|
|
17990
17776
|
type context$4_Version = Version;
|
|
17991
17777
|
declare const context$4_Version: typeof Version;
|
|
17992
|
-
type context$4__publicGetCatalogVersionType = _publicGetCatalogVersionType;
|
|
17993
17778
|
declare const context$4_getCatalogVersion: typeof getCatalogVersion;
|
|
17994
17779
|
declare namespace context$4 {
|
|
17995
|
-
export { type context$4_Asset as Asset, type context$4_DefaultDeliveryProfileSetup as DefaultDeliveryProfileSetup, type context$4_DeleteContext as DeleteContext, context$4_DeleteStatus as DeleteStatus, type Empty$2 as Empty, type context$4_GetCatalogVersionRequest as GetCatalogVersionRequest, type context$4_GetCatalogVersionResponse as GetCatalogVersionResponse, type context$4_GetCatalogVersionResponseNonNullableFields as GetCatalogVersionResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type context$4_InstallBassAppDependencyRequest as InstallBassAppDependencyRequest, type context$4_InstallBassAppDependencyResponse as InstallBassAppDependencyResponse, type MessageEnvelope$3 as MessageEnvelope, type context$4_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context$4_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, context$4_Namespace as Namespace, type context$4_NamespaceChanged as NamespaceChanged, type context$4_Provision as Provision, type context$4_ProvisionRequest as ProvisionRequest, type context$4_ProvisionResponse as ProvisionResponse, type context$4_ServiceProvisioned as ServiceProvisioned, type context$4_ServiceRemoved as ServiceRemoved, type context$4_SiteCreated as SiteCreated, context$4_SiteCreatedContext as SiteCreatedContext, type context$4_SiteDeleted as SiteDeleted, type context$4_SiteHardDeleted as SiteHardDeleted, type context$4_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context$4_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context$4_SitePublished as SitePublished, type context$4_SiteRenamed as SiteRenamed, type context$4_SiteTransferred as SiteTransferred, type context$4_SiteUndeleted as SiteUndeleted, type context$4_SiteUnpublished as SiteUnpublished, context$4_State as State, type context$4_StudioAssigned as StudioAssigned, type context$4_StudioUnassigned as StudioUnassigned, context$4_Version as Version, WebhookIdentityType$3 as WebhookIdentityType,
|
|
17780
|
+
export { type context$4_Asset as Asset, type context$4_DefaultDeliveryProfileSetup as DefaultDeliveryProfileSetup, type context$4_DeleteContext as DeleteContext, context$4_DeleteStatus as DeleteStatus, type Empty$2 as Empty, type context$4_GetCatalogVersionRequest as GetCatalogVersionRequest, type context$4_GetCatalogVersionResponse as GetCatalogVersionResponse, type context$4_GetCatalogVersionResponseNonNullableFields as GetCatalogVersionResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type context$4_InstallBassAppDependencyRequest as InstallBassAppDependencyRequest, type context$4_InstallBassAppDependencyResponse as InstallBassAppDependencyResponse, type MessageEnvelope$3 as MessageEnvelope, type context$4_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context$4_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, context$4_Namespace as Namespace, type context$4_NamespaceChanged as NamespaceChanged, type context$4_Provision as Provision, type context$4_ProvisionRequest as ProvisionRequest, type context$4_ProvisionResponse as ProvisionResponse, type context$4_ServiceProvisioned as ServiceProvisioned, type context$4_ServiceRemoved as ServiceRemoved, type context$4_SiteCreated as SiteCreated, context$4_SiteCreatedContext as SiteCreatedContext, type context$4_SiteDeleted as SiteDeleted, type context$4_SiteHardDeleted as SiteHardDeleted, type context$4_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context$4_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context$4_SitePublished as SitePublished, type context$4_SiteRenamed as SiteRenamed, type context$4_SiteTransferred as SiteTransferred, type context$4_SiteUndeleted as SiteUndeleted, type context$4_SiteUnpublished as SiteUnpublished, context$4_State as State, type context$4_StudioAssigned as StudioAssigned, type context$4_StudioUnassigned as StudioUnassigned, context$4_Version as Version, WebhookIdentityType$3 as WebhookIdentityType, context$4_getCatalogVersion as getCatalogVersion };
|
|
17996
17781
|
}
|
|
17997
17782
|
|
|
17998
17783
|
/** A Ribbon is a visual element that you can assign to products to highlight them on your site. */
|
|
@@ -18847,30 +18632,18 @@ declare const onRibbonCreated$1: EventDefinition<RibbonCreatedEnvelope, "wix.sto
|
|
|
18847
18632
|
declare const onRibbonUpdated$1: EventDefinition<RibbonUpdatedEnvelope, "wix.stores.catalog.v3.ribbon_updated">;
|
|
18848
18633
|
declare const onRibbonDeleted$1: EventDefinition<RibbonDeletedEnvelope, "wix.stores.catalog.v3.ribbon_deleted">;
|
|
18849
18634
|
|
|
18850
|
-
declare function createRESTModule$3<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
18851
|
-
|
|
18852
18635
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
18853
18636
|
|
|
18854
|
-
|
|
18855
|
-
declare const
|
|
18856
|
-
|
|
18857
|
-
declare const
|
|
18858
|
-
|
|
18859
|
-
declare const
|
|
18860
|
-
|
|
18861
|
-
declare const
|
|
18862
|
-
|
|
18863
|
-
declare const
|
|
18864
|
-
type _publicBulkCreateRibbonsType = typeof bulkCreateRibbons$1;
|
|
18865
|
-
declare const bulkCreateRibbons: ReturnType<typeof createRESTModule$3<_publicBulkCreateRibbonsType>>;
|
|
18866
|
-
type _publicBulkUpdateRibbonsType = typeof bulkUpdateRibbons$1;
|
|
18867
|
-
declare const bulkUpdateRibbons: ReturnType<typeof createRESTModule$3<_publicBulkUpdateRibbonsType>>;
|
|
18868
|
-
type _publicGetOrCreateRibbonType = typeof getOrCreateRibbon$1;
|
|
18869
|
-
declare const getOrCreateRibbon: ReturnType<typeof createRESTModule$3<_publicGetOrCreateRibbonType>>;
|
|
18870
|
-
type _publicBulkGetOrCreateRibbonsType = typeof bulkGetOrCreateRibbons$1;
|
|
18871
|
-
declare const bulkGetOrCreateRibbons: ReturnType<typeof createRESTModule$3<_publicBulkGetOrCreateRibbonsType>>;
|
|
18872
|
-
type _publicBulkDeleteRibbonsType = typeof bulkDeleteRibbons$1;
|
|
18873
|
-
declare const bulkDeleteRibbons: ReturnType<typeof createRESTModule$3<_publicBulkDeleteRibbonsType>>;
|
|
18637
|
+
declare const createRibbon: BuildRESTFunction<typeof createRibbon$1> & typeof createRibbon$1;
|
|
18638
|
+
declare const getRibbon: BuildRESTFunction<typeof getRibbon$1> & typeof getRibbon$1;
|
|
18639
|
+
declare const updateRibbon: BuildRESTFunction<typeof updateRibbon$1> & typeof updateRibbon$1;
|
|
18640
|
+
declare const deleteRibbon: BuildRESTFunction<typeof deleteRibbon$1> & typeof deleteRibbon$1;
|
|
18641
|
+
declare const queryRibbons: BuildRESTFunction<typeof queryRibbons$1> & typeof queryRibbons$1;
|
|
18642
|
+
declare const bulkCreateRibbons: BuildRESTFunction<typeof bulkCreateRibbons$1> & typeof bulkCreateRibbons$1;
|
|
18643
|
+
declare const bulkUpdateRibbons: BuildRESTFunction<typeof bulkUpdateRibbons$1> & typeof bulkUpdateRibbons$1;
|
|
18644
|
+
declare const getOrCreateRibbon: BuildRESTFunction<typeof getOrCreateRibbon$1> & typeof getOrCreateRibbon$1;
|
|
18645
|
+
declare const bulkGetOrCreateRibbons: BuildRESTFunction<typeof bulkGetOrCreateRibbons$1> & typeof bulkGetOrCreateRibbons$1;
|
|
18646
|
+
declare const bulkDeleteRibbons: BuildRESTFunction<typeof bulkDeleteRibbons$1> & typeof bulkDeleteRibbons$1;
|
|
18874
18647
|
|
|
18875
18648
|
type _publicOnRibbonCreatedType = typeof onRibbonCreated$1;
|
|
18876
18649
|
/** */
|
|
@@ -18937,19 +18710,9 @@ type context$3_UpdateRibbonRequest = UpdateRibbonRequest;
|
|
|
18937
18710
|
type context$3_UpdateRibbonResponse = UpdateRibbonResponse;
|
|
18938
18711
|
type context$3_UpdateRibbonResponseNonNullableFields = UpdateRibbonResponseNonNullableFields;
|
|
18939
18712
|
type context$3_V3BulkRibbonResult = V3BulkRibbonResult;
|
|
18940
|
-
type context$3__publicBulkCreateRibbonsType = _publicBulkCreateRibbonsType;
|
|
18941
|
-
type context$3__publicBulkDeleteRibbonsType = _publicBulkDeleteRibbonsType;
|
|
18942
|
-
type context$3__publicBulkGetOrCreateRibbonsType = _publicBulkGetOrCreateRibbonsType;
|
|
18943
|
-
type context$3__publicBulkUpdateRibbonsType = _publicBulkUpdateRibbonsType;
|
|
18944
|
-
type context$3__publicCreateRibbonType = _publicCreateRibbonType;
|
|
18945
|
-
type context$3__publicDeleteRibbonType = _publicDeleteRibbonType;
|
|
18946
|
-
type context$3__publicGetOrCreateRibbonType = _publicGetOrCreateRibbonType;
|
|
18947
|
-
type context$3__publicGetRibbonType = _publicGetRibbonType;
|
|
18948
18713
|
type context$3__publicOnRibbonCreatedType = _publicOnRibbonCreatedType;
|
|
18949
18714
|
type context$3__publicOnRibbonDeletedType = _publicOnRibbonDeletedType;
|
|
18950
18715
|
type context$3__publicOnRibbonUpdatedType = _publicOnRibbonUpdatedType;
|
|
18951
|
-
type context$3__publicQueryRibbonsType = _publicQueryRibbonsType;
|
|
18952
|
-
type context$3__publicUpdateRibbonType = _publicUpdateRibbonType;
|
|
18953
18716
|
declare const context$3_bulkCreateRibbons: typeof bulkCreateRibbons;
|
|
18954
18717
|
declare const context$3_bulkDeleteRibbons: typeof bulkDeleteRibbons;
|
|
18955
18718
|
declare const context$3_bulkGetOrCreateRibbons: typeof bulkGetOrCreateRibbons;
|
|
@@ -18964,7 +18727,7 @@ declare const context$3_onRibbonUpdated: typeof onRibbonUpdated;
|
|
|
18964
18727
|
declare const context$3_queryRibbons: typeof queryRibbons;
|
|
18965
18728
|
declare const context$3_updateRibbon: typeof updateRibbon;
|
|
18966
18729
|
declare namespace context$3 {
|
|
18967
|
-
export { type ActionEvent$1 as ActionEvent, type App$1 as App, type context$3_ApplicationError as ApplicationError, type BaseEventMetadata$1 as BaseEventMetadata, type context$3_BulkActionMetadata as BulkActionMetadata, type context$3_BulkCreateRibbonsOptions as BulkCreateRibbonsOptions, type context$3_BulkCreateRibbonsRequest as BulkCreateRibbonsRequest, type context$3_BulkCreateRibbonsResponse as BulkCreateRibbonsResponse, type context$3_BulkCreateRibbonsResponseNonNullableFields as BulkCreateRibbonsResponseNonNullableFields, type context$3_BulkDeleteRibbonsRequest as BulkDeleteRibbonsRequest, type context$3_BulkDeleteRibbonsResponse as BulkDeleteRibbonsResponse, type context$3_BulkDeleteRibbonsResponseNonNullableFields as BulkDeleteRibbonsResponseNonNullableFields, type context$3_BulkGetOrCreateRibbonsOptions as BulkGetOrCreateRibbonsOptions, type context$3_BulkGetOrCreateRibbonsRequest as BulkGetOrCreateRibbonsRequest, type context$3_BulkGetOrCreateRibbonsResponse as BulkGetOrCreateRibbonsResponse, type context$3_BulkGetOrCreateRibbonsResponseNonNullableFields as BulkGetOrCreateRibbonsResponseNonNullableFields, type context$3_BulkRibbonResult as BulkRibbonResult, type context$3_BulkUpdateRibbonsOptions as BulkUpdateRibbonsOptions, type context$3_BulkUpdateRibbonsRequest as BulkUpdateRibbonsRequest, type context$3_BulkUpdateRibbonsResponse as BulkUpdateRibbonsResponse, type context$3_BulkUpdateRibbonsResponseNonNullableFields as BulkUpdateRibbonsResponseNonNullableFields, type context$3_CreateRibbonRequest as CreateRibbonRequest, type context$3_CreateRibbonResponse as CreateRibbonResponse, type context$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 context$3_DeleteRibbonRequest as DeleteRibbonRequest, type context$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 context$3_EventMetadata as EventMetadata, type File$1 as File, type context$3_GetOrCreateRibbonOptions as GetOrCreateRibbonOptions, type context$3_GetOrCreateRibbonRequest as GetOrCreateRibbonRequest, type context$3_GetOrCreateRibbonResponse as GetOrCreateRibbonResponse, type context$3_GetOrCreateRibbonResponseNonNullableFields as GetOrCreateRibbonResponseNonNullableFields, type context$3_GetRibbonOptions as GetRibbonOptions, type context$3_GetRibbonRequest as GetRibbonRequest, type context$3_GetRibbonResponse as GetRibbonResponse, type context$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 context$3_ItemMetadata as ItemMetadata, type context$3_MaskedRibbon as MaskedRibbon, type MessageEnvelope$2 as MessageEnvelope, type Page$1 as Page, type context$3_QueryRibbonsOptions as QueryRibbonsOptions, type context$3_QueryRibbonsRequest as QueryRibbonsRequest, type context$3_QueryRibbonsResponse as QueryRibbonsResponse, type context$3_QueryRibbonsResponseNonNullableFields as QueryRibbonsResponseNonNullableFields, context$3_RequestedFields as RequestedFields, type RestoreInfo$1 as RestoreInfo, type context$3_Ribbon as Ribbon, type context$3_RibbonCreatedEnvelope as RibbonCreatedEnvelope, type context$3_RibbonDeletedEnvelope as RibbonDeletedEnvelope, type context$3_RibbonNonNullableFields as RibbonNonNullableFields, type context$3_RibbonUpdatedEnvelope as RibbonUpdatedEnvelope, type context$3_RibbonsQueryBuilder as RibbonsQueryBuilder, type context$3_RibbonsQueryResult as RibbonsQueryResult, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type URI$1 as URI, type context$3_UpdateRibbon as UpdateRibbon, type context$3_UpdateRibbonOptions as UpdateRibbonOptions, type context$3_UpdateRibbonRequest as UpdateRibbonRequest, type context$3_UpdateRibbonResponse as UpdateRibbonResponse, type context$3_UpdateRibbonResponseNonNullableFields as UpdateRibbonResponseNonNullableFields, type context$3_V3BulkRibbonResult as V3BulkRibbonResult, WebhookIdentityType$2 as WebhookIdentityType, type context$
|
|
18730
|
+
export { type ActionEvent$1 as ActionEvent, type App$1 as App, type context$3_ApplicationError as ApplicationError, type BaseEventMetadata$1 as BaseEventMetadata, type context$3_BulkActionMetadata as BulkActionMetadata, type context$3_BulkCreateRibbonsOptions as BulkCreateRibbonsOptions, type context$3_BulkCreateRibbonsRequest as BulkCreateRibbonsRequest, type context$3_BulkCreateRibbonsResponse as BulkCreateRibbonsResponse, type context$3_BulkCreateRibbonsResponseNonNullableFields as BulkCreateRibbonsResponseNonNullableFields, type context$3_BulkDeleteRibbonsRequest as BulkDeleteRibbonsRequest, type context$3_BulkDeleteRibbonsResponse as BulkDeleteRibbonsResponse, type context$3_BulkDeleteRibbonsResponseNonNullableFields as BulkDeleteRibbonsResponseNonNullableFields, type context$3_BulkGetOrCreateRibbonsOptions as BulkGetOrCreateRibbonsOptions, type context$3_BulkGetOrCreateRibbonsRequest as BulkGetOrCreateRibbonsRequest, type context$3_BulkGetOrCreateRibbonsResponse as BulkGetOrCreateRibbonsResponse, type context$3_BulkGetOrCreateRibbonsResponseNonNullableFields as BulkGetOrCreateRibbonsResponseNonNullableFields, type context$3_BulkRibbonResult as BulkRibbonResult, type context$3_BulkUpdateRibbonsOptions as BulkUpdateRibbonsOptions, type context$3_BulkUpdateRibbonsRequest as BulkUpdateRibbonsRequest, type context$3_BulkUpdateRibbonsResponse as BulkUpdateRibbonsResponse, type context$3_BulkUpdateRibbonsResponseNonNullableFields as BulkUpdateRibbonsResponseNonNullableFields, type context$3_CreateRibbonRequest as CreateRibbonRequest, type context$3_CreateRibbonResponse as CreateRibbonResponse, type context$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 context$3_DeleteRibbonRequest as DeleteRibbonRequest, type context$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 context$3_EventMetadata as EventMetadata, type File$1 as File, type context$3_GetOrCreateRibbonOptions as GetOrCreateRibbonOptions, type context$3_GetOrCreateRibbonRequest as GetOrCreateRibbonRequest, type context$3_GetOrCreateRibbonResponse as GetOrCreateRibbonResponse, type context$3_GetOrCreateRibbonResponseNonNullableFields as GetOrCreateRibbonResponseNonNullableFields, type context$3_GetRibbonOptions as GetRibbonOptions, type context$3_GetRibbonRequest as GetRibbonRequest, type context$3_GetRibbonResponse as GetRibbonResponse, type context$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 context$3_ItemMetadata as ItemMetadata, type context$3_MaskedRibbon as MaskedRibbon, type MessageEnvelope$2 as MessageEnvelope, type Page$1 as Page, type context$3_QueryRibbonsOptions as QueryRibbonsOptions, type context$3_QueryRibbonsRequest as QueryRibbonsRequest, type context$3_QueryRibbonsResponse as QueryRibbonsResponse, type context$3_QueryRibbonsResponseNonNullableFields as QueryRibbonsResponseNonNullableFields, context$3_RequestedFields as RequestedFields, type RestoreInfo$1 as RestoreInfo, type context$3_Ribbon as Ribbon, type context$3_RibbonCreatedEnvelope as RibbonCreatedEnvelope, type context$3_RibbonDeletedEnvelope as RibbonDeletedEnvelope, type context$3_RibbonNonNullableFields as RibbonNonNullableFields, type context$3_RibbonUpdatedEnvelope as RibbonUpdatedEnvelope, type context$3_RibbonsQueryBuilder as RibbonsQueryBuilder, type context$3_RibbonsQueryResult as RibbonsQueryResult, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type URI$1 as URI, type context$3_UpdateRibbon as UpdateRibbon, type context$3_UpdateRibbonOptions as UpdateRibbonOptions, type context$3_UpdateRibbonRequest as UpdateRibbonRequest, type context$3_UpdateRibbonResponse as UpdateRibbonResponse, type context$3_UpdateRibbonResponseNonNullableFields as UpdateRibbonResponseNonNullableFields, type context$3_V3BulkRibbonResult as V3BulkRibbonResult, WebhookIdentityType$2 as WebhookIdentityType, type context$3__publicOnRibbonCreatedType as _publicOnRibbonCreatedType, type context$3__publicOnRibbonDeletedType as _publicOnRibbonDeletedType, type context$3__publicOnRibbonUpdatedType as _publicOnRibbonUpdatedType, context$3_bulkCreateRibbons as bulkCreateRibbons, context$3_bulkDeleteRibbons as bulkDeleteRibbons, context$3_bulkGetOrCreateRibbons as bulkGetOrCreateRibbons, context$3_bulkUpdateRibbons as bulkUpdateRibbons, context$3_createRibbon as createRibbon, context$3_deleteRibbon as deleteRibbon, context$3_getOrCreateRibbon as getOrCreateRibbon, context$3_getRibbon as getRibbon, context$3_onRibbonCreated as onRibbonCreated, context$3_onRibbonDeleted as onRibbonDeleted, context$3_onRibbonUpdated as onRibbonUpdated, onRibbonCreated$1 as publicOnRibbonCreated, onRibbonDeleted$1 as publicOnRibbonDeleted, onRibbonUpdated$1 as publicOnRibbonUpdated, context$3_queryRibbons as queryRibbons, context$3_updateRibbon as updateRibbon };
|
|
18968
18731
|
}
|
|
18969
18732
|
|
|
18970
18733
|
/** A location is a physical or virtual site where products are sold. */
|
|
@@ -19013,12 +18776,6 @@ interface StoresLocation {
|
|
|
19013
18776
|
name?: string;
|
|
19014
18777
|
/** Whether the location is the site's default location. */
|
|
19015
18778
|
defaultLocation?: boolean;
|
|
19016
|
-
/**
|
|
19017
|
-
* Custom field data for the stores location object.
|
|
19018
|
-
*
|
|
19019
|
-
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
|
|
19020
|
-
*/
|
|
19021
|
-
extendedFields?: ExtendedFields;
|
|
19022
18779
|
}
|
|
19023
18780
|
declare enum LocationType {
|
|
19024
18781
|
UNKNOWN_LOCATION_TYPE = "UNKNOWN_LOCATION_TYPE",
|
|
@@ -19027,17 +18784,6 @@ declare enum LocationType {
|
|
|
19027
18784
|
/** Physical location like POS */
|
|
19028
18785
|
PHYSICAL = "PHYSICAL"
|
|
19029
18786
|
}
|
|
19030
|
-
interface ExtendedFields {
|
|
19031
|
-
/**
|
|
19032
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
19033
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
19034
|
-
*
|
|
19035
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
19036
|
-
*
|
|
19037
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
19038
|
-
*/
|
|
19039
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
19040
|
-
}
|
|
19041
18787
|
interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
19042
18788
|
/** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
|
|
19043
18789
|
metaSiteId?: string;
|
|
@@ -19437,12 +19183,8 @@ interface QueryStoresLocationsSignature {
|
|
|
19437
19183
|
(): StoresLocationsQueryBuilder;
|
|
19438
19184
|
}
|
|
19439
19185
|
|
|
19440
|
-
declare
|
|
19441
|
-
|
|
19442
|
-
type _publicGetStoresLocationType = typeof getStoresLocation$1;
|
|
19443
|
-
declare const getStoresLocation: ReturnType<typeof createRESTModule$2<_publicGetStoresLocationType>>;
|
|
19444
|
-
type _publicQueryStoresLocationsType = typeof queryStoresLocations$1;
|
|
19445
|
-
declare const queryStoresLocations: ReturnType<typeof createRESTModule$2<_publicQueryStoresLocationsType>>;
|
|
19186
|
+
declare const getStoresLocation: BuildRESTFunction<typeof getStoresLocation$1> & typeof getStoresLocation$1;
|
|
19187
|
+
declare const queryStoresLocations: BuildRESTFunction<typeof queryStoresLocations$1> & typeof queryStoresLocations$1;
|
|
19446
19188
|
|
|
19447
19189
|
type context$2_ActionEvent = ActionEvent;
|
|
19448
19190
|
type context$2_App = App;
|
|
@@ -19461,7 +19203,6 @@ type context$2_Empty = Empty;
|
|
|
19461
19203
|
type context$2_EntityCreatedEvent = EntityCreatedEvent;
|
|
19462
19204
|
type context$2_EntityDeletedEvent = EntityDeletedEvent;
|
|
19463
19205
|
type context$2_EntityUpdatedEvent = EntityUpdatedEvent;
|
|
19464
|
-
type context$2_ExtendedFields = ExtendedFields;
|
|
19465
19206
|
type context$2_File = File;
|
|
19466
19207
|
type context$2_GetOrCreateDefaultStoresLocationRequest = GetOrCreateDefaultStoresLocationRequest;
|
|
19467
19208
|
type context$2_GetOrCreateDefaultStoresLocationResponse = GetOrCreateDefaultStoresLocationResponse;
|
|
@@ -19487,12 +19228,10 @@ type context$2_StoresLocationsQueryResult = StoresLocationsQueryResult;
|
|
|
19487
19228
|
type context$2_URI = URI;
|
|
19488
19229
|
type context$2_UpdateStoresLocationRequest = UpdateStoresLocationRequest;
|
|
19489
19230
|
type context$2_UpdateStoresLocationResponse = UpdateStoresLocationResponse;
|
|
19490
|
-
type context$2__publicGetStoresLocationType = _publicGetStoresLocationType;
|
|
19491
|
-
type context$2__publicQueryStoresLocationsType = _publicQueryStoresLocationsType;
|
|
19492
19231
|
declare const context$2_getStoresLocation: typeof getStoresLocation;
|
|
19493
19232
|
declare const context$2_queryStoresLocations: typeof queryStoresLocations;
|
|
19494
19233
|
declare namespace context$2 {
|
|
19495
|
-
export { type context$2_ActionEvent as ActionEvent, type context$2_App as App, type context$2_CreateStoresLocationRequest as CreateStoresLocationRequest, type context$2_CreateStoresLocationResponse as CreateStoresLocationResponse, type context$2_CursorPaging as CursorPaging, type context$2_CursorPagingMetadata as CursorPagingMetadata, type context$2_CursorQuery as CursorQuery, type context$2_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context$2_Cursors as Cursors, type context$2_DeleteStoresLocationRequest as DeleteStoresLocationRequest, type context$2_DeleteStoresLocationResponse as DeleteStoresLocationResponse, type context$2_DomainEvent as DomainEvent, type context$2_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$2_Empty as Empty, type context$2_EntityCreatedEvent as EntityCreatedEvent, type context$2_EntityDeletedEvent as EntityDeletedEvent, type context$2_EntityUpdatedEvent as EntityUpdatedEvent, type context$
|
|
19234
|
+
export { type context$2_ActionEvent as ActionEvent, type context$2_App as App, type context$2_CreateStoresLocationRequest as CreateStoresLocationRequest, type context$2_CreateStoresLocationResponse as CreateStoresLocationResponse, type context$2_CursorPaging as CursorPaging, type context$2_CursorPagingMetadata as CursorPagingMetadata, type context$2_CursorQuery as CursorQuery, type context$2_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context$2_Cursors as Cursors, type context$2_DeleteStoresLocationRequest as DeleteStoresLocationRequest, type context$2_DeleteStoresLocationResponse as DeleteStoresLocationResponse, type context$2_DomainEvent as DomainEvent, type context$2_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$2_Empty as Empty, type context$2_EntityCreatedEvent as EntityCreatedEvent, type context$2_EntityDeletedEvent as EntityDeletedEvent, type context$2_EntityUpdatedEvent as EntityUpdatedEvent, type context$2_File as File, type context$2_GetOrCreateDefaultStoresLocationRequest as GetOrCreateDefaultStoresLocationRequest, type context$2_GetOrCreateDefaultStoresLocationResponse as GetOrCreateDefaultStoresLocationResponse, type context$2_GetStoresLocationRequest as GetStoresLocationRequest, type context$2_GetStoresLocationResponse as GetStoresLocationResponse, type context$2_GetStoresLocationResponseNonNullableFields as GetStoresLocationResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$2_InvalidateCache as InvalidateCache, type context$2_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, context$2_LocationType as LocationType, type MessageEnvelope$1 as MessageEnvelope, type context$2_Page as Page, type context$2_QueryStoresLocationsRequest as QueryStoresLocationsRequest, type context$2_QueryStoresLocationsResponse as QueryStoresLocationsResponse, type context$2_QueryStoresLocationsResponseNonNullableFields as QueryStoresLocationsResponseNonNullableFields, type context$2_RestoreInfo as RestoreInfo, context$2_SortOrder as SortOrder, type context$2_Sorting as Sorting, type context$2_StoresLocation as StoresLocation, type context$2_StoresLocationNonNullableFields as StoresLocationNonNullableFields, type context$2_StoresLocationsQueryBuilder as StoresLocationsQueryBuilder, type context$2_StoresLocationsQueryResult as StoresLocationsQueryResult, type context$2_URI as URI, type context$2_UpdateStoresLocationRequest as UpdateStoresLocationRequest, type context$2_UpdateStoresLocationResponse as UpdateStoresLocationResponse, WebhookIdentityType$1 as WebhookIdentityType, context$2_getStoresLocation as getStoresLocation, context$2_queryStoresLocations as queryStoresLocations };
|
|
19496
19235
|
}
|
|
19497
19236
|
|
|
19498
19237
|
interface SubscriptionOption {
|
|
@@ -20035,32 +19774,18 @@ interface GetOneTimePurchasesStatusSignature {
|
|
|
20035
19774
|
(productId: string): Promise<GetOneTimePurchasesStatusResponse & GetOneTimePurchasesStatusResponseNonNullableFields>;
|
|
20036
19775
|
}
|
|
20037
19776
|
|
|
20038
|
-
declare
|
|
20039
|
-
|
|
20040
|
-
|
|
20041
|
-
declare const
|
|
20042
|
-
|
|
20043
|
-
declare const
|
|
20044
|
-
|
|
20045
|
-
declare const
|
|
20046
|
-
|
|
20047
|
-
declare const
|
|
20048
|
-
|
|
20049
|
-
declare const
|
|
20050
|
-
type _publicBulkDeleteSubscriptionOptionsType = typeof bulkDeleteSubscriptionOptions$1;
|
|
20051
|
-
declare const bulkDeleteSubscriptionOptions: ReturnType<typeof createRESTModule$1<_publicBulkDeleteSubscriptionOptionsType>>;
|
|
20052
|
-
type _publicAssignSubscriptionOptionsToProductType = typeof assignSubscriptionOptionsToProduct$1;
|
|
20053
|
-
declare const assignSubscriptionOptionsToProduct: ReturnType<typeof createRESTModule$1<_publicAssignSubscriptionOptionsToProductType>>;
|
|
20054
|
-
type _publicAllowOneTimePurchasesType = typeof allowOneTimePurchases$1;
|
|
20055
|
-
declare const allowOneTimePurchases: ReturnType<typeof createRESTModule$1<_publicAllowOneTimePurchasesType>>;
|
|
20056
|
-
type _publicGetSubscriptionOptionType = typeof getSubscriptionOption$1;
|
|
20057
|
-
declare const getSubscriptionOption: ReturnType<typeof createRESTModule$1<_publicGetSubscriptionOptionType>>;
|
|
20058
|
-
type _publicGetSubscriptionOptionsForProductType = typeof getSubscriptionOptionsForProduct$1;
|
|
20059
|
-
declare const getSubscriptionOptionsForProduct: ReturnType<typeof createRESTModule$1<_publicGetSubscriptionOptionsForProductType>>;
|
|
20060
|
-
type _publicGetProductIdsForSubscriptionOptionType = typeof getProductIdsForSubscriptionOption$1;
|
|
20061
|
-
declare const getProductIdsForSubscriptionOption: ReturnType<typeof createRESTModule$1<_publicGetProductIdsForSubscriptionOptionType>>;
|
|
20062
|
-
type _publicGetOneTimePurchasesStatusType = typeof getOneTimePurchasesStatus$1;
|
|
20063
|
-
declare const getOneTimePurchasesStatus: ReturnType<typeof createRESTModule$1<_publicGetOneTimePurchasesStatusType>>;
|
|
19777
|
+
declare const createSubscriptionOption: BuildRESTFunction<typeof createSubscriptionOption$1> & typeof createSubscriptionOption$1;
|
|
19778
|
+
declare const updateSubscriptionOption: BuildRESTFunction<typeof updateSubscriptionOption$1> & typeof updateSubscriptionOption$1;
|
|
19779
|
+
declare const deleteSubscriptionOption: BuildRESTFunction<typeof deleteSubscriptionOption$1> & typeof deleteSubscriptionOption$1;
|
|
19780
|
+
declare const bulkCreateSubscriptionOptions: BuildRESTFunction<typeof bulkCreateSubscriptionOptions$1> & typeof bulkCreateSubscriptionOptions$1;
|
|
19781
|
+
declare const bulkUpdateSubscriptionOptions: BuildRESTFunction<typeof bulkUpdateSubscriptionOptions$1> & typeof bulkUpdateSubscriptionOptions$1;
|
|
19782
|
+
declare const bulkDeleteSubscriptionOptions: BuildRESTFunction<typeof bulkDeleteSubscriptionOptions$1> & typeof bulkDeleteSubscriptionOptions$1;
|
|
19783
|
+
declare const assignSubscriptionOptionsToProduct: BuildRESTFunction<typeof assignSubscriptionOptionsToProduct$1> & typeof assignSubscriptionOptionsToProduct$1;
|
|
19784
|
+
declare const allowOneTimePurchases: BuildRESTFunction<typeof allowOneTimePurchases$1> & typeof allowOneTimePurchases$1;
|
|
19785
|
+
declare const getSubscriptionOption: BuildRESTFunction<typeof getSubscriptionOption$1> & typeof getSubscriptionOption$1;
|
|
19786
|
+
declare const getSubscriptionOptionsForProduct: BuildRESTFunction<typeof getSubscriptionOptionsForProduct$1> & typeof getSubscriptionOptionsForProduct$1;
|
|
19787
|
+
declare const getProductIdsForSubscriptionOption: BuildRESTFunction<typeof getProductIdsForSubscriptionOption$1> & typeof getProductIdsForSubscriptionOption$1;
|
|
19788
|
+
declare const getOneTimePurchasesStatus: BuildRESTFunction<typeof getOneTimePurchasesStatus$1> & typeof getOneTimePurchasesStatus$1;
|
|
20064
19789
|
|
|
20065
19790
|
type context$1_AllowOneTimePurchasesRequest = AllowOneTimePurchasesRequest;
|
|
20066
19791
|
type context$1_AllowOneTimePurchasesResponse = AllowOneTimePurchasesResponse;
|
|
@@ -20119,18 +19844,6 @@ type context$1_UpdateSubscriptionOption = UpdateSubscriptionOption;
|
|
|
20119
19844
|
type context$1_UpdateSubscriptionOptionRequest = UpdateSubscriptionOptionRequest;
|
|
20120
19845
|
type context$1_UpdateSubscriptionOptionResponse = UpdateSubscriptionOptionResponse;
|
|
20121
19846
|
type context$1_UpdateSubscriptionOptionResponseNonNullableFields = UpdateSubscriptionOptionResponseNonNullableFields;
|
|
20122
|
-
type context$1__publicAllowOneTimePurchasesType = _publicAllowOneTimePurchasesType;
|
|
20123
|
-
type context$1__publicAssignSubscriptionOptionsToProductType = _publicAssignSubscriptionOptionsToProductType;
|
|
20124
|
-
type context$1__publicBulkCreateSubscriptionOptionsType = _publicBulkCreateSubscriptionOptionsType;
|
|
20125
|
-
type context$1__publicBulkDeleteSubscriptionOptionsType = _publicBulkDeleteSubscriptionOptionsType;
|
|
20126
|
-
type context$1__publicBulkUpdateSubscriptionOptionsType = _publicBulkUpdateSubscriptionOptionsType;
|
|
20127
|
-
type context$1__publicCreateSubscriptionOptionType = _publicCreateSubscriptionOptionType;
|
|
20128
|
-
type context$1__publicDeleteSubscriptionOptionType = _publicDeleteSubscriptionOptionType;
|
|
20129
|
-
type context$1__publicGetOneTimePurchasesStatusType = _publicGetOneTimePurchasesStatusType;
|
|
20130
|
-
type context$1__publicGetProductIdsForSubscriptionOptionType = _publicGetProductIdsForSubscriptionOptionType;
|
|
20131
|
-
type context$1__publicGetSubscriptionOptionType = _publicGetSubscriptionOptionType;
|
|
20132
|
-
type context$1__publicGetSubscriptionOptionsForProductType = _publicGetSubscriptionOptionsForProductType;
|
|
20133
|
-
type context$1__publicUpdateSubscriptionOptionType = _publicUpdateSubscriptionOptionType;
|
|
20134
19847
|
declare const context$1_allowOneTimePurchases: typeof allowOneTimePurchases;
|
|
20135
19848
|
declare const context$1_assignSubscriptionOptionsToProduct: typeof assignSubscriptionOptionsToProduct;
|
|
20136
19849
|
declare const context$1_bulkCreateSubscriptionOptions: typeof bulkCreateSubscriptionOptions;
|
|
@@ -20144,7 +19857,7 @@ declare const context$1_getSubscriptionOption: typeof getSubscriptionOption;
|
|
|
20144
19857
|
declare const context$1_getSubscriptionOptionsForProduct: typeof getSubscriptionOptionsForProduct;
|
|
20145
19858
|
declare const context$1_updateSubscriptionOption: typeof updateSubscriptionOption;
|
|
20146
19859
|
declare namespace context$1 {
|
|
20147
|
-
export { type context$1_AllowOneTimePurchasesRequest as AllowOneTimePurchasesRequest, type context$1_AllowOneTimePurchasesResponse as AllowOneTimePurchasesResponse, type context$1_AssignSubscriptionOptionsToProductOptions as AssignSubscriptionOptionsToProductOptions, type context$1_AssignSubscriptionOptionsToProductRequest as AssignSubscriptionOptionsToProductRequest, type context$1_AssignSubscriptionOptionsToProductResponse as AssignSubscriptionOptionsToProductResponse, type context$1_BulkCalculatePricesRequest as BulkCalculatePricesRequest, type context$1_BulkCalculatePricesRequestItem as BulkCalculatePricesRequestItem, type context$1_BulkCalculatePricesRequestV2 as BulkCalculatePricesRequestV2, type context$1_BulkCalculatePricesResponse as BulkCalculatePricesResponse, type context$1_BulkCalculatePricesResponseItem as BulkCalculatePricesResponseItem, type context$1_BulkCalculatePricesResponseV2 as BulkCalculatePricesResponseV2, type context$1_BulkCreateSubscriptionOptionsRequest as BulkCreateSubscriptionOptionsRequest, type context$1_BulkCreateSubscriptionOptionsResponse as BulkCreateSubscriptionOptionsResponse, type context$1_BulkCreateSubscriptionOptionsResponseNonNullableFields as BulkCreateSubscriptionOptionsResponseNonNullableFields, type context$1_BulkDeleteSubscriptionOptionsRequest as BulkDeleteSubscriptionOptionsRequest, type context$1_BulkDeleteSubscriptionOptionsResponse as BulkDeleteSubscriptionOptionsResponse, type context$1_BulkUpdateSubscriptionOptionsRequest as BulkUpdateSubscriptionOptionsRequest, type context$1_BulkUpdateSubscriptionOptionsResponse as BulkUpdateSubscriptionOptionsResponse, type context$1_BulkUpdateSubscriptionOptionsResponseNonNullableFields as BulkUpdateSubscriptionOptionsResponseNonNullableFields, type context$1_CalculatePricesRequest as CalculatePricesRequest, type context$1_CalculatePricesResponse as CalculatePricesResponse, type context$1_CreateSubscriptionOptionRequest as CreateSubscriptionOptionRequest, type context$1_CreateSubscriptionOptionResponse as CreateSubscriptionOptionResponse, type context$1_CreateSubscriptionOptionResponseNonNullableFields as CreateSubscriptionOptionResponseNonNullableFields, type context$1_DeleteSubscriptionOptionRequest as DeleteSubscriptionOptionRequest, type context$1_DeleteSubscriptionOptionResponse as DeleteSubscriptionOptionResponse, type context$1_Discount as Discount, context$1_DiscountType as DiscountType, type context$1_GetOneTimePurchasesStatusRequest as GetOneTimePurchasesStatusRequest, type context$1_GetOneTimePurchasesStatusResponse as GetOneTimePurchasesStatusResponse, type context$1_GetOneTimePurchasesStatusResponseNonNullableFields as GetOneTimePurchasesStatusResponseNonNullableFields, type context$1_GetProductIdsForSubscriptionOptionOptions as GetProductIdsForSubscriptionOptionOptions, type context$1_GetProductIdsForSubscriptionOptionRequest as GetProductIdsForSubscriptionOptionRequest, type context$1_GetProductIdsForSubscriptionOptionResponse as GetProductIdsForSubscriptionOptionResponse, type context$1_GetProductIdsForSubscriptionOptionResponseNonNullableFields as GetProductIdsForSubscriptionOptionResponseNonNullableFields, type context$1_GetSubscriptionOptionRequest as GetSubscriptionOptionRequest, type context$1_GetSubscriptionOptionResponse as GetSubscriptionOptionResponse, type context$1_GetSubscriptionOptionResponseNonNullableFields as GetSubscriptionOptionResponseNonNullableFields, type context$1_GetSubscriptionOptionsForProductOptions as GetSubscriptionOptionsForProductOptions, type context$1_GetSubscriptionOptionsForProductRequest as GetSubscriptionOptionsForProductRequest, type context$1_GetSubscriptionOptionsForProductResponse as GetSubscriptionOptionsForProductResponse, type context$1_GetSubscriptionOptionsForProductResponseNonNullableFields as GetSubscriptionOptionsForProductResponseNonNullableFields, type context$1_ListSubscriptionOptionsRequest as ListSubscriptionOptionsRequest, type context$1_ListSubscriptionOptionsResponse as ListSubscriptionOptionsResponse, type Paging$1 as Paging, type PagingMetadata$1 as PagingMetadata, context$1_SubscriptionFrequency as SubscriptionFrequency, type context$1_SubscriptionOption as SubscriptionOption, type context$1_SubscriptionOptionInProduct as SubscriptionOptionInProduct, type context$1_SubscriptionOptionNonNullableFields as SubscriptionOptionNonNullableFields, type context$1_SubscriptionOptionPriceData as SubscriptionOptionPriceData, type context$1_SubscriptionOptionPrices as SubscriptionOptionPrices, type context$1_SubscriptionSettings as SubscriptionSettings, type context$1_UpdateSubscriptionOption as UpdateSubscriptionOption, type context$1_UpdateSubscriptionOptionRequest as UpdateSubscriptionOptionRequest, type context$1_UpdateSubscriptionOptionResponse as UpdateSubscriptionOptionResponse, type context$1_UpdateSubscriptionOptionResponseNonNullableFields as UpdateSubscriptionOptionResponseNonNullableFields,
|
|
19860
|
+
export { type context$1_AllowOneTimePurchasesRequest as AllowOneTimePurchasesRequest, type context$1_AllowOneTimePurchasesResponse as AllowOneTimePurchasesResponse, type context$1_AssignSubscriptionOptionsToProductOptions as AssignSubscriptionOptionsToProductOptions, type context$1_AssignSubscriptionOptionsToProductRequest as AssignSubscriptionOptionsToProductRequest, type context$1_AssignSubscriptionOptionsToProductResponse as AssignSubscriptionOptionsToProductResponse, type context$1_BulkCalculatePricesRequest as BulkCalculatePricesRequest, type context$1_BulkCalculatePricesRequestItem as BulkCalculatePricesRequestItem, type context$1_BulkCalculatePricesRequestV2 as BulkCalculatePricesRequestV2, type context$1_BulkCalculatePricesResponse as BulkCalculatePricesResponse, type context$1_BulkCalculatePricesResponseItem as BulkCalculatePricesResponseItem, type context$1_BulkCalculatePricesResponseV2 as BulkCalculatePricesResponseV2, type context$1_BulkCreateSubscriptionOptionsRequest as BulkCreateSubscriptionOptionsRequest, type context$1_BulkCreateSubscriptionOptionsResponse as BulkCreateSubscriptionOptionsResponse, type context$1_BulkCreateSubscriptionOptionsResponseNonNullableFields as BulkCreateSubscriptionOptionsResponseNonNullableFields, type context$1_BulkDeleteSubscriptionOptionsRequest as BulkDeleteSubscriptionOptionsRequest, type context$1_BulkDeleteSubscriptionOptionsResponse as BulkDeleteSubscriptionOptionsResponse, type context$1_BulkUpdateSubscriptionOptionsRequest as BulkUpdateSubscriptionOptionsRequest, type context$1_BulkUpdateSubscriptionOptionsResponse as BulkUpdateSubscriptionOptionsResponse, type context$1_BulkUpdateSubscriptionOptionsResponseNonNullableFields as BulkUpdateSubscriptionOptionsResponseNonNullableFields, type context$1_CalculatePricesRequest as CalculatePricesRequest, type context$1_CalculatePricesResponse as CalculatePricesResponse, type context$1_CreateSubscriptionOptionRequest as CreateSubscriptionOptionRequest, type context$1_CreateSubscriptionOptionResponse as CreateSubscriptionOptionResponse, type context$1_CreateSubscriptionOptionResponseNonNullableFields as CreateSubscriptionOptionResponseNonNullableFields, type context$1_DeleteSubscriptionOptionRequest as DeleteSubscriptionOptionRequest, type context$1_DeleteSubscriptionOptionResponse as DeleteSubscriptionOptionResponse, type context$1_Discount as Discount, context$1_DiscountType as DiscountType, type context$1_GetOneTimePurchasesStatusRequest as GetOneTimePurchasesStatusRequest, type context$1_GetOneTimePurchasesStatusResponse as GetOneTimePurchasesStatusResponse, type context$1_GetOneTimePurchasesStatusResponseNonNullableFields as GetOneTimePurchasesStatusResponseNonNullableFields, type context$1_GetProductIdsForSubscriptionOptionOptions as GetProductIdsForSubscriptionOptionOptions, type context$1_GetProductIdsForSubscriptionOptionRequest as GetProductIdsForSubscriptionOptionRequest, type context$1_GetProductIdsForSubscriptionOptionResponse as GetProductIdsForSubscriptionOptionResponse, type context$1_GetProductIdsForSubscriptionOptionResponseNonNullableFields as GetProductIdsForSubscriptionOptionResponseNonNullableFields, type context$1_GetSubscriptionOptionRequest as GetSubscriptionOptionRequest, type context$1_GetSubscriptionOptionResponse as GetSubscriptionOptionResponse, type context$1_GetSubscriptionOptionResponseNonNullableFields as GetSubscriptionOptionResponseNonNullableFields, type context$1_GetSubscriptionOptionsForProductOptions as GetSubscriptionOptionsForProductOptions, type context$1_GetSubscriptionOptionsForProductRequest as GetSubscriptionOptionsForProductRequest, type context$1_GetSubscriptionOptionsForProductResponse as GetSubscriptionOptionsForProductResponse, type context$1_GetSubscriptionOptionsForProductResponseNonNullableFields as GetSubscriptionOptionsForProductResponseNonNullableFields, type context$1_ListSubscriptionOptionsRequest as ListSubscriptionOptionsRequest, type context$1_ListSubscriptionOptionsResponse as ListSubscriptionOptionsResponse, type Paging$1 as Paging, type PagingMetadata$1 as PagingMetadata, context$1_SubscriptionFrequency as SubscriptionFrequency, type context$1_SubscriptionOption as SubscriptionOption, type context$1_SubscriptionOptionInProduct as SubscriptionOptionInProduct, type context$1_SubscriptionOptionNonNullableFields as SubscriptionOptionNonNullableFields, type context$1_SubscriptionOptionPriceData as SubscriptionOptionPriceData, type context$1_SubscriptionOptionPrices as SubscriptionOptionPrices, type context$1_SubscriptionSettings as SubscriptionSettings, type context$1_UpdateSubscriptionOption as UpdateSubscriptionOption, type context$1_UpdateSubscriptionOptionRequest as UpdateSubscriptionOptionRequest, type context$1_UpdateSubscriptionOptionResponse as UpdateSubscriptionOptionResponse, type context$1_UpdateSubscriptionOptionResponseNonNullableFields as UpdateSubscriptionOptionResponseNonNullableFields, context$1_allowOneTimePurchases as allowOneTimePurchases, context$1_assignSubscriptionOptionsToProduct as assignSubscriptionOptionsToProduct, context$1_bulkCreateSubscriptionOptions as bulkCreateSubscriptionOptions, context$1_bulkDeleteSubscriptionOptions as bulkDeleteSubscriptionOptions, context$1_bulkUpdateSubscriptionOptions as bulkUpdateSubscriptionOptions, context$1_createSubscriptionOption as createSubscriptionOption, context$1_deleteSubscriptionOption as deleteSubscriptionOption, context$1_getOneTimePurchasesStatus as getOneTimePurchasesStatus, context$1_getProductIdsForSubscriptionOption as getProductIdsForSubscriptionOption, context$1_getSubscriptionOption as getSubscriptionOption, context$1_getSubscriptionOptionsForProduct as getSubscriptionOptionsForProduct, context$1_updateSubscriptionOption as updateSubscriptionOption };
|
|
20148
19861
|
}
|
|
20149
19862
|
|
|
20150
19863
|
interface InventoryItemV2 {
|
|
@@ -20629,20 +20342,13 @@ interface IncrementInventorySignature {
|
|
|
20629
20342
|
declare const onInventoryItemChanged$1: EventDefinition<InventoryItemChangedEnvelope, "com.wix.ecommerce.inventory.api.v1.InventoryItemChanged">;
|
|
20630
20343
|
declare const onInventoryVariantsChanged$1: EventDefinition<InventoryVariantsChangedEnvelope, "com.wix.ecommerce.inventory.api.v1.InventoryVariantsChanged">;
|
|
20631
20344
|
|
|
20632
|
-
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
20633
|
-
|
|
20634
20345
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
20635
20346
|
|
|
20636
|
-
|
|
20637
|
-
declare const
|
|
20638
|
-
|
|
20639
|
-
declare const
|
|
20640
|
-
|
|
20641
|
-
declare const updateInventoryVariants: ReturnType<typeof createRESTModule<_publicUpdateInventoryVariantsType>>;
|
|
20642
|
-
type _publicDecrementInventoryType = typeof decrementInventory$1;
|
|
20643
|
-
declare const decrementInventory: ReturnType<typeof createRESTModule<_publicDecrementInventoryType>>;
|
|
20644
|
-
type _publicIncrementInventoryType = typeof incrementInventory$1;
|
|
20645
|
-
declare const incrementInventory: ReturnType<typeof createRESTModule<_publicIncrementInventoryType>>;
|
|
20347
|
+
declare const getInventoryVariants: BuildRESTFunction<typeof getInventoryVariants$1> & typeof getInventoryVariants$1;
|
|
20348
|
+
declare const queryInventory: BuildRESTFunction<typeof queryInventory$1> & typeof queryInventory$1;
|
|
20349
|
+
declare const updateInventoryVariants: BuildRESTFunction<typeof updateInventoryVariants$1> & typeof updateInventoryVariants$1;
|
|
20350
|
+
declare const decrementInventory: BuildRESTFunction<typeof decrementInventory$1> & typeof decrementInventory$1;
|
|
20351
|
+
declare const incrementInventory: BuildRESTFunction<typeof incrementInventory$1> & typeof incrementInventory$1;
|
|
20646
20352
|
|
|
20647
20353
|
type _publicOnInventoryItemChangedType = typeof onInventoryItemChanged$1;
|
|
20648
20354
|
/**
|
|
@@ -20703,13 +20409,8 @@ type context_UpdateInventoryVariantsRequest = UpdateInventoryVariantsRequest;
|
|
|
20703
20409
|
type context_UpdateInventoryVariantsResponse = UpdateInventoryVariantsResponse;
|
|
20704
20410
|
type context_WebhookIdentityType = WebhookIdentityType;
|
|
20705
20411
|
declare const context_WebhookIdentityType: typeof WebhookIdentityType;
|
|
20706
|
-
type context__publicDecrementInventoryType = _publicDecrementInventoryType;
|
|
20707
|
-
type context__publicGetInventoryVariantsType = _publicGetInventoryVariantsType;
|
|
20708
|
-
type context__publicIncrementInventoryType = _publicIncrementInventoryType;
|
|
20709
20412
|
type context__publicOnInventoryItemChangedType = _publicOnInventoryItemChangedType;
|
|
20710
20413
|
type context__publicOnInventoryVariantsChangedType = _publicOnInventoryVariantsChangedType;
|
|
20711
|
-
type context__publicQueryInventoryType = _publicQueryInventoryType;
|
|
20712
|
-
type context__publicUpdateInventoryVariantsType = _publicUpdateInventoryVariantsType;
|
|
20713
20414
|
declare const context_decrementInventory: typeof decrementInventory;
|
|
20714
20415
|
declare const context_getInventoryVariants: typeof getInventoryVariants;
|
|
20715
20416
|
declare const context_incrementInventory: typeof incrementInventory;
|
|
@@ -20718,7 +20419,7 @@ declare const context_onInventoryVariantsChanged: typeof onInventoryVariantsChan
|
|
|
20718
20419
|
declare const context_queryInventory: typeof queryInventory;
|
|
20719
20420
|
declare const context_updateInventoryVariants: typeof updateInventoryVariants;
|
|
20720
20421
|
declare namespace context {
|
|
20721
|
-
export { type context_BaseEventMetadata as BaseEventMetadata, type context_BulkUpdateInventoryItemsRequest as BulkUpdateInventoryItemsRequest, type context_BulkUpdateInventoryItemsResponse as BulkUpdateInventoryItemsResponse, type context_BulkUpdateInventoryVariantsRequest as BulkUpdateInventoryVariantsRequest, type context_BulkUpdateInventoryVariantsRequestActionOneOf as BulkUpdateInventoryVariantsRequestActionOneOf, type context_BulkUpdateInventoryVariantsResponse as BulkUpdateInventoryVariantsResponse, type context_ChangedInventoryVariant as ChangedInventoryVariant, type context_ChangedInventoryVariantData as ChangedInventoryVariantData, type context_DecrementData as DecrementData, type context_DecrementDataIdOneOf as DecrementDataIdOneOf, type context_DecrementInventoryRequest as DecrementInventoryRequest, type context_DecrementInventoryResponse as DecrementInventoryResponse, type context_GetInventoryItemsRequest as GetInventoryItemsRequest, type context_GetInventoryItemsResponse as GetInventoryItemsResponse, type context_GetInventoryVariantsOptions as GetInventoryVariantsOptions, type context_GetInventoryVariantsRequest as GetInventoryVariantsRequest, type context_GetInventoryVariantsRequestIdOneOf as GetInventoryVariantsRequestIdOneOf, type context_GetInventoryVariantsResponse as GetInventoryVariantsResponse, type context_GetInventoryVariantsResponseNonNullableFields as GetInventoryVariantsResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_IncrementData as IncrementData, type context_IncrementDataIdOneOf as IncrementDataIdOneOf, type context_IncrementInventoryRequest as IncrementInventoryRequest, type context_IncrementInventoryResponse as IncrementInventoryResponse, type context_InventoryItemChanged as InventoryItemChanged, type context_InventoryItemChangedEnvelope as InventoryItemChangedEnvelope, type context_InventoryItemV2 as InventoryItemV2, type context_InventoryVariantV2 as InventoryVariantV2, type context_InventoryVariantsChanged as InventoryVariantsChanged, type context_InventoryVariantsChangedEnvelope as InventoryVariantsChangedEnvelope, type context_MessageEnvelope as MessageEnvelope, type context_Paging as Paging, type context_PagingMetadata as PagingMetadata, type context_PreorderInfo as PreorderInfo, type context_Query as Query, type context_QueryInventoryOptions as QueryInventoryOptions, type context_QueryInventoryRequest as QueryInventoryRequest, type context_QueryInventoryResponse as QueryInventoryResponse, type context_QueryInventoryResponseNonNullableFields as QueryInventoryResponseNonNullableFields, context_ReasonType as ReasonType, type context_UpdateInventoryVariantsInventoryItem as UpdateInventoryVariantsInventoryItem, type context_UpdateInventoryVariantsRequest as UpdateInventoryVariantsRequest, type context_UpdateInventoryVariantsResponse as UpdateInventoryVariantsResponse, context_WebhookIdentityType as WebhookIdentityType, type
|
|
20422
|
+
export { type context_BaseEventMetadata as BaseEventMetadata, type context_BulkUpdateInventoryItemsRequest as BulkUpdateInventoryItemsRequest, type context_BulkUpdateInventoryItemsResponse as BulkUpdateInventoryItemsResponse, type context_BulkUpdateInventoryVariantsRequest as BulkUpdateInventoryVariantsRequest, type context_BulkUpdateInventoryVariantsRequestActionOneOf as BulkUpdateInventoryVariantsRequestActionOneOf, type context_BulkUpdateInventoryVariantsResponse as BulkUpdateInventoryVariantsResponse, type context_ChangedInventoryVariant as ChangedInventoryVariant, type context_ChangedInventoryVariantData as ChangedInventoryVariantData, type context_DecrementData as DecrementData, type context_DecrementDataIdOneOf as DecrementDataIdOneOf, type context_DecrementInventoryRequest as DecrementInventoryRequest, type context_DecrementInventoryResponse as DecrementInventoryResponse, type context_GetInventoryItemsRequest as GetInventoryItemsRequest, type context_GetInventoryItemsResponse as GetInventoryItemsResponse, type context_GetInventoryVariantsOptions as GetInventoryVariantsOptions, type context_GetInventoryVariantsRequest as GetInventoryVariantsRequest, type context_GetInventoryVariantsRequestIdOneOf as GetInventoryVariantsRequestIdOneOf, type context_GetInventoryVariantsResponse as GetInventoryVariantsResponse, type context_GetInventoryVariantsResponseNonNullableFields as GetInventoryVariantsResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_IncrementData as IncrementData, type context_IncrementDataIdOneOf as IncrementDataIdOneOf, type context_IncrementInventoryRequest as IncrementInventoryRequest, type context_IncrementInventoryResponse as IncrementInventoryResponse, type context_InventoryItemChanged as InventoryItemChanged, type context_InventoryItemChangedEnvelope as InventoryItemChangedEnvelope, type context_InventoryItemV2 as InventoryItemV2, type context_InventoryVariantV2 as InventoryVariantV2, type context_InventoryVariantsChanged as InventoryVariantsChanged, type context_InventoryVariantsChangedEnvelope as InventoryVariantsChangedEnvelope, type context_MessageEnvelope as MessageEnvelope, type context_Paging as Paging, type context_PagingMetadata as PagingMetadata, type context_PreorderInfo as PreorderInfo, type context_Query as Query, type context_QueryInventoryOptions as QueryInventoryOptions, type context_QueryInventoryRequest as QueryInventoryRequest, type context_QueryInventoryResponse as QueryInventoryResponse, type context_QueryInventoryResponseNonNullableFields as QueryInventoryResponseNonNullableFields, context_ReasonType as ReasonType, type context_UpdateInventoryVariantsInventoryItem as UpdateInventoryVariantsInventoryItem, type context_UpdateInventoryVariantsRequest as UpdateInventoryVariantsRequest, type context_UpdateInventoryVariantsResponse as UpdateInventoryVariantsResponse, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnInventoryItemChangedType as _publicOnInventoryItemChangedType, type context__publicOnInventoryVariantsChangedType as _publicOnInventoryVariantsChangedType, context_decrementInventory as decrementInventory, context_getInventoryVariants as getInventoryVariants, context_incrementInventory as incrementInventory, context_onInventoryItemChanged as onInventoryItemChanged, context_onInventoryVariantsChanged as onInventoryVariantsChanged, onInventoryItemChanged$1 as publicOnInventoryItemChanged, onInventoryVariantsChanged$1 as publicOnInventoryVariantsChanged, context_queryInventory as queryInventory, context_updateInventoryVariants as updateInventoryVariants };
|
|
20722
20423
|
}
|
|
20723
20424
|
|
|
20724
20425
|
export { context$9 as brandsV3, context$4 as catalogProvision, context$b as collections, context$8 as customizationsV3, context$7 as infoSectionsV3, context as inventory, context$6 as inventoryItemsV3, context$a as products, context$5 as productsV3, context$3 as ribbonsV3, context$2 as storesLocationsV3, context$1 as subscriptionOptions, context$c as wishlist };
|