@wix/auto_sdk_multilingual_machine-translation 1.0.49 → 1.0.51
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 +17 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +60 -7
- package/build/cjs/index.typings.js +17 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +60 -7
- package/build/cjs/meta.js +17 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +16 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +60 -7
- package/build/es/index.typings.mjs +16 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +60 -7
- package/build/es/meta.mjs +16 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +17 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +60 -7
- package/build/internal/cjs/index.typings.js +17 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +60 -7
- package/build/internal/cjs/meta.js +17 -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 +16 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +60 -7
- package/build/internal/es/index.typings.mjs +16 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +60 -7
- package/build/internal/es/meta.mjs +16 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -131,6 +131,10 @@ interface Node extends NodeDataOneOf {
|
|
|
131
131
|
smartBlockData?: SmartBlockData;
|
|
132
132
|
/** Data for a smart block cell node. */
|
|
133
133
|
smartBlockCellData?: SmartBlockCellData;
|
|
134
|
+
/** Data for a checkbox list node. */
|
|
135
|
+
checkboxListData?: CheckboxListData;
|
|
136
|
+
/** Data for a list item node. */
|
|
137
|
+
listItemData?: ListItemNodeData;
|
|
134
138
|
/** 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. */
|
|
135
139
|
type?: NodeTypeWithLiterals;
|
|
136
140
|
/** Node ID. */
|
|
@@ -208,6 +212,10 @@ interface NodeDataOneOf {
|
|
|
208
212
|
smartBlockData?: SmartBlockData;
|
|
209
213
|
/** Data for a smart block cell node. */
|
|
210
214
|
smartBlockCellData?: SmartBlockCellData;
|
|
215
|
+
/** Data for a checkbox list node. */
|
|
216
|
+
checkboxListData?: CheckboxListData;
|
|
217
|
+
/** Data for a list item node. */
|
|
218
|
+
listItemData?: ListItemNodeData;
|
|
211
219
|
}
|
|
212
220
|
declare enum NodeType {
|
|
213
221
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -248,10 +256,11 @@ declare enum NodeType {
|
|
|
248
256
|
CARD = "CARD",
|
|
249
257
|
TOC = "TOC",
|
|
250
258
|
SMART_BLOCK = "SMART_BLOCK",
|
|
251
|
-
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
259
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL",
|
|
260
|
+
CHECKBOX_LIST = "CHECKBOX_LIST"
|
|
252
261
|
}
|
|
253
262
|
/** @enumType */
|
|
254
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
|
|
263
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL' | 'CHECKBOX_LIST';
|
|
255
264
|
interface NodeStyle {
|
|
256
265
|
/** The top padding value in pixels. */
|
|
257
266
|
paddingTop?: string | null;
|
|
@@ -1261,6 +1270,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
1261
1270
|
subscriptData?: boolean | null;
|
|
1262
1271
|
/** Data for a font family decoration. */
|
|
1263
1272
|
fontFamilyData?: FontFamilyData;
|
|
1273
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
1274
|
+
sketchData?: SketchData;
|
|
1264
1275
|
/** The type of decoration to apply. */
|
|
1265
1276
|
type?: DecorationTypeWithLiterals;
|
|
1266
1277
|
}
|
|
@@ -1292,6 +1303,8 @@ interface DecorationDataOneOf {
|
|
|
1292
1303
|
subscriptData?: boolean | null;
|
|
1293
1304
|
/** Data for a font family decoration. */
|
|
1294
1305
|
fontFamilyData?: FontFamilyData;
|
|
1306
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
1307
|
+
sketchData?: SketchData;
|
|
1295
1308
|
}
|
|
1296
1309
|
declare enum DecorationType {
|
|
1297
1310
|
BOLD = "BOLD",
|
|
@@ -1307,10 +1320,11 @@ declare enum DecorationType {
|
|
|
1307
1320
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1308
1321
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
1309
1322
|
SUBSCRIPT = "SUBSCRIPT",
|
|
1310
|
-
FONT_FAMILY = "FONT_FAMILY"
|
|
1323
|
+
FONT_FAMILY = "FONT_FAMILY",
|
|
1324
|
+
SKETCH = "SKETCH"
|
|
1311
1325
|
}
|
|
1312
1326
|
/** @enumType */
|
|
1313
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
1327
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
|
|
1314
1328
|
interface AnchorData {
|
|
1315
1329
|
/** The target node's ID. */
|
|
1316
1330
|
anchor?: string;
|
|
@@ -1353,6 +1367,27 @@ interface FontFamilyData {
|
|
|
1353
1367
|
/** @maxLength 1000 */
|
|
1354
1368
|
value?: string | null;
|
|
1355
1369
|
}
|
|
1370
|
+
interface SketchData {
|
|
1371
|
+
/** The sketch annotation variant to draw over the text. */
|
|
1372
|
+
variant?: VariantWithLiterals;
|
|
1373
|
+
/**
|
|
1374
|
+
* Annotation color. Defaults to the theme action color.
|
|
1375
|
+
* @maxLength 19
|
|
1376
|
+
*/
|
|
1377
|
+
color?: string | null;
|
|
1378
|
+
/** Whether the annotation animates on first paint. Defaults to `true`. */
|
|
1379
|
+
animate?: boolean | null;
|
|
1380
|
+
}
|
|
1381
|
+
declare enum Variant {
|
|
1382
|
+
UNDERLINE = "UNDERLINE",
|
|
1383
|
+
BOX = "BOX",
|
|
1384
|
+
CIRCLE = "CIRCLE",
|
|
1385
|
+
HIGHLIGHT = "HIGHLIGHT",
|
|
1386
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1387
|
+
CROSSED_OFF = "CROSSED_OFF"
|
|
1388
|
+
}
|
|
1389
|
+
/** @enumType */
|
|
1390
|
+
type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
|
|
1356
1391
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
1357
1392
|
/** Data for embedded Wix Bookings content. */
|
|
1358
1393
|
bookingData?: BookingData;
|
|
@@ -2254,10 +2289,18 @@ declare enum SmartBlockDataType {
|
|
|
2254
2289
|
/** Star rating display with stars and a numeric value per cell. */
|
|
2255
2290
|
STAR_RATING = "STAR_RATING",
|
|
2256
2291
|
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
2257
|
-
QUOTE_BOXES = "QUOTE_BOXES"
|
|
2292
|
+
QUOTE_BOXES = "QUOTE_BOXES",
|
|
2293
|
+
/** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
|
|
2294
|
+
CIRCLE = "CIRCLE",
|
|
2295
|
+
/** Hierarchical pyramid where each cell renders as a horizontal slice (apex at top, base at bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the pyramid. */
|
|
2296
|
+
PYRAMID = "PYRAMID",
|
|
2297
|
+
/** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
|
|
2298
|
+
STAIRCASE = "STAIRCASE",
|
|
2299
|
+
/** Hierarchical funnel where each cell renders as a horizontal slice (wide at top, narrowing toward the bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the funnel. */
|
|
2300
|
+
VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
|
|
2258
2301
|
}
|
|
2259
2302
|
/** @enumType */
|
|
2260
|
-
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
|
|
2303
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES' | 'CIRCLE' | 'PYRAMID' | 'STAIRCASE' | 'VERTICAL_FUNNEL';
|
|
2261
2304
|
/** Column size controlling how many cells appear per row. */
|
|
2262
2305
|
declare enum ColumnSize {
|
|
2263
2306
|
/** Up to 4 cells in a row. */
|
|
@@ -2304,6 +2347,16 @@ interface SmartBlockCellData {
|
|
|
2304
2347
|
*/
|
|
2305
2348
|
shapeColor?: string | null;
|
|
2306
2349
|
}
|
|
2350
|
+
interface CheckboxListData {
|
|
2351
|
+
/** Indentation level from 0-4. */
|
|
2352
|
+
indentation?: number;
|
|
2353
|
+
/** Offset level from 0-4. */
|
|
2354
|
+
offset?: number | null;
|
|
2355
|
+
}
|
|
2356
|
+
interface ListItemNodeData {
|
|
2357
|
+
/** Checkbox list item state. Defaults to `false`. */
|
|
2358
|
+
checked?: boolean | null;
|
|
2359
|
+
}
|
|
2307
2360
|
interface Metadata {
|
|
2308
2361
|
/** Schema version. */
|
|
2309
2362
|
version?: number;
|
|
@@ -2831,4 +2884,4 @@ interface BulkMachineTranslateOptions {
|
|
|
2831
2884
|
contentToTranslate?: TranslatableContent[];
|
|
2832
2885
|
}
|
|
2833
2886
|
|
|
2834
|
-
export { Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkMachineTranslateApplicationErrors, type BulkMachineTranslateOptions, type BulkMachineTranslateRequest, type BulkMachineTranslateResponse, type BulkTranslateResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, Crop, type CropWithLiterals, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type EmbedData, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, Format, type FormatWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, ListStyle, type ListStyleWithLiterals, 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, Origin, type OriginWithLiterals, 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 PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, 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, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, 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 TocData, 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 };
|
|
2887
|
+
export { Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkMachineTranslateApplicationErrors, type BulkMachineTranslateOptions, type BulkMachineTranslateRequest, type BulkMachineTranslateResponse, type BulkTranslateResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, Crop, type CropWithLiterals, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type EmbedData, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, Format, type FormatWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, 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, Origin, type OriginWithLiterals, 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 PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, 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, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, 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 TocData, type TranslatableContent, type TranslatableContentContentOneOf, Type, type TypeWithLiterals, type UnknownFormatError, Variant, type VariantWithLiterals, 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 };
|
|
@@ -70,6 +70,7 @@ __export(index_typings_exports, {
|
|
|
70
70
|
TextAlignment: () => TextAlignment,
|
|
71
71
|
ThumbnailsAlignment: () => ThumbnailsAlignment,
|
|
72
72
|
Type: () => Type,
|
|
73
|
+
Variant: () => Variant,
|
|
73
74
|
VerticalAlignment: () => VerticalAlignment,
|
|
74
75
|
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
75
76
|
ViewMode: () => ViewMode,
|
|
@@ -726,6 +727,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
726
727
|
NodeType2["TOC"] = "TOC";
|
|
727
728
|
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
728
729
|
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
730
|
+
NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
|
|
729
731
|
return NodeType2;
|
|
730
732
|
})(NodeType || {});
|
|
731
733
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -895,6 +897,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
895
897
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
896
898
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
897
899
|
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
900
|
+
DecorationType2["SKETCH"] = "SKETCH";
|
|
898
901
|
return DecorationType2;
|
|
899
902
|
})(DecorationType || {});
|
|
900
903
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
@@ -902,6 +905,15 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
902
905
|
FontType2["EM"] = "EM";
|
|
903
906
|
return FontType2;
|
|
904
907
|
})(FontType || {});
|
|
908
|
+
var Variant = /* @__PURE__ */ ((Variant2) => {
|
|
909
|
+
Variant2["UNDERLINE"] = "UNDERLINE";
|
|
910
|
+
Variant2["BOX"] = "BOX";
|
|
911
|
+
Variant2["CIRCLE"] = "CIRCLE";
|
|
912
|
+
Variant2["HIGHLIGHT"] = "HIGHLIGHT";
|
|
913
|
+
Variant2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
914
|
+
Variant2["CROSSED_OFF"] = "CROSSED_OFF";
|
|
915
|
+
return Variant2;
|
|
916
|
+
})(Variant || {});
|
|
905
917
|
var Position = /* @__PURE__ */ ((Position2) => {
|
|
906
918
|
Position2["START"] = "START";
|
|
907
919
|
Position2["END"] = "END";
|
|
@@ -1078,6 +1090,10 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
1078
1090
|
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
1079
1091
|
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
1080
1092
|
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
1093
|
+
SmartBlockDataType2["CIRCLE"] = "CIRCLE";
|
|
1094
|
+
SmartBlockDataType2["PYRAMID"] = "PYRAMID";
|
|
1095
|
+
SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
|
|
1096
|
+
SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
|
|
1081
1097
|
return SmartBlockDataType2;
|
|
1082
1098
|
})(SmartBlockDataType || {});
|
|
1083
1099
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
@@ -1353,6 +1369,7 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
|
|
|
1353
1369
|
TextAlignment,
|
|
1354
1370
|
ThumbnailsAlignment,
|
|
1355
1371
|
Type,
|
|
1372
|
+
Variant,
|
|
1356
1373
|
VerticalAlignment,
|
|
1357
1374
|
VerticalAlignmentAlignment,
|
|
1358
1375
|
ViewMode,
|