@wix/auto_sdk_multilingual_machine-translation 1.0.41 → 1.0.43
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 +296 -17
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +272 -32
- package/build/cjs/index.typings.js +296 -17
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +272 -32
- package/build/cjs/meta.js +296 -17
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +677 -0
- package/build/cjs/schemas.js +760 -0
- package/build/cjs/schemas.js.map +1 -0
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +287 -17
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +272 -32
- package/build/es/index.typings.mjs +287 -17
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +272 -32
- package/build/es/meta.mjs +287 -17
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +677 -0
- package/build/es/schemas.mjs +720 -0
- package/build/es/schemas.mjs.map +1 -0
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +296 -17
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +272 -32
- package/build/internal/cjs/index.typings.js +296 -17
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +272 -32
- package/build/internal/cjs/meta.js +296 -17
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +677 -0
- package/build/internal/cjs/schemas.js +760 -0
- package/build/internal/cjs/schemas.js.map +1 -0
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +287 -17
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +272 -32
- package/build/internal/es/index.typings.mjs +287 -17
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +272 -32
- package/build/internal/es/meta.mjs +287 -17
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +677 -0
- package/build/internal/es/schemas.mjs +720 -0
- package/build/internal/es/schemas.mjs.map +1 -0
- package/package.json +12 -5
- package/schemas/package.json +3 -0
package/build/cjs/meta.d.ts
CHANGED
|
@@ -48,8 +48,6 @@ interface TranslatableContentContentOneOf {
|
|
|
48
48
|
richContent?: RichContent;
|
|
49
49
|
}
|
|
50
50
|
declare enum Format {
|
|
51
|
-
/** Unspecified format. */
|
|
52
|
-
UNKNOWN_FORMAT = "UNKNOWN_FORMAT",
|
|
53
51
|
/** Plain text content. */
|
|
54
52
|
PLAIN_TEXT = "PLAIN_TEXT",
|
|
55
53
|
/** HTML content. */
|
|
@@ -58,7 +56,7 @@ declare enum Format {
|
|
|
58
56
|
RICH = "RICH"
|
|
59
57
|
}
|
|
60
58
|
/** @enumType */
|
|
61
|
-
type FormatWithLiterals = Format | '
|
|
59
|
+
type FormatWithLiterals = Format | 'PLAIN_TEXT' | 'HTML' | 'RICH';
|
|
62
60
|
interface RichContent {
|
|
63
61
|
/** Node objects representing a rich content document. */
|
|
64
62
|
nodes?: Node[];
|
|
@@ -126,6 +124,10 @@ interface Node extends NodeDataOneOf {
|
|
|
126
124
|
layoutCellData?: LayoutCellData;
|
|
127
125
|
/** Data for a shape node. */
|
|
128
126
|
shapeData?: ShapeData;
|
|
127
|
+
/** Data for a card node. */
|
|
128
|
+
cardData?: CardData;
|
|
129
|
+
/** Data for a table of contents node. */
|
|
130
|
+
tocData?: TocData;
|
|
129
131
|
/** 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. */
|
|
130
132
|
type?: NodeTypeWithLiterals;
|
|
131
133
|
/** Node ID. */
|
|
@@ -195,6 +197,10 @@ interface NodeDataOneOf {
|
|
|
195
197
|
layoutCellData?: LayoutCellData;
|
|
196
198
|
/** Data for a shape node. */
|
|
197
199
|
shapeData?: ShapeData;
|
|
200
|
+
/** Data for a card node. */
|
|
201
|
+
cardData?: CardData;
|
|
202
|
+
/** Data for a table of contents node. */
|
|
203
|
+
tocData?: TocData;
|
|
198
204
|
}
|
|
199
205
|
declare enum NodeType {
|
|
200
206
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -231,10 +237,12 @@ declare enum NodeType {
|
|
|
231
237
|
CAPTION = "CAPTION",
|
|
232
238
|
LAYOUT = "LAYOUT",
|
|
233
239
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
234
|
-
SHAPE = "SHAPE"
|
|
240
|
+
SHAPE = "SHAPE",
|
|
241
|
+
CARD = "CARD",
|
|
242
|
+
TOC = "TOC"
|
|
235
243
|
}
|
|
236
244
|
/** @enumType */
|
|
237
|
-
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';
|
|
245
|
+
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';
|
|
238
246
|
interface NodeStyle {
|
|
239
247
|
/** The top padding value in pixels. */
|
|
240
248
|
paddingTop?: string | null;
|
|
@@ -255,6 +263,55 @@ interface ButtonData {
|
|
|
255
263
|
/** Button link details. */
|
|
256
264
|
link?: Link;
|
|
257
265
|
}
|
|
266
|
+
/** Background type */
|
|
267
|
+
declare enum BackgroundType {
|
|
268
|
+
/** Solid color background */
|
|
269
|
+
COLOR = "COLOR",
|
|
270
|
+
/** Gradient background */
|
|
271
|
+
GRADIENT = "GRADIENT"
|
|
272
|
+
}
|
|
273
|
+
/** @enumType */
|
|
274
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
275
|
+
interface Gradient {
|
|
276
|
+
/** Gradient type. */
|
|
277
|
+
type?: GradientTypeWithLiterals;
|
|
278
|
+
/**
|
|
279
|
+
* Color stops for the gradient.
|
|
280
|
+
* @maxSize 1000
|
|
281
|
+
*/
|
|
282
|
+
stops?: Stop[];
|
|
283
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
284
|
+
angle?: number | null;
|
|
285
|
+
/**
|
|
286
|
+
* Horizontal center position for radial gradient (0-100).
|
|
287
|
+
* @max 100
|
|
288
|
+
*/
|
|
289
|
+
centerX?: number | null;
|
|
290
|
+
/**
|
|
291
|
+
* Vertical center position for radial gradient (0-100).
|
|
292
|
+
* @max 100
|
|
293
|
+
*/
|
|
294
|
+
centerY?: number | null;
|
|
295
|
+
}
|
|
296
|
+
/** Gradient type. */
|
|
297
|
+
declare enum GradientType {
|
|
298
|
+
/** Linear gradient. */
|
|
299
|
+
LINEAR = "LINEAR",
|
|
300
|
+
/** Radial gradient. */
|
|
301
|
+
RADIAL = "RADIAL"
|
|
302
|
+
}
|
|
303
|
+
/** @enumType */
|
|
304
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
305
|
+
/** A single color stop in the gradient. */
|
|
306
|
+
interface Stop {
|
|
307
|
+
/**
|
|
308
|
+
* Stop color as hex value.
|
|
309
|
+
* @format COLOR_HEX
|
|
310
|
+
*/
|
|
311
|
+
color?: string | null;
|
|
312
|
+
/** Stop position (0-1). */
|
|
313
|
+
position?: number | null;
|
|
314
|
+
}
|
|
258
315
|
interface Border {
|
|
259
316
|
/**
|
|
260
317
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
@@ -284,6 +341,18 @@ interface Colors {
|
|
|
284
341
|
*/
|
|
285
342
|
background?: string | null;
|
|
286
343
|
}
|
|
344
|
+
/** Background styling (color or gradient) */
|
|
345
|
+
interface Background {
|
|
346
|
+
/** Background type. */
|
|
347
|
+
type?: BackgroundTypeWithLiterals;
|
|
348
|
+
/**
|
|
349
|
+
* Background color as a hexadecimal value.
|
|
350
|
+
* @format COLOR_HEX
|
|
351
|
+
*/
|
|
352
|
+
color?: string | null;
|
|
353
|
+
/** Gradient configuration. */
|
|
354
|
+
gradient?: Gradient;
|
|
355
|
+
}
|
|
287
356
|
interface PluginContainerData {
|
|
288
357
|
/** The width of the node when it's displayed. */
|
|
289
358
|
width?: PluginContainerDataWidth;
|
|
@@ -404,17 +473,23 @@ interface Styles {
|
|
|
404
473
|
*/
|
|
405
474
|
textColorHover?: string | null;
|
|
406
475
|
/**
|
|
407
|
-
*
|
|
476
|
+
* Deprecated: Use `background` instead.
|
|
408
477
|
* @format COLOR_HEX
|
|
478
|
+
* @deprecated
|
|
409
479
|
*/
|
|
410
480
|
backgroundColor?: string | null;
|
|
411
481
|
/**
|
|
412
|
-
*
|
|
482
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
413
483
|
* @format COLOR_HEX
|
|
484
|
+
* @deprecated
|
|
414
485
|
*/
|
|
415
486
|
backgroundColorHover?: string | null;
|
|
416
487
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
417
488
|
buttonSize?: string | null;
|
|
489
|
+
/** Background styling (color or gradient). */
|
|
490
|
+
background?: Background;
|
|
491
|
+
/** Background styling for hover state (color or gradient). */
|
|
492
|
+
backgroundHover?: Background;
|
|
418
493
|
}
|
|
419
494
|
interface Link extends LinkDataOneOf {
|
|
420
495
|
/** The absolute URL for the linked document. */
|
|
@@ -796,6 +871,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
796
871
|
* @deprecated
|
|
797
872
|
*/
|
|
798
873
|
isAdsense?: boolean | null;
|
|
874
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
875
|
+
widgetId?: string;
|
|
799
876
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
800
877
|
containerData?: PluginContainerData;
|
|
801
878
|
/** The type of HTML code. */
|
|
@@ -814,14 +891,17 @@ interface HTMLDataDataOneOf {
|
|
|
814
891
|
* @deprecated
|
|
815
892
|
*/
|
|
816
893
|
isAdsense?: boolean | null;
|
|
894
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
895
|
+
widgetId?: string;
|
|
817
896
|
}
|
|
818
897
|
declare enum Source {
|
|
819
898
|
HTML = "HTML",
|
|
820
899
|
ADSENSE = "ADSENSE",
|
|
821
|
-
AI = "AI"
|
|
900
|
+
AI = "AI",
|
|
901
|
+
AI_WIDGET = "AI_WIDGET"
|
|
822
902
|
}
|
|
823
903
|
/** @enumType */
|
|
824
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
904
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
825
905
|
interface ImageData {
|
|
826
906
|
/** Styling for the image's container. */
|
|
827
907
|
containerData?: PluginContainerData;
|
|
@@ -1051,7 +1131,7 @@ interface OptionLayout {
|
|
|
1051
1131
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
1052
1132
|
enableImage?: boolean | null;
|
|
1053
1133
|
}
|
|
1054
|
-
declare enum
|
|
1134
|
+
declare enum PollDesignBackgroundType {
|
|
1055
1135
|
/** Color background type */
|
|
1056
1136
|
COLOR = "COLOR",
|
|
1057
1137
|
/** Image background type */
|
|
@@ -1060,8 +1140,8 @@ declare enum BackgroundType {
|
|
|
1060
1140
|
GRADIENT = "GRADIENT"
|
|
1061
1141
|
}
|
|
1062
1142
|
/** @enumType */
|
|
1063
|
-
type
|
|
1064
|
-
interface
|
|
1143
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
1144
|
+
interface BackgroundGradient {
|
|
1065
1145
|
/** The gradient angle in degrees. */
|
|
1066
1146
|
angle?: number | null;
|
|
1067
1147
|
/**
|
|
@@ -1075,7 +1155,7 @@ interface Gradient {
|
|
|
1075
1155
|
*/
|
|
1076
1156
|
lastColor?: string | null;
|
|
1077
1157
|
}
|
|
1078
|
-
interface
|
|
1158
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1079
1159
|
/**
|
|
1080
1160
|
* The background color as a hexademical value.
|
|
1081
1161
|
* @format COLOR_HEX
|
|
@@ -1084,12 +1164,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
1084
1164
|
/** An image to use for the background. */
|
|
1085
1165
|
image?: Media;
|
|
1086
1166
|
/** Details for a gradient background. */
|
|
1087
|
-
gradient?:
|
|
1167
|
+
gradient?: BackgroundGradient;
|
|
1088
1168
|
/** Background type. For each option, include the relevant details. */
|
|
1089
|
-
type?:
|
|
1169
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
1090
1170
|
}
|
|
1091
1171
|
/** @oneof */
|
|
1092
|
-
interface
|
|
1172
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
1093
1173
|
/**
|
|
1094
1174
|
* The background color as a hexademical value.
|
|
1095
1175
|
* @format COLOR_HEX
|
|
@@ -1098,11 +1178,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
1098
1178
|
/** An image to use for the background. */
|
|
1099
1179
|
image?: Media;
|
|
1100
1180
|
/** Details for a gradient background. */
|
|
1101
|
-
gradient?:
|
|
1181
|
+
gradient?: BackgroundGradient;
|
|
1102
1182
|
}
|
|
1103
1183
|
interface PollDesign {
|
|
1104
1184
|
/** Background styling. */
|
|
1105
|
-
background?:
|
|
1185
|
+
background?: PollDesignBackground;
|
|
1106
1186
|
/** Border radius in pixels. */
|
|
1107
1187
|
borderRadius?: number | null;
|
|
1108
1188
|
}
|
|
@@ -1785,12 +1865,13 @@ interface CaptionData {
|
|
|
1785
1865
|
}
|
|
1786
1866
|
interface LayoutData {
|
|
1787
1867
|
/**
|
|
1788
|
-
*
|
|
1868
|
+
* Deprecated: Use `background` instead.
|
|
1789
1869
|
* @format COLOR_HEX
|
|
1870
|
+
* @deprecated
|
|
1790
1871
|
*/
|
|
1791
1872
|
backgroundColor?: string | null;
|
|
1792
1873
|
/** Background image. */
|
|
1793
|
-
backgroundImage?:
|
|
1874
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
1794
1875
|
/**
|
|
1795
1876
|
* Border color as a hexadecimal value.
|
|
1796
1877
|
* @format COLOR_HEX
|
|
@@ -1798,15 +1879,16 @@ interface LayoutData {
|
|
|
1798
1879
|
borderColor?: string | null;
|
|
1799
1880
|
/** Border width in pixels. */
|
|
1800
1881
|
borderWidth?: number | null;
|
|
1801
|
-
/** Border */
|
|
1882
|
+
/** Border radius in pixels. */
|
|
1802
1883
|
borderRadius?: number | null;
|
|
1803
1884
|
/**
|
|
1804
|
-
*
|
|
1885
|
+
* Deprecated: Use `backdrop` instead.
|
|
1805
1886
|
* @format COLOR_HEX
|
|
1887
|
+
* @deprecated
|
|
1806
1888
|
*/
|
|
1807
1889
|
backdropColor?: string | null;
|
|
1808
|
-
/** Backdrop image.
|
|
1809
|
-
backdropImage?:
|
|
1890
|
+
/** Backdrop image. */
|
|
1891
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
1810
1892
|
/** Backdrop top padding. */
|
|
1811
1893
|
backdropPaddingTop?: number | null;
|
|
1812
1894
|
/** Backdrop bottom padding */
|
|
@@ -1830,8 +1912,12 @@ interface LayoutData {
|
|
|
1830
1912
|
designTarget?: DesignTargetWithLiterals;
|
|
1831
1913
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
1832
1914
|
banner?: Banner;
|
|
1915
|
+
/** Background styling (color or gradient). */
|
|
1916
|
+
background?: LayoutDataBackground;
|
|
1917
|
+
/** Backdrop styling (color or gradient). */
|
|
1918
|
+
backdrop?: Backdrop;
|
|
1833
1919
|
}
|
|
1834
|
-
declare enum
|
|
1920
|
+
declare enum ImageScalingScaling {
|
|
1835
1921
|
/** Auto image scaling */
|
|
1836
1922
|
AUTO = "AUTO",
|
|
1837
1923
|
/** Contain image scaling */
|
|
@@ -1840,7 +1926,7 @@ declare enum Scaling {
|
|
|
1840
1926
|
COVER = "COVER"
|
|
1841
1927
|
}
|
|
1842
1928
|
/** @enumType */
|
|
1843
|
-
type
|
|
1929
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
1844
1930
|
declare enum ImagePosition {
|
|
1845
1931
|
/** Image positioned at the center */
|
|
1846
1932
|
CENTER = "CENTER",
|
|
@@ -1871,13 +1957,31 @@ declare enum Origin {
|
|
|
1871
1957
|
}
|
|
1872
1958
|
/** @enumType */
|
|
1873
1959
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
1874
|
-
|
|
1960
|
+
/** Background type */
|
|
1961
|
+
declare enum LayoutDataBackgroundType {
|
|
1962
|
+
/** Solid color background */
|
|
1963
|
+
COLOR = "COLOR",
|
|
1964
|
+
/** Gradient background */
|
|
1965
|
+
GRADIENT = "GRADIENT"
|
|
1966
|
+
}
|
|
1967
|
+
/** @enumType */
|
|
1968
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
1969
|
+
/** Backdrop type */
|
|
1970
|
+
declare enum BackdropType {
|
|
1971
|
+
/** Solid color backdrop */
|
|
1972
|
+
COLOR = "COLOR",
|
|
1973
|
+
/** Gradient backdrop */
|
|
1974
|
+
GRADIENT = "GRADIENT"
|
|
1975
|
+
}
|
|
1976
|
+
/** @enumType */
|
|
1977
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
1978
|
+
interface LayoutDataBackgroundImage {
|
|
1875
1979
|
/** Background image. */
|
|
1876
1980
|
media?: Media;
|
|
1877
1981
|
/** Background image opacity. */
|
|
1878
1982
|
opacity?: number | null;
|
|
1879
1983
|
/** Background image scaling. */
|
|
1880
|
-
scaling?:
|
|
1984
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
1881
1985
|
/** Position of background. Defaults to `CENTER`. */
|
|
1882
1986
|
position?: ImagePositionWithLiterals;
|
|
1883
1987
|
}
|
|
@@ -1911,6 +2015,30 @@ interface Banner {
|
|
|
1911
2015
|
/** Origin of the banner */
|
|
1912
2016
|
origin?: OriginWithLiterals;
|
|
1913
2017
|
}
|
|
2018
|
+
/** Background styling (color or gradient) */
|
|
2019
|
+
interface LayoutDataBackground {
|
|
2020
|
+
/** Background type. */
|
|
2021
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2022
|
+
/**
|
|
2023
|
+
* Background color as a hexadecimal value.
|
|
2024
|
+
* @format COLOR_HEX
|
|
2025
|
+
*/
|
|
2026
|
+
color?: string | null;
|
|
2027
|
+
/** Gradient configuration. */
|
|
2028
|
+
gradient?: Gradient;
|
|
2029
|
+
}
|
|
2030
|
+
/** Backdrop styling (color or gradient) */
|
|
2031
|
+
interface Backdrop {
|
|
2032
|
+
/** Backdrop type. */
|
|
2033
|
+
type?: BackdropTypeWithLiterals;
|
|
2034
|
+
/**
|
|
2035
|
+
* Backdrop color as a hexadecimal value.
|
|
2036
|
+
* @format COLOR_HEX
|
|
2037
|
+
*/
|
|
2038
|
+
color?: string | null;
|
|
2039
|
+
/** Gradient configuration. */
|
|
2040
|
+
gradient?: Gradient;
|
|
2041
|
+
}
|
|
1914
2042
|
interface LayoutCellData {
|
|
1915
2043
|
/** Size of the cell in 12 columns grid. */
|
|
1916
2044
|
colSpan?: number | null;
|
|
@@ -1932,6 +2060,120 @@ interface ShapeDataStyles {
|
|
|
1932
2060
|
/** Map of original color keys to their new color values. */
|
|
1933
2061
|
colors?: Record<string, string>;
|
|
1934
2062
|
}
|
|
2063
|
+
interface CardData {
|
|
2064
|
+
/** Background styling (color or gradient). */
|
|
2065
|
+
background?: CardDataBackground;
|
|
2066
|
+
/** Background image. */
|
|
2067
|
+
backgroundImage?: BackgroundImage;
|
|
2068
|
+
}
|
|
2069
|
+
declare enum Scaling {
|
|
2070
|
+
/** Auto image scaling */
|
|
2071
|
+
AUTO = "AUTO",
|
|
2072
|
+
/** Contain image scaling */
|
|
2073
|
+
CONTAIN = "CONTAIN",
|
|
2074
|
+
/** Cover image scaling */
|
|
2075
|
+
COVER = "COVER"
|
|
2076
|
+
}
|
|
2077
|
+
/** @enumType */
|
|
2078
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2079
|
+
declare enum ImagePositionPosition {
|
|
2080
|
+
/** Image positioned at the center */
|
|
2081
|
+
CENTER = "CENTER",
|
|
2082
|
+
/** Image positioned on the left */
|
|
2083
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2084
|
+
/** Image positioned on the right */
|
|
2085
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2086
|
+
/** Image positioned at the center top */
|
|
2087
|
+
TOP = "TOP",
|
|
2088
|
+
/** Image positioned at the top left */
|
|
2089
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2090
|
+
/** Image positioned at the top right */
|
|
2091
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2092
|
+
/** Image positioned at the center bottom */
|
|
2093
|
+
BOTTOM = "BOTTOM",
|
|
2094
|
+
/** Image positioned at the bottom left */
|
|
2095
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2096
|
+
/** Image positioned at the bottom right */
|
|
2097
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2098
|
+
}
|
|
2099
|
+
/** @enumType */
|
|
2100
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2101
|
+
/** Background type */
|
|
2102
|
+
declare enum CardDataBackgroundType {
|
|
2103
|
+
/** Solid color background */
|
|
2104
|
+
COLOR = "COLOR",
|
|
2105
|
+
/** Gradient background */
|
|
2106
|
+
GRADIENT = "GRADIENT"
|
|
2107
|
+
}
|
|
2108
|
+
/** @enumType */
|
|
2109
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2110
|
+
/** Background styling (color or gradient) */
|
|
2111
|
+
interface CardDataBackground {
|
|
2112
|
+
/** Background type. */
|
|
2113
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
2114
|
+
/**
|
|
2115
|
+
* Background color as a hexadecimal value.
|
|
2116
|
+
* @format COLOR_HEX
|
|
2117
|
+
*/
|
|
2118
|
+
color?: string | null;
|
|
2119
|
+
/** Gradient configuration. */
|
|
2120
|
+
gradient?: Gradient;
|
|
2121
|
+
}
|
|
2122
|
+
interface BackgroundImage {
|
|
2123
|
+
/** Background image. */
|
|
2124
|
+
media?: Media;
|
|
2125
|
+
/** Background image opacity. */
|
|
2126
|
+
opacity?: number | null;
|
|
2127
|
+
/** Background image scaling. */
|
|
2128
|
+
scaling?: ScalingWithLiterals;
|
|
2129
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2130
|
+
position?: ImagePositionPositionWithLiterals;
|
|
2131
|
+
}
|
|
2132
|
+
interface TocData {
|
|
2133
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
2134
|
+
includedHeadings?: number[];
|
|
2135
|
+
/** List style. Default: PLAIN. */
|
|
2136
|
+
listStyle?: ListStyleWithLiterals;
|
|
2137
|
+
/** Optional override for the font size in pixels. */
|
|
2138
|
+
fontSize?: number | null;
|
|
2139
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
2140
|
+
itemSpacing?: number | null;
|
|
2141
|
+
/**
|
|
2142
|
+
* Optional override for the text color.
|
|
2143
|
+
* @format COLOR_HEX
|
|
2144
|
+
*/
|
|
2145
|
+
color?: string | null;
|
|
2146
|
+
/** Indentation style. Default: NESTED. */
|
|
2147
|
+
indentation?: IndentationWithLiterals;
|
|
2148
|
+
}
|
|
2149
|
+
/** List style. */
|
|
2150
|
+
declare enum ListStyle {
|
|
2151
|
+
/** No markers (default) */
|
|
2152
|
+
PLAIN = "PLAIN",
|
|
2153
|
+
/** Numbered list */
|
|
2154
|
+
NUMBERED = "NUMBERED",
|
|
2155
|
+
/** Alphabetic letters */
|
|
2156
|
+
LETTERS = "LETTERS",
|
|
2157
|
+
/** Roman numerals */
|
|
2158
|
+
ROMAN = "ROMAN",
|
|
2159
|
+
/** Bulleted list */
|
|
2160
|
+
BULLETED = "BULLETED",
|
|
2161
|
+
/** Alphabetical index */
|
|
2162
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
2163
|
+
/** Alphabetical index (compact top-row only) */
|
|
2164
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
2165
|
+
}
|
|
2166
|
+
/** @enumType */
|
|
2167
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
2168
|
+
/** Indentation style. */
|
|
2169
|
+
declare enum Indentation {
|
|
2170
|
+
/** Sub-headings indented under parents (default) */
|
|
2171
|
+
NESTED = "NESTED",
|
|
2172
|
+
/** All items at the same level */
|
|
2173
|
+
FLAT = "FLAT"
|
|
2174
|
+
}
|
|
2175
|
+
/** @enumType */
|
|
2176
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
1935
2177
|
interface Metadata {
|
|
1936
2178
|
/** Schema version. */
|
|
1937
2179
|
version?: number;
|
|
@@ -1986,8 +2228,6 @@ interface MachineTranslateRequest {
|
|
|
1986
2228
|
contentToTranslate: TranslatableContent;
|
|
1987
2229
|
}
|
|
1988
2230
|
declare enum SupportedLanguage {
|
|
1989
|
-
/** Undefined Language */
|
|
1990
|
-
UNDEFINED_SUPPORTED_LANGUAGE = "UNDEFINED_SUPPORTED_LANGUAGE",
|
|
1991
2231
|
/** Afrikaans */
|
|
1992
2232
|
AF = "AF",
|
|
1993
2233
|
/** Albanian */
|
|
@@ -2260,7 +2500,7 @@ declare enum SupportedLanguage {
|
|
|
2260
2500
|
ZU = "ZU"
|
|
2261
2501
|
}
|
|
2262
2502
|
/** @enumType */
|
|
2263
|
-
type SupportedLanguageWithLiterals = SupportedLanguage | '
|
|
2503
|
+
type SupportedLanguageWithLiterals = SupportedLanguage | 'AF' | 'SQ' | 'AM' | 'AR' | 'HY' | 'AS' | 'AY' | 'AZ' | 'BM' | 'EU' | 'BE' | 'BN' | 'BHO' | 'BS' | 'BG' | 'CA' | 'CEB' | 'ZH_CN' | 'ZH_TW' | 'ZH' | 'CO' | 'HR' | 'CS' | 'DA' | 'DV' | 'DOI' | 'NL' | 'EN' | 'EO' | 'ET' | 'EE' | 'FIL' | 'FI' | 'FR' | 'FY' | 'GL' | 'KA' | 'DE' | 'EL' | 'GN' | 'GU' | 'HT' | 'HA' | 'HAW' | 'HE' | 'HI' | 'HMN' | 'HU' | 'IS' | 'IG' | 'ILO' | 'ID' | 'GA' | 'IT' | 'JA' | 'JW' | 'KN' | 'KK' | 'KM' | 'RW' | 'GOM' | 'KO' | 'KRI' | 'KU' | 'CKB' | 'KY' | 'LO' | 'LA' | 'LV' | 'LN' | 'LT' | 'LG' | 'LB' | 'MK' | 'MAI' | 'MG' | 'MS' | 'ML' | 'MT' | 'MI' | 'MR' | 'MNI_MTEI' | 'LUS' | 'MN' | 'MY' | 'NE' | 'NO' | 'NY' | 'OR' | 'OM' | 'PS' | 'FA' | 'PL' | 'PT' | 'PA' | 'QU' | 'RO' | 'RU' | 'SM' | 'SA' | 'GD' | 'NSO' | 'SR' | 'ST' | 'SN' | 'SD' | 'SI' | 'SK' | 'SL' | 'SO' | 'ES' | 'SU' | 'SW' | 'SV' | 'TL' | 'TG' | 'TA' | 'TT' | 'TE' | 'TH' | 'TI' | 'TS' | 'TR' | 'TK' | 'AK' | 'UK' | 'UR' | 'UG' | 'UZ' | 'VI' | 'CY' | 'XH' | 'YI' | 'YO' | 'ZU';
|
|
2264
2504
|
interface MachineTranslateResponse {
|
|
2265
2505
|
/** The translated content. */
|
|
2266
2506
|
translatedContent?: TranslatableContent;
|
|
@@ -2388,4 +2628,4 @@ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q
|
|
|
2388
2628
|
declare function machineTranslate(): __PublicMethodMetaInfo<'POST', {}, MachineTranslateRequest$1, MachineTranslateRequest, MachineTranslateResponse$1, MachineTranslateResponse>;
|
|
2389
2629
|
declare function bulkMachineTranslate(): __PublicMethodMetaInfo<'POST', {}, BulkMachineTranslateRequest$1, BulkMachineTranslateRequest, BulkMachineTranslateResponse$1, BulkMachineTranslateResponse>;
|
|
2390
2630
|
|
|
2391
|
-
export { Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkMachineTranslateApplicationErrors as BulkMachineTranslateApplicationErrorsOriginal, type BulkMachineTranslateRequest as BulkMachineTranslateRequestOriginal, type BulkMachineTranslateResponse as BulkMachineTranslateResponseOriginal, type BulkTranslateResult as BulkTranslateResultOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type EmbedData as EmbedDataOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, Format as FormatOriginal, type FormatWithLiterals as FormatWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListValue as ListValueOriginal, type MachineTranslateApplicationErrors as MachineTranslateApplicationErrorsOriginal, type MachineTranslateRequest as MachineTranslateRequestOriginal, type MachineTranslateResponse as MachineTranslateResponseOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, type NotEnoughCreditsError as NotEnoughCreditsErrorOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type SameLanguageArgumentsError as SameLanguageArgumentsErrorOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, SupportedLanguage as SupportedLanguageOriginal, type SupportedLanguageWithLiterals as SupportedLanguageWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, type TextTooLongError as TextTooLongErrorOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TranslatableContentContentOneOf as TranslatableContentContentOneOfOriginal, type TranslatableContent as TranslatableContentOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnknownFormatError as UnknownFormatErrorOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkMachineTranslate, machineTranslate };
|
|
2631
|
+
export { Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkMachineTranslateApplicationErrors as BulkMachineTranslateApplicationErrorsOriginal, type BulkMachineTranslateRequest as BulkMachineTranslateRequestOriginal, type BulkMachineTranslateResponse as BulkMachineTranslateResponseOriginal, type BulkTranslateResult as BulkTranslateResultOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type EmbedData as EmbedDataOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, Format as FormatOriginal, type FormatWithLiterals as FormatWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MachineTranslateApplicationErrors as MachineTranslateApplicationErrorsOriginal, type MachineTranslateRequest as MachineTranslateRequestOriginal, type MachineTranslateResponse as MachineTranslateResponseOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, type NotEnoughCreditsError as NotEnoughCreditsErrorOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type SameLanguageArgumentsError as SameLanguageArgumentsErrorOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, SupportedLanguage as SupportedLanguageOriginal, type SupportedLanguageWithLiterals as SupportedLanguageWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, type TextTooLongError as TextTooLongErrorOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, type TranslatableContentContentOneOf as TranslatableContentContentOneOfOriginal, type TranslatableContent as TranslatableContentOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnknownFormatError as UnknownFormatErrorOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkMachineTranslate, machineTranslate };
|