@wix/auto_sdk_blog_draft-posts 1.0.76 → 1.0.78
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 +1017 -36
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +270 -26
- package/build/cjs/index.typings.js +857 -26
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +270 -26
- package/build/cjs/meta.js +857 -26
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +1008 -36
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +270 -26
- package/build/es/index.typings.mjs +848 -26
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +270 -26
- package/build/es/meta.mjs +848 -26
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +1017 -36
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +270 -26
- package/build/internal/cjs/index.typings.js +857 -26
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +270 -26
- package/build/internal/cjs/meta.js +857 -26
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +1008 -36
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +270 -26
- package/build/internal/es/index.typings.mjs +848 -26
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +270 -26
- package/build/internal/es/meta.mjs +848 -26
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
package/build/cjs/meta.d.ts
CHANGED
|
@@ -311,6 +311,10 @@ interface Node extends NodeDataOneOf {
|
|
|
311
311
|
layoutCellData?: LayoutCellData;
|
|
312
312
|
/** Data for a shape node. */
|
|
313
313
|
shapeData?: ShapeData;
|
|
314
|
+
/** Data for a card node. */
|
|
315
|
+
cardData?: CardData;
|
|
316
|
+
/** Data for a table of contents node. */
|
|
317
|
+
tocData?: TocData;
|
|
314
318
|
/** 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. */
|
|
315
319
|
type?: NodeTypeWithLiterals;
|
|
316
320
|
/** Node ID. */
|
|
@@ -380,6 +384,10 @@ interface NodeDataOneOf {
|
|
|
380
384
|
layoutCellData?: LayoutCellData;
|
|
381
385
|
/** Data for a shape node. */
|
|
382
386
|
shapeData?: ShapeData;
|
|
387
|
+
/** Data for a card node. */
|
|
388
|
+
cardData?: CardData;
|
|
389
|
+
/** Data for a table of contents node. */
|
|
390
|
+
tocData?: TocData;
|
|
383
391
|
}
|
|
384
392
|
declare enum NodeType {
|
|
385
393
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -416,10 +424,12 @@ declare enum NodeType {
|
|
|
416
424
|
CAPTION = "CAPTION",
|
|
417
425
|
LAYOUT = "LAYOUT",
|
|
418
426
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
419
|
-
SHAPE = "SHAPE"
|
|
427
|
+
SHAPE = "SHAPE",
|
|
428
|
+
CARD = "CARD",
|
|
429
|
+
TOC = "TOC"
|
|
420
430
|
}
|
|
421
431
|
/** @enumType */
|
|
422
|
-
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';
|
|
432
|
+
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';
|
|
423
433
|
interface NodeStyle {
|
|
424
434
|
/** The top padding value in pixels. */
|
|
425
435
|
paddingTop?: string | null;
|
|
@@ -440,6 +450,55 @@ interface ButtonData {
|
|
|
440
450
|
/** Button link details. */
|
|
441
451
|
link?: Link;
|
|
442
452
|
}
|
|
453
|
+
/** Background type */
|
|
454
|
+
declare enum BackgroundType {
|
|
455
|
+
/** Solid color background */
|
|
456
|
+
COLOR = "COLOR",
|
|
457
|
+
/** Gradient background */
|
|
458
|
+
GRADIENT = "GRADIENT"
|
|
459
|
+
}
|
|
460
|
+
/** @enumType */
|
|
461
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
462
|
+
interface Gradient {
|
|
463
|
+
/** Gradient type. */
|
|
464
|
+
type?: GradientTypeWithLiterals;
|
|
465
|
+
/**
|
|
466
|
+
* Color stops for the gradient.
|
|
467
|
+
* @maxSize 1000
|
|
468
|
+
*/
|
|
469
|
+
stops?: Stop[];
|
|
470
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
471
|
+
angle?: number | null;
|
|
472
|
+
/**
|
|
473
|
+
* Horizontal center position for radial gradient (0-100).
|
|
474
|
+
* @max 100
|
|
475
|
+
*/
|
|
476
|
+
centerX?: number | null;
|
|
477
|
+
/**
|
|
478
|
+
* Vertical center position for radial gradient (0-100).
|
|
479
|
+
* @max 100
|
|
480
|
+
*/
|
|
481
|
+
centerY?: number | null;
|
|
482
|
+
}
|
|
483
|
+
/** Gradient type. */
|
|
484
|
+
declare enum GradientType {
|
|
485
|
+
/** Linear gradient. */
|
|
486
|
+
LINEAR = "LINEAR",
|
|
487
|
+
/** Radial gradient. */
|
|
488
|
+
RADIAL = "RADIAL"
|
|
489
|
+
}
|
|
490
|
+
/** @enumType */
|
|
491
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
492
|
+
/** A single color stop in the gradient. */
|
|
493
|
+
interface Stop {
|
|
494
|
+
/**
|
|
495
|
+
* Stop color as hex value.
|
|
496
|
+
* @format COLOR_HEX
|
|
497
|
+
*/
|
|
498
|
+
color?: string | null;
|
|
499
|
+
/** Stop position (0-1). */
|
|
500
|
+
position?: number | null;
|
|
501
|
+
}
|
|
443
502
|
interface Border {
|
|
444
503
|
/**
|
|
445
504
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
@@ -469,6 +528,18 @@ interface Colors {
|
|
|
469
528
|
*/
|
|
470
529
|
background?: string | null;
|
|
471
530
|
}
|
|
531
|
+
/** Background styling (color or gradient) */
|
|
532
|
+
interface Background {
|
|
533
|
+
/** Background type. */
|
|
534
|
+
type?: BackgroundTypeWithLiterals;
|
|
535
|
+
/**
|
|
536
|
+
* Background color as a hexadecimal value.
|
|
537
|
+
* @format COLOR_HEX
|
|
538
|
+
*/
|
|
539
|
+
color?: string | null;
|
|
540
|
+
/** Gradient configuration. */
|
|
541
|
+
gradient?: Gradient;
|
|
542
|
+
}
|
|
472
543
|
interface PluginContainerData {
|
|
473
544
|
/** The width of the node when it's displayed. */
|
|
474
545
|
width?: PluginContainerDataWidth;
|
|
@@ -589,17 +660,23 @@ interface Styles {
|
|
|
589
660
|
*/
|
|
590
661
|
textColorHover?: string | null;
|
|
591
662
|
/**
|
|
592
|
-
*
|
|
663
|
+
* Deprecated: Use `background` instead.
|
|
593
664
|
* @format COLOR_HEX
|
|
665
|
+
* @deprecated
|
|
594
666
|
*/
|
|
595
667
|
backgroundColor?: string | null;
|
|
596
668
|
/**
|
|
597
|
-
*
|
|
669
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
598
670
|
* @format COLOR_HEX
|
|
671
|
+
* @deprecated
|
|
599
672
|
*/
|
|
600
673
|
backgroundColorHover?: string | null;
|
|
601
674
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
602
675
|
buttonSize?: string | null;
|
|
676
|
+
/** Background styling (color or gradient). */
|
|
677
|
+
background?: Background;
|
|
678
|
+
/** Background styling for hover state (color or gradient). */
|
|
679
|
+
backgroundHover?: Background;
|
|
603
680
|
}
|
|
604
681
|
interface Link extends LinkDataOneOf {
|
|
605
682
|
/** The absolute URL for the linked document. */
|
|
@@ -981,6 +1058,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
981
1058
|
* @deprecated
|
|
982
1059
|
*/
|
|
983
1060
|
isAdsense?: boolean | null;
|
|
1061
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1062
|
+
widgetId?: string;
|
|
984
1063
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
985
1064
|
containerData?: PluginContainerData;
|
|
986
1065
|
/** The type of HTML code. */
|
|
@@ -999,14 +1078,17 @@ interface HTMLDataDataOneOf {
|
|
|
999
1078
|
* @deprecated
|
|
1000
1079
|
*/
|
|
1001
1080
|
isAdsense?: boolean | null;
|
|
1081
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1082
|
+
widgetId?: string;
|
|
1002
1083
|
}
|
|
1003
1084
|
declare enum Source {
|
|
1004
1085
|
HTML = "HTML",
|
|
1005
1086
|
ADSENSE = "ADSENSE",
|
|
1006
|
-
AI = "AI"
|
|
1087
|
+
AI = "AI",
|
|
1088
|
+
AI_WIDGET = "AI_WIDGET"
|
|
1007
1089
|
}
|
|
1008
1090
|
/** @enumType */
|
|
1009
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
1091
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
1010
1092
|
interface ImageData {
|
|
1011
1093
|
/** Styling for the image's container. */
|
|
1012
1094
|
containerData?: PluginContainerData;
|
|
@@ -1236,7 +1318,7 @@ interface OptionLayout {
|
|
|
1236
1318
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
1237
1319
|
enableImage?: boolean | null;
|
|
1238
1320
|
}
|
|
1239
|
-
declare enum
|
|
1321
|
+
declare enum PollDesignBackgroundType {
|
|
1240
1322
|
/** Color background type */
|
|
1241
1323
|
COLOR = "COLOR",
|
|
1242
1324
|
/** Image background type */
|
|
@@ -1245,8 +1327,8 @@ declare enum BackgroundType {
|
|
|
1245
1327
|
GRADIENT = "GRADIENT"
|
|
1246
1328
|
}
|
|
1247
1329
|
/** @enumType */
|
|
1248
|
-
type
|
|
1249
|
-
interface
|
|
1330
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
1331
|
+
interface BackgroundGradient {
|
|
1250
1332
|
/** The gradient angle in degrees. */
|
|
1251
1333
|
angle?: number | null;
|
|
1252
1334
|
/**
|
|
@@ -1260,7 +1342,7 @@ interface Gradient {
|
|
|
1260
1342
|
*/
|
|
1261
1343
|
lastColor?: string | null;
|
|
1262
1344
|
}
|
|
1263
|
-
interface
|
|
1345
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1264
1346
|
/**
|
|
1265
1347
|
* The background color as a hexademical value.
|
|
1266
1348
|
* @format COLOR_HEX
|
|
@@ -1269,12 +1351,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
1269
1351
|
/** An image to use for the background. */
|
|
1270
1352
|
image?: V1Media;
|
|
1271
1353
|
/** Details for a gradient background. */
|
|
1272
|
-
gradient?:
|
|
1354
|
+
gradient?: BackgroundGradient;
|
|
1273
1355
|
/** Background type. For each option, include the relevant details. */
|
|
1274
|
-
type?:
|
|
1356
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
1275
1357
|
}
|
|
1276
1358
|
/** @oneof */
|
|
1277
|
-
interface
|
|
1359
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
1278
1360
|
/**
|
|
1279
1361
|
* The background color as a hexademical value.
|
|
1280
1362
|
* @format COLOR_HEX
|
|
@@ -1283,11 +1365,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
1283
1365
|
/** An image to use for the background. */
|
|
1284
1366
|
image?: V1Media;
|
|
1285
1367
|
/** Details for a gradient background. */
|
|
1286
|
-
gradient?:
|
|
1368
|
+
gradient?: BackgroundGradient;
|
|
1287
1369
|
}
|
|
1288
1370
|
interface PollDesign {
|
|
1289
1371
|
/** Background styling. */
|
|
1290
|
-
background?:
|
|
1372
|
+
background?: PollDesignBackground;
|
|
1291
1373
|
/** Border radius in pixels. */
|
|
1292
1374
|
borderRadius?: number | null;
|
|
1293
1375
|
}
|
|
@@ -1970,12 +2052,13 @@ interface CaptionData {
|
|
|
1970
2052
|
}
|
|
1971
2053
|
interface LayoutData {
|
|
1972
2054
|
/**
|
|
1973
|
-
*
|
|
2055
|
+
* Deprecated: Use `background` instead.
|
|
1974
2056
|
* @format COLOR_HEX
|
|
2057
|
+
* @deprecated
|
|
1975
2058
|
*/
|
|
1976
2059
|
backgroundColor?: string | null;
|
|
1977
2060
|
/** Background image. */
|
|
1978
|
-
backgroundImage?:
|
|
2061
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
1979
2062
|
/**
|
|
1980
2063
|
* Border color as a hexadecimal value.
|
|
1981
2064
|
* @format COLOR_HEX
|
|
@@ -1983,15 +2066,16 @@ interface LayoutData {
|
|
|
1983
2066
|
borderColor?: string | null;
|
|
1984
2067
|
/** Border width in pixels. */
|
|
1985
2068
|
borderWidth?: number | null;
|
|
1986
|
-
/** Border */
|
|
2069
|
+
/** Border radius in pixels. */
|
|
1987
2070
|
borderRadius?: number | null;
|
|
1988
2071
|
/**
|
|
1989
|
-
*
|
|
2072
|
+
* Deprecated: Use `backdrop` instead.
|
|
1990
2073
|
* @format COLOR_HEX
|
|
2074
|
+
* @deprecated
|
|
1991
2075
|
*/
|
|
1992
2076
|
backdropColor?: string | null;
|
|
1993
|
-
/** Backdrop image.
|
|
1994
|
-
backdropImage?:
|
|
2077
|
+
/** Backdrop image. */
|
|
2078
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
1995
2079
|
/** Backdrop top padding. */
|
|
1996
2080
|
backdropPaddingTop?: number | null;
|
|
1997
2081
|
/** Backdrop bottom padding */
|
|
@@ -2015,8 +2099,12 @@ interface LayoutData {
|
|
|
2015
2099
|
designTarget?: DesignTargetWithLiterals;
|
|
2016
2100
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
2017
2101
|
banner?: Banner;
|
|
2102
|
+
/** Background styling (color or gradient). */
|
|
2103
|
+
background?: LayoutDataBackground;
|
|
2104
|
+
/** Backdrop styling (color or gradient). */
|
|
2105
|
+
backdrop?: Backdrop;
|
|
2018
2106
|
}
|
|
2019
|
-
declare enum
|
|
2107
|
+
declare enum ImageScalingScaling {
|
|
2020
2108
|
/** Auto image scaling */
|
|
2021
2109
|
AUTO = "AUTO",
|
|
2022
2110
|
/** Contain image scaling */
|
|
@@ -2025,7 +2113,7 @@ declare enum Scaling {
|
|
|
2025
2113
|
COVER = "COVER"
|
|
2026
2114
|
}
|
|
2027
2115
|
/** @enumType */
|
|
2028
|
-
type
|
|
2116
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2029
2117
|
declare enum ImagePosition {
|
|
2030
2118
|
/** Image positioned at the center */
|
|
2031
2119
|
CENTER = "CENTER",
|
|
@@ -2056,13 +2144,31 @@ declare enum BannerOrigin {
|
|
|
2056
2144
|
}
|
|
2057
2145
|
/** @enumType */
|
|
2058
2146
|
type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
|
|
2059
|
-
|
|
2147
|
+
/** Background type */
|
|
2148
|
+
declare enum LayoutDataBackgroundType {
|
|
2149
|
+
/** Solid color background */
|
|
2150
|
+
COLOR = "COLOR",
|
|
2151
|
+
/** Gradient background */
|
|
2152
|
+
GRADIENT = "GRADIENT"
|
|
2153
|
+
}
|
|
2154
|
+
/** @enumType */
|
|
2155
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2156
|
+
/** Backdrop type */
|
|
2157
|
+
declare enum BackdropType {
|
|
2158
|
+
/** Solid color backdrop */
|
|
2159
|
+
COLOR = "COLOR",
|
|
2160
|
+
/** Gradient backdrop */
|
|
2161
|
+
GRADIENT = "GRADIENT"
|
|
2162
|
+
}
|
|
2163
|
+
/** @enumType */
|
|
2164
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
2165
|
+
interface LayoutDataBackgroundImage {
|
|
2060
2166
|
/** Background image. */
|
|
2061
2167
|
media?: V1Media;
|
|
2062
2168
|
/** Background image opacity. */
|
|
2063
2169
|
opacity?: number | null;
|
|
2064
2170
|
/** Background image scaling. */
|
|
2065
|
-
scaling?:
|
|
2171
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
2066
2172
|
/** Position of background. Defaults to `CENTER`. */
|
|
2067
2173
|
position?: ImagePositionWithLiterals;
|
|
2068
2174
|
}
|
|
@@ -2096,6 +2202,30 @@ interface Banner {
|
|
|
2096
2202
|
/** Origin of the banner */
|
|
2097
2203
|
origin?: BannerOriginWithLiterals;
|
|
2098
2204
|
}
|
|
2205
|
+
/** Background styling (color or gradient) */
|
|
2206
|
+
interface LayoutDataBackground {
|
|
2207
|
+
/** Background type. */
|
|
2208
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2209
|
+
/**
|
|
2210
|
+
* Background color as a hexadecimal value.
|
|
2211
|
+
* @format COLOR_HEX
|
|
2212
|
+
*/
|
|
2213
|
+
color?: string | null;
|
|
2214
|
+
/** Gradient configuration. */
|
|
2215
|
+
gradient?: Gradient;
|
|
2216
|
+
}
|
|
2217
|
+
/** Backdrop styling (color or gradient) */
|
|
2218
|
+
interface Backdrop {
|
|
2219
|
+
/** Backdrop type. */
|
|
2220
|
+
type?: BackdropTypeWithLiterals;
|
|
2221
|
+
/**
|
|
2222
|
+
* Backdrop color as a hexadecimal value.
|
|
2223
|
+
* @format COLOR_HEX
|
|
2224
|
+
*/
|
|
2225
|
+
color?: string | null;
|
|
2226
|
+
/** Gradient configuration. */
|
|
2227
|
+
gradient?: Gradient;
|
|
2228
|
+
}
|
|
2099
2229
|
interface LayoutCellData {
|
|
2100
2230
|
/** Size of the cell in 12 columns grid. */
|
|
2101
2231
|
colSpan?: number | null;
|
|
@@ -2117,6 +2247,120 @@ interface ShapeDataStyles {
|
|
|
2117
2247
|
/** Map of original color keys to their new color values. */
|
|
2118
2248
|
colors?: Record<string, string>;
|
|
2119
2249
|
}
|
|
2250
|
+
interface CardData {
|
|
2251
|
+
/** Background styling (color or gradient). */
|
|
2252
|
+
background?: CardDataBackground;
|
|
2253
|
+
/** Background image. */
|
|
2254
|
+
backgroundImage?: BackgroundImage;
|
|
2255
|
+
}
|
|
2256
|
+
declare enum Scaling {
|
|
2257
|
+
/** Auto image scaling */
|
|
2258
|
+
AUTO = "AUTO",
|
|
2259
|
+
/** Contain image scaling */
|
|
2260
|
+
CONTAIN = "CONTAIN",
|
|
2261
|
+
/** Cover image scaling */
|
|
2262
|
+
COVER = "COVER"
|
|
2263
|
+
}
|
|
2264
|
+
/** @enumType */
|
|
2265
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2266
|
+
declare enum ImagePositionPosition {
|
|
2267
|
+
/** Image positioned at the center */
|
|
2268
|
+
CENTER = "CENTER",
|
|
2269
|
+
/** Image positioned on the left */
|
|
2270
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2271
|
+
/** Image positioned on the right */
|
|
2272
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2273
|
+
/** Image positioned at the center top */
|
|
2274
|
+
TOP = "TOP",
|
|
2275
|
+
/** Image positioned at the top left */
|
|
2276
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2277
|
+
/** Image positioned at the top right */
|
|
2278
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2279
|
+
/** Image positioned at the center bottom */
|
|
2280
|
+
BOTTOM = "BOTTOM",
|
|
2281
|
+
/** Image positioned at the bottom left */
|
|
2282
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2283
|
+
/** Image positioned at the bottom right */
|
|
2284
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2285
|
+
}
|
|
2286
|
+
/** @enumType */
|
|
2287
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2288
|
+
/** Background type */
|
|
2289
|
+
declare enum CardDataBackgroundType {
|
|
2290
|
+
/** Solid color background */
|
|
2291
|
+
COLOR = "COLOR",
|
|
2292
|
+
/** Gradient background */
|
|
2293
|
+
GRADIENT = "GRADIENT"
|
|
2294
|
+
}
|
|
2295
|
+
/** @enumType */
|
|
2296
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2297
|
+
/** Background styling (color or gradient) */
|
|
2298
|
+
interface CardDataBackground {
|
|
2299
|
+
/** Background type. */
|
|
2300
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
2301
|
+
/**
|
|
2302
|
+
* Background color as a hexadecimal value.
|
|
2303
|
+
* @format COLOR_HEX
|
|
2304
|
+
*/
|
|
2305
|
+
color?: string | null;
|
|
2306
|
+
/** Gradient configuration. */
|
|
2307
|
+
gradient?: Gradient;
|
|
2308
|
+
}
|
|
2309
|
+
interface BackgroundImage {
|
|
2310
|
+
/** Background image. */
|
|
2311
|
+
media?: V1Media;
|
|
2312
|
+
/** Background image opacity. */
|
|
2313
|
+
opacity?: number | null;
|
|
2314
|
+
/** Background image scaling. */
|
|
2315
|
+
scaling?: ScalingWithLiterals;
|
|
2316
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2317
|
+
position?: ImagePositionPositionWithLiterals;
|
|
2318
|
+
}
|
|
2319
|
+
interface TocData {
|
|
2320
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
2321
|
+
includedHeadings?: number[];
|
|
2322
|
+
/** List style. Default: PLAIN. */
|
|
2323
|
+
listStyle?: ListStyleWithLiterals;
|
|
2324
|
+
/** Optional override for the font size in pixels. */
|
|
2325
|
+
fontSize?: number | null;
|
|
2326
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
2327
|
+
itemSpacing?: number | null;
|
|
2328
|
+
/**
|
|
2329
|
+
* Optional override for the text color.
|
|
2330
|
+
* @format COLOR_HEX
|
|
2331
|
+
*/
|
|
2332
|
+
color?: string | null;
|
|
2333
|
+
/** Indentation style. Default: NESTED. */
|
|
2334
|
+
indentation?: IndentationWithLiterals;
|
|
2335
|
+
}
|
|
2336
|
+
/** List style. */
|
|
2337
|
+
declare enum ListStyle {
|
|
2338
|
+
/** No markers (default) */
|
|
2339
|
+
PLAIN = "PLAIN",
|
|
2340
|
+
/** Numbered list */
|
|
2341
|
+
NUMBERED = "NUMBERED",
|
|
2342
|
+
/** Alphabetic letters */
|
|
2343
|
+
LETTERS = "LETTERS",
|
|
2344
|
+
/** Roman numerals */
|
|
2345
|
+
ROMAN = "ROMAN",
|
|
2346
|
+
/** Bulleted list */
|
|
2347
|
+
BULLETED = "BULLETED",
|
|
2348
|
+
/** Alphabetical index */
|
|
2349
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
2350
|
+
/** Alphabetical index (compact top-row only) */
|
|
2351
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
2352
|
+
}
|
|
2353
|
+
/** @enumType */
|
|
2354
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
2355
|
+
/** Indentation style. */
|
|
2356
|
+
declare enum Indentation {
|
|
2357
|
+
/** Sub-headings indented under parents (default) */
|
|
2358
|
+
NESTED = "NESTED",
|
|
2359
|
+
/** All items at the same level */
|
|
2360
|
+
FLAT = "FLAT"
|
|
2361
|
+
}
|
|
2362
|
+
/** @enumType */
|
|
2363
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2120
2364
|
interface Metadata {
|
|
2121
2365
|
/** Schema version. */
|
|
2122
2366
|
version?: number;
|
|
@@ -3398,4 +3642,4 @@ declare function publishDraftPost(): __PublicMethodMetaInfo<'POST', {
|
|
|
3398
3642
|
draftPostId: string;
|
|
3399
3643
|
}, PublishDraftPostRequest$1, PublishDraftPostRequest, PublishDraftPostResponse$1, PublishDraftPostResponse>;
|
|
3400
3644
|
|
|
3401
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, 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, type ApproveDraftPostRequest as ApproveDraftPostRequestOriginal, type ApproveDraftPostResponse as ApproveDraftPostResponseOriginal, 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, BannerOrigin as BannerOriginOriginal, type BannerOriginWithLiterals as BannerOriginWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateDraftPostsRequest as BulkCreateDraftPostsRequestOriginal, type BulkCreateDraftPostsResponse as BulkCreateDraftPostsResponseOriginal, type BulkDeleteDraftPostsRequest as BulkDeleteDraftPostsRequestOriginal, type BulkDeleteDraftPostsResponse as BulkDeleteDraftPostsResponseOriginal, type BulkDraftPostResult as BulkDraftPostResultOriginal, type BulkRejectDraftPostRequest as BulkRejectDraftPostRequestOriginal, type BulkRejectDraftPostResponse as BulkRejectDraftPostResponseOriginal, type BulkRevertToUnpublishedRequest as BulkRevertToUnpublishedRequestOriginal, type BulkRevertToUnpublishedResponse as BulkRevertToUnpublishedResponseOriginal, type BulkUpdateDraftPostsRequest as BulkUpdateDraftPostsRequestOriginal, type BulkUpdateDraftPostsResponse as BulkUpdateDraftPostsResponseOriginal, 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, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CreateDraftPostRequest as CreateDraftPostRequestOriginal, type CreateDraftPostResponse as CreateDraftPostResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteDraftPostRequest as DeleteDraftPostRequestOriginal, type DeleteDraftPostResponse as DeleteDraftPostResponseOriginal, 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 DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftCategoriesUpdated as DraftCategoriesUpdatedOriginal, type DraftPostCount as DraftPostCountOriginal, type DraftPost as DraftPostOriginal, type DraftPostOwnerChanged as DraftPostOwnerChangedOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type DraftTagsUpdated as DraftTagsUpdatedOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, 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 GetDeletedDraftPostRequest as GetDeletedDraftPostRequestOriginal, type GetDeletedDraftPostResponse as GetDeletedDraftPostResponseOriginal, type GetDraftPostCountsRequest as GetDraftPostCountsRequestOriginal, type GetDraftPostCountsResponse as GetDraftPostCountsResponseOriginal, type GetDraftPostRequest as GetDraftPostRequestOriginal, type GetDraftPostResponse as GetDraftPostResponseOriginal, type GetDraftPostTotalsRequest as GetDraftPostTotalsRequestOriginal, type GetDraftPostTotalsResponse as GetDraftPostTotalsResponseOriginal, GetDraftPostsSort as GetDraftPostsSortOriginal, type GetDraftPostsSortWithLiterals as GetDraftPostsSortWithLiteralsOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, type InitialDraftPostsCopied as InitialDraftPostsCopiedOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type IsDraftPostAutoTranslatableRequest as IsDraftPostAutoTranslatableRequestOriginal, type IsDraftPostAutoTranslatableResponse as IsDraftPostAutoTranslatableResponseOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, 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 ListDeletedDraftPostsRequest as ListDeletedDraftPostsRequestOriginal, type ListDeletedDraftPostsResponse as ListDeletedDraftPostsResponseOriginal, type ListDraftPostsRequest as ListDraftPostsRequestOriginal, type ListDraftPostsResponse as ListDraftPostsResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkPostAsInModerationRequest as MarkPostAsInModerationRequestOriginal, type MarkPostAsInModerationResponse as MarkPostAsInModerationResponseOriginal, type MaskedDraftPosts as MaskedDraftPostsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, 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 PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, 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, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishDraftPostRequest as PublishDraftPostRequestOriginal, type PublishDraftPostResponse as PublishDraftPostResponseOriginal, type QueryDraftPostsRequest as QueryDraftPostsRequestOriginal, type QueryDraftPostsResponse as QueryDraftPostsResponseOriginal, type RejectDraftPostRequest as RejectDraftPostRequestOriginal, type RejectDraftPostResponse as RejectDraftPostResponseOriginal, type Rel as RelOriginal, type RemoveFromTrashBinRequest as RemoveFromTrashBinRequestOriginal, type RemoveFromTrashBinResponse as RemoveFromTrashBinResponseOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreFromTrashBinRequest as RestoreFromTrashBinRequestOriginal, type RestoreFromTrashBinResponse as RestoreFromTrashBinResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RevertToUnpublishedRequest as RevertToUnpublishedRequestOriginal, type RevertToUnpublishedResponse as RevertToUnpublishedResponseOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, 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, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, TotalDraftPostsGroupingField as TotalDraftPostsGroupingFieldOriginal, type TotalDraftPostsGroupingFieldWithLiterals as TotalDraftPostsGroupingFieldWithLiteralsOriginal, type TotalDraftPosts as TotalDraftPostsOriginal, type TranslateDraftRequest as TranslateDraftRequestOriginal, type TranslateDraftResponse as TranslateDraftResponseOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnpublishPostRequest as UnpublishPostRequestOriginal, type UnpublishPostResponse as UnpublishPostResponseOriginal, type UpdateDraftPostContentRequest as UpdateDraftPostContentRequestOriginal, type UpdateDraftPostContentResponse as UpdateDraftPostContentResponseOriginal, type UpdateDraftPostLanguageRequest as UpdateDraftPostLanguageRequestOriginal, type UpdateDraftPostLanguageResponse as UpdateDraftPostLanguageResponseOriginal, type UpdateDraftPostRequest as UpdateDraftPostRequestOriginal, type UpdateDraftPostResponse as UpdateDraftPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, updateDraftPost };
|
|
3645
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, 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, type ApproveDraftPostRequest as ApproveDraftPostRequestOriginal, type ApproveDraftPostResponse as ApproveDraftPostResponseOriginal, 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, BannerOrigin as BannerOriginOriginal, type BannerOriginWithLiterals as BannerOriginWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateDraftPostsRequest as BulkCreateDraftPostsRequestOriginal, type BulkCreateDraftPostsResponse as BulkCreateDraftPostsResponseOriginal, type BulkDeleteDraftPostsRequest as BulkDeleteDraftPostsRequestOriginal, type BulkDeleteDraftPostsResponse as BulkDeleteDraftPostsResponseOriginal, type BulkDraftPostResult as BulkDraftPostResultOriginal, type BulkRejectDraftPostRequest as BulkRejectDraftPostRequestOriginal, type BulkRejectDraftPostResponse as BulkRejectDraftPostResponseOriginal, type BulkRevertToUnpublishedRequest as BulkRevertToUnpublishedRequestOriginal, type BulkRevertToUnpublishedResponse as BulkRevertToUnpublishedResponseOriginal, type BulkUpdateDraftPostsRequest as BulkUpdateDraftPostsRequestOriginal, type BulkUpdateDraftPostsResponse as BulkUpdateDraftPostsResponseOriginal, 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, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CreateDraftPostRequest as CreateDraftPostRequestOriginal, type CreateDraftPostResponse as CreateDraftPostResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteDraftPostRequest as DeleteDraftPostRequestOriginal, type DeleteDraftPostResponse as DeleteDraftPostResponseOriginal, 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 DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftCategoriesUpdated as DraftCategoriesUpdatedOriginal, type DraftPostCount as DraftPostCountOriginal, type DraftPost as DraftPostOriginal, type DraftPostOwnerChanged as DraftPostOwnerChangedOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type DraftTagsUpdated as DraftTagsUpdatedOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, 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 GetDeletedDraftPostRequest as GetDeletedDraftPostRequestOriginal, type GetDeletedDraftPostResponse as GetDeletedDraftPostResponseOriginal, type GetDraftPostCountsRequest as GetDraftPostCountsRequestOriginal, type GetDraftPostCountsResponse as GetDraftPostCountsResponseOriginal, type GetDraftPostRequest as GetDraftPostRequestOriginal, type GetDraftPostResponse as GetDraftPostResponseOriginal, type GetDraftPostTotalsRequest as GetDraftPostTotalsRequestOriginal, type GetDraftPostTotalsResponse as GetDraftPostTotalsResponseOriginal, GetDraftPostsSort as GetDraftPostsSortOriginal, type GetDraftPostsSortWithLiterals as GetDraftPostsSortWithLiteralsOriginal, 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 IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, 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, type InitialDraftPostsCopied as InitialDraftPostsCopiedOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type IsDraftPostAutoTranslatableRequest as IsDraftPostAutoTranslatableRequestOriginal, type IsDraftPostAutoTranslatableResponse as IsDraftPostAutoTranslatableResponseOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, 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, type ListDeletedDraftPostsRequest as ListDeletedDraftPostsRequestOriginal, type ListDeletedDraftPostsResponse as ListDeletedDraftPostsResponseOriginal, type ListDraftPostsRequest as ListDraftPostsRequestOriginal, type ListDraftPostsResponse as ListDraftPostsResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkPostAsInModerationRequest as MarkPostAsInModerationRequestOriginal, type MarkPostAsInModerationResponse as MarkPostAsInModerationResponseOriginal, type MaskedDraftPosts as MaskedDraftPostsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, 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 PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, 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, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishDraftPostRequest as PublishDraftPostRequestOriginal, type PublishDraftPostResponse as PublishDraftPostResponseOriginal, type QueryDraftPostsRequest as QueryDraftPostsRequestOriginal, type QueryDraftPostsResponse as QueryDraftPostsResponseOriginal, type RejectDraftPostRequest as RejectDraftPostRequestOriginal, type RejectDraftPostResponse as RejectDraftPostResponseOriginal, type Rel as RelOriginal, type RemoveFromTrashBinRequest as RemoveFromTrashBinRequestOriginal, type RemoveFromTrashBinResponse as RemoveFromTrashBinResponseOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreFromTrashBinRequest as RestoreFromTrashBinRequestOriginal, type RestoreFromTrashBinResponse as RestoreFromTrashBinResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RevertToUnpublishedRequest as RevertToUnpublishedRequestOriginal, type RevertToUnpublishedResponse as RevertToUnpublishedResponseOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, 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, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, TotalDraftPostsGroupingField as TotalDraftPostsGroupingFieldOriginal, type TotalDraftPostsGroupingFieldWithLiterals as TotalDraftPostsGroupingFieldWithLiteralsOriginal, type TotalDraftPosts as TotalDraftPostsOriginal, type TranslateDraftRequest as TranslateDraftRequestOriginal, type TranslateDraftResponse as TranslateDraftResponseOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnpublishPostRequest as UnpublishPostRequestOriginal, type UnpublishPostResponse as UnpublishPostResponseOriginal, type UpdateDraftPostContentRequest as UpdateDraftPostContentRequestOriginal, type UpdateDraftPostContentResponse as UpdateDraftPostContentResponseOriginal, type UpdateDraftPostLanguageRequest as UpdateDraftPostLanguageRequestOriginal, type UpdateDraftPostLanguageResponse as UpdateDraftPostLanguageResponseOriginal, type UpdateDraftPostRequest as UpdateDraftPostRequestOriginal, type UpdateDraftPostResponse as UpdateDraftPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, updateDraftPost };
|