@wix/auto_sdk_stores_catalog-imports-v-3 1.0.6 → 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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +50 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +112 -5
- package/build/cjs/index.typings.js +50 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +112 -5
- package/build/cjs/meta.js +50 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +46 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +112 -5
- package/build/es/index.typings.mjs +46 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +112 -5
- package/build/es/meta.mjs +46 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +50 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +112 -5
- package/build/internal/cjs/index.typings.js +50 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +112 -5
- package/build/internal/cjs/meta.js +50 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +46 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +112 -5
- package/build/internal/es/index.typings.mjs +46 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +112 -5
- package/build/internal/es/meta.mjs +46 -0
- package/build/internal/es/meta.mjs.map +1 -1
- 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
|
-
/**
|
|
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
|
-
/**
|
|
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 {
|
|
@@ -942,10 +946,11 @@ interface HTMLDataDataOneOf {
|
|
|
942
946
|
}
|
|
943
947
|
declare enum Source {
|
|
944
948
|
HTML = "HTML",
|
|
945
|
-
ADSENSE = "ADSENSE"
|
|
949
|
+
ADSENSE = "ADSENSE",
|
|
950
|
+
AI = "AI"
|
|
946
951
|
}
|
|
947
952
|
/** @enumType */
|
|
948
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
|
953
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
949
954
|
interface ImageData {
|
|
950
955
|
/** Styling for the image's container. */
|
|
951
956
|
containerData?: PluginContainerData;
|
|
@@ -1875,6 +1880,108 @@ interface BlockquoteData {
|
|
|
1875
1880
|
interface CaptionData {
|
|
1876
1881
|
textStyle?: TextStyle;
|
|
1877
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';
|
|
1878
1985
|
interface LayoutCellData {
|
|
1879
1986
|
/** Size of the cell in 12 columns grid. */
|
|
1880
1987
|
colSpan?: number | null;
|
|
@@ -3259,4 +3366,4 @@ declare function submitCatalogImport(catalogImportId: string): Promise<NonNullab
|
|
|
3259
3366
|
__applicationErrorsType?: SubmitCatalogImportApplicationErrors;
|
|
3260
3367
|
}>;
|
|
3261
3368
|
|
|
3262
|
-
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
|
}
|
|
@@ -432,6 +444,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
432
444
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
433
445
|
Source2["HTML"] = "HTML";
|
|
434
446
|
Source2["ADSENSE"] = "ADSENSE";
|
|
447
|
+
Source2["AI"] = "AI";
|
|
435
448
|
return Source2;
|
|
436
449
|
})(Source || {});
|
|
437
450
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -560,6 +573,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
560
573
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
561
574
|
return NullValue2;
|
|
562
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 || {});
|
|
563
605
|
var MediaType = /* @__PURE__ */ ((MediaType2) => {
|
|
564
606
|
MediaType2["UNKNOWN_MEDIA_TYPE"] = "UNKNOWN_MEDIA_TYPE";
|
|
565
607
|
MediaType2["IMAGE"] = "IMAGE";
|
|
@@ -778,6 +820,7 @@ export {
|
|
|
778
820
|
FileType,
|
|
779
821
|
FontType,
|
|
780
822
|
GIFType,
|
|
823
|
+
ImagePosition,
|
|
781
824
|
InitialExpandedItems,
|
|
782
825
|
Layout,
|
|
783
826
|
LayoutType,
|
|
@@ -797,6 +840,8 @@ export {
|
|
|
797
840
|
ProductOptionRenderType,
|
|
798
841
|
ProductType,
|
|
799
842
|
Resizing,
|
|
843
|
+
ResponsivenessBehaviour,
|
|
844
|
+
Scaling,
|
|
800
845
|
Source,
|
|
801
846
|
StylesPosition,
|
|
802
847
|
SubscriptionFrequency,
|
|
@@ -805,6 +850,7 @@ export {
|
|
|
805
850
|
ThumbnailsAlignment,
|
|
806
851
|
Type,
|
|
807
852
|
VerticalAlignment,
|
|
853
|
+
VerticalAlignmentAlignment,
|
|
808
854
|
ViewMode,
|
|
809
855
|
ViewRole,
|
|
810
856
|
VoteRole,
|