@wix/auto_sdk_multilingual_machine-translation 1.0.44 → 1.0.46

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 (50) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +45 -3
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +99 -3
  5. package/build/cjs/index.typings.js +45 -3
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +99 -3
  8. package/build/cjs/meta.js +45 -3
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.d.ts +677 -0
  11. package/build/cjs/schemas.js +760 -0
  12. package/build/cjs/schemas.js.map +1 -0
  13. package/build/es/index.d.mts +1 -1
  14. package/build/es/index.mjs +43 -3
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +99 -3
  17. package/build/es/index.typings.mjs +43 -3
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +99 -3
  20. package/build/es/meta.mjs +43 -3
  21. package/build/es/meta.mjs.map +1 -1
  22. package/build/es/schemas.d.mts +677 -0
  23. package/build/es/schemas.mjs +720 -0
  24. package/build/es/schemas.mjs.map +1 -0
  25. package/build/internal/cjs/index.d.ts +1 -1
  26. package/build/internal/cjs/index.js +45 -3
  27. package/build/internal/cjs/index.js.map +1 -1
  28. package/build/internal/cjs/index.typings.d.ts +99 -3
  29. package/build/internal/cjs/index.typings.js +45 -3
  30. package/build/internal/cjs/index.typings.js.map +1 -1
  31. package/build/internal/cjs/meta.d.ts +99 -3
  32. package/build/internal/cjs/meta.js +45 -3
  33. package/build/internal/cjs/meta.js.map +1 -1
  34. package/build/internal/cjs/schemas.d.ts +677 -0
  35. package/build/internal/cjs/schemas.js +760 -0
  36. package/build/internal/cjs/schemas.js.map +1 -0
  37. package/build/internal/es/index.d.mts +1 -1
  38. package/build/internal/es/index.mjs +43 -3
  39. package/build/internal/es/index.mjs.map +1 -1
  40. package/build/internal/es/index.typings.d.mts +99 -3
  41. package/build/internal/es/index.typings.mjs +43 -3
  42. package/build/internal/es/index.typings.mjs.map +1 -1
  43. package/build/internal/es/meta.d.mts +99 -3
  44. package/build/internal/es/meta.mjs +43 -3
  45. package/build/internal/es/meta.mjs.map +1 -1
  46. package/build/internal/es/schemas.d.mts +677 -0
  47. package/build/internal/es/schemas.mjs +720 -0
  48. package/build/internal/es/schemas.mjs.map +1 -0
  49. package/package.json +12 -5
  50. package/schemas/package.json +3 -0
