@wix/auto_sdk_stores_read-only-variants-v-3 1.0.43 → 1.0.45
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 +8 -3
- package/build/cjs/index.js +7 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +8 -3
- package/build/cjs/index.typings.js +7 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +30 -8
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DCmK2i6O.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BNZPBN80.d.ts} +35 -7
- package/build/es/index.d.mts +8 -3
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -3
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +30 -8
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DCmK2i6O.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BNZPBN80.d.mts} +35 -7
- package/build/internal/cjs/index.d.ts +8 -3
- package/build/internal/cjs/index.js +7 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +8 -3
- package/build/internal/cjs/index.typings.js +7 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +30 -8
- package/build/internal/cjs/meta.js +7 -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-Rz7CJtzF.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DIjkz6cb.d.ts} +35 -7
- package/build/internal/es/index.d.mts +8 -3
- package/build/internal/es/index.mjs +6 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +8 -3
- package/build/internal/es/index.typings.mjs +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +30 -8
- package/build/internal/es/meta.mjs +6 -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-Rz7CJtzF.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DIjkz6cb.d.mts} +35 -7
- package/package.json +2 -2
|
@@ -1826,6 +1826,8 @@ interface Product extends ProductTypedPropertiesOneOf {
|
|
|
1826
1826
|
costRange?: PriceRange;
|
|
1827
1827
|
/**
|
|
1828
1828
|
* Product inventory info.
|
|
1829
|
+
*
|
|
1830
|
+
* > **Note:** This field reflects the aggregated inventory status from the default location only. Use the [Inventory Items API](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/inventory-items-v3/introduction) to manage inventory for specific locations.
|
|
1829
1831
|
* @readonly
|
|
1830
1832
|
*/
|
|
1831
1833
|
inventory?: Inventory;
|
|
@@ -1839,7 +1841,8 @@ interface Product extends ProductTypedPropertiesOneOf {
|
|
|
1839
1841
|
/**
|
|
1840
1842
|
* A unique human-friendly identifier for the product.
|
|
1841
1843
|
* Unlike the product ID, the handle can be set by the user to ensure consistency across multiple platforms.
|
|
1842
|
-
*
|
|
1844
|
+
* This is particularly useful when re-importing products from other systems, as it provides a stable identifier.
|
|
1845
|
+
* If no handle is provided, one is automatically generated.
|
|
1843
1846
|
* @minLength 1
|
|
1844
1847
|
* @maxLength 100
|
|
1845
1848
|
* @readonly
|
|
@@ -1878,10 +1881,14 @@ interface Product extends ProductTypedPropertiesOneOf {
|
|
|
1878
1881
|
/**
|
|
1879
1882
|
* Custom extended fields for the product object.
|
|
1880
1883
|
*
|
|
1881
|
-
* [Extended fields](https://dev.wix.com/docs/
|
|
1884
|
+
* [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.
|
|
1882
1885
|
*/
|
|
1883
1886
|
extendedFields?: ExtendedFields;
|
|
1884
|
-
/**
|
|
1887
|
+
/**
|
|
1888
|
+
* Product subscriptions.
|
|
1889
|
+
*
|
|
1890
|
+
* Subscription discounts are defined at the product level but apply to each variant's `actualPrice`. This means the final subscription price varies per variant based on the variant's base price.
|
|
1891
|
+
*/
|
|
1885
1892
|
subscriptionDetails?: SubscriptionDetails;
|
|
1886
1893
|
/**
|
|
1887
1894
|
* The total number of variants for the product.
|
|
@@ -3660,6 +3667,8 @@ interface LayoutData {
|
|
|
3660
3667
|
responsivenessBreakpoint?: number | null;
|
|
3661
3668
|
/** Styling for the layout's container. */
|
|
3662
3669
|
containerData?: PluginContainerData;
|
|
3670
|
+
/** Defines where selected design propertied applies to */
|
|
3671
|
+
designTarget?: DesignTargetWithLiterals;
|
|
3663
3672
|
}
|
|
3664
3673
|
declare enum Scaling {
|
|
3665
3674
|
/** Auto image scaling */
|
|
@@ -3721,6 +3730,14 @@ declare enum ResponsivenessBehaviour {
|
|
|
3721
3730
|
}
|
|
3722
3731
|
/** @enumType */
|
|
3723
3732
|
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
3733
|
+
declare enum DesignTarget {
|
|
3734
|
+
/** Design applied to layout */
|
|
3735
|
+
LAYOUT = "LAYOUT",
|
|
3736
|
+
/** Design applied to cells */
|
|
3737
|
+
CELL = "CELL"
|
|
3738
|
+
}
|
|
3739
|
+
/** @enumType */
|
|
3740
|
+
type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
3724
3741
|
interface LayoutCellData {
|
|
3725
3742
|
/** Size of the cell in 12 columns grid. */
|
|
3726
3743
|
colSpan?: number | null;
|
|
@@ -3773,6 +3790,7 @@ interface TextNodeStyle {
|
|
|
3773
3790
|
interface Media {
|
|
3774
3791
|
/**
|
|
3775
3792
|
* Main media (image, video, etc.) associated with this product.
|
|
3793
|
+
* Automatically set to the first item in the media list.
|
|
3776
3794
|
* @readonly
|
|
3777
3795
|
*/
|
|
3778
3796
|
main?: ProductMedia;
|
|
@@ -4278,7 +4296,7 @@ interface ProductCategory {
|
|
|
4278
4296
|
*/
|
|
4279
4297
|
_id?: string;
|
|
4280
4298
|
/**
|
|
4281
|
-
* Index location of the product within the category, which can be utilized for sorting products in a specific category. For detailed instructions on how to set this up, refer to the [Add and arrange products in category](https://dev.wix.com/docs/
|
|
4299
|
+
* Index location of the product within the category, which can be utilized for sorting products in a specific category. For detailed instructions on how to set this up, refer to the [Add and arrange products in category](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/products-v3/sample-use-cases-and-flows#add-and-arrange-products-in-category) sample flow.
|
|
4282
4300
|
* @max 200
|
|
4283
4301
|
*/
|
|
4284
4302
|
index?: number | null;
|
|
@@ -4527,7 +4545,8 @@ interface Variant extends VariantTypedPropertiesOneOf {
|
|
|
4527
4545
|
/**
|
|
4528
4546
|
* List of choices that define the product's variant, which requires exactly one choice per product option.
|
|
4529
4547
|
* Must use `optionChoiceNames` in all requests this field is required.
|
|
4530
|
-
*
|
|
4548
|
+
*
|
|
4549
|
+
* For products without options (simple products), this array is empty. These products have a single "default variant" that represents the product itself.
|
|
4531
4550
|
* @maxSize 6
|
|
4532
4551
|
* @immutable
|
|
4533
4552
|
*/
|
|
@@ -4663,7 +4682,10 @@ interface PricePerUnit {
|
|
|
4663
4682
|
description?: string | null;
|
|
4664
4683
|
}
|
|
4665
4684
|
interface VariantDigitalProperties {
|
|
4666
|
-
/**
|
|
4685
|
+
/**
|
|
4686
|
+
* Digital file which will be downloaded by the buyer after successful purchase.
|
|
4687
|
+
* Each variant can have a different digital file, allowing you to offer different content per variant.
|
|
4688
|
+
*/
|
|
4667
4689
|
digitalFile?: SecuredMedia;
|
|
4668
4690
|
}
|
|
4669
4691
|
interface SecuredMedia {
|
|
@@ -5091,6 +5113,12 @@ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYM
|
|
|
5091
5113
|
* For complex queries with free-text search and aggregations, use Search Variants instead.
|
|
5092
5114
|
*
|
|
5093
5115
|
* Up to 1,000 variants can be returned per request.
|
|
5116
|
+
*
|
|
5117
|
+
* To learn about working with _Query_ endpoints, see
|
|
5118
|
+
* [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language),
|
|
5119
|
+
* and [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging).
|
|
5120
|
+
*
|
|
5121
|
+
* Learn more about the differences between [_Query_ and _Search_](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-search-query-and-list-methods) methods.
|
|
5094
5122
|
* @public
|
|
5095
5123
|
* @permissionId WIX_STORES.READ_ONLY_VARIANT_READ
|
|
5096
5124
|
* @permissionId WIX_STORES.READ_ONLY_VARIANT_READ_HIDDEN
|
|
@@ -5403,4 +5431,4 @@ type ReadOnlyVariantSearch = {
|
|
|
5403
5431
|
timeZone?: CommonSearchWithEntityContext['timeZone'] | null;
|
|
5404
5432
|
};
|
|
5405
5433
|
|
|
5406
|
-
export { PollLayoutDirection as $, AggregationType as A, ButtonDataType as B, CommonSortOrder as C, DateHistogramAggregationInterval as D, ViewMode as E, LayoutType as F, Crop as G, ThumbnailsAlignment as H, InternalRowState as I, GIFType as J, Source as K, LineStyle as L, MeasurementUnit as M, NestedAggregationType as N, Orientation as O, ProductMediaMediaType as P, type QueryVariantsOptions as Q, type ReadOnlyVariantSearch as R, type SearchVariantsOptions as S, Target as T, StylesPosition as U, type VariantsQueryBuilder as V, WeightUnit as W, MapType as X, ViewRole as Y, VoteRole as Z, PollLayoutType as _, type SearchVariantsResponse as a, type QueryVariantsResponse as a$, BackgroundType as a0, DecorationType as a1, FontType as a2, Position as a3, AspectRatio as a4, Resizing as a5, Placement as a6, Type as a7, Alignment as a8, Layout as a9, type V3PriceInfo as aA, type V3FixedMonetaryAmount as aB, type V3RevenueDetails as aC, type V3ProductMedia as aD, type V3ProductMediaSetByOneOf as aE, type V3ProductMediaMediaOneOf as aF, type CommonVideoResolution as aG, type V3Thumbnail as aH, type V3VariantPhysicalProperties as aI, type V3PricePerUnit as aJ, type V3PricePerUnitSettings as aK, type V3VariantDigitalProperties as aL, type V3SecuredMedia as aM, type V3SubscriptionPricesInfo as aN, type V3SubscriptionPrice as aO, type V3SubscriptionPricePerUnit as aP, type V3InventoryStatus as aQ, type ProductFields as aR, type ProductFieldsTypedPropertiesOneOf as aS, type V3PhysicalProperties as aT, type V3WeightMeasurementUnitInfo as aU, type InternalMetadata as aV, type QueryVariantsRequest as aW, type CursorQuery as aX, type CursorQueryPagingMethodOneOf as aY, type Sorting as aZ, type CursorPaging as a_, AppType as aa, InitialExpandedItems as ab, Direction as ac, VerticalAlignment as ad, NullValue as ae, Scaling as af, ImagePosition as ag, VerticalAlignmentAlignment as ah, ResponsivenessBehaviour as ai, MediaType as aj, ProductOptionRenderType as ak, ChoiceType as al, ModifierRenderType as am, AvailabilityStatus as an, PreorderStatus as ao, ProductPreorderAvailability as ap, ProductType as aq, FileType as ar, SubscriptionFrequency as as, DiscountType as at, WebhookIdentityType as au, type ReadOnlyVariant as av, type ReadOnlyVariantTypedPropertiesOneOf as aw, type V3OptionChoice as ax, type V3OptionChoiceIds as ay, type V3OptionChoiceNames as az, type ReadOnlyVariantQuery as b, type ProductTypedPropertiesOneOf as b$, type CursorPagingMetadata as b0, type Cursors as b1, type SearchVariantsRequest as b2, type CursorSearch as b3, type CursorSearchPagingMethodOneOf as b4, type Aggregation as b5, type AggregationKindOneOf as b6, type RangeBucket as b7, type IncludeMissingValuesOptions as b8, type ValueAggregation as b9, type NestedResults as bA, type AggregationResults as bB, type AggregationResultsResultOneOf as bC, type DeprecatedSearchVariantsWithOffsetRequest as bD, type PlatformOffsetSearch as bE, type PlatformOffsetSearchPagingMethodOneOf as bF, type CommonSorting as bG, type CommonAggregation as bH, type CommonAggregationKindOneOf as bI, type RangeAggregationRangeBucket as bJ, type ValueAggregationIncludeMissingValuesOptions as bK, type AggregationValueAggregation as bL, type AggregationValueAggregationOptionsOneOf as bM, type AggregationRangeAggregation as bN, type AggregationScalarAggregation as bO, type AggregationDateHistogramAggregation as bP, type NestedAggregationNestedAggregationItem as bQ, type NestedAggregationNestedAggregationItemKindOneOf as bR, type AggregationNestedAggregation as bS, type GroupByAggregation as bT, type GroupByAggregationKindOneOf as bU, type CommonSearchDetails as bV, type PlatformPaging as bW, type DeprecatedSearchVariantsWithOffsetResponse as bX, type PagingMetadata as bY, type MigrateProductVariantsRequest as bZ, type Product as b_, type ValueAggregationOptionsOneOf as ba, type RangeAggregation as bb, type ScalarAggregation as bc, type DateHistogramAggregation as bd, type NestedAggregationItem as be, type NestedAggregationItemKindOneOf as bf, type NestedAggregation as bg, type SearchDetails as bh, type AggregationData as bi, type ValueAggregationResult as bj, type RangeAggregationResult as bk, type NestedAggregationResults as bl, type NestedAggregationResultsResultOneOf as bm, type ValueResults as bn, type RangeResults as bo, type AggregationResultsScalarResult as bp, type NestedValueAggregationResult as bq, type ValueResult as br, type RangeResult as bs, type ScalarResult as bt, type NestedResultValue as bu, type NestedResultValueResultOneOf as bv, type Results as bw, type DateHistogramResult as bx, type GroupByValueResults as by, type DateHistogramResults as bz, SecuredMediaFileType as c, type AnchorData as c$, type RichContent as c0, type Node as c1, type NodeDataOneOf as c2, type NodeStyle as c3, type ButtonData as c4, type Border as c5, type Colors as c6, type PluginContainerData as c7, type PluginContainerDataWidth as c8, type PluginContainerDataWidthDataOneOf as c9, type HTMLData as cA, type HTMLDataDataOneOf as cB, type ImageData as cC, type StylesBorder as cD, type ImageDataStyles as cE, type LinkPreviewData as cF, type LinkPreviewDataStyles as cG, type MapData as cH, type MapSettings as cI, type ParagraphData as cJ, type PollData as cK, type Permissions as cL, type Option as cM, type PollSettings as cN, type PollLayout as cO, type OptionLayout as cP, type Gradient as cQ, type Background as cR, type BackgroundBackgroundOneOf as cS, type PollDesign as cT, type OptionDesign as cU, type Poll as cV, type PollDataLayout as cW, type Design as cX, type TextData as cY, type Decoration as cZ, type DecorationDataOneOf as c_, type Spoiler as ca, type Height as cb, type Styles as cc, type Link as cd, type LinkDataOneOf as ce, type Rel as cf, type CodeBlockData as cg, type TextStyle as ch, type DividerData as ci, type FileData as cj, type FileSource as ck, type FileSourceDataOneOf as cl, type PDFSettings as cm, type GalleryData as cn, type V1Media as co, type Image as cp, type Video as cq, type Item as cr, type ItemDataOneOf as cs, type GalleryOptions as ct, type GalleryOptionsLayout as cu, type ItemStyle as cv, type Thumbnails as cw, type GIFData as cx, type GIF as cy, type HeadingData as cz, V3ProductType as d, type InfoSection as d$, type ColorData as d0, type LinkData as d1, type MentionData as d2, type FontSizeData as d3, type SpoilerData as d4, type FontFamilyData as d5, type AppEmbedData as d6, type AppEmbedDataAppDataOneOf as d7, type BookingData as d8, type EventData as d9, type Metadata as dA, type DocumentStyle as dB, type TextNodeStyle as dC, type Media as dD, type ProductMedia as dE, type ProductMediaSetByOneOf as dF, type ProductMediaMediaOneOf as dG, type VideoResolution as dH, type Thumbnail as dI, type MediaItemsInfo as dJ, type SeoSchema as dK, type Keyword as dL, type Tag as dM, type Settings as dN, type ConnectedOption as dO, type ConnectedOptionOptionSettingsOneOf as dP, type ChoicesSettings as dQ, type ConnectedOptionChoice as dR, type ConnectedOptionChoiceValueOneOf as dS, type MultipleColors as dT, type ConnectedModifier as dU, type ConnectedModifierModifierSettingsOneOf as dV, type FreeTextSettings as dW, type ModifierChoicesSettings as dX, type ConnectedModifierChoice as dY, type ConnectedModifierChoiceValueOneOf as dZ, type Brand as d_, type ButtonStyles as da, type ImageStyles as db, type RibbonStyles as dc, type CardStyles as dd, type PricingData as de, type VideoData as df, type PlaybackOptions as dg, type EmbedData as dh, type Oembed as di, type CollapsibleListData as dj, type TableData as dk, type Dimensions as dl, type TableCellData as dm, type CellStyle as dn, type BorderColors as dp, type BorderWidths as dq, type ListValue as dr, type AudioData as ds, type OrderedListData as dt, type BulletedListData as du, type BlockquoteData as dv, type CaptionData as dw, type LayoutData as dx, type BackgroundImage as dy, type LayoutCellData as dz, SortOrder as e, type RequestedFieldsWithLiterals as e$, type Ribbon as e0, type ProductCategoriesInfo as e1, type ProductCategory as e2, type ProductCategoryIdsInfo as e3, type PriceRange as e4, type FixedMonetaryAmount as e5, type Inventory as e6, type PhysicalProperties as e7, type PricePerUnitSettings as e8, type WeightRange as e9, type SubscriptionDiscountDiscountOneOf as eA, type VariantSummary as eB, type MinVariantPriceInfo as eC, type MigrateProductVariantsResponse as eD, type RecoverProductVariantsRequest as eE, type RecoverProductVariantsResponse as eF, type DomainEvent as eG, type DomainEventBodyOneOf as eH, type EntityCreatedEvent as eI, type RestoreInfo as eJ, type EntityUpdatedEvent as eK, type EntityDeletedEvent as eL, type ActionEvent as eM, type Empty as eN, type MessageEnvelope as eO, type IdentificationData as eP, type IdentificationDataIdOneOf as eQ, type VariantsQueryResult as eR, type ReadOnlyVariantQuerySpec as eS, type ReadOnlyVariantSearchSpec as eT, type ProductMediaMediaTypeWithLiterals as eU, type MeasurementUnitWithLiterals as eV, type SecuredMediaFileTypeWithLiterals as eW, type V3ProductTypeWithLiterals as eX, type WeightUnitWithLiterals as eY, type InternalRowStateWithLiterals as eZ, type SortOrderWithLiterals as e_, type PricePerUnitRange as ea, type PricePerUnitRangePricePerUnit as eb, type WeightMeasurementUnitInfo as ec, type BreadcrumbsInfo as ed, type BreadCrumb as ee, type VariantsInfo as ef, type Variant as eg, type VariantTypedPropertiesOneOf as eh, type OptionChoice as ei, type OptionChoiceIds as ej, type OptionChoiceNames as ek, type PriceInfo as el, type RevenueDetails as em, type VariantPhysicalProperties as en, type PricePerUnit as eo, type VariantDigitalProperties as ep, type SecuredMedia as eq, type SubscriptionPricesInfo as er, type SubscriptionPrice as es, type SubscriptionPricePerUnit as et, type InventoryStatus as eu, type ExtendedFields as ev, type SubscriptionDetails as ew, type Subscription as ex, type SubscriptionCyclesOneOf as ey, type SubscriptionDiscount as ez, RequestedFields as f, type PreorderStatusWithLiterals as f$, type SortTypeWithLiterals as f0, type SortDirectionWithLiterals as f1, type MissingValuesWithLiterals as f2, type ScalarTypeWithLiterals as f3, type NestedAggregationTypeWithLiterals as f4, type IntervalWithLiterals as f5, type AggregationTypeWithLiterals as f6, type ModeWithLiterals as f7, type CommonSortOrderWithLiterals as f8, type ValueAggregationSortTypeWithLiterals as f9, type VoteRoleWithLiterals as fA, type PollLayoutTypeWithLiterals as fB, type PollLayoutDirectionWithLiterals as fC, type BackgroundTypeWithLiterals as fD, type DecorationTypeWithLiterals as fE, type FontTypeWithLiterals as fF, type PositionWithLiterals as fG, type AspectRatioWithLiterals as fH, type ResizingWithLiterals as fI, type PlacementWithLiterals as fJ, type TypeWithLiterals as fK, type AlignmentWithLiterals as fL, type LayoutWithLiterals as fM, type AppTypeWithLiterals as fN, type InitialExpandedItemsWithLiterals as fO, type DirectionWithLiterals as fP, type VerticalAlignmentWithLiterals as fQ, type NullValueWithLiterals as fR, type ScalingWithLiterals as fS, type ImagePositionWithLiterals as fT, type VerticalAlignmentAlignmentWithLiterals as fU, type ResponsivenessBehaviourWithLiterals as fV, type MediaTypeWithLiterals as fW, type ProductOptionRenderTypeWithLiterals as fX, type ChoiceTypeWithLiterals as fY, type ModifierRenderTypeWithLiterals as fZ, type AvailabilityStatusWithLiterals as f_, type ValueAggregationSortDirectionWithLiterals as fa, type ValueAggregationMissingValuesWithLiterals as fb, type CommonScalarTypeWithLiterals as fc, type NestedAggregationNestedAggregationTypeWithLiterals as fd, type DateHistogramAggregationIntervalWithLiterals as fe, type CommonAggregationTypeWithLiterals as ff, type SearchDetailsModeWithLiterals as fg, type NodeTypeWithLiterals as fh, type WidthTypeWithLiterals as fi, type PluginContainerDataAlignmentWithLiterals as fj, type ButtonDataTypeWithLiterals as fk, type TargetWithLiterals as fl, type TextAlignmentWithLiterals as fm, type LineStyleWithLiterals as fn, type WidthWithLiterals as fo, type DividerDataAlignmentWithLiterals as fp, type ViewModeWithLiterals as fq, type LayoutTypeWithLiterals as fr, type OrientationWithLiterals as fs, type CropWithLiterals as ft, type ThumbnailsAlignmentWithLiterals as fu, type GIFTypeWithLiterals as fv, type SourceWithLiterals as fw, type StylesPositionWithLiterals as fx, type MapTypeWithLiterals as fy, type ViewRoleWithLiterals as fz, SortType as g, type ProductPreorderAvailabilityWithLiterals as g0, type ProductTypeWithLiterals as g1, type FileTypeWithLiterals as g2, type SubscriptionFrequencyWithLiterals as g3, type DiscountTypeWithLiterals as g4, type WebhookIdentityTypeWithLiterals as g5, type CommonQueryWithEntityContext as g6, type CommonSearchWithEntityContext as g7, queryVariants as g8, SortDirection as h, MissingValues as i, ScalarType as j, Interval as k, Mode as l, ValueAggregationSortType as m, ValueAggregationSortDirection as n, ValueAggregationMissingValues as o, CommonScalarType as p, NestedAggregationNestedAggregationType as q, CommonAggregationType as r, SearchDetailsMode as s, typedQueryVariants as t, NodeType as u, WidthType as v, PluginContainerDataAlignment as w, TextAlignment as x, Width as y, DividerDataAlignment as z };
|
|
5434
|
+
export { PollLayoutDirection as $, AggregationType as A, ButtonDataType as B, CommonSortOrder as C, DateHistogramAggregationInterval as D, ViewMode as E, LayoutType as F, Crop as G, ThumbnailsAlignment as H, InternalRowState as I, GIFType as J, Source as K, LineStyle as L, MeasurementUnit as M, NestedAggregationType as N, Orientation as O, ProductMediaMediaType as P, type QueryVariantsOptions as Q, type ReadOnlyVariantSearch as R, type SearchVariantsOptions as S, Target as T, StylesPosition as U, type VariantsQueryBuilder as V, WeightUnit as W, MapType as X, ViewRole as Y, VoteRole as Z, PollLayoutType as _, type SearchVariantsResponse as a, type CursorPaging as a$, BackgroundType as a0, DecorationType as a1, FontType as a2, Position as a3, AspectRatio as a4, Resizing as a5, Placement as a6, Type as a7, Alignment as a8, Layout as a9, type V3OptionChoiceNames as aA, type V3PriceInfo as aB, type V3FixedMonetaryAmount as aC, type V3RevenueDetails as aD, type V3ProductMedia as aE, type V3ProductMediaSetByOneOf as aF, type V3ProductMediaMediaOneOf as aG, type CommonVideoResolution as aH, type V3Thumbnail as aI, type V3VariantPhysicalProperties as aJ, type V3PricePerUnit as aK, type V3PricePerUnitSettings as aL, type V3VariantDigitalProperties as aM, type V3SecuredMedia as aN, type V3SubscriptionPricesInfo as aO, type V3SubscriptionPrice as aP, type V3SubscriptionPricePerUnit as aQ, type V3InventoryStatus as aR, type ProductFields as aS, type ProductFieldsTypedPropertiesOneOf as aT, type V3PhysicalProperties as aU, type V3WeightMeasurementUnitInfo as aV, type InternalMetadata as aW, type QueryVariantsRequest as aX, type CursorQuery as aY, type CursorQueryPagingMethodOneOf as aZ, type Sorting as a_, AppType as aa, InitialExpandedItems as ab, Direction as ac, VerticalAlignment as ad, NullValue as ae, Scaling as af, ImagePosition as ag, VerticalAlignmentAlignment as ah, ResponsivenessBehaviour as ai, DesignTarget as aj, MediaType as ak, ProductOptionRenderType as al, ChoiceType as am, ModifierRenderType as an, AvailabilityStatus as ao, PreorderStatus as ap, ProductPreorderAvailability as aq, ProductType as ar, FileType as as, SubscriptionFrequency as at, DiscountType as au, WebhookIdentityType as av, type ReadOnlyVariant as aw, type ReadOnlyVariantTypedPropertiesOneOf as ax, type V3OptionChoice as ay, type V3OptionChoiceIds as az, type ReadOnlyVariantQuery as b, type Product as b$, type QueryVariantsResponse as b0, type CursorPagingMetadata as b1, type Cursors as b2, type SearchVariantsRequest as b3, type CursorSearch as b4, type CursorSearchPagingMethodOneOf as b5, type Aggregation as b6, type AggregationKindOneOf as b7, type RangeBucket as b8, type IncludeMissingValuesOptions as b9, type DateHistogramResults as bA, type NestedResults as bB, type AggregationResults as bC, type AggregationResultsResultOneOf as bD, type DeprecatedSearchVariantsWithOffsetRequest as bE, type PlatformOffsetSearch as bF, type PlatformOffsetSearchPagingMethodOneOf as bG, type CommonSorting as bH, type CommonAggregation as bI, type CommonAggregationKindOneOf as bJ, type RangeAggregationRangeBucket as bK, type ValueAggregationIncludeMissingValuesOptions as bL, type AggregationValueAggregation as bM, type AggregationValueAggregationOptionsOneOf as bN, type AggregationRangeAggregation as bO, type AggregationScalarAggregation as bP, type AggregationDateHistogramAggregation as bQ, type NestedAggregationNestedAggregationItem as bR, type NestedAggregationNestedAggregationItemKindOneOf as bS, type AggregationNestedAggregation as bT, type GroupByAggregation as bU, type GroupByAggregationKindOneOf as bV, type CommonSearchDetails as bW, type PlatformPaging as bX, type DeprecatedSearchVariantsWithOffsetResponse as bY, type PagingMetadata as bZ, type MigrateProductVariantsRequest as b_, type ValueAggregation as ba, type ValueAggregationOptionsOneOf as bb, type RangeAggregation as bc, type ScalarAggregation as bd, type DateHistogramAggregation as be, type NestedAggregationItem as bf, type NestedAggregationItemKindOneOf as bg, type NestedAggregation as bh, type SearchDetails as bi, type AggregationData as bj, type ValueAggregationResult as bk, type RangeAggregationResult as bl, type NestedAggregationResults as bm, type NestedAggregationResultsResultOneOf as bn, type ValueResults as bo, type RangeResults as bp, type AggregationResultsScalarResult as bq, type NestedValueAggregationResult as br, type ValueResult as bs, type RangeResult as bt, type ScalarResult as bu, type NestedResultValue as bv, type NestedResultValueResultOneOf as bw, type Results as bx, type DateHistogramResult as by, type GroupByValueResults as bz, SecuredMediaFileType as c, type DecorationDataOneOf as c$, type ProductTypedPropertiesOneOf as c0, type RichContent as c1, type Node as c2, type NodeDataOneOf as c3, type NodeStyle as c4, type ButtonData as c5, type Border as c6, type Colors as c7, type PluginContainerData as c8, type PluginContainerDataWidth as c9, type HeadingData as cA, type HTMLData as cB, type HTMLDataDataOneOf as cC, type ImageData as cD, type StylesBorder as cE, type ImageDataStyles as cF, type LinkPreviewData as cG, type LinkPreviewDataStyles as cH, type MapData as cI, type MapSettings as cJ, type ParagraphData as cK, type PollData as cL, type Permissions as cM, type Option as cN, type PollSettings as cO, type PollLayout as cP, type OptionLayout as cQ, type Gradient as cR, type Background as cS, type BackgroundBackgroundOneOf as cT, type PollDesign as cU, type OptionDesign as cV, type Poll as cW, type PollDataLayout as cX, type Design as cY, type TextData as cZ, type Decoration as c_, type PluginContainerDataWidthDataOneOf as ca, type Spoiler as cb, type Height as cc, type Styles as cd, type Link as ce, type LinkDataOneOf as cf, type Rel as cg, type CodeBlockData as ch, type TextStyle as ci, type DividerData as cj, type FileData as ck, type FileSource as cl, type FileSourceDataOneOf as cm, type PDFSettings as cn, type GalleryData as co, type V1Media as cp, type Image as cq, type Video as cr, type Item as cs, type ItemDataOneOf as ct, type GalleryOptions as cu, type GalleryOptionsLayout as cv, type ItemStyle as cw, type Thumbnails as cx, type GIFData as cy, type GIF as cz, V3ProductType as d, type Brand as d$, type AnchorData as d0, type ColorData as d1, type LinkData as d2, type MentionData as d3, type FontSizeData as d4, type SpoilerData as d5, type FontFamilyData as d6, type AppEmbedData as d7, type AppEmbedDataAppDataOneOf as d8, type BookingData as d9, type LayoutCellData as dA, type Metadata as dB, type DocumentStyle as dC, type TextNodeStyle as dD, type Media as dE, type ProductMedia as dF, type ProductMediaSetByOneOf as dG, type ProductMediaMediaOneOf as dH, type VideoResolution as dI, type Thumbnail as dJ, type MediaItemsInfo as dK, type SeoSchema as dL, type Keyword as dM, type Tag as dN, type Settings as dO, type ConnectedOption as dP, type ConnectedOptionOptionSettingsOneOf as dQ, type ChoicesSettings as dR, type ConnectedOptionChoice as dS, type ConnectedOptionChoiceValueOneOf as dT, type MultipleColors as dU, type ConnectedModifier as dV, type ConnectedModifierModifierSettingsOneOf as dW, type FreeTextSettings as dX, type ModifierChoicesSettings as dY, type ConnectedModifierChoice as dZ, type ConnectedModifierChoiceValueOneOf as d_, type EventData as da, type ButtonStyles as db, type ImageStyles as dc, type RibbonStyles as dd, type CardStyles as de, type PricingData as df, type VideoData as dg, type PlaybackOptions as dh, type EmbedData as di, type Oembed as dj, type CollapsibleListData as dk, type TableData as dl, type Dimensions as dm, type TableCellData as dn, type CellStyle as dp, type BorderColors as dq, type BorderWidths as dr, type ListValue as ds, type AudioData as dt, type OrderedListData as du, type BulletedListData as dv, type BlockquoteData as dw, type CaptionData as dx, type LayoutData as dy, type BackgroundImage as dz, SortOrder as e, type SortOrderWithLiterals as e$, type InfoSection as e0, type Ribbon as e1, type ProductCategoriesInfo as e2, type ProductCategory as e3, type ProductCategoryIdsInfo as e4, type PriceRange as e5, type FixedMonetaryAmount as e6, type Inventory as e7, type PhysicalProperties as e8, type PricePerUnitSettings as e9, type SubscriptionDiscount as eA, type SubscriptionDiscountDiscountOneOf as eB, type VariantSummary as eC, type MinVariantPriceInfo as eD, type MigrateProductVariantsResponse as eE, type RecoverProductVariantsRequest as eF, type RecoverProductVariantsResponse as eG, type DomainEvent as eH, type DomainEventBodyOneOf as eI, type EntityCreatedEvent as eJ, type RestoreInfo as eK, type EntityUpdatedEvent as eL, type EntityDeletedEvent as eM, type ActionEvent as eN, type Empty as eO, type MessageEnvelope as eP, type IdentificationData as eQ, type IdentificationDataIdOneOf as eR, type VariantsQueryResult as eS, type ReadOnlyVariantQuerySpec as eT, type ReadOnlyVariantSearchSpec as eU, type ProductMediaMediaTypeWithLiterals as eV, type MeasurementUnitWithLiterals as eW, type SecuredMediaFileTypeWithLiterals as eX, type V3ProductTypeWithLiterals as eY, type WeightUnitWithLiterals as eZ, type InternalRowStateWithLiterals as e_, type WeightRange as ea, type PricePerUnitRange as eb, type PricePerUnitRangePricePerUnit as ec, type WeightMeasurementUnitInfo as ed, type BreadcrumbsInfo as ee, type BreadCrumb as ef, type VariantsInfo as eg, type Variant as eh, type VariantTypedPropertiesOneOf as ei, type OptionChoice as ej, type OptionChoiceIds as ek, type OptionChoiceNames as el, type PriceInfo as em, type RevenueDetails as en, type VariantPhysicalProperties as eo, type PricePerUnit as ep, type VariantDigitalProperties as eq, type SecuredMedia as er, type SubscriptionPricesInfo as es, type SubscriptionPrice as et, type SubscriptionPricePerUnit as eu, type InventoryStatus as ev, type ExtendedFields as ew, type SubscriptionDetails as ex, type Subscription as ey, type SubscriptionCyclesOneOf as ez, RequestedFields as f, type ModifierRenderTypeWithLiterals as f$, type RequestedFieldsWithLiterals as f0, type SortTypeWithLiterals as f1, type SortDirectionWithLiterals as f2, type MissingValuesWithLiterals as f3, type ScalarTypeWithLiterals as f4, type NestedAggregationTypeWithLiterals as f5, type IntervalWithLiterals as f6, type AggregationTypeWithLiterals as f7, type ModeWithLiterals as f8, type CommonSortOrderWithLiterals as f9, type ViewRoleWithLiterals as fA, type VoteRoleWithLiterals as fB, type PollLayoutTypeWithLiterals as fC, type PollLayoutDirectionWithLiterals as fD, type BackgroundTypeWithLiterals as fE, type DecorationTypeWithLiterals as fF, type FontTypeWithLiterals as fG, type PositionWithLiterals as fH, type AspectRatioWithLiterals as fI, type ResizingWithLiterals as fJ, type PlacementWithLiterals as fK, type TypeWithLiterals as fL, type AlignmentWithLiterals as fM, type LayoutWithLiterals as fN, type AppTypeWithLiterals as fO, type InitialExpandedItemsWithLiterals as fP, type DirectionWithLiterals as fQ, type VerticalAlignmentWithLiterals as fR, type NullValueWithLiterals as fS, type ScalingWithLiterals as fT, type ImagePositionWithLiterals as fU, type VerticalAlignmentAlignmentWithLiterals as fV, type ResponsivenessBehaviourWithLiterals as fW, type DesignTargetWithLiterals as fX, type MediaTypeWithLiterals as fY, type ProductOptionRenderTypeWithLiterals as fZ, type ChoiceTypeWithLiterals as f_, type ValueAggregationSortTypeWithLiterals as fa, type ValueAggregationSortDirectionWithLiterals as fb, type ValueAggregationMissingValuesWithLiterals as fc, type CommonScalarTypeWithLiterals as fd, type NestedAggregationNestedAggregationTypeWithLiterals as fe, type DateHistogramAggregationIntervalWithLiterals as ff, type CommonAggregationTypeWithLiterals as fg, type SearchDetailsModeWithLiterals as fh, type NodeTypeWithLiterals as fi, type WidthTypeWithLiterals as fj, type PluginContainerDataAlignmentWithLiterals as fk, type ButtonDataTypeWithLiterals as fl, type TargetWithLiterals as fm, type TextAlignmentWithLiterals as fn, type LineStyleWithLiterals as fo, type WidthWithLiterals as fp, type DividerDataAlignmentWithLiterals as fq, type ViewModeWithLiterals as fr, type LayoutTypeWithLiterals as fs, type OrientationWithLiterals as ft, type CropWithLiterals as fu, type ThumbnailsAlignmentWithLiterals as fv, type GIFTypeWithLiterals as fw, type SourceWithLiterals as fx, type StylesPositionWithLiterals as fy, type MapTypeWithLiterals as fz, SortType as g, type AvailabilityStatusWithLiterals as g0, type PreorderStatusWithLiterals as g1, type ProductPreorderAvailabilityWithLiterals as g2, type ProductTypeWithLiterals as g3, type FileTypeWithLiterals as g4, type SubscriptionFrequencyWithLiterals as g5, type DiscountTypeWithLiterals as g6, type WebhookIdentityTypeWithLiterals as g7, type CommonQueryWithEntityContext as g8, type CommonSearchWithEntityContext as g9, queryVariants as ga, SortDirection as h, MissingValues as i, ScalarType as j, Interval as k, Mode as l, ValueAggregationSortType as m, ValueAggregationSortDirection as n, ValueAggregationMissingValues as o, CommonScalarType as p, NestedAggregationNestedAggregationType as q, CommonAggregationType as r, SearchDetailsMode as s, typedQueryVariants as t, NodeType as u, WidthType as v, PluginContainerDataAlignment as w, TextAlignment as x, Width as y, DividerDataAlignment as z };
|
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 { eM as ActionEvent, b5 as Aggregation, bi as AggregationData, bP as AggregationDateHistogramAggregation, b6 as AggregationKindOneOf, bS as AggregationNestedAggregation, bN as AggregationRangeAggregation, bB as AggregationResults, bC as AggregationResultsResultOneOf, bp as AggregationResultsScalarResult, bO as AggregationScalarAggregation, A as AggregationType, f6 as AggregationTypeWithLiterals, bL as AggregationValueAggregation, bM as AggregationValueAggregationOptionsOneOf, a8 as Alignment, fL as AlignmentWithLiterals, c$ as AnchorData, d6 as AppEmbedData, d7 as AppEmbedDataAppDataOneOf, aa as AppType, fN as AppTypeWithLiterals, a4 as AspectRatio, fH as AspectRatioWithLiterals, ds as AudioData, an as AvailabilityStatus, f_ as AvailabilityStatusWithLiterals, cR as Background, cS as BackgroundBackgroundOneOf, dy as BackgroundImage, a0 as BackgroundType, fD as BackgroundTypeWithLiterals, dv as BlockquoteData, d8 as BookingData, c5 as Border, dp as BorderColors, dq as BorderWidths, d_ as Brand, ee as BreadCrumb, ed as BreadcrumbsInfo, du as BulletedListData, c4 as ButtonData, B as ButtonDataType, fk as ButtonDataTypeWithLiterals, da as ButtonStyles, dw as CaptionData, dd as CardStyles, dn as CellStyle, al as ChoiceType, fY as ChoiceTypeWithLiterals, dQ as ChoicesSettings, cg as CodeBlockData, dj as CollapsibleListData, d0 as ColorData, c6 as Colors, bH as CommonAggregation, bI as CommonAggregationKindOneOf, r as CommonAggregationType, ff as CommonAggregationTypeWithLiterals, g6 as CommonQueryWithEntityContext, p as CommonScalarType, fc as CommonScalarTypeWithLiterals, bV as CommonSearchDetails, g7 as CommonSearchWithEntityContext, C as CommonSortOrder, f8 as CommonSortOrderWithLiterals, bG as CommonSorting, aG as CommonVideoResolution, dU as ConnectedModifier, dY as ConnectedModifierChoice, dZ as ConnectedModifierChoiceValueOneOf, dV as ConnectedModifierModifierSettingsOneOf, dO as ConnectedOption, dR as ConnectedOptionChoice, dS as ConnectedOptionChoiceValueOneOf, dP as ConnectedOptionOptionSettingsOneOf, G as Crop, ft as CropWithLiterals, a_ as CursorPaging, b0 as CursorPagingMetadata, aX as CursorQuery, aY as CursorQueryPagingMethodOneOf, b3 as CursorSearch, b4 as CursorSearchPagingMethodOneOf, b1 as Cursors, bd as DateHistogramAggregation, D as DateHistogramAggregationInterval, fe as DateHistogramAggregationIntervalWithLiterals, bx as DateHistogramResult, bz as DateHistogramResults, cZ as Decoration, c_ as DecorationDataOneOf, a1 as DecorationType, fE as DecorationTypeWithLiterals, bD as DeprecatedSearchVariantsWithOffsetRequest, bX as DeprecatedSearchVariantsWithOffsetResponse, cX as Design, dl as Dimensions, ac as Direction, fP as DirectionWithLiterals, at as DiscountType, g4 as DiscountTypeWithLiterals, ci as DividerData, z as DividerDataAlignment, fp as DividerDataAlignmentWithLiterals, dB as DocumentStyle, eG as DomainEvent, eH as DomainEventBodyOneOf, dh as EmbedData, eN as Empty, eI as EntityCreatedEvent, eL as EntityDeletedEvent, eK as EntityUpdatedEvent, d9 as EventData, ev as ExtendedFields, cj as FileData, ck as FileSource, cl as FileSourceDataOneOf, ar as FileType, g2 as FileTypeWithLiterals, e5 as FixedMonetaryAmount, d5 as FontFamilyData, d3 as FontSizeData, a2 as FontType, fF as FontTypeWithLiterals, dW as FreeTextSettings, cy as GIF, cx as GIFData, J as GIFType, fv as GIFTypeWithLiterals, cn as GalleryData, ct as GalleryOptions, cu as GalleryOptionsLayout, cQ as Gradient, bT as GroupByAggregation, bU as GroupByAggregationKindOneOf, by as GroupByValueResults, cA as HTMLData, cB as HTMLDataDataOneOf, cz as HeadingData, cb as Height, eP as IdentificationData, eQ as IdentificationDataIdOneOf, cp as Image, cC as ImageData, cE as ImageDataStyles, ag as ImagePosition, fT as ImagePositionWithLiterals, db as ImageStyles, b8 as IncludeMissingValuesOptions, d$ as InfoSection, ab as InitialExpandedItems, fO as InitialExpandedItemsWithLiterals, aV as InternalMetadata, I as InternalRowState, eZ as InternalRowStateWithLiterals, k as Interval, f5 as IntervalWithLiterals, e6 as Inventory, eu as InventoryStatus, cr as Item, cs as ItemDataOneOf, cv as ItemStyle, dL as Keyword, a9 as Layout, dz as LayoutCellData, dx as LayoutData, F as LayoutType, fr as LayoutTypeWithLiterals, fM as LayoutWithLiterals, L as LineStyle, fn as LineStyleWithLiterals, cd as Link, d1 as LinkData, ce as LinkDataOneOf, cF as LinkPreviewData, cG as LinkPreviewDataStyles, dr as ListValue, cH as MapData, cI as MapSettings, X as MapType, fy as MapTypeWithLiterals, M as MeasurementUnit, eV as MeasurementUnitWithLiterals, dD as Media, dJ as MediaItemsInfo, aj as MediaType, fW as MediaTypeWithLiterals, d2 as MentionData, eO as MessageEnvelope, dA as Metadata, bZ as MigrateProductVariantsRequest, eD as MigrateProductVariantsResponse, eC as MinVariantPriceInfo, i as MissingValues, f2 as MissingValuesWithLiterals, l as Mode, f7 as ModeWithLiterals, dX as ModifierChoicesSettings, am as ModifierRenderType, fZ as ModifierRenderTypeWithLiterals, dT as MultipleColors, bg as NestedAggregation, be as NestedAggregationItem, bf as NestedAggregationItemKindOneOf, bQ as NestedAggregationNestedAggregationItem, bR as NestedAggregationNestedAggregationItemKindOneOf, q as NestedAggregationNestedAggregationType, fd as NestedAggregationNestedAggregationTypeWithLiterals, bl as NestedAggregationResults, bm as NestedAggregationResultsResultOneOf, N as NestedAggregationType, f4 as NestedAggregationTypeWithLiterals, bu as NestedResultValue, bv as NestedResultValueResultOneOf, bA as NestedResults, bq as NestedValueAggregationResult, c1 as Node, c2 as NodeDataOneOf, c3 as NodeStyle, u as NodeType, fh as NodeTypeWithLiterals, ae as NullValue, fR as NullValueWithLiterals, di as Oembed, cM as Option, ei as OptionChoice, ej as OptionChoiceIds, ek as OptionChoiceNames, cU as OptionDesign, cP as OptionLayout, dt as OrderedListData, O as Orientation, fs as OrientationWithLiterals, cm as PDFSettings, bY as PagingMetadata, cJ as ParagraphData, cL as Permissions, e7 as PhysicalProperties, a6 as Placement, fJ as PlacementWithLiterals, bE as PlatformOffsetSearch, bF as PlatformOffsetSearchPagingMethodOneOf, bW as PlatformPaging, dg as PlaybackOptions, c7 as PluginContainerData, w as PluginContainerDataAlignment, fj as PluginContainerDataAlignmentWithLiterals, c8 as PluginContainerDataWidth, c9 as PluginContainerDataWidthDataOneOf, cV as Poll, cK as PollData, cW as PollDataLayout, cT as PollDesign, cO as PollLayout, $ as PollLayoutDirection, fC as PollLayoutDirectionWithLiterals, _ as PollLayoutType, fB as PollLayoutTypeWithLiterals, cN as PollSettings, a3 as Position, fG as PositionWithLiterals, ao as PreorderStatus, f$ as PreorderStatusWithLiterals, el as PriceInfo, eo as PricePerUnit, ea as PricePerUnitRange, eb as PricePerUnitRangePricePerUnit, e8 as PricePerUnitSettings, e4 as PriceRange, de as PricingData, b_ as Product, e1 as ProductCategoriesInfo, e2 as ProductCategory, e3 as ProductCategoryIdsInfo, aR as ProductFields, aS as ProductFieldsTypedPropertiesOneOf, dE as ProductMedia, dG as ProductMediaMediaOneOf, P as ProductMediaMediaType, eU as ProductMediaMediaTypeWithLiterals, dF as ProductMediaSetByOneOf, ak as ProductOptionRenderType, fX as ProductOptionRenderTypeWithLiterals, ap as ProductPreorderAvailability, g0 as ProductPreorderAvailabilityWithLiterals, aq as ProductType, g1 as ProductTypeWithLiterals, b$ as ProductTypedPropertiesOneOf, aW as QueryVariantsRequest, a$ as QueryVariantsResponse, bb as RangeAggregation, bJ as RangeAggregationRangeBucket, bk as RangeAggregationResult, b7 as RangeBucket, bs as RangeResult, bo as RangeResults, av as ReadOnlyVariant, eS as ReadOnlyVariantQuerySpec, eT as ReadOnlyVariantSearchSpec, aw as ReadOnlyVariantTypedPropertiesOneOf, eE as RecoverProductVariantsRequest, eF as RecoverProductVariantsResponse, cf as Rel, f as RequestedFields, e$ as RequestedFieldsWithLiterals, a5 as Resizing, fI as ResizingWithLiterals, ai as ResponsivenessBehaviour, fV as ResponsivenessBehaviourWithLiterals, eJ as RestoreInfo, bw as Results, em as RevenueDetails, e0 as Ribbon, dc as RibbonStyles, c0 as RichContent, bc as ScalarAggregation, bt as ScalarResult, j as ScalarType, f3 as ScalarTypeWithLiterals, af as Scaling, fS as ScalingWithLiterals, bh as SearchDetails, s as SearchDetailsMode, fg as SearchDetailsModeWithLiterals, b2 as SearchVariantsRequest, eq as SecuredMedia, c as SecuredMediaFileType, eW as SecuredMediaFileTypeWithLiterals, dK as SeoSchema, dN as Settings, h as SortDirection, f1 as SortDirectionWithLiterals, e as SortOrder, e_ as SortOrderWithLiterals, g as SortType, f0 as SortTypeWithLiterals, aZ as Sorting, K as Source, fw as SourceWithLiterals, ca as Spoiler, d4 as SpoilerData, cc as Styles, cD as StylesBorder, U as StylesPosition, fx as StylesPositionWithLiterals, ex as Subscription, ey as SubscriptionCyclesOneOf, ew as SubscriptionDetails, ez as SubscriptionDiscount, eA as SubscriptionDiscountDiscountOneOf, as as SubscriptionFrequency, g3 as SubscriptionFrequencyWithLiterals, es as SubscriptionPrice, et as SubscriptionPricePerUnit, er as SubscriptionPricesInfo, dm as TableCellData, dk as TableData, dM as Tag, T as Target, fl as TargetWithLiterals, x as TextAlignment, fm as TextAlignmentWithLiterals, cY as TextData, dC as TextNodeStyle, ch as TextStyle, dI as Thumbnail, cw as Thumbnails, H as ThumbnailsAlignment, fu as ThumbnailsAlignmentWithLiterals, a7 as Type, fK as TypeWithLiterals, co as V1Media, aB as V3FixedMonetaryAmount, aQ as V3InventoryStatus, ax as V3OptionChoice, ay as V3OptionChoiceIds, az as V3OptionChoiceNames, aT as V3PhysicalProperties, aA as V3PriceInfo, aJ as V3PricePerUnit, aK as V3PricePerUnitSettings, aD as V3ProductMedia, aF as V3ProductMediaMediaOneOf, aE as V3ProductMediaSetByOneOf, d as V3ProductType, eX as V3ProductTypeWithLiterals, aC as V3RevenueDetails, aM as V3SecuredMedia, aO as V3SubscriptionPrice, aP as V3SubscriptionPricePerUnit, aN as V3SubscriptionPricesInfo, aH as V3Thumbnail, aL as V3VariantDigitalProperties, aI as V3VariantPhysicalProperties, aU as V3WeightMeasurementUnitInfo, b9 as ValueAggregation, bK as ValueAggregationIncludeMissingValuesOptions, o as ValueAggregationMissingValues, fb as ValueAggregationMissingValuesWithLiterals, ba as ValueAggregationOptionsOneOf, bj as ValueAggregationResult, n as ValueAggregationSortDirection, fa as ValueAggregationSortDirectionWithLiterals, m as ValueAggregationSortType, f9 as ValueAggregationSortTypeWithLiterals, br as ValueResult, bn as ValueResults, eg as Variant, ep as VariantDigitalProperties, en as VariantPhysicalProperties, eB as VariantSummary, eh as VariantTypedPropertiesOneOf, ef as VariantsInfo, eR as VariantsQueryResult, ad as VerticalAlignment, ah as VerticalAlignmentAlignment, fU as VerticalAlignmentAlignmentWithLiterals, fQ as VerticalAlignmentWithLiterals, cq as Video, df as VideoData, dH as VideoResolution, E as ViewMode, fq as ViewModeWithLiterals, Y as ViewRole, fz as ViewRoleWithLiterals, Z as VoteRole, fA as VoteRoleWithLiterals, au as WebhookIdentityType, g5 as WebhookIdentityTypeWithLiterals, ec as WeightMeasurementUnitInfo, e9 as WeightRange, W as WeightUnit, eY as WeightUnitWithLiterals, y as Width, v as WidthType, fi as WidthTypeWithLiterals, fo as WidthWithLiterals } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DCmK2i6O.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-BNZPBN80.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-BNZPBN80.mjs';
|
|
4
4
|
|
|
5
5
|
declare function searchVariants$1(httpClient: HttpClient): SearchVariantsSignature;
|
|
6
6
|
interface SearchVariantsSignature {
|
|
@@ -10,7 +10,12 @@ interface SearchVariantsSignature {
|
|
|
10
10
|
* Use this endpoint for complex queries that include free-text search, aggregations,
|
|
11
11
|
* or when you need faceted search results. For simple filtering, use Query Variants instead.
|
|
12
12
|
*
|
|
13
|
-
*
|
|
13
|
+
* To learn about working with _Search_ methods, see
|
|
14
|
+
* [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language)
|
|
15
|
+
* and [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging).
|
|
16
|
+
*
|
|
17
|
+
* Learn more about the differences between [_Query_ and _Search_](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-search-query-and-list-methods) methods.
|
|
18
|
+
*
|
|
14
19
|
* > **Note:** Non-visible variants, and variants related to non-visible products are filtered from results if you don't have permissions to read hidden products.
|
|
15
20
|
* @param - WQL expression for searching variants.
|
|
16
21
|
*/
|
package/build/es/index.mjs
CHANGED
|
@@ -663,6 +663,11 @@ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
|
663
663
|
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
664
664
|
return ResponsivenessBehaviour2;
|
|
665
665
|
})(ResponsivenessBehaviour || {});
|
|
666
|
+
var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
667
|
+
DesignTarget2["LAYOUT"] = "LAYOUT";
|
|
668
|
+
DesignTarget2["CELL"] = "CELL";
|
|
669
|
+
return DesignTarget2;
|
|
670
|
+
})(DesignTarget || {});
|
|
666
671
|
var MediaType = /* @__PURE__ */ ((MediaType2) => {
|
|
667
672
|
MediaType2["UNKNOWN_MEDIA_TYPE"] = "UNKNOWN_MEDIA_TYPE";
|
|
668
673
|
MediaType2["IMAGE"] = "IMAGE";
|
|
@@ -931,6 +936,7 @@ export {
|
|
|
931
936
|
Crop,
|
|
932
937
|
DateHistogramAggregationInterval,
|
|
933
938
|
DecorationType,
|
|
939
|
+
DesignTarget,
|
|
934
940
|
Direction,
|
|
935
941
|
DiscountType,
|
|
936
942
|
DividerDataAlignment,
|