@wix/auto_sdk_stores_catalog-imports-v-3 1.0.7 → 1.0.9

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 (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +49 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +109 -3
  5. package/build/cjs/index.typings.js +49 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +109 -3
  8. package/build/cjs/meta.js +49 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +45 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +109 -3
  14. package/build/es/index.typings.mjs +45 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +109 -3
  17. package/build/es/meta.mjs +45 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +49 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +109 -3
  23. package/build/internal/cjs/index.typings.js +49 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +109 -3
  26. package/build/internal/cjs/meta.js +49 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +45 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +109 -3
  32. package/build/internal/es/index.typings.mjs +45 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +109 -3
  35. package/build/internal/es/meta.mjs +45 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +3 -3
@@ -254,7 +254,9 @@ interface Node extends NodeDataOneOf {
254
254
  blockquoteData?: BlockquoteData;
255
255
  /** Data for a caption node. */
256
256
  captionData?: CaptionData;
257
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
257
+ /** Data for a layout node. Reserved for future use. */
258
+ layoutData?: LayoutData;
259
+ /** Data for a cell node. */
258
260
  layoutCellData?: LayoutCellData;
259
261
  /** 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. */
260
262
  type?: NodeTypeWithLiterals;
@@ -319,7 +321,9 @@ interface NodeDataOneOf {
319
321
  blockquoteData?: BlockquoteData;
320
322
  /** Data for a caption node. */
321
323
  captionData?: CaptionData;
322
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
324
+ /** Data for a layout node. Reserved for future use. */
325
+ layoutData?: LayoutData;
326
+ /** Data for a cell node. */
323
327
  layoutCellData?: LayoutCellData;
324
328
  }
325
329
  declare enum NodeType {
@@ -1876,6 +1880,108 @@ interface BlockquoteData {
1876
1880
  interface CaptionData {
1877
1881
  textStyle?: TextStyle;
1878
1882
  }
1883
+ interface LayoutData {
1884
+ /**
1885
+ * Background color as a hexadecimal value.
1886
+ * @format COLOR_HEX
1887
+ */
1888
+ backgroundColor?: string | null;
1889
+ /** Background image. */
1890
+ backgroundImage?: BackgroundImage;
1891
+ /**
1892
+ * Border color as a hexadecimal value.
1893
+ * @format COLOR_HEX
1894
+ */
1895
+ borderColor?: string | null;
1896
+ /** Border width in pixels. */
1897
+ borderWidth?: number | null;
1898
+ /** Border */
1899
+ borderRadius?: number | null;
1900
+ /**
1901
+ * Backdrop color as a hexadecimal value.
1902
+ * @format COLOR_HEX
1903
+ */
1904
+ backdropColor?: string | null;
1905
+ /** Backdrop image.radius in pixels. */
1906
+ backdropImage?: BackgroundImage;
1907
+ /** Backdrop top padding. */
1908
+ backdropPaddingTop?: number | null;
1909
+ /** Backdrop bottom padding */
1910
+ backdropPaddingBottom?: number | null;
1911
+ /** Horizontal and vertical gap between columns */
1912
+ gap?: number | null;
1913
+ /**
1914
+ * Padding in pixels for cells. Follows CSS order: top, right, bottom, left
1915
+ * @maxSize 4
1916
+ */
1917
+ cellPadding?: number[];
1918
+ /** Vertical alignment for the cell's items. */
1919
+ cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
1920
+ /** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
1921
+ responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
1922
+ /** Size in pixels when responsiveness_behaviour applies */
1923
+ responsivenessBreakpoint?: number | null;
1924
+ }
1925
+ declare enum Scaling {
1926
+ /** Auto image scaling */
1927
+ AUTO = "AUTO",
1928
+ /** Contain image scaling */
1929
+ CONTAIN = "CONTAIN",
1930
+ /** Cover image scaling */
1931
+ COVER = "COVER"
1932
+ }
1933
+ /** @enumType */
1934
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
1935
+ declare enum ImagePosition {
1936
+ /** Image positioned at the center */
1937
+ CENTER = "CENTER",
1938
+ /** Image positioned on the left */
1939
+ CENTER_LEFT = "CENTER_LEFT",
1940
+ /** Image positioned on the right */
1941
+ CENTER_RIGHT = "CENTER_RIGHT",
1942
+ /** Image positioned at the center top */
1943
+ TOP = "TOP",
1944
+ /** Image positioned at the top left */
1945
+ TOP_LEFT = "TOP_LEFT",
1946
+ /** Image positioned at the top right */
1947
+ TOP_RIGHT = "TOP_RIGHT",
1948
+ /** Image positioned at the center bottom */
1949
+ BOTTOM = "BOTTOM",
1950
+ /** Image positioned at the bottom left */
1951
+ BOTTOM_LEFT = "BOTTOM_LEFT",
1952
+ /** Image positioned at the bottom right */
1953
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
1954
+ }
1955
+ /** @enumType */
1956
+ type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
1957
+ interface BackgroundImage {
1958
+ /** Background image. */
1959
+ media?: V1Media;
1960
+ /** Background image opacity. */
1961
+ opacity?: number | null;
1962
+ /** Background image scaling. */
1963
+ scaling?: ScalingWithLiterals;
1964
+ /** Position of background. Defaults to `CENTER`. */
1965
+ position?: ImagePositionWithLiterals;
1966
+ }
1967
+ declare enum VerticalAlignmentAlignment {
1968
+ /** Top alignment */
1969
+ TOP = "TOP",
1970
+ /** Middle alignment */
1971
+ MIDDLE = "MIDDLE",
1972
+ /** Bottom alignment */
1973
+ BOTTOM = "BOTTOM"
1974
+ }
1975
+ /** @enumType */
1976
+ type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
1977
+ declare enum ResponsivenessBehaviour {
1978
+ /** Stacking of columns */
1979
+ STACK = "STACK",
1980
+ /** Wrapping of columns */
1981
+ WRAP = "WRAP"
1982
+ }
1983
+ /** @enumType */
1984
+ type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
1879
1985
  interface LayoutCellData {
1880
1986
  /** Size of the cell in 12 columns grid. */
1881
1987
  colSpan?: number | null;
@@ -3260,4 +3366,4 @@ declare function submitCatalogImport(catalogImportId: string): Promise<NonNullab
3260
3366
  __applicationErrorsType?: SubmitCatalogImportApplicationErrors;
3261
3367
  }>;
3262
3368
 
3263
- export { type ActionEvent, type AddProductResult, type AddProductsToImportRequest, type AddProductsToImportResponse, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type Brand, type BulkActionMetadata, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CatalogImport, type CatalogImportAlreadySubmittedErrorData, type CellStyle, ChoiceType, type ChoiceTypeWithLiterals, type ChoicesSettings, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type ConnectedModifier, type ConnectedModifierChoice, type ConnectedModifierChoiceValueOneOf, type ConnectedModifierModifierSettingsOneOf, type ConnectedOption, type ConnectedOptionChoice, type ConnectedOptionChoiceValueOneOf, type ConnectedOptionOptionSettingsOneOf, type CreateCatalogImportRequest, type CreateCatalogImportResponse, Crop, type CropWithLiterals, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, DiscountType, type DiscountTypeWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type ExtendedFields, type FileData, type FileSource, type FileSourceDataOneOf, FileType, type FileTypeWithLiterals, type FixedMonetaryAmount, type FontSizeData, FontType, type FontTypeWithLiterals, type FreeTextSettings, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, type InfoSection, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InventoryItemComposite, type InventoryItemCompositeTrackingMethodOneOf, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, MeasurementUnit, type MeasurementUnitWithLiterals, type Media, type MediaItemsInfo, MediaType, type MediaTypeWithLiterals, type MentionData, type MessageEnvelope, type Metadata, type ModifierChoicesSettings, ModifierRenderType, type ModifierRenderTypeWithLiterals, type MultipleColors, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionChoiceIds, type OptionChoiceNames, type OptionChoiceReferences, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhysicalProperties, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PreorderInfo, type PriceInfo, type PricePerUnit, type PricePerUnitRange, type PricePerUnitRangePricePerUnit, type PricePerUnitSettings, type PricingData, type ProductCategoryIdsInfo, type ProductItem, type ProductMedia, type ProductMediaMediaOneOf, type ProductMediaSetByOneOf, ProductOptionRenderType, type ProductOptionRenderTypeWithLiterals, ProductType, type ProductTypeWithLiterals, type ProductWithInventory, type ProductWithInventoryTypedPropertiesOneOf, type Rel, Resizing, type ResizingWithLiterals, type RestoreInfo, type RevenueDetails, type Ribbon, type RibbonStyles, type RichContent, type SecuredMedia, type SeoSchema, type Settings, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitCatalogImportApplicationErrors, type SubmitCatalogImportRequest, type SubmitCatalogImportResponse, type Subscription, type SubscriptionCyclesOneOf, type SubscriptionDetails, type SubscriptionDiscount, type SubscriptionDiscountDiscountOneOf, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnail, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type V1Media, type VariantDigitalProperties, type VariantPhysicalProperties, type VariantWithInventory, type VariantWithInventoryTypedPropertiesOneOf, type VariantsInfo, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WeightMeasurementUnitInfo, type WeightRange, WeightUnit, type WeightUnitWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addProductsToImport, createCatalogImport, submitCatalogImport };
3369
+ export { type ActionEvent, type AddProductResult, type AddProductsToImportRequest, type AddProductsToImportResponse, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type Brand, type BulkActionMetadata, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CatalogImport, type CatalogImportAlreadySubmittedErrorData, type CellStyle, ChoiceType, type ChoiceTypeWithLiterals, type ChoicesSettings, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type ConnectedModifier, type ConnectedModifierChoice, type ConnectedModifierChoiceValueOneOf, type ConnectedModifierModifierSettingsOneOf, type ConnectedOption, type ConnectedOptionChoice, type ConnectedOptionChoiceValueOneOf, type ConnectedOptionOptionSettingsOneOf, type CreateCatalogImportRequest, type CreateCatalogImportResponse, Crop, type CropWithLiterals, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, DiscountType, type DiscountTypeWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type ExtendedFields, type FileData, type FileSource, type FileSourceDataOneOf, FileType, type FileTypeWithLiterals, type FixedMonetaryAmount, type FontSizeData, FontType, type FontTypeWithLiterals, type FreeTextSettings, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, type InfoSection, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InventoryItemComposite, type InventoryItemCompositeTrackingMethodOneOf, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, MeasurementUnit, type MeasurementUnitWithLiterals, type Media, type MediaItemsInfo, MediaType, type MediaTypeWithLiterals, type MentionData, type MessageEnvelope, type Metadata, type ModifierChoicesSettings, ModifierRenderType, type ModifierRenderTypeWithLiterals, type MultipleColors, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionChoiceIds, type OptionChoiceNames, type OptionChoiceReferences, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhysicalProperties, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PreorderInfo, type PriceInfo, type PricePerUnit, type PricePerUnitRange, type PricePerUnitRangePricePerUnit, type PricePerUnitSettings, type PricingData, type ProductCategoryIdsInfo, type ProductItem, type ProductMedia, type ProductMediaMediaOneOf, type ProductMediaSetByOneOf, ProductOptionRenderType, type ProductOptionRenderTypeWithLiterals, ProductType, type ProductTypeWithLiterals, type ProductWithInventory, type ProductWithInventoryTypedPropertiesOneOf, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RevenueDetails, type Ribbon, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SecuredMedia, type SeoSchema, type Settings, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitCatalogImportApplicationErrors, type SubmitCatalogImportRequest, type SubmitCatalogImportResponse, type Subscription, type SubscriptionCyclesOneOf, type SubscriptionDetails, type SubscriptionDiscount, type SubscriptionDiscountDiscountOneOf, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnail, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type V1Media, type VariantDigitalProperties, type VariantPhysicalProperties, type VariantWithInventory, type VariantWithInventoryTypedPropertiesOneOf, type VariantsInfo, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WeightMeasurementUnitInfo, type WeightRange, WeightUnit, type WeightUnitWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addProductsToImport, createCatalogImport, submitCatalogImport };
@@ -128,6 +128,12 @@ function addProductsToImport(payload) {
128
128
  {
129
129
  path: "products.product.description.nodes.audioData.coverImage.duration"
130
130
  },
131
+ {
132
+ path: "products.product.description.nodes.layoutData.backgroundImage.media.duration"
133
+ },
134
+ {
135
+ path: "products.product.description.nodes.layoutData.backdropImage.media.duration"
136
+ },
131
137
  {
132
138
  path: "products.product.infoSections.description.nodes.galleryData.items.image.media.duration"
133
139
  },
@@ -173,6 +179,12 @@ function addProductsToImport(payload) {
173
179
  {
174
180
  path: "products.product.infoSections.description.nodes.audioData.coverImage.duration"
175
181
  },
182
+ {
183
+ path: "products.product.infoSections.description.nodes.layoutData.backgroundImage.media.duration"
184
+ },
185
+ {
186
+ path: "products.product.infoSections.description.nodes.layoutData.backdropImage.media.duration"
187
+ },
176
188
  {
177
189
  path: "products.product.variantsInfo.variants.physicalProperties.weight"
178
190
  }
@@ -561,6 +573,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
561
573
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
562
574
  return NullValue2;
563
575
  })(NullValue || {});
576
+ var Scaling = /* @__PURE__ */ ((Scaling2) => {
577
+ Scaling2["AUTO"] = "AUTO";
578
+ Scaling2["CONTAIN"] = "CONTAIN";
579
+ Scaling2["COVER"] = "COVER";
580
+ return Scaling2;
581
+ })(Scaling || {});
582
+ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
583
+ ImagePosition2["CENTER"] = "CENTER";
584
+ ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
585
+ ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
586
+ ImagePosition2["TOP"] = "TOP";
587
+ ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
588
+ ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
589
+ ImagePosition2["BOTTOM"] = "BOTTOM";
590
+ ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
591
+ ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
592
+ return ImagePosition2;
593
+ })(ImagePosition || {});
594
+ var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
595
+ VerticalAlignmentAlignment2["TOP"] = "TOP";
596
+ VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
597
+ VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
598
+ return VerticalAlignmentAlignment2;
599
+ })(VerticalAlignmentAlignment || {});
600
+ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
601
+ ResponsivenessBehaviour2["STACK"] = "STACK";
602
+ ResponsivenessBehaviour2["WRAP"] = "WRAP";
603
+ return ResponsivenessBehaviour2;
604
+ })(ResponsivenessBehaviour || {});
564
605
  var MediaType = /* @__PURE__ */ ((MediaType2) => {
565
606
  MediaType2["UNKNOWN_MEDIA_TYPE"] = "UNKNOWN_MEDIA_TYPE";
566
607
  MediaType2["IMAGE"] = "IMAGE";
@@ -779,6 +820,7 @@ export {
779
820
  FileType,
780
821
  FontType,
781
822
  GIFType,
823
+ ImagePosition,
782
824
  InitialExpandedItems,
783
825
  Layout,
784
826
  LayoutType,
@@ -798,6 +840,8 @@ export {
798
840
  ProductOptionRenderType,
799
841
  ProductType,
800
842
  Resizing,
843
+ ResponsivenessBehaviour,
844
+ Scaling,
801
845
  Source,
802
846
  StylesPosition,
803
847
  SubscriptionFrequency,
@@ -806,6 +850,7 @@ export {
806
850
  ThumbnailsAlignment,
807
851
  Type,
808
852
  VerticalAlignment,
853
+ VerticalAlignmentAlignment,
809
854
  ViewMode,
810
855
  ViewRole,
811
856
  VoteRole,