@wix/stores 1.0.310 → 1.0.312
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 +9 -9
- package/type-bundles/context.bundle.d.ts +187 -142
- package/type-bundles/index.bundle.d.ts +187 -142
- package/type-bundles/meta.bundle.d.ts +182 -148
|
@@ -801,7 +801,7 @@ interface QueryCollectionsRequest$1 {
|
|
|
801
801
|
}
|
|
802
802
|
interface PlatformQuery$1 extends PlatformQueryPagingMethodOneOf$1 {
|
|
803
803
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
804
|
-
paging?: PlatformPaging$
|
|
804
|
+
paging?: PlatformPaging$2;
|
|
805
805
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
806
806
|
cursorPaging?: CursorPaging$8;
|
|
807
807
|
/** Filter object. */
|
|
@@ -812,7 +812,7 @@ interface PlatformQuery$1 extends PlatformQueryPagingMethodOneOf$1 {
|
|
|
812
812
|
/** @oneof */
|
|
813
813
|
interface PlatformQueryPagingMethodOneOf$1 {
|
|
814
814
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
815
|
-
paging?: PlatformPaging$
|
|
815
|
+
paging?: PlatformPaging$2;
|
|
816
816
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
817
817
|
cursorPaging?: CursorPaging$8;
|
|
818
818
|
}
|
|
@@ -826,7 +826,7 @@ declare enum SortOrder$8 {
|
|
|
826
826
|
ASC = "ASC",
|
|
827
827
|
DESC = "DESC"
|
|
828
828
|
}
|
|
829
|
-
interface PlatformPaging$
|
|
829
|
+
interface PlatformPaging$2 {
|
|
830
830
|
/** Number of items to load. */
|
|
831
831
|
limit?: number | null;
|
|
832
832
|
/** Number of items to skip in the current sort order. */
|
|
@@ -1027,7 +1027,7 @@ type context$b_QueryCollectionsResponseNonNullableFields = QueryCollectionsRespo
|
|
|
1027
1027
|
declare const context$b_getCollection: typeof getCollection;
|
|
1028
1028
|
declare const context$b_queryCollections: typeof queryCollections;
|
|
1029
1029
|
declare namespace context$b {
|
|
1030
|
-
export { type Collection$1 as Collection, type CollectionNonNullableFields$1 as CollectionNonNullableFields, type context$b_CollectionsQueryBuilder as CollectionsQueryBuilder, type context$b_CollectionsQueryResult as CollectionsQueryResult, type CursorPaging$8 as CursorPaging, type Cursors$8 as Cursors, type GetCollectionBySlugRequest$1 as GetCollectionBySlugRequest, type GetCollectionBySlugResponse$1 as GetCollectionBySlugResponse, type GetCollectionBySlugResponseNonNullableFields$1 as GetCollectionBySlugResponseNonNullableFields, type GetCollectionRequest$1 as GetCollectionRequest, type GetCollectionResponse$1 as GetCollectionResponse, type context$b_GetCollectionResponseNonNullableFields as GetCollectionResponseNonNullableFields, type Keyword$2 as Keyword, type Media$3 as Media, type MediaItem$1 as MediaItem, type MediaItemItemOneOf$1 as MediaItemItemOneOf, MediaItemType$1 as MediaItemType, type MediaItemUrlAndSize$1 as MediaItemUrlAndSize, type MediaItemVideo$1 as MediaItemVideo, type PlatformPaging$
|
|
1030
|
+
export { type Collection$1 as Collection, type CollectionNonNullableFields$1 as CollectionNonNullableFields, type context$b_CollectionsQueryBuilder as CollectionsQueryBuilder, type context$b_CollectionsQueryResult as CollectionsQueryResult, type CursorPaging$8 as CursorPaging, type Cursors$8 as Cursors, type GetCollectionBySlugRequest$1 as GetCollectionBySlugRequest, type GetCollectionBySlugResponse$1 as GetCollectionBySlugResponse, type GetCollectionBySlugResponseNonNullableFields$1 as GetCollectionBySlugResponseNonNullableFields, type GetCollectionRequest$1 as GetCollectionRequest, type GetCollectionResponse$1 as GetCollectionResponse, type context$b_GetCollectionResponseNonNullableFields as GetCollectionResponseNonNullableFields, type Keyword$2 as Keyword, type Media$3 as Media, type MediaItem$1 as MediaItem, type MediaItemItemOneOf$1 as MediaItemItemOneOf, MediaItemType$1 as MediaItemType, type MediaItemUrlAndSize$1 as MediaItemUrlAndSize, type MediaItemVideo$1 as MediaItemVideo, type PlatformPaging$2 as PlatformPaging, type PlatformPagingMetadata$1 as PlatformPagingMetadata, type PlatformQuery$1 as PlatformQuery, type PlatformQueryPagingMethodOneOf$1 as PlatformQueryPagingMethodOneOf, type QueryCollectionsRequest$1 as QueryCollectionsRequest, type QueryCollectionsResponse$1 as QueryCollectionsResponse, type context$b_QueryCollectionsResponseNonNullableFields as QueryCollectionsResponseNonNullableFields, type SeoSchema$2 as SeoSchema, type Settings$3 as Settings, SortOrder$8 as SortOrder, type Sorting$8 as Sorting, type Tag$2 as Tag, context$b_getCollection as getCollection, getCollectionBySlug$2 as getCollectionBySlug, context$b_queryCollections as queryCollections };
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
1033
1033
|
interface Product$2 {
|
|
@@ -2115,13 +2115,13 @@ interface QueryProductsRequest$1 {
|
|
|
2115
2115
|
includeMerchantSpecificData?: boolean;
|
|
2116
2116
|
}
|
|
2117
2117
|
interface Query$1 {
|
|
2118
|
-
paging?: Paging$
|
|
2118
|
+
paging?: Paging$3;
|
|
2119
2119
|
/** Filter string */
|
|
2120
2120
|
filter?: string | null;
|
|
2121
2121
|
/** Sort string */
|
|
2122
2122
|
sort?: string | null;
|
|
2123
2123
|
}
|
|
2124
|
-
interface Paging$
|
|
2124
|
+
interface Paging$3 {
|
|
2125
2125
|
/** Amount of items to load per page */
|
|
2126
2126
|
limit?: number | null;
|
|
2127
2127
|
/** Number of items to skip in the display (relevant for all pages after the first) */
|
|
@@ -2143,7 +2143,7 @@ interface QueryProductsPlatformizedRequest {
|
|
|
2143
2143
|
}
|
|
2144
2144
|
interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
2145
2145
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
2146
|
-
paging?: PlatformPaging$
|
|
2146
|
+
paging?: PlatformPaging$1;
|
|
2147
2147
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
2148
2148
|
cursorPaging?: CursorPaging$7;
|
|
2149
2149
|
/** Filter object. */
|
|
@@ -2154,7 +2154,7 @@ interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
|
2154
2154
|
/** @oneof */
|
|
2155
2155
|
interface PlatformQueryPagingMethodOneOf {
|
|
2156
2156
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
2157
|
-
paging?: PlatformPaging$
|
|
2157
|
+
paging?: PlatformPaging$1;
|
|
2158
2158
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
2159
2159
|
cursorPaging?: CursorPaging$7;
|
|
2160
2160
|
}
|
|
@@ -2168,7 +2168,7 @@ declare enum SortOrder$7 {
|
|
|
2168
2168
|
ASC = "ASC",
|
|
2169
2169
|
DESC = "DESC"
|
|
2170
2170
|
}
|
|
2171
|
-
interface PlatformPaging$
|
|
2171
|
+
interface PlatformPaging$1 {
|
|
2172
2172
|
/** Number of items to load. */
|
|
2173
2173
|
limit?: number | null;
|
|
2174
2174
|
/** Number of items to skip in the current sort order. */
|
|
@@ -2343,7 +2343,7 @@ interface QueryProductVariantsRequest {
|
|
|
2343
2343
|
choices?: Record<string, string>;
|
|
2344
2344
|
/** List of variant IDs (not relevant when passing choices). */
|
|
2345
2345
|
variantIds?: string[];
|
|
2346
|
-
paging?: Paging$
|
|
2346
|
+
paging?: Paging$3;
|
|
2347
2347
|
/** Whether merchant specific data should be included in the response. Requires permissions to manage products. */
|
|
2348
2348
|
includeMerchantSpecificData?: boolean;
|
|
2349
2349
|
}
|
|
@@ -3105,7 +3105,7 @@ interface QueryProductVariantsOptions {
|
|
|
3105
3105
|
choices?: Record<string, string>;
|
|
3106
3106
|
/** List of variant IDs (not relevant when passing choices). */
|
|
3107
3107
|
variantIds?: string[];
|
|
3108
|
-
paging?: Paging$
|
|
3108
|
+
paging?: Paging$3;
|
|
3109
3109
|
/** Whether merchant specific data should be included in the response. Requires permissions to manage products. */
|
|
3110
3110
|
includeMerchantSpecificData?: boolean;
|
|
3111
3111
|
}
|
|
@@ -3611,7 +3611,7 @@ declare const context$a_resetAllProductVariantData: typeof resetAllProductVarian
|
|
|
3611
3611
|
declare const context$a_updateCollection: typeof updateCollection;
|
|
3612
3612
|
declare const context$a_updateProductVariants: typeof updateProductVariants;
|
|
3613
3613
|
declare namespace context$a {
|
|
3614
|
-
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 FocalPoint$1 as FocalPoint, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type context$a_PagingWithBigLimit as PagingWithBigLimit, type context$a_PercentageData as PercentageData, type context$a_PlatformMedia as PlatformMedia, type context$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type context$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type context$a_ProductOption as ProductOption, type context$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type context$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type context$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type context$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type context$a_PropertyAdjustmentData as PropertyAdjustmentData, type context$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type context$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type context$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type context$a_QueryCollectionsRequest as QueryCollectionsRequest, type context$a_QueryCollectionsResponse as QueryCollectionsResponse, type context$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type context$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type context$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type context$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type context$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type context$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type context$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type context$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type context$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type context$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type context$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type context$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type context$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type context$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type context$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type context$a_ReCloneStoreRequest as ReCloneStoreRequest, type context$a_ReCloneStoreResponse as ReCloneStoreResponse, type context$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type context$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type context$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type context$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type context$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type context$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type context$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type context$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type context$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type context$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type context$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type context$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type context$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type context$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type context$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type context$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type context$a_SetValue as SetValue, type context$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type context$a_Stock as Stock, type context$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type context$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type context$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type context$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type context$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type context$a_UpdateCollection as UpdateCollection, type context$a_UpdateCollectionRequest as UpdateCollectionRequest, type context$a_UpdateCollectionResponse as UpdateCollectionResponse, type context$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type UpdateProduct$1 as UpdateProduct, type context$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type context$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type context$a_UpdateVariantsRequest as UpdateVariantsRequest, type context$a_UpdateVariantsResponse as UpdateVariantsResponse, type context$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type context$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type context$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type context$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type context$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type context$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type context$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type context$a_VariantChanged as VariantChanged, type context$a_VariantData as VariantData, type context$a_VariantDataWithNoStock as VariantDataWithNoStock, type context$a_VariantOverride as VariantOverride, type context$a_VariantStock as VariantStock, type context$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type context$a__publicOnProductChangedType as _publicOnProductChangedType, type context$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type context$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type context$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type context$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, context$a_addProductMedia as addProductMedia, context$a_addProductMediaToChoices as addProductMediaToChoices, context$a_addProductsToCollection as addProductsToCollection, context$a_bulkAdjustProductProperty as bulkAdjustProductProperty, context$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, context$a_createCollection as createCollection, createProduct$2 as createProduct, context$a_deleteCollection as deleteCollection, deleteProduct$2 as deleteProduct, context$a_deleteProductOptions as deleteProductOptions, context$a_getCollectionBySlug as getCollectionBySlug, getProduct$2 as getProduct, context$a_getProductOptionsAvailability as getProductOptionsAvailability, context$a_getStoreVariant as getStoreVariant, context$a_onProductChanged as onProductChanged, context$a_onProductCollectionChanged as onProductCollectionChanged, context$a_onProductCollectionCreated as onProductCollectionCreated, context$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, context$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, onProductCreated$3 as publicOnProductCreated, onProductDeleted$3 as publicOnProductDeleted, onProductVariantsChanged$1 as publicOnProductVariantsChanged, context$a_queryProductVariants as queryProductVariants, queryProducts$2 as queryProducts, context$a_queryStoreVariants as queryStoreVariants, context$a_removeBrand as removeBrand, context$a_removeProductMedia as removeProductMedia, context$a_removeProductMediaFromChoices as removeProductMediaFromChoices, context$a_removeProductsFromCollection as removeProductsFromCollection, context$a_removeRibbon as removeRibbon, context$a_resetAllProductVariantData as resetAllProductVariantData, context$a_updateCollection as updateCollection, updateProduct$2 as updateProduct, context$a_updateProductVariants as updateProductVariants };
|
|
3614
|
+
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 FocalPoint$1 as FocalPoint, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$3 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$1 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type context$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type context$a_ProductOption as ProductOption, type context$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type context$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type context$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type context$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type context$a_PropertyAdjustmentData as PropertyAdjustmentData, type context$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type context$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type context$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type context$a_QueryCollectionsRequest as QueryCollectionsRequest, type context$a_QueryCollectionsResponse as QueryCollectionsResponse, type context$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type context$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type context$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type context$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type context$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type context$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type context$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type context$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type context$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type context$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type context$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type context$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type context$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type context$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type context$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type context$a_ReCloneStoreRequest as ReCloneStoreRequest, type context$a_ReCloneStoreResponse as ReCloneStoreResponse, type context$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type context$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type context$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type context$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type context$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type context$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type context$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type context$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type context$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type context$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type context$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type context$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type context$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type context$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type context$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type context$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type context$a_SetValue as SetValue, type context$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type context$a_Stock as Stock, type context$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type context$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type context$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type context$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type context$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type context$a_UpdateCollection as UpdateCollection, type context$a_UpdateCollectionRequest as UpdateCollectionRequest, type context$a_UpdateCollectionResponse as UpdateCollectionResponse, type context$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type UpdateProduct$1 as UpdateProduct, type context$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type context$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type context$a_UpdateVariantsRequest as UpdateVariantsRequest, type context$a_UpdateVariantsResponse as UpdateVariantsResponse, type context$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type context$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type context$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type context$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type context$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type context$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type context$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type context$a_VariantChanged as VariantChanged, type context$a_VariantData as VariantData, type context$a_VariantDataWithNoStock as VariantDataWithNoStock, type context$a_VariantOverride as VariantOverride, type context$a_VariantStock as VariantStock, type context$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type context$a__publicOnProductChangedType as _publicOnProductChangedType, type context$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type context$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type context$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type context$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, context$a_addProductMedia as addProductMedia, context$a_addProductMediaToChoices as addProductMediaToChoices, context$a_addProductsToCollection as addProductsToCollection, context$a_bulkAdjustProductProperty as bulkAdjustProductProperty, context$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, context$a_createCollection as createCollection, createProduct$2 as createProduct, context$a_deleteCollection as deleteCollection, deleteProduct$2 as deleteProduct, context$a_deleteProductOptions as deleteProductOptions, context$a_getCollectionBySlug as getCollectionBySlug, getProduct$2 as getProduct, context$a_getProductOptionsAvailability as getProductOptionsAvailability, context$a_getStoreVariant as getStoreVariant, context$a_onProductChanged as onProductChanged, context$a_onProductCollectionChanged as onProductCollectionChanged, context$a_onProductCollectionCreated as onProductCollectionCreated, context$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, context$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, onProductCreated$3 as publicOnProductCreated, onProductDeleted$3 as publicOnProductDeleted, onProductVariantsChanged$1 as publicOnProductVariantsChanged, context$a_queryProductVariants as queryProductVariants, queryProducts$2 as queryProducts, context$a_queryStoreVariants as queryStoreVariants, context$a_removeBrand as removeBrand, context$a_removeProductMedia as removeProductMedia, context$a_removeProductMediaFromChoices as removeProductMediaFromChoices, context$a_removeProductsFromCollection as removeProductsFromCollection, context$a_removeRibbon as removeRibbon, context$a_resetAllProductVariantData as resetAllProductVariantData, context$a_updateCollection as updateCollection, updateProduct$2 as updateProduct, context$a_updateProductVariants as updateProductVariants };
|
|
3615
3615
|
}
|
|
3616
3616
|
|
|
3617
3617
|
/**
|
|
@@ -3799,7 +3799,9 @@ interface Sorting$6 {
|
|
|
3799
3799
|
order?: SortOrder$6;
|
|
3800
3800
|
}
|
|
3801
3801
|
declare enum SortOrder$6 {
|
|
3802
|
+
/** Ascending order. */
|
|
3802
3803
|
ASC = "ASC",
|
|
3804
|
+
/** Descending order. */
|
|
3803
3805
|
DESC = "DESC"
|
|
3804
3806
|
}
|
|
3805
3807
|
interface CursorPaging$6 {
|
|
@@ -4708,9 +4710,13 @@ interface ChoiceValueOneOf {
|
|
|
4708
4710
|
}
|
|
4709
4711
|
declare enum ChoiceType$1 {
|
|
4710
4712
|
UNKNOWN_CHOICE_TYPE = "UNKNOWN_CHOICE_TYPE",
|
|
4713
|
+
/** For a `customizationRenderType` of `TEXT_CHOICES` and `FREE_TEXT`. */
|
|
4711
4714
|
CHOICE_TEXT = "CHOICE_TEXT",
|
|
4715
|
+
/** For `customizationRenderType: SWATCH_CHOICES`. */
|
|
4712
4716
|
ONE_COLOR = "ONE_COLOR",
|
|
4717
|
+
/** For `customizationRenderType: SWATCH_CHOICES`. */
|
|
4713
4718
|
MULTIPLE_COLORS = "MULTIPLE_COLORS",
|
|
4719
|
+
/** For `customizationRenderType: SWATCH_CHOICES`. */
|
|
4714
4720
|
IMAGE = "IMAGE"
|
|
4715
4721
|
}
|
|
4716
4722
|
interface MultipleColors$1 {
|
|
@@ -4804,7 +4810,9 @@ interface GetCustomizationRequest {
|
|
|
4804
4810
|
fields?: RequestedFields$3[];
|
|
4805
4811
|
}
|
|
4806
4812
|
declare enum RequestedFields$3 {
|
|
4813
|
+
/** Unknown requested field. */
|
|
4807
4814
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
4815
|
+
/** Assigned products count. */
|
|
4808
4816
|
ASSIGNED_PRODUCTS_COUNT = "ASSIGNED_PRODUCTS_COUNT"
|
|
4809
4817
|
}
|
|
4810
4818
|
interface GetCustomizationResponse {
|
|
@@ -4871,7 +4879,9 @@ interface Sorting$5 {
|
|
|
4871
4879
|
order?: SortOrder$5;
|
|
4872
4880
|
}
|
|
4873
4881
|
declare enum SortOrder$5 {
|
|
4882
|
+
/** Ascending order. */
|
|
4874
4883
|
ASC = "ASC",
|
|
4884
|
+
/** Descending order. */
|
|
4875
4885
|
DESC = "DESC"
|
|
4876
4886
|
}
|
|
4877
4887
|
interface CursorPaging$5 {
|
|
@@ -8392,14 +8402,11 @@ interface InventoryItemTrackingMethodOneOf$1 {
|
|
|
8392
8402
|
}
|
|
8393
8403
|
declare enum AvailabilityStatus$1 {
|
|
8394
8404
|
UNKNOWN_AVAILABILITY_STATUS = "UNKNOWN_AVAILABILITY_STATUS",
|
|
8405
|
+
/** Product is out of stock. */
|
|
8395
8406
|
OUT_OF_STOCK = "OUT_OF_STOCK",
|
|
8407
|
+
/** Product is in stock. See `quantity` field for exact amount in stock. */
|
|
8396
8408
|
IN_STOCK = "IN_STOCK",
|
|
8397
|
-
/**
|
|
8398
|
-
* Whether the variant is available for preorder. InventoryItem will be available only when all below conditions are met:
|
|
8399
|
-
* 1. the variant is out of stock
|
|
8400
|
-
* 2. preorder is enabled on inventory item level (preorder_setting.enabled is true)
|
|
8401
|
-
* 3. preorder limit wasn't reached (preorder_setting.limit)
|
|
8402
|
-
*/
|
|
8409
|
+
/** Product is only available for preorder. See `preorderInfo` field for more info. */
|
|
8403
8410
|
PREORDER = "PREORDER"
|
|
8404
8411
|
}
|
|
8405
8412
|
interface PreorderInfo$2 {
|
|
@@ -8732,34 +8739,32 @@ interface BulkInventoryItemResult$1 {
|
|
|
8732
8739
|
}
|
|
8733
8740
|
interface QueryInventoryItemsRequest {
|
|
8734
8741
|
/** Query options. */
|
|
8735
|
-
query?:
|
|
8742
|
+
query?: QueryV2;
|
|
8736
8743
|
}
|
|
8737
|
-
interface
|
|
8738
|
-
/**
|
|
8739
|
-
paging?:
|
|
8740
|
-
/** Cursor pointing to page of results.
|
|
8741
|
-
cursorPaging?:
|
|
8744
|
+
interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
8745
|
+
/** Paging options to limit and skip the number of items. */
|
|
8746
|
+
paging?: Paging$2;
|
|
8747
|
+
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
8748
|
+
cursorPaging?: CursorPaging$3;
|
|
8742
8749
|
/**
|
|
8743
|
-
* Filter object
|
|
8744
|
-
*
|
|
8745
|
-
*
|
|
8746
|
-
* "fieldName2":{"$operator":"value2"}
|
|
8747
|
-
* }`
|
|
8748
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
8750
|
+
* Filter object.
|
|
8751
|
+
*
|
|
8752
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
8749
8753
|
*/
|
|
8750
8754
|
filter?: Record<string, any> | null;
|
|
8751
8755
|
/**
|
|
8752
|
-
* Sort object
|
|
8753
|
-
*
|
|
8756
|
+
* Sort object.
|
|
8757
|
+
*
|
|
8758
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
8754
8759
|
*/
|
|
8755
8760
|
sort?: Sorting$3[];
|
|
8756
8761
|
}
|
|
8757
8762
|
/** @oneof */
|
|
8758
|
-
interface
|
|
8759
|
-
/**
|
|
8760
|
-
paging?:
|
|
8761
|
-
/** Cursor pointing to page of results.
|
|
8762
|
-
cursorPaging?:
|
|
8763
|
+
interface QueryV2PagingMethodOneOf {
|
|
8764
|
+
/** Paging options to limit and skip the number of items. */
|
|
8765
|
+
paging?: Paging$2;
|
|
8766
|
+
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
8767
|
+
cursorPaging?: CursorPaging$3;
|
|
8763
8768
|
}
|
|
8764
8769
|
interface Sorting$3 {
|
|
8765
8770
|
/** Name of the field to sort by. */
|
|
@@ -8771,22 +8776,19 @@ declare enum SortOrder$3 {
|
|
|
8771
8776
|
ASC = "ASC",
|
|
8772
8777
|
DESC = "DESC"
|
|
8773
8778
|
}
|
|
8774
|
-
interface
|
|
8779
|
+
interface Paging$2 {
|
|
8775
8780
|
/** Number of items to load. */
|
|
8776
8781
|
limit?: number | null;
|
|
8777
8782
|
/** Number of items to skip in the current sort order. */
|
|
8778
8783
|
offset?: number | null;
|
|
8779
8784
|
}
|
|
8780
|
-
interface
|
|
8781
|
-
/**
|
|
8782
|
-
* Number of items to load.
|
|
8783
|
-
* Cursor token returned in the query response. To be used on the next query request, but not the first query request.
|
|
8784
|
-
*/
|
|
8785
|
+
interface CursorPaging$3 {
|
|
8786
|
+
/** Maximum number of items to return in the results. */
|
|
8785
8787
|
limit?: number | null;
|
|
8786
8788
|
/**
|
|
8787
8789
|
* Pointer to the next or previous page in the list of results.
|
|
8788
|
-
*
|
|
8789
|
-
* from the `pagingMetadata` object in the previous call's response.
|
|
8790
|
+
*
|
|
8791
|
+
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
8790
8792
|
* Not relevant for the first request.
|
|
8791
8793
|
*/
|
|
8792
8794
|
cursor?: string | null;
|
|
@@ -8801,9 +8803,9 @@ interface PlatformPagingMetadataV2 {
|
|
|
8801
8803
|
/** The number of items returned in this response. */
|
|
8802
8804
|
count?: number | null;
|
|
8803
8805
|
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
8804
|
-
cursors?:
|
|
8806
|
+
cursors?: CommonCursors$1;
|
|
8805
8807
|
}
|
|
8806
|
-
interface
|
|
8808
|
+
interface CommonCursors$1 {
|
|
8807
8809
|
/** Cursor string pointing to the next page in the list of results. */
|
|
8808
8810
|
next?: string | null;
|
|
8809
8811
|
/** Cursor pointing to the previous page in the list of results. */
|
|
@@ -9050,17 +9052,6 @@ interface GroupByAggregationKindOneOf$1 {
|
|
|
9050
9052
|
/** Value aggregation configuration. */
|
|
9051
9053
|
value?: ValueAggregation$1;
|
|
9052
9054
|
}
|
|
9053
|
-
interface CursorPaging$3 {
|
|
9054
|
-
/** Maximum number of items to return in the results. */
|
|
9055
|
-
limit?: number | null;
|
|
9056
|
-
/**
|
|
9057
|
-
* Pointer to the next or previous page in the list of results.
|
|
9058
|
-
*
|
|
9059
|
-
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
9060
|
-
* Not relevant for the first request.
|
|
9061
|
-
*/
|
|
9062
|
-
cursor?: string | null;
|
|
9063
|
-
}
|
|
9064
9055
|
interface SearchInventoryItemsResponse {
|
|
9065
9056
|
/** List of inventory items. */
|
|
9066
9057
|
inventoryItems?: InventoryItem$1[];
|
|
@@ -9082,6 +9073,12 @@ interface CursorPagingMetadata$3 {
|
|
|
9082
9073
|
*/
|
|
9083
9074
|
hasNext?: boolean | null;
|
|
9084
9075
|
}
|
|
9076
|
+
interface Cursors$3 {
|
|
9077
|
+
/** Cursor string pointing to the next page in the list of results. */
|
|
9078
|
+
next?: string | null;
|
|
9079
|
+
/** Cursor pointing to the previous page in the list of results. */
|
|
9080
|
+
prev?: string | null;
|
|
9081
|
+
}
|
|
9085
9082
|
interface AggregationData$1 {
|
|
9086
9083
|
/** key = aggregation name (as derived from search request). */
|
|
9087
9084
|
results?: AggregationResults$1[];
|
|
@@ -9245,30 +9242,46 @@ interface AggregationResultsResultOneOf$1 {
|
|
|
9245
9242
|
}
|
|
9246
9243
|
interface SearchInventoryItemsWithOffsetRequest {
|
|
9247
9244
|
/** WQL expression. */
|
|
9248
|
-
search?:
|
|
9245
|
+
search?: OffsetSearch;
|
|
9249
9246
|
}
|
|
9250
|
-
interface
|
|
9251
|
-
/** Pointer to page of results using offset. Can
|
|
9252
|
-
paging?:
|
|
9253
|
-
/**
|
|
9247
|
+
interface OffsetSearch extends OffsetSearchPagingMethodOneOf {
|
|
9248
|
+
/** Pointer to page of results using offset. Can't be used together with 'cursor_paging'. */
|
|
9249
|
+
paging?: Paging$2;
|
|
9250
|
+
/**
|
|
9251
|
+
* Filter object.
|
|
9252
|
+
*
|
|
9253
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
9254
|
+
*/
|
|
9254
9255
|
filter?: Record<string, any> | null;
|
|
9255
|
-
/**
|
|
9256
|
+
/**
|
|
9257
|
+
* Sort object.
|
|
9258
|
+
*
|
|
9259
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
9260
|
+
*/
|
|
9256
9261
|
sort?: Sorting$3[];
|
|
9262
|
+
/** Projection on the result object - list of specific field names to return. If fieldsets are also specified, return the union of fieldsets and fields. */
|
|
9263
|
+
fields?: string[];
|
|
9264
|
+
/** Projection on the result object - list of named projections. For example, "basic" will return ID and name fields. Specifying multiple fieldsets will return the union of fields from all. Specifying fieldsets and fields will also return the union of fields. */
|
|
9265
|
+
fieldsets?: string[];
|
|
9257
9266
|
/** Aggregations | Faceted search: refers to a way to explore large amounts of data by displaying summaries about various partitions of the data and later allowing to narrow the navigation to a specific partition. */
|
|
9258
9267
|
aggregations?: Aggregation$1[];
|
|
9259
|
-
/**
|
|
9268
|
+
/** Free text to match in searchable fields. */
|
|
9260
9269
|
search?: SearchDetails$1;
|
|
9270
|
+
/**
|
|
9271
|
+
* UTC offset or IANA time zone. Valid values are
|
|
9272
|
+
* ISO 8601 UTC offsets, such as +02:00 or -06:00,
|
|
9273
|
+
* and IANA time zone IDs, such as Europe/Rome.
|
|
9274
|
+
*
|
|
9275
|
+
* Affects all filters and aggregations returned values.
|
|
9276
|
+
* You may override this behavior in a specific filter by providing
|
|
9277
|
+
* timestamps including time zone. For example, `"2023-12-20T10:52:34.795Z"`.
|
|
9278
|
+
*/
|
|
9279
|
+
timeZone?: string | null;
|
|
9261
9280
|
}
|
|
9262
9281
|
/** @oneof */
|
|
9263
|
-
interface
|
|
9264
|
-
/** Pointer to page of results using offset. Can
|
|
9265
|
-
paging?:
|
|
9266
|
-
}
|
|
9267
|
-
interface PlatformPaging$1 {
|
|
9268
|
-
/** Number of items to load. */
|
|
9269
|
-
limit?: number | null;
|
|
9270
|
-
/** Number of items to skip in the current sort order. */
|
|
9271
|
-
offset?: number | null;
|
|
9282
|
+
interface OffsetSearchPagingMethodOneOf {
|
|
9283
|
+
/** Pointer to page of results using offset. Can't be used together with 'cursor_paging'. */
|
|
9284
|
+
paging?: Paging$2;
|
|
9272
9285
|
}
|
|
9273
9286
|
interface SearchInventoryItemsWithOffsetResponse {
|
|
9274
9287
|
/** InventoryItems which satisfy the provided query. */
|
|
@@ -10246,7 +10259,6 @@ type context$6_GetInventoryItemResponse = GetInventoryItemResponse;
|
|
|
10246
10259
|
type context$6_GetInventoryItemResponseNonNullableFields = GetInventoryItemResponseNonNullableFields;
|
|
10247
10260
|
type context$6_IncrementDataById = IncrementDataById;
|
|
10248
10261
|
type context$6_IncrementDataByVariantAndLocation = IncrementDataByVariantAndLocation;
|
|
10249
|
-
type context$6_InventoryCursorPaging = InventoryCursorPaging;
|
|
10250
10262
|
type context$6_InventoryItemCreatedEnvelope = InventoryItemCreatedEnvelope;
|
|
10251
10263
|
type context$6_InventoryItemDeletedEnvelope = InventoryItemDeletedEnvelope;
|
|
10252
10264
|
type context$6_InventoryItemStockStatusUpdatedEnvelope = InventoryItemStockStatusUpdatedEnvelope;
|
|
@@ -10256,15 +10268,16 @@ type context$6_InventoryItemUpdatedWithReason = InventoryItemUpdatedWithReason;
|
|
|
10256
10268
|
type context$6_InventoryItemUpdatedWithReasonEnvelope = InventoryItemUpdatedWithReasonEnvelope;
|
|
10257
10269
|
type context$6_InventoryItemsQueryBuilder = InventoryItemsQueryBuilder;
|
|
10258
10270
|
type context$6_InventoryItemsQueryResult = InventoryItemsQueryResult;
|
|
10259
|
-
type context$6_InventoryPaging = InventoryPaging;
|
|
10260
|
-
type context$6_InventoryQuery = InventoryQuery;
|
|
10261
|
-
type context$6_InventoryQueryPagingMethodOneOf = InventoryQueryPagingMethodOneOf;
|
|
10262
10271
|
type context$6_MaskedInventoryItem = MaskedInventoryItem;
|
|
10272
|
+
type context$6_OffsetSearch = OffsetSearch;
|
|
10273
|
+
type context$6_OffsetSearchPagingMethodOneOf = OffsetSearchPagingMethodOneOf;
|
|
10263
10274
|
type context$6_PlatformPagingMetadataV2 = PlatformPagingMetadataV2;
|
|
10264
10275
|
type context$6_ProductInventoryItems = ProductInventoryItems;
|
|
10265
10276
|
type context$6_QueryInventoryItemsRequest = QueryInventoryItemsRequest;
|
|
10266
10277
|
type context$6_QueryInventoryItemsResponse = QueryInventoryItemsResponse;
|
|
10267
10278
|
type context$6_QueryInventoryItemsResponseNonNullableFields = QueryInventoryItemsResponseNonNullableFields;
|
|
10279
|
+
type context$6_QueryV2 = QueryV2;
|
|
10280
|
+
type context$6_QueryV2PagingMethodOneOf = QueryV2PagingMethodOneOf;
|
|
10268
10281
|
type context$6_SearchInventoryItemsOptions = SearchInventoryItemsOptions;
|
|
10269
10282
|
type context$6_SearchInventoryItemsRequest = SearchInventoryItemsRequest;
|
|
10270
10283
|
type context$6_SearchInventoryItemsResponse = SearchInventoryItemsResponse;
|
|
@@ -10302,7 +10315,7 @@ declare const context$6_queryInventoryItems: typeof queryInventoryItems;
|
|
|
10302
10315
|
declare const context$6_searchInventoryItems: typeof searchInventoryItems;
|
|
10303
10316
|
declare const context$6_updateInventoryItem: typeof updateInventoryItem;
|
|
10304
10317
|
declare namespace context$6 {
|
|
10305
|
-
export { type ActionEvent$3 as ActionEvent, type context$6_AdjustInventoryAction as AdjustInventoryAction, type context$6_AdjustInventoryActionActionOneOf as AdjustInventoryActionActionOneOf, type Aggregation$1 as Aggregation, type AggregationData$1 as AggregationData, type AggregationKindOneOf$1 as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type AggregationResultsScalarResult$1 as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type App$3 as App, type ApplicationError$2 as ApplicationError, AvailabilityStatus$1 as AvailabilityStatus, type BaseEventMetadata$3 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type context$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type context$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type context$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type context$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type context$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type context$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type context$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type context$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type context$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type context$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type context$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type context$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type context$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type context$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type context$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type context$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type context$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type context$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type context$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type context$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type context$6_CreateInventoryItemRequest as CreateInventoryItemRequest, type context$6_CreateInventoryItemResponse as CreateInventoryItemResponse, type context$6_CreateInventoryItemResponseNonNullableFields as CreateInventoryItemResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$3 as Cursors, type DateHistogramAggregation$1 as DateHistogramAggregation, type DateHistogramResult$1 as DateHistogramResult, type DateHistogramResults$1 as DateHistogramResults, type context$6_DecrementDataById as DecrementDataById, type context$6_DecrementDataByVariantAndLocation as DecrementDataByVariantAndLocation, type context$6_DeleteInventoryItemRequest as DeleteInventoryItemRequest, type context$6_DeleteInventoryItemResponse as DeleteInventoryItemResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type File$3 as File, type context$6_GetInventoryItemRequest as GetInventoryItemRequest, type context$6_GetInventoryItemResponse as GetInventoryItemResponse, type context$6_GetInventoryItemResponseNonNullableFields as GetInventoryItemResponseNonNullableFields, type GroupByAggregation$1 as GroupByAggregation, type GroupByAggregationKindOneOf$1 as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type IncludeMissingValuesOptions$1 as IncludeMissingValuesOptions, type context$6_IncrementDataById as IncrementDataById, type context$6_IncrementDataByVariantAndLocation as IncrementDataByVariantAndLocation, Interval$1 as Interval, type InvalidateCache$3 as InvalidateCache, type InvalidateCacheGetByOneOf$3 as InvalidateCacheGetByOneOf, type context$6_InventoryCursorPaging as InventoryCursorPaging, type InventoryItem$1 as InventoryItem, type context$6_InventoryItemCreatedEnvelope as InventoryItemCreatedEnvelope, type context$6_InventoryItemDeletedEnvelope as InventoryItemDeletedEnvelope, type InventoryItemNonNullableFields$1 as InventoryItemNonNullableFields, type context$6_InventoryItemStockStatusUpdatedEnvelope as InventoryItemStockStatusUpdatedEnvelope, type context$6_InventoryItemStockStatusUpdatedEvent as InventoryItemStockStatusUpdatedEvent, type InventoryItemTrackingMethodOneOf$1 as InventoryItemTrackingMethodOneOf, type context$6_InventoryItemUpdatedEnvelope as InventoryItemUpdatedEnvelope, type context$6_InventoryItemUpdatedWithReason as InventoryItemUpdatedWithReason, type context$6_InventoryItemUpdatedWithReasonEnvelope as InventoryItemUpdatedWithReasonEnvelope, type context$6_InventoryItemsQueryBuilder as InventoryItemsQueryBuilder, type context$6_InventoryItemsQueryResult as InventoryItemsQueryResult, type context$6_InventoryPaging as InventoryPaging, type context$6_InventoryQuery as InventoryQuery, type context$6_InventoryQueryPagingMethodOneOf as InventoryQueryPagingMethodOneOf, type ItemMetadata$2 as ItemMetadata, type context$6_MaskedInventoryItem as MaskedInventoryItem, type MessageEnvelope$5 as MessageEnvelope, MissingValues$1 as MissingValues, Mode$1 as Mode, type NestedAggregation$1 as NestedAggregation, type NestedAggregationItem$1 as NestedAggregationItem, type NestedAggregationItemKindOneOf$1 as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, NestedAggregationType$1 as NestedAggregationType, type NestedResultValue$1 as NestedResultValue, type NestedResultValueResultOneOf$1 as NestedResultValueResultOneOf, type NestedResults$1 as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type Page$3 as Page, type PagingMetadata$3 as PagingMetadata, type PlatformOffsetSearch$1 as PlatformOffsetSearch, type PlatformOffsetSearchPagingMethodOneOf$1 as PlatformOffsetSearchPagingMethodOneOf, type PlatformPaging$1 as PlatformPaging, type context$6_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type PreorderInfo$2 as PreorderInfo, type Product$1 as Product, type context$6_ProductInventoryItems as ProductInventoryItems, type context$6_QueryInventoryItemsRequest as QueryInventoryItemsRequest, type context$6_QueryInventoryItemsResponse as QueryInventoryItemsResponse, type context$6_QueryInventoryItemsResponseNonNullableFields as QueryInventoryItemsResponseNonNullableFields, type RangeAggregation$1 as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type RangeBucket$1 as RangeBucket, type RangeResult$1 as RangeResult, type RangeResults$1 as RangeResults, ReasonType$1 as ReasonType, type RestoreInfo$3 as RestoreInfo, type Results$1 as Results, type ScalarAggregation$1 as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type SearchDetails$1 as SearchDetails, type context$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type context$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type context$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type context$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type context$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type context$6_SearchInventoryItemsWithOffsetResponse as SearchInventoryItemsWithOffsetResponse, SortDirection$1 as SortDirection, SortOrder$3 as SortOrder, SortType$1 as SortType, type Sorting$3 as Sorting, type URI$3 as URI, type context$6_UpdateInventoryItem as UpdateInventoryItem, type context$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type context$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type context$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type context$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type context$6_V3BulkInventoryItemResult as V3BulkInventoryItemResult, type ValueAggregation$1 as ValueAggregation, type ValueAggregationOptionsOneOf$1 as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type ValueResult$1 as ValueResult, type ValueResults$1 as ValueResults, WebhookIdentityType$5 as WebhookIdentityType, type context$6__publicOnInventoryItemCreatedType as _publicOnInventoryItemCreatedType, type context$6__publicOnInventoryItemDeletedType as _publicOnInventoryItemDeletedType, type context$6__publicOnInventoryItemStockStatusUpdatedType as _publicOnInventoryItemStockStatusUpdatedType, type context$6__publicOnInventoryItemUpdatedType as _publicOnInventoryItemUpdatedType, type context$6__publicOnInventoryItemUpdatedWithReasonType as _publicOnInventoryItemUpdatedWithReasonType, context$6_bulkCreateInventoryItems as bulkCreateInventoryItems, context$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, context$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, context$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, context$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, context$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, context$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, context$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, context$6_createInventoryItem as createInventoryItem, context$6_deleteInventoryItem as deleteInventoryItem, context$6_getInventoryItem as getInventoryItem, context$6_onInventoryItemCreated as onInventoryItemCreated, context$6_onInventoryItemDeleted as onInventoryItemDeleted, context$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, context$6_onInventoryItemUpdated as onInventoryItemUpdated, context$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, onInventoryItemCreated$1 as publicOnInventoryItemCreated, onInventoryItemDeleted$1 as publicOnInventoryItemDeleted, onInventoryItemStockStatusUpdated$1 as publicOnInventoryItemStockStatusUpdated, onInventoryItemUpdated$1 as publicOnInventoryItemUpdated, onInventoryItemUpdatedWithReason$1 as publicOnInventoryItemUpdatedWithReason, context$6_queryInventoryItems as queryInventoryItems, context$6_searchInventoryItems as searchInventoryItems, context$6_updateInventoryItem as updateInventoryItem };
|
|
10318
|
+
export { type ActionEvent$3 as ActionEvent, type context$6_AdjustInventoryAction as AdjustInventoryAction, type context$6_AdjustInventoryActionActionOneOf as AdjustInventoryActionActionOneOf, type Aggregation$1 as Aggregation, type AggregationData$1 as AggregationData, type AggregationKindOneOf$1 as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type AggregationResultsScalarResult$1 as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type App$3 as App, type ApplicationError$2 as ApplicationError, AvailabilityStatus$1 as AvailabilityStatus, type BaseEventMetadata$3 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type context$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type context$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type context$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type context$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type context$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type context$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type context$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type context$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type context$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type context$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type context$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type context$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type context$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type context$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type context$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type context$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type context$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type context$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type context$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type context$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type CommonCursors$1 as CommonCursors, 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 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 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 context$6_OffsetSearch as OffsetSearch, type context$6_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type Page$3 as Page, type Paging$2 as Paging, type PagingMetadata$3 as PagingMetadata, 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 context$6_QueryV2 as QueryV2, type context$6_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RangeAggregation$1 as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type RangeBucket$1 as RangeBucket, type RangeResult$1 as RangeResult, type RangeResults$1 as RangeResults, ReasonType$1 as ReasonType, type RestoreInfo$3 as RestoreInfo, type Results$1 as Results, type ScalarAggregation$1 as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type SearchDetails$1 as SearchDetails, type context$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type context$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type context$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type context$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type context$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type context$6_SearchInventoryItemsWithOffsetResponse as SearchInventoryItemsWithOffsetResponse, SortDirection$1 as SortDirection, SortOrder$3 as SortOrder, SortType$1 as SortType, type Sorting$3 as Sorting, type URI$3 as URI, type context$6_UpdateInventoryItem as UpdateInventoryItem, type context$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type context$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type context$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type context$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type context$6_V3BulkInventoryItemResult as V3BulkInventoryItemResult, type ValueAggregation$1 as ValueAggregation, type ValueAggregationOptionsOneOf$1 as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type ValueResult$1 as ValueResult, type ValueResults$1 as ValueResults, WebhookIdentityType$5 as WebhookIdentityType, type context$6__publicOnInventoryItemCreatedType as _publicOnInventoryItemCreatedType, type context$6__publicOnInventoryItemDeletedType as _publicOnInventoryItemDeletedType, type context$6__publicOnInventoryItemStockStatusUpdatedType as _publicOnInventoryItemStockStatusUpdatedType, type context$6__publicOnInventoryItemUpdatedType as _publicOnInventoryItemUpdatedType, type context$6__publicOnInventoryItemUpdatedWithReasonType as _publicOnInventoryItemUpdatedWithReasonType, context$6_bulkCreateInventoryItems as bulkCreateInventoryItems, context$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, context$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, context$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, context$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, context$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, context$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, context$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, context$6_createInventoryItem as createInventoryItem, context$6_deleteInventoryItem as deleteInventoryItem, context$6_getInventoryItem as getInventoryItem, context$6_onInventoryItemCreated as onInventoryItemCreated, context$6_onInventoryItemDeleted as onInventoryItemDeleted, context$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, context$6_onInventoryItemUpdated as onInventoryItemUpdated, context$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, onInventoryItemCreated$1 as publicOnInventoryItemCreated, onInventoryItemDeleted$1 as publicOnInventoryItemDeleted, onInventoryItemStockStatusUpdated$1 as publicOnInventoryItemStockStatusUpdated, onInventoryItemUpdated$1 as publicOnInventoryItemUpdated, onInventoryItemUpdatedWithReason$1 as publicOnInventoryItemUpdatedWithReason, context$6_queryInventoryItems as queryInventoryItems, context$6_searchInventoryItems as searchInventoryItems, context$6_updateInventoryItem as updateInventoryItem };
|
|
10306
10319
|
}
|
|
10307
10320
|
|
|
10308
10321
|
interface V3Product extends V3ProductTypedPropertiesOneOf {
|
|
@@ -11836,7 +11849,9 @@ interface VideoResolution {
|
|
|
11836
11849
|
}
|
|
11837
11850
|
declare enum MediaType {
|
|
11838
11851
|
UNKNOWN_MEDIA_TYPE = "UNKNOWN_MEDIA_TYPE",
|
|
11852
|
+
/** Image media type. */
|
|
11839
11853
|
IMAGE = "IMAGE",
|
|
11854
|
+
/** Video media type. */
|
|
11840
11855
|
VIDEO = "VIDEO"
|
|
11841
11856
|
}
|
|
11842
11857
|
interface Thumbnail {
|
|
@@ -11921,8 +11936,11 @@ interface ConnectedOptionOptionSettingsOneOf {
|
|
|
11921
11936
|
choicesSettings?: ChoicesSettings;
|
|
11922
11937
|
}
|
|
11923
11938
|
declare enum ProductOptionRenderType {
|
|
11939
|
+
/** Not implemented. */
|
|
11924
11940
|
UNKNOWN_OPTION_RENDER_TYPE = "UNKNOWN_OPTION_RENDER_TYPE",
|
|
11941
|
+
/** Text choices. */
|
|
11925
11942
|
TEXT_CHOICES = "TEXT_CHOICES",
|
|
11943
|
+
/** Swatch choices. */
|
|
11926
11944
|
SWATCH_CHOICES = "SWATCH_CHOICES"
|
|
11927
11945
|
}
|
|
11928
11946
|
interface ChoicesSettings {
|
|
@@ -11965,9 +11983,13 @@ interface ConnectedOptionChoiceValueOneOf {
|
|
|
11965
11983
|
}
|
|
11966
11984
|
declare enum ChoiceType {
|
|
11967
11985
|
UNKNOWN_CHOICE_TYPE = "UNKNOWN_CHOICE_TYPE",
|
|
11986
|
+
/** Text choice. */
|
|
11968
11987
|
CHOICE_TEXT = "CHOICE_TEXT",
|
|
11988
|
+
/** Single color choice. */
|
|
11969
11989
|
ONE_COLOR = "ONE_COLOR",
|
|
11990
|
+
/** Multiple colors choice. */
|
|
11970
11991
|
MULTIPLE_COLORS = "MULTIPLE_COLORS",
|
|
11992
|
+
/** Image choice. */
|
|
11971
11993
|
IMAGE = "IMAGE"
|
|
11972
11994
|
}
|
|
11973
11995
|
interface MultipleColors {
|
|
@@ -11996,9 +12018,13 @@ interface ConnectedModifierModifierSettingsOneOf {
|
|
|
11996
12018
|
choicesSettings?: ModifierChoicesSettings;
|
|
11997
12019
|
}
|
|
11998
12020
|
declare enum ModifierRenderType {
|
|
12021
|
+
/** Not implemented. */
|
|
11999
12022
|
UNKNOWN_MODIFIER_RENDER_TYPE = "UNKNOWN_MODIFIER_RENDER_TYPE",
|
|
12023
|
+
/** Free text. */
|
|
12000
12024
|
FREE_TEXT = "FREE_TEXT",
|
|
12025
|
+
/** Text choices. */
|
|
12001
12026
|
TEXT_CHOICES = "TEXT_CHOICES",
|
|
12027
|
+
/** Swatch choices. */
|
|
12002
12028
|
SWATCH_CHOICES = "SWATCH_CHOICES"
|
|
12003
12029
|
}
|
|
12004
12030
|
interface FreeTextSettings {
|
|
@@ -12123,52 +12149,53 @@ interface FixedMonetaryAmount {
|
|
|
12123
12149
|
interface Inventory {
|
|
12124
12150
|
/**
|
|
12125
12151
|
* Current availability status.
|
|
12126
|
-
*
|
|
12127
|
-
* + `IN_STOCK`: All variants are in stock and available for purchase
|
|
12128
|
-
* + `OUT_OF_STOCK`: All variants are out of stock
|
|
12129
|
-
* + `PARTIALLY_OUT_OF_STOCK`: Some variants are out of stock and some are in stock and available for purchase
|
|
12130
12152
|
* @readonly
|
|
12131
12153
|
*/
|
|
12132
12154
|
availabilityStatus?: InventoryAvailabilityStatus;
|
|
12133
12155
|
/**
|
|
12134
|
-
* Current preorder status
|
|
12135
|
-
*
|
|
12136
|
-
* + `ENABLED`: All variants are enabled for preorder
|
|
12137
|
-
* + `DISABLED`: All variants are disabled for preorder
|
|
12138
|
-
* + `PARTIALLY_ENABLED`: Some variants are disabled and some are enabled for preorder
|
|
12156
|
+
* Current preorder status.
|
|
12139
12157
|
* @readonly
|
|
12140
12158
|
*/
|
|
12141
12159
|
preorderStatus?: PreorderStatus;
|
|
12142
12160
|
/**
|
|
12143
|
-
*
|
|
12144
|
-
* + `ALL_VARIANTS`: All the product variants are available for preorder.
|
|
12145
|
-
* + `NO_VARIANTS`: None of the product variants are available for preorder.
|
|
12146
|
-
* + `SOME_VARIANTS`: Some of the product variants are available for preorder.
|
|
12161
|
+
* Preorder availability status.
|
|
12147
12162
|
* @readonly
|
|
12148
12163
|
*/
|
|
12149
12164
|
preorderAvailability?: ProductPreorderAvailability;
|
|
12150
12165
|
}
|
|
12151
12166
|
declare enum InventoryAvailabilityStatus {
|
|
12152
12167
|
UNKNOWN_AVAILABILITY_STATUS = "UNKNOWN_AVAILABILITY_STATUS",
|
|
12168
|
+
/** All variants are in stock and available for purchase. */
|
|
12153
12169
|
IN_STOCK = "IN_STOCK",
|
|
12170
|
+
/** All variants are out of stock. */
|
|
12154
12171
|
OUT_OF_STOCK = "OUT_OF_STOCK",
|
|
12172
|
+
/** Some variants are out of stock and some are in stock and available for purchase. */
|
|
12155
12173
|
PARTIALLY_OUT_OF_STOCK = "PARTIALLY_OUT_OF_STOCK"
|
|
12156
12174
|
}
|
|
12157
12175
|
declare enum PreorderStatus {
|
|
12158
12176
|
UNKNOWN_PREORDER_STATUS = "UNKNOWN_PREORDER_STATUS",
|
|
12177
|
+
/** All variants are enabled for preorder. */
|
|
12159
12178
|
ENABLED = "ENABLED",
|
|
12179
|
+
/** All variants are disabled for preorder. */
|
|
12160
12180
|
DISABLED = "DISABLED",
|
|
12181
|
+
/** Some variants are disabled and some are enabled for preorder. */
|
|
12161
12182
|
PARTIALLY_ENABLED = "PARTIALLY_ENABLED"
|
|
12162
12183
|
}
|
|
12163
12184
|
declare enum ProductPreorderAvailability {
|
|
12164
12185
|
UNKNOWN_PREORDER_AVAILABILITY_STATUS = "UNKNOWN_PREORDER_AVAILABILITY_STATUS",
|
|
12186
|
+
/** All the product variants are available for preorder. */
|
|
12165
12187
|
ALL_VARIANTS = "ALL_VARIANTS",
|
|
12188
|
+
/** None of the product variants are available for preorder. */
|
|
12166
12189
|
NO_VARIANTS = "NO_VARIANTS",
|
|
12190
|
+
/** Some of the product variants are available for preorder. */
|
|
12167
12191
|
SOME_VARIANTS = "SOME_VARIANTS"
|
|
12168
12192
|
}
|
|
12169
12193
|
declare enum ProductType {
|
|
12194
|
+
/** Not implemented. */
|
|
12170
12195
|
UNKNOWN_PRODUCT_TYPE = "UNKNOWN_PRODUCT_TYPE",
|
|
12196
|
+
/** Physical product. */
|
|
12171
12197
|
PHYSICAL = "PHYSICAL",
|
|
12198
|
+
/** Digital product. */
|
|
12172
12199
|
DIGITAL = "DIGITAL"
|
|
12173
12200
|
}
|
|
12174
12201
|
interface PhysicalProperties {
|
|
@@ -12442,11 +12469,17 @@ interface SecuredMedia {
|
|
|
12442
12469
|
fileType?: FileType;
|
|
12443
12470
|
}
|
|
12444
12471
|
declare enum FileType {
|
|
12472
|
+
/** Unspecified file type. */
|
|
12445
12473
|
UNSPECIFIED = "UNSPECIFIED",
|
|
12474
|
+
/** Secure picture file. */
|
|
12446
12475
|
SECURE_PICTURE = "SECURE_PICTURE",
|
|
12476
|
+
/** Secure video file. */
|
|
12447
12477
|
SECURE_VIDEO = "SECURE_VIDEO",
|
|
12478
|
+
/** Secure document file. */
|
|
12448
12479
|
SECURE_DOCUMENT = "SECURE_DOCUMENT",
|
|
12480
|
+
/** Secure music file. */
|
|
12449
12481
|
SECURE_MUSIC = "SECURE_MUSIC",
|
|
12482
|
+
/** Secure archive file. */
|
|
12450
12483
|
SECURE_ARCHIVE = "SECURE_ARCHIVE"
|
|
12451
12484
|
}
|
|
12452
12485
|
interface SubscriptionPricesInfo {
|
|
@@ -12572,7 +12605,9 @@ interface SubscriptionDiscountDiscountOneOf {
|
|
|
12572
12605
|
}
|
|
12573
12606
|
declare enum DiscountType$1 {
|
|
12574
12607
|
UNKNOWN_DISCOUNT = "UNKNOWN_DISCOUNT",
|
|
12608
|
+
/** Discount by a specific amount. */
|
|
12575
12609
|
AMOUNT = "AMOUNT",
|
|
12610
|
+
/** Discount by a percentage. */
|
|
12576
12611
|
PERCENT = "PERCENT"
|
|
12577
12612
|
}
|
|
12578
12613
|
interface VariantSummary {
|
|
@@ -12868,11 +12903,12 @@ interface CreateProductRequest {
|
|
|
12868
12903
|
fields?: SingleEntityOpsRequestedFields[];
|
|
12869
12904
|
}
|
|
12870
12905
|
declare enum SingleEntityOpsRequestedFields {
|
|
12906
|
+
/** Not implemented. */
|
|
12871
12907
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
12872
12908
|
URL = "URL",
|
|
12873
12909
|
CURRENCY = "CURRENCY",
|
|
12874
12910
|
INFO_SECTION = "INFO_SECTION",
|
|
12875
|
-
/** You can request merchant data only if you have `
|
|
12911
|
+
/** You can request merchant data only if you have the `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope. */
|
|
12876
12912
|
MERCHANT_DATA = "MERCHANT_DATA",
|
|
12877
12913
|
PLAIN_DESCRIPTION = "PLAIN_DESCRIPTION",
|
|
12878
12914
|
INFO_SECTION_PLAIN_DESCRIPTION = "INFO_SECTION_PLAIN_DESCRIPTION",
|
|
@@ -13319,14 +13355,11 @@ interface InventoryItemTrackingMethodOneOf {
|
|
|
13319
13355
|
}
|
|
13320
13356
|
declare enum AvailabilityStatus {
|
|
13321
13357
|
UNKNOWN_AVAILABILITY_STATUS = "UNKNOWN_AVAILABILITY_STATUS",
|
|
13358
|
+
/** Product is out of stock. */
|
|
13322
13359
|
OUT_OF_STOCK = "OUT_OF_STOCK",
|
|
13360
|
+
/** Product is in stock. See `quantity` field for exact amount in stock. */
|
|
13323
13361
|
IN_STOCK = "IN_STOCK",
|
|
13324
|
-
/**
|
|
13325
|
-
* Whether the variant is available for preorder. InventoryItem will be available only when all below conditions are met:
|
|
13326
|
-
* 1. the variant is out of stock
|
|
13327
|
-
* 2. preorder is enabled on inventory item level (preorder_setting.enabled is true)
|
|
13328
|
-
* 3. preorder limit wasn't reached (preorder_setting.limit)
|
|
13329
|
-
*/
|
|
13362
|
+
/** Product is only available for preorder. See `preorderInfo` field for more info. */
|
|
13330
13363
|
PREORDER = "PREORDER"
|
|
13331
13364
|
}
|
|
13332
13365
|
interface Product {
|
|
@@ -13394,11 +13427,12 @@ interface BulkCreateProductsRequest {
|
|
|
13394
13427
|
fields?: RequestedFields$1[];
|
|
13395
13428
|
}
|
|
13396
13429
|
declare enum RequestedFields$1 {
|
|
13430
|
+
/** Not implemented. */
|
|
13397
13431
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
13398
13432
|
URL = "URL",
|
|
13399
13433
|
CURRENCY = "CURRENCY",
|
|
13400
13434
|
INFO_SECTION = "INFO_SECTION",
|
|
13401
|
-
/** You can request merchant data only if you have `
|
|
13435
|
+
/** You can request merchant data only if you have the `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope. */
|
|
13402
13436
|
MERCHANT_DATA = "MERCHANT_DATA",
|
|
13403
13437
|
PLAIN_DESCRIPTION = "PLAIN_DESCRIPTION",
|
|
13404
13438
|
INFO_SECTION_PLAIN_DESCRIPTION = "INFO_SECTION_PLAIN_DESCRIPTION",
|
|
@@ -14472,7 +14506,9 @@ interface Sorting$2 {
|
|
|
14472
14506
|
order?: SortOrder$2;
|
|
14473
14507
|
}
|
|
14474
14508
|
declare enum SortOrder$2 {
|
|
14509
|
+
/** Ascending order. */
|
|
14475
14510
|
ASC = "ASC",
|
|
14511
|
+
/** Descending order. */
|
|
14476
14512
|
DESC = "DESC"
|
|
14477
14513
|
}
|
|
14478
14514
|
interface Aggregation extends AggregationKindOneOf {
|
|
@@ -14513,21 +14549,21 @@ interface RangeBucket {
|
|
|
14513
14549
|
to?: number | null;
|
|
14514
14550
|
}
|
|
14515
14551
|
declare enum SortType {
|
|
14516
|
-
/** Should sort by number of matches */
|
|
14552
|
+
/** Should sort by number of matches. */
|
|
14517
14553
|
COUNT = "COUNT",
|
|
14518
|
-
/** Should sort by value of the field alphabetically */
|
|
14554
|
+
/** Should sort by value of the field alphabetically. */
|
|
14519
14555
|
VALUE = "VALUE"
|
|
14520
14556
|
}
|
|
14521
14557
|
declare enum SortDirection {
|
|
14522
|
-
/** Should sort
|
|
14558
|
+
/** Should sort by descending order. */
|
|
14523
14559
|
DESC = "DESC",
|
|
14524
|
-
/** Should sort
|
|
14560
|
+
/** Should sort by ascending order. */
|
|
14525
14561
|
ASC = "ASC"
|
|
14526
14562
|
}
|
|
14527
14563
|
declare enum MissingValues {
|
|
14528
|
-
/**
|
|
14564
|
+
/** Exclude missing values from the aggregation results. */
|
|
14529
14565
|
EXCLUDE = "EXCLUDE",
|
|
14530
|
-
/**
|
|
14566
|
+
/** Include missing values from the aggregation results. */
|
|
14531
14567
|
INCLUDE = "INCLUDE"
|
|
14532
14568
|
}
|
|
14533
14569
|
interface IncludeMissingValuesOptions {
|
|
@@ -14535,16 +14571,17 @@ interface IncludeMissingValuesOptions {
|
|
|
14535
14571
|
addToBucket?: string;
|
|
14536
14572
|
}
|
|
14537
14573
|
declare enum ScalarType {
|
|
14574
|
+
/** Undefined scalar type. */
|
|
14538
14575
|
UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
|
|
14539
|
-
/** Count of distinct values */
|
|
14576
|
+
/** Count of distinct values. */
|
|
14540
14577
|
COUNT_DISTINCT = "COUNT_DISTINCT",
|
|
14541
|
-
/** Minimum value */
|
|
14578
|
+
/** Minimum value. */
|
|
14542
14579
|
MIN = "MIN",
|
|
14543
|
-
/** Maximum value */
|
|
14580
|
+
/** Maximum value. */
|
|
14544
14581
|
MAX = "MAX",
|
|
14545
|
-
/** Sum of values */
|
|
14582
|
+
/** Sum of values. */
|
|
14546
14583
|
SUM = "SUM",
|
|
14547
|
-
/** Average of values */
|
|
14584
|
+
/** Average of values. */
|
|
14548
14585
|
AVG = "AVG"
|
|
14549
14586
|
}
|
|
14550
14587
|
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
@@ -14565,14 +14602,15 @@ interface ValueAggregationOptionsOneOf {
|
|
|
14565
14602
|
includeOptions?: IncludeMissingValuesOptions;
|
|
14566
14603
|
}
|
|
14567
14604
|
declare enum NestedAggregationType {
|
|
14605
|
+
/** Undefined nested aggregation type. */
|
|
14568
14606
|
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
14569
|
-
/** An aggregation where result buckets are dynamically built - one per unique value */
|
|
14607
|
+
/** An aggregation where result buckets are dynamically built - one per unique value. */
|
|
14570
14608
|
VALUE = "VALUE",
|
|
14571
|
-
/** An aggregation
|
|
14609
|
+
/** An aggregation where user can define set of ranges - each representing a bucket. */
|
|
14572
14610
|
RANGE = "RANGE",
|
|
14573
|
-
/** A single-value metric aggregation
|
|
14611
|
+
/** A single-value metric aggregation. For example: min, max, sum, avg. */
|
|
14574
14612
|
SCALAR = "SCALAR",
|
|
14575
|
-
/** An aggregation
|
|
14613
|
+
/** An aggregation where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
|
|
14576
14614
|
DATE_HISTOGRAM = "DATE_HISTOGRAM"
|
|
14577
14615
|
}
|
|
14578
14616
|
interface RangeAggregation {
|
|
@@ -14588,20 +14626,21 @@ interface DateHistogramAggregation {
|
|
|
14588
14626
|
interval?: Interval;
|
|
14589
14627
|
}
|
|
14590
14628
|
declare enum Interval {
|
|
14629
|
+
/** Undefined interval type. */
|
|
14591
14630
|
UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
|
|
14592
|
-
/** Yearly interval */
|
|
14631
|
+
/** Yearly interval. */
|
|
14593
14632
|
YEAR = "YEAR",
|
|
14594
|
-
/** Monthly interval */
|
|
14633
|
+
/** Monthly interval. */
|
|
14595
14634
|
MONTH = "MONTH",
|
|
14596
|
-
/** Weekly interval */
|
|
14635
|
+
/** Weekly interval. */
|
|
14597
14636
|
WEEK = "WEEK",
|
|
14598
|
-
/** Daily interval */
|
|
14637
|
+
/** Daily interval. */
|
|
14599
14638
|
DAY = "DAY",
|
|
14600
|
-
/** Hourly interval */
|
|
14639
|
+
/** Hourly interval. */
|
|
14601
14640
|
HOUR = "HOUR",
|
|
14602
|
-
/** Minute interval */
|
|
14641
|
+
/** Minute interval. */
|
|
14603
14642
|
MINUTE = "MINUTE",
|
|
14604
|
-
/** Second interval */
|
|
14643
|
+
/** Second interval. */
|
|
14605
14644
|
SECOND = "SECOND"
|
|
14606
14645
|
}
|
|
14607
14646
|
interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
|
|
@@ -14632,16 +14671,17 @@ interface NestedAggregationItemKindOneOf {
|
|
|
14632
14671
|
dateHistogram?: DateHistogramAggregation;
|
|
14633
14672
|
}
|
|
14634
14673
|
declare enum AggregationType {
|
|
14674
|
+
/** Undefined aggregation type. */
|
|
14635
14675
|
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
14636
|
-
/** An aggregation where result buckets are dynamically built - one per unique value */
|
|
14676
|
+
/** An aggregation where result buckets are dynamically built - one per unique value. */
|
|
14637
14677
|
VALUE = "VALUE",
|
|
14638
|
-
/** An aggregation
|
|
14678
|
+
/** An aggregation where a user can define set of ranges - each representing a bucket. */
|
|
14639
14679
|
RANGE = "RANGE",
|
|
14640
|
-
/** A single-value metric aggregation
|
|
14680
|
+
/** A single-value metric aggregation. For example: min, max, sum, avg. */
|
|
14641
14681
|
SCALAR = "SCALAR",
|
|
14642
|
-
/** An aggregation
|
|
14682
|
+
/** An aggregation where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
|
|
14643
14683
|
DATE_HISTOGRAM = "DATE_HISTOGRAM",
|
|
14644
|
-
/** Multi-level aggregation
|
|
14684
|
+
/** A Multi-level aggregation where each next aggregation is nested within previous one. */
|
|
14645
14685
|
NESTED = "NESTED"
|
|
14646
14686
|
}
|
|
14647
14687
|
/** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
|
|
@@ -14650,7 +14690,7 @@ interface NestedAggregation {
|
|
|
14650
14690
|
nestedAggregations?: NestedAggregationItem[];
|
|
14651
14691
|
}
|
|
14652
14692
|
interface SearchDetails {
|
|
14653
|
-
/** Defines how separate search terms in `expression` are combined */
|
|
14693
|
+
/** Defines how separate search terms in `expression` are combined. */
|
|
14654
14694
|
mode?: Mode;
|
|
14655
14695
|
/** Search term or expression */
|
|
14656
14696
|
expression?: string | null;
|
|
@@ -14660,9 +14700,9 @@ interface SearchDetails {
|
|
|
14660
14700
|
fuzzy?: boolean;
|
|
14661
14701
|
}
|
|
14662
14702
|
declare enum Mode {
|
|
14663
|
-
/** Any of the search terms must be present */
|
|
14703
|
+
/** Any of the search terms must be present. */
|
|
14664
14704
|
OR = "OR",
|
|
14665
|
-
/** All search terms must be present */
|
|
14705
|
+
/** All search terms must be present. */
|
|
14666
14706
|
AND = "AND"
|
|
14667
14707
|
}
|
|
14668
14708
|
interface CursorPaging$2 {
|
|
@@ -15246,9 +15286,10 @@ interface VariantsCursorPaging {
|
|
|
15246
15286
|
cursor?: string | null;
|
|
15247
15287
|
}
|
|
15248
15288
|
declare enum VariantsOpsRequestedFields {
|
|
15289
|
+
/** Not implemented. */
|
|
15249
15290
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
15250
15291
|
CURRENCY = "CURRENCY",
|
|
15251
|
-
/** You can request merchant data only if you have `
|
|
15292
|
+
/** You can request merchant data only if you have the `SCOPE.STORES.PRODUCT_READ_ADMIN` permission scope. */
|
|
15252
15293
|
MERCHANT_DATA = "MERCHANT_DATA",
|
|
15253
15294
|
SUBSCRIPTION_PRICES_INFO = "SUBSCRIPTION_PRICES_INFO",
|
|
15254
15295
|
VARIANT_OPTION_CHOICE_NAMES = "VARIANT_OPTION_CHOICE_NAMES",
|
|
@@ -15561,20 +15602,21 @@ interface UnsignedAdjustValueAdjustValueOneOf {
|
|
|
15561
15602
|
percentage?: number;
|
|
15562
15603
|
}
|
|
15563
15604
|
declare enum RoundingStrategy {
|
|
15605
|
+
/** Undefined rounding strategy. */
|
|
15564
15606
|
UNKNOWN_ROUNDING_STRATEGY = "UNKNOWN_ROUNDING_STRATEGY",
|
|
15565
15607
|
/**
|
|
15566
|
-
* Calculated prices
|
|
15567
|
-
*
|
|
15608
|
+
* Calculated prices are saved without rounding to keep the maximum possible precision. It's a good idea to round numbers before displaying them.
|
|
15609
|
+
* For example, input $3.5555 -> saved value $3.5555
|
|
15568
15610
|
*/
|
|
15569
15611
|
NO_ROUNDING = "NO_ROUNDING",
|
|
15570
15612
|
/**
|
|
15571
|
-
* Calculated prices
|
|
15572
|
-
*
|
|
15613
|
+
* Calculated prices are rounded according to currency precision.
|
|
15614
|
+
* For example:, input $3.5555 -> saved value $3.56, input ¥3.5555 -> saved value ¥4
|
|
15573
15615
|
*/
|
|
15574
15616
|
CURRENCY_PRECISION = "CURRENCY_PRECISION",
|
|
15575
15617
|
/**
|
|
15576
|
-
* Calculated prices
|
|
15577
|
-
*
|
|
15618
|
+
* Calculated prices are rounded to nearest whole number.
|
|
15619
|
+
* For example, input $3.5555 -> saved value $4
|
|
15578
15620
|
*/
|
|
15579
15621
|
NEAREST_WHOLE_NUMBER = "NEAREST_WHOLE_NUMBER"
|
|
15580
15622
|
}
|
|
@@ -18554,7 +18596,9 @@ interface Sorting$1 {
|
|
|
18554
18596
|
order?: SortOrder$1;
|
|
18555
18597
|
}
|
|
18556
18598
|
declare enum SortOrder$1 {
|
|
18599
|
+
/** Ascending order. */
|
|
18557
18600
|
ASC = "ASC",
|
|
18601
|
+
/** Descending order. */
|
|
18558
18602
|
DESC = "DESC"
|
|
18559
18603
|
}
|
|
18560
18604
|
interface CursorPaging$1 {
|
|
@@ -19359,9 +19403,6 @@ interface StoresLocation {
|
|
|
19359
19403
|
wixLocationId?: string | null;
|
|
19360
19404
|
/**
|
|
19361
19405
|
* Location type.
|
|
19362
|
-
*
|
|
19363
|
-
* + `VIRTUAL`: Online store.
|
|
19364
|
-
* + `PHYSICAL`: Physical location. For example, for POS.
|
|
19365
19406
|
* @readonly
|
|
19366
19407
|
*/
|
|
19367
19408
|
locationType?: LocationType;
|
|
@@ -19375,9 +19416,9 @@ interface StoresLocation {
|
|
|
19375
19416
|
}
|
|
19376
19417
|
declare enum LocationType {
|
|
19377
19418
|
UNKNOWN_LOCATION_TYPE = "UNKNOWN_LOCATION_TYPE",
|
|
19378
|
-
/** Online
|
|
19419
|
+
/** Online store. */
|
|
19379
19420
|
VIRTUAL = "VIRTUAL",
|
|
19380
|
-
/** Physical location
|
|
19421
|
+
/** Physical location, for example, POS. */
|
|
19381
19422
|
PHYSICAL = "PHYSICAL"
|
|
19382
19423
|
}
|
|
19383
19424
|
interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
@@ -20568,9 +20609,13 @@ interface ChangedInventoryVariantData {
|
|
|
20568
20609
|
availableForPreorder?: boolean;
|
|
20569
20610
|
}
|
|
20570
20611
|
declare enum ReasonType {
|
|
20612
|
+
/** Unknown reason. */
|
|
20571
20613
|
UNKNOWN = "UNKNOWN",
|
|
20614
|
+
/** Order related. */
|
|
20572
20615
|
ORDER = "ORDER",
|
|
20616
|
+
/** Manual adjustment. */
|
|
20573
20617
|
MANUAL = "MANUAL",
|
|
20618
|
+
/** Reverting an inventory change. */
|
|
20574
20619
|
REVERT_INVENTORY_CHANGE = "REVERT_INVENTORY_CHANGE"
|
|
20575
20620
|
}
|
|
20576
20621
|
interface GetInventoryVariantsRequest extends GetInventoryVariantsRequestIdOneOf {
|