@wix/auto_sdk_stores_read-only-variants-v-3 1.0.42 → 1.0.43
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/build/cjs/index.d.ts +4 -4
- package/build/cjs/index.js +0 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +0 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +16 -17
- package/build/cjs/meta.js +0 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-bxyvT3P6.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DCmK2i6O.d.ts} +74 -23
- package/build/es/index.d.mts +4 -4
- package/build/es/index.mjs +0 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +0 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +16 -17
- package/build/es/meta.mjs +0 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-bxyvT3P6.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DCmK2i6O.d.mts} +74 -23
- package/build/internal/cjs/index.d.ts +4 -4
- package/build/internal/cjs/index.js +0 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +0 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +16 -17
- package/build/internal/cjs/meta.js +0 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BBQUkXOZ.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Rz7CJtzF.d.ts} +74 -23
- package/build/internal/es/index.d.mts +4 -4
- package/build/internal/es/index.mjs +0 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +0 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +16 -17
- package/build/internal/es/meta.mjs +0 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BBQUkXOZ.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Rz7CJtzF.d.mts} +74 -23
- package/package.json +3 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SearchSpec, Search, NonNullablePaths } from '@wix/sdk-types';
|
|
1
|
+
import { QuerySpec, SearchSpec, Query, Search, NonNullablePaths } from '@wix/sdk-types';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* A read-only representation of a product variant with enhanced query capabilities.
|
|
@@ -4023,34 +4023,37 @@ interface ChoicesSettings {
|
|
|
4023
4023
|
}
|
|
4024
4024
|
interface ConnectedOptionChoice extends ConnectedOptionChoiceValueOneOf {
|
|
4025
4025
|
/**
|
|
4026
|
-
*
|
|
4026
|
+
* Single color code in HEX format, [as described by MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color). For example, `#FF0000` for red.
|
|
4027
4027
|
* @minLength 3
|
|
4028
4028
|
* @maxLength 20
|
|
4029
4029
|
*/
|
|
4030
4030
|
colorCode?: string;
|
|
4031
4031
|
/**
|
|
4032
|
-
*
|
|
4032
|
+
* Choice ID.
|
|
4033
4033
|
* @format GUID
|
|
4034
4034
|
*/
|
|
4035
4035
|
choiceId?: string | null;
|
|
4036
4036
|
/**
|
|
4037
|
-
* Product media
|
|
4038
|
-
*
|
|
4039
|
-
*
|
|
4037
|
+
* Product media to display when this choice is selected.
|
|
4038
|
+
*
|
|
4039
|
+
* When not empty, only these images are shown when a customer selects this choice. Otherwise, all product images are shown.
|
|
4040
|
+
* When multiple choices from different options are selected, only media present in `linkedMedia` of ALL selected choices are shown.
|
|
4041
|
+
* For example, if `Color: Red` has images 1, 2, 3 and `Material: Silk` has images 2, 3, 5, then only images 2 and 3 are shown when both are selected.
|
|
4040
4042
|
* @maxSize 100
|
|
4041
4043
|
*/
|
|
4042
4044
|
linkedMedia?: ProductMedia[];
|
|
4043
|
-
/**
|
|
4045
|
+
/** Choice type. */
|
|
4044
4046
|
choiceType?: ChoiceTypeWithLiterals;
|
|
4045
4047
|
/**
|
|
4046
|
-
* Choice name.
|
|
4048
|
+
* Choice name. For text choices, this field also contains the choice value.
|
|
4047
4049
|
* @minLength 1
|
|
4048
4050
|
* @maxLength 50
|
|
4049
4051
|
*/
|
|
4050
4052
|
name?: string | null;
|
|
4051
4053
|
/**
|
|
4052
|
-
*
|
|
4053
|
-
*
|
|
4054
|
+
* Whether at least one variant with this choice is in stock in the default location of the store.
|
|
4055
|
+
*
|
|
4056
|
+
* For example, a product with Color and Size options has these variants: [Blue, Small] which is out of stock and [Red, Large] which is in stock. For choice Blue, this field is `false`. For choice Red, this field is `true`.
|
|
4054
4057
|
* @readonly
|
|
4055
4058
|
*/
|
|
4056
4059
|
inStock?: boolean;
|
|
@@ -4065,7 +4068,7 @@ interface ConnectedOptionChoice extends ConnectedOptionChoiceValueOneOf {
|
|
|
4065
4068
|
/** @oneof */
|
|
4066
4069
|
interface ConnectedOptionChoiceValueOneOf {
|
|
4067
4070
|
/**
|
|
4068
|
-
*
|
|
4071
|
+
* Single color code in HEX format, [as described by MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color). For example, `#FF0000` for red.
|
|
4069
4072
|
* @minLength 3
|
|
4070
4073
|
* @maxLength 20
|
|
4071
4074
|
*/
|
|
@@ -4076,14 +4079,10 @@ declare enum ChoiceType {
|
|
|
4076
4079
|
/** Text choice. */
|
|
4077
4080
|
CHOICE_TEXT = "CHOICE_TEXT",
|
|
4078
4081
|
/** Single color choice. */
|
|
4079
|
-
ONE_COLOR = "ONE_COLOR"
|
|
4080
|
-
/** Multiple colors choice. */
|
|
4081
|
-
MULTIPLE_COLORS = "MULTIPLE_COLORS",
|
|
4082
|
-
/** Image choice. */
|
|
4083
|
-
IMAGE = "IMAGE"
|
|
4082
|
+
ONE_COLOR = "ONE_COLOR"
|
|
4084
4083
|
}
|
|
4085
4084
|
/** @enumType */
|
|
4086
|
-
type ChoiceTypeWithLiterals = ChoiceType | 'UNKNOWN_CHOICE_TYPE' | 'CHOICE_TEXT' | 'ONE_COLOR'
|
|
4085
|
+
type ChoiceTypeWithLiterals = ChoiceType | 'UNKNOWN_CHOICE_TYPE' | 'CHOICE_TEXT' | 'ONE_COLOR';
|
|
4087
4086
|
interface MultipleColors {
|
|
4088
4087
|
/**
|
|
4089
4088
|
* List of color codes.
|
|
@@ -5189,7 +5188,63 @@ interface VariantsQueryBuilder {
|
|
|
5189
5188
|
* @fqn com.wix.stores.catalog.product.variants.reader.api.v3.ProductVariantsReader.QueryVariants
|
|
5190
5189
|
* @requiredField query
|
|
5191
5190
|
*/
|
|
5192
|
-
declare function typedQueryVariants(query:
|
|
5191
|
+
declare function typedQueryVariants(query: ReadOnlyVariantQuery, options?: QueryVariantsOptions): Promise<NonNullablePaths<QueryVariantsResponse, `variants` | `variants.${number}.physicalProperties.pricePerUnit.value` | `variants.${number}.digitalProperties.digitalFile._id` | `variants.${number}.digitalProperties.digitalFile.fileName` | `variants.${number}.digitalProperties.digitalFile.fileType` | `variants.${number}._id` | `variants.${number}.price.actualPrice.amount` | `variants.${number}.revenueDetails.profitMargin` | `variants.${number}.media._id` | `variants.${number}.media.url` | `variants.${number}.media.mediaType` | `variants.${number}.media.thumbnail.url` | `variants.${number}.media.thumbnail.height` | `variants.${number}.media.thumbnail.width` | `variants.${number}.media.uploadId` | `variants.${number}.inventoryStatus.inStock` | `variants.${number}.inventoryStatus.preorderEnabled` | `variants.${number}.productData.productId` | `variants.${number}.productData.productType`, 6>>;
|
|
5192
|
+
interface ReadOnlyVariantQuerySpec extends QuerySpec {
|
|
5193
|
+
paging: 'cursor';
|
|
5194
|
+
wql: [
|
|
5195
|
+
{
|
|
5196
|
+
fields: ['_id', 'productData.productId'];
|
|
5197
|
+
operators: '*';
|
|
5198
|
+
sort: 'BOTH';
|
|
5199
|
+
}
|
|
5200
|
+
];
|
|
5201
|
+
}
|
|
5202
|
+
type CommonQueryWithEntityContext = Query<ReadOnlyVariant, ReadOnlyVariantQuerySpec>;
|
|
5203
|
+
type ReadOnlyVariantQuery = {
|
|
5204
|
+
/**
|
|
5205
|
+
Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.
|
|
5206
|
+
*/
|
|
5207
|
+
cursorPaging?: {
|
|
5208
|
+
/**
|
|
5209
|
+
Maximum number of items to return in the results.
|
|
5210
|
+
@max: 1000
|
|
5211
|
+
*/
|
|
5212
|
+
limit?: NonNullable<CommonQueryWithEntityContext['cursorPaging']>['limit'] | null;
|
|
5213
|
+
/**
|
|
5214
|
+
Pointer to the next or previous page in the list of results.
|
|
5215
|
+
|
|
5216
|
+
Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
5217
|
+
Not relevant for the first request.
|
|
5218
|
+
@maxLength: 16000
|
|
5219
|
+
*/
|
|
5220
|
+
cursor?: NonNullable<CommonQueryWithEntityContext['cursorPaging']>['cursor'] | null;
|
|
5221
|
+
};
|
|
5222
|
+
/**
|
|
5223
|
+
Filter object in the following format:
|
|
5224
|
+
`"filter" : {
|
|
5225
|
+
"fieldName1": "value1",
|
|
5226
|
+
"fieldName2":{"$operator":"value2"}
|
|
5227
|
+
}`
|
|
5228
|
+
Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
5229
|
+
*/
|
|
5230
|
+
filter?: CommonQueryWithEntityContext['filter'] | null;
|
|
5231
|
+
/**
|
|
5232
|
+
Sort object in the following format:
|
|
5233
|
+
`[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
5234
|
+
@maxSize: 5
|
|
5235
|
+
*/
|
|
5236
|
+
sort?: {
|
|
5237
|
+
/**
|
|
5238
|
+
Name of the field to sort by.
|
|
5239
|
+
@maxLength: 512
|
|
5240
|
+
*/
|
|
5241
|
+
fieldName?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['fieldName'];
|
|
5242
|
+
/**
|
|
5243
|
+
Sort order.
|
|
5244
|
+
*/
|
|
5245
|
+
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
5246
|
+
}[];
|
|
5247
|
+
};
|
|
5193
5248
|
interface SearchVariantsOptions {
|
|
5194
5249
|
/**
|
|
5195
5250
|
* List of additional fields to include in the response.
|
|
@@ -5202,14 +5257,12 @@ interface ReadOnlyVariantSearchSpec extends SearchSpec {
|
|
|
5202
5257
|
searchable: ['productData.name'];
|
|
5203
5258
|
aggregatable: [
|
|
5204
5259
|
'barcode',
|
|
5205
|
-
'internalMetadata.rowState',
|
|
5206
5260
|
'inventoryStatus.inStock',
|
|
5207
5261
|
'inventoryStatus.preorderEnabled',
|
|
5208
5262
|
'optionChoices.optionChoiceIds.choiceId',
|
|
5209
5263
|
'optionChoices.optionChoiceIds.optionId',
|
|
5210
5264
|
'price.actualPrice.amount',
|
|
5211
5265
|
'price.compareAtPrice.amount',
|
|
5212
|
-
'productData.directCategoryIds',
|
|
5213
5266
|
'productData.handle',
|
|
5214
5267
|
'productData.name',
|
|
5215
5268
|
'productData.productId',
|
|
@@ -5234,12 +5287,10 @@ interface ReadOnlyVariantSearchSpec extends SearchSpec {
|
|
|
5234
5287
|
operators: '*';
|
|
5235
5288
|
fields: [
|
|
5236
5289
|
'barcode',
|
|
5237
|
-
'internalMetadata.rowState',
|
|
5238
5290
|
'inventoryStatus.inStock',
|
|
5239
5291
|
'inventoryStatus.preorderEnabled',
|
|
5240
5292
|
'price.actualPrice.amount',
|
|
5241
5293
|
'price.compareAtPrice.amount',
|
|
5242
|
-
'productData.directCategoryIds',
|
|
5243
5294
|
'productData.handle',
|
|
5244
5295
|
'productData.name',
|
|
5245
5296
|
'productData.productId',
|
|
@@ -5371,4 +5422,4 @@ type ReadOnlyVariantSearch = {
|
|
|
5371
5422
|
timeZone?: CommonSearchWithEntityContext['timeZone'] | null;
|
|
5372
5423
|
};
|
|
5373
5424
|
|
|
5374
|
-
export { PollLayoutDirection as $, AggregationType as A, ButtonDataType as B, type CursorQuery as C, DateHistogramAggregationInterval as D, ViewMode as E, LayoutType as F, Crop as G, ThumbnailsAlignment as H, InternalRowState as I, GIFType as J, Source as K, LineStyle as L, MeasurementUnit as M, NestedAggregationType as N, Orientation as O, ProductMediaMediaType as P, type QueryVariantsOptions as Q, type ReadOnlyVariantSearch as R, type SearchVariantsOptions as S, Target as T, StylesPosition as U, type VariantsQueryBuilder as V, WeightUnit as W, MapType as X, ViewRole as Y, VoteRole as Z, PollLayoutType as _, type SearchVariantsResponse as a, type CursorPagingMetadata as a$, BackgroundType as a0, DecorationType as a1, FontType as a2, Position as a3, AspectRatio as a4, Resizing as a5, Placement as a6, Type as a7, Alignment as a8, Layout as a9, type V3PriceInfo as aA, type V3FixedMonetaryAmount as aB, type V3RevenueDetails as aC, type V3ProductMedia as aD, type V3ProductMediaSetByOneOf as aE, type V3ProductMediaMediaOneOf as aF, type CommonVideoResolution as aG, type V3Thumbnail as aH, type V3VariantPhysicalProperties as aI, type V3PricePerUnit as aJ, type V3PricePerUnitSettings as aK, type V3VariantDigitalProperties as aL, type V3SecuredMedia as aM, type V3SubscriptionPricesInfo as aN, type V3SubscriptionPrice as aO, type V3SubscriptionPricePerUnit as aP, type V3InventoryStatus as aQ, type ProductFields as aR, type ProductFieldsTypedPropertiesOneOf as aS, type V3PhysicalProperties as aT, type V3WeightMeasurementUnitInfo as aU, type InternalMetadata as aV, type QueryVariantsRequest as aW, type CursorQueryPagingMethodOneOf as aX, type Sorting as aY, type CursorPaging as aZ, type QueryVariantsResponse as a_, AppType as aa, InitialExpandedItems as ab, Direction as ac, VerticalAlignment as ad, NullValue as ae, Scaling as af, ImagePosition as ag, VerticalAlignmentAlignment as ah, ResponsivenessBehaviour as ai, MediaType as aj, ProductOptionRenderType as ak, ChoiceType as al, ModifierRenderType as am, AvailabilityStatus as an, PreorderStatus as ao, ProductPreorderAvailability as ap, ProductType as aq, FileType as ar, SubscriptionFrequency as as, DiscountType as at, WebhookIdentityType as au, type ReadOnlyVariant as av, type ReadOnlyVariantTypedPropertiesOneOf as aw, type V3OptionChoice as ax, type V3OptionChoiceIds as ay, type V3OptionChoiceNames as az, SecuredMediaFileType as b, type RichContent as b$, type Cursors as b0, type SearchVariantsRequest as b1, type CursorSearch as b2, type CursorSearchPagingMethodOneOf as b3, type Aggregation as b4, type AggregationKindOneOf as b5, type RangeBucket as b6, type IncludeMissingValuesOptions as b7, type ValueAggregation as b8, type ValueAggregationOptionsOneOf as b9, type AggregationResults as bA, type AggregationResultsResultOneOf as bB, type DeprecatedSearchVariantsWithOffsetRequest as bC, type PlatformOffsetSearch as bD, type PlatformOffsetSearchPagingMethodOneOf as bE, type CommonSorting as bF, type CommonAggregation as bG, type CommonAggregationKindOneOf as bH, type RangeAggregationRangeBucket as bI, type ValueAggregationIncludeMissingValuesOptions as bJ, type AggregationValueAggregation as bK, type AggregationValueAggregationOptionsOneOf as bL, type AggregationRangeAggregation as bM, type AggregationScalarAggregation as bN, type AggregationDateHistogramAggregation as bO, type NestedAggregationNestedAggregationItem as bP, type NestedAggregationNestedAggregationItemKindOneOf as bQ, type AggregationNestedAggregation as bR, type GroupByAggregation as bS, type GroupByAggregationKindOneOf as bT, type CommonSearchDetails as bU, type PlatformPaging as bV, type DeprecatedSearchVariantsWithOffsetResponse as bW, type PagingMetadata as bX, type MigrateProductVariantsRequest as bY, type Product as bZ, type ProductTypedPropertiesOneOf as b_, type RangeAggregation as ba, type ScalarAggregation as bb, type DateHistogramAggregation as bc, type NestedAggregationItem as bd, type NestedAggregationItemKindOneOf as be, type NestedAggregation as bf, type SearchDetails as bg, type AggregationData as bh, type ValueAggregationResult as bi, type RangeAggregationResult as bj, type NestedAggregationResults as bk, type NestedAggregationResultsResultOneOf as bl, type ValueResults as bm, type RangeResults as bn, type AggregationResultsScalarResult as bo, type NestedValueAggregationResult as bp, type ValueResult as bq, type RangeResult as br, type ScalarResult as bs, type NestedResultValue as bt, type NestedResultValueResultOneOf as bu, type Results as bv, type DateHistogramResult as bw, type GroupByValueResults as bx, type DateHistogramResults as by, type NestedResults as bz, V3ProductType as c, type ColorData as c$, type Node as c0, type NodeDataOneOf as c1, type NodeStyle as c2, type ButtonData as c3, type Border as c4, type Colors as c5, type PluginContainerData as c6, type PluginContainerDataWidth as c7, type PluginContainerDataWidthDataOneOf as c8, type Spoiler as c9, type HTMLDataDataOneOf as cA, type ImageData as cB, type StylesBorder as cC, type ImageDataStyles as cD, type LinkPreviewData as cE, type LinkPreviewDataStyles as cF, type MapData as cG, type MapSettings as cH, type ParagraphData as cI, type PollData as cJ, type Permissions as cK, type Option as cL, type PollSettings as cM, type PollLayout as cN, type OptionLayout as cO, type Gradient as cP, type Background as cQ, type BackgroundBackgroundOneOf as cR, type PollDesign as cS, type OptionDesign as cT, type Poll as cU, type PollDataLayout as cV, type Design as cW, type TextData as cX, type Decoration as cY, type DecorationDataOneOf as cZ, type AnchorData as c_, type Height as ca, type Styles as cb, type Link as cc, type LinkDataOneOf as cd, type Rel as ce, type CodeBlockData as cf, type TextStyle as cg, type DividerData as ch, type FileData as ci, type FileSource as cj, type FileSourceDataOneOf as ck, type PDFSettings as cl, type GalleryData as cm, type V1Media as cn, type Image as co, type Video as cp, type Item as cq, type ItemDataOneOf as cr, type GalleryOptions as cs, type GalleryOptionsLayout as ct, type ItemStyle as cu, type Thumbnails as cv, type GIFData as cw, type GIF as cx, type HeadingData as cy, type HTMLData as cz, SortOrder as d, type Ribbon as d$, type LinkData as d0, type MentionData as d1, type FontSizeData as d2, type SpoilerData as d3, type FontFamilyData as d4, type AppEmbedData as d5, type AppEmbedDataAppDataOneOf as d6, type BookingData as d7, type EventData as d8, type ButtonStyles as d9, type DocumentStyle as dA, type TextNodeStyle as dB, type Media as dC, type ProductMedia as dD, type ProductMediaSetByOneOf as dE, type ProductMediaMediaOneOf as dF, type VideoResolution as dG, type Thumbnail as dH, type MediaItemsInfo as dI, type SeoSchema as dJ, type Keyword as dK, type Tag as dL, type Settings as dM, type ConnectedOption as dN, type ConnectedOptionOptionSettingsOneOf as dO, type ChoicesSettings as dP, type ConnectedOptionChoice as dQ, type ConnectedOptionChoiceValueOneOf as dR, type MultipleColors as dS, type ConnectedModifier as dT, type ConnectedModifierModifierSettingsOneOf as dU, type FreeTextSettings as dV, type ModifierChoicesSettings as dW, type ConnectedModifierChoice as dX, type ConnectedModifierChoiceValueOneOf as dY, type Brand as dZ, type InfoSection as d_, type ImageStyles as da, type RibbonStyles as db, type CardStyles as dc, type PricingData as dd, type VideoData as de, type PlaybackOptions as df, type EmbedData as dg, type Oembed as dh, type CollapsibleListData as di, type TableData as dj, type Dimensions as dk, type TableCellData as dl, type CellStyle as dm, type BorderColors as dn, type BorderWidths as dp, type ListValue as dq, type AudioData as dr, type OrderedListData as ds, type BulletedListData as dt, type BlockquoteData as du, type CaptionData as dv, type LayoutData as dw, type BackgroundImage as dx, type LayoutCellData as dy, type Metadata as dz, RequestedFields as e, type SortDirectionWithLiterals as e$, type ProductCategoriesInfo as e0, type ProductCategory as e1, type ProductCategoryIdsInfo as e2, type PriceRange as e3, type FixedMonetaryAmount as e4, type Inventory as e5, type PhysicalProperties as e6, type PricePerUnitSettings as e7, type WeightRange as e8, type PricePerUnitRange as e9, type VariantSummary as eA, type MinVariantPriceInfo as eB, type MigrateProductVariantsResponse as eC, type RecoverProductVariantsRequest as eD, type RecoverProductVariantsResponse as eE, type DomainEvent as eF, type DomainEventBodyOneOf as eG, type EntityCreatedEvent as eH, type RestoreInfo as eI, type EntityUpdatedEvent as eJ, type EntityDeletedEvent as eK, type ActionEvent as eL, type Empty as eM, type MessageEnvelope as eN, type IdentificationData as eO, type IdentificationDataIdOneOf as eP, type VariantsQueryResult as eQ, type ReadOnlyVariantSearchSpec as eR, type ProductMediaMediaTypeWithLiterals as eS, type MeasurementUnitWithLiterals as eT, type SecuredMediaFileTypeWithLiterals as eU, type V3ProductTypeWithLiterals as eV, type WeightUnitWithLiterals as eW, type InternalRowStateWithLiterals as eX, type SortOrderWithLiterals as eY, type RequestedFieldsWithLiterals as eZ, type SortTypeWithLiterals as e_, type PricePerUnitRangePricePerUnit as ea, type WeightMeasurementUnitInfo as eb, type BreadcrumbsInfo as ec, type BreadCrumb as ed, type VariantsInfo as ee, type Variant as ef, type VariantTypedPropertiesOneOf as eg, type OptionChoice as eh, type OptionChoiceIds as ei, type OptionChoiceNames as ej, type PriceInfo as ek, type RevenueDetails as el, type VariantPhysicalProperties as em, type PricePerUnit as en, type VariantDigitalProperties as eo, type SecuredMedia as ep, type SubscriptionPricesInfo as eq, type SubscriptionPrice as er, type SubscriptionPricePerUnit as es, type InventoryStatus as et, type ExtendedFields as eu, type SubscriptionDetails as ev, type Subscription as ew, type SubscriptionCyclesOneOf as ex, type SubscriptionDiscount as ey, type SubscriptionDiscountDiscountOneOf as ez, SortType as f, type ProductTypeWithLiterals as f$, type MissingValuesWithLiterals as f0, type ScalarTypeWithLiterals as f1, type NestedAggregationTypeWithLiterals as f2, type IntervalWithLiterals as f3, type AggregationTypeWithLiterals as f4, type ModeWithLiterals as f5, type CommonSortOrderWithLiterals as f6, type ValueAggregationSortTypeWithLiterals as f7, type ValueAggregationSortDirectionWithLiterals as f8, type ValueAggregationMissingValuesWithLiterals as f9, type PollLayoutDirectionWithLiterals as fA, type BackgroundTypeWithLiterals as fB, type DecorationTypeWithLiterals as fC, type FontTypeWithLiterals as fD, type PositionWithLiterals as fE, type AspectRatioWithLiterals as fF, type ResizingWithLiterals as fG, type PlacementWithLiterals as fH, type TypeWithLiterals as fI, type AlignmentWithLiterals as fJ, type LayoutWithLiterals as fK, type AppTypeWithLiterals as fL, type InitialExpandedItemsWithLiterals as fM, type DirectionWithLiterals as fN, type VerticalAlignmentWithLiterals as fO, type NullValueWithLiterals as fP, type ScalingWithLiterals as fQ, type ImagePositionWithLiterals as fR, type VerticalAlignmentAlignmentWithLiterals as fS, type ResponsivenessBehaviourWithLiterals as fT, type MediaTypeWithLiterals as fU, type ProductOptionRenderTypeWithLiterals as fV, type ChoiceTypeWithLiterals as fW, type ModifierRenderTypeWithLiterals as fX, type AvailabilityStatusWithLiterals as fY, type PreorderStatusWithLiterals as fZ, type ProductPreorderAvailabilityWithLiterals as f_, type CommonScalarTypeWithLiterals as fa, type NestedAggregationNestedAggregationTypeWithLiterals as fb, type DateHistogramAggregationIntervalWithLiterals as fc, type CommonAggregationTypeWithLiterals as fd, type SearchDetailsModeWithLiterals as fe, type NodeTypeWithLiterals as ff, type WidthTypeWithLiterals as fg, type PluginContainerDataAlignmentWithLiterals as fh, type ButtonDataTypeWithLiterals as fi, type TargetWithLiterals as fj, type TextAlignmentWithLiterals as fk, type LineStyleWithLiterals as fl, type WidthWithLiterals as fm, type DividerDataAlignmentWithLiterals as fn, type ViewModeWithLiterals as fo, type LayoutTypeWithLiterals as fp, type OrientationWithLiterals as fq, type CropWithLiterals as fr, type ThumbnailsAlignmentWithLiterals as fs, type GIFTypeWithLiterals as ft, type SourceWithLiterals as fu, type StylesPositionWithLiterals as fv, type MapTypeWithLiterals as fw, type ViewRoleWithLiterals as fx, type VoteRoleWithLiterals as fy, type PollLayoutTypeWithLiterals as fz, SortDirection as g, type FileTypeWithLiterals as g0, type SubscriptionFrequencyWithLiterals as g1, type DiscountTypeWithLiterals as g2, type WebhookIdentityTypeWithLiterals as g3, type CommonSearchWithEntityContext as g4, queryVariants as g5, MissingValues as h, ScalarType as i, Interval as j, Mode as k, CommonSortOrder as l, ValueAggregationSortType as m, ValueAggregationSortDirection as n, ValueAggregationMissingValues as o, CommonScalarType as p, NestedAggregationNestedAggregationType as q, CommonAggregationType as r, SearchDetailsMode as s, typedQueryVariants as t, NodeType as u, WidthType as v, PluginContainerDataAlignment as w, TextAlignment as x, Width as y, DividerDataAlignment as z };
|
|
5425
|
+
export { PollLayoutDirection as $, AggregationType as A, ButtonDataType as B, CommonSortOrder as C, DateHistogramAggregationInterval as D, ViewMode as E, LayoutType as F, Crop as G, ThumbnailsAlignment as H, InternalRowState as I, GIFType as J, Source as K, LineStyle as L, MeasurementUnit as M, NestedAggregationType as N, Orientation as O, ProductMediaMediaType as P, type QueryVariantsOptions as Q, type ReadOnlyVariantSearch as R, type SearchVariantsOptions as S, Target as T, StylesPosition as U, type VariantsQueryBuilder as V, WeightUnit as W, MapType as X, ViewRole as Y, VoteRole as Z, PollLayoutType as _, type SearchVariantsResponse as a, type QueryVariantsResponse as a$, BackgroundType as a0, DecorationType as a1, FontType as a2, Position as a3, AspectRatio as a4, Resizing as a5, Placement as a6, Type as a7, Alignment as a8, Layout as a9, type V3PriceInfo as aA, type V3FixedMonetaryAmount as aB, type V3RevenueDetails as aC, type V3ProductMedia as aD, type V3ProductMediaSetByOneOf as aE, type V3ProductMediaMediaOneOf as aF, type CommonVideoResolution as aG, type V3Thumbnail as aH, type V3VariantPhysicalProperties as aI, type V3PricePerUnit as aJ, type V3PricePerUnitSettings as aK, type V3VariantDigitalProperties as aL, type V3SecuredMedia as aM, type V3SubscriptionPricesInfo as aN, type V3SubscriptionPrice as aO, type V3SubscriptionPricePerUnit as aP, type V3InventoryStatus as aQ, type ProductFields as aR, type ProductFieldsTypedPropertiesOneOf as aS, type V3PhysicalProperties as aT, type V3WeightMeasurementUnitInfo as aU, type InternalMetadata as aV, type QueryVariantsRequest as aW, type CursorQuery as aX, type CursorQueryPagingMethodOneOf as aY, type Sorting as aZ, type CursorPaging as a_, AppType as aa, InitialExpandedItems as ab, Direction as ac, VerticalAlignment as ad, NullValue as ae, Scaling as af, ImagePosition as ag, VerticalAlignmentAlignment as ah, ResponsivenessBehaviour as ai, MediaType as aj, ProductOptionRenderType as ak, ChoiceType as al, ModifierRenderType as am, AvailabilityStatus as an, PreorderStatus as ao, ProductPreorderAvailability as ap, ProductType as aq, FileType as ar, SubscriptionFrequency as as, DiscountType as at, WebhookIdentityType as au, type ReadOnlyVariant as av, type ReadOnlyVariantTypedPropertiesOneOf as aw, type V3OptionChoice as ax, type V3OptionChoiceIds as ay, type V3OptionChoiceNames as az, type ReadOnlyVariantQuery as b, type ProductTypedPropertiesOneOf as b$, type CursorPagingMetadata as b0, type Cursors as b1, type SearchVariantsRequest as b2, type CursorSearch as b3, type CursorSearchPagingMethodOneOf as b4, type Aggregation as b5, type AggregationKindOneOf as b6, type RangeBucket as b7, type IncludeMissingValuesOptions as b8, type ValueAggregation as b9, type NestedResults as bA, type AggregationResults as bB, type AggregationResultsResultOneOf as bC, type DeprecatedSearchVariantsWithOffsetRequest as bD, type PlatformOffsetSearch as bE, type PlatformOffsetSearchPagingMethodOneOf as bF, type CommonSorting as bG, type CommonAggregation as bH, type CommonAggregationKindOneOf as bI, type RangeAggregationRangeBucket as bJ, type ValueAggregationIncludeMissingValuesOptions as bK, type AggregationValueAggregation as bL, type AggregationValueAggregationOptionsOneOf as bM, type AggregationRangeAggregation as bN, type AggregationScalarAggregation as bO, type AggregationDateHistogramAggregation as bP, type NestedAggregationNestedAggregationItem as bQ, type NestedAggregationNestedAggregationItemKindOneOf as bR, type AggregationNestedAggregation as bS, type GroupByAggregation as bT, type GroupByAggregationKindOneOf as bU, type CommonSearchDetails as bV, type PlatformPaging as bW, type DeprecatedSearchVariantsWithOffsetResponse as bX, type PagingMetadata as bY, type MigrateProductVariantsRequest as bZ, type Product as b_, type ValueAggregationOptionsOneOf as ba, type RangeAggregation as bb, type ScalarAggregation as bc, type DateHistogramAggregation as bd, type NestedAggregationItem as be, type NestedAggregationItemKindOneOf as bf, type NestedAggregation as bg, type SearchDetails as bh, type AggregationData as bi, type ValueAggregationResult as bj, type RangeAggregationResult as bk, type NestedAggregationResults as bl, type NestedAggregationResultsResultOneOf as bm, type ValueResults as bn, type RangeResults as bo, type AggregationResultsScalarResult as bp, type NestedValueAggregationResult as bq, type ValueResult as br, type RangeResult as bs, type ScalarResult as bt, type NestedResultValue as bu, type NestedResultValueResultOneOf as bv, type Results as bw, type DateHistogramResult as bx, type GroupByValueResults as by, type DateHistogramResults as bz, SecuredMediaFileType as c, type AnchorData as c$, type RichContent as c0, type Node as c1, type NodeDataOneOf as c2, type NodeStyle as c3, type ButtonData as c4, type Border as c5, type Colors as c6, type PluginContainerData as c7, type PluginContainerDataWidth as c8, type PluginContainerDataWidthDataOneOf as c9, type HTMLData as cA, type HTMLDataDataOneOf as cB, type ImageData as cC, type StylesBorder as cD, type ImageDataStyles as cE, type LinkPreviewData as cF, type LinkPreviewDataStyles as cG, type MapData as cH, type MapSettings as cI, type ParagraphData as cJ, type PollData as cK, type Permissions as cL, type Option as cM, type PollSettings as cN, type PollLayout as cO, type OptionLayout as cP, type Gradient as cQ, type Background as cR, type BackgroundBackgroundOneOf as cS, type PollDesign as cT, type OptionDesign as cU, type Poll as cV, type PollDataLayout as cW, type Design as cX, type TextData as cY, type Decoration as cZ, type DecorationDataOneOf as c_, type Spoiler as ca, type Height as cb, type Styles as cc, type Link as cd, type LinkDataOneOf as ce, type Rel as cf, type CodeBlockData as cg, type TextStyle as ch, type DividerData as ci, type FileData as cj, type FileSource as ck, type FileSourceDataOneOf as cl, type PDFSettings as cm, type GalleryData as cn, type V1Media as co, type Image as cp, type Video as cq, type Item as cr, type ItemDataOneOf as cs, type GalleryOptions as ct, type GalleryOptionsLayout as cu, type ItemStyle as cv, type Thumbnails as cw, type GIFData as cx, type GIF as cy, type HeadingData as cz, V3ProductType as d, type InfoSection as d$, type ColorData as d0, type LinkData as d1, type MentionData as d2, type FontSizeData as d3, type SpoilerData as d4, type FontFamilyData as d5, type AppEmbedData as d6, type AppEmbedDataAppDataOneOf as d7, type BookingData as d8, type EventData as d9, type Metadata as dA, type DocumentStyle as dB, type TextNodeStyle as dC, type Media as dD, type ProductMedia as dE, type ProductMediaSetByOneOf as dF, type ProductMediaMediaOneOf as dG, type VideoResolution as dH, type Thumbnail as dI, type MediaItemsInfo as dJ, type SeoSchema as dK, type Keyword as dL, type Tag as dM, type Settings as dN, type ConnectedOption as dO, type ConnectedOptionOptionSettingsOneOf as dP, type ChoicesSettings as dQ, type ConnectedOptionChoice as dR, type ConnectedOptionChoiceValueOneOf as dS, type MultipleColors as dT, type ConnectedModifier as dU, type ConnectedModifierModifierSettingsOneOf as dV, type FreeTextSettings as dW, type ModifierChoicesSettings as dX, type ConnectedModifierChoice as dY, type ConnectedModifierChoiceValueOneOf as dZ, type Brand as d_, type ButtonStyles as da, type ImageStyles as db, type RibbonStyles as dc, type CardStyles as dd, type PricingData as de, type VideoData as df, type PlaybackOptions as dg, type EmbedData as dh, type Oembed as di, type CollapsibleListData as dj, type TableData as dk, type Dimensions as dl, type TableCellData as dm, type CellStyle as dn, type BorderColors as dp, type BorderWidths as dq, type ListValue as dr, type AudioData as ds, type OrderedListData as dt, type BulletedListData as du, type BlockquoteData as dv, type CaptionData as dw, type LayoutData as dx, type BackgroundImage as dy, type LayoutCellData as dz, SortOrder as e, type RequestedFieldsWithLiterals as e$, type Ribbon as e0, type ProductCategoriesInfo as e1, type ProductCategory as e2, type ProductCategoryIdsInfo as e3, type PriceRange as e4, type FixedMonetaryAmount as e5, type Inventory as e6, type PhysicalProperties as e7, type PricePerUnitSettings as e8, type WeightRange as e9, type SubscriptionDiscountDiscountOneOf as eA, type VariantSummary as eB, type MinVariantPriceInfo as eC, type MigrateProductVariantsResponse as eD, type RecoverProductVariantsRequest as eE, type RecoverProductVariantsResponse as eF, type DomainEvent as eG, type DomainEventBodyOneOf as eH, type EntityCreatedEvent as eI, type RestoreInfo as eJ, type EntityUpdatedEvent as eK, type EntityDeletedEvent as eL, type ActionEvent as eM, type Empty as eN, type MessageEnvelope as eO, type IdentificationData as eP, type IdentificationDataIdOneOf as eQ, type VariantsQueryResult as eR, type ReadOnlyVariantQuerySpec as eS, type ReadOnlyVariantSearchSpec as eT, type ProductMediaMediaTypeWithLiterals as eU, type MeasurementUnitWithLiterals as eV, type SecuredMediaFileTypeWithLiterals as eW, type V3ProductTypeWithLiterals as eX, type WeightUnitWithLiterals as eY, type InternalRowStateWithLiterals as eZ, type SortOrderWithLiterals as e_, type PricePerUnitRange as ea, type PricePerUnitRangePricePerUnit as eb, type WeightMeasurementUnitInfo as ec, type BreadcrumbsInfo as ed, type BreadCrumb as ee, type VariantsInfo as ef, type Variant as eg, type VariantTypedPropertiesOneOf as eh, type OptionChoice as ei, type OptionChoiceIds as ej, type OptionChoiceNames as ek, type PriceInfo as el, type RevenueDetails as em, type VariantPhysicalProperties as en, type PricePerUnit as eo, type VariantDigitalProperties as ep, type SecuredMedia as eq, type SubscriptionPricesInfo as er, type SubscriptionPrice as es, type SubscriptionPricePerUnit as et, type InventoryStatus as eu, type ExtendedFields as ev, type SubscriptionDetails as ew, type Subscription as ex, type SubscriptionCyclesOneOf as ey, type SubscriptionDiscount as ez, RequestedFields as f, type PreorderStatusWithLiterals as f$, type SortTypeWithLiterals as f0, type SortDirectionWithLiterals as f1, type MissingValuesWithLiterals as f2, type ScalarTypeWithLiterals as f3, type NestedAggregationTypeWithLiterals as f4, type IntervalWithLiterals as f5, type AggregationTypeWithLiterals as f6, type ModeWithLiterals as f7, type CommonSortOrderWithLiterals as f8, type ValueAggregationSortTypeWithLiterals as f9, type VoteRoleWithLiterals as fA, type PollLayoutTypeWithLiterals as fB, type PollLayoutDirectionWithLiterals as fC, type BackgroundTypeWithLiterals as fD, type DecorationTypeWithLiterals as fE, type FontTypeWithLiterals as fF, type PositionWithLiterals as fG, type AspectRatioWithLiterals as fH, type ResizingWithLiterals as fI, type PlacementWithLiterals as fJ, type TypeWithLiterals as fK, type AlignmentWithLiterals as fL, type LayoutWithLiterals as fM, type AppTypeWithLiterals as fN, type InitialExpandedItemsWithLiterals as fO, type DirectionWithLiterals as fP, type VerticalAlignmentWithLiterals as fQ, type NullValueWithLiterals as fR, type ScalingWithLiterals as fS, type ImagePositionWithLiterals as fT, type VerticalAlignmentAlignmentWithLiterals as fU, type ResponsivenessBehaviourWithLiterals as fV, type MediaTypeWithLiterals as fW, type ProductOptionRenderTypeWithLiterals as fX, type ChoiceTypeWithLiterals as fY, type ModifierRenderTypeWithLiterals as fZ, type AvailabilityStatusWithLiterals as f_, type ValueAggregationSortDirectionWithLiterals as fa, type ValueAggregationMissingValuesWithLiterals as fb, type CommonScalarTypeWithLiterals as fc, type NestedAggregationNestedAggregationTypeWithLiterals as fd, type DateHistogramAggregationIntervalWithLiterals as fe, type CommonAggregationTypeWithLiterals as ff, type SearchDetailsModeWithLiterals as fg, type NodeTypeWithLiterals as fh, type WidthTypeWithLiterals as fi, type PluginContainerDataAlignmentWithLiterals as fj, type ButtonDataTypeWithLiterals as fk, type TargetWithLiterals as fl, type TextAlignmentWithLiterals as fm, type LineStyleWithLiterals as fn, type WidthWithLiterals as fo, type DividerDataAlignmentWithLiterals as fp, type ViewModeWithLiterals as fq, type LayoutTypeWithLiterals as fr, type OrientationWithLiterals as fs, type CropWithLiterals as ft, type ThumbnailsAlignmentWithLiterals as fu, type GIFTypeWithLiterals as fv, type SourceWithLiterals as fw, type StylesPositionWithLiterals as fx, type MapTypeWithLiterals as fy, type ViewRoleWithLiterals as fz, SortType as g, type ProductPreorderAvailabilityWithLiterals as g0, type ProductTypeWithLiterals as g1, type FileTypeWithLiterals as g2, type SubscriptionFrequencyWithLiterals as g3, type DiscountTypeWithLiterals as g4, type WebhookIdentityTypeWithLiterals as g5, type CommonQueryWithEntityContext as g6, type CommonSearchWithEntityContext as g7, queryVariants as g8, SortDirection as h, MissingValues as i, ScalarType as j, Interval as k, Mode as l, ValueAggregationSortType as m, ValueAggregationSortDirection as n, ValueAggregationMissingValues as o, CommonScalarType as p, NestedAggregationNestedAggregationType as q, CommonAggregationType as r, SearchDetailsMode as s, typedQueryVariants as t, NodeType as u, WidthType as v, PluginContainerDataAlignment as w, TextAlignment as x, Width as y, DividerDataAlignment as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
|
|
2
|
-
import { R as ReadOnlyVariantSearch, S as SearchVariantsOptions, a as SearchVariantsResponse,
|
|
3
|
-
export { eL as ActionEvent, b4 as Aggregation, bh as AggregationData, bO as AggregationDateHistogramAggregation, b5 as AggregationKindOneOf, bR as AggregationNestedAggregation, bM as AggregationRangeAggregation, bA as AggregationResults, bB as AggregationResultsResultOneOf, bo as AggregationResultsScalarResult, bN as AggregationScalarAggregation, A as AggregationType, f4 as AggregationTypeWithLiterals, bK as AggregationValueAggregation, bL as AggregationValueAggregationOptionsOneOf, a8 as Alignment, fJ as AlignmentWithLiterals, c_ as AnchorData, d5 as AppEmbedData, d6 as AppEmbedDataAppDataOneOf, aa as AppType, fL as AppTypeWithLiterals, a4 as AspectRatio, fF as AspectRatioWithLiterals, dr as AudioData, an as AvailabilityStatus, fY as AvailabilityStatusWithLiterals, cQ as Background, cR as BackgroundBackgroundOneOf, dx as BackgroundImage, a0 as BackgroundType, fB as BackgroundTypeWithLiterals, du as BlockquoteData, d7 as BookingData, c4 as Border, dn as BorderColors, dp as BorderWidths, dZ as Brand, ed as BreadCrumb, ec as BreadcrumbsInfo, dt as BulletedListData, c3 as ButtonData, B as ButtonDataType, fi as ButtonDataTypeWithLiterals, d9 as ButtonStyles, dv as CaptionData, dc as CardStyles, dm as CellStyle, al as ChoiceType, fW as ChoiceTypeWithLiterals, dP as ChoicesSettings, cf as CodeBlockData, di as CollapsibleListData, c$ as ColorData, c5 as Colors, bG as CommonAggregation, bH as CommonAggregationKindOneOf, r as CommonAggregationType, fd as CommonAggregationTypeWithLiterals, p as CommonScalarType, fa as CommonScalarTypeWithLiterals, bU as CommonSearchDetails, g4 as CommonSearchWithEntityContext, l as CommonSortOrder, f6 as CommonSortOrderWithLiterals, bF as CommonSorting, aG as CommonVideoResolution, dT as ConnectedModifier, dX as ConnectedModifierChoice, dY as ConnectedModifierChoiceValueOneOf, dU as ConnectedModifierModifierSettingsOneOf, dN as ConnectedOption, dQ as ConnectedOptionChoice, dR as ConnectedOptionChoiceValueOneOf, dO as ConnectedOptionOptionSettingsOneOf, G as Crop, fr as CropWithLiterals, aZ as CursorPaging, a$ as CursorPagingMetadata, aX as CursorQueryPagingMethodOneOf, b2 as CursorSearch, b3 as CursorSearchPagingMethodOneOf, b0 as Cursors, bc as DateHistogramAggregation, D as DateHistogramAggregationInterval, fc as DateHistogramAggregationIntervalWithLiterals, bw as DateHistogramResult, by as DateHistogramResults, cY as Decoration, cZ as DecorationDataOneOf, a1 as DecorationType, fC as DecorationTypeWithLiterals, bC as DeprecatedSearchVariantsWithOffsetRequest, bW as DeprecatedSearchVariantsWithOffsetResponse, cW as Design, dk as Dimensions, ac as Direction, fN as DirectionWithLiterals, at as DiscountType, g2 as DiscountTypeWithLiterals, ch as DividerData, z as DividerDataAlignment, fn as DividerDataAlignmentWithLiterals, dA as DocumentStyle, eF as DomainEvent, eG as DomainEventBodyOneOf, dg as EmbedData, eM as Empty, eH as EntityCreatedEvent, eK as EntityDeletedEvent, eJ as EntityUpdatedEvent, d8 as EventData, eu as ExtendedFields, ci as FileData, cj as FileSource, ck as FileSourceDataOneOf, ar as FileType, g0 as FileTypeWithLiterals, e4 as FixedMonetaryAmount, d4 as FontFamilyData, d2 as FontSizeData, a2 as FontType, fD as FontTypeWithLiterals, dV as FreeTextSettings, cx as GIF, cw as GIFData, J as GIFType, ft as GIFTypeWithLiterals, cm as GalleryData, cs as GalleryOptions, ct as GalleryOptionsLayout, cP as Gradient, bS as GroupByAggregation, bT as GroupByAggregationKindOneOf, bx as GroupByValueResults, cz as HTMLData, cA as HTMLDataDataOneOf, cy as HeadingData, ca as Height, eO as IdentificationData, eP as IdentificationDataIdOneOf, co as Image, cB as ImageData, cD as ImageDataStyles, ag as ImagePosition, fR as ImagePositionWithLiterals, da as ImageStyles, b7 as IncludeMissingValuesOptions, d_ as InfoSection, ab as InitialExpandedItems, fM as InitialExpandedItemsWithLiterals, aV as InternalMetadata, I as InternalRowState, eX as InternalRowStateWithLiterals, j as Interval, f3 as IntervalWithLiterals, e5 as Inventory, et as InventoryStatus, cq as Item, cr as ItemDataOneOf, cu as ItemStyle, dK as Keyword, a9 as Layout, dy as LayoutCellData, dw as LayoutData, F as LayoutType, fp as LayoutTypeWithLiterals, fK as LayoutWithLiterals, L as LineStyle, fl as LineStyleWithLiterals, cc as Link, d0 as LinkData, cd as LinkDataOneOf, cE as LinkPreviewData, cF as LinkPreviewDataStyles, dq as ListValue, cG as MapData, cH as MapSettings, X as MapType, fw as MapTypeWithLiterals, M as MeasurementUnit, eT as MeasurementUnitWithLiterals, dC as Media, dI as MediaItemsInfo, aj as MediaType, fU as MediaTypeWithLiterals, d1 as MentionData, eN as MessageEnvelope, dz as Metadata, bY as MigrateProductVariantsRequest, eC as MigrateProductVariantsResponse, eB as MinVariantPriceInfo, h as MissingValues, f0 as MissingValuesWithLiterals, k as Mode, f5 as ModeWithLiterals, dW as ModifierChoicesSettings, am as ModifierRenderType, fX as ModifierRenderTypeWithLiterals, dS as MultipleColors, bf as NestedAggregation, bd as NestedAggregationItem, be as NestedAggregationItemKindOneOf, bP as NestedAggregationNestedAggregationItem, bQ as NestedAggregationNestedAggregationItemKindOneOf, q as NestedAggregationNestedAggregationType, fb as NestedAggregationNestedAggregationTypeWithLiterals, bk as NestedAggregationResults, bl as NestedAggregationResultsResultOneOf, N as NestedAggregationType, f2 as NestedAggregationTypeWithLiterals, bt as NestedResultValue, bu as NestedResultValueResultOneOf, bz as NestedResults, bp as NestedValueAggregationResult, c0 as Node, c1 as NodeDataOneOf, c2 as NodeStyle, u as NodeType, ff as NodeTypeWithLiterals, ae as NullValue, fP as NullValueWithLiterals, dh as Oembed, cL as Option, eh as OptionChoice, ei as OptionChoiceIds, ej as OptionChoiceNames, cT as OptionDesign, cO as OptionLayout, ds as OrderedListData, O as Orientation, fq as OrientationWithLiterals, cl as PDFSettings, bX as PagingMetadata, cI as ParagraphData, cK as Permissions, e6 as PhysicalProperties, a6 as Placement, fH as PlacementWithLiterals, bD as PlatformOffsetSearch, bE as PlatformOffsetSearchPagingMethodOneOf, bV as PlatformPaging, df as PlaybackOptions, c6 as PluginContainerData, w as PluginContainerDataAlignment, fh as PluginContainerDataAlignmentWithLiterals, c7 as PluginContainerDataWidth, c8 as PluginContainerDataWidthDataOneOf, cU as Poll, cJ as PollData, cV as PollDataLayout, cS as PollDesign, cN as PollLayout, $ as PollLayoutDirection, fA as PollLayoutDirectionWithLiterals, _ as PollLayoutType, fz as PollLayoutTypeWithLiterals, cM as PollSettings, a3 as Position, fE as PositionWithLiterals, ao as PreorderStatus, fZ as PreorderStatusWithLiterals, ek as PriceInfo, en as PricePerUnit, e9 as PricePerUnitRange, ea as PricePerUnitRangePricePerUnit, e7 as PricePerUnitSettings, e3 as PriceRange, dd as PricingData, bZ as Product, e0 as ProductCategoriesInfo, e1 as ProductCategory, e2 as ProductCategoryIdsInfo, aR as ProductFields, aS as ProductFieldsTypedPropertiesOneOf, dD as ProductMedia, dF as ProductMediaMediaOneOf, P as ProductMediaMediaType, eS as ProductMediaMediaTypeWithLiterals, dE as ProductMediaSetByOneOf, ak as ProductOptionRenderType, fV as ProductOptionRenderTypeWithLiterals, ap as ProductPreorderAvailability, f_ as ProductPreorderAvailabilityWithLiterals, aq as ProductType, f$ as ProductTypeWithLiterals, b_ as ProductTypedPropertiesOneOf, aW as QueryVariantsRequest, a_ as QueryVariantsResponse, ba as RangeAggregation, bI as RangeAggregationRangeBucket, bj as RangeAggregationResult, b6 as RangeBucket, br as RangeResult, bn as RangeResults, av as ReadOnlyVariant, eR as ReadOnlyVariantSearchSpec, aw as ReadOnlyVariantTypedPropertiesOneOf, eD as RecoverProductVariantsRequest, eE as RecoverProductVariantsResponse, ce as Rel, e as RequestedFields, eZ as RequestedFieldsWithLiterals, a5 as Resizing, fG as ResizingWithLiterals, ai as ResponsivenessBehaviour, fT as ResponsivenessBehaviourWithLiterals, eI as RestoreInfo, bv as Results, el as RevenueDetails, d$ as Ribbon, db as RibbonStyles, b$ as RichContent, bb as ScalarAggregation, bs as ScalarResult, i as ScalarType, f1 as ScalarTypeWithLiterals, af as Scaling, fQ as ScalingWithLiterals, bg as SearchDetails, s as SearchDetailsMode, fe as SearchDetailsModeWithLiterals, b1 as SearchVariantsRequest, ep as SecuredMedia, b as SecuredMediaFileType, eU as SecuredMediaFileTypeWithLiterals, dJ as SeoSchema, dM as Settings, g as SortDirection, e$ as SortDirectionWithLiterals, d as SortOrder, eY as SortOrderWithLiterals, f as SortType, e_ as SortTypeWithLiterals, aY as Sorting, K as Source, fu as SourceWithLiterals, c9 as Spoiler, d3 as SpoilerData, cb as Styles, cC as StylesBorder, U as StylesPosition, fv as StylesPositionWithLiterals, ew as Subscription, ex as SubscriptionCyclesOneOf, ev as SubscriptionDetails, ey as SubscriptionDiscount, ez as SubscriptionDiscountDiscountOneOf, as as SubscriptionFrequency, g1 as SubscriptionFrequencyWithLiterals, er as SubscriptionPrice, es as SubscriptionPricePerUnit, eq as SubscriptionPricesInfo, dl as TableCellData, dj as TableData, dL as Tag, T as Target, fj as TargetWithLiterals, x as TextAlignment, fk as TextAlignmentWithLiterals, cX as TextData, dB as TextNodeStyle, cg as TextStyle, dH as Thumbnail, cv as Thumbnails, H as ThumbnailsAlignment, fs as ThumbnailsAlignmentWithLiterals, a7 as Type, fI as TypeWithLiterals, cn as V1Media, aB as V3FixedMonetaryAmount, aQ as V3InventoryStatus, ax as V3OptionChoice, ay as V3OptionChoiceIds, az as V3OptionChoiceNames, aT as V3PhysicalProperties, aA as V3PriceInfo, aJ as V3PricePerUnit, aK as V3PricePerUnitSettings, aD as V3ProductMedia, aF as V3ProductMediaMediaOneOf, aE as V3ProductMediaSetByOneOf, c as V3ProductType, eV as V3ProductTypeWithLiterals, aC as V3RevenueDetails, aM as V3SecuredMedia, aO as V3SubscriptionPrice, aP as V3SubscriptionPricePerUnit, aN as V3SubscriptionPricesInfo, aH as V3Thumbnail, aL as V3VariantDigitalProperties, aI as V3VariantPhysicalProperties, aU as V3WeightMeasurementUnitInfo, b8 as ValueAggregation, bJ as ValueAggregationIncludeMissingValuesOptions, o as ValueAggregationMissingValues, f9 as ValueAggregationMissingValuesWithLiterals, b9 as ValueAggregationOptionsOneOf, bi as ValueAggregationResult, n as ValueAggregationSortDirection, f8 as ValueAggregationSortDirectionWithLiterals, m as ValueAggregationSortType, f7 as ValueAggregationSortTypeWithLiterals, bq as ValueResult, bm as ValueResults, ef as Variant, eo as VariantDigitalProperties, em as VariantPhysicalProperties, eA as VariantSummary, eg as VariantTypedPropertiesOneOf, ee as VariantsInfo, eQ as VariantsQueryResult, ad as VerticalAlignment, ah as VerticalAlignmentAlignment, fS as VerticalAlignmentAlignmentWithLiterals, fO as VerticalAlignmentWithLiterals, cp as Video, de as VideoData, dG as VideoResolution, E as ViewMode, fo as ViewModeWithLiterals, Y as ViewRole, fx as ViewRoleWithLiterals, Z as VoteRole, fy as VoteRoleWithLiterals, au as WebhookIdentityType, g3 as WebhookIdentityTypeWithLiterals, eb as WeightMeasurementUnitInfo, e8 as WeightRange, W as WeightUnit, eW as WeightUnitWithLiterals, y as Width, v as WidthType, fg as WidthTypeWithLiterals, fm as WidthWithLiterals } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BBQUkXOZ.mjs';
|
|
2
|
+
import { R as ReadOnlyVariantSearch, S as SearchVariantsOptions, a as SearchVariantsResponse, b as ReadOnlyVariantQuery, Q as QueryVariantsOptions, t as typedQueryVariants, V as VariantsQueryBuilder } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Rz7CJtzF.mjs';
|
|
3
|
+
export { eM as ActionEvent, b5 as Aggregation, bi as AggregationData, bP as AggregationDateHistogramAggregation, b6 as AggregationKindOneOf, bS as AggregationNestedAggregation, bN as AggregationRangeAggregation, bB as AggregationResults, bC as AggregationResultsResultOneOf, bp as AggregationResultsScalarResult, bO as AggregationScalarAggregation, A as AggregationType, f6 as AggregationTypeWithLiterals, bL as AggregationValueAggregation, bM as AggregationValueAggregationOptionsOneOf, a8 as Alignment, fL as AlignmentWithLiterals, c$ as AnchorData, d6 as AppEmbedData, d7 as AppEmbedDataAppDataOneOf, aa as AppType, fN as AppTypeWithLiterals, a4 as AspectRatio, fH as AspectRatioWithLiterals, ds as AudioData, an as AvailabilityStatus, f_ as AvailabilityStatusWithLiterals, cR as Background, cS as BackgroundBackgroundOneOf, dy as BackgroundImage, a0 as BackgroundType, fD as BackgroundTypeWithLiterals, dv as BlockquoteData, d8 as BookingData, c5 as Border, dp as BorderColors, dq as BorderWidths, d_ as Brand, ee as BreadCrumb, ed as BreadcrumbsInfo, du as BulletedListData, c4 as ButtonData, B as ButtonDataType, fk as ButtonDataTypeWithLiterals, da as ButtonStyles, dw as CaptionData, dd as CardStyles, dn as CellStyle, al as ChoiceType, fY as ChoiceTypeWithLiterals, dQ as ChoicesSettings, cg as CodeBlockData, dj as CollapsibleListData, d0 as ColorData, c6 as Colors, bH as CommonAggregation, bI as CommonAggregationKindOneOf, r as CommonAggregationType, ff as CommonAggregationTypeWithLiterals, g6 as CommonQueryWithEntityContext, p as CommonScalarType, fc as CommonScalarTypeWithLiterals, bV as CommonSearchDetails, g7 as CommonSearchWithEntityContext, C as CommonSortOrder, f8 as CommonSortOrderWithLiterals, bG as CommonSorting, aG as CommonVideoResolution, dU as ConnectedModifier, dY as ConnectedModifierChoice, dZ as ConnectedModifierChoiceValueOneOf, dV as ConnectedModifierModifierSettingsOneOf, dO as ConnectedOption, dR as ConnectedOptionChoice, dS as ConnectedOptionChoiceValueOneOf, dP as ConnectedOptionOptionSettingsOneOf, G as Crop, ft as CropWithLiterals, a_ as CursorPaging, b0 as CursorPagingMetadata, aX as CursorQuery, aY as CursorQueryPagingMethodOneOf, b3 as CursorSearch, b4 as CursorSearchPagingMethodOneOf, b1 as Cursors, bd as DateHistogramAggregation, D as DateHistogramAggregationInterval, fe as DateHistogramAggregationIntervalWithLiterals, bx as DateHistogramResult, bz as DateHistogramResults, cZ as Decoration, c_ as DecorationDataOneOf, a1 as DecorationType, fE as DecorationTypeWithLiterals, bD as DeprecatedSearchVariantsWithOffsetRequest, bX as DeprecatedSearchVariantsWithOffsetResponse, cX as Design, dl as Dimensions, ac as Direction, fP as DirectionWithLiterals, at as DiscountType, g4 as DiscountTypeWithLiterals, ci as DividerData, z as DividerDataAlignment, fp as DividerDataAlignmentWithLiterals, dB as DocumentStyle, eG as DomainEvent, eH as DomainEventBodyOneOf, dh as EmbedData, eN as Empty, eI as EntityCreatedEvent, eL as EntityDeletedEvent, eK as EntityUpdatedEvent, d9 as EventData, ev as ExtendedFields, cj as FileData, ck as FileSource, cl as FileSourceDataOneOf, ar as FileType, g2 as FileTypeWithLiterals, e5 as FixedMonetaryAmount, d5 as FontFamilyData, d3 as FontSizeData, a2 as FontType, fF as FontTypeWithLiterals, dW as FreeTextSettings, cy as GIF, cx as GIFData, J as GIFType, fv as GIFTypeWithLiterals, cn as GalleryData, ct as GalleryOptions, cu as GalleryOptionsLayout, cQ as Gradient, bT as GroupByAggregation, bU as GroupByAggregationKindOneOf, by as GroupByValueResults, cA as HTMLData, cB as HTMLDataDataOneOf, cz as HeadingData, cb as Height, eP as IdentificationData, eQ as IdentificationDataIdOneOf, cp as Image, cC as ImageData, cE as ImageDataStyles, ag as ImagePosition, fT as ImagePositionWithLiterals, db as ImageStyles, b8 as IncludeMissingValuesOptions, d$ as InfoSection, ab as InitialExpandedItems, fO as InitialExpandedItemsWithLiterals, aV as InternalMetadata, I as InternalRowState, eZ as InternalRowStateWithLiterals, k as Interval, f5 as IntervalWithLiterals, e6 as Inventory, eu as InventoryStatus, cr as Item, cs as ItemDataOneOf, cv as ItemStyle, dL as Keyword, a9 as Layout, dz as LayoutCellData, dx as LayoutData, F as LayoutType, fr as LayoutTypeWithLiterals, fM as LayoutWithLiterals, L as LineStyle, fn as LineStyleWithLiterals, cd as Link, d1 as LinkData, ce as LinkDataOneOf, cF as LinkPreviewData, cG as LinkPreviewDataStyles, dr as ListValue, cH as MapData, cI as MapSettings, X as MapType, fy as MapTypeWithLiterals, M as MeasurementUnit, eV as MeasurementUnitWithLiterals, dD as Media, dJ as MediaItemsInfo, aj as MediaType, fW as MediaTypeWithLiterals, d2 as MentionData, eO as MessageEnvelope, dA as Metadata, bZ as MigrateProductVariantsRequest, eD as MigrateProductVariantsResponse, eC as MinVariantPriceInfo, i as MissingValues, f2 as MissingValuesWithLiterals, l as Mode, f7 as ModeWithLiterals, dX as ModifierChoicesSettings, am as ModifierRenderType, fZ as ModifierRenderTypeWithLiterals, dT as MultipleColors, bg as NestedAggregation, be as NestedAggregationItem, bf as NestedAggregationItemKindOneOf, bQ as NestedAggregationNestedAggregationItem, bR as NestedAggregationNestedAggregationItemKindOneOf, q as NestedAggregationNestedAggregationType, fd as NestedAggregationNestedAggregationTypeWithLiterals, bl as NestedAggregationResults, bm as NestedAggregationResultsResultOneOf, N as NestedAggregationType, f4 as NestedAggregationTypeWithLiterals, bu as NestedResultValue, bv as NestedResultValueResultOneOf, bA as NestedResults, bq as NestedValueAggregationResult, c1 as Node, c2 as NodeDataOneOf, c3 as NodeStyle, u as NodeType, fh as NodeTypeWithLiterals, ae as NullValue, fR as NullValueWithLiterals, di as Oembed, cM as Option, ei as OptionChoice, ej as OptionChoiceIds, ek as OptionChoiceNames, cU as OptionDesign, cP as OptionLayout, dt as OrderedListData, O as Orientation, fs as OrientationWithLiterals, cm as PDFSettings, bY as PagingMetadata, cJ as ParagraphData, cL as Permissions, e7 as PhysicalProperties, a6 as Placement, fJ as PlacementWithLiterals, bE as PlatformOffsetSearch, bF as PlatformOffsetSearchPagingMethodOneOf, bW as PlatformPaging, dg as PlaybackOptions, c7 as PluginContainerData, w as PluginContainerDataAlignment, fj as PluginContainerDataAlignmentWithLiterals, c8 as PluginContainerDataWidth, c9 as PluginContainerDataWidthDataOneOf, cV as Poll, cK as PollData, cW as PollDataLayout, cT as PollDesign, cO as PollLayout, $ as PollLayoutDirection, fC as PollLayoutDirectionWithLiterals, _ as PollLayoutType, fB as PollLayoutTypeWithLiterals, cN as PollSettings, a3 as Position, fG as PositionWithLiterals, ao as PreorderStatus, f$ as PreorderStatusWithLiterals, el as PriceInfo, eo as PricePerUnit, ea as PricePerUnitRange, eb as PricePerUnitRangePricePerUnit, e8 as PricePerUnitSettings, e4 as PriceRange, de as PricingData, b_ as Product, e1 as ProductCategoriesInfo, e2 as ProductCategory, e3 as ProductCategoryIdsInfo, aR as ProductFields, aS as ProductFieldsTypedPropertiesOneOf, dE as ProductMedia, dG as ProductMediaMediaOneOf, P as ProductMediaMediaType, eU as ProductMediaMediaTypeWithLiterals, dF as ProductMediaSetByOneOf, ak as ProductOptionRenderType, fX as ProductOptionRenderTypeWithLiterals, ap as ProductPreorderAvailability, g0 as ProductPreorderAvailabilityWithLiterals, aq as ProductType, g1 as ProductTypeWithLiterals, b$ as ProductTypedPropertiesOneOf, aW as QueryVariantsRequest, a$ as QueryVariantsResponse, bb as RangeAggregation, bJ as RangeAggregationRangeBucket, bk as RangeAggregationResult, b7 as RangeBucket, bs as RangeResult, bo as RangeResults, av as ReadOnlyVariant, eS as ReadOnlyVariantQuerySpec, eT as ReadOnlyVariantSearchSpec, aw as ReadOnlyVariantTypedPropertiesOneOf, eE as RecoverProductVariantsRequest, eF as RecoverProductVariantsResponse, cf as Rel, f as RequestedFields, e$ as RequestedFieldsWithLiterals, a5 as Resizing, fI as ResizingWithLiterals, ai as ResponsivenessBehaviour, fV as ResponsivenessBehaviourWithLiterals, eJ as RestoreInfo, bw as Results, em as RevenueDetails, e0 as Ribbon, dc as RibbonStyles, c0 as RichContent, bc as ScalarAggregation, bt as ScalarResult, j as ScalarType, f3 as ScalarTypeWithLiterals, af as Scaling, fS as ScalingWithLiterals, bh as SearchDetails, s as SearchDetailsMode, fg as SearchDetailsModeWithLiterals, b2 as SearchVariantsRequest, eq as SecuredMedia, c as SecuredMediaFileType, eW as SecuredMediaFileTypeWithLiterals, dK as SeoSchema, dN as Settings, h as SortDirection, f1 as SortDirectionWithLiterals, e as SortOrder, e_ as SortOrderWithLiterals, g as SortType, f0 as SortTypeWithLiterals, aZ as Sorting, K as Source, fw as SourceWithLiterals, ca as Spoiler, d4 as SpoilerData, cc as Styles, cD as StylesBorder, U as StylesPosition, fx as StylesPositionWithLiterals, ex as Subscription, ey as SubscriptionCyclesOneOf, ew as SubscriptionDetails, ez as SubscriptionDiscount, eA as SubscriptionDiscountDiscountOneOf, as as SubscriptionFrequency, g3 as SubscriptionFrequencyWithLiterals, es as SubscriptionPrice, et as SubscriptionPricePerUnit, er as SubscriptionPricesInfo, dm as TableCellData, dk as TableData, dM as Tag, T as Target, fl as TargetWithLiterals, x as TextAlignment, fm as TextAlignmentWithLiterals, cY as TextData, dC as TextNodeStyle, ch as TextStyle, dI as Thumbnail, cw as Thumbnails, H as ThumbnailsAlignment, fu as ThumbnailsAlignmentWithLiterals, a7 as Type, fK as TypeWithLiterals, co as V1Media, aB as V3FixedMonetaryAmount, aQ as V3InventoryStatus, ax as V3OptionChoice, ay as V3OptionChoiceIds, az as V3OptionChoiceNames, aT as V3PhysicalProperties, aA as V3PriceInfo, aJ as V3PricePerUnit, aK as V3PricePerUnitSettings, aD as V3ProductMedia, aF as V3ProductMediaMediaOneOf, aE as V3ProductMediaSetByOneOf, d as V3ProductType, eX as V3ProductTypeWithLiterals, aC as V3RevenueDetails, aM as V3SecuredMedia, aO as V3SubscriptionPrice, aP as V3SubscriptionPricePerUnit, aN as V3SubscriptionPricesInfo, aH as V3Thumbnail, aL as V3VariantDigitalProperties, aI as V3VariantPhysicalProperties, aU as V3WeightMeasurementUnitInfo, b9 as ValueAggregation, bK as ValueAggregationIncludeMissingValuesOptions, o as ValueAggregationMissingValues, fb as ValueAggregationMissingValuesWithLiterals, ba as ValueAggregationOptionsOneOf, bj as ValueAggregationResult, n as ValueAggregationSortDirection, fa as ValueAggregationSortDirectionWithLiterals, m as ValueAggregationSortType, f9 as ValueAggregationSortTypeWithLiterals, br as ValueResult, bn as ValueResults, eg as Variant, ep as VariantDigitalProperties, en as VariantPhysicalProperties, eB as VariantSummary, eh as VariantTypedPropertiesOneOf, ef as VariantsInfo, eR as VariantsQueryResult, ad as VerticalAlignment, ah as VerticalAlignmentAlignment, fU as VerticalAlignmentAlignmentWithLiterals, fQ as VerticalAlignmentWithLiterals, cq as Video, df as VideoData, dH as VideoResolution, E as ViewMode, fq as ViewModeWithLiterals, Y as ViewRole, fz as ViewRoleWithLiterals, Z as VoteRole, fA as VoteRoleWithLiterals, au as WebhookIdentityType, g5 as WebhookIdentityTypeWithLiterals, ec as WeightMeasurementUnitInfo, e9 as WeightRange, W as WeightUnit, eY as WeightUnitWithLiterals, y as Width, v as WidthType, fi as WidthTypeWithLiterals, fo as WidthWithLiterals } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Rz7CJtzF.mjs';
|
|
4
4
|
|
|
5
5
|
declare function searchVariants$1(httpClient: HttpClient): SearchVariantsSignature;
|
|
6
6
|
interface SearchVariantsSignature {
|
|
@@ -18,10 +18,10 @@ interface SearchVariantsSignature {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
declare function customQueryVariants(httpClient: HttpClient): {
|
|
21
|
-
(query:
|
|
21
|
+
(query: ReadOnlyVariantQuery, options?: QueryVariantsOptions): ReturnType<typeof typedQueryVariants>;
|
|
22
22
|
(options?: QueryVariantsOptions): VariantsQueryBuilder;
|
|
23
23
|
};
|
|
24
24
|
declare const searchVariants: MaybeContext<BuildRESTFunction<typeof searchVariants$1> & typeof searchVariants$1>;
|
|
25
25
|
declare const queryVariants: MaybeContext<BuildRESTFunction<typeof customQueryVariants> & typeof customQueryVariants>;
|
|
26
26
|
|
|
27
|
-
export {
|
|
27
|
+
export { QueryVariantsOptions, ReadOnlyVariantQuery, ReadOnlyVariantSearch, SearchVariantsOptions, SearchVariantsResponse, VariantsQueryBuilder, queryVariants, searchVariants };
|
|
@@ -679,8 +679,6 @@ var ChoiceType = /* @__PURE__ */ ((ChoiceType2) => {
|
|
|
679
679
|
ChoiceType2["UNKNOWN_CHOICE_TYPE"] = "UNKNOWN_CHOICE_TYPE";
|
|
680
680
|
ChoiceType2["CHOICE_TEXT"] = "CHOICE_TEXT";
|
|
681
681
|
ChoiceType2["ONE_COLOR"] = "ONE_COLOR";
|
|
682
|
-
ChoiceType2["MULTIPLE_COLORS"] = "MULTIPLE_COLORS";
|
|
683
|
-
ChoiceType2["IMAGE"] = "IMAGE";
|
|
684
682
|
return ChoiceType2;
|
|
685
683
|
})(ChoiceType || {});
|
|
686
684
|
var ModifierRenderType = /* @__PURE__ */ ((ModifierRenderType2) => {
|