@wix/auto_sdk_multilingual_machine-translation 1.0.46 → 1.0.48

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 +7 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +77 -52
  5. package/build/cjs/index.typings.js +7 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +77 -52
  8. package/build/cjs/meta.js +7 -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 +6 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +77 -52
  14. package/build/es/index.typings.mjs +6 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +77 -52
  17. package/build/es/meta.mjs +6 -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 +7 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +77 -52
  23. package/build/internal/cjs/index.typings.js +7 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +77 -52
  26. package/build/internal/cjs/meta.js +7 -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 +6 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +77 -52
  32. package/build/internal/es/index.typings.mjs +6 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +77 -52
  35. package/build/internal/es/meta.mjs +6 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -315,7 +315,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
315
315
  interface Stop {
316
316
  /**
317
317
  * Stop color as hex value.
318
- * @format COLOR_HEX
318
+ * @maxLength 19
319
319
  */
320
320
  color?: string | null;
321
321
  /** Stop position (0-1). */
@@ -356,7 +356,7 @@ interface Background {
356
356
  type?: BackgroundTypeWithLiterals;
357
357
  /**
358
358
  * Background color as a hexadecimal value.
359
- * @format COLOR_HEX
359
+ * @maxLength 19
360
360
  */
361
361
  color?: string | null;
362
362
  /** Gradient configuration. */
@@ -463,33 +463,33 @@ interface Styles {
463
463
  borderRadius?: number | null;
464
464
  /**
465
465
  * Border color as a hexadecimal value.
466
- * @format COLOR_HEX
466
+ * @maxLength 19
467
467
  */
468
468
  borderColor?: string | null;
469
469
  /**
470
470
  * Border color as a hexadecimal value (hover state).
471
- * @format COLOR_HEX
471
+ * @maxLength 19
472
472
  */
473
473
  borderColorHover?: string | null;
474
474
  /**
475
475
  * Text color as a hexadecimal value.
476
- * @format COLOR_HEX
476
+ * @maxLength 19
477
477
  */
478
478
  textColor?: string | null;
479
479
  /**
480
480
  * Text color as a hexadecimal value (hover state).
481
- * @format COLOR_HEX
481
+ * @maxLength 19
482
482
  */
483
483
  textColorHover?: string | null;
484
484
  /**
485
485
  * Deprecated: Use `background` instead.
486
- * @format COLOR_HEX
486
+ * @maxLength 19
487
487
  * @deprecated
488
488
  */
489
489
  backgroundColor?: string | null;
490
490
  /**
491
491
  * Deprecated: Use `backgroundHover` instead.
492
- * @format COLOR_HEX
492
+ * @maxLength 19
493
493
  * @deprecated
494
494
  */
495
495
  backgroundColorHover?: string | null;
@@ -941,7 +941,7 @@ interface StylesBorder {
941
941
  width?: number | null;
942
942
  /**
943
943
  * Border color as a hexadecimal value.
944
- * @format COLOR_HEX
944
+ * @maxLength 19
945
945
  */
946
946
  color?: string | null;
947
947
  /** Border radius in pixels. */
@@ -982,22 +982,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
982
982
  interface LinkPreviewDataStyles {
983
983
  /**
984
984
  * Background color as a hexadecimal value.
985
- * @format COLOR_HEX
985
+ * @maxLength 19
986
986
  */
987
987
  backgroundColor?: string | null;
988
988
  /**
989
989
  * Title color as a hexadecimal value.
990
- * @format COLOR_HEX
990
+ * @maxLength 19
991
991
  */
992
992
  titleColor?: string | null;
993
993
  /**
994
994
  * Subtitle color as a hexadecimal value.
995
- * @format COLOR_HEX
995
+ * @maxLength 19
996
996
  */
997
997
  subtitleColor?: string | null;
998
998
  /**
999
999
  * Link color as a hexadecimal value.
1000
- * @format COLOR_HEX
1000
+ * @maxLength 19
1001
1001
  */
1002
1002
  linkColor?: string | null;
1003
1003
  /** Border width in pixels. */
@@ -1006,7 +1006,7 @@ interface LinkPreviewDataStyles {
1006
1006
  borderRadius?: number | null;
1007
1007
  /**
1008
1008
  * Border color as a hexadecimal value.
1009
- * @format COLOR_HEX
1009
+ * @maxLength 19
1010
1010
  */
1011
1011
  borderColor?: string | null;
1012
1012
  /** Position of thumbnail. Defaults to `START`. */
@@ -1157,19 +1157,19 @@ interface BackgroundGradient {
1157
1157
  angle?: number | null;
1158
1158
  /**
1159
1159
  * The start color as a hexademical value.
1160
- * @format COLOR_HEX
1160
+ * @maxLength 19
1161
1161
  */
1162
1162
  startColor?: string | null;
1163
1163
  /**
1164
1164
  * The end color as a hexademical value.
1165
- * @format COLOR_HEX
1165
+ * @maxLength 19
1166
1166
  */
1167
1167
  lastColor?: string | null;
1168
1168
  }
1169
1169
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1170
1170
  /**
1171
1171
  * The background color as a hexademical value.
1172
- * @format COLOR_HEX
1172
+ * @maxLength 19
1173
1173
  */
1174
1174
  color?: string | null;
1175
1175
  /** An image to use for the background. */
@@ -1183,7 +1183,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1183
1183
  interface PollDesignBackgroundBackgroundOneOf {
1184
1184
  /**
1185
1185
  * The background color as a hexademical value.
1186
- * @format COLOR_HEX
1186
+ * @maxLength 19
1187
1187
  */
1188
1188
  color?: string | null;
1189
1189
  /** An image to use for the background. */
@@ -1497,32 +1497,32 @@ interface ButtonStyles {
1497
1497
  borderRadius?: number | null;
1498
1498
  /**
1499
1499
  * Border color as a hexadecimal value.
1500
- * @format COLOR_HEX
1500
+ * @maxLength 19
1501
1501
  */
1502
1502
  borderColor?: string | null;
1503
1503
  /**
1504
1504
  * Text color as a hexadecimal value.
1505
- * @format COLOR_HEX
1505
+ * @maxLength 19
1506
1506
  */
1507
1507
  textColor?: string | null;
1508
1508
  /**
1509
1509
  * Background color as a hexadecimal value.
1510
- * @format COLOR_HEX
1510
+ * @maxLength 19
1511
1511
  */
1512
1512
  backgroundColor?: string | null;
1513
1513
  /**
1514
1514
  * Border color as a hexadecimal value (hover state).
1515
- * @format COLOR_HEX
1515
+ * @maxLength 19
1516
1516
  */
1517
1517
  borderColorHover?: string | null;
1518
1518
  /**
1519
1519
  * Text color as a hexadecimal value (hover state).
1520
- * @format COLOR_HEX
1520
+ * @maxLength 19
1521
1521
  */
1522
1522
  textColorHover?: string | null;
1523
1523
  /**
1524
1524
  * Background color as a hexadecimal value (hover state).
1525
- * @format COLOR_HEX
1525
+ * @maxLength 19
1526
1526
  */
1527
1527
  backgroundColorHover?: string | null;
1528
1528
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -1539,7 +1539,7 @@ interface ImageStyles {
1539
1539
  resizing?: ResizingWithLiterals;
1540
1540
  /**
1541
1541
  * Image border color as a hexadecimal value.
1542
- * @format COLOR_HEX
1542
+ * @maxLength 19
1543
1543
  */
1544
1544
  borderColor?: string | null;
1545
1545
  /** Image border width in pixels. */
@@ -1552,17 +1552,17 @@ interface RibbonStyles {
1552
1552
  ribbonText?: string | null;
1553
1553
  /**
1554
1554
  * Ribbon background color as a hexadecimal value.
1555
- * @format COLOR_HEX
1555
+ * @maxLength 19
1556
1556
  */
1557
1557
  backgroundColor?: string | null;
1558
1558
  /**
1559
1559
  * Ribbon text color as a hexadecimal value.
1560
- * @format COLOR_HEX
1560
+ * @maxLength 19
1561
1561
  */
1562
1562
  textColor?: string | null;
1563
1563
  /**
1564
1564
  * Ribbon border color as a hexadecimal value.
1565
- * @format COLOR_HEX
1565
+ * @maxLength 19
1566
1566
  */
1567
1567
  borderColor?: string | null;
1568
1568
  /** Ribbon border width in pixels. */
@@ -1575,12 +1575,12 @@ interface RibbonStyles {
1575
1575
  interface CardStyles {
1576
1576
  /**
1577
1577
  * Card background color as a hexadecimal value.
1578
- * @format COLOR_HEX
1578
+ * @maxLength 19
1579
1579
  */
1580
1580
  backgroundColor?: string | null;
1581
1581
  /**
1582
1582
  * Card border color as a hexadecimal value.
1583
- * @format COLOR_HEX
1583
+ * @maxLength 19
1584
1584
  */
1585
1585
  borderColor?: string | null;
1586
1586
  /** Card border width in pixels. */
@@ -1595,12 +1595,12 @@ interface CardStyles {
1595
1595
  titlePriceLayout?: LayoutWithLiterals;
1596
1596
  /**
1597
1597
  * Title text color as a hexadecimal value.
1598
- * @format COLOR_HEX
1598
+ * @maxLength 19
1599
1599
  */
1600
1600
  titleColor?: string | null;
1601
1601
  /**
1602
1602
  * Text color as a hexadecimal value.
1603
- * @format COLOR_HEX
1603
+ * @maxLength 19
1604
1604
  */
1605
1605
  textColor?: string | null;
1606
1606
  }
@@ -1782,29 +1782,29 @@ interface CellStyle {
1782
1782
  verticalAlignment?: VerticalAlignmentWithLiterals;
1783
1783
  /**
1784
1784
  * Cell background color as a hexadecimal value.
1785
- * @format COLOR_HEX
1785
+ * @maxLength 19
1786
1786
  */
1787
1787
  backgroundColor?: string | null;
1788
1788
  }
1789
1789
  interface BorderColors {
1790
1790
  /**
1791
1791
  * Left border color as a hexadecimal value.
1792
- * @format COLOR_HEX
1792
+ * @maxLength 19
1793
1793
  */
1794
1794
  left?: string | null;
1795
1795
  /**
1796
1796
  * Right border color as a hexadecimal value.
1797
- * @format COLOR_HEX
1797
+ * @maxLength 19
1798
1798
  */
1799
1799
  right?: string | null;
1800
1800
  /**
1801
1801
  * Top border color as a hexadecimal value.
1802
- * @format COLOR_HEX
1802
+ * @maxLength 19
1803
1803
  */
1804
1804
  top?: string | null;
1805
1805
  /**
1806
1806
  * Bottom border color as a hexadecimal value.
1807
- * @format COLOR_HEX
1807
+ * @maxLength 19
1808
1808
  */
1809
1809
  bottom?: string | null;
1810
1810
  }
@@ -1879,7 +1879,7 @@ interface CaptionData {
1879
1879
  interface LayoutData {
1880
1880
  /**
1881
1881
  * Deprecated: Use `background` instead.
1882
- * @format COLOR_HEX
1882
+ * @maxLength 19
1883
1883
  * @deprecated
1884
1884
  */
1885
1885
  backgroundColor?: string | null;
@@ -1887,7 +1887,7 @@ interface LayoutData {
1887
1887
  backgroundImage?: LayoutDataBackgroundImage;
1888
1888
  /**
1889
1889
  * Border color as a hexadecimal value.
1890
- * @format COLOR_HEX
1890
+ * @maxLength 19
1891
1891
  */
1892
1892
  borderColor?: string | null;
1893
1893
  /** Border width in pixels. */
@@ -1896,7 +1896,7 @@ interface LayoutData {
1896
1896
  borderRadius?: number | null;
1897
1897
  /**
1898
1898
  * Deprecated: Use `backdrop` instead.
1899
- * @format COLOR_HEX
1899
+ * @maxLength 19
1900
1900
  * @deprecated
1901
1901
  */
1902
1902
  backdropColor?: string | null;
@@ -1923,7 +1923,7 @@ interface LayoutData {
1923
1923
  containerData?: PluginContainerData;
1924
1924
  /** Defines where selected design propertied applies to */
1925
1925
  designTarget?: DesignTargetWithLiterals;
1926
- /** Banner configuration. When present, this layout is displayed as a banner. */
1926
+ /** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
1927
1927
  banner?: Banner;
1928
1928
  /** Background styling (color or gradient). */
1929
1929
  background?: LayoutDataBackground;
@@ -1970,6 +1970,14 @@ declare enum Origin {
1970
1970
  }
1971
1971
  /** @enumType */
1972
1972
  type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
1973
+ declare enum BannerPosition {
1974
+ /** Attached to the top edge (banner) */
1975
+ TOP = "TOP",
1976
+ /** Attached to the bottom edge (footer) */
1977
+ BOTTOM = "BOTTOM"
1978
+ }
1979
+ /** @enumType */
1980
+ type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
1973
1981
  /** Background type */
1974
1982
  declare enum LayoutDataBackgroundType {
1975
1983
  /** Solid color background */
@@ -2027,6 +2035,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2027
2035
  interface Banner {
2028
2036
  /** Origin of the banner */
2029
2037
  origin?: OriginWithLiterals;
2038
+ /** Position of the banner */
2039
+ position?: BannerPositionWithLiterals;
2030
2040
  }
2031
2041
  /** Background styling (color or gradient) */
2032
2042
  interface LayoutDataBackground {
@@ -2034,7 +2044,7 @@ interface LayoutDataBackground {
2034
2044
  type?: LayoutDataBackgroundTypeWithLiterals;
2035
2045
  /**
2036
2046
  * Background color as a hexadecimal value.
2037
- * @format COLOR_HEX
2047
+ * @maxLength 19
2038
2048
  */
2039
2049
  color?: string | null;
2040
2050
  /** Gradient configuration. */
@@ -2046,7 +2056,7 @@ interface Backdrop {
2046
2056
  type?: BackdropTypeWithLiterals;
2047
2057
  /**
2048
2058
  * Backdrop color as a hexadecimal value.
2049
- * @format COLOR_HEX
2059
+ * @maxLength 19
2050
2060
  */
2051
2061
  color?: string | null;
2052
2062
  /** Gradient configuration. */
@@ -2067,7 +2077,7 @@ interface ShapeData {
2067
2077
  interface ShapeDataStyles {
2068
2078
  /**
2069
2079
  * Shape fill color as a hexadecimal value.
2070
- * @format COLOR_HEX
2080
+ * @maxLength 19
2071
2081
  */
2072
2082
  color?: string | null;
2073
2083
  /** Map of original color keys to their new color values. */
@@ -2126,7 +2136,7 @@ interface CardDataBackground {
2126
2136
  type?: CardDataBackgroundTypeWithLiterals;
2127
2137
  /**
2128
2138
  * Background color as a hexadecimal value.
2129
- * @format COLOR_HEX
2139
+ * @maxLength 19
2130
2140
  */
2131
2141
  color?: string | null;
2132
2142
  /** Gradient configuration. */
@@ -2153,7 +2163,7 @@ interface TocData {
2153
2163
  itemSpacing?: number | null;
2154
2164
  /**
2155
2165
  * Optional override for the text color.
2156
- * @format COLOR_HEX
2166
+ * @maxLength 19
2157
2167
  */
2158
2168
  color?: string | null;
2159
2169
  /** Indentation style. Default: NESTED. */
@@ -2195,7 +2205,10 @@ interface SmartBlockData {
2195
2205
  orientation?: string | null;
2196
2206
  /** Column size controlling cells per row. */
2197
2207
  columnSize?: ColumnSizeWithLiterals;
2198
- /** Border color (for SOLID_JOINED_BOXES variant). */
2208
+ /**
2209
+ * Border color (for SOLID_JOINED_BOXES variant).
2210
+ * @maxLength 19
2211
+ */
2199
2212
  borderColor?: string | null;
2200
2213
  /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
2201
2214
  borderWidth?: number | null;
@@ -2254,7 +2267,10 @@ interface SmartBlockCellData {
2254
2267
  label?: string | null;
2255
2268
  /** Shape file details. */
2256
2269
  shape?: Media;
2257
- /** Border color of the cell. */
2270
+ /**
2271
+ * Border color of the cell.
2272
+ * @maxLength 19
2273
+ */
2258
2274
  borderColor?: string | null;
2259
2275
  /** Border width in pixels. */
2260
2276
  borderWidth?: number | null;
@@ -2262,11 +2278,20 @@ interface SmartBlockCellData {
2262
2278
  borderRadius?: number | null;
2263
2279
  /** The type of the parent smart block (must match parent). */
2264
2280
  type?: SmartBlockDataTypeWithLiterals;
2265
- /** Accent color for non-background variants (e.g., line, bullet, label color). */
2281
+ /**
2282
+ * Accent color for non-background variants (e.g., line, bullet, label color).
2283
+ * @maxLength 19
2284
+ */
2266
2285
  accentColor?: string | null;
2267
- /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
2286
+ /**
2287
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
2288
+ * @maxLength 19
2289
+ */
2268
2290
  backgroundColor?: string | null;
2269
- /** Shape fill color as a hexadecimal value. */
2291
+ /**
2292
+ * Shape fill color as a hexadecimal value.
2293
+ * @maxLength 19
2294
+ */
2270
2295
  shapeColor?: string | null;
2271
2296
  }
2272
2297
  interface Metadata {
@@ -2796,4 +2821,4 @@ interface BulkMachineTranslateOptions {
2796
2821
  contentToTranslate?: TranslatableContent[];
2797
2822
  }
2798
2823
 
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 };
2824
+ 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 };
@@ -25,6 +25,7 @@ __export(index_typings_exports, {
25
25
  AspectRatio: () => AspectRatio,
26
26
  BackdropType: () => BackdropType,
27
27
  BackgroundType: () => BackgroundType,
28
+ BannerPosition: () => BannerPosition,
28
29
  ButtonDataType: () => ButtonDataType,
29
30
  CardDataBackgroundType: () => CardDataBackgroundType,
30
31
  ColumnSize: () => ColumnSize,
@@ -988,6 +989,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
988
989
  Origin2["LAYOUT"] = "LAYOUT";
989
990
  return Origin2;
990
991
  })(Origin || {});
992
+ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
993
+ BannerPosition2["TOP"] = "TOP";
994
+ BannerPosition2["BOTTOM"] = "BOTTOM";
995
+ return BannerPosition2;
996
+ })(BannerPosition || {});
991
997
  var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
992
998
  LayoutDataBackgroundType2["COLOR"] = "COLOR";
993
999
  LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
@@ -1297,6 +1303,7 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
1297
1303
  AspectRatio,
1298
1304
  BackdropType,
1299
1305
  BackgroundType,
1306
+ BannerPosition,
1300
1307
  ButtonDataType,
1301
1308
  CardDataBackgroundType,
1302
1309
  ColumnSize,