@wix/auto_sdk_stores_read-only-variants-v-3 1.0.32 → 1.0.34

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.
Files changed (41) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js +37 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js +37 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +119 -4
  8. package/build/cjs/meta.js +37 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/{internal/cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BsNW6mr6.d.ts → cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DcFETy-X.d.ts} +120 -22
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs +33 -0
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +2 -2
  15. package/build/es/index.typings.mjs +33 -0
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +119 -4
  18. package/build/es/meta.mjs +33 -0
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/{internal/es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BsNW6mr6.d.mts → es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DcFETy-X.d.mts} +120 -22
  21. package/build/internal/cjs/index.d.ts +2 -2
  22. package/build/internal/cjs/index.js +37 -0
  23. package/build/internal/cjs/index.js.map +1 -1
  24. package/build/internal/cjs/index.typings.d.ts +2 -2
  25. package/build/internal/cjs/index.typings.js +37 -0
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +119 -4
  28. package/build/internal/cjs/meta.js +37 -0
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/{cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BVd7UPYl.d.ts → internal/cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DQfmlHWO.d.ts} +139 -3
  31. package/build/internal/es/index.d.mts +2 -2
  32. package/build/internal/es/index.mjs +33 -0
  33. package/build/internal/es/index.mjs.map +1 -1
  34. package/build/internal/es/index.typings.d.mts +2 -2
  35. package/build/internal/es/index.typings.mjs +33 -0
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +119 -4
  38. package/build/internal/es/meta.mjs +33 -0
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/{es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BVd7UPYl.d.mts → internal/es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DQfmlHWO.d.mts} +139 -3
  41. package/package.json +2 -2
@@ -637,6 +637,15 @@ interface ProductFields extends ProductFieldsTypedPropertiesOneOf {
637
637
  * @readonly
638
638
  */
639
639
  revision?: string | null;
640
+ /**
641
+ * A unique human-friendly identifier for the product.
642
+ *
643
+ * The handle can be set by the user to ensure consistency across multiple platforms.
644
+ * @minLength 1
645
+ * @maxLength 100
646
+ * @readonly
647
+ */
648
+ handle?: string | null;
640
649
  }
641
650
  /** @oneof */
