@wix/stores 1.0.172 → 1.0.173
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 +16 -16
- package/type-bundles/context.bundle.d.ts +80 -148
- package/type-bundles/index.bundle.d.ts +80 -148
- package/type-bundles/meta.bundle.d.ts +2 -0
|
@@ -2336,7 +2336,7 @@ interface QueryStoreVariantsResponseNonNullableFields {
|
|
|
2336
2336
|
interface GetStoreVariantResponseNonNullableFields {
|
|
2337
2337
|
variant?: StoreVariantNonNullableFields;
|
|
2338
2338
|
}
|
|
2339
|
-
interface BaseEventMetadata$
|
|
2339
|
+
interface BaseEventMetadata$6 {
|
|
2340
2340
|
/** App instance ID. */
|
|
2341
2341
|
instanceId?: string | null;
|
|
2342
2342
|
/** Event type. */
|
|
@@ -2346,31 +2346,31 @@ interface BaseEventMetadata$7 {
|
|
|
2346
2346
|
}
|
|
2347
2347
|
interface ProductCreatedEnvelope$1 {
|
|
2348
2348
|
data: ProductCreated;
|
|
2349
|
-
metadata: BaseEventMetadata$
|
|
2349
|
+
metadata: BaseEventMetadata$6;
|
|
2350
2350
|
}
|
|
2351
2351
|
interface ProductChangedEnvelope {
|
|
2352
2352
|
data: ProductChanged;
|
|
2353
|
-
metadata: BaseEventMetadata$
|
|
2353
|
+
metadata: BaseEventMetadata$6;
|
|
2354
2354
|
}
|
|
2355
2355
|
interface ProductDeletedEnvelope$1 {
|
|
2356
2356
|
data: ProductDeleted;
|
|
2357
|
-
metadata: BaseEventMetadata$
|
|
2357
|
+
metadata: BaseEventMetadata$6;
|
|
2358
2358
|
}
|
|
2359
2359
|
interface ProductCollectionCreatedEnvelope {
|
|
2360
2360
|
data: CollectionCreated;
|
|
2361
|
-
metadata: BaseEventMetadata$
|
|
2361
|
+
metadata: BaseEventMetadata$6;
|
|
2362
2362
|
}
|
|
2363
2363
|
interface ProductCollectionChangedEnvelope {
|
|
2364
2364
|
data: CollectionChanged;
|
|
2365
|
-
metadata: BaseEventMetadata$
|
|
2365
|
+
metadata: BaseEventMetadata$6;
|
|
2366
2366
|
}
|
|
2367
2367
|
interface ProductCollectionDeletedEnvelope {
|
|
2368
2368
|
data: CollectionDeleted;
|
|
2369
|
-
metadata: BaseEventMetadata$
|
|
2369
|
+
metadata: BaseEventMetadata$6;
|
|
2370
2370
|
}
|
|
2371
2371
|
interface ProductVariantsChangedEnvelope {
|
|
2372
2372
|
data: VariantsChanged;
|
|
2373
|
-
metadata: BaseEventMetadata$
|
|
2373
|
+
metadata: BaseEventMetadata$6;
|
|
2374
2374
|
}
|
|
2375
2375
|
interface UpdateProduct {
|
|
2376
2376
|
/**
|
|
@@ -2631,7 +2631,7 @@ interface QueryProductVariantsOptions {
|
|
|
2631
2631
|
|
|
2632
2632
|
declare function createRESTModule$a<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
2633
2633
|
|
|
2634
|
-
declare function createEventModule$
|
|
2634
|
+
declare function createEventModule$6<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2635
2635
|
|
|
2636
2636
|
declare const createProduct: ReturnType<typeof createRESTModule$a<typeof publicCreateProduct>>;
|
|
2637
2637
|
declare const updateProduct: ReturnType<typeof createRESTModule$a<typeof publicUpdateProduct>>;
|
|
@@ -2659,13 +2659,13 @@ declare const getProductOptionsAvailability: ReturnType<typeof createRESTModule$
|
|
|
2659
2659
|
declare const queryProductVariants: ReturnType<typeof createRESTModule$a<typeof publicQueryProductVariants>>;
|
|
2660
2660
|
declare const queryStoreVariants: ReturnType<typeof createRESTModule$a<typeof publicQueryStoreVariants>>;
|
|
2661
2661
|
declare const getStoreVariant: ReturnType<typeof createRESTModule$a<typeof publicGetStoreVariant>>;
|
|
2662
|
-
declare const onProductCreated$1: ReturnType<typeof createEventModule$
|
|
2663
|
-
declare const onProductChanged: ReturnType<typeof createEventModule$
|
|
2664
|
-
declare const onProductDeleted$1: ReturnType<typeof createEventModule$
|
|
2665
|
-
declare const onProductCollectionCreated: ReturnType<typeof createEventModule$
|
|
2666
|
-
declare const onProductCollectionChanged: ReturnType<typeof createEventModule$
|
|
2667
|
-
declare const onProductCollectionDeleted: ReturnType<typeof createEventModule$
|
|
2668
|
-
declare const onProductVariantsChanged: ReturnType<typeof createEventModule$
|
|
2662
|
+
declare const onProductCreated$1: ReturnType<typeof createEventModule$6<typeof publicOnProductCreated>>;
|
|
2663
|
+
declare const onProductChanged: ReturnType<typeof createEventModule$6<typeof publicOnProductChanged>>;
|
|
2664
|
+
declare const onProductDeleted$1: ReturnType<typeof createEventModule$6<typeof publicOnProductDeleted>>;
|
|
2665
|
+
declare const onProductCollectionCreated: ReturnType<typeof createEventModule$6<typeof publicOnProductCollectionCreated>>;
|
|
2666
|
+
declare const onProductCollectionChanged: ReturnType<typeof createEventModule$6<typeof publicOnProductCollectionChanged>>;
|
|
2667
|
+
declare const onProductCollectionDeleted: ReturnType<typeof createEventModule$6<typeof publicOnProductCollectionDeleted>>;
|
|
2668
|
+
declare const onProductVariantsChanged: ReturnType<typeof createEventModule$6<typeof publicOnProductVariantsChanged>>;
|
|
2669
2669
|
|
|
2670
2670
|
type context$a_AddProductMediaRequest = AddProductMediaRequest;
|
|
2671
2671
|
type context$a_AddProductMediaResponse = AddProductMediaResponse;
|
|
@@ -2864,7 +2864,7 @@ declare const context$a_updateCollection: typeof updateCollection;
|
|
|
2864
2864
|
declare const context$a_updateProduct: typeof updateProduct;
|
|
2865
2865
|
declare const context$a_updateProductVariants: typeof updateProductVariants;
|
|
2866
2866
|
declare namespace context$a {
|
|
2867
|
-
export { type context$a_AddProductMediaRequest as AddProductMediaRequest, type context$a_AddProductMediaResponse as AddProductMediaResponse, type context$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type context$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type context$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type context$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type context$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type context$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type context$a_AggregateProductsRequest as AggregateProductsRequest, type context$a_AggregateProductsResponse as AggregateProductsResponse, type context$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type context$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type context$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type context$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type context$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type context$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type context$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type context$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type context$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type context$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type context$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type context$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type context$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type context$a_BulkUpdateProductsByFilterSyncResponse as BulkUpdateProductsByFilterSyncResponse, type BulkUpdateProductsRequest$1 as BulkUpdateProductsRequest, type BulkUpdateProductsResponse$1 as BulkUpdateProductsResponse, type BulkUpdateProductsResponseNonNullableFields$1 as BulkUpdateProductsResponseNonNullableFields, type Choice$1 as Choice, type context$a_Collection as Collection, type context$a_CollectionChanged as CollectionChanged, type context$a_CollectionCreated as CollectionCreated, type context$a_CollectionDeleted as CollectionDeleted, type context$a_CostAndProfitData as CostAndProfitData, type context$a_CreateCollectionRequest as CreateCollectionRequest, type context$a_CreateCollectionResponse as CreateCollectionResponse, type context$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type context$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type context$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type context$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type context$a_CreateProductPlatformizedResponse as CreateProductPlatformizedResponse, type CreateProductRequest$1 as CreateProductRequest, type CreateProductResponse$1 as CreateProductResponse, type CreateProductResponseNonNullableFields$1 as CreateProductResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type Cursors$7 as Cursors, type context$a_CustomFieldsContainer as CustomFieldsContainer, type context$a_CustomTextField as CustomTextField, type context$a_DeleteCollectionRequest as DeleteCollectionRequest, type context$a_DeleteCollectionResponse as DeleteCollectionResponse, type context$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type context$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type context$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type context$a_DeleteProductPlatformizedResponse as DeleteProductPlatformizedResponse, type DeleteProductRequest$1 as DeleteProductRequest, type DeleteProductResponse$1 as DeleteProductResponse, type Discount$1 as Discount, DiscountType$2 as DiscountType, FileType$1 as FileType, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type context$a_GetProductOptions as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type context$a_PagingWithBigLimit as PagingWithBigLimit, type context$a_PercentageData as PercentageData, type context$a_PlatformMedia as PlatformMedia, type context$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type context$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type context$a_ProductOption as ProductOption, type context$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type context$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type context$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type context$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type context$a_ProductsQueryBuilder as ProductsQueryBuilder, type context$a_ProductsQueryResult as ProductsQueryResult, type context$a_PropertyAdjustmentData as PropertyAdjustmentData, type context$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type context$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type context$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type context$a_QueryCollectionsRequest as QueryCollectionsRequest, type context$a_QueryCollectionsResponse as QueryCollectionsResponse, type context$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type context$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type context$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type context$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type context$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type context$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type context$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type context$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type context$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type context$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type context$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type context$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type context$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type context$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type context$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type context$a_ReCloneStoreRequest as ReCloneStoreRequest, type context$a_ReCloneStoreResponse as ReCloneStoreResponse, type context$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type context$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type context$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type context$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type context$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type context$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type context$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type context$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type context$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type context$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type context$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type context$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type context$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type context$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type context$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type context$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type context$a_SetValue as SetValue, type context$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type context$a_Stock as Stock, type context$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type context$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type context$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type context$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type context$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type context$a_UpdateCollection as UpdateCollection, type context$a_UpdateCollectionRequest as UpdateCollectionRequest, type context$a_UpdateCollectionResponse as UpdateCollectionResponse, type context$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type context$a_UpdateProduct as UpdateProduct, type context$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type context$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type context$a_UpdateVariantsRequest as UpdateVariantsRequest, type context$a_UpdateVariantsResponse as UpdateVariantsResponse, type context$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type context$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type context$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type context$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type context$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type context$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type context$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type context$a_VariantChanged as VariantChanged, type context$a_VariantData as VariantData, type context$a_VariantDataWithNoStock as VariantDataWithNoStock, type context$a_VariantOverride as VariantOverride, type context$a_VariantStock as VariantStock, type context$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, context$a_addProductMedia as addProductMedia, context$a_addProductMediaToChoices as addProductMediaToChoices, context$a_addProductsToCollection as addProductsToCollection, context$a_bulkAdjustProductProperty as bulkAdjustProductProperty, context$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, context$a_createCollection as createCollection, context$a_createProduct as createProduct, context$a_deleteCollection as deleteCollection, context$a_deleteProduct as deleteProduct, context$a_deleteProductOptions as deleteProductOptions, context$a_getCollectionBySlug as getCollectionBySlug, context$a_getProduct as getProduct, context$a_getProductOptionsAvailability as getProductOptionsAvailability, context$a_getStoreVariant as getStoreVariant, context$a_onProductChanged as onProductChanged, context$a_onProductCollectionChanged as onProductCollectionChanged, context$a_onProductCollectionCreated as onProductCollectionCreated, context$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$1 as onProductCreated, onProductDeleted$1 as onProductDeleted, context$a_onProductVariantsChanged as onProductVariantsChanged, context$a_queryProductVariants as queryProductVariants, context$a_queryProducts as queryProducts, context$a_queryStoreVariants as queryStoreVariants, context$a_removeBrand as removeBrand, context$a_removeProductMedia as removeProductMedia, context$a_removeProductMediaFromChoices as removeProductMediaFromChoices, context$a_removeProductsFromCollection as removeProductsFromCollection, context$a_removeRibbon as removeRibbon, context$a_resetAllProductVariantData as resetAllProductVariantData, context$a_updateCollection as updateCollection, context$a_updateProduct as updateProduct, context$a_updateProductVariants as updateProductVariants };
|
|
2867
|
+
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$6 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type context$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type context$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type context$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type context$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type context$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type context$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type context$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type context$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type context$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type context$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type context$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type context$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type context$a_BulkUpdateProductsByFilterSyncResponse as BulkUpdateProductsByFilterSyncResponse, type BulkUpdateProductsRequest$1 as BulkUpdateProductsRequest, type BulkUpdateProductsResponse$1 as BulkUpdateProductsResponse, type BulkUpdateProductsResponseNonNullableFields$1 as BulkUpdateProductsResponseNonNullableFields, type Choice$1 as Choice, type context$a_Collection as Collection, type context$a_CollectionChanged as CollectionChanged, type context$a_CollectionCreated as CollectionCreated, type context$a_CollectionDeleted as CollectionDeleted, type context$a_CostAndProfitData as CostAndProfitData, type context$a_CreateCollectionRequest as CreateCollectionRequest, type context$a_CreateCollectionResponse as CreateCollectionResponse, type context$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type context$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type context$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type context$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type context$a_CreateProductPlatformizedResponse as CreateProductPlatformizedResponse, type CreateProductRequest$1 as CreateProductRequest, type CreateProductResponse$1 as CreateProductResponse, type CreateProductResponseNonNullableFields$1 as CreateProductResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type Cursors$7 as Cursors, type context$a_CustomFieldsContainer as CustomFieldsContainer, type context$a_CustomTextField as CustomTextField, type context$a_DeleteCollectionRequest as DeleteCollectionRequest, type context$a_DeleteCollectionResponse as DeleteCollectionResponse, type context$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type context$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type context$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type context$a_DeleteProductPlatformizedResponse as DeleteProductPlatformizedResponse, type DeleteProductRequest$1 as DeleteProductRequest, type DeleteProductResponse$1 as DeleteProductResponse, type Discount$1 as Discount, DiscountType$2 as DiscountType, FileType$1 as FileType, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type context$a_GetProductOptions as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type context$a_PagingWithBigLimit as PagingWithBigLimit, type context$a_PercentageData as PercentageData, type context$a_PlatformMedia as PlatformMedia, type context$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type context$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type context$a_ProductOption as ProductOption, type context$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type context$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type context$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type context$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type context$a_ProductsQueryBuilder as ProductsQueryBuilder, type context$a_ProductsQueryResult as ProductsQueryResult, type context$a_PropertyAdjustmentData as PropertyAdjustmentData, type context$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type context$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type context$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type context$a_QueryCollectionsRequest as QueryCollectionsRequest, type context$a_QueryCollectionsResponse as QueryCollectionsResponse, type context$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type context$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type context$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type context$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type context$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type context$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type context$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type context$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type context$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type context$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type context$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type context$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type context$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type context$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type context$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type context$a_ReCloneStoreRequest as ReCloneStoreRequest, type context$a_ReCloneStoreResponse as ReCloneStoreResponse, type context$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type context$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type context$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type context$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type context$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type context$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type context$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type context$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type context$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type context$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type context$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type context$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type context$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type context$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type context$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type context$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type context$a_SetValue as SetValue, type context$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type context$a_Stock as Stock, type context$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type context$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type context$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type context$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type context$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type context$a_UpdateCollection as UpdateCollection, type context$a_UpdateCollectionRequest as UpdateCollectionRequest, type context$a_UpdateCollectionResponse as UpdateCollectionResponse, type context$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type context$a_UpdateProduct as UpdateProduct, type context$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type context$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type context$a_UpdateVariantsRequest as UpdateVariantsRequest, type context$a_UpdateVariantsResponse as UpdateVariantsResponse, type context$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type context$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type context$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type context$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type context$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type context$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type context$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type context$a_VariantChanged as VariantChanged, type context$a_VariantData as VariantData, type context$a_VariantDataWithNoStock as VariantDataWithNoStock, type context$a_VariantOverride as VariantOverride, type context$a_VariantStock as VariantStock, type context$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, context$a_addProductMedia as addProductMedia, context$a_addProductMediaToChoices as addProductMediaToChoices, context$a_addProductsToCollection as addProductsToCollection, context$a_bulkAdjustProductProperty as bulkAdjustProductProperty, context$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, context$a_createCollection as createCollection, context$a_createProduct as createProduct, context$a_deleteCollection as deleteCollection, context$a_deleteProduct as deleteProduct, context$a_deleteProductOptions as deleteProductOptions, context$a_getCollectionBySlug as getCollectionBySlug, context$a_getProduct as getProduct, context$a_getProductOptionsAvailability as getProductOptionsAvailability, context$a_getStoreVariant as getStoreVariant, context$a_onProductChanged as onProductChanged, context$a_onProductCollectionChanged as onProductCollectionChanged, context$a_onProductCollectionCreated as onProductCollectionCreated, context$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$1 as onProductCreated, onProductDeleted$1 as onProductDeleted, context$a_onProductVariantsChanged as onProductVariantsChanged, context$a_queryProductVariants as queryProductVariants, context$a_queryProducts as queryProducts, context$a_queryStoreVariants as queryStoreVariants, context$a_removeBrand as removeBrand, context$a_removeProductMedia as removeProductMedia, context$a_removeProductMediaFromChoices as removeProductMediaFromChoices, context$a_removeProductsFromCollection as removeProductsFromCollection, context$a_removeRibbon as removeRibbon, context$a_resetAllProductVariantData as resetAllProductVariantData, context$a_updateCollection as updateCollection, context$a_updateProduct as updateProduct, context$a_updateProductVariants as updateProductVariants };
|
|
2868
2868
|
}
|
|
2869
2869
|
|
|
2870
2870
|
/**
|
|
@@ -3343,7 +3343,7 @@ interface BulkDeleteBrandsResponseNonNullableFields {
|
|
|
3343
3343
|
results: BulkDeleteBrandsResponseBulkBrandsResultNonNullableFields[];
|
|
3344
3344
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields$4;
|
|
3345
3345
|
}
|
|
3346
|
-
interface BaseEventMetadata$
|
|
3346
|
+
interface BaseEventMetadata$5 {
|
|
3347
3347
|
/** App instance ID. */
|
|
3348
3348
|
instanceId?: string | null;
|
|
3349
3349
|
/** Event type. */
|
|
@@ -3351,7 +3351,7 @@ interface BaseEventMetadata$6 {
|
|
|
3351
3351
|
/** The identification type and identity data. */
|
|
3352
3352
|
identity?: IdentificationData$8;
|
|
3353
3353
|
}
|
|
3354
|
-
interface EventMetadata$
|
|
3354
|
+
interface EventMetadata$4 extends BaseEventMetadata$5 {
|
|
3355
3355
|
/**
|
|
3356
3356
|
* Unique event ID.
|
|
3357
3357
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -3391,14 +3391,14 @@ interface EventMetadata$5 extends BaseEventMetadata$6 {
|
|
|
3391
3391
|
}
|
|
3392
3392
|
interface BrandCreatedEnvelope {
|
|
3393
3393
|
entity: Brand$1;
|
|
3394
|
-
metadata: EventMetadata$
|
|
3394
|
+
metadata: EventMetadata$4;
|
|
3395
3395
|
}
|
|
3396
3396
|
interface BrandUpdatedEnvelope {
|
|
3397
3397
|
entity: Brand$1;
|
|
3398
|
-
metadata: EventMetadata$
|
|
3398
|
+
metadata: EventMetadata$4;
|
|
3399
3399
|
}
|
|
3400
3400
|
interface BrandDeletedEnvelope {
|
|
3401
|
-
metadata: EventMetadata$
|
|
3401
|
+
metadata: EventMetadata$4;
|
|
3402
3402
|
}
|
|
3403
3403
|
interface GetBrandOptions {
|
|
3404
3404
|
/** A list of requested fields to be included in the response. */
|
|
@@ -3544,7 +3544,7 @@ interface BulkGetOrCreateBrandsOptions {
|
|
|
3544
3544
|
|
|
3545
3545
|
declare function createRESTModule$9<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
3546
3546
|
|
|
3547
|
-
declare function createEventModule$
|
|
3547
|
+
declare function createEventModule$5<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
3548
3548
|
|
|
3549
3549
|
declare const createBrand: ReturnType<typeof createRESTModule$9<typeof publicCreateBrand>>;
|
|
3550
3550
|
declare const getBrand: ReturnType<typeof createRESTModule$9<typeof publicGetBrand>>;
|
|
@@ -3556,9 +3556,9 @@ declare const bulkUpdateBrands: ReturnType<typeof createRESTModule$9<typeof publ
|
|
|
3556
3556
|
declare const getOrCreateBrand: ReturnType<typeof createRESTModule$9<typeof publicGetOrCreateBrand>>;
|
|
3557
3557
|
declare const bulkGetOrCreateBrands: ReturnType<typeof createRESTModule$9<typeof publicBulkGetOrCreateBrands>>;
|
|
3558
3558
|
declare const bulkDeleteBrands: ReturnType<typeof createRESTModule$9<typeof publicBulkDeleteBrands>>;
|
|
3559
|
-
declare const onBrandCreated: ReturnType<typeof createEventModule$
|
|
3560
|
-
declare const onBrandUpdated: ReturnType<typeof createEventModule$
|
|
3561
|
-
declare const onBrandDeleted: ReturnType<typeof createEventModule$
|
|
3559
|
+
declare const onBrandCreated: ReturnType<typeof createEventModule$5<typeof publicOnBrandCreated>>;
|
|
3560
|
+
declare const onBrandUpdated: ReturnType<typeof createEventModule$5<typeof publicOnBrandUpdated>>;
|
|
3561
|
+
declare const onBrandDeleted: ReturnType<typeof createEventModule$5<typeof publicOnBrandDeleted>>;
|
|
3562
3562
|
|
|
3563
3563
|
type context$9_BrandCreatedEnvelope = BrandCreatedEnvelope;
|
|
3564
3564
|
type context$9_BrandDeletedEnvelope = BrandDeletedEnvelope;
|
|
@@ -3620,7 +3620,7 @@ declare const context$9_onBrandUpdated: typeof onBrandUpdated;
|
|
|
3620
3620
|
declare const context$9_queryBrands: typeof queryBrands;
|
|
3621
3621
|
declare const context$9_updateBrand: typeof updateBrand;
|
|
3622
3622
|
declare namespace context$9 {
|
|
3623
|
-
export { type ActionEvent$6 as ActionEvent, type App$6 as App, type ApplicationError$5 as ApplicationError, type BaseEventMetadata$
|
|
3623
|
+
export { type ActionEvent$6 as ActionEvent, type App$6 as App, type ApplicationError$5 as ApplicationError, type BaseEventMetadata$5 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$4 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, 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, context$9_queryBrands as queryBrands, context$9_updateBrand as updateBrand };
|
|
3624
3624
|
}
|
|
3625
3625
|
|
|
3626
3626
|
/**
|
|
@@ -4245,7 +4245,7 @@ interface BulkUpdateCustomizationsResponseNonNullableFields {
|
|
|
4245
4245
|
results: BulkCustomizationResultNonNullableFields[];
|
|
4246
4246
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields$3;
|
|
4247
4247
|
}
|
|
4248
|
-
interface BaseEventMetadata$
|
|
4248
|
+
interface BaseEventMetadata$4 {
|
|
4249
4249
|
/** App instance ID. */
|
|
4250
4250
|
instanceId?: string | null;
|
|
4251
4251
|
/** Event type. */
|
|
@@ -4253,7 +4253,7 @@ interface BaseEventMetadata$5 {
|
|
|
4253
4253
|
/** The identification type and identity data. */
|
|
4254
4254
|
identity?: IdentificationData$7;
|
|
4255
4255
|
}
|
|
4256
|
-
interface EventMetadata$
|
|
4256
|
+
interface EventMetadata$3 extends BaseEventMetadata$4 {
|
|
4257
4257
|
/**
|
|
4258
4258
|
* Unique event ID.
|
|
4259
4259
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -4293,15 +4293,15 @@ interface EventMetadata$4 extends BaseEventMetadata$5 {
|
|
|
4293
4293
|
}
|
|
4294
4294
|
interface CustomizationCreatedEnvelope {
|
|
4295
4295
|
entity: Customization;
|
|
4296
|
-
metadata: EventMetadata$
|
|
4296
|
+
metadata: EventMetadata$3;
|
|
4297
4297
|
}
|
|
4298
4298
|
interface CustomizationUpdatedEnvelope {
|
|
4299
4299
|
entity: Customization;
|
|
4300
|
-
metadata: EventMetadata$
|
|
4300
|
+
metadata: EventMetadata$3;
|
|
4301
4301
|
}
|
|
4302
4302
|
interface CustomizationDeletedEnvelope {
|
|
4303
4303
|
entity: Customization;
|
|
4304
|
-
metadata: EventMetadata$
|
|
4304
|
+
metadata: EventMetadata$3;
|
|
4305
4305
|
}
|
|
4306
4306
|
interface GetCustomizationOptions {
|
|
4307
4307
|
/** A list of requested fields to be included in the response. */
|
|
@@ -4469,7 +4469,7 @@ interface BulkUpdateCustomizationsOptions {
|
|
|
4469
4469
|
|
|
4470
4470
|
declare function createRESTModule$8<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4471
4471
|
|
|
4472
|
-
declare function createEventModule$
|
|
4472
|
+
declare function createEventModule$4<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4473
4473
|
|
|
4474
4474
|
declare const createCustomization: ReturnType<typeof createRESTModule$8<typeof publicCreateCustomization>>;
|
|
4475
4475
|
declare const getCustomization: ReturnType<typeof createRESTModule$8<typeof publicGetCustomization>>;
|
|
@@ -4482,9 +4482,9 @@ declare const setCustomizationChoices: ReturnType<typeof createRESTModule$8<type
|
|
|
4482
4482
|
declare const removeCustomizationChoices: ReturnType<typeof createRESTModule$8<typeof publicRemoveCustomizationChoices>>;
|
|
4483
4483
|
declare const bulkAddCustomizationChoices: ReturnType<typeof createRESTModule$8<typeof publicBulkAddCustomizationChoices>>;
|
|
4484
4484
|
declare const bulkUpdateCustomizations: ReturnType<typeof createRESTModule$8<typeof publicBulkUpdateCustomizations>>;
|
|
4485
|
-
declare const onCustomizationCreated: ReturnType<typeof createEventModule$
|
|
4486
|
-
declare const onCustomizationUpdated: ReturnType<typeof createEventModule$
|
|
4487
|
-
declare const onCustomizationDeleted: ReturnType<typeof createEventModule$
|
|
4485
|
+
declare const onCustomizationCreated: ReturnType<typeof createEventModule$4<typeof publicOnCustomizationCreated>>;
|
|
4486
|
+
declare const onCustomizationUpdated: ReturnType<typeof createEventModule$4<typeof publicOnCustomizationUpdated>>;
|
|
4487
|
+
declare const onCustomizationDeleted: ReturnType<typeof createEventModule$4<typeof publicOnCustomizationDeleted>>;
|
|
4488
4488
|
|
|
4489
4489
|
type context$8_AddCustomizationChoicesOptions = AddCustomizationChoicesOptions;
|
|
4490
4490
|
type context$8_AddCustomizationChoicesRequest = AddCustomizationChoicesRequest;
|
|
@@ -4562,7 +4562,7 @@ declare const context$8_removeCustomizationChoices: typeof removeCustomizationCh
|
|
|
4562
4562
|
declare const context$8_setCustomizationChoices: typeof setCustomizationChoices;
|
|
4563
4563
|
declare const context$8_updateCustomization: typeof updateCustomization;
|
|
4564
4564
|
declare namespace context$8 {
|
|
4565
|
-
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$
|
|
4565
|
+
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$4 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_BulkCustomizationResultNonNullableFields as BulkCustomizationResultNonNullableFields, 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$3 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, 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, context$8_queryCustomizations as queryCustomizations, context$8_removeCustomizationChoices as removeCustomizationChoices, context$8_setCustomizationChoices as setCustomizationChoices, context$8_updateCustomization as updateCustomization };
|
|
4566
4566
|
}
|
|
4567
4567
|
|
|
4568
4568
|
/** InfoSection is the main entity of InfoSections */
|
|
@@ -6539,7 +6539,7 @@ interface BulkDeleteInfoSectionsResponseNonNullableFields {
|
|
|
6539
6539
|
results: BulkInfoSectionResultNonNullableFields[];
|
|
6540
6540
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields$2;
|
|
6541
6541
|
}
|
|
6542
|
-
interface BaseEventMetadata$
|
|
6542
|
+
interface BaseEventMetadata$3 {
|
|
6543
6543
|
/** App instance ID. */
|
|
6544
6544
|
instanceId?: string | null;
|
|
6545
6545
|
/** Event type. */
|
|
@@ -6547,7 +6547,7 @@ interface BaseEventMetadata$4 {
|
|
|
6547
6547
|
/** The identification type and identity data. */
|
|
6548
6548
|
identity?: IdentificationData$6;
|
|
6549
6549
|
}
|
|
6550
|
-
interface EventMetadata$
|
|
6550
|
+
interface EventMetadata$2 extends BaseEventMetadata$3 {
|
|
6551
6551
|
/**
|
|
6552
6552
|
* Unique event ID.
|
|
6553
6553
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -6587,14 +6587,14 @@ interface EventMetadata$3 extends BaseEventMetadata$4 {
|
|
|
6587
6587
|
}
|
|
6588
6588
|
interface InfoSectionCreatedEnvelope {
|
|
6589
6589
|
entity: InfoSection$1;
|
|
6590
|
-
metadata: EventMetadata$
|
|
6590
|
+
metadata: EventMetadata$2;
|
|
6591
6591
|
}
|
|
6592
6592
|
interface InfoSectionUpdatedEnvelope {
|
|
6593
6593
|
entity: InfoSection$1;
|
|
6594
|
-
metadata: EventMetadata$
|
|
6594
|
+
metadata: EventMetadata$2;
|
|
6595
6595
|
}
|
|
6596
6596
|
interface InfoSectionDeletedEnvelope {
|
|
6597
|
-
metadata: EventMetadata$
|
|
6597
|
+
metadata: EventMetadata$2;
|
|
6598
6598
|
}
|
|
6599
6599
|
interface GetInfoSectionOptions {
|
|
6600
6600
|
/** A list of requested fields to be included in the response. */
|
|
@@ -6756,7 +6756,7 @@ interface BulkUpdateInfoSectionsOptions {
|
|
|
6756
6756
|
|
|
6757
6757
|
declare function createRESTModule$7<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
6758
6758
|
|
|
6759
|
-
declare function createEventModule$
|
|
6759
|
+
declare function createEventModule$3<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
6760
6760
|
|
|
6761
6761
|
declare const createInfoSection: ReturnType<typeof createRESTModule$7<typeof publicCreateInfoSection>>;
|
|
6762
6762
|
declare const getInfoSection: ReturnType<typeof createRESTModule$7<typeof publicGetInfoSection>>;
|
|
@@ -6768,9 +6768,9 @@ declare const queryInfoSections: ReturnType<typeof createRESTModule$7<typeof pub
|
|
|
6768
6768
|
declare const bulkCreateInfoSections: ReturnType<typeof createRESTModule$7<typeof publicBulkCreateInfoSections>>;
|
|
6769
6769
|
declare const bulkUpdateInfoSections: ReturnType<typeof createRESTModule$7<typeof publicBulkUpdateInfoSections>>;
|
|
6770
6770
|
declare const bulkDeleteInfoSections: ReturnType<typeof createRESTModule$7<typeof publicBulkDeleteInfoSections>>;
|
|
6771
|
-
declare const onInfoSectionCreated: ReturnType<typeof createEventModule$
|
|
6772
|
-
declare const onInfoSectionUpdated: ReturnType<typeof createEventModule$
|
|
6773
|
-
declare const onInfoSectionDeleted: ReturnType<typeof createEventModule$
|
|
6771
|
+
declare const onInfoSectionCreated: ReturnType<typeof createEventModule$3<typeof publicOnInfoSectionCreated>>;
|
|
6772
|
+
declare const onInfoSectionUpdated: ReturnType<typeof createEventModule$3<typeof publicOnInfoSectionUpdated>>;
|
|
6773
|
+
declare const onInfoSectionDeleted: ReturnType<typeof createEventModule$3<typeof publicOnInfoSectionDeleted>>;
|
|
6774
6774
|
|
|
6775
6775
|
type context$7_BulkCreateInfoSectionsOptions = BulkCreateInfoSectionsOptions;
|
|
6776
6776
|
type context$7_BulkCreateInfoSectionsRequest = BulkCreateInfoSectionsRequest;
|
|
@@ -6832,7 +6832,7 @@ declare const context$7_onInfoSectionUpdated: typeof onInfoSectionUpdated;
|
|
|
6832
6832
|
declare const context$7_queryInfoSections: typeof queryInfoSections;
|
|
6833
6833
|
declare const context$7_updateInfoSection: typeof updateInfoSection;
|
|
6834
6834
|
declare namespace context$7 {
|
|
6835
|
-
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$
|
|
6835
|
+
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$3 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$2 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, 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, context$7_queryInfoSections as queryInfoSections, context$7_updateInfoSection as updateInfoSection };
|
|
6836
6836
|
}
|
|
6837
6837
|
|
|
6838
6838
|
/** InventoryItem is the main entity of InventoryService */
|
|
@@ -8142,7 +8142,7 @@ interface BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFiel
|
|
|
8142
8142
|
results: V3BulkInventoryItemResultNonNullableFields[];
|
|
8143
8143
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
8144
8144
|
}
|
|
8145
|
-
interface BaseEventMetadata$
|
|
8145
|
+
interface BaseEventMetadata$2 {
|
|
8146
8146
|
/** App instance ID. */
|
|
8147
8147
|
instanceId?: string | null;
|
|
8148
8148
|
/** Event type. */
|
|
@@ -8150,7 +8150,7 @@ interface BaseEventMetadata$3 {
|
|
|
8150
8150
|
/** The identification type and identity data. */
|
|
8151
8151
|
identity?: IdentificationData$5;
|
|
8152
8152
|
}
|
|
8153
|
-
interface EventMetadata$
|
|
8153
|
+
interface EventMetadata$1 extends BaseEventMetadata$2 {
|
|
8154
8154
|
/**
|
|
8155
8155
|
* Unique event ID.
|
|
8156
8156
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -8190,23 +8190,23 @@ interface EventMetadata$2 extends BaseEventMetadata$3 {
|
|
|
8190
8190
|
}
|
|
8191
8191
|
interface InventoryItemCreatedEnvelope {
|
|
8192
8192
|
entity: InventoryItem$1;
|
|
8193
|
-
metadata: EventMetadata$
|
|
8193
|
+
metadata: EventMetadata$1;
|
|
8194
8194
|
}
|
|
8195
8195
|
interface InventoryItemUpdatedEnvelope {
|
|
8196
8196
|
entity: InventoryItem$1;
|
|
8197
|
-
metadata: EventMetadata$
|
|
8197
|
+
metadata: EventMetadata$1;
|
|
8198
8198
|
}
|
|
8199
8199
|
interface InventoryItemStockStatusUpdatedEnvelope {
|
|
8200
8200
|
data: InventoryItemStockStatusUpdatedEvent;
|
|
8201
|
-
metadata: EventMetadata$
|
|
8201
|
+
metadata: EventMetadata$1;
|
|
8202
8202
|
}
|
|
8203
8203
|
interface InventoryItemUpdatedWithReasonEnvelope {
|
|
8204
8204
|
data: InventoryItemUpdatedWithReason;
|
|
8205
|
-
metadata: EventMetadata$
|
|
8205
|
+
metadata: EventMetadata$1;
|
|
8206
8206
|
}
|
|
8207
8207
|
interface InventoryItemDeletedEnvelope {
|
|
8208
8208
|
entity: InventoryItem$1;
|
|
8209
|
-
metadata: EventMetadata$
|
|
8209
|
+
metadata: EventMetadata$1;
|
|
8210
8210
|
}
|
|
8211
8211
|
interface BulkCreateInventoryItemsOptions {
|
|
8212
8212
|
/** Whether to return the full inventory item entity in the response. */
|
|
@@ -8409,7 +8409,7 @@ interface BulkIncrementInventoryItemsByVariantAndLocationOptions {
|
|
|
8409
8409
|
|
|
8410
8410
|
declare function createRESTModule$6<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
8411
8411
|
|
|
8412
|
-
declare function createEventModule$
|
|
8412
|
+
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
8413
8413
|
|
|
8414
8414
|
declare const createInventoryItem: ReturnType<typeof createRESTModule$6<typeof publicCreateInventoryItem>>;
|
|
8415
8415
|
declare const bulkCreateInventoryItems: ReturnType<typeof createRESTModule$6<typeof publicBulkCreateInventoryItems>>;
|
|
@@ -8426,11 +8426,11 @@ declare const bulkDecrementInventoryItems: ReturnType<typeof createRESTModule$6<
|
|
|
8426
8426
|
declare const bulkIncrementInventoryItems: ReturnType<typeof createRESTModule$6<typeof publicBulkIncrementInventoryItems>>;
|
|
8427
8427
|
declare const bulkDecrementInventoryItemsByVariantAndLocation: ReturnType<typeof createRESTModule$6<typeof publicBulkDecrementInventoryItemsByVariantAndLocation>>;
|
|
8428
8428
|
declare const bulkIncrementInventoryItemsByVariantAndLocation: ReturnType<typeof createRESTModule$6<typeof publicBulkIncrementInventoryItemsByVariantAndLocation>>;
|
|
8429
|
-
declare const onInventoryItemCreated: ReturnType<typeof createEventModule$
|
|
8430
|
-
declare const onInventoryItemUpdated: ReturnType<typeof createEventModule$
|
|
8431
|
-
declare const onInventoryItemStockStatusUpdated: ReturnType<typeof createEventModule$
|
|
8432
|
-
declare const onInventoryItemUpdatedWithReason: ReturnType<typeof createEventModule$
|
|
8433
|
-
declare const onInventoryItemDeleted: ReturnType<typeof createEventModule$
|
|
8429
|
+
declare const onInventoryItemCreated: ReturnType<typeof createEventModule$2<typeof publicOnInventoryItemCreated>>;
|
|
8430
|
+
declare const onInventoryItemUpdated: ReturnType<typeof createEventModule$2<typeof publicOnInventoryItemUpdated>>;
|
|
8431
|
+
declare const onInventoryItemStockStatusUpdated: ReturnType<typeof createEventModule$2<typeof publicOnInventoryItemStockStatusUpdated>>;
|
|
8432
|
+
declare const onInventoryItemUpdatedWithReason: ReturnType<typeof createEventModule$2<typeof publicOnInventoryItemUpdatedWithReason>>;
|
|
8433
|
+
declare const onInventoryItemDeleted: ReturnType<typeof createEventModule$2<typeof publicOnInventoryItemDeleted>>;
|
|
8434
8434
|
|
|
8435
8435
|
type context$6_AdjustInventoryAction = AdjustInventoryAction;
|
|
8436
8436
|
type context$6_AdjustInventoryActionActionOneOf = AdjustInventoryActionActionOneOf;
|
|
@@ -8533,7 +8533,7 @@ declare const context$6_queryInventoryItems: typeof queryInventoryItems;
|
|
|
8533
8533
|
declare const context$6_searchInventoryItems: typeof searchInventoryItems;
|
|
8534
8534
|
declare const context$6_updateInventoryItem: typeof updateInventoryItem;
|
|
8535
8535
|
declare namespace context$6 {
|
|
8536
|
-
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_BulkSetOrAdjustInventoryItemsByFilterOptions as BulkSetOrAdjustInventoryItemsByFilterOptions, type context$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields as BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields, 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, 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_bulkSetOrAdjustInventoryItemsByFilter as bulkSetOrAdjustInventoryItemsByFilter, 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, context$6_queryInventoryItems as queryInventoryItems, context$6_searchInventoryItems as searchInventoryItems, context$6_updateInventoryItem as updateInventoryItem };
|
|
8536
|
+
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$2 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_BulkSetOrAdjustInventoryItemsByFilterOptions as BulkSetOrAdjustInventoryItemsByFilterOptions, type context$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields as BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields, 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$1 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, 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_bulkSetOrAdjustInventoryItemsByFilter as bulkSetOrAdjustInventoryItemsByFilter, 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, context$6_queryInventoryItems as queryInventoryItems, context$6_searchInventoryItems as searchInventoryItems, context$6_updateInventoryItem as updateInventoryItem };
|
|
8537
8537
|
}
|
|
8538
8538
|
|
|
8539
8539
|
/** Product is the main entity of ProductService that can be created, customized, managed by Store Owner and purchased by Store Visitor. */
|
|
@@ -13802,7 +13802,7 @@ interface BulkAddProductsToCategoriesByFilterResponseNonNullableFields {
|
|
|
13802
13802
|
interface BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields {
|
|
13803
13803
|
jobId: string;
|
|
13804
13804
|
}
|
|
13805
|
-
interface BaseEventMetadata$
|
|
13805
|
+
interface BaseEventMetadata$1 {
|
|
13806
13806
|
/** App instance ID. */
|
|
13807
13807
|
instanceId?: string | null;
|
|
13808
13808
|
/** Event type. */
|
|
@@ -13810,7 +13810,7 @@ interface BaseEventMetadata$2 {
|
|
|
13810
13810
|
/** The identification type and identity data. */
|
|
13811
13811
|
identity?: IdentificationData$4;
|
|
13812
13812
|
}
|
|
13813
|
-
interface EventMetadata
|
|
13813
|
+
interface EventMetadata extends BaseEventMetadata$1 {
|
|
13814
13814
|
/**
|
|
13815
13815
|
* Unique event ID.
|
|
13816
13816
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -13850,27 +13850,27 @@ interface EventMetadata$1 extends BaseEventMetadata$2 {
|
|
|
13850
13850
|
}
|
|
13851
13851
|
interface ProductCreatedEnvelope {
|
|
13852
13852
|
entity: V3Product;
|
|
13853
|
-
metadata: EventMetadata
|
|
13853
|
+
metadata: EventMetadata;
|
|
13854
13854
|
}
|
|
13855
13855
|
interface ProductUpdatedEnvelope {
|
|
13856
13856
|
entity: V3Product;
|
|
13857
|
-
metadata: EventMetadata
|
|
13857
|
+
metadata: EventMetadata;
|
|
13858
13858
|
}
|
|
13859
13859
|
interface ProductVariantAddedEnvelope {
|
|
13860
13860
|
data: VariantAdded;
|
|
13861
|
-
metadata: EventMetadata
|
|
13861
|
+
metadata: EventMetadata;
|
|
13862
13862
|
}
|
|
13863
13863
|
interface ProductVariantUpdatedEnvelope {
|
|
13864
13864
|
data: VariantUpdated;
|
|
13865
|
-
metadata: EventMetadata
|
|
13865
|
+
metadata: EventMetadata;
|
|
13866
13866
|
}
|
|
13867
13867
|
interface ProductVariantRemovedEnvelope {
|
|
13868
13868
|
data: VariantRemoved;
|
|
13869
|
-
metadata: EventMetadata
|
|
13869
|
+
metadata: EventMetadata;
|
|
13870
13870
|
}
|
|
13871
13871
|
interface ProductDeletedEnvelope {
|
|
13872
13872
|
entity: V3Product;
|
|
13873
|
-
metadata: EventMetadata
|
|
13873
|
+
metadata: EventMetadata;
|
|
13874
13874
|
}
|
|
13875
13875
|
interface CatalogCreateProductOptions {
|
|
13876
13876
|
/** A list of requested fields to be included in the response. */
|
|
@@ -14286,7 +14286,7 @@ interface BulkRemoveProductsFromCategoriesByFilterOptions {
|
|
|
14286
14286
|
|
|
14287
14287
|
declare function createRESTModule$5<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
14288
14288
|
|
|
14289
|
-
declare function createEventModule$
|
|
14289
|
+
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
14290
14290
|
|
|
14291
14291
|
declare const catalogCreateProduct: ReturnType<typeof createRESTModule$5<typeof publicCatalogCreateProduct>>;
|
|
14292
14292
|
declare const createProductWithInventory: ReturnType<typeof createRESTModule$5<typeof publicCreateProductWithInventory>>;
|
|
@@ -14314,12 +14314,12 @@ declare const catalogBulkRemoveInfoSectionsFromProductsByFilter: ReturnType<type
|
|
|
14314
14314
|
declare const catalogBulkRemoveInfoSectionsFromProducts: ReturnType<typeof createRESTModule$5<typeof publicCatalogBulkRemoveInfoSectionsFromProducts>>;
|
|
14315
14315
|
declare const bulkAddProductsToCategoriesByFilter: ReturnType<typeof createRESTModule$5<typeof publicBulkAddProductsToCategoriesByFilter>>;
|
|
14316
14316
|
declare const bulkRemoveProductsFromCategoriesByFilter: ReturnType<typeof createRESTModule$5<typeof publicBulkRemoveProductsFromCategoriesByFilter>>;
|
|
14317
|
-
declare const onProductCreated: ReturnType<typeof createEventModule$
|
|
14318
|
-
declare const onProductUpdated: ReturnType<typeof createEventModule$
|
|
14319
|
-
declare const onProductVariantAdded: ReturnType<typeof createEventModule$
|
|
14320
|
-
declare const onProductVariantUpdated: ReturnType<typeof createEventModule$
|
|
14321
|
-
declare const onProductVariantRemoved: ReturnType<typeof createEventModule$
|
|
14322
|
-
declare const onProductDeleted: ReturnType<typeof createEventModule$
|
|
14317
|
+
declare const onProductCreated: ReturnType<typeof createEventModule$1<typeof publicOnProductCreated>>;
|
|
14318
|
+
declare const onProductUpdated: ReturnType<typeof createEventModule$1<typeof publicOnProductUpdated>>;
|
|
14319
|
+
declare const onProductVariantAdded: ReturnType<typeof createEventModule$1<typeof publicOnProductVariantAdded>>;
|
|
14320
|
+
declare const onProductVariantUpdated: ReturnType<typeof createEventModule$1<typeof publicOnProductVariantUpdated>>;
|
|
14321
|
+
declare const onProductVariantRemoved: ReturnType<typeof createEventModule$1<typeof publicOnProductVariantRemoved>>;
|
|
14322
|
+
declare const onProductDeleted: ReturnType<typeof createEventModule$1<typeof publicOnProductDeleted>>;
|
|
14323
14323
|
|
|
14324
14324
|
type context$5_AdjustValue = AdjustValue;
|
|
14325
14325
|
type context$5_AdjustValueAdjustValueOneOf = AdjustValueAdjustValueOneOf;
|
|
@@ -14530,6 +14530,7 @@ type context$5_EmbedData = EmbedData;
|
|
|
14530
14530
|
type context$5_Enum = Enum;
|
|
14531
14531
|
declare const context$5_Enum: typeof Enum;
|
|
14532
14532
|
type context$5_EventData = EventData;
|
|
14533
|
+
type context$5_EventMetadata = EventMetadata;
|
|
14533
14534
|
type context$5_EventuallyConsistentQueryProductsRequest = EventuallyConsistentQueryProductsRequest;
|
|
14534
14535
|
type context$5_EventuallyConsistentQueryProductsResponse = EventuallyConsistentQueryProductsResponse;
|
|
14535
14536
|
type context$5_ExtendedFields = ExtendedFields;
|
|
@@ -14908,7 +14909,7 @@ declare const context$5_onProductVariantRemoved: typeof onProductVariantRemoved;
|
|
|
14908
14909
|
declare const context$5_onProductVariantUpdated: typeof onProductVariantUpdated;
|
|
14909
14910
|
declare const context$5_updateProductWithInventory: typeof updateProductWithInventory;
|
|
14910
14911
|
declare namespace context$5 {
|
|
14911
|
-
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, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, 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_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context$5_Alignment as Alignment, type context$5_AnchorData as AnchorData, type App$2 as App, type context$5_AppEmbedData as AppEmbedData, type context$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type context$5_AudioData as AudioData, context$5_AvailabilityStatus as AvailabilityStatus, type context$5_Background as Background, type context$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions as CatalogBulkAddInfoSectionsToProductsByFilterOptions, type context$5_CatalogBulkAddInfoSectionsToProductsOptions as CatalogBulkAddInfoSectionsToProductsOptions, type context$5_CatalogBulkCreateProductsOptions as CatalogBulkCreateProductsOptions, type context$5_CatalogBulkDeleteProductsByFilterOptions as CatalogBulkDeleteProductsByFilterOptions, type context$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions as CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_CatalogBulkRemoveInfoSectionsFromProductsOptions as CatalogBulkRemoveInfoSectionsFromProductsOptions, type context$5_CatalogBulkUpdateProductsByFilterOptions as CatalogBulkUpdateProductsByFilterOptions, type context$5_CatalogBulkUpdateProductsOptions as CatalogBulkUpdateProductsOptions, type context$5_CatalogCountProductsOptions as CatalogCountProductsOptions, type context$5_CatalogCreateProductOptions as CatalogCreateProductOptions, type context$5_CatalogGetProductBySlugOptions as CatalogGetProductBySlugOptions, type context$5_CatalogGetProductOptions as CatalogGetProductOptions, type context$5_CatalogQueryProductsOptions as CatalogQueryProductsOptions, type context$5_CatalogSearchProductsOptions as CatalogSearchProductsOptions, type context$5_CatalogUpdateExtendedFieldsOptions as CatalogUpdateExtendedFieldsOptions, type context$5_CatalogUpdateProduct as CatalogUpdateProduct, type context$5_CatalogUpdateProductOptions as CatalogUpdateProductOptions, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_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_CommonAggregationKindOneOf as CommonAggregationKindOneOf, context$5_CommonAggregationType as CommonAggregationType, 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_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type context$5_ExtendedFields as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_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_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemStyle as ItemStyle, 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, 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_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_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategory as ProductCategory, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantAddedEnvelope as ProductVariantAddedEnvelope, type context$5_ProductVariantRemovedEnvelope as ProductVariantRemovedEnvelope, type context$5_ProductVariantUpdatedEnvelope as ProductVariantUpdatedEnvelope, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantAdded as VariantAdded, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantRemoved as VariantRemoved, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantUpdated as VariantUpdated, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_catalogBulkAddInfoSectionsToProducts as catalogBulkAddInfoSectionsToProducts, context$5_catalogBulkAddInfoSectionsToProductsByFilter as catalogBulkAddInfoSectionsToProductsByFilter, context$5_catalogBulkCreateProducts as catalogBulkCreateProducts, context$5_catalogBulkDeleteProducts as catalogBulkDeleteProducts, context$5_catalogBulkDeleteProductsByFilter as catalogBulkDeleteProductsByFilter, context$5_catalogBulkRemoveInfoSectionsFromProducts as catalogBulkRemoveInfoSectionsFromProducts, context$5_catalogBulkRemoveInfoSectionsFromProductsByFilter as catalogBulkRemoveInfoSectionsFromProductsByFilter, context$5_catalogBulkUpdateProducts as catalogBulkUpdateProducts, context$5_catalogBulkUpdateProductsByFilter as catalogBulkUpdateProductsByFilter, context$5_catalogCountProducts as catalogCountProducts, context$5_catalogCreateProduct as catalogCreateProduct, context$5_catalogDeleteProduct as catalogDeleteProduct, context$5_catalogGetProduct as catalogGetProduct, context$5_catalogGetProductBySlug as catalogGetProductBySlug, context$5_catalogQueryProducts as catalogQueryProducts, context$5_catalogSearchProducts as catalogSearchProducts, context$5_catalogUpdateExtendedFields as catalogUpdateExtendedFields, context$5_catalogUpdateProduct as catalogUpdateProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, context$5_onProductVariantAdded as onProductVariantAdded, context$5_onProductVariantRemoved as onProductVariantRemoved, context$5_onProductVariantUpdated as onProductVariantUpdated, context$5_updateProductWithInventory as updateProductWithInventory };
|
|
14912
|
+
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, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, 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_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, 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$1 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CatalogBulkAddInfoSectionsToProductsByFilterOptions as CatalogBulkAddInfoSectionsToProductsByFilterOptions, type context$5_CatalogBulkAddInfoSectionsToProductsOptions as CatalogBulkAddInfoSectionsToProductsOptions, type context$5_CatalogBulkCreateProductsOptions as CatalogBulkCreateProductsOptions, type context$5_CatalogBulkDeleteProductsByFilterOptions as CatalogBulkDeleteProductsByFilterOptions, type context$5_CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions as CatalogBulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_CatalogBulkRemoveInfoSectionsFromProductsOptions as CatalogBulkRemoveInfoSectionsFromProductsOptions, type context$5_CatalogBulkUpdateProductsByFilterOptions as CatalogBulkUpdateProductsByFilterOptions, type context$5_CatalogBulkUpdateProductsOptions as CatalogBulkUpdateProductsOptions, type context$5_CatalogCountProductsOptions as CatalogCountProductsOptions, type context$5_CatalogCreateProductOptions as CatalogCreateProductOptions, type context$5_CatalogGetProductBySlugOptions as CatalogGetProductBySlugOptions, type context$5_CatalogGetProductOptions as CatalogGetProductOptions, type context$5_CatalogQueryProductsOptions as CatalogQueryProductsOptions, type context$5_CatalogSearchProductsOptions as CatalogSearchProductsOptions, type context$5_CatalogUpdateExtendedFieldsOptions as CatalogUpdateExtendedFieldsOptions, type context$5_CatalogUpdateProduct as CatalogUpdateProduct, type context$5_CatalogUpdateProductOptions as CatalogUpdateProductOptions, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_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_CommonAggregationKindOneOf as CommonAggregationKindOneOf, context$5_CommonAggregationType as CommonAggregationType, 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_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type context$5_EventMetadata as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type context$5_ExtendedFields as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_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_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemStyle as ItemStyle, 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, 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_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_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategory as ProductCategory, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantAddedEnvelope as ProductVariantAddedEnvelope, type context$5_ProductVariantRemovedEnvelope as ProductVariantRemovedEnvelope, type context$5_ProductVariantUpdatedEnvelope as ProductVariantUpdatedEnvelope, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantAdded as VariantAdded, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantRemoved as VariantRemoved, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantUpdated as VariantUpdated, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_catalogBulkAddInfoSectionsToProducts as catalogBulkAddInfoSectionsToProducts, context$5_catalogBulkAddInfoSectionsToProductsByFilter as catalogBulkAddInfoSectionsToProductsByFilter, context$5_catalogBulkCreateProducts as catalogBulkCreateProducts, context$5_catalogBulkDeleteProducts as catalogBulkDeleteProducts, context$5_catalogBulkDeleteProductsByFilter as catalogBulkDeleteProductsByFilter, context$5_catalogBulkRemoveInfoSectionsFromProducts as catalogBulkRemoveInfoSectionsFromProducts, context$5_catalogBulkRemoveInfoSectionsFromProductsByFilter as catalogBulkRemoveInfoSectionsFromProductsByFilter, context$5_catalogBulkUpdateProducts as catalogBulkUpdateProducts, context$5_catalogBulkUpdateProductsByFilter as catalogBulkUpdateProductsByFilter, context$5_catalogCountProducts as catalogCountProducts, context$5_catalogCreateProduct as catalogCreateProduct, context$5_catalogDeleteProduct as catalogDeleteProduct, context$5_catalogGetProduct as catalogGetProduct, context$5_catalogGetProductBySlug as catalogGetProductBySlug, context$5_catalogQueryProducts as catalogQueryProducts, context$5_catalogSearchProducts as catalogSearchProducts, context$5_catalogUpdateExtendedFields as catalogUpdateExtendedFields, context$5_catalogUpdateProduct as catalogUpdateProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, context$5_onProductVariantAdded as onProductVariantAdded, context$5_onProductVariantRemoved as onProductVariantRemoved, context$5_onProductVariantUpdated as onProductVariantUpdated, context$5_updateProductWithInventory as updateProductWithInventory };
|
|
14912
14913
|
}
|
|
14913
14914
|
|
|
14914
14915
|
/**
|
|
@@ -15609,6 +15610,7 @@ interface GetOrCreateRibbonRequest {
|
|
|
15609
15610
|
fields?: RequestedFields[];
|
|
15610
15611
|
}
|
|
15611
15612
|
interface GetOrCreateRibbonResponse {
|
|
15613
|
+
/** The retrieved, or created Ribbon. */
|
|
15612
15614
|
ribbon?: Ribbon;
|
|
15613
15615
|
}
|
|
15614
15616
|
interface BulkGetOrCreateRibbonsRequest {
|
|
@@ -15804,64 +15806,6 @@ interface BulkDeleteRibbonsResponseNonNullableFields {
|
|
|
15804
15806
|
results: BulkRibbonResultNonNullableFields[];
|
|
15805
15807
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
15806
15808
|
}
|
|
15807
|
-
interface BaseEventMetadata$1 {
|
|
15808
|
-
/** App instance ID. */
|
|
15809
|
-
instanceId?: string | null;
|
|
15810
|
-
/** Event type. */
|
|
15811
|
-
eventType?: string;
|
|
15812
|
-
/** The identification type and identity data. */
|
|
15813
|
-
identity?: IdentificationData$2;
|
|
15814
|
-
}
|
|
15815
|
-
interface EventMetadata extends BaseEventMetadata$1 {
|
|
15816
|
-
/**
|
|
15817
|
-
* Unique event ID.
|
|
15818
|
-
* Allows clients to ignore duplicate webhooks.
|
|
15819
|
-
*/
|
|
15820
|
-
_id?: string;
|
|
15821
|
-
/**
|
|
15822
|
-
* Assumes actions are also always typed to an entity_type
|
|
15823
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
15824
|
-
*/
|
|
15825
|
-
entityFqdn?: string;
|
|
15826
|
-
/**
|
|
15827
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
15828
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
15829
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
15830
|
-
*/
|
|
15831
|
-
slug?: string;
|
|
15832
|
-
/** ID of the entity associated with the event. */
|
|
15833
|
-
entityId?: string;
|
|
15834
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
15835
|
-
eventTime?: Date;
|
|
15836
|
-
/**
|
|
15837
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
15838
|
-
* (for example, GDPR).
|
|
15839
|
-
*/
|
|
15840
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
15841
|
-
/** If present, indicates the action that triggered the event. */
|
|
15842
|
-
originatedFrom?: string | null;
|
|
15843
|
-
/**
|
|
15844
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
15845
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
15846
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
15847
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
15848
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
15849
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
15850
|
-
*/
|
|
15851
|
-
entityEventSequence?: string | null;
|
|
15852
|
-
}
|
|
15853
|
-
interface RibbonCreatedEnvelope {
|
|
15854
|
-
entity: Ribbon;
|
|
15855
|
-
metadata: EventMetadata;
|
|
15856
|
-
}
|
|
15857
|
-
interface RibbonUpdatedEnvelope {
|
|
15858
|
-
entity: Ribbon;
|
|
15859
|
-
metadata: EventMetadata;
|
|
15860
|
-
}
|
|
15861
|
-
interface RibbonDeletedEnvelope {
|
|
15862
|
-
entity: Ribbon;
|
|
15863
|
-
metadata: EventMetadata;
|
|
15864
|
-
}
|
|
15865
15809
|
interface GetRibbonOptions {
|
|
15866
15810
|
/** A list of requested fields to be included in the response. */
|
|
15867
15811
|
fields?: RequestedFields[];
|
|
@@ -16006,8 +15950,6 @@ interface BulkGetOrCreateRibbonsOptions {
|
|
|
16006
15950
|
|
|
16007
15951
|
declare function createRESTModule$3<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
16008
15952
|
|
|
16009
|
-
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
16010
|
-
|
|
16011
15953
|
declare const createRibbon: ReturnType<typeof createRESTModule$3<typeof publicCreateRibbon>>;
|
|
16012
15954
|
declare const getRibbon: ReturnType<typeof createRESTModule$3<typeof publicGetRibbon>>;
|
|
16013
15955
|
declare const updateRibbon: ReturnType<typeof createRESTModule$3<typeof publicUpdateRibbon>>;
|
|
@@ -16018,9 +15960,6 @@ declare const bulkUpdateRibbons: ReturnType<typeof createRESTModule$3<typeof pub
|
|
|
16018
15960
|
declare const getOrCreateRibbon: ReturnType<typeof createRESTModule$3<typeof publicGetOrCreateRibbon>>;
|
|
16019
15961
|
declare const bulkGetOrCreateRibbons: ReturnType<typeof createRESTModule$3<typeof publicBulkGetOrCreateRibbons>>;
|
|
16020
15962
|
declare const bulkDeleteRibbons: ReturnType<typeof createRESTModule$3<typeof publicBulkDeleteRibbons>>;
|
|
16021
|
-
declare const onRibbonCreated: ReturnType<typeof createEventModule$1<typeof publicOnRibbonCreated>>;
|
|
16022
|
-
declare const onRibbonUpdated: ReturnType<typeof createEventModule$1<typeof publicOnRibbonUpdated>>;
|
|
16023
|
-
declare const onRibbonDeleted: ReturnType<typeof createEventModule$1<typeof publicOnRibbonDeleted>>;
|
|
16024
15963
|
|
|
16025
15964
|
type context$3_ApplicationError = ApplicationError;
|
|
16026
15965
|
type context$3_BulkActionMetadata = BulkActionMetadata;
|
|
@@ -16045,7 +15984,6 @@ type context$3_CreateRibbonResponse = CreateRibbonResponse;
|
|
|
16045
15984
|
type context$3_CreateRibbonResponseNonNullableFields = CreateRibbonResponseNonNullableFields;
|
|
16046
15985
|
type context$3_DeleteRibbonRequest = DeleteRibbonRequest;
|
|
16047
15986
|
type context$3_DeleteRibbonResponse = DeleteRibbonResponse;
|
|
16048
|
-
type context$3_EventMetadata = EventMetadata;
|
|
16049
15987
|
type context$3_GetOrCreateRibbonOptions = GetOrCreateRibbonOptions;
|
|
16050
15988
|
type context$3_GetOrCreateRibbonRequest = GetOrCreateRibbonRequest;
|
|
16051
15989
|
type context$3_GetOrCreateRibbonResponse = GetOrCreateRibbonResponse;
|
|
@@ -16063,10 +16001,7 @@ type context$3_QueryRibbonsResponseNonNullableFields = QueryRibbonsResponseNonNu
|
|
|
16063
16001
|
type context$3_RequestedFields = RequestedFields;
|
|
16064
16002
|
declare const context$3_RequestedFields: typeof RequestedFields;
|
|
16065
16003
|
type context$3_Ribbon = Ribbon;
|
|
16066
|
-
type context$3_RibbonCreatedEnvelope = RibbonCreatedEnvelope;
|
|
16067
|
-
type context$3_RibbonDeletedEnvelope = RibbonDeletedEnvelope;
|
|
16068
16004
|
type context$3_RibbonNonNullableFields = RibbonNonNullableFields;
|
|
16069
|
-
type context$3_RibbonUpdatedEnvelope = RibbonUpdatedEnvelope;
|
|
16070
16005
|
type context$3_RibbonsQueryBuilder = RibbonsQueryBuilder;
|
|
16071
16006
|
type context$3_RibbonsQueryResult = RibbonsQueryResult;
|
|
16072
16007
|
type context$3_UpdateRibbon = UpdateRibbon;
|
|
@@ -16083,13 +16018,10 @@ declare const context$3_createRibbon: typeof createRibbon;
|
|
|
16083
16018
|
declare const context$3_deleteRibbon: typeof deleteRibbon;
|
|
16084
16019
|
declare const context$3_getOrCreateRibbon: typeof getOrCreateRibbon;
|
|
16085
16020
|
declare const context$3_getRibbon: typeof getRibbon;
|
|
16086
|
-
declare const context$3_onRibbonCreated: typeof onRibbonCreated;
|
|
16087
|
-
declare const context$3_onRibbonDeleted: typeof onRibbonDeleted;
|
|
16088
|
-
declare const context$3_onRibbonUpdated: typeof onRibbonUpdated;
|
|
16089
16021
|
declare const context$3_queryRibbons: typeof queryRibbons;
|
|
16090
16022
|
declare const context$3_updateRibbon: typeof updateRibbon;
|
|
16091
16023
|
declare namespace context$3 {
|
|
16092
|
-
export { type ActionEvent$1 as ActionEvent, type App$1 as App, type context$3_ApplicationError as ApplicationError, type
|
|
16024
|
+
export { type ActionEvent$1 as ActionEvent, type App$1 as App, type context$3_ApplicationError as ApplicationError, 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 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_RibbonNonNullableFields as RibbonNonNullableFields, 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, 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_queryRibbons as queryRibbons, context$3_updateRibbon as updateRibbon };
|
|
16093
16025
|
}
|
|
16094
16026
|
|
|
16095
16027
|
interface StoresLocation {
|