@wix/auto_sdk_stores_read-only-variants-v-3 1.0.19 → 1.0.21

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 (33) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js +69 -18
  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 +69 -18
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +1 -1
  8. package/build/{internal/cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Cq2knsK7.d.ts → cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DV4YPILE.d.ts} +215 -19
  9. package/build/es/index.d.mts +2 -2
  10. package/build/es/index.mjs +62 -18
  11. package/build/es/index.mjs.map +1 -1
  12. package/build/es/index.typings.d.mts +2 -2
  13. package/build/es/index.typings.mjs +62 -18
  14. package/build/es/index.typings.mjs.map +1 -1
  15. package/build/es/meta.d.mts +1 -1
  16. package/build/{internal/es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Cq2knsK7.d.mts → es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-DV4YPILE.d.mts} +215 -19
  17. package/build/internal/cjs/index.d.ts +2 -2
  18. package/build/internal/cjs/index.js +69 -18
  19. package/build/internal/cjs/index.js.map +1 -1
  20. package/build/internal/cjs/index.typings.d.ts +2 -2
  21. package/build/internal/cjs/index.typings.js +69 -18
  22. package/build/internal/cjs/index.typings.js.map +1 -1
  23. package/build/internal/cjs/meta.d.ts +1 -1
  24. package/build/{cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-HYhd7Ycb.d.ts → internal/cjs/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BuiYV2RM.d.ts} +221 -13
  25. package/build/internal/es/index.d.mts +2 -2
  26. package/build/internal/es/index.mjs +62 -18
  27. package/build/internal/es/index.mjs.map +1 -1
  28. package/build/internal/es/index.typings.d.mts +2 -2
  29. package/build/internal/es/index.typings.mjs +62 -18
  30. package/build/internal/es/index.typings.mjs.map +1 -1
  31. package/build/internal/es/meta.d.mts +1 -1
  32. package/build/{es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-HYhd7Ycb.d.mts → internal/es/stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BuiYV2RM.d.mts} +221 -13
  33. package/package.json +2 -2
@@ -1,4 +1,4 @@
1
- import { aJ as QueryVariantsRequest$1, aO as QueryVariantsResponse$1, aR as SearchVariantsRequest$1, a as SearchVariantsResponse$1 } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Cq2knsK7.js';
1
+ import { aQ as QueryVariantsRequest$1, aV as QueryVariantsResponse$1, aY as SearchVariantsRequest$1, a as SearchVariantsResponse$1 } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BuiYV2RM.js';
2
2
  import '@wix/sdk-types';
3
3
 
4
4
  /**
@@ -1607,7 +1607,7 @@ interface CommonSearchDetails {
1607
1607
  */
1608
1608
  expression?: string | null;
1609
1609
  /**
1610
- * Fields to search in. If the array is empty, all searchable fields are searched. Use dot notation to specify a JSON path. For example, For example, `order.address.streetName`.
1610
+ * Fields to search in. If the array is empty, all searchable fields are searched. Use dot notation to specify a JSON path. For example, `order.address.streetName`.
1611
1611
  * @maxLength 200
1612
1612
  * @maxSize 20
1613
1613
  */
