@wix/auto_sdk_blog_posts 1.0.139 → 1.0.141
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 +11 -15
- package/build/cjs/index.js +459 -35
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +288 -56
- package/build/cjs/index.typings.js +301 -22
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +270 -26
- package/build/cjs/meta.js +295 -16
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +11 -15
- package/build/es/index.mjs +450 -35
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +288 -56
- package/build/es/index.typings.mjs +292 -22
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +270 -26
- package/build/es/meta.mjs +286 -16
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +11 -15
- package/build/internal/cjs/index.js +459 -35
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +288 -56
- package/build/internal/cjs/index.typings.js +301 -22
- 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 +295 -16
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +11 -15
- package/build/internal/es/index.mjs +450 -35
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +288 -56
- package/build/internal/es/index.typings.mjs +292 -22
- 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 +286 -16
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -345,6 +345,10 @@ interface Node extends NodeDataOneOf {
|
|
|
345
345
|
layoutCellData?: LayoutCellData;
|
|
346
346
|
/** Data for a shape node. */
|
|
347
347
|
shapeData?: ShapeData;
|
|
348
|
+
/** Data for a card node. */
|
|
349
|
+
cardData?: CardData;
|
|
350
|
+
/** Data for a table of contents node. */
|
|
351
|
+
tocData?: TocData;
|
|
348
352
|
/** 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. */
|
|
349
353
|
type?: NodeTypeWithLiterals;
|
|
350
354
|
/** Node ID. */
|
|
@@ -414,6 +418,10 @@ interface NodeDataOneOf {
|
|
|
414
418
|
layoutCellData?: LayoutCellData;
|
|
415
419
|
/** Data for a shape node. */
|
|
416
420
|
shapeData?: ShapeData;
|
|
421
|
+
/** Data for a card node. */
|
|
422
|
+
cardData?: CardData;
|
|
423
|
+
/** Data for a table of contents node. */
|
|
424
|
+
tocData?: TocData;
|
|
417
425
|
}
|
|
418
426
|
declare enum NodeType {
|
|
419
427
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -450,10 +458,12 @@ declare enum NodeType {
|
|
|
450
458
|
CAPTION = "CAPTION",
|
|
451
459
|
LAYOUT = "LAYOUT",
|
|
452
460
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
453
|
-
SHAPE = "SHAPE"
|
|
461
|
+
SHAPE = "SHAPE",
|
|
462
|
+
CARD = "CARD",
|
|
463
|
+
TOC = "TOC"
|
|
454
464
|
}
|
|
455
465
|
/** @enumType */
|
|
456
|
-
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';
|
|
466
|
+
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';
|
|
457
467
|
interface NodeStyle {
|
|
458
468
|
/** The top padding value in pixels. */
|
|
459
469
|
paddingTop?: string | null;
|
|
@@ -474,6 +484,55 @@ interface ButtonData {
|
|
|
474
484
|
/** Button link details. */
|
|
475
485
|
link?: Link;
|
|
476
486
|
}
|
|
487
|
+
/** Background type */
|
|
488
|
+
declare enum BackgroundType {
|
|
489
|
+
/** Solid color background */
|
|
490
|
+
COLOR = "COLOR",
|
|
491
|
+
/** Gradient background */
|
|
492
|
+
GRADIENT = "GRADIENT"
|
|
493
|
+
}
|
|
494
|
+
/** @enumType */
|
|
495
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
496
|
+
interface Gradient {
|
|
497
|
+
/** Gradient type. */
|
|
498
|
+
type?: GradientTypeWithLiterals;
|
|
499
|
+
/**
|
|
500
|
+
* Color stops for the gradient.
|
|
501
|
+
* @maxSize 1000
|
|
502
|
+
*/
|
|
503
|
+
stops?: Stop[];
|
|
504
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
505
|
+
angle?: number | null;
|
|
506
|
+
/**
|
|
507
|
+
* Horizontal center position for radial gradient (0-100).
|
|
508
|
+
* @max 100
|
|
509
|
+
*/
|
|
510
|
+
centerX?: number | null;
|
|
511
|
+
/**
|
|
512
|
+
* Vertical center position for radial gradient (0-100).
|
|
513
|
+
* @max 100
|
|
514
|
+
*/
|
|
515
|
+
centerY?: number | null;
|
|
516
|
+
}
|
|
517
|
+
/** Gradient type. */
|
|
518
|
+
declare enum GradientType {
|
|
519
|
+
/** Linear gradient. */
|
|
520
|
+
LINEAR = "LINEAR",
|
|
521
|
+
/** Radial gradient. */
|
|
522
|
+
RADIAL = "RADIAL"
|
|
523
|
+
}
|
|
524
|
+
/** @enumType */
|
|
525
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
526
|
+
/** A single color stop in the gradient. */
|
|
527
|
+
interface Stop {
|
|
528
|
+
/**
|
|
529
|
+
* Stop color as hex value.
|
|
530
|
+
* @format COLOR_HEX
|
|
531
|
+
*/
|
|
532
|
+
color?: string | null;
|
|
533
|
+
/** Stop position (0-1). */
|
|
534
|
+
position?: number | null;
|
|
535
|
+
}
|
|
477
536
|
interface Border {
|
|
478
537
|
/**
|
|
479
538
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
@@ -503,6 +562,18 @@ interface Colors {
|
|
|
503
562
|
*/
|
|
504
563
|
background?: string | null;
|
|
505
564
|
}
|
|
565
|
+
/** Background styling (color or gradient) */
|
|
566
|
+
interface Background {
|
|
567
|
+
/** Background type. */
|
|
568
|
+
type?: BackgroundTypeWithLiterals;
|
|
569
|
+
/**
|
|
570
|
+
* Background color as a hexadecimal value.
|
|
571
|
+
* @format COLOR_HEX
|
|
572
|
+
*/
|
|
573
|
+
color?: string | null;
|
|
574
|
+
/** Gradient configuration. */
|
|
575
|
+
gradient?: Gradient;
|
|
576
|
+
}
|
|
506
577
|
interface PluginContainerData {
|
|
507
578
|
/** The width of the node when it's displayed. */
|
|
508
579
|
width?: PluginContainerDataWidth;
|
|
@@ -623,17 +694,23 @@ interface Styles {
|
|
|
623
694
|
*/
|
|
624
695
|
textColorHover?: string | null;
|
|
625
696
|
/**
|
|
626
|
-
*
|
|
697
|
+
* Deprecated: Use `background` instead.
|
|
627
698
|
* @format COLOR_HEX
|
|
699
|
+
* @deprecated
|
|
628
700
|
*/
|
|
629
701
|
backgroundColor?: string | null;
|
|
630
702
|
/**
|
|
631
|
-
*
|
|
703
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
632
704
|
* @format COLOR_HEX
|
|
705
|
+
* @deprecated
|
|
633
706
|
*/
|
|
634
707
|
backgroundColorHover?: string | null;
|
|
635
708
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
636
709
|
buttonSize?: string | null;
|
|
710
|
+
/** Background styling (color or gradient). */
|
|
711
|
+
background?: Background;
|
|
712
|
+
/** Background styling for hover state (color or gradient). */
|
|
713
|
+
backgroundHover?: Background;
|
|
637
714
|
}
|
|
638
715
|
interface Link extends LinkDataOneOf {
|
|
639
716
|
/** The absolute URL for the linked document. */
|
|
@@ -1015,6 +1092,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
1015
1092
|
* @deprecated
|
|
1016
1093
|
*/
|
|
1017
1094
|
isAdsense?: boolean | null;
|
|
1095
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1096
|
+
widgetId?: string;
|
|
1018
1097
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
1019
1098
|
containerData?: PluginContainerData;
|
|
1020
1099
|
/** The type of HTML code. */
|
|
@@ -1033,14 +1112,17 @@ interface HTMLDataDataOneOf {
|
|
|
1033
1112
|
* @deprecated
|
|
1034
1113
|
*/
|
|
1035
1114
|
isAdsense?: boolean | null;
|
|
1115
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1116
|
+
widgetId?: string;
|
|
1036
1117
|
}
|
|
1037
1118
|
declare enum Source {
|
|
1038
1119
|
HTML = "HTML",
|
|
1039
1120
|
ADSENSE = "ADSENSE",
|
|
1040
|
-
AI = "AI"
|
|
1121
|
+
AI = "AI",
|
|
1122
|
+
AI_WIDGET = "AI_WIDGET"
|
|
1041
1123
|
}
|
|
1042
1124
|
/** @enumType */
|
|
1043
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
1125
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
1044
1126
|
interface ImageData {
|
|
1045
1127
|
/** Styling for the image's container. */
|
|
1046
1128
|
containerData?: PluginContainerData;
|
|
@@ -1270,7 +1352,7 @@ interface OptionLayout {
|
|
|
1270
1352
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
1271
1353
|
enableImage?: boolean | null;
|
|
1272
1354
|
}
|
|
1273
|
-
declare enum
|
|
1355
|
+
declare enum PollDesignBackgroundType {
|
|
1274
1356
|
/** Color background type */
|
|
1275
1357
|
COLOR = "COLOR",
|
|
1276
1358
|
/** Image background type */
|
|
@@ -1279,8 +1361,8 @@ declare enum BackgroundType {
|
|
|
1279
1361
|
GRADIENT = "GRADIENT"
|
|
1280
1362
|
}
|
|
1281
1363
|
/** @enumType */
|
|
1282
|
-
type
|
|
1283
|
-
interface
|
|
1364
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
1365
|
+
interface BackgroundGradient {
|
|
1284
1366
|
/** The gradient angle in degrees. */
|
|
1285
1367
|
angle?: number | null;
|
|
1286
1368
|
/**
|
|
@@ -1294,7 +1376,7 @@ interface Gradient {
|
|
|
1294
1376
|
*/
|
|
1295
1377
|
lastColor?: string | null;
|
|
1296
1378
|
}
|
|
1297
|
-
interface
|
|
1379
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1298
1380
|
/**
|
|
1299
1381
|
* The background color as a hexademical value.
|
|
1300
1382
|
* @format COLOR_HEX
|
|
@@ -1303,12 +1385,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
1303
1385
|
/** An image to use for the background. */
|
|
1304
1386
|
image?: V1Media;
|
|
1305
1387
|
/** Details for a gradient background. */
|
|
1306
|
-
gradient?:
|
|
1388
|
+
gradient?: BackgroundGradient;
|
|
1307
1389
|
/** Background type. For each option, include the relevant details. */
|
|
1308
|
-
type?:
|
|
1390
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
1309
1391
|
}
|
|
1310
1392
|
/** @oneof */
|
|
1311
|
-
interface
|
|
1393
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
1312
1394
|
/**
|
|
1313
1395
|
* The background color as a hexademical value.
|
|
1314
1396
|
* @format COLOR_HEX
|
|
@@ -1317,11 +1399,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
1317
1399
|
/** An image to use for the background. */
|
|
1318
1400
|
image?: V1Media;
|
|
1319
1401
|
/** Details for a gradient background. */
|
|
1320
|
-
gradient?:
|
|
1402
|
+
gradient?: BackgroundGradient;
|
|
1321
1403
|
}
|
|
1322
1404
|
interface PollDesign {
|
|
1323
1405
|
/** Background styling. */
|
|
1324
|
-
background?:
|
|
1406
|
+
background?: PollDesignBackground;
|
|
1325
1407
|
/** Border radius in pixels. */
|
|
1326
1408
|
borderRadius?: number | null;
|
|
1327
1409
|
}
|
|
@@ -2004,12 +2086,13 @@ interface CaptionData {
|
|
|
2004
2086
|
}
|
|
2005
2087
|
interface LayoutData {
|
|
2006
2088
|
/**
|
|
2007
|
-
*
|
|
2089
|
+
* Deprecated: Use `background` instead.
|
|
2008
2090
|
* @format COLOR_HEX
|
|
2091
|
+
* @deprecated
|
|
2009
2092
|
*/
|
|
2010
2093
|
backgroundColor?: string | null;
|
|
2011
2094
|
/** Background image. */
|
|
2012
|
-
backgroundImage?:
|
|
2095
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
2013
2096
|
/**
|
|
2014
2097
|
* Border color as a hexadecimal value.
|
|
2015
2098
|
* @format COLOR_HEX
|
|
@@ -2017,15 +2100,16 @@ interface LayoutData {
|
|
|
2017
2100
|
borderColor?: string | null;
|
|
2018
2101
|
/** Border width in pixels. */
|
|
2019
2102
|
borderWidth?: number | null;
|
|
2020
|
-
/** Border */
|
|
2103
|
+
/** Border radius in pixels. */
|
|
2021
2104
|
borderRadius?: number | null;
|
|
2022
2105
|
/**
|
|
2023
|
-
*
|
|
2106
|
+
* Deprecated: Use `backdrop` instead.
|
|
2024
2107
|
* @format COLOR_HEX
|
|
2108
|
+
* @deprecated
|
|
2025
2109
|
*/
|
|
2026
2110
|
backdropColor?: string | null;
|
|
2027
|
-
/** Backdrop image.
|
|
2028
|
-
backdropImage?:
|
|
2111
|
+
/** Backdrop image. */
|
|
2112
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
2029
2113
|
/** Backdrop top padding. */
|
|
2030
2114
|
backdropPaddingTop?: number | null;
|
|
2031
2115
|
/** Backdrop bottom padding */
|
|
@@ -2049,8 +2133,12 @@ interface LayoutData {
|
|
|
2049
2133
|
designTarget?: DesignTargetWithLiterals;
|
|
2050
2134
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
2051
2135
|
banner?: Banner;
|
|
2136
|
+
/** Background styling (color or gradient). */
|
|
2137
|
+
background?: LayoutDataBackground;
|
|
2138
|
+
/** Backdrop styling (color or gradient). */
|
|
2139
|
+
backdrop?: Backdrop;
|
|
2052
2140
|
}
|
|
2053
|
-
declare enum
|
|
2141
|
+
declare enum ImageScalingScaling {
|
|
2054
2142
|
/** Auto image scaling */
|
|
2055
2143
|
AUTO = "AUTO",
|
|
2056
2144
|
/** Contain image scaling */
|
|
@@ -2059,7 +2147,7 @@ declare enum Scaling {
|
|
|
2059
2147
|
COVER = "COVER"
|
|
2060
2148
|
}
|
|
2061
2149
|
/** @enumType */
|
|
2062
|
-
type
|
|
2150
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2063
2151
|
declare enum ImagePosition {
|
|
2064
2152
|
/** Image positioned at the center */
|
|
2065
2153
|
CENTER = "CENTER",
|
|
@@ -2090,13 +2178,31 @@ declare enum BannerOrigin {
|
|
|
2090
2178
|
}
|
|
2091
2179
|
/** @enumType */
|
|
2092
2180
|
type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
|
|
2093
|
-
|
|
2181
|
+
/** Background type */
|
|
2182
|
+
declare enum LayoutDataBackgroundType {
|
|
2183
|
+
/** Solid color background */
|
|
2184
|
+
COLOR = "COLOR",
|
|
2185
|
+
/** Gradient background */
|
|
2186
|
+
GRADIENT = "GRADIENT"
|
|
2187
|
+
}
|
|
2188
|
+
/** @enumType */
|
|
2189
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2190
|
+
/** Backdrop type */
|
|
2191
|
+
declare enum BackdropType {
|
|
2192
|
+
/** Solid color backdrop */
|
|
2193
|
+
COLOR = "COLOR",
|
|
2194
|
+
/** Gradient backdrop */
|
|
2195
|
+
GRADIENT = "GRADIENT"
|
|
2196
|
+
}
|
|
2197
|
+
/** @enumType */
|
|
2198
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
2199
|
+
interface LayoutDataBackgroundImage {
|
|
2094
2200
|
/** Background image. */
|
|
2095
2201
|
media?: V1Media;
|
|
2096
2202
|
/** Background image opacity. */
|
|
2097
2203
|
opacity?: number | null;
|
|
2098
2204
|
/** Background image scaling. */
|
|
2099
|
-
scaling?:
|
|
2205
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
2100
2206
|
/** Position of background. Defaults to `CENTER`. */
|
|
2101
2207
|
position?: ImagePositionWithLiterals;
|
|
2102
2208
|
}
|
|
@@ -2130,6 +2236,30 @@ interface Banner {
|
|
|
2130
2236
|
/** Origin of the banner */
|
|
2131
2237
|
origin?: BannerOriginWithLiterals;
|
|
2132
2238
|
}
|
|
2239
|
+
/** Background styling (color or gradient) */
|
|
2240
|
+
interface LayoutDataBackground {
|
|
2241
|
+
/** Background type. */
|
|
2242
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2243
|
+
/**
|
|
2244
|
+
* Background color as a hexadecimal value.
|
|
2245
|
+
* @format COLOR_HEX
|
|
2246
|
+
*/
|
|
2247
|
+
color?: string | null;
|
|
2248
|
+
/** Gradient configuration. */
|
|
2249
|
+
gradient?: Gradient;
|
|
2250
|
+
}
|
|
2251
|
+
/** Backdrop styling (color or gradient) */
|
|
2252
|
+
interface Backdrop {
|
|
2253
|
+
/** Backdrop type. */
|
|
2254
|
+
type?: BackdropTypeWithLiterals;
|
|
2255
|
+
/**
|
|
2256
|
+
* Backdrop color as a hexadecimal value.
|
|
2257
|
+
* @format COLOR_HEX
|
|
2258
|
+
*/
|
|
2259
|
+
color?: string | null;
|
|
2260
|
+
/** Gradient configuration. */
|
|
2261
|
+
gradient?: Gradient;
|
|
2262
|
+
}
|
|
2133
2263
|
interface LayoutCellData {
|
|
2134
2264
|
/** Size of the cell in 12 columns grid. */
|
|
2135
2265
|
colSpan?: number | null;
|
|
@@ -2151,6 +2281,120 @@ interface ShapeDataStyles {
|
|
|
2151
2281
|
/** Map of original color keys to their new color values. */
|
|
2152
2282
|
colors?: Record<string, string>;
|
|
2153
2283
|
}
|
|
2284
|
+
interface CardData {
|
|
2285
|
+
/** Background styling (color or gradient). */
|
|
2286
|
+
background?: CardDataBackground;
|
|
2287
|
+
/** Background image. */
|
|
2288
|
+
backgroundImage?: BackgroundImage;
|
|
2289
|
+
}
|
|
2290
|
+
declare enum Scaling {
|
|
2291
|
+
/** Auto image scaling */
|
|
2292
|
+
AUTO = "AUTO",
|
|
2293
|
+
/** Contain image scaling */
|
|
2294
|
+
CONTAIN = "CONTAIN",
|
|
2295
|
+
/** Cover image scaling */
|
|
2296
|
+
COVER = "COVER"
|
|
2297
|
+
}
|
|
2298
|
+
/** @enumType */
|
|
2299
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2300
|
+
declare enum ImagePositionPosition {
|
|
2301
|
+
/** Image positioned at the center */
|
|
2302
|
+
CENTER = "CENTER",
|
|
2303
|
+
/** Image positioned on the left */
|
|
2304
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2305
|
+
/** Image positioned on the right */
|
|
2306
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2307
|
+
/** Image positioned at the center top */
|
|
2308
|
+
TOP = "TOP",
|
|
2309
|
+
/** Image positioned at the top left */
|
|
2310
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2311
|
+
/** Image positioned at the top right */
|
|
2312
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2313
|
+
/** Image positioned at the center bottom */
|
|
2314
|
+
BOTTOM = "BOTTOM",
|
|
2315
|
+
/** Image positioned at the bottom left */
|
|
2316
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2317
|
+
/** Image positioned at the bottom right */
|
|
2318
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2319
|
+
}
|
|
2320
|
+
/** @enumType */
|
|
2321
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2322
|
+
/** Background type */
|
|
2323
|
+
declare enum CardDataBackgroundType {
|
|
2324
|
+
/** Solid color background */
|
|
2325
|
+
COLOR = "COLOR",
|
|
2326
|
+
/** Gradient background */
|
|
2327
|
+
GRADIENT = "GRADIENT"
|
|
2328
|
+
}
|
|
2329
|
+
/** @enumType */
|
|
2330
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2331
|
+
/** Background styling (color or gradient) */
|
|
2332
|
+
interface CardDataBackground {
|
|
2333
|
+
/** Background type. */
|
|
2334
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
2335
|
+
/**
|
|
2336
|
+
* Background color as a hexadecimal value.
|
|
2337
|
+
* @format COLOR_HEX
|
|
2338
|
+
*/
|
|
2339
|
+
color?: string | null;
|
|
2340
|
+
/** Gradient configuration. */
|
|
2341
|
+
gradient?: Gradient;
|
|
2342
|
+
}
|
|
2343
|
+
interface BackgroundImage {
|
|
2344
|
+
/** Background image. */
|
|
2345
|
+
media?: V1Media;
|
|
2346
|
+
/** Background image opacity. */
|
|
2347
|
+
opacity?: number | null;
|
|
2348
|
+
/** Background image scaling. */
|
|
2349
|
+
scaling?: ScalingWithLiterals;
|
|
2350
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2351
|
+
position?: ImagePositionPositionWithLiterals;
|
|
2352
|
+
}
|
|
2353
|
+
interface TocData {
|
|
2354
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
2355
|
+
includedHeadings?: number[];
|
|
2356
|
+
/** List style. Default: PLAIN. */
|
|
2357
|
+
listStyle?: ListStyleWithLiterals;
|
|
2358
|
+
/** Optional override for the font size in pixels. */
|
|
2359
|
+
fontSize?: number | null;
|
|
2360
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
2361
|
+
itemSpacing?: number | null;
|
|
2362
|
+
/**
|
|
2363
|
+
* Optional override for the text color.
|
|
2364
|
+
* @format COLOR_HEX
|
|
2365
|
+
*/
|
|
2366
|
+
color?: string | null;
|
|
2367
|
+
/** Indentation style. Default: NESTED. */
|
|
2368
|
+
indentation?: IndentationWithLiterals;
|
|
2369
|
+
}
|
|
2370
|
+
/** List style. */
|
|
2371
|
+
declare enum ListStyle {
|
|
2372
|
+
/** No markers (default) */
|
|
2373
|
+
PLAIN = "PLAIN",
|
|
2374
|
+
/** Numbered list */
|
|
2375
|
+
NUMBERED = "NUMBERED",
|
|
2376
|
+
/** Alphabetic letters */
|
|
2377
|
+
LETTERS = "LETTERS",
|
|
2378
|
+
/** Roman numerals */
|
|
2379
|
+
ROMAN = "ROMAN",
|
|
2380
|
+
/** Bulleted list */
|
|
2381
|
+
BULLETED = "BULLETED",
|
|
2382
|
+
/** Alphabetical index */
|
|
2383
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
2384
|
+
/** Alphabetical index (compact top-row only) */
|
|
2385
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
2386
|
+
}
|
|
2387
|
+
/** @enumType */
|
|
2388
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
2389
|
+
/** Indentation style. */
|
|
2390
|
+
declare enum Indentation {
|
|
2391
|
+
/** Sub-headings indented under parents (default) */
|
|
2392
|
+
NESTED = "NESTED",
|
|
2393
|
+
/** All items at the same level */
|
|
2394
|
+
FLAT = "FLAT"
|
|
2395
|
+
}
|
|
2396
|
+
/** @enumType */
|
|
2397
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2154
2398
|
interface Metadata {
|
|
2155
2399
|
/** Schema version. */
|
|
2156
2400
|
version?: number;
|
|
@@ -3834,4 +4078,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
|
|
|
3834
4078
|
postId: string;
|
|
3835
4079
|
}, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
|
|
3836
4080
|
|
|
3837
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, 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, 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 BulkDeletePostsRequest as BulkDeletePostsRequestOriginal, type BulkDeletePostsResponse as BulkDeletePostsResponseOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CreateDraftPostFromTemplateRequest as CreateDraftPostFromTemplateRequestOriginal, type CreateDraftPostFromTemplateResponse as CreateDraftPostFromTemplateResponseOriginal, 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 DeletePostRequest as DeletePostRequestOriginal, type DeletePostResponse as DeletePostResponseOriginal, 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 DraftPost as DraftPostOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, 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 GetPostBySlugRequest as GetPostBySlugRequestOriginal, type GetPostBySlugResponse as GetPostBySlugResponseOriginal, type GetPostCountPerMonthRequest as GetPostCountPerMonthRequestOriginal, type GetPostCountPerMonthResponse as GetPostCountPerMonthResponseOriginal, type GetPostCountsRequest as GetPostCountsRequestOriginal, type GetPostCountsResponse as GetPostCountsResponseOriginal, type GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, 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, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, 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, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, 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 ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, 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 Metrics as MetricsOriginal, 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, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, 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 PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, 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 PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCount as PostCountOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, 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, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, 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, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, 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, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
|
|
4081
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, 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, 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 BulkDeletePostsRequest as BulkDeletePostsRequestOriginal, type BulkDeletePostsResponse as BulkDeletePostsResponseOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CreateDraftPostFromTemplateRequest as CreateDraftPostFromTemplateRequestOriginal, type CreateDraftPostFromTemplateResponse as CreateDraftPostFromTemplateResponseOriginal, 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 DeletePostRequest as DeletePostRequestOriginal, type DeletePostResponse as DeletePostResponseOriginal, 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 DraftPost as DraftPostOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, 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 GetPostBySlugRequest as GetPostBySlugRequestOriginal, type GetPostBySlugResponse as GetPostBySlugResponseOriginal, type GetPostCountPerMonthRequest as GetPostCountPerMonthRequestOriginal, type GetPostCountPerMonthResponse as GetPostCountPerMonthResponseOriginal, type GetPostCountsRequest as GetPostCountsRequestOriginal, type GetPostCountsResponse as GetPostCountsResponseOriginal, type GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, 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, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, 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, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, 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 ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, 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 Metrics as MetricsOriginal, 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, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, 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 PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, 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 PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCount as PostCountOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, 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, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, 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, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, 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, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
|