@@ -127,6 +127,10 @@ interface Node extends NodeDataOneOf {
127
127
  cardData?: CardData;
128
128
  /** Data for a table of contents node. */
129
129
  tocData?: TocData;
130
+ /** Data for a smart block node. */
131
+ smartBlockData?: SmartBlockData;
132
+ /** Data for a smart block cell node. */
133
+ smartBlockCellData?: SmartBlockCellData;
130
134
  /** 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. */
131
135
  type?: NodeTypeWithLiterals;
132
136
  /** Node ID. */
@@ -200,6 +204,10 @@ interface NodeDataOneOf {
200
204
  cardData?: CardData;
201
205
  /** Data for a table of contents node. */
202
206
  tocData?: TocData;
207
+ /** Data for a smart block node. */
208
+ smartBlockData?: SmartBlockData;
209
+ /** Data for a smart block cell node. */
210
+ smartBlockCellData?: SmartBlockCellData;
203
211
  }
204
212
  declare enum NodeType {
205
213
  PARAGRAPH = "PARAGRAPH",
@@ -238,10 +246,12 @@ declare enum NodeType {
238
246
  LAYOUT_CELL = "LAYOUT_CELL",
239
247
  SHAPE = "SHAPE",
240
248
  CARD = "CARD",
241
- TOC = "TOC"
249
+ TOC = "TOC",
250
+ SMART_BLOCK = "SMART_BLOCK",
251
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
242
252
  }
243
253
  /** @enumType */
244
- 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';
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';
245
255
  interface NodeStyle {
246
256
  /** The top padding value in pixels. */
247
257
  paddingTop?: string | null;
@@ -859,6 +869,8 @@ interface HeadingData {
859
869
  textStyle?: TextStyle;
860
870
  /** Indentation level from 1-4. */
861
871
  indentation?: number | null;
872
+ /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
873
+ renderedLevel?: number | null;
862
874
  }
863
875
  interface HTMLData extends HTMLDataDataOneOf {
864
876
  /** The URL for the HTML code for the node. */
@@ -1732,6 +1744,8 @@ interface TableData {
1732
1744
  * @maxSize 4
1733
1745
  */
1734
1746
  cellPadding?: number[];
1747
+ /** Table's alternative text. */
1748
+ altText?: string | null;
1735
1749
  }
1736
1750
  interface Dimensions {
1737
1751
  /** An array representing relative width of each column in relation to the other columns. */
@@ -2173,6 +2187,88 @@ declare enum Indentation {
2173
2187
  }
2174
2188
  /** @enumType */
2175
2189
  type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2190
+ /** Data for a smart block node. */
2191
+ interface SmartBlockData {
2192
+ /** The type of the smart block. */
2193
+ type?: SmartBlockDataTypeWithLiterals;
2194
+ /** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
2195
+ orientation?: string | null;
2196
+ /** Column size controlling cells per row. */
2197
+ columnSize?: ColumnSizeWithLiterals;
2198
+ /** Border color (for SOLID_JOINED_BOXES variant). */
2199
+ borderColor?: string | null;
2200
+ /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
2201
+ borderWidth?: number | null;
2202
+ /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
2203
+ borderRadius?: number | null;
2204
+ }
2205
+ /** Layout type of the smart block */
2206
+ declare enum SmartBlockDataType {
2207
+ /** Grid-based layouts with solid box items containing title, body, and icon/image. */
2208
+ SOLID_BOXES = "SOLID_BOXES",
2209
+ /** Numbered boxes. */
2210
+ NUMBERED_BOXES = "NUMBERED_BOXES",
2211
+ /** Statistics display with large numbers/values. */
2212
+ STATS = "STATS",
2213
+ /** Statistics with circular visual elements. */
2214
+ CIRCLE_STATS = "CIRCLE_STATS",
2215
+ /** Staggered/zigzag grid layout with alternating box positions. */
2216
+ SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
2217
+ /** Grid layout with boxes visually joined (no gaps, shared container border). */
2218
+ SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
2219
+ /** Transparent cells with only a left side line. */
2220
+ SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
2221
+ /** Transparent cells with only a top line. */
2222
+ TOP_LINE_TEXT = "TOP_LINE_TEXT",
2223
+ /** Outlined boxes with a numbered/icon circle at the top. */
2224
+ OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
2225
+ /** Large icon bullets with text content. */
2226
+ BIG_BULLETS = "BIG_BULLETS",
2227
+ /** Small dot bullets with text content. */
2228
+ SMALL_BULLETS = "SMALL_BULLETS",
2229
+ /** Arrow icon bullets with text content. */
2230
+ ARROW_BULLETS = "ARROW_BULLETS",
2231
+ /** Process steps with numbered/icon labels above a horizontal line. */
2232
+ PROCESS_STEPS = "PROCESS_STEPS",
2233
+ /** Statistics with bar visual elements. */
2234
+ BAR_STATS = "BAR_STATS"
2235
+ }
2236
+ /** @enumType */
2237
+ 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';
2238
+ /** Column size controlling how many cells appear per row. */
2239
+ declare enum ColumnSize {
2240
+ /** Up to 4 cells in a row. */
2241
+ SMALL = "SMALL",
2242
+ /** Up to 3 cells in a row (default). */
2243
+ MEDIUM = "MEDIUM",
2244
+ /** Up to 2 cells in a row. */
2245
+ LARGE = "LARGE",
2246
+ /** 1 cell in a row. */
2247
+ EXTRA_LARGE = "EXTRA_LARGE"
2248
+ }
2249
+ /** @enumType */
2250
+ type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
2251
+ /** Data for a smart block cell node. */
2252
+ interface SmartBlockCellData {
2253
+ /** Optional label text for the cell (e.g., for stats variants). */
2254
+ label?: string | null;
2255
+ /** Shape file details. */
2256
+ shape?: Media;
2257
+ /** Border color of the cell. */
2258
+ borderColor?: string | null;
2259
+ /** Border width in pixels. */
2260
+ borderWidth?: number | null;
2261
+ /** Border radius in pixels. */
2262
+ borderRadius?: number | null;
2263
+ /** The type of the parent smart block (must match parent). */
2264
+ type?: SmartBlockDataTypeWithLiterals;
2265
+ /** Accent color for non-background variants (e.g., line, bullet, label color). */
2266
+ accentColor?: string | null;
2267
+ /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
2268
+ backgroundColor?: string | null;
2269
+ /** Shape fill color as a hexadecimal value. */
2270
+ shapeColor?: string | null;
2271
+ }
2176
2272
  interface Metadata {
2177
2273
  /** Schema version. */
2178
2274
  version?: number;
@@ -2700,4 +2796,4 @@ interface BulkMachineTranslateOptions {
2700
2796
  contentToTranslate?: TranslatableContent[];
2701
2797
  }
2702
2798
 
2703
- 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, 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, 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, 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 };
2799
+ 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, 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 };
@@ -27,6 +27,7 @@ __export(index_typings_exports, {
27
27
  BackgroundType: () => BackgroundType,
28
28
  ButtonDataType: () => ButtonDataType,
29
29
  CardDataBackgroundType: () => CardDataBackgroundType,
30
+ ColumnSize: () => ColumnSize,
30
31
  Crop: () => Crop,
31
32
  DecorationType: () => DecorationType,
32
33
  DesignTarget: () => DesignTarget,
@@ -60,6 +61,7 @@ __export(index_typings_exports, {
60
61
  Resizing: () => Resizing,
61
62
  ResponsivenessBehaviour: () => ResponsivenessBehaviour,
62
63
  Scaling: () => Scaling,
64
+ SmartBlockDataType: () => SmartBlockDataType,
63
65
  Source: () => Source,
64
66
  StylesPosition: () => StylesPosition,
65
67
  SupportedLanguage: () => SupportedLanguage,
@@ -253,7 +255,10 @@ function machineTranslate(payload) {
253
255
  path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.media.duration"
254
256
  },
255
257
  { path: "contentToTranslate.richContent.nodes.tocData.fontSize" },
256
- { path: "contentToTranslate.richContent.nodes.tocData.itemSpacing" }
258
+ { path: "contentToTranslate.richContent.nodes.tocData.itemSpacing" },
259
+ {
260
+ path: "contentToTranslate.richContent.nodes.smartBlockCellData.shape.duration"
261
+ }
257
262
  ]
258
263
  },
259
264
  {
@@ -387,6 +392,9 @@ function machineTranslate(payload) {
387
392
  { path: "translatedContent.richContent.nodes.tocData.fontSize" },
388
393
  {
389
394
  path: "translatedContent.richContent.nodes.tocData.itemSpacing"
395
+ },
396
+ {
397
+ path: "translatedContent.richContent.nodes.smartBlockCellData.shape.duration"
390
398
  }
391
399
  ]
392
400
  },
@@ -516,7 +524,10 @@ function bulkMachineTranslate(payload) {
516
524
  path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.media.duration"
517
525
  },
518
526
  { path: "contentToTranslate.richContent.nodes.tocData.fontSize" },
519
- { path: "contentToTranslate.richContent.nodes.tocData.itemSpacing" }
527
+ { path: "contentToTranslate.richContent.nodes.tocData.itemSpacing" },
528
+ {
529
+ path: "contentToTranslate.richContent.nodes.smartBlockCellData.shape.duration"
530
+ }
520
531
  ]
521
532
  },
522
533
  {
@@ -648,7 +659,10 @@ function bulkMachineTranslate(payload) {
648
659
  path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
649
660
  },
650
661
  { path: "results.item.richContent.nodes.tocData.fontSize" },
651
- { path: "results.item.richContent.nodes.tocData.itemSpacing" }
662
+ { path: "results.item.richContent.nodes.tocData.itemSpacing" },
663
+ {
664
+ path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
665
+ }
652
666
  ]
653
667
  },
654
668
  {
@@ -709,6 +723,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
709
723
  NodeType2["SHAPE"] = "SHAPE";
710
724
  NodeType2["CARD"] = "CARD";
711
725
  NodeType2["TOC"] = "TOC";
726
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
727
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
712
728
  return NodeType2;
713
729
  })(NodeType || {});
714
730
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -1036,6 +1052,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1036
1052
  Indentation2["FLAT"] = "FLAT";
1037
1053
  return Indentation2;
1038
1054
  })(Indentation || {});
