@wix/stores 1.0.210 → 1.0.212
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 +4 -4
- package/type-bundles/context.bundle.d.ts +125 -64
- package/type-bundles/index.bundle.d.ts +125 -64
- package/type-bundles/meta.bundle.d.ts +22 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.212",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"@wix/stores_info-sections-v-3": "1.0.9",
|
|
26
26
|
"@wix/stores_inventory": "1.0.37",
|
|
27
27
|
"@wix/stores_inventory-items-v-3": "1.0.12",
|
|
28
|
-
"@wix/stores_products": "1.0.
|
|
29
|
-
"@wix/stores_products-v-3": "1.0.
|
|
28
|
+
"@wix/stores_products": "1.0.48",
|
|
29
|
+
"@wix/stores_products-v-3": "1.0.29",
|
|
30
30
|
"@wix/stores_ribbons-v-3": "1.0.10",
|
|
31
31
|
"@wix/stores_stores-locations-v-3": "1.0.11",
|
|
32
32
|
"@wix/stores_subscription-options": "1.0.35",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"fqdn": ""
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
|
-
"falconPackageHash": "
|
|
58
|
+
"falconPackageHash": "8d92af4241dfef92c55c0907de44f8d47670124944814ff42fd0b422"
|
|
59
59
|
}
|
|
@@ -1565,6 +1565,116 @@ interface ReCloneStoreRequest {
|
|
|
1565
1565
|
}
|
|
1566
1566
|
interface ReCloneStoreResponse {
|
|
1567
1567
|
}
|
|
1568
|
+
interface DomainEvent$7 extends DomainEventBodyOneOf$7 {
|
|
1569
|
+
createdEvent?: EntityCreatedEvent$7;
|
|
1570
|
+
updatedEvent?: EntityUpdatedEvent$7;
|
|
1571
|
+
deletedEvent?: EntityDeletedEvent$7;
|
|
1572
|
+
actionEvent?: ActionEvent$7;
|
|
1573
|
+
/**
|
|
1574
|
+
* Unique event ID.
|
|
1575
|
+
* Allows clients to ignore duplicate webhooks.
|
|
1576
|
+
*/
|
|
1577
|
+
_id?: string;
|
|
1578
|
+
/**
|
|
1579
|
+
* Assumes actions are also always typed to an entity_type
|
|
1580
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
1581
|
+
*/
|
|
1582
|
+
entityFqdn?: string;
|
|
1583
|
+
/**
|
|
1584
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
1585
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
1586
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
1587
|
+
*/
|
|
1588
|
+
slug?: string;
|
|
1589
|
+
/** ID of the entity associated with the event. */
|
|
1590
|
+
entityId?: string;
|
|
1591
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
1592
|
+
eventTime?: Date;
|
|
1593
|
+
/**
|
|
1594
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
1595
|
+
* (for example, GDPR).
|
|
1596
|
+
*/
|
|
1597
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
1598
|
+
/** If present, indicates the action that triggered the event. */
|
|
1599
|
+
originatedFrom?: string | null;
|
|
1600
|
+
/**
|
|
1601
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
1602
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
1603
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
1604
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
1605
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
1606
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
1607
|
+
*/
|
|
1608
|
+
entityEventSequence?: string | null;
|
|
1609
|
+
}
|
|
1610
|
+
/** @oneof */
|
|
1611
|
+
interface DomainEventBodyOneOf$7 {
|
|
1612
|
+
createdEvent?: EntityCreatedEvent$7;
|
|
1613
|
+
updatedEvent?: EntityUpdatedEvent$7;
|
|
1614
|
+
deletedEvent?: EntityDeletedEvent$7;
|
|
1615
|
+
actionEvent?: ActionEvent$7;
|
|
1616
|
+
}
|
|
1617
|
+
interface EntityCreatedEvent$7 {
|
|
1618
|
+
entity?: string;
|
|
1619
|
+
}
|
|
1620
|
+
interface RestoreInfo$7 {
|
|
1621
|
+
deletedDate?: Date;
|
|
1622
|
+
}
|
|
1623
|
+
interface EntityUpdatedEvent$7 {
|
|
1624
|
+
/**
|
|
1625
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
1626
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
1627
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
1628
|
+
*/
|
|
1629
|
+
currentEntity?: string;
|
|
1630
|
+
}
|
|
1631
|
+
interface EntityDeletedEvent$7 {
|
|
1632
|
+
/** Entity that was deleted */
|
|
1633
|
+
deletedEntity?: string | null;
|
|
1634
|
+
}
|
|
1635
|
+
interface ActionEvent$7 {
|
|
1636
|
+
body?: string;
|
|
1637
|
+
}
|
|
1638
|
+
interface MessageEnvelope$9 {
|
|
1639
|
+
/** App instance ID. */
|
|
1640
|
+
instanceId?: string | null;
|
|
1641
|
+
/** Event type. */
|
|
1642
|
+
eventType?: string;
|
|
1643
|
+
/** The identification type and identity data. */
|
|
1644
|
+
identity?: IdentificationData$9;
|
|
1645
|
+
/** Stringify payload. */
|
|
1646
|
+
data?: string;
|
|
1647
|
+
}
|
|
1648
|
+
interface IdentificationData$9 extends IdentificationDataIdOneOf$9 {
|
|
1649
|
+
/** ID of a site visitor that has not logged in to the site. */
|
|
1650
|
+
anonymousVisitorId?: string;
|
|
1651
|
+
/** ID of a site visitor that has logged in to the site. */
|
|
1652
|
+
memberId?: string;
|
|
1653
|
+
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
1654
|
+
wixUserId?: string;
|
|
1655
|
+
/** ID of an app. */
|
|
1656
|
+
appId?: string;
|
|
1657
|
+
/** @readonly */
|
|
1658
|
+
identityType?: WebhookIdentityType$9;
|
|
1659
|
+
}
|
|
1660
|
+
/** @oneof */
|
|
1661
|
+
interface IdentificationDataIdOneOf$9 {
|
|
1662
|
+
/** ID of a site visitor that has not logged in to the site. */
|
|
1663
|
+
anonymousVisitorId?: string;
|
|
1664
|
+
/** ID of a site visitor that has logged in to the site. */
|
|
1665
|
+
memberId?: string;
|
|
1666
|
+
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
1667
|
+
wixUserId?: string;
|
|
1668
|
+
/** ID of an app. */
|
|
1669
|
+
appId?: string;
|
|
1670
|
+
}
|
|
1671
|
+
declare enum WebhookIdentityType$9 {
|
|
1672
|
+
UNKNOWN = "UNKNOWN",
|
|
1673
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
1674
|
+
MEMBER = "MEMBER",
|
|
1675
|
+
WIX_USER = "WIX_USER",
|
|
1676
|
+
APP = "APP"
|
|
1677
|
+
}
|
|
1568
1678
|
interface V1CreateProductPlatformizedRequest {
|
|
1569
1679
|
/** Product information. */
|
|
1570
1680
|
product?: Product$2;
|
|
@@ -2078,46 +2188,6 @@ interface AggregateProductsRequest {
|
|
|
2078
2188
|
interface AggregateProductsResponse {
|
|
2079
2189
|
aggregates?: Record<string, any> | null;
|
|
2080
2190
|
}
|
|
2081
|
-
interface MessageEnvelope$9 {
|
|
2082
|
-
/** App instance ID. */
|
|
2083
|
-
instanceId?: string | null;
|
|
2084
|
-
/** Event type. */
|
|
2085
|
-
eventType?: string;
|
|
2086
|
-
/** The identification type and identity data. */
|
|
2087
|
-
identity?: IdentificationData$9;
|
|
2088
|
-
/** Stringify payload. */
|
|
2089
|
-
data?: string;
|
|
2090
|
-
}
|
|
2091
|
-
interface IdentificationData$9 extends IdentificationDataIdOneOf$9 {
|
|
2092
|
-
/** ID of a site visitor that has not logged in to the site. */
|
|
2093
|
-
anonymousVisitorId?: string;
|
|
2094
|
-
/** ID of a site visitor that has logged in to the site. */
|
|
2095
|
-
memberId?: string;
|
|
2096
|
-
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
2097
|
-
wixUserId?: string;
|
|
2098
|
-
/** ID of an app. */
|
|
2099
|
-
appId?: string;
|
|
2100
|
-
/** @readonly */
|
|
2101
|
-
identityType?: WebhookIdentityType$9;
|
|
2102
|
-
}
|
|
2103
|
-
/** @oneof */
|
|
2104
|
-
interface IdentificationDataIdOneOf$9 {
|
|
2105
|
-
/** ID of a site visitor that has not logged in to the site. */
|
|
2106
|
-
anonymousVisitorId?: string;
|
|
2107
|
-
/** ID of a site visitor that has logged in to the site. */
|
|
2108
|
-
memberId?: string;
|
|
2109
|
-
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
2110
|
-
wixUserId?: string;
|
|
2111
|
-
/** ID of an app. */
|
|
2112
|
-
appId?: string;
|
|
2113
|
-
}
|
|
2114
|
-
declare enum WebhookIdentityType$9 {
|
|
2115
|
-
UNKNOWN = "UNKNOWN",
|
|
2116
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2117
|
-
MEMBER = "MEMBER",
|
|
2118
|
-
WIX_USER = "WIX_USER",
|
|
2119
|
-
APP = "APP"
|
|
2120
|
-
}
|
|
2121
2191
|
interface NumericPropertyRangeNonNullableFields {
|
|
2122
2192
|
minValue: number;
|
|
2123
2193
|
maxValue: number;
|
|
@@ -2381,18 +2451,10 @@ interface BaseEventMetadata$7 {
|
|
|
2381
2451
|
/** The identification type and identity data. */
|
|
2382
2452
|
identity?: IdentificationData$9;
|
|
2383
2453
|
}
|
|
2384
|
-
interface ProductCreatedEnvelope$1 {
|
|
2385
|
-
data: ProductCreated;
|
|
2386
|
-
metadata: BaseEventMetadata$7;
|
|
2387
|
-
}
|
|
2388
2454
|
interface ProductChangedEnvelope {
|
|
2389
2455
|
data: ProductChanged;
|
|
2390
2456
|
metadata: BaseEventMetadata$7;
|
|
2391
2457
|
}
|
|
2392
|
-
interface ProductDeletedEnvelope$1 {
|
|
2393
|
-
data: ProductDeleted;
|
|
2394
|
-
metadata: BaseEventMetadata$7;
|
|
2395
|
-
}
|
|
2396
2458
|
interface ProductCollectionCreatedEnvelope {
|
|
2397
2459
|
data: CollectionCreated;
|
|
2398
2460
|
metadata: BaseEventMetadata$7;
|
|
@@ -2895,9 +2957,7 @@ interface GetStoreVariantSignature {
|
|
|
2895
2957
|
*/
|
|
2896
2958
|
(_id: string): Promise<GetStoreVariantResponse & GetStoreVariantResponseNonNullableFields>;
|
|
2897
2959
|
}
|
|
2898
|
-
declare const onProductCreated$3: EventDefinition<ProductCreatedEnvelope$1, "com.wix.ecommerce.catalog.api.v1.ProductCreated">;
|
|
2899
2960
|
declare const onProductChanged$1: EventDefinition<ProductChangedEnvelope, "com.wix.ecommerce.catalog.api.v1.ProductChanged">;
|
|
2900
|
-
declare const onProductDeleted$3: EventDefinition<ProductDeletedEnvelope$1, "com.wix.ecommerce.catalog.api.v1.ProductDeleted">;
|
|
2901
2961
|
declare const onProductCollectionCreated$1: EventDefinition<ProductCollectionCreatedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionCreated">;
|
|
2902
2962
|
declare const onProductCollectionChanged$1: EventDefinition<ProductCollectionChangedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionChanged">;
|
|
2903
2963
|
declare const onProductCollectionDeleted$1: EventDefinition<ProductCollectionDeletedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionDeleted">;
|
|
@@ -2932,24 +2992,12 @@ declare const queryProductVariants: BuildRESTFunction<typeof queryProductVariant
|
|
|
2932
2992
|
declare const queryStoreVariants: BuildRESTFunction<typeof queryStoreVariants$1> & typeof queryStoreVariants$1;
|
|
2933
2993
|
declare const getStoreVariant: BuildRESTFunction<typeof getStoreVariant$1> & typeof getStoreVariant$1;
|
|
2934
2994
|
|
|
2935
|
-
type _publicOnProductCreatedType$1 = typeof onProductCreated$3;
|
|
2936
|
-
/**
|
|
2937
|
-
* Triggered when a product is created.
|
|
2938
|
-
*/
|
|
2939
|
-
declare const onProductCreated$2: ReturnType<typeof createEventModule$7<_publicOnProductCreatedType>>;
|
|
2940
|
-
|
|
2941
2995
|
type _publicOnProductChangedType = typeof onProductChanged$1;
|
|
2942
2996
|
/**
|
|
2943
2997
|
* Triggered when a product is changed.
|
|
2944
2998
|
*/
|
|
2945
2999
|
declare const onProductChanged: ReturnType<typeof createEventModule$7<_publicOnProductChangedType>>;
|
|
2946
3000
|
|
|
2947
|
-
type _publicOnProductDeletedType$1 = typeof onProductDeleted$3;
|
|
2948
|
-
/**
|
|
2949
|
-
* Triggered when a product is deleted.
|
|
2950
|
-
*/
|
|
2951
|
-
declare const onProductDeleted$2: ReturnType<typeof createEventModule$7<_publicOnProductDeletedType>>;
|
|
2952
|
-
|
|
2953
3001
|
type _publicOnProductCollectionCreatedType = typeof onProductCollectionCreated$1;
|
|
2954
3002
|
/**
|
|
2955
3003
|
* Triggered when a collection is created.
|
|
@@ -3167,7 +3215,7 @@ declare const context$a_resetAllProductVariantData: typeof resetAllProductVarian
|
|
|
3167
3215
|
declare const context$a_updateCollection: typeof updateCollection;
|
|
3168
3216
|
declare const context$a_updateProductVariants: typeof updateProductVariants;
|
|
3169
3217
|
declare namespace context$a {
|
|
3170
|
-
export { type context$a_AddProductMediaRequest as AddProductMediaRequest, type context$a_AddProductMediaResponse as AddProductMediaResponse, type context$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type context$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type context$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type context$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type context$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type context$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type context$a_AggregateProductsRequest as AggregateProductsRequest, type context$a_AggregateProductsResponse as AggregateProductsResponse, type context$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type context$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type context$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type context$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type context$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type context$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type context$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type context$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type context$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type context$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type context$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type context$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type context$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type context$a_BulkUpdateProductsByFilterSyncResponse as BulkUpdateProductsByFilterSyncResponse, type BulkUpdateProductsRequest$1 as BulkUpdateProductsRequest, type BulkUpdateProductsResponse$1 as BulkUpdateProductsResponse, type BulkUpdateProductsResponseNonNullableFields$1 as BulkUpdateProductsResponseNonNullableFields, type Choice$1 as Choice, type context$a_Collection as Collection, type context$a_CollectionChanged as CollectionChanged, type context$a_CollectionCreated as CollectionCreated, type context$a_CollectionDeleted as CollectionDeleted, type context$a_CostAndProfitData as CostAndProfitData, type context$a_CreateCollectionRequest as CreateCollectionRequest, type context$a_CreateCollectionResponse as CreateCollectionResponse, type context$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type context$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type context$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type context$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type context$a_CreateProductPlatformizedResponse as CreateProductPlatformizedResponse, type CreateProductRequest$1 as CreateProductRequest, type CreateProductResponse$1 as CreateProductResponse, type CreateProductResponseNonNullableFields$1 as CreateProductResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type Cursors$7 as Cursors, type context$a_CustomFieldsContainer as CustomFieldsContainer, type context$a_CustomTextField as CustomTextField, type context$a_DeleteCollectionRequest as DeleteCollectionRequest, type context$a_DeleteCollectionResponse as DeleteCollectionResponse, type context$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type context$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type context$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type context$a_DeleteProductPlatformizedResponse as DeleteProductPlatformizedResponse, type DeleteProductRequest$1 as DeleteProductRequest, type DeleteProductResponse$1 as DeleteProductResponse, type Discount$1 as Discount, DiscountType$2 as DiscountType, FileType$1 as FileType, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type context$a_PagingWithBigLimit as PagingWithBigLimit, type context$a_PercentageData as PercentageData, type context$a_PlatformMedia as PlatformMedia, type context$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type context$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type context$a_ProductOption as ProductOption, type context$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type context$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type context$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type context$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type context$a_PropertyAdjustmentData as PropertyAdjustmentData, type context$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type context$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type context$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type context$a_QueryCollectionsRequest as QueryCollectionsRequest, type context$a_QueryCollectionsResponse as QueryCollectionsResponse, type context$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type context$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type context$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type context$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type context$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type context$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type context$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type context$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type context$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type context$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type context$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type context$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type context$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type context$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type context$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type context$a_ReCloneStoreRequest as ReCloneStoreRequest, type context$a_ReCloneStoreResponse as ReCloneStoreResponse, type context$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type context$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type context$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type context$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type context$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type context$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type context$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type context$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type context$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type context$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type context$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type context$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type context$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type context$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type context$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type context$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type context$a_SetValue as SetValue, type context$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type context$a_Stock as Stock, type context$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type context$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type context$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type context$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type context$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type context$a_UpdateCollection as UpdateCollection, type context$a_UpdateCollectionRequest as UpdateCollectionRequest, type context$a_UpdateCollectionResponse as UpdateCollectionResponse, type context$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type UpdateProduct$1 as UpdateProduct, type context$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type context$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type context$a_UpdateVariantsRequest as UpdateVariantsRequest, type context$a_UpdateVariantsResponse as UpdateVariantsResponse, type context$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type context$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type context$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type context$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type context$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type context$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type context$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type context$a_VariantChanged as VariantChanged, type context$a_VariantData as VariantData, type context$a_VariantDataWithNoStock as VariantDataWithNoStock, type context$a_VariantOverride as VariantOverride, type context$a_VariantStock as VariantStock, type context$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type context$a__publicOnProductChangedType as _publicOnProductChangedType, type context$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type context$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type context$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type context$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, context$a_addProductMedia as addProductMedia, context$a_addProductMediaToChoices as addProductMediaToChoices, context$a_addProductsToCollection as addProductsToCollection, context$a_bulkAdjustProductProperty as bulkAdjustProductProperty, context$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, context$a_createCollection as createCollection, createProduct$2 as createProduct, context$a_deleteCollection as deleteCollection, deleteProduct$2 as deleteProduct, context$a_deleteProductOptions as deleteProductOptions, context$a_getCollectionBySlug as getCollectionBySlug, getProduct$2 as getProduct, context$a_getProductOptionsAvailability as getProductOptionsAvailability, context$a_getStoreVariant as getStoreVariant, context$a_onProductChanged as onProductChanged, context$a_onProductCollectionChanged as onProductCollectionChanged, context$a_onProductCollectionCreated as onProductCollectionCreated, context$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, context$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, onProductCreated$3 as publicOnProductCreated, onProductDeleted$3 as publicOnProductDeleted, onProductVariantsChanged$1 as publicOnProductVariantsChanged, context$a_queryProductVariants as queryProductVariants, queryProducts$2 as queryProducts, context$a_queryStoreVariants as queryStoreVariants, context$a_removeBrand as removeBrand, context$a_removeProductMedia as removeProductMedia, context$a_removeProductMediaFromChoices as removeProductMediaFromChoices, context$a_removeProductsFromCollection as removeProductsFromCollection, context$a_removeRibbon as removeRibbon, context$a_resetAllProductVariantData as resetAllProductVariantData, context$a_updateCollection as updateCollection, updateProduct$2 as updateProduct, context$a_updateProductVariants as updateProductVariants };
|
|
3218
|
+
export { type ActionEvent$7 as ActionEvent, 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, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, FileType$1 as FileType, type context$a_FormattedPrice as FormattedPrice, type context$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type context$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type context$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type context$a_GetCollectionRequest as GetCollectionRequest, type context$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type context$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type context$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type context$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type context$a_GetProductsRequest as GetProductsRequest, type context$a_GetProductsResponse as GetProductsResponse, type context$a_GetStoreVariantRequest as GetStoreVariantRequest, type context$a_GetStoreVariantResponse as GetStoreVariantResponse, type context$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type context$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type context$a_MediaDataForWrite as MediaDataForWrite, type context$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type context$a_MediaItem as MediaItem, type context$a_MediaItemItemOneOf as MediaItemItemOneOf, context$a_MediaItemType as MediaItemType, type context$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type context$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type context$a_NumericPropertyRange as NumericPropertyRange, type context$a_OptionAndChoice as OptionAndChoice, context$a_OptionType as OptionType, type context$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type context$a_PagingWithBigLimit as PagingWithBigLimit, type context$a_PercentageData as PercentageData, type context$a_PlatformMedia as PlatformMedia, type context$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type context$a_PlatformPagingMetadata as PlatformPagingMetadata, type context$a_PlatformQuery as PlatformQuery, type context$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type context$a_PriceData as PriceData, type context$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type context$a_ProductChanged as ProductChanged, type context$a_ProductChangedEnvelope as ProductChangedEnvelope, type context$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type context$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type context$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type context$a_ProductCreated as ProductCreated, type context$a_ProductDeleted as ProductDeleted, 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 RestoreInfo$7 as RestoreInfo, 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 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, context$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, 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 };
|
|
3171
3219
|
}
|
|
3172
3220
|
|
|
3173
3221
|
/**
|
|
@@ -11288,6 +11336,11 @@ interface ProductMedia extends ProductMediaSetByOneOf, ProductMediaMediaOneOf {
|
|
|
11288
11336
|
* Allows to override the default media name. Can be passed only when `setBy: url`.
|
|
11289
11337
|
*/
|
|
11290
11338
|
displayName?: string | null;
|
|
11339
|
+
/**
|
|
11340
|
+
* Media type.
|
|
11341
|
+
* @readonly
|
|
11342
|
+
*/
|
|
11343
|
+
mediaType?: MediaType;
|
|
11291
11344
|
/**
|
|
11292
11345
|
* ID used to upload media to Wix Media Manager.
|
|
11293
11346
|
* @readonly
|
|
@@ -11328,6 +11381,11 @@ interface VideoResolution {
|
|
|
11328
11381
|
*/
|
|
11329
11382
|
format?: string;
|
|
11330
11383
|
}
|
|
11384
|
+
declare enum MediaType {
|
|
11385
|
+
UNKNOWN_MEDIA_TYPE = "UNKNOWN_MEDIA_TYPE",
|
|
11386
|
+
IMAGE = "IMAGE",
|
|
11387
|
+
VIDEO = "VIDEO"
|
|
11388
|
+
}
|
|
11331
11389
|
interface MediaItemsInfo {
|
|
11332
11390
|
/** All media items (images, videos etc) associated with this product. */
|
|
11333
11391
|
items?: ProductMedia[];
|
|
@@ -15346,6 +15404,7 @@ interface ProductMediaNonNullableFields {
|
|
|
15346
15404
|
url: string;
|
|
15347
15405
|
image: string;
|
|
15348
15406
|
video: string;
|
|
15407
|
+
mediaType: MediaType;
|
|
15349
15408
|
uploadId: string;
|
|
15350
15409
|
}
|
|
15351
15410
|
interface MediaItemsInfoNonNullableFields {
|
|
@@ -17067,6 +17126,8 @@ type context$5_MeasurementUnit = MeasurementUnit;
|
|
|
17067
17126
|
declare const context$5_MeasurementUnit: typeof MeasurementUnit;
|
|
17068
17127
|
type context$5_Media = Media;
|
|
17069
17128
|
type context$5_MediaItemsInfo = MediaItemsInfo;
|
|
17129
|
+
type context$5_MediaType = MediaType;
|
|
17130
|
+
declare const context$5_MediaType: typeof MediaType;
|
|
17070
17131
|
type context$5_MentionData = MentionData;
|
|
17071
17132
|
type context$5_Metadata = Metadata;
|
|
17072
17133
|
type context$5_MinVariantPriceInfo = MinVariantPriceInfo;
|
|
@@ -17401,7 +17462,7 @@ declare const context$5_updateExtendedFields: typeof updateExtendedFields;
|
|
|
17401
17462
|
declare const context$5_updateProduct: typeof updateProduct;
|
|
17402
17463
|
declare const context$5_updateProductWithInventory: typeof updateProductWithInventory;
|
|
17403
17464
|
declare namespace context$5 {
|
|
17404
|
-
export { type ActionEvent$2 as ActionEvent, type context$5_AdjustValue as AdjustValue, type context$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type context$5_Aggregation as Aggregation, type context$5_AggregationData as AggregationData, type context$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type context$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type context$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type context$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, context$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type context$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, context$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, type context$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type context$5_AggregationResults as AggregationResults, type context$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type context$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type context$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type context$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type context$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type context$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type context$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type context$5_AggregationResultsValueResults as AggregationResultsValueResults, type context$5_AggregationScalarAggregation as AggregationScalarAggregation, context$5_AggregationType as AggregationType, type context$5_AggregationValueAggregation as AggregationValueAggregation, type context$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, context$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type context$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, context$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, context$5_Alignment as Alignment, type context$5_AnchorData as AnchorData, type App$2 as App, type context$5_AppEmbedData as AppEmbedData, type context$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type context$5_AudioData as AudioData, context$5_AvailabilityStatus as AvailabilityStatus, type context$5_Background as Background, type context$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_CategoryMoved as CategoryMoved, type context$5_CellStyle as CellStyle, context$5_ChoiceType as ChoiceType, type context$5_ChoicesSettings as ChoicesSettings, type context$5_CodeBlockData as CodeBlockData, type context$5_CollapsibleListData as CollapsibleListData, type context$5_ColorData as ColorData, type context$5_Colors as Colors, type context$5_CommonAggregation as CommonAggregation, type context$5_CommonAggregationData as CommonAggregationData, type context$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type context$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type context$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type context$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type context$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, context$5_CommonAggregationType as CommonAggregationType, type context$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type context$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type context$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type context$5_CommonCursorPaging as CommonCursorPaging, type context$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$5_CommonCursorQuery as CommonCursorQuery, type context$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type context$5_CommonCursorSearch as CommonCursorSearch, type context$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type context$5_CommonCursors as CommonCursors, type context$5_CommonItemMetadata as CommonItemMetadata, context$5_CommonScalarType as CommonScalarType, type context$5_CommonSearchDetails as CommonSearchDetails, context$5_CommonSearchDetailsMode as CommonSearchDetailsMode, context$5_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsOptions as CountProductsOptions, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductOptions as CreateProductOptions, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type context$5_ExtendedFields as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugOptions as GetProductBySlugOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductOptions as GetProductOptions, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_GetVariantsRequest as GetVariantsRequest, type context$5_GetVariantsResponse as GetVariantsResponse, type context$5_Gradient as Gradient, type context$5_GroupByAggregation as GroupByAggregation, type context$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$5_GroupByValueResults as GroupByValueResults, type context$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type context$5_HTMLData as HTMLData, type context$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$5_HeadingData as HeadingData, type context$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$5_Image as Image, type context$5_ImageData as ImageData, type context$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type context$5_IndexDocument as IndexDocument, type context$5_InfoSection as InfoSection, context$5_InitialExpandedItems as InitialExpandedItems, context$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type context$5_Inventory as Inventory, context$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type context$5_InventoryItem as InventoryItem, type context$5_InventoryItemComposite as InventoryItemComposite, type context$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type context$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type context$5_InventoryStatus as InventoryStatus, type context$5_Item as Item, type context$5_ItemAddedToCategory as ItemAddedToCategory, type context$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemReference as ItemReference, type context$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type context$5_ItemStyle as ItemStyle, type context$5_ItemsAddedToCategory as ItemsAddedToCategory, type context$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type context$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context$5_Keyword as Keyword, type context$5_Layout as Layout, context$5_LayoutType as LayoutType, context$5_LineStyle as LineStyle, type context$5_Link as Link, type context$5_LinkData as LinkData, type context$5_LinkDataOneOf as LinkDataOneOf, type context$5_LinkPreviewData as LinkPreviewData, type context$5_ListValue as ListValue, type context$5_MapData as MapData, type context$5_MapSettings as MapSettings, context$5_MapType as MapType, type context$5_MaskedProduct as MaskedProduct, type context$5_MaskedProductWithInventory as MaskedProductWithInventory, context$5_MeasurementUnit as MeasurementUnit, type context$5_Media as Media, type context$5_MediaItemsInfo as MediaItemsInfo, type context$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type context$5_Metadata as Metadata, type context$5_MinVariantPriceInfo as MinVariantPriceInfo, context$5_MissingValues as MissingValues, context$5_Mode as Mode, type context$5_ModifierChoicesSettings as ModifierChoicesSettings, context$5_ModifierRenderType as ModifierRenderType, type context$5_MultipleColors as MultipleColors, type context$5_NestedAggregation as NestedAggregation, type context$5_NestedAggregationItem as NestedAggregationItem, type context$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context$5_NestedAggregationResults as NestedAggregationResults, type context$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$5_NestedAggregationType as NestedAggregationType, type context$5_NestedResultValue as NestedResultValue, type context$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$5_NestedResults as NestedResults, type context$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type context$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type context$5_NestedResultsRangeResult as NestedResultsRangeResult, type context$5_NestedResultsResults as NestedResultsResults, type context$5_NestedResultsScalarResult as NestedResultsScalarResult, type context$5_NestedResultsValueResult as NestedResultsValueResult, type context$5_NestedValueAggregationResult as NestedValueAggregationResult, type context$5_Node as Node, type context$5_NodeDataOneOf as NodeDataOneOf, type context$5_NodeStyle as NodeStyle, context$5_NodeType as NodeType, context$5_NullValue as NullValue, type context$5_Oembed as Oembed, type context$5_Option as Option, type context$5_OptionChoice as OptionChoice, type context$5_OptionChoiceIds as OptionChoiceIds, type context$5_OptionChoiceNames as OptionChoiceNames, type context$5_OptionChoiceReferences as OptionChoiceReferences, type context$5_OptionDesign as OptionDesign, type context$5_OptionLayout as OptionLayout, type context$5_OrderedListData as OrderedListData, context$5_Orientation as Orientation, type context$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type context$5_ParagraphData as ParagraphData, type context$5_ParentCategory as ParentCategory, type context$5_Permissions as Permissions, type context$5_PhysicalProperties as PhysicalProperties, type context$5_PlatformOffsetSearch as PlatformOffsetSearch, type context$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context$5_PlatformPaging as PlatformPaging, type context$5_PlaybackOptions as PlaybackOptions, type context$5_PluginContainerData as PluginContainerData, context$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$5_PluginContainerDataWidth as PluginContainerDataWidth, type context$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$5_Poll as Poll, type context$5_PollData as PollData, type context$5_PollDataLayout as PollDataLayout, type context$5_PollDesign as PollDesign, type context$5_PollLayout as PollLayout, context$5_PollLayoutDirection as PollLayoutDirection, context$5_PollLayoutType as PollLayoutType, type context$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, context$5_PreorderStatus as PreorderStatus, type context$5_PriceInfo as PriceInfo, type context$5_PricePerUnit as PricePerUnit, type context$5_PricePerUnitRange as PricePerUnitRange, type context$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type context$5_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategoriesInfo as ProductCategoriesInfo, type context$5_ProductCategory as ProductCategory, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductPreorderAvailability as ProductPreorderAvailability, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantIds as ProductVariantIds, type context$5_ProductVariants as ProductVariants, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_ProductsQueryBuilder as ProductsQueryBuilder, type context$5_ProductsQueryResult as ProductsQueryResult, type context$5_QueryProductsOptions as QueryProductsOptions, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsOptions as SearchProductsOptions, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SearchRelated as SearchRelated, type context$5_SearchRelatedDetails as SearchRelatedDetails, type context$5_SearchRelatedProductsRequest as SearchRelatedProductsRequest, type context$5_SearchRelatedProductsResponse as SearchRelatedProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, type context$5_TreeReference as TreeReference, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProduct as UpdateProduct, type context$5_UpdateProductOptions as UpdateProductOptions, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantSummary as VariantSummary, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, type context$5_WixCommonAggregation as WixCommonAggregation, type context$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, context$5_WixCommonAggregationType as WixCommonAggregationType, type context$5_WixCommonItemMetadata as WixCommonItemMetadata, context$5_WixCommonScalarType as WixCommonScalarType, type context$5_WixCommonSearchDetails as WixCommonSearchDetails, context$5_WixCommonSortOrder as WixCommonSortOrder, type context$5_WixCommonSorting as WixCommonSorting, type context$5__publicOnProductCreatedType as _publicOnProductCreatedType, type context$5__publicOnProductDeletedType as _publicOnProductDeletedType, type context$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, context$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, context$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProducts as bulkCreateProducts, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkDeleteProducts as bulkDeleteProducts, context$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, context$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, context$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProducts as bulkUpdateProducts, context$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_countProducts as countProducts, context$5_createProduct as createProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_deleteProduct as deleteProduct, context$5_getProduct as getProduct, context$5_getProductBySlug as getProductBySlug, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, context$5_queryProducts as queryProducts, context$5_searchProducts as searchProducts, context$5_updateExtendedFields as updateExtendedFields, context$5_updateProduct as updateProduct, context$5_updateProductWithInventory as updateProductWithInventory };
|
|
17465
|
+
export { type ActionEvent$2 as ActionEvent, type context$5_AdjustValue as AdjustValue, type context$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type context$5_Aggregation as Aggregation, type context$5_AggregationData as AggregationData, type context$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type context$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type context$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type context$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, context$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type context$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, context$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, type context$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type context$5_AggregationResults as AggregationResults, type context$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type context$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type context$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type context$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type context$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type context$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type context$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type context$5_AggregationResultsValueResults as AggregationResultsValueResults, type context$5_AggregationScalarAggregation as AggregationScalarAggregation, context$5_AggregationType as AggregationType, type context$5_AggregationValueAggregation as AggregationValueAggregation, type context$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, context$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type context$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, context$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, context$5_Alignment as Alignment, type context$5_AnchorData as AnchorData, type App$2 as App, type context$5_AppEmbedData as AppEmbedData, type context$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type context$5_AudioData as AudioData, context$5_AvailabilityStatus as AvailabilityStatus, type context$5_Background as Background, type context$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_CategoryMoved as CategoryMoved, type context$5_CellStyle as CellStyle, context$5_ChoiceType as ChoiceType, type context$5_ChoicesSettings as ChoicesSettings, type context$5_CodeBlockData as CodeBlockData, type context$5_CollapsibleListData as CollapsibleListData, type context$5_ColorData as ColorData, type context$5_Colors as Colors, type context$5_CommonAggregation as CommonAggregation, type context$5_CommonAggregationData as CommonAggregationData, type context$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type context$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type context$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type context$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type context$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, context$5_CommonAggregationType as CommonAggregationType, type context$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type context$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type context$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type context$5_CommonCursorPaging as CommonCursorPaging, type context$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$5_CommonCursorQuery as CommonCursorQuery, type context$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type context$5_CommonCursorSearch as CommonCursorSearch, type context$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type context$5_CommonCursors as CommonCursors, type context$5_CommonItemMetadata as CommonItemMetadata, context$5_CommonScalarType as CommonScalarType, type context$5_CommonSearchDetails as CommonSearchDetails, context$5_CommonSearchDetailsMode as CommonSearchDetailsMode, context$5_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsOptions as CountProductsOptions, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductOptions as CreateProductOptions, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type context$5_ExtendedFields as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugOptions as GetProductBySlugOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductOptions as GetProductOptions, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_GetVariantsRequest as GetVariantsRequest, type context$5_GetVariantsResponse as GetVariantsResponse, type context$5_Gradient as Gradient, type context$5_GroupByAggregation as GroupByAggregation, type context$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$5_GroupByValueResults as GroupByValueResults, type context$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type context$5_HTMLData as HTMLData, type context$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$5_HeadingData as HeadingData, type context$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$5_Image as Image, type context$5_ImageData as ImageData, type context$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type context$5_IndexDocument as IndexDocument, type context$5_InfoSection as InfoSection, context$5_InitialExpandedItems as InitialExpandedItems, context$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type context$5_Inventory as Inventory, context$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type context$5_InventoryItem as InventoryItem, type context$5_InventoryItemComposite as InventoryItemComposite, type context$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type context$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type context$5_InventoryStatus as InventoryStatus, type context$5_Item as Item, type context$5_ItemAddedToCategory as ItemAddedToCategory, type context$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemReference as ItemReference, type context$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type context$5_ItemStyle as ItemStyle, type context$5_ItemsAddedToCategory as ItemsAddedToCategory, type context$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type context$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context$5_Keyword as Keyword, type context$5_Layout as Layout, context$5_LayoutType as LayoutType, context$5_LineStyle as LineStyle, type context$5_Link as Link, type context$5_LinkData as LinkData, type context$5_LinkDataOneOf as LinkDataOneOf, type context$5_LinkPreviewData as LinkPreviewData, type context$5_ListValue as ListValue, type context$5_MapData as MapData, type context$5_MapSettings as MapSettings, context$5_MapType as MapType, type context$5_MaskedProduct as MaskedProduct, type context$5_MaskedProductWithInventory as MaskedProductWithInventory, context$5_MeasurementUnit as MeasurementUnit, type context$5_Media as Media, type context$5_MediaItemsInfo as MediaItemsInfo, context$5_MediaType as MediaType, type context$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type context$5_Metadata as Metadata, type context$5_MinVariantPriceInfo as MinVariantPriceInfo, context$5_MissingValues as MissingValues, context$5_Mode as Mode, type context$5_ModifierChoicesSettings as ModifierChoicesSettings, context$5_ModifierRenderType as ModifierRenderType, type context$5_MultipleColors as MultipleColors, type context$5_NestedAggregation as NestedAggregation, type context$5_NestedAggregationItem as NestedAggregationItem, type context$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context$5_NestedAggregationResults as NestedAggregationResults, type context$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$5_NestedAggregationType as NestedAggregationType, type context$5_NestedResultValue as NestedResultValue, type context$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$5_NestedResults as NestedResults, type context$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type context$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type context$5_NestedResultsRangeResult as NestedResultsRangeResult, type context$5_NestedResultsResults as NestedResultsResults, type context$5_NestedResultsScalarResult as NestedResultsScalarResult, type context$5_NestedResultsValueResult as NestedResultsValueResult, type context$5_NestedValueAggregationResult as NestedValueAggregationResult, type context$5_Node as Node, type context$5_NodeDataOneOf as NodeDataOneOf, type context$5_NodeStyle as NodeStyle, context$5_NodeType as NodeType, context$5_NullValue as NullValue, type context$5_Oembed as Oembed, type context$5_Option as Option, type context$5_OptionChoice as OptionChoice, type context$5_OptionChoiceIds as OptionChoiceIds, type context$5_OptionChoiceNames as OptionChoiceNames, type context$5_OptionChoiceReferences as OptionChoiceReferences, type context$5_OptionDesign as OptionDesign, type context$5_OptionLayout as OptionLayout, type context$5_OrderedListData as OrderedListData, context$5_Orientation as Orientation, type context$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type context$5_ParagraphData as ParagraphData, type context$5_ParentCategory as ParentCategory, type context$5_Permissions as Permissions, type context$5_PhysicalProperties as PhysicalProperties, type context$5_PlatformOffsetSearch as PlatformOffsetSearch, type context$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context$5_PlatformPaging as PlatformPaging, type context$5_PlaybackOptions as PlaybackOptions, type context$5_PluginContainerData as PluginContainerData, context$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$5_PluginContainerDataWidth as PluginContainerDataWidth, type context$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$5_Poll as Poll, type context$5_PollData as PollData, type context$5_PollDataLayout as PollDataLayout, type context$5_PollDesign as PollDesign, type context$5_PollLayout as PollLayout, context$5_PollLayoutDirection as PollLayoutDirection, context$5_PollLayoutType as PollLayoutType, type context$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, context$5_PreorderStatus as PreorderStatus, type context$5_PriceInfo as PriceInfo, type context$5_PricePerUnit as PricePerUnit, type context$5_PricePerUnitRange as PricePerUnitRange, type context$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type context$5_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategoriesInfo as ProductCategoriesInfo, type context$5_ProductCategory as ProductCategory, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductPreorderAvailability as ProductPreorderAvailability, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantIds as ProductVariantIds, type context$5_ProductVariants as ProductVariants, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_ProductsQueryBuilder as ProductsQueryBuilder, type context$5_ProductsQueryResult as ProductsQueryResult, type context$5_QueryProductsOptions as QueryProductsOptions, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsOptions as SearchProductsOptions, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SearchRelated as SearchRelated, type context$5_SearchRelatedDetails as SearchRelatedDetails, type context$5_SearchRelatedProductsRequest as SearchRelatedProductsRequest, type context$5_SearchRelatedProductsResponse as SearchRelatedProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, type context$5_TreeReference as TreeReference, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProduct as UpdateProduct, type context$5_UpdateProductOptions as UpdateProductOptions, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantSummary as VariantSummary, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, type context$5_WixCommonAggregation as WixCommonAggregation, type context$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, context$5_WixCommonAggregationType as WixCommonAggregationType, type context$5_WixCommonItemMetadata as WixCommonItemMetadata, context$5_WixCommonScalarType as WixCommonScalarType, type context$5_WixCommonSearchDetails as WixCommonSearchDetails, context$5_WixCommonSortOrder as WixCommonSortOrder, type context$5_WixCommonSorting as WixCommonSorting, type context$5__publicOnProductCreatedType as _publicOnProductCreatedType, type context$5__publicOnProductDeletedType as _publicOnProductDeletedType, type context$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, context$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, context$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProducts as bulkCreateProducts, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkDeleteProducts as bulkDeleteProducts, context$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, context$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, context$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProducts as bulkUpdateProducts, context$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_countProducts as countProducts, context$5_createProduct as createProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_deleteProduct as deleteProduct, context$5_getProduct as getProduct, context$5_getProductBySlug as getProductBySlug, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, context$5_queryProducts as queryProducts, context$5_searchProducts as searchProducts, context$5_updateExtendedFields as updateExtendedFields, context$5_updateProduct as updateProduct, context$5_updateProductWithInventory as updateProductWithInventory };
|
|
17405
17466
|
}
|
|
17406
17467
|
|
|
17407
17468
|
interface Provision {
|
|
@@ -1565,6 +1565,116 @@ interface ReCloneStoreRequest {
|
|
|
1565
1565
|
}
|
|
1566
1566
|
interface ReCloneStoreResponse {
|
|
1567
1567
|
}
|
|
1568
|
+
interface DomainEvent$7 extends DomainEventBodyOneOf$7 {
|
|
1569
|
+
createdEvent?: EntityCreatedEvent$7;
|
|
1570
|
+
updatedEvent?: EntityUpdatedEvent$7;
|
|
1571
|
+
deletedEvent?: EntityDeletedEvent$7;
|
|
1572
|
+
actionEvent?: ActionEvent$7;
|
|
1573
|
+
/**
|
|
1574
|
+
* Unique event ID.
|
|
1575
|
+
* Allows clients to ignore duplicate webhooks.
|
|
1576
|
+
*/
|
|
1577
|
+
_id?: string;
|
|
1578
|
+
/**
|
|
1579
|
+
* Assumes actions are also always typed to an entity_type
|
|
1580
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
1581
|
+
*/
|
|
1582
|
+
entityFqdn?: string;
|
|
1583
|
+
/**
|
|
1584
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
1585
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
1586
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
1587
|
+
*/
|
|
1588
|
+
slug?: string;
|
|
1589
|
+
/** ID of the entity associated with the event. */
|
|
1590
|
+
entityId?: string;
|
|
1591
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
1592
|
+
eventTime?: Date;
|
|
1593
|
+
/**
|
|
1594
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
1595
|
+
* (for example, GDPR).
|
|
1596
|
+
*/
|
|
1597
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
1598
|
+
/** If present, indicates the action that triggered the event. */
|
|
1599
|
+
originatedFrom?: string | null;
|
|
1600
|
+
/**
|
|
1601
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
1602
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
1603
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
1604
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
1605
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
1606
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
1607
|
+
*/
|
|
1608
|
+
entityEventSequence?: string | null;
|
|
1609
|
+
}
|
|
1610
|
+
/** @oneof */
|
|
1611
|
+
interface DomainEventBodyOneOf$7 {
|
|
1612
|
+
createdEvent?: EntityCreatedEvent$7;
|
|
1613
|
+
updatedEvent?: EntityUpdatedEvent$7;
|
|
1614
|
+
deletedEvent?: EntityDeletedEvent$7;
|
|
1615
|
+
actionEvent?: ActionEvent$7;
|
|
1616
|
+
}
|
|
1617
|
+
interface EntityCreatedEvent$7 {
|
|
1618
|
+
entity?: string;
|
|
1619
|
+
}
|
|
1620
|
+
interface RestoreInfo$7 {
|
|
1621
|
+
deletedDate?: Date;
|
|
1622
|
+
}
|
|
1623
|
+
interface EntityUpdatedEvent$7 {
|
|
1624
|
+
/**
|
|
1625
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
1626
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
1627
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
1628
|
+
*/
|
|
1629
|
+
currentEntity?: string;
|
|
1630
|
+
}
|
|
1631
|
+
interface EntityDeletedEvent$7 {
|
|
1632
|
+
/** Entity that was deleted */
|
|
1633
|
+
deletedEntity?: string | null;
|
|
1634
|
+
}
|
|
1635
|
+
interface ActionEvent$7 {
|
|
1636
|
+
body?: string;
|
|
1637
|
+
}
|
|
1638
|
+
interface MessageEnvelope$9 {
|
|
1639
|
+
/** App instance ID. */
|
|
1640
|
+
instanceId?: string | null;
|
|
1641
|
+
/** Event type. */
|
|
1642
|
+
eventType?: string;
|
|
1643
|
+
/** The identification type and identity data. */
|
|
1644
|
+
identity?: IdentificationData$9;
|
|
1645
|
+
/** Stringify payload. */
|
|
1646
|
+
data?: string;
|
|
1647
|
+
}
|
|
1648
|
+
interface IdentificationData$9 extends IdentificationDataIdOneOf$9 {
|
|
1649
|
+
/** ID of a site visitor that has not logged in to the site. */
|
|
1650
|
+
anonymousVisitorId?: string;
|
|
1651
|
+
/** ID of a site visitor that has logged in to the site. */
|
|
1652
|
+
memberId?: string;
|
|
1653
|
+
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
1654
|
+
wixUserId?: string;
|
|
1655
|
+
/** ID of an app. */
|
|
1656
|
+
appId?: string;
|
|
1657
|
+
/** @readonly */
|
|
1658
|
+
identityType?: WebhookIdentityType$9;
|
|
1659
|
+
}
|
|
1660
|
+
/** @oneof */
|
|
1661
|
+
interface IdentificationDataIdOneOf$9 {
|
|
1662
|
+
/** ID of a site visitor that has not logged in to the site. */
|
|
1663
|
+
anonymousVisitorId?: string;
|
|
1664
|
+
/** ID of a site visitor that has logged in to the site. */
|
|
1665
|
+
memberId?: string;
|
|
1666
|
+
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
1667
|
+
wixUserId?: string;
|
|
1668
|
+
/** ID of an app. */
|
|
1669
|
+
appId?: string;
|
|
1670
|
+
}
|
|
1671
|
+
declare enum WebhookIdentityType$9 {
|
|
1672
|
+
UNKNOWN = "UNKNOWN",
|
|
1673
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
1674
|
+
MEMBER = "MEMBER",
|
|
1675
|
+
WIX_USER = "WIX_USER",
|
|
1676
|
+
APP = "APP"
|
|
1677
|
+
}
|
|
1568
1678
|
interface V1CreateProductPlatformizedRequest {
|
|
1569
1679
|
/** Product information. */
|
|
1570
1680
|
product?: Product$2;
|
|
@@ -2078,46 +2188,6 @@ interface AggregateProductsRequest {
|
|
|
2078
2188
|
interface AggregateProductsResponse {
|
|
2079
2189
|
aggregates?: Record<string, any> | null;
|
|
2080
2190
|
}
|
|
2081
|
-
interface MessageEnvelope$9 {
|
|
2082
|
-
/** App instance ID. */
|
|
2083
|
-
instanceId?: string | null;
|
|
2084
|
-
/** Event type. */
|
|
2085
|
-
eventType?: string;
|
|
2086
|
-
/** The identification type and identity data. */
|
|
2087
|
-
identity?: IdentificationData$9;
|
|
2088
|
-
/** Stringify payload. */
|
|
2089
|
-
data?: string;
|
|
2090
|
-
}
|
|
2091
|
-
interface IdentificationData$9 extends IdentificationDataIdOneOf$9 {
|
|
2092
|
-
/** ID of a site visitor that has not logged in to the site. */
|
|
2093
|
-
anonymousVisitorId?: string;
|
|
2094
|
-
/** ID of a site visitor that has logged in to the site. */
|
|
2095
|
-
memberId?: string;
|
|
2096
|
-
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
2097
|
-
wixUserId?: string;
|
|
2098
|
-
/** ID of an app. */
|
|
2099
|
-
appId?: string;
|
|
2100
|
-
/** @readonly */
|
|
2101
|
-
identityType?: WebhookIdentityType$9;
|
|
2102
|
-
}
|
|
2103
|
-
/** @oneof */
|
|
2104
|
-
interface IdentificationDataIdOneOf$9 {
|
|
2105
|
-
/** ID of a site visitor that has not logged in to the site. */
|
|
2106
|
-
anonymousVisitorId?: string;
|
|
2107
|
-
/** ID of a site visitor that has logged in to the site. */
|
|
2108
|
-
memberId?: string;
|
|
2109
|
-
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
2110
|
-
wixUserId?: string;
|
|
2111
|
-
/** ID of an app. */
|
|
2112
|
-
appId?: string;
|
|
2113
|
-
}
|
|
2114
|
-
declare enum WebhookIdentityType$9 {
|
|
2115
|
-
UNKNOWN = "UNKNOWN",
|
|
2116
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2117
|
-
MEMBER = "MEMBER",
|
|
2118
|
-
WIX_USER = "WIX_USER",
|
|
2119
|
-
APP = "APP"
|
|
2120
|
-
}
|
|
2121
2191
|
interface NumericPropertyRangeNonNullableFields {
|
|
2122
2192
|
minValue: number;
|
|
2123
2193
|
maxValue: number;
|
|
@@ -2381,18 +2451,10 @@ interface BaseEventMetadata$7 {
|
|
|
2381
2451
|
/** The identification type and identity data. */
|
|
2382
2452
|
identity?: IdentificationData$9;
|
|
2383
2453
|
}
|
|
2384
|
-
interface ProductCreatedEnvelope$1 {
|
|
2385
|
-
data: ProductCreated;
|
|
2386
|
-
metadata: BaseEventMetadata$7;
|
|
2387
|
-
}
|
|
2388
2454
|
interface ProductChangedEnvelope {
|
|
2389
2455
|
data: ProductChanged;
|
|
2390
2456
|
metadata: BaseEventMetadata$7;
|
|
2391
2457
|
}
|
|
2392
|
-
interface ProductDeletedEnvelope$1 {
|
|
2393
|
-
data: ProductDeleted;
|
|
2394
|
-
metadata: BaseEventMetadata$7;
|
|
2395
|
-
}
|
|
2396
2458
|
interface ProductCollectionCreatedEnvelope {
|
|
2397
2459
|
data: CollectionCreated;
|
|
2398
2460
|
metadata: BaseEventMetadata$7;
|
|
@@ -2895,9 +2957,7 @@ interface GetStoreVariantSignature {
|
|
|
2895
2957
|
*/
|
|
2896
2958
|
(_id: string): Promise<GetStoreVariantResponse & GetStoreVariantResponseNonNullableFields>;
|
|
2897
2959
|
}
|
|
2898
|
-
declare const onProductCreated$3: EventDefinition<ProductCreatedEnvelope$1, "com.wix.ecommerce.catalog.api.v1.ProductCreated">;
|
|
2899
2960
|
declare const onProductChanged$1: EventDefinition<ProductChangedEnvelope, "com.wix.ecommerce.catalog.api.v1.ProductChanged">;
|
|
2900
|
-
declare const onProductDeleted$3: EventDefinition<ProductDeletedEnvelope$1, "com.wix.ecommerce.catalog.api.v1.ProductDeleted">;
|
|
2901
2961
|
declare const onProductCollectionCreated$1: EventDefinition<ProductCollectionCreatedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionCreated">;
|
|
2902
2962
|
declare const onProductCollectionChanged$1: EventDefinition<ProductCollectionChangedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionChanged">;
|
|
2903
2963
|
declare const onProductCollectionDeleted$1: EventDefinition<ProductCollectionDeletedEnvelope, "com.wix.ecommerce.catalog.api.v1.CollectionDeleted">;
|
|
@@ -2932,24 +2992,12 @@ declare const queryProductVariants: BuildRESTFunction<typeof queryProductVariant
|
|
|
2932
2992
|
declare const queryStoreVariants: BuildRESTFunction<typeof queryStoreVariants$1> & typeof queryStoreVariants$1;
|
|
2933
2993
|
declare const getStoreVariant: BuildRESTFunction<typeof getStoreVariant$1> & typeof getStoreVariant$1;
|
|
2934
2994
|
|
|
2935
|
-
type _publicOnProductCreatedType$1 = typeof onProductCreated$3;
|
|
2936
|
-
/**
|
|
2937
|
-
* Triggered when a product is created.
|
|
2938
|
-
*/
|
|
2939
|
-
declare const onProductCreated$2: ReturnType<typeof createEventModule$7<_publicOnProductCreatedType>>;
|
|
2940
|
-
|
|
2941
2995
|
type _publicOnProductChangedType = typeof onProductChanged$1;
|
|
2942
2996
|
/**
|
|
2943
2997
|
* Triggered when a product is changed.
|
|
2944
2998
|
*/
|
|
2945
2999
|
declare const onProductChanged: ReturnType<typeof createEventModule$7<_publicOnProductChangedType>>;
|
|
2946
3000
|
|
|
2947
|
-
type _publicOnProductDeletedType$1 = typeof onProductDeleted$3;
|
|
2948
|
-
/**
|
|
2949
|
-
* Triggered when a product is deleted.
|
|
2950
|
-
*/
|
|
2951
|
-
declare const onProductDeleted$2: ReturnType<typeof createEventModule$7<_publicOnProductDeletedType>>;
|
|
2952
|
-
|
|
2953
3001
|
type _publicOnProductCollectionCreatedType = typeof onProductCollectionCreated$1;
|
|
2954
3002
|
/**
|
|
2955
3003
|
* Triggered when a collection is created.
|
|
@@ -3167,7 +3215,7 @@ declare const index_d$a_resetAllProductVariantData: typeof resetAllProductVarian
|
|
|
3167
3215
|
declare const index_d$a_updateCollection: typeof updateCollection;
|
|
3168
3216
|
declare const index_d$a_updateProductVariants: typeof updateProductVariants;
|
|
3169
3217
|
declare namespace index_d$a {
|
|
3170
|
-
export { type index_d$a_AddProductMediaRequest as AddProductMediaRequest, type index_d$a_AddProductMediaResponse as AddProductMediaResponse, type index_d$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type index_d$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type index_d$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type index_d$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type index_d$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type index_d$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type index_d$a_AggregateProductsRequest as AggregateProductsRequest, type index_d$a_AggregateProductsResponse as AggregateProductsResponse, type index_d$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type index_d$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type index_d$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type index_d$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type index_d$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type index_d$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type index_d$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type index_d$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type index_d$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type index_d$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type index_d$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type index_d$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type index_d$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type index_d$a_BulkUpdateProductsByFilterSyncResponse as BulkUpdateProductsByFilterSyncResponse, type BulkUpdateProductsRequest$1 as BulkUpdateProductsRequest, type BulkUpdateProductsResponse$1 as BulkUpdateProductsResponse, type BulkUpdateProductsResponseNonNullableFields$1 as BulkUpdateProductsResponseNonNullableFields, type Choice$1 as Choice, type index_d$a_Collection as Collection, type index_d$a_CollectionChanged as CollectionChanged, type index_d$a_CollectionCreated as CollectionCreated, type index_d$a_CollectionDeleted as CollectionDeleted, type index_d$a_CostAndProfitData as CostAndProfitData, type index_d$a_CreateCollectionRequest as CreateCollectionRequest, type index_d$a_CreateCollectionResponse as CreateCollectionResponse, type index_d$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type index_d$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type index_d$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type index_d$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type index_d$a_CreateProductPlatformizedResponse as CreateProductPlatformizedResponse, type CreateProductRequest$1 as CreateProductRequest, type CreateProductResponse$1 as CreateProductResponse, type CreateProductResponseNonNullableFields$1 as CreateProductResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type Cursors$7 as Cursors, type index_d$a_CustomFieldsContainer as CustomFieldsContainer, type index_d$a_CustomTextField as CustomTextField, type index_d$a_DeleteCollectionRequest as DeleteCollectionRequest, type index_d$a_DeleteCollectionResponse as DeleteCollectionResponse, type index_d$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type index_d$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type index_d$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type index_d$a_DeleteProductPlatformizedResponse as DeleteProductPlatformizedResponse, type DeleteProductRequest$1 as DeleteProductRequest, type DeleteProductResponse$1 as DeleteProductResponse, type Discount$1 as Discount, DiscountType$2 as DiscountType, FileType$1 as FileType, type index_d$a_FormattedPrice as FormattedPrice, type index_d$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type index_d$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type index_d$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type index_d$a_GetCollectionRequest as GetCollectionRequest, type index_d$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type index_d$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type index_d$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type index_d$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type index_d$a_GetProductsRequest as GetProductsRequest, type index_d$a_GetProductsResponse as GetProductsResponse, type index_d$a_GetStoreVariantRequest as GetStoreVariantRequest, type index_d$a_GetStoreVariantResponse as GetStoreVariantResponse, type index_d$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type index_d$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type index_d$a_MediaDataForWrite as MediaDataForWrite, type index_d$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type index_d$a_MediaItem as MediaItem, type index_d$a_MediaItemItemOneOf as MediaItemItemOneOf, index_d$a_MediaItemType as MediaItemType, type index_d$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type index_d$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type index_d$a_NumericPropertyRange as NumericPropertyRange, type index_d$a_OptionAndChoice as OptionAndChoice, index_d$a_OptionType as OptionType, type index_d$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type index_d$a_PagingWithBigLimit as PagingWithBigLimit, type index_d$a_PercentageData as PercentageData, type index_d$a_PlatformMedia as PlatformMedia, type index_d$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type index_d$a_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$a_PlatformQuery as PlatformQuery, type index_d$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type index_d$a_PriceData as PriceData, type index_d$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type index_d$a_ProductChanged as ProductChanged, type index_d$a_ProductChangedEnvelope as ProductChangedEnvelope, type index_d$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type index_d$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type index_d$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type index_d$a_ProductCreated as ProductCreated, type ProductCreatedEnvelope$1 as ProductCreatedEnvelope, type index_d$a_ProductDeleted as ProductDeleted, type ProductDeletedEnvelope$1 as ProductDeletedEnvelope, type index_d$a_ProductOption as ProductOption, type index_d$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type index_d$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type index_d$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type index_d$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type index_d$a_PropertyAdjustmentData as PropertyAdjustmentData, type index_d$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type index_d$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type index_d$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type index_d$a_QueryCollectionsRequest as QueryCollectionsRequest, type index_d$a_QueryCollectionsResponse as QueryCollectionsResponse, type index_d$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type index_d$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type index_d$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type index_d$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type index_d$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type index_d$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type index_d$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type index_d$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type index_d$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type index_d$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type index_d$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type index_d$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type index_d$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type index_d$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type index_d$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type index_d$a_ReCloneStoreRequest as ReCloneStoreRequest, type index_d$a_ReCloneStoreResponse as ReCloneStoreResponse, type index_d$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type index_d$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type index_d$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type index_d$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type index_d$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type index_d$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type index_d$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type index_d$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type index_d$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type index_d$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type index_d$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type index_d$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type index_d$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type index_d$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type index_d$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type index_d$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type index_d$a_SetValue as SetValue, type index_d$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type index_d$a_Stock as Stock, type index_d$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type index_d$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type index_d$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type index_d$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type index_d$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type index_d$a_UpdateCollection as UpdateCollection, type index_d$a_UpdateCollectionRequest as UpdateCollectionRequest, type index_d$a_UpdateCollectionResponse as UpdateCollectionResponse, type index_d$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type UpdateProduct$1 as UpdateProduct, type index_d$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type index_d$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type index_d$a_UpdateVariantsRequest as UpdateVariantsRequest, type index_d$a_UpdateVariantsResponse as UpdateVariantsResponse, type index_d$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type index_d$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type index_d$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type index_d$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type index_d$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type index_d$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type index_d$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type index_d$a_VariantChanged as VariantChanged, type index_d$a_VariantData as VariantData, type index_d$a_VariantDataWithNoStock as VariantDataWithNoStock, type index_d$a_VariantOverride as VariantOverride, type index_d$a_VariantStock as VariantStock, type index_d$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type index_d$a__publicOnProductChangedType as _publicOnProductChangedType, type index_d$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type index_d$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type index_d$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type _publicOnProductCreatedType$1 as _publicOnProductCreatedType, type _publicOnProductDeletedType$1 as _publicOnProductDeletedType, type index_d$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, index_d$a_addProductMedia as addProductMedia, index_d$a_addProductMediaToChoices as addProductMediaToChoices, index_d$a_addProductsToCollection as addProductsToCollection, index_d$a_bulkAdjustProductProperty as bulkAdjustProductProperty, index_d$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, index_d$a_createCollection as createCollection, createProduct$2 as createProduct, index_d$a_deleteCollection as deleteCollection, deleteProduct$2 as deleteProduct, index_d$a_deleteProductOptions as deleteProductOptions, index_d$a_getCollectionBySlug as getCollectionBySlug, getProduct$2 as getProduct, index_d$a_getProductOptionsAvailability as getProductOptionsAvailability, index_d$a_getStoreVariant as getStoreVariant, index_d$a_onProductChanged as onProductChanged, index_d$a_onProductCollectionChanged as onProductCollectionChanged, index_d$a_onProductCollectionCreated as onProductCollectionCreated, index_d$a_onProductCollectionDeleted as onProductCollectionDeleted, onProductCreated$2 as onProductCreated, onProductDeleted$2 as onProductDeleted, index_d$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, onProductCreated$3 as publicOnProductCreated, onProductDeleted$3 as publicOnProductDeleted, onProductVariantsChanged$1 as publicOnProductVariantsChanged, index_d$a_queryProductVariants as queryProductVariants, queryProducts$2 as queryProducts, index_d$a_queryStoreVariants as queryStoreVariants, index_d$a_removeBrand as removeBrand, index_d$a_removeProductMedia as removeProductMedia, index_d$a_removeProductMediaFromChoices as removeProductMediaFromChoices, index_d$a_removeProductsFromCollection as removeProductsFromCollection, index_d$a_removeRibbon as removeRibbon, index_d$a_resetAllProductVariantData as resetAllProductVariantData, index_d$a_updateCollection as updateCollection, updateProduct$2 as updateProduct, index_d$a_updateProductVariants as updateProductVariants };
|
|
3218
|
+
export { type ActionEvent$7 as ActionEvent, type index_d$a_AddProductMediaRequest as AddProductMediaRequest, type index_d$a_AddProductMediaResponse as AddProductMediaResponse, type index_d$a_AddProductMediaToChoicesRequest as AddProductMediaToChoicesRequest, type index_d$a_AddProductMediaToChoicesResponse as AddProductMediaToChoicesResponse, type index_d$a_AddProductsToCollectionRequest as AddProductsToCollectionRequest, type index_d$a_AddProductsToCollectionResponse as AddProductsToCollectionResponse, type index_d$a_AdditionalInfoSection as AdditionalInfoSection, type AdjustValue$1 as AdjustValue, type index_d$a_AdjustValueValueOneOf as AdjustValueValueOneOf, type index_d$a_AggregateProductsRequest as AggregateProductsRequest, type index_d$a_AggregateProductsResponse as AggregateProductsResponse, type index_d$a_AllowedProductsCountLimitExceededErrorData as AllowedProductsCountLimitExceededErrorData, type ApplicationError$6 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$6 as BulkActionMetadata, type index_d$a_BulkAdjustProductPropertiesByFilterSyncRequest as BulkAdjustProductPropertiesByFilterSyncRequest, type index_d$a_BulkAdjustProductPropertiesByFilterSyncResponse as BulkAdjustProductPropertiesByFilterSyncResponse, type index_d$a_BulkAdjustProductPropertiesRequest as BulkAdjustProductPropertiesRequest, type index_d$a_BulkAdjustProductPropertiesResponse as BulkAdjustProductPropertiesResponse, type index_d$a_BulkAdjustProductPropertiesResponseNonNullableFields as BulkAdjustProductPropertiesResponseNonNullableFields, type BulkDeleteProductsRequest$1 as BulkDeleteProductsRequest, type BulkDeleteProductsResponse$1 as BulkDeleteProductsResponse, type BulkProductResult$1 as BulkProductResult, type index_d$a_BulkQueryCustomFieldsRequest as BulkQueryCustomFieldsRequest, type index_d$a_BulkQueryCustomFieldsResponse as BulkQueryCustomFieldsResponse, type index_d$a_BulkRemoveCustomFieldsRequest as BulkRemoveCustomFieldsRequest, type index_d$a_BulkRemoveCustomFieldsResponse as BulkRemoveCustomFieldsResponse, type index_d$a_BulkSetCustomFieldsRequest as BulkSetCustomFieldsRequest, type index_d$a_BulkSetCustomFieldsResponse as BulkSetCustomFieldsResponse, type index_d$a_BulkUpdateProductsByFilterSyncRequest as BulkUpdateProductsByFilterSyncRequest, type index_d$a_BulkUpdateProductsByFilterSyncResponse as BulkUpdateProductsByFilterSyncResponse, type BulkUpdateProductsRequest$1 as BulkUpdateProductsRequest, type BulkUpdateProductsResponse$1 as BulkUpdateProductsResponse, type BulkUpdateProductsResponseNonNullableFields$1 as BulkUpdateProductsResponseNonNullableFields, type Choice$1 as Choice, type index_d$a_Collection as Collection, type index_d$a_CollectionChanged as CollectionChanged, type index_d$a_CollectionCreated as CollectionCreated, type index_d$a_CollectionDeleted as CollectionDeleted, type index_d$a_CostAndProfitData as CostAndProfitData, type index_d$a_CreateCollectionRequest as CreateCollectionRequest, type index_d$a_CreateCollectionResponse as CreateCollectionResponse, type index_d$a_CreateCollectionResponseNonNullableFields as CreateCollectionResponseNonNullableFields, type index_d$a_CreateDigitalProductRequest as CreateDigitalProductRequest, type index_d$a_CreateDigitalProductResponse as CreateDigitalProductResponse, type index_d$a_CreateProductPlatformizedRequest as CreateProductPlatformizedRequest, type index_d$a_CreateProductPlatformizedResponse as CreateProductPlatformizedResponse, type CreateProductRequest$1 as CreateProductRequest, type CreateProductResponse$1 as CreateProductResponse, type CreateProductResponseNonNullableFields$1 as CreateProductResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type Cursors$7 as Cursors, type index_d$a_CustomFieldsContainer as CustomFieldsContainer, type index_d$a_CustomTextField as CustomTextField, type index_d$a_DeleteCollectionRequest as DeleteCollectionRequest, type index_d$a_DeleteCollectionResponse as DeleteCollectionResponse, type index_d$a_DeleteProductOptionsRequest as DeleteProductOptionsRequest, type index_d$a_DeleteProductOptionsResponse as DeleteProductOptionsResponse, type index_d$a_DeleteProductPlatformizedRequest as DeleteProductPlatformizedRequest, type index_d$a_DeleteProductPlatformizedResponse as DeleteProductPlatformizedResponse, type DeleteProductRequest$1 as DeleteProductRequest, type DeleteProductResponse$1 as DeleteProductResponse, type Discount$1 as Discount, DiscountType$2 as DiscountType, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, FileType$1 as FileType, type index_d$a_FormattedPrice as FormattedPrice, type index_d$a_GetCollectionBySlugRequest as GetCollectionBySlugRequest, type index_d$a_GetCollectionBySlugResponse as GetCollectionBySlugResponse, type index_d$a_GetCollectionBySlugResponseNonNullableFields as GetCollectionBySlugResponseNonNullableFields, type index_d$a_GetCollectionRequest as GetCollectionRequest, type index_d$a_GetCollectionResponse as GetCollectionResponse, type GetProductOptions$1 as GetProductOptions, type index_d$a_GetProductPlatformizedRequest as GetProductPlatformizedRequest, type index_d$a_GetProductPlatformizedResponse as GetProductPlatformizedResponse, type GetProductRequest$1 as GetProductRequest, type GetProductResponse$1 as GetProductResponse, type index_d$a_GetProductResponseNonNullableFields as GetProductResponseNonNullableFields, type index_d$a_GetProductsRequest as GetProductsRequest, type index_d$a_GetProductsResponse as GetProductsResponse, type index_d$a_GetStoreVariantRequest as GetStoreVariantRequest, type index_d$a_GetStoreVariantResponse as GetStoreVariantResponse, type index_d$a_GetStoreVariantResponseNonNullableFields as GetStoreVariantResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, InventoryStatus$1 as InventoryStatus, type ItemMetadata$6 as ItemMetadata, type Keyword$1 as Keyword, MeasurementUnit$1 as MeasurementUnit, type Media$2 as Media, type index_d$a_MediaAssignmentToChoice as MediaAssignmentToChoice, type index_d$a_MediaDataForWrite as MediaDataForWrite, type index_d$a_MediaDataForWriteMediaSourceOneOf as MediaDataForWriteMediaSourceOneOf, type index_d$a_MediaItem as MediaItem, type index_d$a_MediaItemItemOneOf as MediaItemItemOneOf, index_d$a_MediaItemType as MediaItemType, type index_d$a_MediaItemUrlAndSize as MediaItemUrlAndSize, type index_d$a_MediaItemVideo as MediaItemVideo, type MessageEnvelope$9 as MessageEnvelope, type index_d$a_NumericPropertyRange as NumericPropertyRange, type index_d$a_OptionAndChoice as OptionAndChoice, index_d$a_OptionType as OptionType, type index_d$a_PageUrl as PageUrl, type Paging$2 as Paging, type PagingMetadata$4 as PagingMetadata, type index_d$a_PagingWithBigLimit as PagingWithBigLimit, type index_d$a_PercentageData as PercentageData, type index_d$a_PlatformMedia as PlatformMedia, type index_d$a_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type PlatformPaging$2 as PlatformPaging, type index_d$a_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$a_PlatformQuery as PlatformQuery, type index_d$a_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type PreorderInfo$3 as PreorderInfo, type index_d$a_PriceData as PriceData, type index_d$a_PricePerUnitData as PricePerUnitData, type Product$2 as Product, type index_d$a_ProductChanged as ProductChanged, type index_d$a_ProductChangedEnvelope as ProductChangedEnvelope, type index_d$a_ProductCollectionChangedEnvelope as ProductCollectionChangedEnvelope, type index_d$a_ProductCollectionCreatedEnvelope as ProductCollectionCreatedEnvelope, type index_d$a_ProductCollectionDeletedEnvelope as ProductCollectionDeletedEnvelope, type index_d$a_ProductCreated as ProductCreated, type index_d$a_ProductDeleted as ProductDeleted, type index_d$a_ProductOption as ProductOption, type index_d$a_ProductOptionsAvailabilityRequest as ProductOptionsAvailabilityRequest, type index_d$a_ProductOptionsAvailabilityResponse as ProductOptionsAvailabilityResponse, type index_d$a_ProductOptionsAvailabilityResponseNonNullableFields as ProductOptionsAvailabilityResponseNonNullableFields, ProductType$1 as ProductType, type index_d$a_ProductVariantsChangedEnvelope as ProductVariantsChangedEnvelope, type ProductsQueryBuilder$1 as ProductsQueryBuilder, type ProductsQueryResult$1 as ProductsQueryResult, type index_d$a_PropertyAdjustmentData as PropertyAdjustmentData, type index_d$a_PropertyAdjustmentDataByOneOf as PropertyAdjustmentDataByOneOf, type Query$1 as Query, type index_d$a_QueryCollectionsPlatformizedRequest as QueryCollectionsPlatformizedRequest, type index_d$a_QueryCollectionsPlatformizedResponse as QueryCollectionsPlatformizedResponse, type index_d$a_QueryCollectionsRequest as QueryCollectionsRequest, type index_d$a_QueryCollectionsResponse as QueryCollectionsResponse, type index_d$a_QueryCustomFieldsRequest as QueryCustomFieldsRequest, type index_d$a_QueryCustomFieldsResponse as QueryCustomFieldsResponse, type index_d$a_QueryProductVariantsOptions as QueryProductVariantsOptions, type index_d$a_QueryProductVariantsRequest as QueryProductVariantsRequest, type index_d$a_QueryProductVariantsResponse as QueryProductVariantsResponse, type index_d$a_QueryProductVariantsResponseNonNullableFields as QueryProductVariantsResponseNonNullableFields, type index_d$a_QueryProductsPlatformizedRequest as QueryProductsPlatformizedRequest, type index_d$a_QueryProductsPlatformizedResponse as QueryProductsPlatformizedResponse, type index_d$a_QueryProductsPlatformizedResponseNonNullableFields as QueryProductsPlatformizedResponseNonNullableFields, type QueryProductsRequest$1 as QueryProductsRequest, type QueryProductsResponse$1 as QueryProductsResponse, type index_d$a_QueryProductsWithBigPageLimitRequest as QueryProductsWithBigPageLimitRequest, type index_d$a_QueryStoreVariantsRequest as QueryStoreVariantsRequest, type index_d$a_QueryStoreVariantsResponse as QueryStoreVariantsResponse, type index_d$a_QueryStoreVariantsResponseNonNullableFields as QueryStoreVariantsResponseNonNullableFields, type index_d$a_QueryStoreVariantsWithBigLimitRequest as QueryStoreVariantsWithBigLimitRequest, type index_d$a_QueryWithBigPageLimit as QueryWithBigPageLimit, type index_d$a_ReCloneStoreRequest as ReCloneStoreRequest, type index_d$a_ReCloneStoreResponse as ReCloneStoreResponse, type index_d$a_RemoveCustomFieldsRequest as RemoveCustomFieldsRequest, type index_d$a_RemoveCustomFieldsResponse as RemoveCustomFieldsResponse, type index_d$a_RemoveProductBrandRequest as RemoveProductBrandRequest, type index_d$a_RemoveProductBrandResponse as RemoveProductBrandResponse, type index_d$a_RemoveProductMediaFromChoicesRequest as RemoveProductMediaFromChoicesRequest, type index_d$a_RemoveProductMediaFromChoicesResponse as RemoveProductMediaFromChoicesResponse, type index_d$a_RemoveProductMediaRequest as RemoveProductMediaRequest, type index_d$a_RemoveProductMediaResponse as RemoveProductMediaResponse, type index_d$a_RemoveProductRibbonRequest as RemoveProductRibbonRequest, type index_d$a_RemoveProductRibbonResponse as RemoveProductRibbonResponse, type index_d$a_RemoveProductsFromCollectionRequest as RemoveProductsFromCollectionRequest, type index_d$a_RemoveProductsFromCollectionResponse as RemoveProductsFromCollectionResponse, type index_d$a_ResetAllVariantDataRequest as ResetAllVariantDataRequest, type index_d$a_ResetAllVariantDataResponse as ResetAllVariantDataResponse, type RestoreInfo$7 as RestoreInfo, type Ribbon$2 as Ribbon, type SecuredMedia$1 as SecuredMedia, type SeoSchema$1 as SeoSchema, type index_d$a_SetCustomFieldsRequest as SetCustomFieldsRequest, type index_d$a_SetCustomFieldsResponse as SetCustomFieldsResponse, type index_d$a_SetValue as SetValue, type index_d$a_SetValueValueOneOf as SetValueValueOneOf, type Settings$2 as Settings, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type index_d$a_Stock as Stock, type index_d$a_StoreVariant as StoreVariant, type Tag$1 as Tag, type index_d$a_UnlimitedPlatformCursorPaging as UnlimitedPlatformCursorPaging, type index_d$a_UnlimitedPlatformPaging as UnlimitedPlatformPaging, type index_d$a_UnlimitedPlatformQuery as UnlimitedPlatformQuery, type index_d$a_UnlimitedPlatformQueryPagingMethodOneOf as UnlimitedPlatformQueryPagingMethodOneOf, type index_d$a_UpdateCollection as UpdateCollection, type index_d$a_UpdateCollectionRequest as UpdateCollectionRequest, type index_d$a_UpdateCollectionResponse as UpdateCollectionResponse, type index_d$a_UpdateCollectionResponseNonNullableFields as UpdateCollectionResponseNonNullableFields, type UpdateProduct$1 as UpdateProduct, type index_d$a_UpdateProductPlatformizedRequest as UpdateProductPlatformizedRequest, type index_d$a_UpdateProductPlatformizedResponse as UpdateProductPlatformizedResponse, type UpdateProductRequest$1 as UpdateProductRequest, type UpdateProductResponse$1 as UpdateProductResponse, type UpdateProductResponseNonNullableFields$1 as UpdateProductResponseNonNullableFields, type index_d$a_UpdateVariantsRequest as UpdateVariantsRequest, type index_d$a_UpdateVariantsResponse as UpdateVariantsResponse, type index_d$a_UpdateVariantsResponseNonNullableFields as UpdateVariantsResponseNonNullableFields, type index_d$a_V1CreateProductPlatformizedRequest as V1CreateProductPlatformizedRequest, type index_d$a_V1CreateProductPlatformizedResponse as V1CreateProductPlatformizedResponse, type index_d$a_V1DeleteProductPlatformizedRequest as V1DeleteProductPlatformizedRequest, type index_d$a_V1DeleteProductPlatformizedResponse as V1DeleteProductPlatformizedResponse, type index_d$a_V1UpdateProductPlatformizedRequest as V1UpdateProductPlatformizedRequest, type index_d$a_V1UpdateProductPlatformizedResponse as V1UpdateProductPlatformizedResponse, type Variant$1 as Variant, type index_d$a_VariantChanged as VariantChanged, type index_d$a_VariantData as VariantData, type index_d$a_VariantDataWithNoStock as VariantDataWithNoStock, type index_d$a_VariantOverride as VariantOverride, type index_d$a_VariantStock as VariantStock, type index_d$a_VariantsChanged as VariantsChanged, Version$1 as Version, type VideoResolution$1 as VideoResolution, WebhookIdentityType$9 as WebhookIdentityType, type index_d$a__publicOnProductChangedType as _publicOnProductChangedType, type index_d$a__publicOnProductCollectionChangedType as _publicOnProductCollectionChangedType, type index_d$a__publicOnProductCollectionCreatedType as _publicOnProductCollectionCreatedType, type index_d$a__publicOnProductCollectionDeletedType as _publicOnProductCollectionDeletedType, type index_d$a__publicOnProductVariantsChangedType as _publicOnProductVariantsChangedType, index_d$a_addProductMedia as addProductMedia, index_d$a_addProductMediaToChoices as addProductMediaToChoices, index_d$a_addProductsToCollection as addProductsToCollection, index_d$a_bulkAdjustProductProperty as bulkAdjustProductProperty, index_d$a_bulkUpdateProductsProperty as bulkUpdateProductsProperty, index_d$a_createCollection as createCollection, createProduct$2 as createProduct, index_d$a_deleteCollection as deleteCollection, deleteProduct$2 as deleteProduct, index_d$a_deleteProductOptions as deleteProductOptions, index_d$a_getCollectionBySlug as getCollectionBySlug, getProduct$2 as getProduct, index_d$a_getProductOptionsAvailability as getProductOptionsAvailability, index_d$a_getStoreVariant as getStoreVariant, index_d$a_onProductChanged as onProductChanged, index_d$a_onProductCollectionChanged as onProductCollectionChanged, index_d$a_onProductCollectionCreated as onProductCollectionCreated, index_d$a_onProductCollectionDeleted as onProductCollectionDeleted, index_d$a_onProductVariantsChanged as onProductVariantsChanged, onProductChanged$1 as publicOnProductChanged, onProductCollectionChanged$1 as publicOnProductCollectionChanged, onProductCollectionCreated$1 as publicOnProductCollectionCreated, onProductCollectionDeleted$1 as publicOnProductCollectionDeleted, onProductVariantsChanged$1 as publicOnProductVariantsChanged, index_d$a_queryProductVariants as queryProductVariants, queryProducts$2 as queryProducts, index_d$a_queryStoreVariants as queryStoreVariants, index_d$a_removeBrand as removeBrand, index_d$a_removeProductMedia as removeProductMedia, index_d$a_removeProductMediaFromChoices as removeProductMediaFromChoices, index_d$a_removeProductsFromCollection as removeProductsFromCollection, index_d$a_removeRibbon as removeRibbon, index_d$a_resetAllProductVariantData as resetAllProductVariantData, index_d$a_updateCollection as updateCollection, updateProduct$2 as updateProduct, index_d$a_updateProductVariants as updateProductVariants };
|
|
3171
3219
|
}
|
|
3172
3220
|
|
|
3173
3221
|
/**
|
|
@@ -11288,6 +11336,11 @@ interface ProductMedia extends ProductMediaSetByOneOf, ProductMediaMediaOneOf {
|
|
|
11288
11336
|
* Allows to override the default media name. Can be passed only when `setBy: url`.
|
|
11289
11337
|
*/
|
|
11290
11338
|
displayName?: string | null;
|
|
11339
|
+
/**
|
|
11340
|
+
* Media type.
|
|
11341
|
+
* @readonly
|
|
11342
|
+
*/
|
|
11343
|
+
mediaType?: MediaType;
|
|
11291
11344
|
/**
|
|
11292
11345
|
* ID used to upload media to Wix Media Manager.
|
|
11293
11346
|
* @readonly
|
|
@@ -11328,6 +11381,11 @@ interface VideoResolution {
|
|
|
11328
11381
|
*/
|
|
11329
11382
|
format?: string;
|
|
11330
11383
|
}
|
|
11384
|
+
declare enum MediaType {
|
|
11385
|
+
UNKNOWN_MEDIA_TYPE = "UNKNOWN_MEDIA_TYPE",
|
|
11386
|
+
IMAGE = "IMAGE",
|
|
11387
|
+
VIDEO = "VIDEO"
|
|
11388
|
+
}
|
|
11331
11389
|
interface MediaItemsInfo {
|
|
11332
11390
|
/** All media items (images, videos etc) associated with this product. */
|
|
11333
11391
|
items?: ProductMedia[];
|
|
@@ -15346,6 +15404,7 @@ interface ProductMediaNonNullableFields {
|
|
|
15346
15404
|
url: string;
|
|
15347
15405
|
image: string;
|
|
15348
15406
|
video: string;
|
|
15407
|
+
mediaType: MediaType;
|
|
15349
15408
|
uploadId: string;
|
|
15350
15409
|
}
|
|
15351
15410
|
interface MediaItemsInfoNonNullableFields {
|
|
@@ -17067,6 +17126,8 @@ type index_d$5_MeasurementUnit = MeasurementUnit;
|
|
|
17067
17126
|
declare const index_d$5_MeasurementUnit: typeof MeasurementUnit;
|
|
17068
17127
|
type index_d$5_Media = Media;
|
|
17069
17128
|
type index_d$5_MediaItemsInfo = MediaItemsInfo;
|
|
17129
|
+
type index_d$5_MediaType = MediaType;
|
|
17130
|
+
declare const index_d$5_MediaType: typeof MediaType;
|
|
17070
17131
|
type index_d$5_MentionData = MentionData;
|
|
17071
17132
|
type index_d$5_Metadata = Metadata;
|
|
17072
17133
|
type index_d$5_MinVariantPriceInfo = MinVariantPriceInfo;
|
|
@@ -17401,7 +17462,7 @@ declare const index_d$5_updateExtendedFields: typeof updateExtendedFields;
|
|
|
17401
17462
|
declare const index_d$5_updateProduct: typeof updateProduct;
|
|
17402
17463
|
declare const index_d$5_updateProductWithInventory: typeof updateProductWithInventory;
|
|
17403
17464
|
declare namespace index_d$5 {
|
|
17404
|
-
export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CategoryMoved as CategoryMoved, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsOptions as CountProductsOptions, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductOptions as CreateProductOptions, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugOptions as GetProductBySlugOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductOptions as GetProductOptions, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_GetVariantsRequest as GetVariantsRequest, type index_d$5_GetVariantsResponse as GetVariantsResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemAddedToCategory as ItemAddedToCategory, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemReference as ItemReference, type index_d$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d$5_ItemStyle as ItemStyle, type index_d$5_ItemsAddedToCategory as ItemsAddedToCategory, type index_d$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_ParentCategory as ParentCategory, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductPreorderAvailability as ProductPreorderAvailability, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsOptions as SearchProductsOptions, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SearchRelated as SearchRelated, type index_d$5_SearchRelatedDetails as SearchRelatedDetails, type index_d$5_SearchRelatedProductsRequest as SearchRelatedProductsRequest, type index_d$5_SearchRelatedProductsResponse as SearchRelatedProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$5_TreeReference as TreeReference, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProduct as UpdateProduct, type index_d$5_UpdateProductOptions as UpdateProductOptions, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, type index_d$5__publicOnProductCreatedType as _publicOnProductCreatedType, type index_d$5__publicOnProductDeletedType as _publicOnProductDeletedType, type index_d$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, index_d$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, index_d$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProducts as bulkCreateProducts, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkDeleteProducts as bulkDeleteProducts, index_d$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, index_d$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, index_d$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProducts as bulkUpdateProducts, index_d$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_countProducts as countProducts, index_d$5_createProduct as createProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_deleteProduct as deleteProduct, index_d$5_getProduct as getProduct, index_d$5_getProductBySlug as getProductBySlug, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, index_d$5_queryProducts as queryProducts, index_d$5_searchProducts as searchProducts, index_d$5_updateExtendedFields as updateExtendedFields, index_d$5_updateProduct as updateProduct, index_d$5_updateProductWithInventory as updateProductWithInventory };
|
|
17465
|
+
export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CategoryMoved as CategoryMoved, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsOptions as CountProductsOptions, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductOptions as CreateProductOptions, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugOptions as GetProductBySlugOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductOptions as GetProductOptions, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_GetVariantsRequest as GetVariantsRequest, type index_d$5_GetVariantsResponse as GetVariantsResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemAddedToCategory as ItemAddedToCategory, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemReference as ItemReference, type index_d$5_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d$5_ItemStyle as ItemStyle, type index_d$5_ItemsAddedToCategory as ItemsAddedToCategory, type index_d$5_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d$5_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, index_d$5_MediaType as MediaType, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_ParentCategory as ParentCategory, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductPreorderAvailability as ProductPreorderAvailability, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsOptions as SearchProductsOptions, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SearchRelated as SearchRelated, type index_d$5_SearchRelatedDetails as SearchRelatedDetails, type index_d$5_SearchRelatedProductsRequest as SearchRelatedProductsRequest, type index_d$5_SearchRelatedProductsResponse as SearchRelatedProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$5_TreeReference as TreeReference, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProduct as UpdateProduct, type index_d$5_UpdateProductOptions as UpdateProductOptions, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, type index_d$5__publicOnProductCreatedType as _publicOnProductCreatedType, type index_d$5__publicOnProductDeletedType as _publicOnProductDeletedType, type index_d$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, index_d$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, index_d$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProducts as bulkCreateProducts, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkDeleteProducts as bulkDeleteProducts, index_d$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, index_d$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, index_d$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProducts as bulkUpdateProducts, index_d$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_countProducts as countProducts, index_d$5_createProduct as createProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_deleteProduct as deleteProduct, index_d$5_getProduct as getProduct, index_d$5_getProductBySlug as getProductBySlug, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, index_d$5_queryProducts as queryProducts, index_d$5_searchProducts as searchProducts, index_d$5_updateExtendedFields as updateExtendedFields, index_d$5_updateProduct as updateProduct, index_d$5_updateProductWithInventory as updateProductWithInventory };
|
|
17405
17466
|
}
|
|
17406
17467
|
|
|
17407
17468
|
interface Provision {
|
|
@@ -12615,6 +12615,11 @@ interface ProductMedia$1 extends ProductMediaSetByOneOf$1, ProductMediaMediaOneO
|
|
|
12615
12615
|
* Allows to override the default media name. Can be passed only when `setBy: url`.
|
|
12616
12616
|
*/
|
|
12617
12617
|
displayName?: string | null;
|
|
12618
|
+
/**
|
|
12619
|
+
* Media type.
|
|
12620
|
+
* @readonly
|
|
12621
|
+
*/
|
|
12622
|
+
mediaType?: MediaType$1;
|
|
12618
12623
|
/**
|
|
12619
12624
|
* ID used to upload media to Wix Media Manager.
|
|
12620
12625
|
* @readonly
|
|
@@ -12692,6 +12697,11 @@ interface VideoResolution {
|
|
|
12692
12697
|
*/
|
|
12693
12698
|
format?: string;
|
|
12694
12699
|
}
|
|
12700
|
+
declare enum MediaType$1 {
|
|
12701
|
+
UNKNOWN_MEDIA_TYPE = "UNKNOWN_MEDIA_TYPE",
|
|
12702
|
+
IMAGE = "IMAGE",
|
|
12703
|
+
VIDEO = "VIDEO"
|
|
12704
|
+
}
|
|
12695
12705
|
interface MediaItemsInfo$1 {
|
|
12696
12706
|
/** All media items (images, videos etc) associated with this product. */
|
|
12697
12707
|
items?: ProductMedia$1[];
|
|
@@ -15121,6 +15131,7 @@ interface ProductMediaNonNullableFields$1 {
|
|
|
15121
15131
|
url: string;
|
|
15122
15132
|
image?: ImageNonNullableFields$1;
|
|
15123
15133
|
video?: VideoV2NonNullableFields;
|
|
15134
|
+
mediaType: MediaType$1;
|
|
15124
15135
|
uploadId: string;
|
|
15125
15136
|
}
|
|
15126
15137
|
interface MediaItemsInfoNonNullableFields$1 {
|
|
@@ -16969,6 +16980,11 @@ interface ProductMedia extends ProductMediaSetByOneOf, ProductMediaMediaOneOf {
|
|
|
16969
16980
|
* Allows to override the default media name. Can be passed only when `setBy: url`.
|
|
16970
16981
|
*/
|
|
16971
16982
|
displayName?: string | null;
|
|
16983
|
+
/**
|
|
16984
|
+
* Media type.
|
|
16985
|
+
* @readonly
|
|
16986
|
+
*/
|
|
16987
|
+
mediaType?: MediaType;
|
|
16972
16988
|
/**
|
|
16973
16989
|
* ID used to upload media to Wix Media Manager.
|
|
16974
16990
|
* @readonly
|
|
@@ -16995,6 +17011,11 @@ interface ProductMediaMediaOneOf {
|
|
|
16995
17011
|
*/
|
|
16996
17012
|
video?: string;
|
|
16997
17013
|
}
|
|
17014
|
+
declare enum MediaType {
|
|
17015
|
+
UNKNOWN_MEDIA_TYPE = "UNKNOWN_MEDIA_TYPE",
|
|
17016
|
+
IMAGE = "IMAGE",
|
|
17017
|
+
VIDEO = "VIDEO"
|
|
17018
|
+
}
|
|
16998
17019
|
interface MediaItemsInfo {
|
|
16999
17020
|
/** All media items (images, videos etc) associated with this product. */
|
|
17000
17021
|
items?: ProductMedia[];
|
|
@@ -19402,6 +19423,7 @@ interface ProductMediaNonNullableFields {
|
|
|
19402
19423
|
url: string;
|
|
19403
19424
|
image: string;
|
|
19404
19425
|
video: string;
|
|
19426
|
+
mediaType: MediaType;
|
|
19405
19427
|
uploadId: string;
|
|
19406
19428
|
}
|
|
19407
19429
|
interface MediaItemsInfoNonNullableFields {
|