@wix/auto_sdk_stores_read-only-variants-v-3 1.0.38 → 1.0.40
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 +2 -2
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +38 -4
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-CodxHY1C.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-bxyvT3P6.d.ts} +37 -3
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +38 -4
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-CodxHY1C.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-bxyvT3P6.d.mts} +37 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +1 -0
- 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 +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +38 -4
- package/build/internal/cjs/meta.js +1 -0
- 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-BCXsI96S.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BBQUkXOZ.d.ts} +37 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +1 -0
- 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 +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +38 -4
- package/build/internal/es/meta.mjs +1 -0
- 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-BCXsI96S.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BBQUkXOZ.d.mts} +37 -3
- package/package.json +2 -2
|
@@ -3002,6 +3002,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
3002
3002
|
superscriptData?: boolean | null;
|
|
3003
3003
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
3004
3004
|
subscriptData?: boolean | null;
|
|
3005
|
+
/** Data for a font family decoration. */
|
|
3006
|
+
fontFamilyData?: FontFamilyData;
|
|
3005
3007
|
/** The type of decoration to apply. */
|
|
3006
3008
|
type?: DecorationTypeWithLiterals;
|
|
3007
3009
|
}
|
|
@@ -3031,6 +3033,8 @@ interface DecorationDataOneOf {
|
|
|
3031
3033
|
superscriptData?: boolean | null;
|
|
3032
3034
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
3033
3035
|
subscriptData?: boolean | null;
|
|
3036
|
+
/** Data for a font family decoration. */
|
|
3037
|
+
fontFamilyData?: FontFamilyData;
|
|
3034
3038
|
}
|
|
3035
3039
|
declare enum DecorationType {
|
|
3036
3040
|
BOLD = "BOLD",
|
|
@@ -3045,10 +3049,11 @@ declare enum DecorationType {
|
|
|
3045
3049
|
EXTERNAL = "EXTERNAL",
|
|
3046
3050
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
3047
3051
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
3048
|
-
SUBSCRIPT = "SUBSCRIPT"
|
|
3052
|
+
SUBSCRIPT = "SUBSCRIPT",
|
|
3053
|
+
FONT_FAMILY = "FONT_FAMILY"
|
|
3049
3054
|
}
|
|
3050
3055
|
/** @enumType */
|
|
3051
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
|
|
3056
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
3052
3057
|
interface AnchorData {
|
|
3053
3058
|
/** The target node's ID. */
|
|
3054
3059
|
anchor?: string;
|
|
@@ -3087,6 +3092,10 @@ interface SpoilerData {
|
|
|
3087
3092
|
/** Spoiler ID. */
|
|
3088
3093
|
id?: string | null;
|
|
3089
3094
|
}
|
|
3095
|
+
interface FontFamilyData {
|
|
3096
|
+
/** @maxLength 1000 */
|
|
3097
|
+
value?: string | null;
|
|
3098
|
+
}
|
|
3090
3099
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
3091
3100
|
/** Data for embedded Wix Bookings content. */
|
|
3092
3101
|
bookingData?: BookingData;
|
|
@@ -3471,6 +3480,13 @@ interface TableData {
|
|
|
3471
3480
|
rowHeader?: boolean | null;
|
|
3472
3481
|
/** Sets whether the table's first column is a header. Defaults to `false`. */
|
|
3473
3482
|
columnHeader?: boolean | null;
|
|
3483
|
+
/** The spacing between cells in pixels. Defaults to `0`. */
|
|
3484
|
+
cellSpacing?: number | null;
|
|
3485
|
+
/**
|
|
3486
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left.
|
|
3487
|
+
* @maxSize 4
|
|
3488
|
+
*/
|
|
3489
|
+
cellPadding?: number[];
|
|
3474
3490
|
}
|
|
3475
3491
|
interface Dimensions {
|
|
3476
3492
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -3485,6 +3501,12 @@ interface TableCellData {
|
|
|
3485
3501
|
cellStyle?: CellStyle;
|
|
3486
3502
|
/** The cell's border colors. */
|
|
3487
3503
|
borderColors?: BorderColors;
|
|
3504
|
+
/** Defines how many columns the cell spans. Default: 1. */
|
|
3505
|
+
colspan?: number | null;
|
|
3506
|
+
/** Defines how many rows the cell spans. Default: 1. */
|
|
3507
|
+
rowspan?: number | null;
|
|
3508
|
+
/** The cell's border widths. */
|
|
3509
|
+
borderWidths?: BorderWidths;
|
|
3488
3510
|
}
|
|
3489
3511
|
declare enum VerticalAlignment {
|
|
3490
3512
|
/** Top alignment */
|
|
@@ -3527,6 +3549,16 @@ interface BorderColors {
|
|
|
3527
3549
|
*/
|
|
3528
3550
|
bottom?: string | null;
|
|
3529
3551
|
}
|
|
3552
|
+
interface BorderWidths {
|
|
3553
|
+
/** Left border width in pixels. */
|
|
3554
|
+
left?: number | null;
|
|
3555
|
+
/** Right border width in pixels. */
|
|
3556
|
+
right?: number | null;
|
|
3557
|
+
/** Top border width in pixels. */
|
|
3558
|
+
top?: number | null;
|
|
3559
|
+
/** Bottom border width in pixels. */
|
|
3560
|
+
bottom?: number | null;
|
|
3561
|
+
}
|
|
3530
3562
|
/**
|
|
3531
3563
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
3532
3564
|
* `Value` type union.
|
|
@@ -3626,6 +3658,8 @@ interface LayoutData {
|
|
|
3626
3658
|
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
3627
3659
|
/** Size in pixels when responsiveness_behaviour applies */
|
|
3628
3660
|
responsivenessBreakpoint?: number | null;
|
|
3661
|
+
/** Styling for the layout's container. */
|
|
3662
|
+
containerData?: PluginContainerData;
|
|
3629
3663
|
}
|
|
3630
3664
|
declare enum Scaling {
|
|
3631
3665
|
/** Auto image scaling */
|
|
@@ -5318,4 +5352,4 @@ type ReadOnlyVariantSearch = {
|
|
|
5318
5352
|
timeZone?: CommonSearchWithEntityContext['timeZone'] | null;
|
|
5319
5353
|
};
|
|
5320
5354
|
|
|
5321
|
-
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 ProductCategory as d$, type LinkData as d0, type MentionData as d1, type FontSizeData as d2, type SpoilerData as d3, type AppEmbedData as d4, type AppEmbedDataAppDataOneOf as d5, type BookingData as d6, type EventData as d7, type ButtonStyles as d8, type ImageStyles as d9, type Media as dA, type ProductMedia as dB, type ProductMediaSetByOneOf as dC, type ProductMediaMediaOneOf as dD, type VideoResolution as dE, type Thumbnail as dF, type MediaItemsInfo as dG, type SeoSchema as dH, type Keyword as dI, type Tag as dJ, type Settings as dK, type ConnectedOption as dL, type ConnectedOptionOptionSettingsOneOf as dM, type ChoicesSettings as dN, type ConnectedOptionChoice as dO, type ConnectedOptionChoiceValueOneOf as dP, type MultipleColors as dQ, type ConnectedModifier as dR, type ConnectedModifierModifierSettingsOneOf as dS, type FreeTextSettings as dT, type ModifierChoicesSettings as dU, type ConnectedModifierChoice as dV, type ConnectedModifierChoiceValueOneOf as dW, type Brand as dX, type InfoSection as dY, type Ribbon as dZ, type ProductCategoriesInfo as d_, type RibbonStyles as da, type CardStyles as db, type PricingData as dc, type VideoData as dd, type PlaybackOptions as de, type EmbedData as df, type Oembed as dg, type CollapsibleListData as dh, type TableData as di, type Dimensions as dj, type TableCellData as dk, type CellStyle as dl, type BorderColors as dm, type ListValue as dn, type AudioData as dp, type OrderedListData as dq, type BulletedListData as dr, type BlockquoteData as ds, type CaptionData as dt, type LayoutData as du, type BackgroundImage as dv, type LayoutCellData as dw, type Metadata as dx, type DocumentStyle as dy, type TextNodeStyle as dz, RequestedFields as e, type ScalarTypeWithLiterals as e$, type ProductCategoryIdsInfo as e0, type PriceRange as e1, type FixedMonetaryAmount as e2, type Inventory as e3, type PhysicalProperties as e4, type PricePerUnitSettings as e5, type WeightRange as e6, type PricePerUnitRange as e7, type PricePerUnitRangePricePerUnit as e8, type WeightMeasurementUnitInfo as e9, type MigrateProductVariantsResponse as eA, type RecoverProductVariantsRequest as eB, type RecoverProductVariantsResponse as eC, type DomainEvent as eD, type DomainEventBodyOneOf as eE, type EntityCreatedEvent as eF, type RestoreInfo as eG, type EntityUpdatedEvent as eH, type EntityDeletedEvent as eI, type ActionEvent as eJ, type Empty as eK, type MessageEnvelope as eL, type IdentificationData as eM, type IdentificationDataIdOneOf as eN, type VariantsQueryResult as eO, type ReadOnlyVariantSearchSpec as eP, type ProductMediaMediaTypeWithLiterals as eQ, type MeasurementUnitWithLiterals as eR, type SecuredMediaFileTypeWithLiterals as eS, type V3ProductTypeWithLiterals as eT, type WeightUnitWithLiterals as eU, type InternalRowStateWithLiterals as eV, type SortOrderWithLiterals as eW, type RequestedFieldsWithLiterals as eX, type SortTypeWithLiterals as eY, type SortDirectionWithLiterals as eZ, type MissingValuesWithLiterals as e_, type BreadcrumbsInfo as ea, type BreadCrumb as eb, type VariantsInfo as ec, type Variant as ed, type VariantTypedPropertiesOneOf as ee, type OptionChoice as ef, type OptionChoiceIds as eg, type OptionChoiceNames as eh, type PriceInfo as ei, type RevenueDetails as ej, type VariantPhysicalProperties as ek, type PricePerUnit as el, type VariantDigitalProperties as em, type SecuredMedia as en, type SubscriptionPricesInfo as eo, type SubscriptionPrice as ep, type SubscriptionPricePerUnit as eq, type InventoryStatus as er, type ExtendedFields as es, type SubscriptionDetails as et, type Subscription as eu, type SubscriptionCyclesOneOf as ev, type SubscriptionDiscount as ew, type SubscriptionDiscountDiscountOneOf as ex, type VariantSummary as ey, type MinVariantPriceInfo as ez, SortType as f, type SubscriptionFrequencyWithLiterals as f$, type NestedAggregationTypeWithLiterals as f0, type IntervalWithLiterals as f1, type AggregationTypeWithLiterals as f2, type ModeWithLiterals as f3, type CommonSortOrderWithLiterals as f4, type ValueAggregationSortTypeWithLiterals as f5, type ValueAggregationSortDirectionWithLiterals as f6, type ValueAggregationMissingValuesWithLiterals as f7, type CommonScalarTypeWithLiterals as f8, type NestedAggregationNestedAggregationTypeWithLiterals as f9, type DecorationTypeWithLiterals as fA, type FontTypeWithLiterals as fB, type PositionWithLiterals as fC, type AspectRatioWithLiterals as fD, type ResizingWithLiterals as fE, type PlacementWithLiterals as fF, type TypeWithLiterals as fG, type AlignmentWithLiterals as fH, type LayoutWithLiterals as fI, type AppTypeWithLiterals as fJ, type InitialExpandedItemsWithLiterals as fK, type DirectionWithLiterals as fL, type VerticalAlignmentWithLiterals as fM, type NullValueWithLiterals as fN, type ScalingWithLiterals as fO, type ImagePositionWithLiterals as fP, type VerticalAlignmentAlignmentWithLiterals as fQ, type ResponsivenessBehaviourWithLiterals as fR, type MediaTypeWithLiterals as fS, type ProductOptionRenderTypeWithLiterals as fT, type ChoiceTypeWithLiterals as fU, type ModifierRenderTypeWithLiterals as fV, type AvailabilityStatusWithLiterals as fW, type PreorderStatusWithLiterals as fX, type ProductPreorderAvailabilityWithLiterals as fY, type ProductTypeWithLiterals as fZ, type FileTypeWithLiterals as f_, type DateHistogramAggregationIntervalWithLiterals as fa, type CommonAggregationTypeWithLiterals as fb, type SearchDetailsModeWithLiterals as fc, type NodeTypeWithLiterals as fd, type WidthTypeWithLiterals as fe, type PluginContainerDataAlignmentWithLiterals as ff, type ButtonDataTypeWithLiterals as fg, type TargetWithLiterals as fh, type TextAlignmentWithLiterals as fi, type LineStyleWithLiterals as fj, type WidthWithLiterals as fk, type DividerDataAlignmentWithLiterals as fl, type ViewModeWithLiterals as fm, type LayoutTypeWithLiterals as fn, type OrientationWithLiterals as fo, type CropWithLiterals as fp, type ThumbnailsAlignmentWithLiterals as fq, type GIFTypeWithLiterals as fr, type SourceWithLiterals as fs, type StylesPositionWithLiterals as ft, type MapTypeWithLiterals as fu, type ViewRoleWithLiterals as fv, type VoteRoleWithLiterals as fw, type PollLayoutTypeWithLiterals as fx, type PollLayoutDirectionWithLiterals as fy, type BackgroundTypeWithLiterals as fz, SortDirection as g, type DiscountTypeWithLiterals as g0, type WebhookIdentityTypeWithLiterals as g1, type CommonSearchWithEntityContext as g2, queryVariants as g3, 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 };
|
|
5355
|
+
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 };
|
|
@@ -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, C as CursorQuery, Q as QueryVariantsOptions, t as typedQueryVariants, V as VariantsQueryBuilder } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-
|
|
3
|
-
export { eJ 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, f2 as AggregationTypeWithLiterals, bK as AggregationValueAggregation, bL as AggregationValueAggregationOptionsOneOf, a8 as Alignment, fH as AlignmentWithLiterals, c_ as AnchorData, d4 as AppEmbedData, d5 as AppEmbedDataAppDataOneOf, aa as AppType, fJ as AppTypeWithLiterals, a4 as AspectRatio, fD as AspectRatioWithLiterals, dp as AudioData, an as AvailabilityStatus, fW as AvailabilityStatusWithLiterals, cQ as Background, cR as BackgroundBackgroundOneOf, dv as BackgroundImage, a0 as BackgroundType, fz as BackgroundTypeWithLiterals, ds as BlockquoteData, d6 as BookingData, c4 as Border, dm as BorderColors, dX as Brand, eb as BreadCrumb, ea as BreadcrumbsInfo, dr as BulletedListData, c3 as ButtonData, B as ButtonDataType, fg as ButtonDataTypeWithLiterals, d8 as ButtonStyles, dt as CaptionData, db as CardStyles, dl as CellStyle, al as ChoiceType, fU as ChoiceTypeWithLiterals, dN as ChoicesSettings, cf as CodeBlockData, dh as CollapsibleListData, c$ as ColorData, c5 as Colors, bG as CommonAggregation, bH as CommonAggregationKindOneOf, r as CommonAggregationType, fb as CommonAggregationTypeWithLiterals, p as CommonScalarType, f8 as CommonScalarTypeWithLiterals, bU as CommonSearchDetails, g2 as CommonSearchWithEntityContext, l as CommonSortOrder, f4 as CommonSortOrderWithLiterals, bF as CommonSorting, aG as CommonVideoResolution, dR as ConnectedModifier, dV as ConnectedModifierChoice, dW as ConnectedModifierChoiceValueOneOf, dS as ConnectedModifierModifierSettingsOneOf, dL as ConnectedOption, dO as ConnectedOptionChoice, dP as ConnectedOptionChoiceValueOneOf, dM as ConnectedOptionOptionSettingsOneOf, G as Crop, fp 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, fa as DateHistogramAggregationIntervalWithLiterals, bw as DateHistogramResult, by as DateHistogramResults, cY as Decoration, cZ as DecorationDataOneOf, a1 as DecorationType, fA as DecorationTypeWithLiterals, bC as DeprecatedSearchVariantsWithOffsetRequest, bW as DeprecatedSearchVariantsWithOffsetResponse, cW as Design, dj as Dimensions, ac as Direction, fL as DirectionWithLiterals, at as DiscountType, g0 as DiscountTypeWithLiterals, ch as DividerData, z as DividerDataAlignment, fl as DividerDataAlignmentWithLiterals, dy as DocumentStyle, eD as DomainEvent, eE as DomainEventBodyOneOf, df as EmbedData, eK as Empty, eF as EntityCreatedEvent, eI as EntityDeletedEvent, eH as EntityUpdatedEvent, d7 as EventData, es as ExtendedFields, ci as FileData, cj as FileSource, ck as FileSourceDataOneOf, ar as FileType, f_ as FileTypeWithLiterals, e2 as FixedMonetaryAmount, d2 as FontSizeData, a2 as FontType, fB as FontTypeWithLiterals, dT as FreeTextSettings, cx as GIF, cw as GIFData, J as GIFType, fr 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, eM as IdentificationData, eN as IdentificationDataIdOneOf, co as Image, cB as ImageData, cD as ImageDataStyles, ag as ImagePosition, fP as ImagePositionWithLiterals, d9 as ImageStyles, b7 as IncludeMissingValuesOptions, dY as InfoSection, ab as InitialExpandedItems, fK as InitialExpandedItemsWithLiterals, aV as InternalMetadata, I as InternalRowState, eV as InternalRowStateWithLiterals, j as Interval, f1 as IntervalWithLiterals, e3 as Inventory, er as InventoryStatus, cq as Item, cr as ItemDataOneOf, cu as ItemStyle, dI as Keyword, a9 as Layout, dw as LayoutCellData, du as LayoutData, F as LayoutType, fn as LayoutTypeWithLiterals, fI as LayoutWithLiterals, L as LineStyle, fj as LineStyleWithLiterals, cc as Link, d0 as LinkData, cd as LinkDataOneOf, cE as LinkPreviewData, cF as LinkPreviewDataStyles, dn as ListValue, cG as MapData, cH as MapSettings, X as MapType, fu as MapTypeWithLiterals, M as MeasurementUnit, eR as MeasurementUnitWithLiterals, dA as Media, dG as MediaItemsInfo, aj as MediaType, fS as MediaTypeWithLiterals, d1 as MentionData, eL as MessageEnvelope, dx as Metadata, bY as MigrateProductVariantsRequest, eA as MigrateProductVariantsResponse, ez as MinVariantPriceInfo, h as MissingValues, e_ as MissingValuesWithLiterals, k as Mode, f3 as ModeWithLiterals, dU as ModifierChoicesSettings, am as ModifierRenderType, fV as ModifierRenderTypeWithLiterals, dQ as MultipleColors, bf as NestedAggregation, bd as NestedAggregationItem, be as NestedAggregationItemKindOneOf, bP as NestedAggregationNestedAggregationItem, bQ as NestedAggregationNestedAggregationItemKindOneOf, q as NestedAggregationNestedAggregationType, f9 as NestedAggregationNestedAggregationTypeWithLiterals, bk as NestedAggregationResults, bl as NestedAggregationResultsResultOneOf, N as NestedAggregationType, f0 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, fd as NodeTypeWithLiterals, ae as NullValue, fN as NullValueWithLiterals, dg as Oembed, cL as Option, ef as OptionChoice, eg as OptionChoiceIds, eh as OptionChoiceNames, cT as OptionDesign, cO as OptionLayout, dq as OrderedListData, O as Orientation, fo as OrientationWithLiterals, cl as PDFSettings, bX as PagingMetadata, cI as ParagraphData, cK as Permissions, e4 as PhysicalProperties, a6 as Placement, fF as PlacementWithLiterals, bD as PlatformOffsetSearch, bE as PlatformOffsetSearchPagingMethodOneOf, bV as PlatformPaging, de as PlaybackOptions, c6 as PluginContainerData, w as PluginContainerDataAlignment, ff 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, fy as PollLayoutDirectionWithLiterals, _ as PollLayoutType, fx as PollLayoutTypeWithLiterals, cM as PollSettings, a3 as Position, fC as PositionWithLiterals, ao as PreorderStatus, fX as PreorderStatusWithLiterals, ei as PriceInfo, el as PricePerUnit, e7 as PricePerUnitRange, e8 as PricePerUnitRangePricePerUnit, e5 as PricePerUnitSettings, e1 as PriceRange, dc as PricingData, bZ as Product, d_ as ProductCategoriesInfo, d$ as ProductCategory, e0 as ProductCategoryIdsInfo, aR as ProductFields, aS as ProductFieldsTypedPropertiesOneOf, dB as ProductMedia, dD as ProductMediaMediaOneOf, P as ProductMediaMediaType, eQ as ProductMediaMediaTypeWithLiterals, dC as ProductMediaSetByOneOf, ak as ProductOptionRenderType, fT as ProductOptionRenderTypeWithLiterals, ap as ProductPreorderAvailability, fY as ProductPreorderAvailabilityWithLiterals, aq as ProductType, fZ 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, eP as ReadOnlyVariantSearchSpec, aw as ReadOnlyVariantTypedPropertiesOneOf, eB as RecoverProductVariantsRequest, eC as RecoverProductVariantsResponse, ce as Rel, e as RequestedFields, eX as RequestedFieldsWithLiterals, a5 as Resizing, fE as ResizingWithLiterals, ai as ResponsivenessBehaviour, fR as ResponsivenessBehaviourWithLiterals, eG as RestoreInfo, bv as Results, ej as RevenueDetails, dZ as Ribbon, da as RibbonStyles, b$ as RichContent, bb as ScalarAggregation, bs as ScalarResult, i as ScalarType, e$ as ScalarTypeWithLiterals, af as Scaling, fO as ScalingWithLiterals, bg as SearchDetails, s as SearchDetailsMode, fc as SearchDetailsModeWithLiterals, b1 as SearchVariantsRequest, en as SecuredMedia, b as SecuredMediaFileType, eS as SecuredMediaFileTypeWithLiterals, dH as SeoSchema, dK as Settings, g as SortDirection, eZ as SortDirectionWithLiterals, d as SortOrder, eW as SortOrderWithLiterals, f as SortType, eY as SortTypeWithLiterals, aY as Sorting, K as Source, fs as SourceWithLiterals, c9 as Spoiler, d3 as SpoilerData, cb as Styles, cC as StylesBorder, U as StylesPosition, ft as StylesPositionWithLiterals, eu as Subscription, ev as SubscriptionCyclesOneOf, et as SubscriptionDetails, ew as SubscriptionDiscount, ex as SubscriptionDiscountDiscountOneOf, as as SubscriptionFrequency, f$ as SubscriptionFrequencyWithLiterals, ep as SubscriptionPrice, eq as SubscriptionPricePerUnit, eo as SubscriptionPricesInfo, dk as TableCellData, di as TableData, dJ as Tag, T as Target, fh as TargetWithLiterals, x as TextAlignment, fi as TextAlignmentWithLiterals, cX as TextData, dz as TextNodeStyle, cg as TextStyle, dF as Thumbnail, cv as Thumbnails, H as ThumbnailsAlignment, fq as ThumbnailsAlignmentWithLiterals, a7 as Type, fG 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, eT 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, f7 as ValueAggregationMissingValuesWithLiterals, b9 as ValueAggregationOptionsOneOf, bi as ValueAggregationResult, n as ValueAggregationSortDirection, f6 as ValueAggregationSortDirectionWithLiterals, m as ValueAggregationSortType, f5 as ValueAggregationSortTypeWithLiterals, bq as ValueResult, bm as ValueResults, ed as Variant, em as VariantDigitalProperties, ek as VariantPhysicalProperties, ey as VariantSummary, ee as VariantTypedPropertiesOneOf, ec as VariantsInfo, eO as VariantsQueryResult, ad as VerticalAlignment, ah as VerticalAlignmentAlignment, fQ as VerticalAlignmentAlignmentWithLiterals, fM as VerticalAlignmentWithLiterals, cp as Video, dd as VideoData, dE as VideoResolution, E as ViewMode, fm as ViewModeWithLiterals, Y as ViewRole, fv as ViewRoleWithLiterals, Z as VoteRole, fw as VoteRoleWithLiterals, au as WebhookIdentityType, g1 as WebhookIdentityTypeWithLiterals, e9 as WeightMeasurementUnitInfo, e6 as WeightRange, W as WeightUnit, eU as WeightUnitWithLiterals, y as Width, v as WidthType, fe as WidthTypeWithLiterals, fk as WidthWithLiterals } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BCXsI96S.js';
|
|
2
|
+
import { R as ReadOnlyVariantSearch, S as SearchVariantsOptions, a as SearchVariantsResponse, C as CursorQuery, Q as QueryVariantsOptions, t as typedQueryVariants, V as VariantsQueryBuilder } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BBQUkXOZ.js';
|
|
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.js';
|
|
4
4
|
|
|
5
5
|
declare function searchVariants$1(httpClient: HttpClient): SearchVariantsSignature;
|
|
6
6
|
interface SearchVariantsSignature {
|
|
@@ -664,6 +664,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
664
664
|
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
665
665
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
666
666
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
667
|
+
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
667
668
|
return DecorationType2;
|
|
668
669
|
})(DecorationType || {});
|
|
669
670
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|