1055
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1056
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
1057
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
1058
+ SmartBlockDataType2["STATS"] = "STATS";
1059
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
1060
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
1061
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
1062
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
1063
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
1064
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
1065
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
1066
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
1067
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1068
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1069
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1070
+ return SmartBlockDataType2;
1071
+ })(SmartBlockDataType || {});
1072
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
1073
+ ColumnSize2["SMALL"] = "SMALL";
1074
+ ColumnSize2["MEDIUM"] = "MEDIUM";
1075
+ ColumnSize2["LARGE"] = "LARGE";
1076
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
1077
+ return ColumnSize2;
1078
+ })(ColumnSize || {});
1039
1079
  var SupportedLanguage = /* @__PURE__ */ ((SupportedLanguage2) => {
1040
1080
  SupportedLanguage2["AF"] = "AF";
1041
1081
  SupportedLanguage2["SQ"] = "SQ";
@@ -1259,6 +1299,7 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
1259
1299
  BackgroundType,
1260
1300
  ButtonDataType,
1261
1301
  CardDataBackgroundType,
1302
+ ColumnSize,
1262
1303
  Crop,
1263
1304
  DecorationType,
1264
1305
  DesignTarget,
@@ -1292,6 +1333,7 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
1292
1333
  Resizing,
1293
1334
  ResponsivenessBehaviour,
1294
1335
  Scaling,
1336
+ SmartBlockDataType,
1295
1337
  Source,
1296
1338
  StylesPosition,
1297
1339
  SupportedLanguage,