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

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 +2 -2
@@ -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 };
@@ -34,6 +34,7 @@ __export(index_typings_exports, {
34
34
  FileType: () => FileType,
35
35
  FontType: () => FontType,
36
36
  GIFType: () => GIFType,
37
+ ImagePosition: () => ImagePosition,
37
38
  InitialExpandedItems: () => InitialExpandedItems,
38
39
  Layout: () => Layout,
39
40
  LayoutType: () => LayoutType,
@@ -53,6 +54,8 @@ __export(index_typings_exports, {
53
54
  ProductOptionRenderType: () => ProductOptionRenderType,
54
55
  ProductType: () => ProductType,
55
56
  Resizing: () => Resizing,
57
+ ResponsivenessBehaviour: () => ResponsivenessBehaviour,
58
+ Scaling: () => Scaling,
56
59
  Source: () => Source,
57
60
  StylesPosition: () => StylesPosition,
58
61
  SubscriptionFrequency: () => SubscriptionFrequency,
@@ -61,6 +64,7 @@ __export(index_typings_exports, {
61
64
  ThumbnailsAlignment: () => ThumbnailsAlignment,
62
65
  Type: () => Type,
63
66
  VerticalAlignment: () => VerticalAlignment,
67
+ VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
64
68
  ViewMode: () => ViewMode,
65
69
  ViewRole: () => ViewRole,
66
70
  VoteRole: () => VoteRole,
@@ -201,6 +205,12 @@ function addProductsToImport(payload) {
201
205
  {
202
206
  path: "products.product.description.nodes.audioData.coverImage.duration"
203
207
  },
208
+ {
209
+ path: "products.product.description.nodes.layoutData.backgroundImage.media.duration"
210
+ },
211
+ {
212
+ path: "products.product.description.nodes.layoutData.backdropImage.media.duration"
213
+ },
204
214
  {
205
215
  path: "products.product.infoSections.description.nodes.galleryData.items.image.media.duration"
206
216
  },
@@ -246,6 +256,12 @@ function addProductsToImport(payload) {
246
256
  {
247
257
  path: "products.product.infoSections.description.nodes.audioData.coverImage.duration"
248
258
  },
259
+ {
260
+ path: "products.product.infoSections.description.nodes.layoutData.backgroundImage.media.duration"
261
+ },
262
+ {
263
+ path: "products.product.infoSections.description.nodes.layoutData.backdropImage.media.duration"
264
+ },
249
265
  {
250
266
  path: "products.product.variantsInfo.variants.physicalProperties.weight"
251
267
  }
@@ -634,6 +650,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
634
650
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
635
651
  return NullValue2;
636
652
  })(NullValue || {});
653
+ var Scaling = /* @__PURE__ */ ((Scaling2) => {
654
+ Scaling2["AUTO"] = "AUTO";
655
+ Scaling2["CONTAIN"] = "CONTAIN";
656
+ Scaling2["COVER"] = "COVER";
657
+ return Scaling2;
658
+ })(Scaling || {});
659
+ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
660
+ ImagePosition2["CENTER"] = "CENTER";
661
+ ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
662
+ ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
663
+ ImagePosition2["TOP"] = "TOP";
664
+ ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
665
+ ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
666
+ ImagePosition2["BOTTOM"] = "BOTTOM";
667
+ ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
668
+ ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
669
+ return ImagePosition2;
670
+ })(ImagePosition || {});
671
+ var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
672
+ VerticalAlignmentAlignment2["TOP"] = "TOP";
673
+ VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
674
+ VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
675
+ return VerticalAlignmentAlignment2;
676
+ })(VerticalAlignmentAlignment || {});
677
+ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
678
+ ResponsivenessBehaviour2["STACK"] = "STACK";
679
+ ResponsivenessBehaviour2["WRAP"] = "WRAP";
680
+ return ResponsivenessBehaviour2;
681
+ })(ResponsivenessBehaviour || {});
637
682
  var MediaType = /* @__PURE__ */ ((MediaType2) => {
638
683
  MediaType2["UNKNOWN_MEDIA_TYPE"] = "UNKNOWN_MEDIA_TYPE";
639
684
  MediaType2["IMAGE"] = "IMAGE";
@@ -853,6 +898,7 @@ async function submitCatalogImport2(catalogImportId) {
853
898
  FileType,
854
899
  FontType,
855
900
  GIFType,
901
+ ImagePosition,
856
902
  InitialExpandedItems,
857
903
  Layout,
858
904
  LayoutType,
@@ -872,6 +918,8 @@ async function submitCatalogImport2(catalogImportId) {
872
918
  ProductOptionRenderType,
873
919
  ProductType,
874
920
  Resizing,
921
+ ResponsivenessBehaviour,
922
+ Scaling,
875
923
  Source,
876
924
  StylesPosition,
877
925
  SubscriptionFrequency,
@@ -880,6 +928,7 @@ async function submitCatalogImport2(catalogImportId) {
880
928
  ThumbnailsAlignment,
881
929
  Type,
882
930
  VerticalAlignment,
931
+ VerticalAlignmentAlignment,
883
932
  ViewMode,
884
933
  ViewRole,
885
934
  VoteRole,