642
651
  interface ProductFieldsTypedPropertiesOneOf {
@@ -1836,6 +1845,12 @@ interface Product extends ProductTypedPropertiesOneOf {
1836
1845
  * @readonly
1837
1846
  */
1838
1847
  handle?: string | null;
1848
+ /**
1849
+ * ID of the last import job that affected the product.
1850
+ * @internal
1851
+ * @format GUID
1852
+ */
1853
+ importId?: string | null;
1839
1854
  /**
1840
1855
  * 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.
1841
1856
  *
@@ -1861,6 +1876,12 @@ interface Product extends ProductTypedPropertiesOneOf {
1861
1876
  * @readonly
1862
1877
  */
1863
1878
  compareAtPriceRange?: PriceRange;
1879
+ /**
1880
+ * Optional - ID of the app that manages the inventory for this product.
1881
+ * @internal
1882
+ * @format GUID
1883
+ */
1884
+ inventoryAppId?: string | null;
1864
1885
  /**
1865
1886
  * Product variants. Each variant must reference all product options via its `choices` array.
1866
1887
  * Each choice references an option using `optionChoiceNames` for all requests.
@@ -1950,7 +1971,9 @@ interface Node extends NodeDataOneOf {
1950
1971
  blockquoteData?: BlockquoteData;
1951
1972
  /** Data for a caption node. */
1952
1973
  captionData?: CaptionData;
1953
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
1974
+ /** Data for a layout node. Reserved for future use. */
1975
+ layoutData?: LayoutData;
1976
+ /** Data for a cell node. */
1954
1977
  layoutCellData?: LayoutCellData;
1955
1978
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
1956
1979
  type?: NodeTypeWithLiterals;
@@ -2015,7 +2038,9 @@ interface NodeDataOneOf {
2015
2038
  blockquoteData?: BlockquoteData;
2016
2039
  /** Data for a caption node. */
2017
2040
  captionData?: CaptionData;
2018
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
2041
+ /** Data for a layout node. Reserved for future use. */
2042
+ layoutData?: LayoutData;
2043
+ /** Data for a cell node. */
2019
2044
  layoutCellData?: LayoutCellData;
2020
2045
  }
2021
2046
  declare enum NodeType {
@@ -3572,6 +3597,108 @@ interface BlockquoteData {
3572
3597
  interface CaptionData {
3573
3598
  textStyle?: TextStyle;
3574
3599
  }
3600
+ interface LayoutData {
3601
+ /**
3602
+ * Background color as a hexadecimal value.
3603
+ * @format COLOR_HEX
3604
+ */
3605
+ backgroundColor?: string | null;
3606
+ /** Background image. */
3607
+ backgroundImage?: BackgroundImage;
3608
+ /**
3609
+ * Border color as a hexadecimal value.
3610
+ * @format COLOR_HEX
3611
+ */
3612
+ borderColor?: string | null;
3613
+ /** Border width in pixels. */
3614
+ borderWidth?: number | null;
3615
+ /** Border */
3616
+ borderRadius?: number | null;
3617
+ /**
3618
+ * Backdrop color as a hexadecimal value.
3619
+ * @format COLOR_HEX
3620
+ */
3621
+ backdropColor?: string | null;
3622
+ /** Backdrop image.radius in pixels. */
3623
+ backdropImage?: BackgroundImage;
3624
+ /** Backdrop top padding. */
3625
+ backdropPaddingTop?: number | null;
3626
+ /** Backdrop bottom padding */
3627
+ backdropPaddingBottom?: number | null;
3628
+ /** Horizontal and vertical gap between columns */
3629
+ gap?: number | null;
3630
+ /**
3631
+ * Padding in pixels for cells. Follows CSS order: top, right, bottom, left
3632
+ * @maxSize 4
3633
+ */
3634
+ cellPadding?: number[];
3635
+ /** Vertical alignment for the cell's items. */
3636
+ cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
3637
+ /** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
3638
+ responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
3639
+ /** Size in pixels when responsiveness_behaviour applies */
3640
+ responsivenessBreakpoint?: number | null;
3641
+ }
3642
+ declare enum Scaling {
3643
+ /** Auto image scaling */
3644
+ AUTO = "AUTO",
3645
+ /** Contain image scaling */
3646
+ CONTAIN = "CONTAIN",
3647
+ /** Cover image scaling */
3648
+ COVER = "COVER"
3649
+ }
3650
+ /** @enumType */
3651
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
3652
+ declare enum ImagePosition {
3653
+ /** Image positioned at the center */
3654
+ CENTER = "CENTER",
3655
+ /** Image positioned on the left */
3656
+ CENTER_LEFT = "CENTER_LEFT",
3657
+ /** Image positioned on the right */
3658
+ CENTER_RIGHT = "CENTER_RIGHT",
3659
+ /** Image positioned at the center top */
3660
+ TOP = "TOP",
3661
+ /** Image positioned at the top left */
3662
+ TOP_LEFT = "TOP_LEFT",
3663
+ /** Image positioned at the top right */
3664
+ TOP_RIGHT = "TOP_RIGHT",
3665
+ /** Image positioned at the center bottom */
3666
+ BOTTOM = "BOTTOM",
3667
+ /** Image positioned at the bottom left */
3668
+ BOTTOM_LEFT = "BOTTOM_LEFT",
3669
+ /** Image positioned at the bottom right */
3670
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
3671
+ }
3672
+ /** @enumType */
3673
+ type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
3674
+ interface BackgroundImage {
3675
+ /** Background image. */
3676
+ media?: V1Media;
3677
+ /** Background image opacity. */
3678
+ opacity?: number | null;
3679
+ /** Background image scaling. */
3680
+ scaling?: ScalingWithLiterals;
3681
+ /** Position of background. Defaults to `CENTER`. */
3682
+ position?: ImagePositionWithLiterals;
3683
+ }
3684
+ declare enum VerticalAlignmentAlignment {
3685
+ /** Top alignment */
3686
+ TOP = "TOP",
3687
+ /** Middle alignment */
3688
+ MIDDLE = "MIDDLE",
3689
+ /** Bottom alignment */
3690
+ BOTTOM = "BOTTOM"
3691
+ }
3692
+ /** @enumType */
3693
+ type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
3694
+ declare enum ResponsivenessBehaviour {
3695
+ /** Stacking of columns */
3696
+ STACK = "STACK",
3697
+ /** Wrapping of columns */
3698
+ WRAP = "WRAP"
3699
+ }
3700
+ /** @enumType */
3701
+ type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
3575
3702
  interface LayoutCellData {
3576
3703
  /** Size of the cell in 12 columns grid. */
3577
3704
  colSpan?: number | null;
@@ -4633,6 +4760,13 @@ interface SubscriptionDetails {
4633
4760
  * Default: `false`
4634
4761
  */
4635
4762
  allowOneTimePurchases?: boolean | null;
4763
+ /**
4764
+ * 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).
4765
+ *
4766
+ * Default: `false`
4767
+ * @internal
4768
+ */
4769
+ enableCustomerCancellation?: boolean | null;
4636
4770
  }
4637
4771
  interface Subscription extends SubscriptionCyclesOneOf {
4638
4772
  /** Whether subscription is renewed automatically at the end of each period. Cannot be `false`, instead set `billingCycles`. */
@@ -5036,6 +5170,7 @@ interface ReadOnlyVariantSearchSpec extends SearchSpec {
5036
5170
  'price.actualPrice.amount',
5037
5171
  'price.compareAtPrice.amount',
5038
5172
  'productData.directCategoryIds',
5173
+ 'productData.handle',
5039
5174
  'productData.name',
5040
5175
  'productData.productId',
5041
5176
  'productData.productType',
@@ -5065,6 +5200,7 @@ interface ReadOnlyVariantSearchSpec extends SearchSpec {
5065
5200
  'price.actualPrice.amount',
5066
5201
  'price.compareAtPrice.amount',
5067
5202
  'productData.directCategoryIds',
5203
+ 'productData.handle',
5068
5204
  'productData.name',
5069
5205
  'productData.productId',
5070
5206
  'productData.productType',
@@ -5195,4 +5331,4 @@ type ReadOnlyVariantSearch = {
5195
5331
  timeZone?: CommonSearchWithEntityContext['timeZone'] | null;
5196
5332
  };
5197
5333
 
5198
- export { DecorationType as $, AggregationType as A, ButtonDataType as B, CommonSortOrder as C, DateHistogramAggregationInterval as D, Crop as E, ThumbnailsAlignment as F, GIFType as G, Source as H, InternalRowState as I, StylesPosition as J, MapType 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, ViewRole as U, type VariantsQueryBuilder as V, WeightUnit as W, VoteRole as X, PollLayoutType as Y, PollLayoutDirection as Z, BackgroundType as _, type SearchVariantsResponse as a, type Aggregation as a$, FontType as a0, Position as a1, AspectRatio as a2, Resizing as a3, Placement as a4, Type as a5, Alignment as a6, Layout as a7, AppType as a8, InitialExpandedItems as a9, type CommonVideoResolution as aA, type V3Thumbnail as aB, type V3VariantPhysicalProperties as aC, type V3PricePerUnit as aD, type V3PricePerUnitSettings as aE, type V3VariantDigitalProperties as aF, type V3SecuredMedia as aG, type V3SubscriptionPricesInfo as aH, type V3SubscriptionPrice as aI, type V3SubscriptionPricePerUnit as aJ, type V3InventoryStatus as aK, type ProductFields as aL, type ProductFieldsTypedPropertiesOneOf as aM, type V3PhysicalProperties as aN, type V3WeightMeasurementUnitInfo as aO, type InternalMetadata as aP, type QueryVariantsRequest as aQ, type CursorQuery as aR, type CursorQueryPagingMethodOneOf as aS, type Sorting as aT, type CursorPaging as aU, type QueryVariantsResponse as aV, type CursorPagingMetadata as aW, type Cursors as aX, type SearchVariantsRequest as aY, type CursorSearch as aZ, type CursorSearchPagingMethodOneOf as a_, Direction as aa, VerticalAlignment as ab, NullValue as ac, MediaType as ad, ProductOptionRenderType as ae, ChoiceType as af, ModifierRenderType as ag, AvailabilityStatus as ah, PreorderStatus as ai, ProductPreorderAvailability as aj, ProductType as ak, FileType as al, SubscriptionFrequency as am, DiscountType as an, WebhookIdentityType as ao, type ReadOnlyVariant as ap, type ReadOnlyVariantTypedPropertiesOneOf as aq, type V3OptionChoice as ar, type V3OptionChoiceIds as as, type V3OptionChoiceNames as at, type V3PriceInfo as au, type V3FixedMonetaryAmount as av, type V3RevenueDetails as aw, type V3ProductMedia as ax, type V3ProductMediaSetByOneOf as ay, type V3ProductMediaMediaOneOf as az, SecuredMediaFileType as b, type Border as b$, type AggregationKindOneOf as b0, type RangeBucket as b1, type IncludeMissingValuesOptions as b2, type ValueAggregation as b3, type ValueAggregationOptionsOneOf as b4, type RangeAggregation as b5, type ScalarAggregation as b6, type DateHistogramAggregation as b7, type NestedAggregationItem as b8, type NestedAggregationItemKindOneOf as b9, type CommonSorting as bA, type CommonAggregation as bB, type CommonAggregationKindOneOf as bC, type RangeAggregationRangeBucket as bD, type ValueAggregationIncludeMissingValuesOptions as bE, type AggregationValueAggregation as bF, type AggregationValueAggregationOptionsOneOf as bG, type AggregationRangeAggregation as bH, type AggregationScalarAggregation as bI, type AggregationDateHistogramAggregation as bJ, type NestedAggregationNestedAggregationItem as bK, type NestedAggregationNestedAggregationItemKindOneOf as bL, type AggregationNestedAggregation as bM, type GroupByAggregation as bN, type GroupByAggregationKindOneOf as bO, type CommonSearchDetails as bP, type PlatformPaging as bQ, type DeprecatedSearchVariantsWithOffsetResponse as bR, type PagingMetadata as bS, type MigrateProductVariantsRequest as bT, type Product as bU, type ProductTypedPropertiesOneOf as bV, type RichContent as bW, type Node as bX, type NodeDataOneOf as bY, type NodeStyle as bZ, type ButtonData as b_, type NestedAggregation as ba, type SearchDetails as bb, type AggregationData as bc, type ValueAggregationResult as bd, type RangeAggregationResult as be, type NestedAggregationResults as bf, type NestedAggregationResultsResultOneOf as bg, type ValueResults as bh, type RangeResults as bi, type AggregationResultsScalarResult as bj, type NestedValueAggregationResult as bk, type ValueResult as bl, type RangeResult as bm, type ScalarResult as bn, type NestedResultValue as bo, type NestedResultValueResultOneOf as bp, type Results as bq, type DateHistogramResult as br, type GroupByValueResults as bs, type DateHistogramResults as bt, type NestedResults as bu, type AggregationResults as bv, type AggregationResultsResultOneOf as bw, type DeprecatedSearchVariantsWithOffsetRequest as bx, type PlatformOffsetSearch as by, type PlatformOffsetSearchPagingMethodOneOf as bz, V3ProductType as c, type AppEmbedData as c$, type Colors as c0, type PluginContainerData as c1, type PluginContainerDataWidth as c2, type PluginContainerDataWidthDataOneOf as c3, type Spoiler as c4, type Height as c5, type Styles as c6, type Link as c7, type LinkDataOneOf as c8, type Rel as c9, type LinkPreviewDataStyles as cA, type MapData as cB, type MapSettings as cC, type ParagraphData as cD, type PollData as cE, type Permissions as cF, type Option as cG, type PollSettings as cH, type PollLayout as cI, type OptionLayout as cJ, type Gradient as cK, type Background as cL, type BackgroundBackgroundOneOf as cM, type PollDesign as cN, type OptionDesign as cO, type Poll as cP, type PollDataLayout as cQ, type Design as cR, type TextData as cS, type Decoration as cT, type DecorationDataOneOf as cU, type AnchorData as cV, type ColorData as cW, type LinkData as cX, type MentionData as cY, type FontSizeData as cZ, type SpoilerData as c_, type CodeBlockData as ca, type TextStyle as cb, type DividerData as cc, type FileData as cd, type FileSource as ce, type FileSourceDataOneOf as cf, type PDFSettings as cg, type GalleryData as ch, type V1Media as ci, type Image as cj, type Video as ck, type Item as cl, type ItemDataOneOf as cm, type GalleryOptions as cn, type GalleryOptionsLayout as co, type ItemStyle as cp, type Thumbnails as cq, type GIFData as cr, type GIF as cs, type HeadingData as ct, type HTMLData as cu, type HTMLDataDataOneOf as cv, type ImageData as cw, type StylesBorder as cx, type ImageDataStyles as cy, type LinkPreviewData as cz, SortOrder as d, type WeightRange as d$, type AppEmbedDataAppDataOneOf as d0, type BookingData as d1, type EventData as d2, type ButtonStyles as d3, type ImageStyles as d4, type RibbonStyles as d5, type CardStyles as d6, type PricingData as d7, type VideoData as d8, type PlaybackOptions as d9, type SeoSchema as dA, type Keyword as dB, type Tag as dC, type Settings as dD, type ConnectedOption as dE, type ConnectedOptionOptionSettingsOneOf as dF, type ChoicesSettings as dG, type ConnectedOptionChoice as dH, type ConnectedOptionChoiceValueOneOf as dI, type MultipleColors as dJ, type ConnectedModifier as dK, type ConnectedModifierModifierSettingsOneOf as dL, type FreeTextSettings as dM, type ModifierChoicesSettings as dN, type ConnectedModifierChoice as dO, type ConnectedModifierChoiceValueOneOf as dP, type Brand as dQ, type InfoSection as dR, type Ribbon as dS, type ProductCategoriesInfo as dT, type ProductCategory as dU, type ProductCategoryIdsInfo as dV, type PriceRange as dW, type FixedMonetaryAmount as dX, type Inventory as dY, type PhysicalProperties as dZ, type PricePerUnitSettings as d_, type EmbedData as da, type Oembed as db, type CollapsibleListData as dc, type TableData as dd, type Dimensions as de, type TableCellData as df, type CellStyle as dg, type BorderColors as dh, type ListValue as di, type AudioData as dj, type OrderedListData as dk, type BulletedListData as dl, type BlockquoteData as dm, type CaptionData as dn, type LayoutCellData as dp, type Metadata as dq, type DocumentStyle as dr, type TextNodeStyle as ds, type Media as dt, type ProductMedia as du, type ProductMediaSetByOneOf as dv, type ProductMediaMediaOneOf as dw, type VideoResolution as dx, type Thumbnail as dy, type MediaItemsInfo as dz, RequestedFields as e, type ValueAggregationSortDirectionWithLiterals as e$, type PricePerUnitRange as e0, type PricePerUnitRangePricePerUnit as e1, type WeightMeasurementUnitInfo as e2, type BreadcrumbsInfo as e3, type BreadCrumb as e4, type VariantsInfo as e5, type Variant as e6, type VariantTypedPropertiesOneOf as e7, type OptionChoice as e8, type OptionChoiceIds as e9, type EntityUpdatedEvent as eA, type EntityDeletedEvent as eB, type ActionEvent as eC, type Empty as eD, type MessageEnvelope as eE, type IdentificationData as eF, type IdentificationDataIdOneOf as eG, type VariantsQueryResult as eH, type ReadOnlyVariantSearchSpec as eI, type ProductMediaMediaTypeWithLiterals as eJ, type MeasurementUnitWithLiterals as eK, type SecuredMediaFileTypeWithLiterals as eL, type V3ProductTypeWithLiterals as eM, type WeightUnitWithLiterals as eN, type InternalRowStateWithLiterals as eO, type SortOrderWithLiterals as eP, type RequestedFieldsWithLiterals as eQ, type SortTypeWithLiterals as eR, type SortDirectionWithLiterals as eS, type MissingValuesWithLiterals as eT, type ScalarTypeWithLiterals as eU, type NestedAggregationTypeWithLiterals as eV, type IntervalWithLiterals as eW, type AggregationTypeWithLiterals as eX, type ModeWithLiterals as eY, type CommonSortOrderWithLiterals as eZ, type ValueAggregationSortTypeWithLiterals as e_, type OptionChoiceNames as ea, type PriceInfo as eb, type RevenueDetails as ec, type VariantPhysicalProperties as ed, type PricePerUnit as ee, type VariantDigitalProperties as ef, type SecuredMedia as eg, type SubscriptionPricesInfo as eh, type SubscriptionPrice as ei, type SubscriptionPricePerUnit as ej, type InventoryStatus as ek, type ExtendedFields as el, type SubscriptionDetails as em, type Subscription as en, type SubscriptionCyclesOneOf as eo, type SubscriptionDiscount as ep, type SubscriptionDiscountDiscountOneOf as eq, type VariantSummary as er, type MinVariantPriceInfo as es, type MigrateProductVariantsResponse as et, type RecoverProductVariantsRequest as eu, type RecoverProductVariantsResponse as ev, type DomainEvent as ew, type DomainEventBodyOneOf as ex, type EntityCreatedEvent as ey, type RestoreInfo as ez, SortType as f, type ValueAggregationMissingValuesWithLiterals as f0, type CommonScalarTypeWithLiterals as f1, type NestedAggregationNestedAggregationTypeWithLiterals as f2, type DateHistogramAggregationIntervalWithLiterals as f3, type CommonAggregationTypeWithLiterals as f4, type SearchDetailsModeWithLiterals as f5, type NodeTypeWithLiterals as f6, type WidthTypeWithLiterals as f7, type PluginContainerDataAlignmentWithLiterals as f8, type ButtonDataTypeWithLiterals as f9, type AlignmentWithLiterals as fA, type LayoutWithLiterals as fB, type AppTypeWithLiterals as fC, type InitialExpandedItemsWithLiterals as fD, type DirectionWithLiterals as fE, type VerticalAlignmentWithLiterals as fF, type NullValueWithLiterals as fG, type MediaTypeWithLiterals as fH, type ProductOptionRenderTypeWithLiterals as fI, type ChoiceTypeWithLiterals as fJ, type ModifierRenderTypeWithLiterals as fK, type AvailabilityStatusWithLiterals as fL, type PreorderStatusWithLiterals as fM, type ProductPreorderAvailabilityWithLiterals as fN, type ProductTypeWithLiterals as fO, type FileTypeWithLiterals as fP, type SubscriptionFrequencyWithLiterals as fQ, type DiscountTypeWithLiterals as fR, type WebhookIdentityTypeWithLiterals as fS, type CommonSearchWithEntityContext as fT, queryVariants as fU, type TargetWithLiterals as fa, type TextAlignmentWithLiterals as fb, type LineStyleWithLiterals as fc, type WidthWithLiterals as fd, type DividerDataAlignmentWithLiterals as fe, type ViewModeWithLiterals as ff, type LayoutTypeWithLiterals as fg, type OrientationWithLiterals as fh, type CropWithLiterals as fi, type ThumbnailsAlignmentWithLiterals as fj, type GIFTypeWithLiterals as fk, type SourceWithLiterals as fl, type StylesPositionWithLiterals as fm, type MapTypeWithLiterals as fn, type ViewRoleWithLiterals as fo, type VoteRoleWithLiterals as fp, type PollLayoutTypeWithLiterals as fq, type PollLayoutDirectionWithLiterals as fr, type BackgroundTypeWithLiterals as fs, type DecorationTypeWithLiterals as ft, type FontTypeWithLiterals as fu, type PositionWithLiterals as fv, type AspectRatioWithLiterals as fw, type ResizingWithLiterals as fx, type PlacementWithLiterals as fy, type TypeWithLiterals as fz, SortDirection as g, MissingValues as h, ScalarType as i, Interval as j, Mode as k, ValueAggregationSortType as l, ValueAggregationSortDirection as m, ValueAggregationMissingValues as n, CommonScalarType as o, NestedAggregationNestedAggregationType as p, CommonAggregationType as q, SearchDetailsMode as r, NodeType as s, WidthType as t, PluginContainerDataAlignment as u, TextAlignment as v, Width as w, DividerDataAlignment as x, ViewMode as y, LayoutType as z };
5334
+ export { DecorationType as $, AggregationType as A, ButtonDataType as B, CommonSortOrder as C, DateHistogramAggregationInterval as D, Crop as E, ThumbnailsAlignment as F, GIFType as G, Source as H, InternalRowState as I, StylesPosition as J, MapType 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, ViewRole as U, type VariantsQueryBuilder as V, WeightUnit as W, VoteRole as X, PollLayoutType as Y, PollLayoutDirection as Z, BackgroundType as _, type SearchVariantsResponse as a, type Cursors as a$, FontType as a0, Position as a1, AspectRatio as a2, Resizing as a3, Placement as a4, Type as a5, Alignment as a6, Layout as a7, AppType as a8, InitialExpandedItems as a9, type V3RevenueDetails as aA, type V3ProductMedia as aB, type V3ProductMediaSetByOneOf as aC, type V3ProductMediaMediaOneOf as aD, type CommonVideoResolution as aE, type V3Thumbnail as aF, type V3VariantPhysicalProperties as aG, type V3PricePerUnit as aH, type V3PricePerUnitSettings as aI, type V3VariantDigitalProperties as aJ, type V3SecuredMedia as aK, type V3SubscriptionPricesInfo as aL, type V3SubscriptionPrice as aM, type V3SubscriptionPricePerUnit as aN, type V3InventoryStatus as aO, type ProductFields as aP, type ProductFieldsTypedPropertiesOneOf as aQ, type V3PhysicalProperties as aR, type V3WeightMeasurementUnitInfo as aS, type InternalMetadata as aT, type QueryVariantsRequest as aU, type CursorQuery as aV, type CursorQueryPagingMethodOneOf as aW, type Sorting as aX, type CursorPaging as aY, type QueryVariantsResponse as aZ, type CursorPagingMetadata as a_, Direction as aa, VerticalAlignment as ab, NullValue as ac, Scaling as ad, ImagePosition as ae, VerticalAlignmentAlignment as af, ResponsivenessBehaviour as ag, MediaType as ah, ProductOptionRenderType as ai, ChoiceType as aj, ModifierRenderType as ak, AvailabilityStatus as al, PreorderStatus as am, ProductPreorderAvailability as an, ProductType as ao, FileType as ap, SubscriptionFrequency as aq, DiscountType as ar, WebhookIdentityType as as, type ReadOnlyVariant as at, type ReadOnlyVariantTypedPropertiesOneOf as au, type V3OptionChoice as av, type V3OptionChoiceIds as aw, type V3OptionChoiceNames as ax, type V3PriceInfo as ay, type V3FixedMonetaryAmount as az, SecuredMediaFileType as b, type Node as b$, type SearchVariantsRequest as b0, type CursorSearch as b1, type CursorSearchPagingMethodOneOf as b2, type Aggregation as b3, type AggregationKindOneOf as b4, type RangeBucket as b5, type IncludeMissingValuesOptions as b6, type ValueAggregation as b7, type ValueAggregationOptionsOneOf as b8, type RangeAggregation as b9, type AggregationResultsResultOneOf as bA, type DeprecatedSearchVariantsWithOffsetRequest as bB, type PlatformOffsetSearch as bC, type PlatformOffsetSearchPagingMethodOneOf as bD, type CommonSorting as bE, type CommonAggregation as bF, type CommonAggregationKindOneOf as bG, type RangeAggregationRangeBucket as bH, type ValueAggregationIncludeMissingValuesOptions as bI, type AggregationValueAggregation as bJ, type AggregationValueAggregationOptionsOneOf as bK, type AggregationRangeAggregation as bL, type AggregationScalarAggregation as bM, type AggregationDateHistogramAggregation as bN, type NestedAggregationNestedAggregationItem as bO, type NestedAggregationNestedAggregationItemKindOneOf as bP, type AggregationNestedAggregation as bQ, type GroupByAggregation as bR, type GroupByAggregationKindOneOf as bS, type CommonSearchDetails as bT, type PlatformPaging as bU, type DeprecatedSearchVariantsWithOffsetResponse as bV, type PagingMetadata as bW, type MigrateProductVariantsRequest as bX, type Product as bY, type ProductTypedPropertiesOneOf as bZ, type RichContent as b_, type ScalarAggregation as ba, type DateHistogramAggregation as bb, type NestedAggregationItem as bc, type NestedAggregationItemKindOneOf as bd, type NestedAggregation as be, type SearchDetails as bf, type AggregationData as bg, type ValueAggregationResult as bh, type RangeAggregationResult as bi, type NestedAggregationResults as bj, type NestedAggregationResultsResultOneOf as bk, type ValueResults as bl, type RangeResults as bm, type AggregationResultsScalarResult as bn, type NestedValueAggregationResult as bo, type ValueResult as bp, type RangeResult as bq, type ScalarResult as br, type NestedResultValue as bs, type NestedResultValueResultOneOf as bt, type Results as bu, type DateHistogramResult as bv, type GroupByValueResults as bw, type DateHistogramResults as bx, type NestedResults as by, type AggregationResults as bz, V3ProductType as c, type LinkData as c$, type NodeDataOneOf as c0, type NodeStyle as c1, type ButtonData as c2, type Border as c3, type Colors as c4, type PluginContainerData as c5, type PluginContainerDataWidth as c6, type PluginContainerDataWidthDataOneOf as c7, type Spoiler as c8, type Height as c9, type ImageData as cA, type StylesBorder as cB, type ImageDataStyles as cC, type LinkPreviewData as cD, type LinkPreviewDataStyles as cE, type MapData as cF, type MapSettings as cG, type ParagraphData as cH, type PollData as cI, type Permissions as cJ, type Option as cK, type PollSettings as cL, type PollLayout as cM, type OptionLayout as cN, type Gradient as cO, type Background as cP, type BackgroundBackgroundOneOf as cQ, type PollDesign as cR, type OptionDesign as cS, type Poll as cT, type PollDataLayout as cU, type Design as cV, type TextData as cW, type Decoration as cX, type DecorationDataOneOf as cY, type AnchorData as cZ, type ColorData as c_, type Styles as ca, type Link as cb, type LinkDataOneOf as cc, type Rel as cd, type CodeBlockData as ce, type TextStyle as cf, type DividerData as cg, type FileData as ch, type FileSource as ci, type FileSourceDataOneOf as cj, type PDFSettings as ck, type GalleryData as cl, type V1Media as cm, type Image as cn, type Video as co, type Item as cp, type ItemDataOneOf as cq, type GalleryOptions as cr, type GalleryOptionsLayout as cs, type ItemStyle as ct, type Thumbnails as cu, type GIFData as cv, type GIF as cw, type HeadingData as cx, type HTMLData as cy, type HTMLDataDataOneOf as cz, SortOrder as d, type ProductCategoryIdsInfo as d$, type MentionData as d0, type FontSizeData as d1, type SpoilerData as d2, type AppEmbedData as d3, type AppEmbedDataAppDataOneOf as d4, type BookingData as d5, type EventData as d6, type ButtonStyles as d7, type ImageStyles as d8, type RibbonStyles as d9, type ProductMedia as dA, type ProductMediaSetByOneOf as dB, type ProductMediaMediaOneOf as dC, type VideoResolution as dD, type Thumbnail as dE, type MediaItemsInfo as dF, type SeoSchema as dG, type Keyword as dH, type Tag as dI, type Settings as dJ, type ConnectedOption as dK, type ConnectedOptionOptionSettingsOneOf as dL, type ChoicesSettings as dM, type ConnectedOptionChoice as dN, type ConnectedOptionChoiceValueOneOf as dO, type MultipleColors as dP, type ConnectedModifier as dQ, type ConnectedModifierModifierSettingsOneOf as dR, type FreeTextSettings as dS, type ModifierChoicesSettings as dT, type ConnectedModifierChoice as dU, type ConnectedModifierChoiceValueOneOf as dV, type Brand as dW, type InfoSection as dX, type Ribbon as dY, type ProductCategoriesInfo as dZ, type ProductCategory as d_, type CardStyles as da, type PricingData as db, type VideoData as dc, type PlaybackOptions as dd, type EmbedData as de, type Oembed as df, type CollapsibleListData as dg, type TableData as dh, type Dimensions as di, type TableCellData as dj, type CellStyle as dk, type BorderColors as dl, type ListValue as dm, type AudioData as dn, type OrderedListData as dp, type BulletedListData as dq, type BlockquoteData as dr, type CaptionData as ds, type LayoutData as dt, type BackgroundImage as du, type LayoutCellData as dv, type Metadata as dw, type DocumentStyle as dx, type TextNodeStyle as dy, type Media as dz, RequestedFields as e, type NestedAggregationTypeWithLiterals as e$, type PriceRange as e0, type FixedMonetaryAmount as e1, type Inventory as e2, type PhysicalProperties as e3, type PricePerUnitSettings as e4, type WeightRange as e5, type PricePerUnitRange as e6, type PricePerUnitRangePricePerUnit as e7, type WeightMeasurementUnitInfo as e8, type BreadcrumbsInfo as e9, type RecoverProductVariantsRequest as eA, type RecoverProductVariantsResponse as eB, type DomainEvent as eC, type DomainEventBodyOneOf as eD, type EntityCreatedEvent as eE, type RestoreInfo as eF, type EntityUpdatedEvent as eG, type EntityDeletedEvent as eH, type ActionEvent as eI, type Empty as eJ, type MessageEnvelope as eK, type IdentificationData as eL, type IdentificationDataIdOneOf as eM, type VariantsQueryResult as eN, type ReadOnlyVariantSearchSpec as eO, type ProductMediaMediaTypeWithLiterals as eP, type MeasurementUnitWithLiterals as eQ, type SecuredMediaFileTypeWithLiterals as eR, type V3ProductTypeWithLiterals as eS, type WeightUnitWithLiterals as eT, type InternalRowStateWithLiterals as eU, type SortOrderWithLiterals as eV, type RequestedFieldsWithLiterals as eW, type SortTypeWithLiterals as eX, type SortDirectionWithLiterals as eY, type MissingValuesWithLiterals as eZ, type ScalarTypeWithLiterals as e_, type BreadCrumb as ea, type VariantsInfo as eb, type Variant as ec, type VariantTypedPropertiesOneOf as ed, type OptionChoice as ee, type OptionChoiceIds as ef, type OptionChoiceNames as eg, type PriceInfo as eh, type RevenueDetails as ei, type VariantPhysicalProperties as ej, type PricePerUnit as ek, type VariantDigitalProperties as el, type SecuredMedia as em, type SubscriptionPricesInfo as en, type SubscriptionPrice as eo, type SubscriptionPricePerUnit as ep, type InventoryStatus as eq, type ExtendedFields as er, type SubscriptionDetails as es, type Subscription as et, type SubscriptionCyclesOneOf as eu, type SubscriptionDiscount as ev, type SubscriptionDiscountDiscountOneOf as ew, type VariantSummary as ex, type MinVariantPriceInfo as ey, type MigrateProductVariantsResponse as ez, SortType as f, type DiscountTypeWithLiterals as f$, type IntervalWithLiterals as f0, type AggregationTypeWithLiterals as f1, type ModeWithLiterals as f2, type CommonSortOrderWithLiterals as f3, type ValueAggregationSortTypeWithLiterals as f4, type ValueAggregationSortDirectionWithLiterals as f5, type ValueAggregationMissingValuesWithLiterals as f6, type CommonScalarTypeWithLiterals as f7, type NestedAggregationNestedAggregationTypeWithLiterals as f8, type DateHistogramAggregationIntervalWithLiterals as f9, type FontTypeWithLiterals as fA, type PositionWithLiterals as fB, type AspectRatioWithLiterals as fC, type ResizingWithLiterals as fD, type PlacementWithLiterals as fE, type TypeWithLiterals as fF, type AlignmentWithLiterals as fG, type LayoutWithLiterals as fH, type AppTypeWithLiterals as fI, type InitialExpandedItemsWithLiterals as fJ, type DirectionWithLiterals as fK, type VerticalAlignmentWithLiterals as fL, type NullValueWithLiterals as fM, type ScalingWithLiterals as fN, type ImagePositionWithLiterals as fO, type VerticalAlignmentAlignmentWithLiterals as fP, type ResponsivenessBehaviourWithLiterals as fQ, type MediaTypeWithLiterals as fR, type ProductOptionRenderTypeWithLiterals as fS, type ChoiceTypeWithLiterals as fT, type ModifierRenderTypeWithLiterals as fU, type AvailabilityStatusWithLiterals as fV, type PreorderStatusWithLiterals as fW, type ProductPreorderAvailabilityWithLiterals as fX, type ProductTypeWithLiterals as fY, type FileTypeWithLiterals as fZ, type SubscriptionFrequencyWithLiterals as f_, type CommonAggregationTypeWithLiterals as fa, type SearchDetailsModeWithLiterals as fb, type NodeTypeWithLiterals as fc, type WidthTypeWithLiterals as fd, type PluginContainerDataAlignmentWithLiterals as fe, type ButtonDataTypeWithLiterals as ff, type TargetWithLiterals as fg, type TextAlignmentWithLiterals as fh, type LineStyleWithLiterals as fi, type WidthWithLiterals as fj, type DividerDataAlignmentWithLiterals as fk, type ViewModeWithLiterals as fl, type LayoutTypeWithLiterals as fm, type OrientationWithLiterals as fn, type CropWithLiterals as fo, type ThumbnailsAlignmentWithLiterals as fp, type GIFTypeWithLiterals as fq, type SourceWithLiterals as fr, type StylesPositionWithLiterals as fs, type MapTypeWithLiterals as ft, type ViewRoleWithLiterals as fu, type VoteRoleWithLiterals as fv, type PollLayoutTypeWithLiterals as fw, type PollLayoutDirectionWithLiterals as fx, type BackgroundTypeWithLiterals as fy, type DecorationTypeWithLiterals as fz, SortDirection as g, type WebhookIdentityTypeWithLiterals as g0, type CommonSearchWithEntityContext as g1, queryVariants as g2, MissingValues as h, ScalarType as i, Interval as j, Mode as k, ValueAggregationSortType as l, ValueAggregationSortDirection as m, ValueAggregationMissingValues as n, CommonScalarType as o, NestedAggregationNestedAggregationType as p, CommonAggregationType as q, SearchDetailsMode as r, NodeType as s, WidthType as t, PluginContainerDataAlignment as u, TextAlignment as v, Width as w, DividerDataAlignment as x, ViewMode as y, LayoutType as z };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_stores_read-only-variants-v-3",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -50,5 +50,5 @@
50
50
  "fqdn": "wix.stores.catalog.v3.read_only_variant"
51
51
  }
52
52
  },
53
- "falconPackageHash": "9bfedcaaa978ae1dd9f4a2ea915c403221f880059f57a42e05acfb54"
53
+ "falconPackageHash": "4a58f8dd0e4993d18cffb47b910af8f70f3274b525f6a79395aa8889"
54
54
  }