@wix/auto_sdk_stores_read-only-variants-v-3 1.0.49 → 1.0.50
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.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +27 -18
- package/build/cjs/meta.js.map +1 -1
- package/build/{internal/cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-D0gGexcp.d.ts → cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DDymOH93.d.ts} +26 -36
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +27 -18
- package/build/es/meta.mjs.map +1 -1
- package/build/{internal/es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-D0gGexcp.d.mts → es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DDymOH93.d.mts} +26 -36
- package/build/internal/cjs/index.d.ts +2 -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.map +1 -1
- package/build/internal/cjs/meta.d.ts +27 -18
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/{cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Ca7Lx1yV.d.ts → internal/cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DxKHqgOx.d.ts} +45 -17
- package/build/internal/es/index.d.mts +2 -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.map +1 -1
- package/build/internal/es/meta.d.mts +27 -18
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/{es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Ca7Lx1yV.d.mts → internal/es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DxKHqgOx.d.mts} +45 -17
- package/package.json +2 -2
|
@@ -1750,7 +1750,7 @@ interface Product extends ProductTypedPropertiesOneOf {
|
|
|
1750
1750
|
* > **Note:** Always `false` for `productType: DIGITAL`.
|
|
1751
1751
|
*/
|
|
1752
1752
|
visibleInPos?: boolean | null;
|
|
1753
|
-
/** Product media items. */
|
|
1753
|
+
/** Product media items. For a detailed explanation of product media, see [About Product Media](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/products-v3/about-product-media). */
|
|
1754
1754
|
media?: Media;
|
|
1755
1755
|
/** Product SEO data. */
|
|
1756
1756
|
seoData?: SeoSchema;
|
|
@@ -1760,18 +1760,20 @@ interface Product extends ProductTypedPropertiesOneOf {
|
|
|
1760
1760
|
*/
|
|
1761
1761
|
taxGroupId?: string | null;
|
|
1762
1762
|
/**
|
|
1763
|
-
* Product options
|
|
1763
|
+
* Product options, such as "Size" or "Color". Options define the ways a product can vary.
|
|
1764
1764
|
*
|
|
1765
|
-
* When you provide options, you must also provide the corresponding variants. Each variant must have exactly one choice for each option.
|
|
1766
|
-
*
|
|
1765
|
+
* When you provide options, you must also provide the corresponding variants. Each variant must have exactly one choice for each option. For more information, see [About Product Options and Variants](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/about-options-and-variants).
|
|
1766
|
+
*
|
|
1767
|
+
* Options are stored as reusable [customization](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/customizations-v3/introduction) entities. Pass an existing customization's ID to reuse it, or define options inline and new customization entities are created automatically.
|
|
1767
1768
|
* @maxSize 6
|
|
1768
1769
|
*/
|
|
1769
1770
|
options?: ConnectedOption[];
|
|
1770
1771
|
/**
|
|
1771
1772
|
* Product modifiers. Collect additional information from customers without creating variants.
|
|
1772
1773
|
*
|
|
1773
|
-
* Unlike options, modifiers don't affect inventory or create additional variants. Use them for
|
|
1774
|
-
*
|
|
1774
|
+
* Unlike options, modifiers don't affect inventory or create additional variants. Use them for things like gift messages or engraving text. For more information, see [About Product Options and Variants](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/about-options-and-variants).
|
|
1775
|
+
*
|
|
1776
|
+
* Modifiers are stored as reusable [customization](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/customizations-v3/introduction) entities. Pass an existing customization's ID to reuse it, or define modifiers inline and new customization entities are created automatically.
|
|
1775
1777
|
* @maxSize 10
|
|
1776
1778
|
*/
|
|
1777
1779
|
modifiers?: ConnectedModifier[];
|
|
@@ -1848,12 +1850,6 @@ interface Product extends ProductTypedPropertiesOneOf {
|
|
|
1848
1850
|
* @readonly
|
|
1849
1851
|
*/
|
|
1850
1852
|
handle?: string | null;
|
|
1851
|
-
/**
|
|
1852
|
-
* ID of the last import job that affected the product.
|
|
1853
|
-
* @internal
|
|
1854
|
-
* @format GUID
|
|
1855
|
-
*/
|
|
1856
|
-
importId?: string | null;
|
|
1857
1853
|
/**
|
|
1858
1854
|
* Currency used for the pricing of this product, in [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes) format.
|
|
1859
1855
|
*
|
|
@@ -1880,14 +1876,12 @@ interface Product extends ProductTypedPropertiesOneOf {
|
|
|
1880
1876
|
*/
|
|
1881
1877
|
compareAtPriceRange?: PriceRange;
|
|
1882
1878
|
/**
|
|
1883
|
-
*
|
|
1884
|
-
*
|
|
1885
|
-
*
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
* Product variants. Each variant must reference all product options via its `choices` array.
|
|
1890
|
-
* Each choice references an option using `optionChoiceNames` for all requests.
|
|
1879
|
+
* Product variants. Each variant represents a specific purchasable version of a product defined by option choices.
|
|
1880
|
+
*
|
|
1881
|
+
* Each variant must reference all product options via its `choices` array, using `optionChoiceNames` in requests.
|
|
1882
|
+
* You must explicitly provide each variant when creating products with options.
|
|
1883
|
+
*
|
|
1884
|
+
* For more information, see [About Product Options and Variants](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/about-options-and-variants).
|
|
1891
1885
|
*/
|
|
1892
1886
|
variantsInfo?: VariantsInfo;
|
|
1893
1887
|
/**
|
|
@@ -3825,12 +3819,12 @@ interface ProductMedia extends ProductMediaSetByOneOf, ProductMediaMediaOneOf {
|
|
|
3825
3819
|
*/
|
|
3826
3820
|
url?: string;
|
|
3827
3821
|
/**
|
|
3828
|
-
*
|
|
3822
|
+
* Image details. Populated when you provide a [Wix Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager) file ID in `set_by`.
|
|
3829
3823
|
* @readonly
|
|
3830
3824
|
*/
|
|
3831
3825
|
image?: string;
|
|
3832
3826
|
/**
|
|
3833
|
-
*
|
|
3827
|
+
* Video details. Populated when you provide a Wix Media Manager file ID in `set_by`.
|
|
3834
3828
|
* @readonly
|
|
3835
3829
|
*/
|
|
3836
3830
|
video?: string;
|
|
@@ -3842,7 +3836,8 @@ interface ProductMedia extends ProductMediaSetByOneOf, ProductMediaMediaOneOf {
|
|
|
3842
3836
|
altText?: string | null;
|
|
3843
3837
|
/**
|
|
3844
3838
|
* Media display name.
|
|
3845
|
-
*
|
|
3839
|
+
*
|
|
3840
|
+
* Overrides the default media name. Can be passed only when the media is set by a URL in `setBy``.
|
|
3846
3841
|
* @maxLength 80
|
|
3847
3842
|
*/
|
|
3848
3843
|
displayName?: string | null;
|
|
@@ -3880,12 +3875,12 @@ interface ProductMediaSetByOneOf {
|
|
|
3880
3875
|
/** @oneof */
|
|
3881
3876
|
interface ProductMediaMediaOneOf {
|
|
3882
3877
|
/**
|
|
3883
|
-
*
|
|
3878
|
+
* Image details. Populated when you provide a [Wix Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager) file ID in `set_by`.
|
|
3884
3879
|
* @readonly
|
|
3885
3880
|
*/
|
|
3886
3881
|
image?: string;
|
|
3887
3882
|
/**
|
|
3888
|
-
*
|
|
3883
|
+
* Video details. Populated when you provide a Wix Media Manager file ID in `set_by`.
|
|
3889
3884
|
* @readonly
|
|
3890
3885
|
*/
|
|
3891
3886
|
video?: string;
|
|
@@ -3934,7 +3929,9 @@ interface Thumbnail {
|
|
|
3934
3929
|
}
|
|
3935
3930
|
interface MediaItemsInfo {
|
|
3936
3931
|
/**
|
|
3937
|
-
* All media items
|
|
3932
|
+
* All media items associated with this product.
|
|
3933
|
+
*
|
|
3934
|
+
* The first item in the array is automatically set as the product's main media.
|
|
3938
3935
|
* @maxSize 15
|
|
3939
3936
|
*/
|
|
3940
3937
|
items?: ProductMedia[];
|
|
@@ -4557,9 +4554,9 @@ interface Variant extends VariantTypedPropertiesOneOf {
|
|
|
4557
4554
|
/**
|
|
4558
4555
|
* List of choices that define this variant. Each variant must have exactly one choice for each product option.
|
|
4559
4556
|
*
|
|
4560
|
-
*
|
|
4557
|
+
* Use `optionChoiceNames` in all requests where this field is required. For products without options, this array is empty, representing a single "default variant".
|
|
4561
4558
|
*
|
|
4562
|
-
* For
|
|
4559
|
+
* For more information, see [About Product Options and Variants](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/about-options-and-variants).
|
|
4563
4560
|
* @maxSize 6
|
|
4564
4561
|
* @immutable
|
|
4565
4562
|
*/
|
|
@@ -4634,7 +4631,7 @@ interface OptionChoiceNames {
|
|
|
4634
4631
|
* @minLength 1
|
|
4635
4632
|
*/
|
|
4636
4633
|
choiceName?: string;
|
|
4637
|
-
/** Render type. */
|
|
4634
|
+
/** Render type of the option. Required when using `optionChoiceNames`. Must match the `optionRenderType` of the referenced option. */
|
|
4638
4635
|
renderType?: ProductOptionRenderTypeWithLiterals;
|
|
4639
4636
|
}
|
|
4640
4637
|
interface PriceInfo {
|
|
@@ -4816,13 +4813,6 @@ interface SubscriptionDetails {
|
|
|
4816
4813
|
* Default: `false`
|
|
4817
4814
|
*/
|
|
4818
4815
|
allowOneTimePurchases?: boolean | null;
|
|
4819
|
-
/**
|
|
4820
|
-
* Whether to add a 'Cancel subscription' button to the My Subscriptions tab of the [Members Area page](https://support.wix.com/en/article/site-members-about-the-members-area).
|
|
4821
|
-
*
|
|
4822
|
-
* Default: `false`
|
|
4823
|
-
* @internal
|
|
4824
|
-
*/
|
|
4825
|
-
enableCustomerCancellation?: boolean | null;
|
|
4826
4816
|
}
|
|
4827
4817
|
interface Subscription extends SubscriptionCyclesOneOf {
|
|
4828
4818
|
/** Whether subscription is renewed automatically at the end of each period. Cannot be `false`, instead set `billingCycles`. */
|
package/build/es/index.d.mts
CHANGED
|
@@ -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, 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-
|
|
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-Ca7Lx1yV.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-DDymOH93.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-DDymOH93.mjs';
|
|
4
4
|
|
|
5
5
|
declare function searchVariants$1(httpClient: HttpClient): SearchVariantsSignature;
|
|
6
6
|
interface SearchVariantsSignature {
|