@wix/auto_sdk_blog_draft-posts 1.0.75 → 1.0.77
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 +961 -35
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +242 -24
- package/build/cjs/index.typings.js +805 -23
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +242 -24
- package/build/cjs/meta.js +805 -23
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +954 -35
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +242 -24
- package/build/es/index.typings.mjs +798 -23
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +242 -24
- package/build/es/meta.mjs +798 -23
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +961 -35
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +242 -24
- package/build/internal/cjs/index.typings.js +805 -23
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +242 -24
- package/build/internal/cjs/meta.js +805 -23
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +954 -35
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +242 -24
- package/build/internal/es/index.typings.mjs +798 -23
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +242 -24
- package/build/internal/es/meta.mjs +798 -23
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -311,6 +311,8 @@ 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;
|
|
314
316
|
/** 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
317
|
type?: NodeTypeWithLiterals;
|
|
316
318
|
/** Node ID. */
|
|
@@ -380,6 +382,8 @@ interface NodeDataOneOf {
|
|
|
380
382
|
layoutCellData?: LayoutCellData;
|
|
381
383
|
/** Data for a shape node. */
|
|
382
384
|
shapeData?: ShapeData;
|
|
385
|
+
/** Data for a card node. */
|
|
386
|
+
cardData?: CardData;
|
|
383
387
|
}
|
|
384
388
|
declare enum NodeType {
|
|
385
389
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -416,10 +420,11 @@ declare enum NodeType {
|
|
|
416
420
|
CAPTION = "CAPTION",
|
|
417
421
|
LAYOUT = "LAYOUT",
|
|
418
422
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
419
|
-
SHAPE = "SHAPE"
|
|
423
|
+
SHAPE = "SHAPE",
|
|
424
|
+
CARD = "CARD"
|
|
420
425
|
}
|
|
421
426
|
/** @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';
|
|
427
|
+
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';
|
|
423
428
|
interface NodeStyle {
|
|
424
429
|
/** The top padding value in pixels. */
|
|
425
430
|
paddingTop?: string | null;
|
|
@@ -440,6 +445,55 @@ interface ButtonData {
|
|
|
440
445
|
/** Button link details. */
|
|
441
446
|
link?: Link;
|
|
442
447
|
}
|
|
448
|
+
/** Background type */
|
|
449
|
+
declare enum BackgroundType {
|
|
450
|
+
/** Solid color background */
|
|
451
|
+
COLOR = "COLOR",
|
|
452
|
+
/** Gradient background */
|
|
453
|
+
GRADIENT = "GRADIENT"
|
|
454
|
+
}
|
|
455
|
+
/** @enumType */
|
|
456
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
457
|
+
interface Gradient {
|
|
458
|
+
/** Gradient type. */
|
|
459
|
+
type?: GradientTypeWithLiterals;
|
|
460
|
+
/**
|
|
461
|
+
* Color stops for the gradient.
|
|
462
|
+
* @maxSize 1000
|
|
463
|
+
*/
|
|
464
|
+
stops?: Stop[];
|
|
465
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
466
|
+
angle?: number | null;
|
|
467
|
+
/**
|
|
468
|
+
* Horizontal center position for radial gradient (0-100).
|
|
469
|
+
* @max 100
|
|
470
|
+
*/
|
|
471
|
+
centerX?: number | null;
|
|
472
|
+
/**
|
|
473
|
+
* Vertical center position for radial gradient (0-100).
|
|
474
|
+
* @max 100
|
|
475
|
+
*/
|
|
476
|
+
centerY?: number | null;
|
|
477
|
+
}
|
|
478
|
+
/** Gradient type. */
|
|
479
|
+
declare enum GradientType {
|
|
480
|
+
/** Linear gradient. */
|
|
481
|
+
LINEAR = "LINEAR",
|
|
482
|
+
/** Radial gradient. */
|
|
483
|
+
RADIAL = "RADIAL"
|
|
484
|
+
}
|
|
485
|
+
/** @enumType */
|
|
486
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
487
|
+
/** A single color stop in the gradient. */
|
|
488
|
+
interface Stop {
|
|
489
|
+
/**
|
|
490
|
+
* Stop color as hex value.
|
|
491
|
+
* @format COLOR_HEX
|
|
492
|
+
*/
|
|
493
|
+
color?: string | null;
|
|
494
|
+
/** Stop position (0-1). */
|
|
495
|
+
position?: number | null;
|
|
496
|
+
}
|
|
443
497
|
interface Border {
|
|
444
498
|
/**
|
|
445
499
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
@@ -469,6 +523,18 @@ interface Colors {
|
|
|
469
523
|
*/
|
|
470
524
|
background?: string | null;
|
|
471
525
|
}
|
|
526
|
+
/** Background styling (color or gradient) */
|
|
527
|
+
interface Background {
|
|
528
|
+
/** Background type. */
|
|
529
|
+
type?: BackgroundTypeWithLiterals;
|
|
530
|
+
/**
|
|
531
|
+
* Background color as a hexadecimal value.
|
|
532
|
+
* @format COLOR_HEX
|
|
533
|
+
*/
|
|
534
|
+
color?: string | null;
|
|
535
|
+
/** Gradient configuration. */
|
|
536
|
+
gradient?: Gradient;
|
|
537
|
+
}
|
|
472
538
|
interface PluginContainerData {
|
|
473
539
|
/** The width of the node when it's displayed. */
|
|
474
540
|
width?: PluginContainerDataWidth;
|
|
@@ -589,17 +655,23 @@ interface Styles {
|
|
|
589
655
|
*/
|
|
590
656
|
textColorHover?: string | null;
|
|
591
657
|
/**
|
|
592
|
-
*
|
|
658
|
+
* Deprecated: Use `background` instead.
|
|
593
659
|
* @format COLOR_HEX
|
|
660
|
+
* @deprecated
|
|
594
661
|
*/
|
|
595
662
|
backgroundColor?: string | null;
|
|
596
663
|
/**
|
|
597
|
-
*
|
|
664
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
598
665
|
* @format COLOR_HEX
|
|
666
|
+
* @deprecated
|
|
599
667
|
*/
|
|
600
668
|
backgroundColorHover?: string | null;
|
|
601
669
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
602
670
|
buttonSize?: string | null;
|
|
671
|
+
/** Background styling (color or gradient). */
|
|
672
|
+
background?: Background;
|
|
673
|
+
/** Background styling for hover state (color or gradient). */
|
|
674
|
+
backgroundHover?: Background;
|
|
603
675
|
}
|
|
604
676
|
interface Link extends LinkDataOneOf {
|
|
605
677
|
/** The absolute URL for the linked document. */
|
|
@@ -1236,7 +1308,7 @@ interface OptionLayout {
|
|
|
1236
1308
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
1237
1309
|
enableImage?: boolean | null;
|
|
1238
1310
|
}
|
|
1239
|
-
declare enum
|
|
1311
|
+
declare enum PollDesignBackgroundType {
|
|
1240
1312
|
/** Color background type */
|
|
1241
1313
|
COLOR = "COLOR",
|
|
1242
1314
|
/** Image background type */
|
|
@@ -1245,8 +1317,8 @@ declare enum BackgroundType {
|
|
|
1245
1317
|
GRADIENT = "GRADIENT"
|
|
1246
1318
|
}
|
|
1247
1319
|
/** @enumType */
|
|
1248
|
-
type
|
|
1249
|
-
interface
|
|
1320
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
1321
|
+
interface BackgroundGradient {
|
|
1250
1322
|
/** The gradient angle in degrees. */
|
|
1251
1323
|
angle?: number | null;
|
|
1252
1324
|
/**
|
|
@@ -1260,7 +1332,7 @@ interface Gradient {
|
|
|
1260
1332
|
*/
|
|
1261
1333
|
lastColor?: string | null;
|
|
1262
1334
|
}
|
|
1263
|
-
interface
|
|
1335
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1264
1336
|
/**
|
|
1265
1337
|
* The background color as a hexademical value.
|
|
1266
1338
|
* @format COLOR_HEX
|
|
@@ -1269,12 +1341,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
1269
1341
|
/** An image to use for the background. */
|
|
1270
1342
|
image?: V1Media;
|
|
1271
1343
|
/** Details for a gradient background. */
|
|
1272
|
-
gradient?:
|
|
1344
|
+
gradient?: BackgroundGradient;
|
|
1273
1345
|
/** Background type. For each option, include the relevant details. */
|
|
1274
|
-
type?:
|
|
1346
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
1275
1347
|
}
|
|
1276
1348
|
/** @oneof */
|
|
1277
|
-
interface
|
|
1349
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
1278
1350
|
/**
|
|
1279
1351
|
* The background color as a hexademical value.
|
|
1280
1352
|
* @format COLOR_HEX
|
|
@@ -1283,11 +1355,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
1283
1355
|
/** An image to use for the background. */
|
|
1284
1356
|
image?: V1Media;
|
|
1285
1357
|
/** Details for a gradient background. */
|
|
1286
|
-
gradient?:
|
|
1358
|
+
gradient?: BackgroundGradient;
|
|
1287
1359
|
}
|
|
1288
1360
|
interface PollDesign {
|
|
1289
1361
|
/** Background styling. */
|
|
1290
|
-
background?:
|
|
1362
|
+
background?: PollDesignBackground;
|
|
1291
1363
|
/** Border radius in pixels. */
|
|
1292
1364
|
borderRadius?: number | null;
|
|
1293
1365
|
}
|
|
@@ -1970,12 +2042,13 @@ interface CaptionData {
|
|
|
1970
2042
|
}
|
|
1971
2043
|
interface LayoutData {
|
|
1972
2044
|
/**
|
|
1973
|
-
*
|
|
2045
|
+
* Deprecated: Use `background` instead.
|
|
1974
2046
|
* @format COLOR_HEX
|
|
2047
|
+
* @deprecated
|
|
1975
2048
|
*/
|
|
1976
2049
|
backgroundColor?: string | null;
|
|
1977
2050
|
/** Background image. */
|
|
1978
|
-
backgroundImage?:
|
|
2051
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
1979
2052
|
/**
|
|
1980
2053
|
* Border color as a hexadecimal value.
|
|
1981
2054
|
* @format COLOR_HEX
|
|
@@ -1983,15 +2056,16 @@ interface LayoutData {
|
|
|
1983
2056
|
borderColor?: string | null;
|
|
1984
2057
|
/** Border width in pixels. */
|
|
1985
2058
|
borderWidth?: number | null;
|
|
1986
|
-
/** Border */
|
|
2059
|
+
/** Border radius in pixels. */
|
|
1987
2060
|
borderRadius?: number | null;
|
|
1988
2061
|
/**
|
|
1989
|
-
*
|
|
2062
|
+
* Deprecated: Use `backdrop` instead.
|
|
1990
2063
|
* @format COLOR_HEX
|
|
2064
|
+
* @deprecated
|
|
1991
2065
|
*/
|
|
1992
2066
|
backdropColor?: string | null;
|
|
1993
|
-
/** Backdrop image.
|
|
1994
|
-
backdropImage?:
|
|
2067
|
+
/** Backdrop image. */
|
|
2068
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
1995
2069
|
/** Backdrop top padding. */
|
|
1996
2070
|
backdropPaddingTop?: number | null;
|
|
1997
2071
|
/** Backdrop bottom padding */
|
|
@@ -2015,8 +2089,12 @@ interface LayoutData {
|
|
|
2015
2089
|
designTarget?: DesignTargetWithLiterals;
|
|
2016
2090
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
2017
2091
|
banner?: Banner;
|
|
2092
|
+
/** Background styling (color or gradient). */
|
|
2093
|
+
background?: LayoutDataBackground;
|
|
2094
|
+
/** Backdrop styling (color or gradient). */
|
|
2095
|
+
backdrop?: Backdrop;
|
|
2018
2096
|
}
|
|
2019
|
-
declare enum
|
|
2097
|
+
declare enum ImageScalingScaling {
|
|
2020
2098
|
/** Auto image scaling */
|
|
2021
2099
|
AUTO = "AUTO",
|
|
2022
2100
|
/** Contain image scaling */
|
|
@@ -2025,7 +2103,7 @@ declare enum Scaling {
|
|
|
2025
2103
|
COVER = "COVER"
|
|
2026
2104
|
}
|
|
2027
2105
|
/** @enumType */
|
|
2028
|
-
type
|
|
2106
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2029
2107
|
declare enum ImagePosition {
|
|
2030
2108
|
/** Image positioned at the center */
|
|
2031
2109
|
CENTER = "CENTER",
|
|
@@ -2056,13 +2134,31 @@ declare enum BannerOrigin {
|
|
|
2056
2134
|
}
|
|
2057
2135
|
/** @enumType */
|
|
2058
2136
|
type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
|
|
2059
|
-
|
|
2137
|
+
/** Background type */
|
|
2138
|
+
declare enum LayoutDataBackgroundType {
|
|
2139
|
+
/** Solid color background */
|
|
2140
|
+
COLOR = "COLOR",
|
|
2141
|
+
/** Gradient background */
|
|
2142
|
+
GRADIENT = "GRADIENT"
|
|
2143
|
+
}
|
|
2144
|
+
/** @enumType */
|
|
2145
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2146
|
+
/** Backdrop type */
|
|
2147
|
+
declare enum BackdropType {
|
|
2148
|
+
/** Solid color backdrop */
|
|
2149
|
+
COLOR = "COLOR",
|
|
2150
|
+
/** Gradient backdrop */
|
|
2151
|
+
GRADIENT = "GRADIENT"
|
|
2152
|
+
}
|
|
2153
|
+
/** @enumType */
|
|
2154
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
2155
|
+
interface LayoutDataBackgroundImage {
|
|
2060
2156
|
/** Background image. */
|
|
2061
2157
|
media?: V1Media;
|
|
2062
2158
|
/** Background image opacity. */
|
|
2063
2159
|
opacity?: number | null;
|
|
2064
2160
|
/** Background image scaling. */
|
|
2065
|
-
scaling?:
|
|
2161
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
2066
2162
|
/** Position of background. Defaults to `CENTER`. */
|
|
2067
2163
|
position?: ImagePositionWithLiterals;
|
|
2068
2164
|
}
|
|
@@ -2096,6 +2192,30 @@ interface Banner {
|
|
|
2096
2192
|
/** Origin of the banner */
|
|
2097
2193
|
origin?: BannerOriginWithLiterals;
|
|
2098
2194
|
}
|
|
2195
|
+
/** Background styling (color or gradient) */
|
|
2196
|
+
interface LayoutDataBackground {
|
|
2197
|
+
/** Background type. */
|
|
2198
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2199
|
+
/**
|
|
2200
|
+
* Background color as a hexadecimal value.
|
|
2201
|
+
* @format COLOR_HEX
|
|
2202
|
+
*/
|
|
2203
|
+
color?: string | null;
|
|
2204
|
+
/** Gradient configuration. */
|
|
2205
|
+
gradient?: Gradient;
|
|
2206
|
+
}
|
|
2207
|
+
/** Backdrop styling (color or gradient) */
|
|
2208
|
+
interface Backdrop {
|
|
2209
|
+
/** Backdrop type. */
|
|
2210
|
+
type?: BackdropTypeWithLiterals;
|
|
2211
|
+
/**
|
|
2212
|
+
* Backdrop color as a hexadecimal value.
|
|
2213
|
+
* @format COLOR_HEX
|
|
2214
|
+
*/
|
|
2215
|
+
color?: string | null;
|
|
2216
|
+
/** Gradient configuration. */
|
|
2217
|
+
gradient?: Gradient;
|
|
2218
|
+
}
|
|
2099
2219
|
interface LayoutCellData {
|
|
2100
2220
|
/** Size of the cell in 12 columns grid. */
|
|
2101
2221
|
colSpan?: number | null;
|
|
@@ -2117,6 +2237,75 @@ interface ShapeDataStyles {
|
|
|
2117
2237
|
/** Map of original color keys to their new color values. */
|
|
2118
2238
|
colors?: Record<string, string>;
|
|
2119
2239
|
}
|
|
2240
|
+
interface CardData {
|
|
2241
|
+
/** Background styling (color or gradient). */
|
|
2242
|
+
background?: CardDataBackground;
|
|
2243
|
+
/** Background image. */
|
|
2244
|
+
backgroundImage?: BackgroundImage;
|
|
2245
|
+
}
|
|
2246
|
+
declare enum Scaling {
|
|
2247
|
+
/** Auto image scaling */
|
|
2248
|
+
AUTO = "AUTO",
|
|
2249
|
+
/** Contain image scaling */
|
|
2250
|
+
CONTAIN = "CONTAIN",
|
|
2251
|
+
/** Cover image scaling */
|
|
2252
|
+
COVER = "COVER"
|
|
2253
|
+
}
|
|
2254
|
+
/** @enumType */
|
|
2255
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2256
|
+
declare enum ImagePositionPosition {
|
|
2257
|
+
/** Image positioned at the center */
|
|
2258
|
+
CENTER = "CENTER",
|
|
2259
|
+
/** Image positioned on the left */
|
|
2260
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2261
|
+
/** Image positioned on the right */
|
|
2262
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2263
|
+
/** Image positioned at the center top */
|
|
2264
|
+
TOP = "TOP",
|
|
2265
|
+
/** Image positioned at the top left */
|
|
2266
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2267
|
+
/** Image positioned at the top right */
|
|
2268
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2269
|
+
/** Image positioned at the center bottom */
|
|
2270
|
+
BOTTOM = "BOTTOM",
|
|
2271
|
+
/** Image positioned at the bottom left */
|
|
2272
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2273
|
+
/** Image positioned at the bottom right */
|
|
2274
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2275
|
+
}
|
|
2276
|
+
/** @enumType */
|
|
2277
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2278
|
+
/** Background type */
|
|
2279
|
+
declare enum CardDataBackgroundType {
|
|
2280
|
+
/** Solid color background */
|
|
2281
|
+
COLOR = "COLOR",
|
|
2282
|
+
/** Gradient background */
|
|
2283
|
+
GRADIENT = "GRADIENT"
|
|
2284
|
+
}
|
|
2285
|
+
/** @enumType */
|
|
2286
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2287
|
+
/** Background styling (color or gradient) */
|
|
2288
|
+
interface CardDataBackground {
|
|
2289
|
+
/** Background type. */
|
|
2290
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
2291
|
+
/**
|
|
2292
|
+
* Background color as a hexadecimal value.
|
|
2293
|
+
* @format COLOR_HEX
|
|
2294
|
+
*/
|
|
2295
|
+
color?: string | null;
|
|
2296
|
+
/** Gradient configuration. */
|
|
2297
|
+
gradient?: Gradient;
|
|
2298
|
+
}
|
|
2299
|
+
interface BackgroundImage {
|
|
2300
|
+
/** Background image. */
|
|
2301
|
+
media?: V1Media;
|
|
2302
|
+
/** Background image opacity. */
|
|
2303
|
+
opacity?: number | null;
|
|
2304
|
+
/** Background image scaling. */
|
|
2305
|
+
scaling?: ScalingWithLiterals;
|
|
2306
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2307
|
+
position?: ImagePositionPositionWithLiterals;
|
|
2308
|
+
}
|
|
2120
2309
|
interface Metadata {
|
|
2121
2310
|
/** Schema version. */
|
|
2122
2311
|
version?: number;
|
|
@@ -3145,6 +3334,35 @@ interface UnpublishPostRequest {
|
|
|
3145
3334
|
}
|
|
3146
3335
|
interface UnpublishPostResponse {
|
|
3147
3336
|
}
|
|
3337
|
+
interface GetDraftPostCountsRequest {
|
|
3338
|
+
/**
|
|
3339
|
+
* Tag IDs to count draft posts for.
|
|
3340
|
+
* @maxSize 50
|
|
3341
|
+
* @format GUID
|
|
3342
|
+
*/
|
|
3343
|
+
tagIds?: string[];
|
|
3344
|
+
/**
|
|
3345
|
+
* Category IDs to count draft posts for.
|
|
3346
|
+
* @maxSize 50
|
|
3347
|
+
* @format GUID
|
|
3348
|
+
*/
|
|
3349
|
+
categoryIds?: string[];
|
|
3350
|
+
}
|
|
3351
|
+
interface GetDraftPostCountsResponse {
|
|
3352
|
+
/** Draft post counts per tag. */
|
|
3353
|
+
tagPostCounts?: DraftPostCount[];
|
|
3354
|
+
/** Draft post counts per category. */
|
|
3355
|
+
categoryPostCounts?: DraftPostCount[];
|
|
3356
|
+
}
|
|
3357
|
+
interface DraftPostCount {
|
|
3358
|
+
/**
|
|
3359
|
+
* Tag or Category ID.
|
|
3360
|
+
* @format GUID
|
|
3361
|
+
*/
|
|
3362
|
+
id?: string;
|
|
3363
|
+
/** Number of posts. */
|
|
3364
|
+
postCount?: number;
|
|
3365
|
+
}
|
|
3148
3366
|
interface TranslateDraftRequest {
|
|
3149
3367
|
/**
|
|
3150
3368
|
* Source post or draft ID
|
|
@@ -3369,4 +3587,4 @@ declare function publishDraftPost(): __PublicMethodMetaInfo<'POST', {
|
|
|
3369
3587
|
draftPostId: string;
|
|
3370
3588
|
}, PublishDraftPostRequest$1, PublishDraftPostRequest, PublishDraftPostResponse$1, PublishDraftPostResponse>;
|
|
3371
3589
|
|
|
3372
|
-
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 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 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 };
|
|
3590
|
+
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, 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, 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, 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 };
|