@@ -1836,6 +1836,12 @@ interface Product extends ProductTypedPropertiesOneOf {
1836
1836
  * @readonly
1837
1837
  */
1838
1838
  handle?: string | null;
1839
+ /**
1840
+ * ID of the last import job that affected the product.
1841
+ * @internal
1842
+ * @format GUID
1843
+ */
1844
+ importId?: string | null;
1839
1845
  /**
1840
1846
  * 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
1847
  *
@@ -2068,7 +2074,7 @@ interface ButtonData {
2068
2074
  /** Styling for the button's container. */
2069
2075
  containerData?: PluginContainerData;
2070
2076
  /** The button type. */
2071
- type?: TypeWithLiterals;
2077
+ type?: ButtonDataTypeWithLiterals;
2072
2078
  /** Styling for the button. */
2073
2079
  styles?: Styles;
2074
2080
  /** The text to display on the button. */
@@ -2176,14 +2182,14 @@ interface Height {
2176
2182
  /** A custom height value in pixels. */
2177
2183
  custom?: string | null;
2178
2184
  }
2179
- declare enum Type {
2185
+ declare enum ButtonDataType {
2180
2186
  /** Regular link button */
2181
2187
  LINK = "LINK",
2182
2188
  /** Triggers custom action that is defined in plugin configuration by the consumer */
2183
2189
  ACTION = "ACTION"
2184
2190
  }
2185
2191
  /** @enumType */
2186
- type TypeWithLiterals = Type | 'LINK' | 'ACTION';
2192
+ type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';
2187
2193
  interface Styles {
2188
2194
  /**
2189
2195
  * Deprecated: Use `borderWidth` and `borderRadius` instead.
@@ -2316,7 +2322,7 @@ interface DividerData {
2316
2322
  /** Divider width. */
2317
2323
  width?: WidthWithLiterals;
2318
2324
  /** Divider alignment. */
2319
- alignment?: AlignmentWithLiterals;
2325
+ alignment?: DividerDataAlignmentWithLiterals;
2320
2326
  }
2321
2327
  declare enum LineStyle {
2322
2328
  /** Single Line */
@@ -2340,7 +2346,7 @@ declare enum Width {
2340
2346
  }
2341
2347
  /** @enumType */
2342
2348
  type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
2343
- declare enum Alignment {
2349
+ declare enum DividerDataAlignment {
2344
2350
  /** Center alignment */
2345
2351
  CENTER = "CENTER",
2346
2352
  /** Left alignment */
@@ -2349,7 +2355,7 @@ declare enum Alignment {
2349
2355
  RIGHT = "RIGHT"
2350
2356
  }
2351
2357
  /** @enumType */
2352
- type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
2358
+ type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
2353
2359
  interface FileData {
2354
2360
  /** Styling for the file's container. */
2355
2361
  containerData?: PluginContainerData;
@@ -2474,7 +2480,7 @@ interface ItemDataOneOf {
2474
2480
  }
2475
2481
  interface GalleryOptions {
2476
2482
  /** Gallery layout. */
2477
- layout?: Layout;
2483
+ layout?: GalleryOptionsLayout;
2478
2484
  /** Styling for gallery items. */
2479
2485
  item?: ItemStyle;
2480
2486
  /** Styling for gallery thumbnail images. */
@@ -2534,7 +2540,7 @@ declare enum ThumbnailsAlignment {
2534
2540
  }
2535
2541
  /** @enumType */
2536
2542
  type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
2537
- interface Layout {
2543
+ interface GalleryOptionsLayout {
2538
2544
  /** Gallery layout type. */
2539
2545
  type?: LayoutTypeWithLiterals;
2540
2546
  /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
@@ -2696,7 +2702,7 @@ interface LinkPreviewData {
2696
2702
  /** Styling for the link preview. */
2697
2703
  styles?: LinkPreviewDataStyles;
2698
2704
  }
2699
- declare enum Position {
2705
+ declare enum StylesPosition {
2700
2706
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
2701
2707
  START = "START",
2702
2708
  /** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
@@ -2707,7 +2713,7 @@ declare enum Position {
2707
2713
  HIDDEN = "HIDDEN"
2708
2714
  }
2709
2715
  /** @enumType */
2710
- type PositionWithLiterals = Position | 'START' | 'END' | 'TOP' | 'HIDDEN';
2716
+ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
2711
2717
  interface LinkPreviewDataStyles {
2712
2718
  /**
2713
2719
  * Background color as a hexadecimal value.
@@ -2739,7 +2745,7 @@ interface LinkPreviewDataStyles {
2739
2745
  */
2740
2746
  borderColor?: string | null;
2741
2747
  /** Position of thumbnail. Defaults to `START`. */
2742
- thumbnailPosition?: PositionWithLiterals;
2748
+ thumbnailPosition?: StylesPositionWithLiterals;
2743
2749
  }
2744
2750
  interface MapData {
2745
2751
  /** Styling for the map's container. */
@@ -3093,6 +3099,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
3093
3099
  url?: string | null;
3094
3100
  /** An image for the embedded content. */
3095
3101
  image?: V1Media;
3102
+ /** Whether to hide the image. */
3103
+ hideImage?: boolean | null;
3104
+ /** Whether to hide the title. */
3105
+ hideTitle?: boolean | null;
3106
+ /** Whether to hide the price. */
3107
+ hidePrice?: boolean | null;
3108
+ /** Whether to hide the description (Event and Booking). */
3109
+ hideDescription?: boolean | null;
3110
+ /** Whether to hide the date and time (Event). */
3111
+ hideDateTime?: boolean | null;
3112
+ /** Whether to hide the location (Event). */
3113
+ hideLocation?: boolean | null;
3114
+ /** Whether to hide the duration (Booking). */
3115
+ hideDuration?: boolean | null;
3116
+ /** Whether to hide the button. */
3117
+ hideButton?: boolean | null;
3118
+ /** Whether to hide the ribbon. */
3119
+ hideRibbon?: boolean | null;
3120
+ /** Button styling options. */
3121
+ buttonStyles?: ButtonStyles;
3122
+ /** Image styling options. */
3123
+ imageStyles?: ImageStyles;
3124
+ /** Ribbon styling options. */
3125
+ ribbonStyles?: RibbonStyles;
3126
+ /** Card styling options. */
3127
+ cardStyles?: CardStyles;
3096
3128
  }
3097
3129
  /** @oneof */
3098
3130
  interface AppEmbedDataAppDataOneOf {
@@ -3101,6 +3133,66 @@ interface AppEmbedDataAppDataOneOf {
3101
3133
  /** Data for embedded Wix Events content. */
3102
3134
  eventData?: EventData;
3103
3135
  }
3136
+ declare enum Position {
3137
+ /** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
3138
+ START = "START",
3139
+ /** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
3140
+ END = "END",
3141
+ /** Image positioned at the top */
3142
+ TOP = "TOP"
3143
+ }
3144
+ /** @enumType */
3145
+ type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
3146
+ declare enum AspectRatio {
3147
+ /** 1:1 aspect ratio */
3148
+ SQUARE = "SQUARE",
3149
+ /** 16:9 aspect ratio */
3150
+ RECTANGLE = "RECTANGLE"
3151
+ }
3152
+ /** @enumType */
3153
+ type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
3154
+ declare enum Resizing {
3155
+ /** Fill the container, may crop the image */
3156
+ FILL = "FILL",
3157
+ /** Fit the image within the container */
3158
+ FIT = "FIT"
3159
+ }
3160
+ /** @enumType */
3161
+ type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
3162
+ declare enum Placement {
3163
+ /** Ribbon placed on the image */
3164
+ IMAGE = "IMAGE",
3165
+ /** Ribbon placed on the product information */
3166
+ PRODUCT_INFO = "PRODUCT_INFO"
3167
+ }
3168
+ /** @enumType */
3169
+ type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
3170
+ declare enum Type {
3171
+ /** Card with visible border and background */
3172
+ CONTAINED = "CONTAINED",
3173
+ /** Card without visible border */
3174
+ FRAMELESS = "FRAMELESS"
3175
+ }
3176
+ /** @enumType */
3177
+ type TypeWithLiterals = Type | 'CONTAINED' | 'FRAMELESS';
3178
+ declare enum Alignment {
3179
+ /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
3180
+ START = "START",
3181
+ /** Content centered */
3182
+ CENTER = "CENTER",
3183
+ /** Content aligned to end (right in LTR layouts, left in RTL layouts) */
3184
+ END = "END"
3185
+ }
3186
+ /** @enumType */
3187
+ type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
3188
+ declare enum Layout {
3189
+ /** Elements stacked vertically */
3190
+ STACKED = "STACKED",
3191
+ /** Elements arranged horizontally */
3192
+ SIDE_BY_SIDE = "SIDE_BY_SIDE"
3193
+ }
3194
+ /** @enumType */
3195
+ type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
3104
3196
  declare enum AppType {
3105
3197
  PRODUCT = "PRODUCT",
3106
3198
  EVENT = "EVENT",
@@ -3118,6 +3210,122 @@ interface EventData {
3118
3210
  /** Event location. */
3119
3211
  location?: string | null;
3120
3212
  }
3213
+ interface ButtonStyles {
3214
+ /** Text to display on the button. */
3215
+ buttonText?: string | null;
3216
+ /** Border width in pixels. */
3217
+ borderWidth?: number | null;
3218
+ /** Border radius in pixels. */
3219
+ borderRadius?: number | null;
3220
+ /**
3221
+ * Border color as a hexadecimal value.
3222
+ * @format COLOR_HEX
3223
+ */
3224
+ borderColor?: string | null;
3225
+ /**
3226
+ * Text color as a hexadecimal value.
3227
+ * @format COLOR_HEX
3228
+ */
3229
+ textColor?: string | null;
3230
+ /**
3231
+ * Background color as a hexadecimal value.
3232
+ * @format COLOR_HEX
3233
+ */
3234
+ backgroundColor?: string | null;
3235
+ /**
3236
+ * Border color as a hexadecimal value (hover state).
3237
+ * @format COLOR_HEX
3238
+ */
3239
+ borderColorHover?: string | null;
3240
+ /**
3241
+ * Text color as a hexadecimal value (hover state).
3242
+ * @format COLOR_HEX
3243
+ */
3244
+ textColorHover?: string | null;
3245
+ /**
3246
+ * Background color as a hexadecimal value (hover state).
3247
+ * @format COLOR_HEX
3248
+ */
3249
+ backgroundColorHover?: string | null;
3250
+ /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
3251
+ buttonSize?: string | null;
3252
+ }
3253
+ interface ImageStyles {
3254
+ /** Whether to hide the image. */
3255
+ hideImage?: boolean | null;
3256
+ /** Position of image. Defaults to `START`. */
3257
+ imagePosition?: PositionWithLiterals;
3258
+ /** Aspect ratio for the image. Defaults to `SQUARE`. */
3259
+ aspectRatio?: AspectRatioWithLiterals;
3260
+ /** How the image should be resized. Defaults to `FILL`. */
3261
+ resizing?: ResizingWithLiterals;
3262
+ /**
3263
+ * Image border color as a hexadecimal value.
3264
+ * @format COLOR_HEX
3265
+ */
3266
+ borderColor?: string | null;
3267
+ /** Image border width in pixels. */
3268
+ borderWidth?: number | null;
3269
+ /** Image border radius in pixels. */
3270
+ borderRadius?: number | null;
3271
+ }
3272
+ interface RibbonStyles {
3273
+ /** Text to display on the ribbon. */
3274
+ ribbonText?: string | null;
3275
+ /**
3276
+ * Ribbon background color as a hexadecimal value.
3277
+ * @format COLOR_HEX
3278
+ */
3279
+ backgroundColor?: string | null;
3280
+ /**
3281
+ * Ribbon text color as a hexadecimal value.
3282
+ * @format COLOR_HEX
3283
+ */
3284
+ textColor?: string | null;
3285
+ /**
3286
+ * Ribbon border color as a hexadecimal value.
3287
+ * @format COLOR_HEX
3288
+ */
3289
+ borderColor?: string | null;
3290
+ /** Ribbon border width in pixels. */
3291
+ borderWidth?: number | null;
3292
+ /** Ribbon border radius in pixels. */
3293
+ borderRadius?: number | null;
3294
+ /** Placement of the ribbon. Defaults to `IMAGE`. */
3295
+ ribbonPlacement?: PlacementWithLiterals;
3296
+ }
3297
+ interface CardStyles {
3298
+ /**
3299
+ * Card background color as a hexadecimal value.
3300
+ * @format COLOR_HEX
3301
+ */
3302
+ backgroundColor?: string | null;
3303
+ /**
3304
+ * Card border color as a hexadecimal value.
3305
+ * @format COLOR_HEX
3306
+ */
3307
+ borderColor?: string | null;
3308
+ /** Card border width in pixels. */
3309
+ borderWidth?: number | null;
3310
+ /** Card border radius in pixels. */
3311
+ borderRadius?: number | null;
3312
+ /** Card type. Defaults to `CONTAINED`. */
3313
+ type?: TypeWithLiterals;
3314
+ /** Content alignment. Defaults to `START`. */
3315
+ alignment?: AlignmentWithLiterals;
3316
+ /** Layout for title and price. Defaults to `STACKED`. */
3317
+ titlePriceLayout?: LayoutWithLiterals;
3318
+ /**
3319
+ * Title text color as a hexadecimal value.
3320
+ * @format COLOR_HEX
3321
+ */
3322
+ titleColor?: string | null;
3323
+ /**
3324
+ * Text color as a hexadecimal value.
3325
+ * @format COLOR_HEX
3326
+ */
3327
+ textColor?: string | null;
3328
+ }
3121
3329
  interface VideoData {
3122
3330
  /** Styling for the video's container. */
3123
3331
  containerData?: PluginContainerData;
@@ -4982,4 +5190,4 @@ type ReadOnlyVariantSearch = {
4982
5190
  timeZone?: CommonSearchWithEntityContext['timeZone'] | null;
4983
5191
  };
4984
5192
 
4985
- export { DecorationType as $, AggregationType as A, LayoutType as B, CommonSortOrder as C, DateHistogramAggregationInterval as D, Crop as E, ThumbnailsAlignment as F, GIFType as G, Source as H, InternalRowState as I, Position 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, Type 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 ScalarAggregation as a$, FontType as a0, AppType as a1, InitialExpandedItems as a2, Direction as a3, VerticalAlignment as a4, NullValue as a5, MediaType as a6, ProductOptionRenderType as a7, ChoiceType as a8, ModifierRenderType as a9, type V3SubscriptionPricesInfo as aA, type V3SubscriptionPrice as aB, type V3SubscriptionPricePerUnit as aC, type V3InventoryStatus as aD, type ProductFields as aE, type ProductFieldsTypedPropertiesOneOf as aF, type V3PhysicalProperties as aG, type V3WeightMeasurementUnitInfo as aH, type InternalMetadata as aI, type QueryVariantsRequest as aJ, type CursorQuery as aK, type CursorQueryPagingMethodOneOf as aL, type Sorting as aM, type CursorPaging as aN, type QueryVariantsResponse as aO, type CursorPagingMetadata as aP, type Cursors as aQ, type SearchVariantsRequest as aR, type CursorSearch as aS, type CursorSearchPagingMethodOneOf as aT, type Aggregation as aU, type AggregationKindOneOf as aV, type RangeBucket as aW, type IncludeMissingValuesOptions as aX, type ValueAggregation as aY, type ValueAggregationOptionsOneOf as aZ, type RangeAggregation as a_, AvailabilityStatus as aa, PreorderStatus as ab, ProductPreorderAvailability as ac, ProductType as ad, FileType as ae, SubscriptionFrequency as af, DiscountType as ag, WebhookIdentityType as ah, type ReadOnlyVariant as ai, type ReadOnlyVariantTypedPropertiesOneOf as aj, type V3OptionChoice as ak, type V3OptionChoiceIds as al, type V3OptionChoiceNames as am, type V3PriceInfo as an, type V3FixedMonetaryAmount as ao, type V3RevenueDetails as ap, type V3ProductMedia as aq, type V3ProductMediaSetByOneOf as ar, type V3ProductMediaMediaOneOf as as, type CommonVideoResolution as at, type V3Thumbnail as au, type V3VariantPhysicalProperties as av, type V3PricePerUnit as aw, type V3PricePerUnitSettings as ax, type V3VariantDigitalProperties as ay, type V3SecuredMedia as az, SecuredMediaFileType as b, type Styles as b$, type DateHistogramAggregation as b0, type NestedAggregationItem as b1, type NestedAggregationItemKindOneOf as b2, type NestedAggregation as b3, type SearchDetails as b4, type AggregationData as b5, type ValueAggregationResult as b6, type RangeAggregationResult as b7, type NestedAggregationResults as b8, type NestedAggregationResultsResultOneOf as b9, type AggregationRangeAggregation as bA, type AggregationScalarAggregation as bB, type AggregationDateHistogramAggregation as bC, type NestedAggregationNestedAggregationItem as bD, type NestedAggregationNestedAggregationItemKindOneOf as bE, type AggregationNestedAggregation as bF, type GroupByAggregation as bG, type GroupByAggregationKindOneOf as bH, type CommonSearchDetails as bI, type PlatformPaging as bJ, type DeprecatedSearchVariantsWithOffsetResponse as bK, type PagingMetadata as bL, type MigrateProductVariantsRequest as bM, type Product as bN, type ProductTypedPropertiesOneOf as bO, type RichContent as bP, type Node as bQ, type NodeDataOneOf as bR, type NodeStyle as bS, type ButtonData as bT, type Border as bU, type Colors as bV, type PluginContainerData as bW, type PluginContainerDataWidth as bX, type PluginContainerDataWidthDataOneOf as bY, type Spoiler as bZ, type Height as b_, type ValueResults as ba, type RangeResults as bb, type AggregationResultsScalarResult as bc, type NestedValueAggregationResult as bd, type ValueResult as be, type RangeResult as bf, type ScalarResult as bg, type NestedResultValue as bh, type NestedResultValueResultOneOf as bi, type Results as bj, type DateHistogramResult as bk, type GroupByValueResults as bl, type DateHistogramResults as bm, type NestedResults as bn, type AggregationResults as bo, type AggregationResultsResultOneOf as bp, type DeprecatedSearchVariantsWithOffsetRequest as bq, type PlatformOffsetSearch as br, type PlatformOffsetSearchPagingMethodOneOf as bs, type CommonSorting as bt, type CommonAggregation as bu, type CommonAggregationKindOneOf as bv, type RangeAggregationRangeBucket as bw, type ValueAggregationIncludeMissingValuesOptions as bx, type AggregationValueAggregation as by, type AggregationValueAggregationOptionsOneOf as bz, V3ProductType as c, type Oembed as c$, type Link as c0, type LinkDataOneOf as c1, type Rel as c2, type CodeBlockData as c3, type TextStyle as c4, type DividerData as c5, type FileData as c6, type FileSource as c7, type FileSourceDataOneOf as c8, type PDFSettings as c9, type PollSettings as cA, type PollLayout as cB, type OptionLayout as cC, type Gradient as cD, type Background as cE, type BackgroundBackgroundOneOf as cF, type PollDesign as cG, type OptionDesign as cH, type Poll as cI, type PollDataLayout as cJ, type Design as cK, type TextData as cL, type Decoration as cM, type DecorationDataOneOf as cN, type AnchorData as cO, type ColorData as cP, type LinkData as cQ, type MentionData as cR, type FontSizeData as cS, type SpoilerData as cT, type AppEmbedData as cU, type AppEmbedDataAppDataOneOf as cV, type BookingData as cW, type EventData as cX, type VideoData as cY, type PlaybackOptions as cZ, type EmbedData as c_, type GalleryData as ca, type V1Media as cb, type Image as cc, type Video as cd, type Item as ce, type ItemDataOneOf as cf, type GalleryOptions as cg, type Layout as ch, type ItemStyle as ci, type Thumbnails as cj, type GIFData as ck, type GIF as cl, type HeadingData as cm, type HTMLData as cn, type HTMLDataDataOneOf as co, type ImageData as cp, type StylesBorder as cq, type ImageDataStyles as cr, type LinkPreviewData as cs, type LinkPreviewDataStyles as ct, type MapData as cu, type MapSettings as cv, type ParagraphData as cw, type PollData as cx, type Permissions as cy, type Option as cz, SortOrder as d, type PriceInfo as d$, type CollapsibleListData as d0, type TableData as d1, type Dimensions as d2, type TableCellData as d3, type CellStyle as d4, type BorderColors as d5, type ListValue as d6, type AudioData as d7, type OrderedListData as d8, type BulletedListData as d9, type FreeTextSettings as dA, type ModifierChoicesSettings as dB, type ConnectedModifierChoice as dC, type ConnectedModifierChoiceValueOneOf as dD, type Brand as dE, type InfoSection as dF, type Ribbon as dG, type ProductCategoriesInfo as dH, type ProductCategory as dI, type ProductCategoryIdsInfo as dJ, type PriceRange as dK, type FixedMonetaryAmount as dL, type Inventory as dM, type PhysicalProperties as dN, type PricePerUnitSettings as dO, type WeightRange as dP, type PricePerUnitRange as dQ, type PricePerUnitRangePricePerUnit as dR, type WeightMeasurementUnitInfo as dS, type BreadcrumbsInfo as dT, type BreadCrumb as dU, type VariantsInfo as dV, type Variant as dW, type VariantTypedPropertiesOneOf as dX, type OptionChoice as dY, type OptionChoiceIds as dZ, type OptionChoiceNames as d_, type BlockquoteData as da, type CaptionData as db, type LayoutCellData as dc, type Metadata as dd, type DocumentStyle as de, type TextNodeStyle as df, type Media as dg, type ProductMedia as dh, type ProductMediaSetByOneOf as di, type ProductMediaMediaOneOf as dj, type VideoResolution as dk, type Thumbnail as dl, type MediaItemsInfo as dm, type SeoSchema as dn, type Keyword as dp, type Tag as dq, type Settings as dr, type ConnectedOption as ds, type ConnectedOptionOptionSettingsOneOf as dt, type ChoicesSettings as du, type ConnectedOptionChoice as dv, type ConnectedOptionChoiceValueOneOf as dw, type MultipleColors as dx, type ConnectedModifier as dy, type ConnectedModifierModifierSettingsOneOf as dz, RequestedFields as e, type TextAlignmentWithLiterals as e$, type RevenueDetails as e0, type VariantPhysicalProperties as e1, type PricePerUnit as e2, type VariantDigitalProperties as e3, type SecuredMedia as e4, type SubscriptionPricesInfo as e5, type SubscriptionPrice as e6, type SubscriptionPricePerUnit as e7, type InventoryStatus as e8, type ExtendedFields as e9, type V3ProductTypeWithLiterals as eA, type WeightUnitWithLiterals as eB, type InternalRowStateWithLiterals as eC, type SortOrderWithLiterals as eD, type RequestedFieldsWithLiterals as eE, type SortTypeWithLiterals as eF, type SortDirectionWithLiterals as eG, type MissingValuesWithLiterals as eH, type ScalarTypeWithLiterals as eI, type NestedAggregationTypeWithLiterals as eJ, type IntervalWithLiterals as eK, type AggregationTypeWithLiterals as eL, type ModeWithLiterals as eM, type CommonSortOrderWithLiterals as eN, type ValueAggregationSortTypeWithLiterals as eO, type ValueAggregationSortDirectionWithLiterals as eP, type ValueAggregationMissingValuesWithLiterals as eQ, type CommonScalarTypeWithLiterals as eR, type NestedAggregationNestedAggregationTypeWithLiterals as eS, type DateHistogramAggregationIntervalWithLiterals as eT, type CommonAggregationTypeWithLiterals as eU, type SearchDetailsModeWithLiterals as eV, type NodeTypeWithLiterals as eW, type WidthTypeWithLiterals as eX, type PluginContainerDataAlignmentWithLiterals as eY, type TypeWithLiterals as eZ, type TargetWithLiterals as e_, type SubscriptionDetails as ea, type Subscription as eb, type SubscriptionCyclesOneOf as ec, type SubscriptionDiscount as ed, type SubscriptionDiscountDiscountOneOf as ee, type VariantSummary as ef, type MinVariantPriceInfo as eg, type MigrateProductVariantsResponse as eh, type RecoverProductVariantsRequest as ei, type RecoverProductVariantsResponse as ej, type DomainEvent as ek, type DomainEventBodyOneOf as el, type EntityCreatedEvent as em, type RestoreInfo as en, type EntityUpdatedEvent as eo, type EntityDeletedEvent as ep, type ActionEvent as eq, type Empty as er, type MessageEnvelope as es, type IdentificationData as et, type IdentificationDataIdOneOf as eu, type VariantsQueryResult as ev, type ReadOnlyVariantSearchSpec as ew, type ProductMediaMediaTypeWithLiterals as ex, type MeasurementUnitWithLiterals as ey, type SecuredMediaFileTypeWithLiterals as ez, SortType as f, type LineStyleWithLiterals as f0, type WidthWithLiterals as f1, type AlignmentWithLiterals as f2, type ViewModeWithLiterals as f3, type LayoutTypeWithLiterals as f4, type OrientationWithLiterals as f5, type CropWithLiterals as f6, type ThumbnailsAlignmentWithLiterals as f7, type GIFTypeWithLiterals as f8, type SourceWithLiterals as f9, queryVariants as fA, type CommonSearchWithEntityContext as fB, type PositionWithLiterals as fa, type MapTypeWithLiterals as fb, type ViewRoleWithLiterals as fc, type VoteRoleWithLiterals as fd, type PollLayoutTypeWithLiterals as fe, type PollLayoutDirectionWithLiterals as ff, type BackgroundTypeWithLiterals as fg, type DecorationTypeWithLiterals as fh, type FontTypeWithLiterals as fi, type AppTypeWithLiterals as fj, type InitialExpandedItemsWithLiterals as fk, type DirectionWithLiterals as fl, type VerticalAlignmentWithLiterals as fm, type NullValueWithLiterals as fn, type MediaTypeWithLiterals as fo, type ProductOptionRenderTypeWithLiterals as fp, type ChoiceTypeWithLiterals as fq, type ModifierRenderTypeWithLiterals as fr, type AvailabilityStatusWithLiterals as fs, type PreorderStatusWithLiterals as ft, type ProductPreorderAvailabilityWithLiterals as fu, type ProductTypeWithLiterals as fv, type FileTypeWithLiterals as fw, type SubscriptionFrequencyWithLiterals as fx, type DiscountTypeWithLiterals as fy, type WebhookIdentityTypeWithLiterals 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, Target as v, TextAlignment as w, Width as x, Alignment as y, ViewMode as z };
5193
+ 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 PricePerUnitRange 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 VideoData as d7, type PlaybackOptions as d8, type EmbedData as d9, type Keyword as dA, type Tag as dB, type Settings as dC, type ConnectedOption as dD, type ConnectedOptionOptionSettingsOneOf as dE, type ChoicesSettings as dF, type ConnectedOptionChoice as dG, type ConnectedOptionChoiceValueOneOf as dH, type MultipleColors as dI, type ConnectedModifier as dJ, type ConnectedModifierModifierSettingsOneOf as dK, type FreeTextSettings as dL, type ModifierChoicesSettings as dM, type ConnectedModifierChoice as dN, type ConnectedModifierChoiceValueOneOf as dO, type Brand as dP, type InfoSection as dQ, type Ribbon as dR, type ProductCategoriesInfo as dS, type ProductCategory as dT, type ProductCategoryIdsInfo as dU, type PriceRange as dV, type FixedMonetaryAmount as dW, type Inventory as dX, type PhysicalProperties as dY, type PricePerUnitSettings as dZ, type WeightRange as d_, type Oembed as da, type CollapsibleListData as db, type TableData as dc, type Dimensions as dd, type TableCellData as de, type CellStyle as df, type BorderColors as dg, type ListValue as dh, type AudioData as di, type OrderedListData as dj, type BulletedListData as dk, type BlockquoteData as dl, type CaptionData as dm, type LayoutCellData as dn, type Metadata as dp, type DocumentStyle as dq, type TextNodeStyle as dr, type Media as ds, type ProductMedia as dt, type ProductMediaSetByOneOf as du, type ProductMediaMediaOneOf as dv, type VideoResolution as dw, type Thumbnail as dx, type MediaItemsInfo as dy, type SeoSchema as dz, RequestedFields as e, type ValueAggregationMissingValuesWithLiterals as e$, type PricePerUnitRangePricePerUnit as e0, type WeightMeasurementUnitInfo as e1, type BreadcrumbsInfo as e2, type BreadCrumb as e3, type VariantsInfo as e4, type Variant as e5, type VariantTypedPropertiesOneOf as e6, type OptionChoice as e7, type OptionChoiceIds as e8, type OptionChoiceNames as e9, type EntityDeletedEvent as eA, type ActionEvent as eB, type Empty as eC, type MessageEnvelope as eD, type IdentificationData as eE, type IdentificationDataIdOneOf as eF, type VariantsQueryResult as eG, type ReadOnlyVariantSearchSpec as eH, type ProductMediaMediaTypeWithLiterals as eI, type MeasurementUnitWithLiterals as eJ, type SecuredMediaFileTypeWithLiterals as eK, type V3ProductTypeWithLiterals as eL, type WeightUnitWithLiterals as eM, type InternalRowStateWithLiterals as eN, type SortOrderWithLiterals as eO, type RequestedFieldsWithLiterals as eP, type SortTypeWithLiterals as eQ, type SortDirectionWithLiterals as eR, type MissingValuesWithLiterals as eS, type ScalarTypeWithLiterals as eT, type NestedAggregationTypeWithLiterals as eU, type IntervalWithLiterals as eV, type AggregationTypeWithLiterals as eW, type ModeWithLiterals as eX, type CommonSortOrderWithLiterals as eY, type ValueAggregationSortTypeWithLiterals as eZ, type ValueAggregationSortDirectionWithLiterals as e_, type PriceInfo as ea, type RevenueDetails as eb, type VariantPhysicalProperties as ec, type PricePerUnit as ed, type VariantDigitalProperties as ee, type SecuredMedia as ef, type SubscriptionPricesInfo as eg, type SubscriptionPrice as eh, type SubscriptionPricePerUnit as ei, type InventoryStatus as ej, type ExtendedFields as ek, type SubscriptionDetails as el, type Subscription as em, type SubscriptionCyclesOneOf as en, type SubscriptionDiscount as eo, type SubscriptionDiscountDiscountOneOf as ep, type VariantSummary as eq, type MinVariantPriceInfo as er, type MigrateProductVariantsResponse as es, type RecoverProductVariantsRequest as et, type RecoverProductVariantsResponse as eu, type DomainEvent as ev, type DomainEventBodyOneOf as ew, type EntityCreatedEvent as ex, type RestoreInfo as ey, type EntityUpdatedEvent as ez, SortType as f, type CommonScalarTypeWithLiterals as f0, type NestedAggregationNestedAggregationTypeWithLiterals as f1, type DateHistogramAggregationIntervalWithLiterals as f2, type CommonAggregationTypeWithLiterals as f3, type SearchDetailsModeWithLiterals as f4, type NodeTypeWithLiterals as f5, type WidthTypeWithLiterals as f6, type PluginContainerDataAlignmentWithLiterals as f7, type ButtonDataTypeWithLiterals as f8, type TargetWithLiterals as f9, type LayoutWithLiterals as fA, type AppTypeWithLiterals as fB, type InitialExpandedItemsWithLiterals as fC, type DirectionWithLiterals as fD, type VerticalAlignmentWithLiterals as fE, type NullValueWithLiterals as fF, type MediaTypeWithLiterals as fG, type ProductOptionRenderTypeWithLiterals as fH, type ChoiceTypeWithLiterals as fI, type ModifierRenderTypeWithLiterals as fJ, type AvailabilityStatusWithLiterals as fK, type PreorderStatusWithLiterals as fL, type ProductPreorderAvailabilityWithLiterals as fM, type ProductTypeWithLiterals as fN, type FileTypeWithLiterals as fO, type SubscriptionFrequencyWithLiterals as fP, type DiscountTypeWithLiterals as fQ, type WebhookIdentityTypeWithLiterals as fR, queryVariants as fS, type CommonSearchWithEntityContext as fT, type TextAlignmentWithLiterals as fa, type LineStyleWithLiterals as fb, type WidthWithLiterals as fc, type DividerDataAlignmentWithLiterals as fd, type ViewModeWithLiterals as fe, type LayoutTypeWithLiterals as ff, type OrientationWithLiterals as fg, type CropWithLiterals as fh, type ThumbnailsAlignmentWithLiterals as fi, type GIFTypeWithLiterals as fj, type SourceWithLiterals as fk, type StylesPositionWithLiterals as fl, type MapTypeWithLiterals as fm, type ViewRoleWithLiterals as fn, type VoteRoleWithLiterals as fo, type PollLayoutTypeWithLiterals as fp, type PollLayoutDirectionWithLiterals as fq, type BackgroundTypeWithLiterals as fr, type DecorationTypeWithLiterals as fs, type FontTypeWithLiterals as ft, type PositionWithLiterals as fu, type AspectRatioWithLiterals as fv, type ResizingWithLiterals as fw, type PlacementWithLiterals as fx, type TypeWithLiterals as fy, type AlignmentWithLiterals 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 };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
2
- import { Q as QueryVariantsOptions, V as VariantsQueryBuilder, R as ReadOnlyVariantSearch, S as SearchVariantsOptions, a as SearchVariantsResponse } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Cq2knsK7.mjs';
3
- export { eq as ActionEvent, aU as Aggregation, b5 as AggregationData, bC as AggregationDateHistogramAggregation, aV as AggregationKindOneOf, bF as AggregationNestedAggregation, bA as AggregationRangeAggregation, bo as AggregationResults, bp as AggregationResultsResultOneOf, bc as AggregationResultsScalarResult, bB as AggregationScalarAggregation, A as AggregationType, by as AggregationValueAggregation, bz as AggregationValueAggregationOptionsOneOf, y as Alignment, cO as AnchorData, cU as AppEmbedData, cV as AppEmbedDataAppDataOneOf, a1 as AppType, d7 as AudioData, aa as AvailabilityStatus, cE as Background, cF as BackgroundBackgroundOneOf, _ as BackgroundType, da as BlockquoteData, cW as BookingData, bU as Border, d5 as BorderColors, dE as Brand, dU as BreadCrumb, dT as BreadcrumbsInfo, d9 as BulletedListData, bT as ButtonData, db as CaptionData, d4 as CellStyle, a8 as ChoiceType, du as ChoicesSettings, c3 as CodeBlockData, d0 as CollapsibleListData, cP as ColorData, bV as Colors, bu as CommonAggregation, bv as CommonAggregationKindOneOf, q as CommonAggregationType, o as CommonScalarType, bI as CommonSearchDetails, C as CommonSortOrder, bt as CommonSorting, at as CommonVideoResolution, dy as ConnectedModifier, dC as ConnectedModifierChoice, dD as ConnectedModifierChoiceValueOneOf, dz as ConnectedModifierModifierSettingsOneOf, ds as ConnectedOption, dv as ConnectedOptionChoice, dw as ConnectedOptionChoiceValueOneOf, dt as ConnectedOptionOptionSettingsOneOf, E as Crop, aN as CursorPaging, aP as CursorPagingMetadata, aK as CursorQuery, aL as CursorQueryPagingMethodOneOf, aS as CursorSearch, aT as CursorSearchPagingMethodOneOf, aQ as Cursors, b0 as DateHistogramAggregation, D as DateHistogramAggregationInterval, bk as DateHistogramResult, bm as DateHistogramResults, cM as Decoration, cN as DecorationDataOneOf, $ as DecorationType, bq as DeprecatedSearchVariantsWithOffsetRequest, bK as DeprecatedSearchVariantsWithOffsetResponse, cK as Design, d2 as Dimensions, a3 as Direction, ag as DiscountType, c5 as DividerData, de as DocumentStyle, ek as DomainEvent, el as DomainEventBodyOneOf, c_ as EmbedData, er as Empty, em as EntityCreatedEvent, ep as EntityDeletedEvent, eo as EntityUpdatedEvent, cX as EventData, e9 as ExtendedFields, c6 as FileData, c7 as FileSource, c8 as FileSourceDataOneOf, ae as FileType, dL as FixedMonetaryAmount, cS as FontSizeData, a0 as FontType, dA as FreeTextSettings, cl as GIF, ck as GIFData, G as GIFType, ca as GalleryData, cg as GalleryOptions, cD as Gradient, bG as GroupByAggregation, bH as GroupByAggregationKindOneOf, bl as GroupByValueResults, cn as HTMLData, co as HTMLDataDataOneOf, cm as HeadingData, b_ as Height, et as IdentificationData, eu as IdentificationDataIdOneOf, cc as Image, cp as ImageData, cr as ImageDataStyles, aX as IncludeMissingValuesOptions, dF as InfoSection, a2 as InitialExpandedItems, aI as InternalMetadata, I as InternalRowState, j as Interval, dM as Inventory, e8 as InventoryStatus, ce as Item, cf as ItemDataOneOf, ci as ItemStyle, dp as Keyword, ch as Layout, dc as LayoutCellData, B as LayoutType, L as LineStyle, c0 as Link, cQ as LinkData, c1 as LinkDataOneOf, cs as LinkPreviewData, ct as LinkPreviewDataStyles, d6 as ListValue, cu as MapData, cv as MapSettings, K as MapType, M as MeasurementUnit, dg as Media, dm as MediaItemsInfo, a6 as MediaType, cR as MentionData, es as MessageEnvelope, dd as Metadata, bM as MigrateProductVariantsRequest, eh as MigrateProductVariantsResponse, eg as MinVariantPriceInfo, h as MissingValues, k as Mode, dB as ModifierChoicesSettings, a9 as ModifierRenderType, dx as MultipleColors, b3 as NestedAggregation, b1 as NestedAggregationItem, b2 as NestedAggregationItemKindOneOf, bD as NestedAggregationNestedAggregationItem, bE as NestedAggregationNestedAggregationItemKindOneOf, p as NestedAggregationNestedAggregationType, b8 as NestedAggregationResults, b9 as NestedAggregationResultsResultOneOf, N as NestedAggregationType, bh as NestedResultValue, bi as NestedResultValueResultOneOf, bn as NestedResults, bd as NestedValueAggregationResult, bQ as Node, bR as NodeDataOneOf, bS as NodeStyle, s as NodeType, a5 as NullValue, c$ as Oembed, cz as Option, dY as OptionChoice, dZ as OptionChoiceIds, d_ as OptionChoiceNames, cH as OptionDesign, cC as OptionLayout, d8 as OrderedListData, O as Orientation, c9 as PDFSettings, bL as PagingMetadata, cw as ParagraphData, cy as Permissions, dN as PhysicalProperties, br as PlatformOffsetSearch, bs as PlatformOffsetSearchPagingMethodOneOf, bJ as PlatformPaging, cZ as PlaybackOptions, bW as PluginContainerData, u as PluginContainerDataAlignment, bX as PluginContainerDataWidth, bY as PluginContainerDataWidthDataOneOf, cI as Poll, cx as PollData, cJ as PollDataLayout, cG as PollDesign, cB as PollLayout, Z as PollLayoutDirection, Y as PollLayoutType, cA as PollSettings, J as Position, ab as PreorderStatus, d$ as PriceInfo, e2 as PricePerUnit, dQ as PricePerUnitRange, dR as PricePerUnitRangePricePerUnit, dO as PricePerUnitSettings, dK as PriceRange, bN as Product, dH as ProductCategoriesInfo, dI as ProductCategory, dJ as ProductCategoryIdsInfo, aE as ProductFields, aF as ProductFieldsTypedPropertiesOneOf, dh as ProductMedia, dj as ProductMediaMediaOneOf, P as ProductMediaMediaType, di as ProductMediaSetByOneOf, a7 as ProductOptionRenderType, ac as ProductPreorderAvailability, ad as ProductType, bO as ProductTypedPropertiesOneOf, aJ as QueryVariantsRequest, aO as QueryVariantsResponse, a_ as RangeAggregation, bw as RangeAggregationRangeBucket, b7 as RangeAggregationResult, aW as RangeBucket, bf as RangeResult, bb as RangeResults, ai as ReadOnlyVariant, ew as ReadOnlyVariantSearchSpec, aj as ReadOnlyVariantTypedPropertiesOneOf, ei as RecoverProductVariantsRequest, ej as RecoverProductVariantsResponse, c2 as Rel, e as RequestedFields, en as RestoreInfo, bj as Results, e0 as RevenueDetails, dG as Ribbon, bP as RichContent, a$ as ScalarAggregation, bg as ScalarResult, i as ScalarType, b4 as SearchDetails, r as SearchDetailsMode, aR as SearchVariantsRequest, e4 as SecuredMedia, b as SecuredMediaFileType, dn as SeoSchema, dr as Settings, g as SortDirection, d as SortOrder, f as SortType, aM as Sorting, H as Source, bZ as Spoiler, cT as SpoilerData, b$ as Styles, cq as StylesBorder, eb as Subscription, ec as SubscriptionCyclesOneOf, ea as SubscriptionDetails, ed as SubscriptionDiscount, ee as SubscriptionDiscountDiscountOneOf, af as SubscriptionFrequency, e6 as SubscriptionPrice, e7 as SubscriptionPricePerUnit, e5 as SubscriptionPricesInfo, d3 as TableCellData, d1 as TableData, dq as Tag, v as Target, w as TextAlignment, cL as TextData, df as TextNodeStyle, c4 as TextStyle, dl as Thumbnail, cj as Thumbnails, F as ThumbnailsAlignment, T as Type, cb as V1Media, ao as V3FixedMonetaryAmount, aD as V3InventoryStatus, ak as V3OptionChoice, al as V3OptionChoiceIds, am as V3OptionChoiceNames, aG as V3PhysicalProperties, an as V3PriceInfo, aw as V3PricePerUnit, ax as V3PricePerUnitSettings, aq as V3ProductMedia, as as V3ProductMediaMediaOneOf, ar as V3ProductMediaSetByOneOf, c as V3ProductType, ap as V3RevenueDetails, az as V3SecuredMedia, aB as V3SubscriptionPrice, aC as V3SubscriptionPricePerUnit, aA as V3SubscriptionPricesInfo, au as V3Thumbnail, ay as V3VariantDigitalProperties, av as V3VariantPhysicalProperties, aH as V3WeightMeasurementUnitInfo, aY as ValueAggregation, bx as ValueAggregationIncludeMissingValuesOptions, n as ValueAggregationMissingValues, aZ as ValueAggregationOptionsOneOf, b6 as ValueAggregationResult, m as ValueAggregationSortDirection, l as ValueAggregationSortType, be as ValueResult, ba as ValueResults, dW as Variant, e3 as VariantDigitalProperties, e1 as VariantPhysicalProperties, ef as VariantSummary, dX as VariantTypedPropertiesOneOf, dV as VariantsInfo, ev as VariantsQueryResult, a4 as VerticalAlignment, cd as Video, cY as VideoData, dk as VideoResolution, z as ViewMode, U as ViewRole, X as VoteRole, ah as WebhookIdentityType, dS as WeightMeasurementUnitInfo, dP as WeightRange, W as WeightUnit, x as Width, t as WidthType } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Cq2knsK7.mjs';
2
+ import { Q as QueryVariantsOptions, V as VariantsQueryBuilder, R as ReadOnlyVariantSearch, S as SearchVariantsOptions, a as SearchVariantsResponse } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BuiYV2RM.mjs';
3
+ export { eB as ActionEvent, a$ as Aggregation, bc as AggregationData, bJ as AggregationDateHistogramAggregation, b0 as AggregationKindOneOf, bM as AggregationNestedAggregation, bH as AggregationRangeAggregation, bv as AggregationResults, bw as AggregationResultsResultOneOf, bj as AggregationResultsScalarResult, bI as AggregationScalarAggregation, A as AggregationType, bF as AggregationValueAggregation, bG as AggregationValueAggregationOptionsOneOf, a6 as Alignment, cV as AnchorData, c$ as AppEmbedData, d0 as AppEmbedDataAppDataOneOf, a8 as AppType, a2 as AspectRatio, di as AudioData, ah as AvailabilityStatus, cL as Background, cM as BackgroundBackgroundOneOf, _ as BackgroundType, dl as BlockquoteData, d1 as BookingData, b$ as Border, dg as BorderColors, dP as Brand, e3 as BreadCrumb, e2 as BreadcrumbsInfo, dk as BulletedListData, b_ as ButtonData, B as ButtonDataType, d3 as ButtonStyles, dm as CaptionData, d6 as CardStyles, df as CellStyle, af as ChoiceType, dF as ChoicesSettings, ca as CodeBlockData, db as CollapsibleListData, cW as ColorData, c0 as Colors, bB as CommonAggregation, bC as CommonAggregationKindOneOf, q as CommonAggregationType, o as CommonScalarType, bP as CommonSearchDetails, C as CommonSortOrder, bA as CommonSorting, aA as CommonVideoResolution, dJ as ConnectedModifier, dN as ConnectedModifierChoice, dO as ConnectedModifierChoiceValueOneOf, dK as ConnectedModifierModifierSettingsOneOf, dD as ConnectedOption, dG as ConnectedOptionChoice, dH as ConnectedOptionChoiceValueOneOf, dE as ConnectedOptionOptionSettingsOneOf, E as Crop, aU as CursorPaging, aW as CursorPagingMetadata, aR as CursorQuery, aS as CursorQueryPagingMethodOneOf, aZ as CursorSearch, a_ as CursorSearchPagingMethodOneOf, aX as Cursors, b7 as DateHistogramAggregation, D as DateHistogramAggregationInterval, br as DateHistogramResult, bt as DateHistogramResults, cT as Decoration, cU as DecorationDataOneOf, $ as DecorationType, bx as DeprecatedSearchVariantsWithOffsetRequest, bR as DeprecatedSearchVariantsWithOffsetResponse, cR as Design, dd as Dimensions, aa as Direction, an as DiscountType, cc as DividerData, x as DividerDataAlignment, dq as DocumentStyle, ev as DomainEvent, ew as DomainEventBodyOneOf, d9 as EmbedData, eC as Empty, ex as EntityCreatedEvent, eA as EntityDeletedEvent, ez as EntityUpdatedEvent, d2 as EventData, ek as ExtendedFields, cd as FileData, ce as FileSource, cf as FileSourceDataOneOf, al as FileType, dW as FixedMonetaryAmount, cZ as FontSizeData, a0 as FontType, dL as FreeTextSettings, cs as GIF, cr as GIFData, G as GIFType, ch as GalleryData, cn as GalleryOptions, co as GalleryOptionsLayout, cK as Gradient, bN as GroupByAggregation, bO as GroupByAggregationKindOneOf, bs as GroupByValueResults, cu as HTMLData, cv as HTMLDataDataOneOf, ct as HeadingData, c5 as Height, eE as IdentificationData, eF as IdentificationDataIdOneOf, cj as Image, cw as ImageData, cy as ImageDataStyles, d4 as ImageStyles, b2 as IncludeMissingValuesOptions, dQ as InfoSection, a9 as InitialExpandedItems, aP as InternalMetadata, I as InternalRowState, j as Interval, dX as Inventory, ej as InventoryStatus, cl as Item, cm as ItemDataOneOf, cp as ItemStyle, dA as Keyword, a7 as Layout, dn as LayoutCellData, z as LayoutType, L as LineStyle, c7 as Link, cX as LinkData, c8 as LinkDataOneOf, cz as LinkPreviewData, cA as LinkPreviewDataStyles, dh as ListValue, cB as MapData, cC as MapSettings, K as MapType, M as MeasurementUnit, ds as Media, dy as MediaItemsInfo, ad as MediaType, cY as MentionData, eD as MessageEnvelope, dp as Metadata, bT as MigrateProductVariantsRequest, es as MigrateProductVariantsResponse, er as MinVariantPriceInfo, h as MissingValues, k as Mode, dM as ModifierChoicesSettings, ag as ModifierRenderType, dI as MultipleColors, ba as NestedAggregation, b8 as NestedAggregationItem, b9 as NestedAggregationItemKindOneOf, bK as NestedAggregationNestedAggregationItem, bL as NestedAggregationNestedAggregationItemKindOneOf, p as NestedAggregationNestedAggregationType, bf as NestedAggregationResults, bg as NestedAggregationResultsResultOneOf, N as NestedAggregationType, bo as NestedResultValue, bp as NestedResultValueResultOneOf, bu as NestedResults, bk as NestedValueAggregationResult, bX as Node, bY as NodeDataOneOf, bZ as NodeStyle, s as NodeType, ac as NullValue, da as Oembed, cG as Option, e7 as OptionChoice, e8 as OptionChoiceIds, e9 as OptionChoiceNames, cO as OptionDesign, cJ as OptionLayout, dj as OrderedListData, O as Orientation, cg as PDFSettings, bS as PagingMetadata, cD as ParagraphData, cF as Permissions, dY as PhysicalProperties, a4 as Placement, by as PlatformOffsetSearch, bz as PlatformOffsetSearchPagingMethodOneOf, bQ as PlatformPaging, d8 as PlaybackOptions, c1 as PluginContainerData, u as PluginContainerDataAlignment, c2 as PluginContainerDataWidth, c3 as PluginContainerDataWidthDataOneOf, cP as Poll, cE as PollData, cQ as PollDataLayout, cN as PollDesign, cI as PollLayout, Z as PollLayoutDirection, Y as PollLayoutType, cH as PollSettings, a1 as Position, ai as PreorderStatus, ea as PriceInfo, ed as PricePerUnit, d$ as PricePerUnitRange, e0 as PricePerUnitRangePricePerUnit, dZ as PricePerUnitSettings, dV as PriceRange, bU as Product, dS as ProductCategoriesInfo, dT as ProductCategory, dU as ProductCategoryIdsInfo, aL as ProductFields, aM as ProductFieldsTypedPropertiesOneOf, dt as ProductMedia, dv as ProductMediaMediaOneOf, P as ProductMediaMediaType, du as ProductMediaSetByOneOf, ae as ProductOptionRenderType, aj as ProductPreorderAvailability, ak as ProductType, bV as ProductTypedPropertiesOneOf, aQ as QueryVariantsRequest, aV as QueryVariantsResponse, b5 as RangeAggregation, bD as RangeAggregationRangeBucket, be as RangeAggregationResult, b1 as RangeBucket, bm as RangeResult, bi as RangeResults, ap as ReadOnlyVariant, eH as ReadOnlyVariantSearchSpec, aq as ReadOnlyVariantTypedPropertiesOneOf, et as RecoverProductVariantsRequest, eu as RecoverProductVariantsResponse, c9 as Rel, e as RequestedFields, a3 as Resizing, ey as RestoreInfo, bq as Results, eb as RevenueDetails, dR as Ribbon, d5 as RibbonStyles, bW as RichContent, b6 as ScalarAggregation, bn as ScalarResult, i as ScalarType, bb as SearchDetails, r as SearchDetailsMode, aY as SearchVariantsRequest, ef as SecuredMedia, b as SecuredMediaFileType, dz as SeoSchema, dC as Settings, g as SortDirection, d as SortOrder, f as SortType, aT as Sorting, H as Source, c4 as Spoiler, c_ as SpoilerData, c6 as Styles, cx as StylesBorder, J as StylesPosition, em as Subscription, en as SubscriptionCyclesOneOf, el as SubscriptionDetails, eo as SubscriptionDiscount, ep as SubscriptionDiscountDiscountOneOf, am as SubscriptionFrequency, eh as SubscriptionPrice, ei as SubscriptionPricePerUnit, eg as SubscriptionPricesInfo, de as TableCellData, dc as TableData, dB as Tag, T as Target, v as TextAlignment, cS as TextData, dr as TextNodeStyle, cb as TextStyle, dx as Thumbnail, cq as Thumbnails, F as ThumbnailsAlignment, a5 as Type, ci as V1Media, av as V3FixedMonetaryAmount, aK as V3InventoryStatus, ar as V3OptionChoice, as as V3OptionChoiceIds, at as V3OptionChoiceNames, aN as V3PhysicalProperties, au as V3PriceInfo, aD as V3PricePerUnit, aE as V3PricePerUnitSettings, ax as V3ProductMedia, az as V3ProductMediaMediaOneOf, ay as V3ProductMediaSetByOneOf, c as V3ProductType, aw as V3RevenueDetails, aG as V3SecuredMedia, aI as V3SubscriptionPrice, aJ as V3SubscriptionPricePerUnit, aH as V3SubscriptionPricesInfo, aB as V3Thumbnail, aF as V3VariantDigitalProperties, aC as V3VariantPhysicalProperties, aO as V3WeightMeasurementUnitInfo, b3 as ValueAggregation, bE as ValueAggregationIncludeMissingValuesOptions, n as ValueAggregationMissingValues, b4 as ValueAggregationOptionsOneOf, bd as ValueAggregationResult, m as ValueAggregationSortDirection, l as ValueAggregationSortType, bl as ValueResult, bh as ValueResults, e5 as Variant, ee as VariantDigitalProperties, ec as VariantPhysicalProperties, eq as VariantSummary, e6 as VariantTypedPropertiesOneOf, e4 as VariantsInfo, eG as VariantsQueryResult, ab as VerticalAlignment, ck as Video, d7 as VideoData, dw as VideoResolution, y as ViewMode, U as ViewRole, X as VoteRole, ao as WebhookIdentityType, e1 as WeightMeasurementUnitInfo, d_ as WeightRange, W as WeightUnit, w as Width, t as WidthType } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BuiYV2RM.mjs';
4
4
 
5
5
  type ReadOnlyVariantNonNullablePaths = `physicalProperties.pricePerUnit.settings.quantity` | `physicalProperties.pricePerUnit.settings.measurementUnit` | `physicalProperties.pricePerUnit.value` | `digitalProperties.digitalFile._id` | `digitalProperties.digitalFile.fileName` | `digitalProperties.digitalFile.fileType` | `_id` | `optionChoices` | `optionChoices.${number}.optionChoiceIds.optionId` | `optionChoices.${number}.optionChoiceIds.choiceId` | `optionChoices.${number}.optionChoiceNames.optionName` | `optionChoices.${number}.optionChoiceNames.choiceName` | `optionChoices.${number}.optionChoiceNames.renderType` | `price.actualPrice.amount` | `revenueDetails.cost.amount` | `revenueDetails.profitMargin` | `media._id` | `media.url` | `media.mediaType` | `media.thumbnail.url` | `media.thumbnail.height` | `media.thumbnail.width` | `media.uploadId` | `subscriptionPricesInfo.subscriptionPrices` | `subscriptionPricesInfo.subscriptionPrices.${number}.subscriptionId` | `subscriptionPricesInfo.subscriptionPrices.${number}.price.amount` | `subscriptionPricesInfo.subscriptionPrices.${number}.pricePerUnit.value` | `inventoryStatus.inStock` | `inventoryStatus.preorderEnabled` | `productData.physicalProperties.weightMeasurementUnitInfo.weightMeasurementUnit` | `productData.productId` | `productData.productType`;
6
6
  declare function queryVariants$1(httpClient: HttpClient): QueryVariantsSignature;
@@ -408,11 +408,11 @@ var PluginContainerDataAlignment = /* @__PURE__ */ ((PluginContainerDataAlignmen
408
408
  PluginContainerDataAlignment2["RIGHT"] = "RIGHT";
409
409
  return PluginContainerDataAlignment2;
410
410
  })(PluginContainerDataAlignment || {});
411
- var Type = /* @__PURE__ */ ((Type2) => {
412
- Type2["LINK"] = "LINK";
413
- Type2["ACTION"] = "ACTION";
414
- return Type2;
415
- })(Type || {});
411
+ var ButtonDataType = /* @__PURE__ */ ((ButtonDataType2) => {
412
+ ButtonDataType2["LINK"] = "LINK";
413
+ ButtonDataType2["ACTION"] = "ACTION";
414
+ return ButtonDataType2;
415
+ })(ButtonDataType || {});
416
416
  var Target = /* @__PURE__ */ ((Target2) => {
417
417
  Target2["SELF"] = "SELF";
418
418
  Target2["BLANK"] = "BLANK";
@@ -441,12 +441,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
441
441
  Width2["SMALL"] = "SMALL";
442
442
  return Width2;
443
443
  })(Width || {});
444
- var Alignment = /* @__PURE__ */ ((Alignment2) => {
445
- Alignment2["CENTER"] = "CENTER";
446
- Alignment2["LEFT"] = "LEFT";
447
- Alignment2["RIGHT"] = "RIGHT";
448
- return Alignment2;
449
- })(Alignment || {});
444
+ var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
445
+ DividerDataAlignment2["CENTER"] = "CENTER";
446
+ DividerDataAlignment2["LEFT"] = "LEFT";
447
+ DividerDataAlignment2["RIGHT"] = "RIGHT";
448
+ return DividerDataAlignment2;
449
+ })(DividerDataAlignment || {});
450
450
  var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
451
451
  ViewMode2["NONE"] = "NONE";
452
452
  ViewMode2["FULL"] = "FULL";
@@ -494,13 +494,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
494
494
  Source2["ADSENSE"] = "ADSENSE";
495
495
  return Source2;
496
496
  })(Source || {});
497
- var Position = /* @__PURE__ */ ((Position2) => {
498
- Position2["START"] = "START";
499
- Position2["END"] = "END";
500
- Position2["TOP"] = "TOP";
501
- Position2["HIDDEN"] = "HIDDEN";
502
- return Position2;
503
- })(Position || {});
497
+ var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
498
+ StylesPosition2["START"] = "START";
499
+ StylesPosition2["END"] = "END";
500
+ StylesPosition2["TOP"] = "TOP";
501
+ StylesPosition2["HIDDEN"] = "HIDDEN";
502
+ return StylesPosition2;
503
+ })(StylesPosition || {});
504
504
  var MapType = /* @__PURE__ */ ((MapType2) => {
505
505
  MapType2["ROADMAP"] = "ROADMAP";
506
506
  MapType2["SATELITE"] = "SATELITE";
@@ -556,6 +556,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
556
556
  FontType2["EM"] = "EM";
557
557
  return FontType2;
558
558
  })(FontType || {});
559
+ var Position = /* @__PURE__ */ ((Position2) => {
560
+ Position2["START"] = "START";
561
+ Position2["END"] = "END";
562
+ Position2["TOP"] = "TOP";
563
+ return Position2;
564
+ })(Position || {});
565
+ var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
566
+ AspectRatio2["SQUARE"] = "SQUARE";
567
+ AspectRatio2["RECTANGLE"] = "RECTANGLE";
568
+ return AspectRatio2;
569
+ })(AspectRatio || {});
570
+ var Resizing = /* @__PURE__ */ ((Resizing2) => {
571
+ Resizing2["FILL"] = "FILL";
572
+ Resizing2["FIT"] = "FIT";
573
+ return Resizing2;
574
+ })(Resizing || {});
575
+ var Placement = /* @__PURE__ */ ((Placement2) => {
576
+ Placement2["IMAGE"] = "IMAGE";
577
+ Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
578
+ return Placement2;
579
+ })(Placement || {});
580
+ var Type = /* @__PURE__ */ ((Type2) => {
581
+ Type2["CONTAINED"] = "CONTAINED";
582
+ Type2["FRAMELESS"] = "FRAMELESS";
583
+ return Type2;
584
+ })(Type || {});
585
+ var Alignment = /* @__PURE__ */ ((Alignment2) => {
586
+ Alignment2["START"] = "START";
587
+ Alignment2["CENTER"] = "CENTER";
588
+ Alignment2["END"] = "END";
589
+ return Alignment2;
590
+ })(Alignment || {});
591
+ var Layout = /* @__PURE__ */ ((Layout2) => {
592
+ Layout2["STACKED"] = "STACKED";
593
+ Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
594
+ return Layout2;
595
+ })(Layout || {});
559
596
  var AppType = /* @__PURE__ */ ((AppType2) => {
560
597
  AppType2["PRODUCT"] = "PRODUCT";
561
598
  AppType2["EVENT"] = "EVENT";
@@ -785,8 +822,10 @@ export {
785
822
  AggregationType,
786
823
  Alignment,
787
824
  AppType,
825
+ AspectRatio,
788
826
  AvailabilityStatus,
789
827
  BackgroundType,
828
+ ButtonDataType,
790
829
  ChoiceType,
791
830
  CommonAggregationType,
792
831
  CommonScalarType,
@@ -796,12 +835,14 @@ export {
796
835
  DecorationType,
797
836
  Direction,
798
837
  DiscountType,
838
+ DividerDataAlignment,
799
839
  FileType,
800
840
  FontType,
801
841
  GIFType,
802
842
  InitialExpandedItems,
803
843
  InternalRowState,
804
844
  Interval,
845
+ Layout,
805
846
  LayoutType,
806
847
  LineStyle,
807
848
  MapType,
@@ -815,6 +856,7 @@ export {
815
856
  NodeType,
816
857
  NullValue,
817
858
  Orientation,
859
+ Placement,
818
860
  PluginContainerDataAlignment,
819
861
  PollLayoutDirection,
820
862
  PollLayoutType,
@@ -825,6 +867,7 @@ export {
825
867
  ProductPreorderAvailability,
826
868
  ProductType,
827
869
  RequestedFields,
870
+ Resizing,
828
871
  ScalarType,
829
872
  SearchDetailsMode,
830
873
  SecuredMediaFileType,
@@ -832,6 +875,7 @@ export {
832
875
  SortOrder,
833
876
  SortType,
834
877
  Source,
878
+ StylesPosition,
835
879
  SubscriptionFrequency,
836
880
  Target,
837
881
  TextAlignment,