@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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +17 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +60 -7
  5. package/build/cjs/index.typings.js +17 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +60 -7
  8. package/build/cjs/meta.js +17 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +16 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +60 -7
  14. package/build/es/index.typings.mjs +16 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +60 -7
  17. package/build/es/meta.mjs +16 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +17 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +60 -7
  23. package/build/internal/cjs/index.typings.js +17 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +60 -7
  26. package/build/internal/cjs/meta.js +17 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +16 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +60 -7
  32. package/build/internal/es/index.typings.mjs +16 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +60 -7
  35. package/build/internal/es/meta.mjs +16 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. 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 };
@@ -645,6 +645,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
645
645
  NodeType2["TOC"] = "TOC";
646
646
  NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
647
647
  NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
648
+ NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
648
649
  return NodeType2;
649
650
  })(NodeType || {});
650
651
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -814,6 +815,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
814
815
  DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
815
816
  DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
816
817
  DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
818
+ DecorationType2["SKETCH"] = "SKETCH";
817
819
  return DecorationType2;
818
820
  })(DecorationType || {});
819
821
  var FontType = /* @__PURE__ */ ((FontType2) => {
@@ -821,6 +823,15 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
821
823
  FontType2["EM"] = "EM";
822
824
  return FontType2;
823
825
  })(FontType || {});
826
+ var Variant = /* @__PURE__ */ ((Variant2) => {
827
+ Variant2["UNDERLINE"] = "UNDERLINE";
828
+ Variant2["BOX"] = "BOX";
829
+ Variant2["CIRCLE"] = "CIRCLE";
830
+ Variant2["HIGHLIGHT"] = "HIGHLIGHT";
831
+ Variant2["STRIKETHROUGH"] = "STRIKETHROUGH";
832
+ Variant2["CROSSED_OFF"] = "CROSSED_OFF";
833
+ return Variant2;
834
+ })(Variant || {});
824
835
  var Position = /* @__PURE__ */ ((Position2) => {
825
836
  Position2["START"] = "START";
826
837
  Position2["END"] = "END";
@@ -997,6 +1008,10 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
997
1008
  SmartBlockDataType2["PILLS"] = "PILLS";
998
1009
  SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
999
1010
  SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
1011
+ SmartBlockDataType2["CIRCLE"] = "CIRCLE";
1012
+ SmartBlockDataType2["PYRAMID"] = "PYRAMID";
1013
+ SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
1014
+ SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
1000
1015
  return SmartBlockDataType2;
1001
1016
  })(SmartBlockDataType || {});
1002
1017
  var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
@@ -1271,6 +1286,7 @@ export {
1271
1286
  TextAlignment,
1272
1287
  ThumbnailsAlignment,
1273
1288
  Type,
1289
+ Variant,
1274
1290
  VerticalAlignment,
1275
1291
  VerticalAlignmentAlignment,
1276
1292
  ViewMode,