@wix/auto_sdk_stores_read-only-variants-v-3 1.0.12 → 1.0.13
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/{index.d.ts → cjs/index.d.ts} +12 -4
- package/build/{internal → cjs}/index.js +12 -0
- package/build/cjs/index.js.map +1 -0
- package/build/{meta.js → cjs/meta.js} +10 -0
- package/build/cjs/meta.js.map +1 -0
- package/build/{index.d.mts → es/index.d.mts} +12 -4
- package/build/{index.mjs → es/index.mjs} +12 -0
- package/build/es/index.mjs.map +1 -0
- package/build/{meta.mjs → es/meta.mjs} +10 -0
- package/build/es/meta.mjs.map +1 -0
- package/build/es/package.json +3 -0
- package/build/internal/{index.d.ts → cjs/index.d.ts} +2 -2
- package/build/{index.js → internal/cjs/index.js} +12 -0
- package/build/internal/cjs/index.js.map +1 -0
- package/build/internal/{meta.d.ts → cjs/meta.d.ts} +1 -1
- package/build/internal/{meta.js → cjs/meta.js} +10 -0
- package/build/internal/cjs/meta.js.map +1 -0
- package/build/internal/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Co7RmbZM.d.ts → cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DziyR5eD.d.ts} +12 -4
- package/build/internal/{index.d.mts → es/index.d.mts} +2 -2
- package/build/internal/{index.mjs → es/index.mjs} +12 -0
- package/build/internal/es/index.mjs.map +1 -0
- package/build/internal/{meta.d.mts → es/meta.d.mts} +1 -1
- package/build/internal/{meta.mjs → es/meta.mjs} +10 -0
- package/build/internal/es/meta.mjs.map +1 -0
- package/build/internal/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Co7RmbZM.d.mts → es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DziyR5eD.d.mts} +12 -4
- package/package.json +10 -10
- package/build/index.js.map +0 -1
- package/build/index.mjs.map +0 -1
- package/build/internal/index.js.map +0 -1
- package/build/internal/index.mjs.map +0 -1
- package/build/internal/meta.js.map +0 -1
- package/build/internal/meta.mjs.map +0 -1
- package/build/meta.js.map +0 -1
- package/build/meta.mjs.map +0 -1
- /package/build/{meta.d.ts → cjs/meta.d.ts} +0 -0
- /package/build/{meta.d.mts → es/meta.d.mts} +0 -0
|
@@ -2880,6 +2880,10 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
2880
2880
|
spoilerData?: SpoilerData;
|
|
2881
2881
|
/** Data for a strikethrough decoration. Defaults to `true`. */
|
|
2882
2882
|
strikethroughData?: boolean | null;
|
|
2883
|
+
/** Data for a superscript decoration. Defaults to `true`. */
|
|
2884
|
+
superscriptData?: boolean | null;
|
|
2885
|
+
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2886
|
+
subscriptData?: boolean | null;
|
|
2883
2887
|
/** The type of decoration to apply. */
|
|
2884
2888
|
type?: DecorationTypeWithLiterals;
|
|
2885
2889
|
}
|
|
@@ -2905,6 +2909,10 @@ interface DecorationDataOneOf {
|
|
|
2905
2909
|
spoilerData?: SpoilerData;
|
|
2906
2910
|
/** Data for a strikethrough decoration. Defaults to `true`. */
|
|
2907
2911
|
strikethroughData?: boolean | null;
|
|
2912
|
+
/** Data for a superscript decoration. Defaults to `true`. */
|
|
2913
|
+
superscriptData?: boolean | null;
|
|
2914
|
+
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2915
|
+
subscriptData?: boolean | null;
|
|
2908
2916
|
}
|
|
2909
2917
|
declare enum DecorationType {
|
|
2910
2918
|
BOLD = "BOLD",
|
|
@@ -2917,10 +2925,12 @@ declare enum DecorationType {
|
|
|
2917
2925
|
COLOR = "COLOR",
|
|
2918
2926
|
FONT_SIZE = "FONT_SIZE",
|
|
2919
2927
|
EXTERNAL = "EXTERNAL",
|
|
2920
|
-
STRIKETHROUGH = "STRIKETHROUGH"
|
|
2928
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2929
|
+
SUPERSCRIPT = "SUPERSCRIPT",
|
|
2930
|
+
SUBSCRIPT = "SUBSCRIPT"
|
|
2921
2931
|
}
|
|
2922
2932
|
/** @enumType */
|
|
2923
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
|
|
2933
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
|
|
2924
2934
|
interface AnchorData {
|
|
2925
2935
|
/** The target node's ID. */
|
|
2926
2936
|
anchor?: string;
|
|
@@ -4097,13 +4107,11 @@ interface OptionChoiceNames {
|
|
|
4097
4107
|
/**
|
|
4098
4108
|
* Option name.
|
|
4099
4109
|
* @minLength 1
|
|
4100
|
-
* @maxLength 50
|
|
4101
4110
|
*/
|
|
4102
4111
|
optionName?: string;
|
|
4103
4112
|
/**
|
|
4104
4113
|
* Choice name.
|
|
4105
4114
|
* @minLength 1
|
|
4106
|
-
* @maxLength 50
|
|
4107
4115
|
*/
|
|
4108
4116
|
choiceName?: string;
|
|
4109
4117
|
/** Render type. */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
|
|
2
|
-
import { Q as QueryVariantsOptions, V as VariantsQueryBuilder, R as ReadOnlyVariantSearch, S as SearchVariantsOptions, a as SearchVariantsResponse } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-
|
|
3
|
-
export { eq as ActionEvent, aU as Aggregation, b5 as AggregationData, bC as AggregationDateHistogramAggregation, aV as AggregationKindOneOf, bF as AggregationNestedAggregation, bA as AggregationRangeAggregation, bo as AggregationResults, bp as AggregationResultsResultOneOf, bc as AggregationResultsScalarResult, bB as AggregationScalarAggregation, A as AggregationType, by as AggregationValueAggregation, bz as AggregationValueAggregationOptionsOneOf, y as Alignment, cO as AnchorData, cU as AppEmbedData, cV as AppEmbedDataAppDataOneOf, a1 as AppType, d7 as AudioData, aa as AvailabilityStatus, cE as Background, cF as BackgroundBackgroundOneOf, _ as BackgroundType, da as BlockquoteData, cW as BookingData, bU as Border, d5 as BorderColors, dE as Brand, dU as BreadCrumb, dT as BreadcrumbsInfo, d9 as BulletedListData, bT as ButtonData, db as CaptionData, d4 as CellStyle, a8 as ChoiceType, du as ChoicesSettings, c3 as CodeBlockData, d0 as CollapsibleListData, cP as ColorData, bV as Colors, bu as CommonAggregation, bv as CommonAggregationKindOneOf, q as CommonAggregationType, o as CommonScalarType, bI as CommonSearchDetails, C as CommonSortOrder, bt as CommonSorting, at as CommonVideoResolution, dy as ConnectedModifier, dC as ConnectedModifierChoice, dD as ConnectedModifierChoiceValueOneOf, dz as ConnectedModifierModifierSettingsOneOf, ds as ConnectedOption, dv as ConnectedOptionChoice, dw as ConnectedOptionChoiceValueOneOf, dt as ConnectedOptionOptionSettingsOneOf, E as Crop, aN as CursorPaging, aP as CursorPagingMetadata, aK as CursorQuery, aL as CursorQueryPagingMethodOneOf, aS as CursorSearch, aT as CursorSearchPagingMethodOneOf, aQ as Cursors, b0 as DateHistogramAggregation, D as DateHistogramAggregationInterval, bk as DateHistogramResult, bm as DateHistogramResults, cM as Decoration, cN as DecorationDataOneOf, $ as DecorationType, bq as DeprecatedSearchVariantsWithOffsetRequest, bK as DeprecatedSearchVariantsWithOffsetResponse, cK as Design, d2 as Dimensions, a3 as Direction, ag as DiscountType, c5 as DividerData, de as DocumentStyle, ek as DomainEvent, el as DomainEventBodyOneOf, c_ as EmbedData, er as Empty, em as EntityCreatedEvent, ep as EntityDeletedEvent, eo as EntityUpdatedEvent, cX as EventData, e9 as ExtendedFields, c6 as FileData, c7 as FileSource, c8 as FileSourceDataOneOf, ae as FileType, dL as FixedMonetaryAmount, cS as FontSizeData, a0 as FontType, dA as FreeTextSettings, cl as GIF, ck as GIFData, G as GIFType, ca as GalleryData, cg as GalleryOptions, cD as Gradient, bG as GroupByAggregation, bH as GroupByAggregationKindOneOf, bl as GroupByValueResults, cn as HTMLData, co as HTMLDataDataOneOf, cm as HeadingData, b_ as Height, et as IdentificationData, eu as IdentificationDataIdOneOf, cc as Image, cp as ImageData, cr as ImageDataStyles, aX as IncludeMissingValuesOptions, dF as InfoSection, a2 as InitialExpandedItems, aI as InternalMetadata, I as InternalRowState, j as Interval, dM as Inventory, e8 as InventoryStatus, ce as Item, cf as ItemDataOneOf, ci as ItemStyle, dp as Keyword, ch as Layout, dc as LayoutCellData, B as LayoutType, L as LineStyle, c0 as Link, cQ as LinkData, c1 as LinkDataOneOf, cs as LinkPreviewData, ct as LinkPreviewDataStyles, d6 as ListValue, cu as MapData, cv as MapSettings, K as MapType, M as MeasurementUnit, dg as Media, dm as MediaItemsInfo, a6 as MediaType, cR as MentionData, es as MessageEnvelope, dd as Metadata, bM as MigrateProductVariantsRequest, eh as MigrateProductVariantsResponse, eg as MinVariantPriceInfo, h as MissingValues, k as Mode, dB as ModifierChoicesSettings, a9 as ModifierRenderType, dx as MultipleColors, b3 as NestedAggregation, b1 as NestedAggregationItem, b2 as NestedAggregationItemKindOneOf, bD as NestedAggregationNestedAggregationItem, bE as NestedAggregationNestedAggregationItemKindOneOf, p as NestedAggregationNestedAggregationType, b8 as NestedAggregationResults, b9 as NestedAggregationResultsResultOneOf, N as NestedAggregationType, bh as NestedResultValue, bi as NestedResultValueResultOneOf, bn as NestedResults, bd as NestedValueAggregationResult, bQ as Node, bR as NodeDataOneOf, bS as NodeStyle, s as NodeType, a5 as NullValue, c$ as Oembed, cz as Option, dY as OptionChoice, dZ as OptionChoiceIds, d_ as OptionChoiceNames, cH as OptionDesign, cC as OptionLayout, d8 as OrderedListData, O as Orientation, c9 as PDFSettings, bL as PagingMetadata, cw as ParagraphData, cy as Permissions, dN as PhysicalProperties, br as PlatformOffsetSearch, bs as PlatformOffsetSearchPagingMethodOneOf, bJ as PlatformPaging, cZ as PlaybackOptions, bW as PluginContainerData, u as PluginContainerDataAlignment, bX as PluginContainerDataWidth, bY as PluginContainerDataWidthDataOneOf, cI as Poll, cx as PollData, cJ as PollDataLayout, cG as PollDesign, cB as PollLayout, Z as PollLayoutDirection, Y as PollLayoutType, cA as PollSettings, J as Position, ab as PreorderStatus, d$ as PriceInfo, e2 as PricePerUnit, dQ as PricePerUnitRange, dR as PricePerUnitRangePricePerUnit, dO as PricePerUnitSettings, dK as PriceRange, bN as Product, dH as ProductCategoriesInfo, dI as ProductCategory, dJ as ProductCategoryIdsInfo, aE as ProductFields, aF as ProductFieldsTypedPropertiesOneOf, dh as ProductMedia, dj as ProductMediaMediaOneOf, P as ProductMediaMediaType, di as ProductMediaSetByOneOf, a7 as ProductOptionRenderType, ac as ProductPreorderAvailability, ad as ProductType, bO as ProductTypedPropertiesOneOf, aJ as QueryVariantsRequest, aO as QueryVariantsResponse, a_ as RangeAggregation, bw as RangeAggregationRangeBucket, b7 as RangeAggregationResult, aW as RangeBucket, bf as RangeResult, bb as RangeResults, ai as ReadOnlyVariant, ew as ReadOnlyVariantSearchSpec, aj as ReadOnlyVariantTypedPropertiesOneOf, ei as RecoverProductVariantsRequest, ej as RecoverProductVariantsResponse, c2 as Rel, e as RequestedFields, en as RestoreInfo, bj as Results, e0 as RevenueDetails, dG as Ribbon, bP as RichContent, a$ as ScalarAggregation, bg as ScalarResult, i as ScalarType, b4 as SearchDetails, r as SearchDetailsMode, aR as SearchVariantsRequest, e4 as SecuredMedia, b as SecuredMediaFileType, dn as SeoSchema, dr as Settings, g as SortDirection, d as SortOrder, f as SortType, aM as Sorting, H as Source, bZ as Spoiler, cT as SpoilerData, b$ as Styles, cq as StylesBorder, eb as Subscription, ec as SubscriptionCyclesOneOf, ea as SubscriptionDetails, ed as SubscriptionDiscount, ee as SubscriptionDiscountDiscountOneOf, af as SubscriptionFrequency, e6 as SubscriptionPrice, e7 as SubscriptionPricePerUnit, e5 as SubscriptionPricesInfo, d3 as TableCellData, d1 as TableData, dq as Tag, v as Target, w as TextAlignment, cL as TextData, df as TextNodeStyle, c4 as TextStyle, dl as Thumbnail, cj as Thumbnails, F as ThumbnailsAlignment, T as Type, cb as V1Media, ao as V3FixedMonetaryAmount, aD as V3InventoryStatus, ak as V3OptionChoice, al as V3OptionChoiceIds, am as V3OptionChoiceNames, aG as V3PhysicalProperties, an as V3PriceInfo, aw as V3PricePerUnit, ax as V3PricePerUnitSettings, aq as V3ProductMedia, as as V3ProductMediaMediaOneOf, ar as V3ProductMediaSetByOneOf, c as V3ProductType, ap as V3RevenueDetails, az as V3SecuredMedia, aB as V3SubscriptionPrice, aC as V3SubscriptionPricePerUnit, aA as V3SubscriptionPricesInfo, au as V3Thumbnail, ay as V3VariantDigitalProperties, av as V3VariantPhysicalProperties, aH as V3WeightMeasurementUnitInfo, aY as ValueAggregation, bx as ValueAggregationIncludeMissingValuesOptions, n as ValueAggregationMissingValues, aZ as ValueAggregationOptionsOneOf, b6 as ValueAggregationResult, m as ValueAggregationSortDirection, l as ValueAggregationSortType, be as ValueResult, ba as ValueResults, dW as Variant, e3 as VariantDigitalProperties, e1 as VariantPhysicalProperties, ef as VariantSummary, dX as VariantTypedPropertiesOneOf, dV as VariantsInfo, ev as VariantsQueryResult, a4 as VerticalAlignment, cd as Video, cY as VideoData, dk as VideoResolution, z as ViewMode, U as ViewRole, X as VoteRole, ah as WebhookIdentityType, dS as WeightMeasurementUnitInfo, dP as WeightRange, W as WeightUnit, x as Width, t as WidthType } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-
|
|
2
|
+
import { Q as QueryVariantsOptions, V as VariantsQueryBuilder, R as ReadOnlyVariantSearch, S as SearchVariantsOptions, a as SearchVariantsResponse } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DziyR5eD.mjs';
|
|
3
|
+
export { eq as ActionEvent, aU as Aggregation, b5 as AggregationData, bC as AggregationDateHistogramAggregation, aV as AggregationKindOneOf, bF as AggregationNestedAggregation, bA as AggregationRangeAggregation, bo as AggregationResults, bp as AggregationResultsResultOneOf, bc as AggregationResultsScalarResult, bB as AggregationScalarAggregation, A as AggregationType, by as AggregationValueAggregation, bz as AggregationValueAggregationOptionsOneOf, y as Alignment, cO as AnchorData, cU as AppEmbedData, cV as AppEmbedDataAppDataOneOf, a1 as AppType, d7 as AudioData, aa as AvailabilityStatus, cE as Background, cF as BackgroundBackgroundOneOf, _ as BackgroundType, da as BlockquoteData, cW as BookingData, bU as Border, d5 as BorderColors, dE as Brand, dU as BreadCrumb, dT as BreadcrumbsInfo, d9 as BulletedListData, bT as ButtonData, db as CaptionData, d4 as CellStyle, a8 as ChoiceType, du as ChoicesSettings, c3 as CodeBlockData, d0 as CollapsibleListData, cP as ColorData, bV as Colors, bu as CommonAggregation, bv as CommonAggregationKindOneOf, q as CommonAggregationType, o as CommonScalarType, bI as CommonSearchDetails, C as CommonSortOrder, bt as CommonSorting, at as CommonVideoResolution, dy as ConnectedModifier, dC as ConnectedModifierChoice, dD as ConnectedModifierChoiceValueOneOf, dz as ConnectedModifierModifierSettingsOneOf, ds as ConnectedOption, dv as ConnectedOptionChoice, dw as ConnectedOptionChoiceValueOneOf, dt as ConnectedOptionOptionSettingsOneOf, E as Crop, aN as CursorPaging, aP as CursorPagingMetadata, aK as CursorQuery, aL as CursorQueryPagingMethodOneOf, aS as CursorSearch, aT as CursorSearchPagingMethodOneOf, aQ as Cursors, b0 as DateHistogramAggregation, D as DateHistogramAggregationInterval, bk as DateHistogramResult, bm as DateHistogramResults, cM as Decoration, cN as DecorationDataOneOf, $ as DecorationType, bq as DeprecatedSearchVariantsWithOffsetRequest, bK as DeprecatedSearchVariantsWithOffsetResponse, cK as Design, d2 as Dimensions, a3 as Direction, ag as DiscountType, c5 as DividerData, de as DocumentStyle, ek as DomainEvent, el as DomainEventBodyOneOf, c_ as EmbedData, er as Empty, em as EntityCreatedEvent, ep as EntityDeletedEvent, eo as EntityUpdatedEvent, cX as EventData, e9 as ExtendedFields, c6 as FileData, c7 as FileSource, c8 as FileSourceDataOneOf, ae as FileType, dL as FixedMonetaryAmount, cS as FontSizeData, a0 as FontType, dA as FreeTextSettings, cl as GIF, ck as GIFData, G as GIFType, ca as GalleryData, cg as GalleryOptions, cD as Gradient, bG as GroupByAggregation, bH as GroupByAggregationKindOneOf, bl as GroupByValueResults, cn as HTMLData, co as HTMLDataDataOneOf, cm as HeadingData, b_ as Height, et as IdentificationData, eu as IdentificationDataIdOneOf, cc as Image, cp as ImageData, cr as ImageDataStyles, aX as IncludeMissingValuesOptions, dF as InfoSection, a2 as InitialExpandedItems, aI as InternalMetadata, I as InternalRowState, j as Interval, dM as Inventory, e8 as InventoryStatus, ce as Item, cf as ItemDataOneOf, ci as ItemStyle, dp as Keyword, ch as Layout, dc as LayoutCellData, B as LayoutType, L as LineStyle, c0 as Link, cQ as LinkData, c1 as LinkDataOneOf, cs as LinkPreviewData, ct as LinkPreviewDataStyles, d6 as ListValue, cu as MapData, cv as MapSettings, K as MapType, M as MeasurementUnit, dg as Media, dm as MediaItemsInfo, a6 as MediaType, cR as MentionData, es as MessageEnvelope, dd as Metadata, bM as MigrateProductVariantsRequest, eh as MigrateProductVariantsResponse, eg as MinVariantPriceInfo, h as MissingValues, k as Mode, dB as ModifierChoicesSettings, a9 as ModifierRenderType, dx as MultipleColors, b3 as NestedAggregation, b1 as NestedAggregationItem, b2 as NestedAggregationItemKindOneOf, bD as NestedAggregationNestedAggregationItem, bE as NestedAggregationNestedAggregationItemKindOneOf, p as NestedAggregationNestedAggregationType, b8 as NestedAggregationResults, b9 as NestedAggregationResultsResultOneOf, N as NestedAggregationType, bh as NestedResultValue, bi as NestedResultValueResultOneOf, bn as NestedResults, bd as NestedValueAggregationResult, bQ as Node, bR as NodeDataOneOf, bS as NodeStyle, s as NodeType, a5 as NullValue, c$ as Oembed, cz as Option, dY as OptionChoice, dZ as OptionChoiceIds, d_ as OptionChoiceNames, cH as OptionDesign, cC as OptionLayout, d8 as OrderedListData, O as Orientation, c9 as PDFSettings, bL as PagingMetadata, cw as ParagraphData, cy as Permissions, dN as PhysicalProperties, br as PlatformOffsetSearch, bs as PlatformOffsetSearchPagingMethodOneOf, bJ as PlatformPaging, cZ as PlaybackOptions, bW as PluginContainerData, u as PluginContainerDataAlignment, bX as PluginContainerDataWidth, bY as PluginContainerDataWidthDataOneOf, cI as Poll, cx as PollData, cJ as PollDataLayout, cG as PollDesign, cB as PollLayout, Z as PollLayoutDirection, Y as PollLayoutType, cA as PollSettings, J as Position, ab as PreorderStatus, d$ as PriceInfo, e2 as PricePerUnit, dQ as PricePerUnitRange, dR as PricePerUnitRangePricePerUnit, dO as PricePerUnitSettings, dK as PriceRange, bN as Product, dH as ProductCategoriesInfo, dI as ProductCategory, dJ as ProductCategoryIdsInfo, aE as ProductFields, aF as ProductFieldsTypedPropertiesOneOf, dh as ProductMedia, dj as ProductMediaMediaOneOf, P as ProductMediaMediaType, di as ProductMediaSetByOneOf, a7 as ProductOptionRenderType, ac as ProductPreorderAvailability, ad as ProductType, bO as ProductTypedPropertiesOneOf, aJ as QueryVariantsRequest, aO as QueryVariantsResponse, a_ as RangeAggregation, bw as RangeAggregationRangeBucket, b7 as RangeAggregationResult, aW as RangeBucket, bf as RangeResult, bb as RangeResults, ai as ReadOnlyVariant, ew as ReadOnlyVariantSearchSpec, aj as ReadOnlyVariantTypedPropertiesOneOf, ei as RecoverProductVariantsRequest, ej as RecoverProductVariantsResponse, c2 as Rel, e as RequestedFields, en as RestoreInfo, bj as Results, e0 as RevenueDetails, dG as Ribbon, bP as RichContent, a$ as ScalarAggregation, bg as ScalarResult, i as ScalarType, b4 as SearchDetails, r as SearchDetailsMode, aR as SearchVariantsRequest, e4 as SecuredMedia, b as SecuredMediaFileType, dn as SeoSchema, dr as Settings, g as SortDirection, d as SortOrder, f as SortType, aM as Sorting, H as Source, bZ as Spoiler, cT as SpoilerData, b$ as Styles, cq as StylesBorder, eb as Subscription, ec as SubscriptionCyclesOneOf, ea as SubscriptionDetails, ed as SubscriptionDiscount, ee as SubscriptionDiscountDiscountOneOf, af as SubscriptionFrequency, e6 as SubscriptionPrice, e7 as SubscriptionPricePerUnit, e5 as SubscriptionPricesInfo, d3 as TableCellData, d1 as TableData, dq as Tag, v as Target, w as TextAlignment, cL as TextData, df as TextNodeStyle, c4 as TextStyle, dl as Thumbnail, cj as Thumbnails, F as ThumbnailsAlignment, T as Type, cb as V1Media, ao as V3FixedMonetaryAmount, aD as V3InventoryStatus, ak as V3OptionChoice, al as V3OptionChoiceIds, am as V3OptionChoiceNames, aG as V3PhysicalProperties, an as V3PriceInfo, aw as V3PricePerUnit, ax as V3PricePerUnitSettings, aq as V3ProductMedia, as as V3ProductMediaMediaOneOf, ar as V3ProductMediaSetByOneOf, c as V3ProductType, ap as V3RevenueDetails, az as V3SecuredMedia, aB as V3SubscriptionPrice, aC as V3SubscriptionPricePerUnit, aA as V3SubscriptionPricesInfo, au as V3Thumbnail, ay as V3VariantDigitalProperties, av as V3VariantPhysicalProperties, aH as V3WeightMeasurementUnitInfo, aY as ValueAggregation, bx as ValueAggregationIncludeMissingValuesOptions, n as ValueAggregationMissingValues, aZ as ValueAggregationOptionsOneOf, b6 as ValueAggregationResult, m as ValueAggregationSortDirection, l as ValueAggregationSortType, be as ValueResult, ba as ValueResults, dW as Variant, e3 as VariantDigitalProperties, e1 as VariantPhysicalProperties, ef as VariantSummary, dX as VariantTypedPropertiesOneOf, dV as VariantsInfo, ev as VariantsQueryResult, a4 as VerticalAlignment, cd as Video, cY as VideoData, dk as VideoResolution, z as ViewMode, U as ViewRole, X as VoteRole, ah as WebhookIdentityType, dS as WeightMeasurementUnitInfo, dP as WeightRange, W as WeightUnit, x as Width, t as WidthType } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DziyR5eD.mjs';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function queryVariants$1(httpClient: HttpClient): QueryVariantsSignature;
|
|
@@ -19,6 +19,16 @@ function resolveComWixStoresCatalogProductVariantsReaderApiV3ProductVariantsRead
|
|
|
19
19
|
srcPath: "/product-variants-reader",
|
|
20
20
|
destPath: ""
|
|
21
21
|
}
|
|
22
|
+
],
|
|
23
|
+
"www.wixapis.com": [
|
|
24
|
+
{
|
|
25
|
+
srcPath: "/stores/v3/products/query-variants",
|
|
26
|
+
destPath: "/v3/products/query-variants"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
srcPath: "/stores/v3/products/search-variants",
|
|
30
|
+
destPath: "/v3/products/search-variants"
|
|
31
|
+
}
|
|
22
32
|
]
|
|
23
33
|
};
|
|
24
34
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -525,6 +535,8 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
525
535
|
DecorationType2["FONT_SIZE"] = "FONT_SIZE";
|
|
526
536
|
DecorationType2["EXTERNAL"] = "EXTERNAL";
|
|
527
537
|
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
538
|
+
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
539
|
+
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
528
540
|
return DecorationType2;
|
|
529
541
|
})(DecorationType || {});
|
|
530
542
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|