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