@wix/auto_sdk_stores_catalog-imports-v-3 1.0.14 → 1.0.16
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 +2 -2
- package/build/cjs/index.js +7 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +29 -18
- package/build/cjs/index.typings.js +7 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +28 -17
- package/build/cjs/meta.js +7 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +6 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +29 -18
- package/build/es/index.typings.mjs +6 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +28 -17
- package/build/es/meta.mjs +6 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +7 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +29 -18
- package/build/internal/cjs/index.typings.js +7 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +28 -17
- package/build/internal/cjs/meta.js +7 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +6 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +29 -18
- package/build/internal/es/index.typings.mjs +6 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +28 -17
- package/build/internal/es/meta.mjs +6 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -1955,6 +1955,8 @@ interface LayoutData {
|
|
|
1955
1955
|
responsivenessBreakpoint?: number | null;
|
|
1956
1956
|
/** Styling for the layout's container. */
|
|
1957
1957
|
containerData?: PluginContainerData;
|
|
1958
|
+
/** Defines where selected design propertied applies to */
|
|
1959
|
+
designTarget?: DesignTargetWithLiterals;
|
|
1958
1960
|
}
|
|
1959
1961
|
declare enum Scaling {
|
|
1960
1962
|
/** Auto image scaling */
|
|
@@ -2016,6 +2018,14 @@ declare enum ResponsivenessBehaviour {
|
|
|
2016
2018
|
}
|
|
2017
2019
|
/** @enumType */
|
|
2018
2020
|
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
2021
|
+
declare enum DesignTarget {
|
|
2022
|
+
/** Design applied to layout */
|
|
2023
|
+
LAYOUT = "LAYOUT",
|
|
2024
|
+
/** Design applied to cells */
|
|
2025
|
+
CELL = "CELL"
|
|
2026
|
+
}
|
|
2027
|
+
/** @enumType */
|
|
2028
|
+
type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
2019
2029
|
interface LayoutCellData {
|
|
2020
2030
|
/** Size of the cell in 12 columns grid. */
|
|
2021
2031
|
colSpan?: number | null;
|
|
@@ -2306,34 +2316,37 @@ interface ChoicesSettings {
|
|
|
2306
2316
|
}
|
|
2307
2317
|
interface ConnectedOptionChoice extends ConnectedOptionChoiceValueOneOf {
|
|
2308
2318
|
/**
|
|
2309
|
-
*
|
|
2319
|
+
* Single color code in HEX format, [as described by MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color). For example, `#FF0000` for red.
|
|
2310
2320
|
* @minLength 3
|
|
2311
2321
|
* @maxLength 20
|
|
2312
2322
|
*/
|
|
2313
2323
|
colorCode?: string;
|
|
2314
2324
|
/**
|
|
2315
|
-
*
|
|
2325
|
+
* Choice ID.
|
|
2316
2326
|
* @format GUID
|
|
2317
2327
|
*/
|
|
2318
2328
|
choiceId?: string | null;
|
|
2319
2329
|
/**
|
|
2320
|
-
* Product media
|
|
2321
|
-
*
|
|
2322
|
-
*
|
|
2330
|
+
* Product media to display when this choice is selected.
|
|
2331
|
+
*
|
|
2332
|
+
* When not empty, only these images are shown when a customer selects this choice. Otherwise, all product images are shown.
|
|
2333
|
+
* When multiple choices from different options are selected, only media present in `linkedMedia` of ALL selected choices are shown.
|
|
2334
|
+
* For example, if `Color: Red` has images 1, 2, 3 and `Material: Silk` has images 2, 3, 5, then only images 2 and 3 are shown when both are selected.
|
|
2323
2335
|
* @maxSize 100
|
|
2324
2336
|
*/
|
|
2325
2337
|
linkedMedia?: ProductMedia[];
|
|
2326
|
-
/**
|
|
2338
|
+
/** Choice type. */
|
|
2327
2339
|
choiceType?: ChoiceTypeWithLiterals;
|
|
2328
2340
|
/**
|
|
2329
|
-
* Choice name.
|
|
2341
|
+
* Choice name. For text choices, this field also contains the choice value.
|
|
2330
2342
|
* @minLength 1
|
|
2331
2343
|
* @maxLength 50
|
|
2332
2344
|
*/
|
|
2333
2345
|
name?: string | null;
|
|
2334
2346
|
/**
|
|
2335
|
-
*
|
|
2336
|
-
*
|
|
2347
|
+
* Whether at least one variant with this choice is in stock in the default location of the store.
|
|
2348
|
+
*
|
|
2349
|
+
* For example, a product with Color and Size options has these variants: [Blue, Small] which is out of stock and [Red, Large] which is in stock. For choice Blue, this field is `false`. For choice Red, this field is `true`.
|
|
2337
2350
|
* @readonly
|
|
2338
2351
|
*/
|
|
2339
2352
|
inStock?: boolean;
|
|
@@ -2348,7 +2361,7 @@ interface ConnectedOptionChoice extends ConnectedOptionChoiceValueOneOf {
|
|
|
2348
2361
|
/** @oneof */
|
|
2349
2362
|
interface ConnectedOptionChoiceValueOneOf {
|
|
2350
2363
|
/**
|
|
2351
|
-
*
|
|
2364
|
+
* Single color code in HEX format, [as described by MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color). For example, `#FF0000` for red.
|
|
2352
2365
|
* @minLength 3
|
|
2353
2366
|
* @maxLength 20
|
|
2354
2367
|
*/
|
|
@@ -2359,14 +2372,10 @@ declare enum ChoiceType {
|
|
|
2359
2372
|
/** Text choice. */
|
|
2360
2373
|
CHOICE_TEXT = "CHOICE_TEXT",
|
|
2361
2374
|
/** Single color choice. */
|
|
2362
|
-
ONE_COLOR = "ONE_COLOR"
|
|
2363
|
-
/** Multiple colors choice. */
|
|
2364
|
-
MULTIPLE_COLORS = "MULTIPLE_COLORS",
|
|
2365
|
-
/** Image choice. */
|
|
2366
|
-
IMAGE = "IMAGE"
|
|
2375
|
+
ONE_COLOR = "ONE_COLOR"
|
|
2367
2376
|
}
|
|
2368
2377
|
/** @enumType */
|
|
2369
|
-
type ChoiceTypeWithLiterals = ChoiceType | 'UNKNOWN_CHOICE_TYPE' | 'CHOICE_TEXT' | 'ONE_COLOR'
|
|
2378
|
+
type ChoiceTypeWithLiterals = ChoiceType | 'UNKNOWN_CHOICE_TYPE' | 'CHOICE_TEXT' | 'ONE_COLOR';
|
|
2370
2379
|
interface MultipleColors {
|
|
2371
2380
|
/**
|
|
2372
2381
|
* List of color codes.
|
|
@@ -3195,6 +3204,8 @@ interface SubmitCatalogImportResponse {
|
|
|
3195
3204
|
* @format GUID
|
|
3196
3205
|
*/
|
|
3197
3206
|
jobId?: string;
|
|
3207
|
+
/** Total number of items that will be processed in this import */
|
|
3208
|
+
totalProductsCount?: number;
|
|
3198
3209
|
}
|
|
3199
3210
|
interface CatalogImportAlreadySubmittedErrorData {
|
|
3200
3211
|
/**
|
|
@@ -3396,8 +3407,8 @@ declare function addProductsToImport(catalogImportId: string, products: NonNulla
|
|
|
3396
3407
|
* @applicableIdentity APP
|
|
3397
3408
|
* @fqn wix.stores.catalog.catalog_import.v3.CatalogImports.SubmitCatalogImport
|
|
3398
3409
|
*/
|
|
3399
|
-
declare function submitCatalogImport(catalogImportId: string): Promise<NonNullablePaths<SubmitCatalogImportResponse, `jobId`, 2> & {
|
|
3410
|
+
declare function submitCatalogImport(catalogImportId: string): Promise<NonNullablePaths<SubmitCatalogImportResponse, `jobId` | `totalProductsCount`, 2> & {
|
|
3400
3411
|
__applicationErrorsType?: SubmitCatalogImportApplicationErrors;
|
|
3401
3412
|
}>;
|
|
3402
3413
|
|
|
3403
|
-
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 BorderWidths, 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 FontFamilyData, 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 };
|
|
3414
|
+
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 BorderWidths, 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, DesignTarget, type DesignTargetWithLiterals, 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 FontFamilyData, 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 };
|
|
@@ -28,6 +28,7 @@ __export(index_typings_exports, {
|
|
|
28
28
|
ChoiceType: () => ChoiceType,
|
|
29
29
|
Crop: () => Crop,
|
|
30
30
|
DecorationType: () => DecorationType,
|
|
31
|
+
DesignTarget: () => DesignTarget,
|
|
31
32
|
Direction: () => Direction,
|
|
32
33
|
DiscountType: () => DiscountType,
|
|
33
34
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
@@ -680,6 +681,11 @@ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
|
680
681
|
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
681
682
|
return ResponsivenessBehaviour2;
|
|
682
683
|
})(ResponsivenessBehaviour || {});
|
|
684
|
+
var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
685
|
+
DesignTarget2["LAYOUT"] = "LAYOUT";
|
|
686
|
+
DesignTarget2["CELL"] = "CELL";
|
|
687
|
+
return DesignTarget2;
|
|
688
|
+
})(DesignTarget || {});
|
|
683
689
|
var MediaType = /* @__PURE__ */ ((MediaType2) => {
|
|
684
690
|
MediaType2["UNKNOWN_MEDIA_TYPE"] = "UNKNOWN_MEDIA_TYPE";
|
|
685
691
|
MediaType2["IMAGE"] = "IMAGE";
|
|
@@ -696,8 +702,6 @@ var ChoiceType = /* @__PURE__ */ ((ChoiceType2) => {
|
|
|
696
702
|
ChoiceType2["UNKNOWN_CHOICE_TYPE"] = "UNKNOWN_CHOICE_TYPE";
|
|
697
703
|
ChoiceType2["CHOICE_TEXT"] = "CHOICE_TEXT";
|
|
698
704
|
ChoiceType2["ONE_COLOR"] = "ONE_COLOR";
|
|
699
|
-
ChoiceType2["MULTIPLE_COLORS"] = "MULTIPLE_COLORS";
|
|
700
|
-
ChoiceType2["IMAGE"] = "IMAGE";
|
|
701
705
|
return ChoiceType2;
|
|
702
706
|
})(ChoiceType || {});
|
|
703
707
|
var ModifierRenderType = /* @__PURE__ */ ((ModifierRenderType2) => {
|
|
@@ -893,6 +897,7 @@ async function submitCatalogImport2(catalogImportId) {
|
|
|
893
897
|
ChoiceType,
|
|
894
898
|
Crop,
|
|
895
899
|
DecorationType,
|
|
900
|
+
DesignTarget,
|
|
896
901
|
Direction,
|
|
897
902
|
DiscountType,
|
|
898
903
|
DividerDataAlignment,
|