@wix/auto_sdk_multilingual_machine-translation 1.0.30 → 1.0.31
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 +61 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +109 -3
- package/build/cjs/index.typings.js +61 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +109 -3
- package/build/cjs/meta.js +61 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +57 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +109 -3
- package/build/es/index.typings.mjs +57 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +109 -3
- package/build/es/meta.mjs +57 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +61 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +109 -3
- package/build/internal/cjs/index.typings.js +61 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +109 -3
- package/build/internal/cjs/meta.js +61 -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 +57 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +109 -3
- package/build/internal/es/index.typings.mjs +57 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +109 -3
- package/build/internal/es/meta.mjs +57 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -119,7 +119,9 @@ interface Node extends NodeDataOneOf {
|
|
|
119
119
|
blockquoteData?: BlockquoteData;
|
|
120
120
|
/** Data for a caption node. */
|
|
121
121
|
captionData?: CaptionData;
|
|
122
|
-
/**
|
|
122
|
+
/** Data for a layout node. Reserved for future use. */
|
|
123
|
+
layoutData?: LayoutData;
|
|
124
|
+
/** Data for a cell node. */
|
|
123
125
|
layoutCellData?: LayoutCellData;
|
|
124
126
|
/** 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. */
|
|
125
127
|
type?: NodeTypeWithLiterals;
|
|
@@ -184,7 +186,9 @@ interface NodeDataOneOf {
|
|
|
184
186
|
blockquoteData?: BlockquoteData;
|
|
185
187
|
/** Data for a caption node. */
|
|
186
188
|
captionData?: CaptionData;
|
|
187
|
-
/**
|
|
189
|
+
/** Data for a layout node. Reserved for future use. */
|
|
190
|
+
layoutData?: LayoutData;
|
|
191
|
+
/** Data for a cell node. */
|
|
188
192
|
layoutCellData?: LayoutCellData;
|
|
189
193
|
}
|
|
190
194
|
declare enum NodeType {
|
|
@@ -1741,6 +1745,108 @@ interface BlockquoteData {
|
|
|
1741
1745
|
interface CaptionData {
|
|
1742
1746
|
textStyle?: TextStyle;
|
|
1743
1747
|
}
|
|
1748
|
+
interface LayoutData {
|
|
1749
|
+
/**
|
|
1750
|
+
* Background color as a hexadecimal value.
|
|
1751
|
+
* @format COLOR_HEX
|
|
1752
|
+
*/
|
|
1753
|
+
backgroundColor?: string | null;
|
|
1754
|
+
/** Background image. */
|
|
1755
|
+
backgroundImage?: BackgroundImage;
|
|
1756
|
+
/**
|
|
1757
|
+
* Border color as a hexadecimal value.
|
|
1758
|
+
* @format COLOR_HEX
|
|
1759
|
+
*/
|
|
1760
|
+
borderColor?: string | null;
|
|
1761
|
+
/** Border width in pixels. */
|
|
1762
|
+
borderWidth?: number | null;
|
|
1763
|
+
/** Border */
|
|
1764
|
+
borderRadius?: number | null;
|
|
1765
|
+
/**
|
|
1766
|
+
* Backdrop color as a hexadecimal value.
|
|
1767
|
+
* @format COLOR_HEX
|
|
1768
|
+
*/
|
|
1769
|
+
backdropColor?: string | null;
|
|
1770
|
+
/** Backdrop image.radius in pixels. */
|
|
1771
|
+
backdropImage?: BackgroundImage;
|
|
1772
|
+
/** Backdrop top padding. */
|
|
1773
|
+
backdropPaddingTop?: number | null;
|
|
1774
|
+
/** Backdrop bottom padding */
|
|
1775
|
+
backdropPaddingBottom?: number | null;
|
|
1776
|
+
/** Horizontal and vertical gap between columns */
|
|
1777
|
+
gap?: number | null;
|
|
1778
|
+
/**
|
|
1779
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left
|
|
1780
|
+
* @maxSize 4
|
|
1781
|
+
*/
|
|
1782
|
+
cellPadding?: number[];
|
|
1783
|
+
/** Vertical alignment for the cell's items. */
|
|
1784
|
+
cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
|
|
1785
|
+
/** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
|
|
1786
|
+
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
1787
|
+
/** Size in pixels when responsiveness_behaviour applies */
|
|
1788
|
+
responsivenessBreakpoint?: number | null;
|
|
1789
|
+
}
|
|
1790
|
+
declare enum Scaling {
|
|
1791
|
+
/** Auto image scaling */
|
|
1792
|
+
AUTO = "AUTO",
|
|
1793
|
+
/** Contain image scaling */
|
|
1794
|
+
CONTAIN = "CONTAIN",
|
|
1795
|
+
/** Cover image scaling */
|
|
1796
|
+
COVER = "COVER"
|
|
1797
|
+
}
|
|
1798
|
+
/** @enumType */
|
|
1799
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
1800
|
+
declare enum ImagePosition {
|
|
1801
|
+
/** Image positioned at the center */
|
|
1802
|
+
CENTER = "CENTER",
|
|
1803
|
+
/** Image positioned on the left */
|
|
1804
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
1805
|
+
/** Image positioned on the right */
|
|
1806
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
1807
|
+
/** Image positioned at the center top */
|
|
1808
|
+
TOP = "TOP",
|
|
1809
|
+
/** Image positioned at the top left */
|
|
1810
|
+
TOP_LEFT = "TOP_LEFT",
|
|
1811
|
+
/** Image positioned at the top right */
|
|
1812
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
1813
|
+
/** Image positioned at the center bottom */
|
|
1814
|
+
BOTTOM = "BOTTOM",
|
|
1815
|
+
/** Image positioned at the bottom left */
|
|
1816
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
1817
|
+
/** Image positioned at the bottom right */
|
|
1818
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
1819
|
+
}
|
|
1820
|
+
/** @enumType */
|
|
1821
|
+
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
1822
|
+
interface BackgroundImage {
|
|
1823
|
+
/** Background image. */
|
|
1824
|
+
media?: Media;
|
|
1825
|
+
/** Background image opacity. */
|
|
1826
|
+
opacity?: number | null;
|
|
1827
|
+
/** Background image scaling. */
|
|
1828
|
+
scaling?: ScalingWithLiterals;
|
|
1829
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
1830
|
+
position?: ImagePositionWithLiterals;
|
|
1831
|
+
}
|
|
1832
|
+
declare enum VerticalAlignmentAlignment {
|
|
1833
|
+
/** Top alignment */
|
|
1834
|
+
TOP = "TOP",
|
|
1835
|
+
/** Middle alignment */
|
|
1836
|
+
MIDDLE = "MIDDLE",
|
|
1837
|
+
/** Bottom alignment */
|
|
1838
|
+
BOTTOM = "BOTTOM"
|
|
1839
|
+
}
|
|
1840
|
+
/** @enumType */
|
|
1841
|
+
type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
1842
|
+
declare enum ResponsivenessBehaviour {
|
|
1843
|
+
/** Stacking of columns */
|
|
1844
|
+
STACK = "STACK",
|
|
1845
|
+
/** Wrapping of columns */
|
|
1846
|
+
WRAP = "WRAP"
|
|
1847
|
+
}
|
|
1848
|
+
/** @enumType */
|
|
1849
|
+
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
1744
1850
|
interface LayoutCellData {
|
|
1745
1851
|
/** Size of the cell in 12 columns grid. */
|
|
1746
1852
|
colSpan?: number | null;
|
|
@@ -2264,4 +2370,4 @@ interface BulkMachineTranslateOptions {
|
|
|
2264
2370
|
contentToTranslate?: TranslatableContent[];
|
|
2265
2371
|
}
|
|
2266
2372
|
|
|
2267
|
-
export { 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 BulkActionMetadata, type BulkMachineTranslateApplicationErrors, type BulkMachineTranslateOptions, type BulkMachineTranslateRequest, type BulkMachineTranslateResponse, type BulkTranslateResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, Crop, type CropWithLiterals, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type EmbedData, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, Format, type FormatWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type MachineTranslateApplicationErrors, type MachineTranslateOptions, type MachineTranslateRequest, type MachineTranslateResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotEnoughCreditsError, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, 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, Position, type PositionWithLiterals, type PricingData, type Rel, Resizing, type ResizingWithLiterals, type RibbonStyles, type RichContent, type SameLanguageArgumentsError, type Settings, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, SupportedLanguage, type SupportedLanguageWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type TextTooLongError, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TranslatableContent, type TranslatableContentContentOneOf, Type, type TypeWithLiterals, type UnknownFormatError, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkMachineTranslate, machineTranslate };
|
|
2373
|
+
export { 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 BulkActionMetadata, type BulkMachineTranslateApplicationErrors, type BulkMachineTranslateOptions, type BulkMachineTranslateRequest, type BulkMachineTranslateResponse, type BulkTranslateResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, Crop, type CropWithLiterals, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type EmbedData, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, Format, type FormatWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, 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 MachineTranslateApplicationErrors, type MachineTranslateOptions, type MachineTranslateRequest, type MachineTranslateResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotEnoughCreditsError, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, 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, Position, type PositionWithLiterals, type PricingData, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RibbonStyles, type RichContent, type SameLanguageArgumentsError, Scaling, type ScalingWithLiterals, type Settings, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, SupportedLanguage, type SupportedLanguageWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type TextTooLongError, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TranslatableContent, type TranslatableContentContentOneOf, Type, type TypeWithLiterals, type UnknownFormatError, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkMachineTranslate, machineTranslate };
|
|
@@ -32,6 +32,7 @@ __export(index_typings_exports, {
|
|
|
32
32
|
FontType: () => FontType,
|
|
33
33
|
Format: () => Format,
|
|
34
34
|
GIFType: () => GIFType,
|
|
35
|
+
ImagePosition: () => ImagePosition,
|
|
35
36
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
36
37
|
Layout: () => Layout,
|
|
37
38
|
LayoutType: () => LayoutType,
|
|
@@ -46,6 +47,8 @@ __export(index_typings_exports, {
|
|
|
46
47
|
PollLayoutType: () => PollLayoutType,
|
|
47
48
|
Position: () => Position,
|
|
48
49
|
Resizing: () => Resizing,
|
|
50
|
+
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
51
|
+
Scaling: () => Scaling,
|
|
49
52
|
Source: () => Source,
|
|
50
53
|
StylesPosition: () => StylesPosition,
|
|
51
54
|
SupportedLanguage: () => SupportedLanguage,
|
|
@@ -54,6 +57,7 @@ __export(index_typings_exports, {
|
|
|
54
57
|
ThumbnailsAlignment: () => ThumbnailsAlignment,
|
|
55
58
|
Type: () => Type,
|
|
56
59
|
VerticalAlignment: () => VerticalAlignment,
|
|
60
|
+
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
57
61
|
ViewMode: () => ViewMode,
|
|
58
62
|
ViewRole: () => ViewRole,
|
|
59
63
|
VoteRole: () => VoteRole,
|
|
@@ -179,6 +183,12 @@ function machineTranslate(payload) {
|
|
|
179
183
|
},
|
|
180
184
|
{
|
|
181
185
|
path: "contentToTranslate.richContent.nodes.audioData.coverImage.duration"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
182
192
|
}
|
|
183
193
|
]
|
|
184
194
|
},
|
|
@@ -252,6 +262,12 @@ function machineTranslate(payload) {
|
|
|
252
262
|
},
|
|
253
263
|
{
|
|
254
264
|
path: "translatedContent.richContent.nodes.audioData.coverImage.duration"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
path: "translatedContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
path: "translatedContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
255
271
|
}
|
|
256
272
|
]
|
|
257
273
|
},
|
|
@@ -322,6 +338,12 @@ function bulkMachineTranslate(payload) {
|
|
|
322
338
|
},
|
|
323
339
|
{
|
|
324
340
|
path: "contentToTranslate.richContent.nodes.audioData.coverImage.duration"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
325
347
|
}
|
|
326
348
|
]
|
|
327
349
|
},
|
|
@@ -395,6 +417,12 @@ function bulkMachineTranslate(payload) {
|
|
|
395
417
|
},
|
|
396
418
|
{
|
|
397
419
|
path: "results.item.richContent.nodes.audioData.coverImage.duration"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
398
426
|
}
|
|
399
427
|
]
|
|
400
428
|
},
|
|
@@ -682,6 +710,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
682
710
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
683
711
|
return NullValue2;
|
|
684
712
|
})(NullValue || {});
|
|
713
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
714
|
+
Scaling2["AUTO"] = "AUTO";
|
|
715
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
716
|
+
Scaling2["COVER"] = "COVER";
|
|
717
|
+
return Scaling2;
|
|
718
|
+
})(Scaling || {});
|
|
719
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
720
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
721
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
722
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
723
|
+
ImagePosition2["TOP"] = "TOP";
|
|
724
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
725
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
726
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
727
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
728
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
729
|
+
return ImagePosition2;
|
|
730
|
+
})(ImagePosition || {});
|
|
731
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
732
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
733
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
734
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
735
|
+
return VerticalAlignmentAlignment2;
|
|
736
|
+
})(VerticalAlignmentAlignment || {});
|
|
737
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
738
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
739
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
740
|
+
return ResponsivenessBehaviour2;
|
|
741
|
+
})(ResponsivenessBehaviour || {});
|
|
685
742
|
var SupportedLanguage = /* @__PURE__ */ ((SupportedLanguage2) => {
|
|
686
743
|
SupportedLanguage2["UNDEFINED_SUPPORTED_LANGUAGE"] = "UNDEFINED_SUPPORTED_LANGUAGE";
|
|
687
744
|
SupportedLanguage2["AF"] = "AF";
|
|
@@ -911,6 +968,7 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
|
|
|
911
968
|
FontType,
|
|
912
969
|
Format,
|
|
913
970
|
GIFType,
|
|
971
|
+
ImagePosition,
|
|
914
972
|
InitialExpandedItems,
|
|
915
973
|
Layout,
|
|
916
974
|
LayoutType,
|
|
@@ -925,6 +983,8 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
|
|
|
925
983
|
PollLayoutType,
|
|
926
984
|
Position,
|
|
927
985
|
Resizing,
|
|
986
|
+
ResponsivenessBehaviour,
|
|
987
|
+
Scaling,
|
|
928
988
|
Source,
|
|
929
989
|
StylesPosition,
|
|
930
990
|
SupportedLanguage,
|
|
@@ -933,6 +993,7 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
|
|
|
933
993
|
ThumbnailsAlignment,
|
|
934
994
|
Type,
|
|
935
995
|
VerticalAlignment,
|
|
996
|
+
VerticalAlignmentAlignment,
|
|
936
997
|
ViewMode,
|
|
937
998
|
ViewRole,
|
|
938
999
|
VoteRole,
|