@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
|
@@ -316,6 +316,10 @@ interface Node extends NodeDataOneOf {
|
|
|
316
316
|
layoutCellData?: LayoutCellData;
|
|
317
317
|
/** Data for a shape node. */
|
|
318
318
|
shapeData?: ShapeData;
|
|
319
|
+
/** Data for a card node. */
|
|
320
|
+
cardData?: CardData;
|
|
321
|
+
/** Data for a table of contents node. */
|
|
322
|
+
tocData?: TocData;
|
|
319
323
|
/** 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. */
|
|
320
324
|
type?: NodeTypeWithLiterals;
|
|
321
325
|
/** Node ID. */
|
|
@@ -385,6 +389,10 @@ interface NodeDataOneOf {
|
|
|
385
389
|
layoutCellData?: LayoutCellData;
|
|
386
390
|
/** Data for a shape node. */
|
|
387
391
|
shapeData?: ShapeData;
|
|
392
|
+
/** Data for a card node. */
|
|
393
|
+
cardData?: CardData;
|
|
394
|
+
/** Data for a table of contents node. */
|
|
395
|
+
tocData?: TocData;
|
|
388
396
|
}
|
|
389
397
|
declare enum NodeType {
|
|
390
398
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -421,10 +429,12 @@ declare enum NodeType {
|
|
|
421
429
|
CAPTION = "CAPTION",
|
|
422
430
|
LAYOUT = "LAYOUT",
|
|
423
431
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
424
|
-
SHAPE = "SHAPE"
|
|
432
|
+
SHAPE = "SHAPE",
|
|
433
|
+
CARD = "CARD",
|
|
434
|
+
TOC = "TOC"
|
|
425
435
|
}
|
|
426
436
|
/** @enumType */
|
|
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';
|
|
437
|
+
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';
|
|
428
438
|
interface NodeStyle {
|
|
429
439
|
/** The top padding value in pixels. */
|
|
430
440
|
paddingTop?: string | null;
|
|
@@ -445,6 +455,55 @@ interface ButtonData {
|
|
|
445
455
|
/** Button link details. */
|
|
446
456
|
link?: Link;
|
|
447
457
|
}
|
|
458
|
+
/** Background type */
|
|
459
|
+
declare enum BackgroundType {
|
|
460
|
+
/** Solid color background */
|
|
461
|
+
COLOR = "COLOR",
|
|
462
|
+
/** Gradient background */
|
|
463
|
+
GRADIENT = "GRADIENT"
|
|
464
|
+
}
|
|
465
|
+
/** @enumType */
|
|
466
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
467
|
+
interface Gradient {
|
|
468
|
+
/** Gradient type. */
|
|
469
|
+
type?: GradientTypeWithLiterals;
|
|
470
|
+
/**
|
|
471
|
+
* Color stops for the gradient.
|
|
472
|
+
* @maxSize 1000
|
|
473
|
+
*/
|
|
474
|
+
stops?: Stop[];
|
|
475
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
476
|
+
angle?: number | null;
|
|
477
|
+
/**
|
|
478
|
+
* Horizontal center position for radial gradient (0-100).
|
|
479
|
+
* @max 100
|
|
480
|
+
*/
|
|
481
|
+
centerX?: number | null;
|
|
482
|
+
/**
|
|
483
|
+
* Vertical center position for radial gradient (0-100).
|
|
484
|
+
* @max 100
|
|
485
|
+
*/
|
|
486
|
+
centerY?: number | null;
|
|
487
|
+
}
|
|
488
|
+
/** Gradient type. */
|
|
489
|
+
declare enum GradientType {
|
|
490
|
+
/** Linear gradient. */
|
|
491
|
+
LINEAR = "LINEAR",
|
|
492
|
+
/** Radial gradient. */
|
|
493
|
+
RADIAL = "RADIAL"
|
|
494
|
+
}
|
|
495
|
+
/** @enumType */
|
|
496
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
497
|
+
/** A single color stop in the gradient. */
|
|
498
|
+
interface Stop {
|
|
499
|
+
/**
|
|
500
|
+
* Stop color as hex value.
|
|
501
|
+
* @format COLOR_HEX
|
|
502
|
+
*/
|
|
503
|
+
color?: string | null;
|
|
504
|
+
/** Stop position (0-1). */
|
|
505
|
+
position?: number | null;
|
|
506
|
+
}
|
|
448
507
|
interface Border {
|
|
449
508
|
/**
|
|
450
509
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
@@ -474,6 +533,18 @@ interface Colors {
|
|
|
474
533
|
*/
|
|
475
534
|
background?: string | null;
|
|
476
535
|
}
|
|
536
|
+
/** Background styling (color or gradient) */
|
|
537
|
+
interface Background {
|
|
538
|
+
/** Background type. */
|
|
539
|
+
type?: BackgroundTypeWithLiterals;
|
|
540
|
+
/**
|
|
541
|
+
* Background color as a hexadecimal value.
|
|
542
|
+
* @format COLOR_HEX
|
|
543
|
+
*/
|
|
544
|
+
color?: string | null;
|
|
545
|
+
/** Gradient configuration. */
|
|
546
|
+
gradient?: Gradient;
|
|
547
|
+
}
|
|
477
548
|
interface PluginContainerData {
|
|
478
549
|
/** The width of the node when it's displayed. */
|
|
479
550
|
width?: PluginContainerDataWidth;
|
|
@@ -594,17 +665,23 @@ interface Styles {
|
|
|
594
665
|
*/
|
|
595
666
|
textColorHover?: string | null;
|
|
596
667
|
/**
|
|
597
|
-
*
|
|
668
|
+
* Deprecated: Use `background` instead.
|
|
598
669
|
* @format COLOR_HEX
|
|
670
|
+
* @deprecated
|
|
599
671
|
*/
|
|
600
672
|
backgroundColor?: string | null;
|
|
601
673
|
/**
|
|
602
|
-
*
|
|
674
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
603
675
|
* @format COLOR_HEX
|
|
676
|
+
* @deprecated
|
|
604
677
|
*/
|
|
605
678
|
backgroundColorHover?: string | null;
|
|
606
679
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
607
680
|
buttonSize?: string | null;
|
|
681
|
+
/** Background styling (color or gradient). */
|
|
682
|
+
background?: Background;
|
|
683
|
+
/** Background styling for hover state (color or gradient). */
|
|
684
|
+
backgroundHover?: Background;
|
|
608
685
|
}
|
|
609
686
|
interface Link extends LinkDataOneOf {
|
|
610
687
|
/** The absolute URL for the linked document. */
|
|
@@ -986,6 +1063,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
986
1063
|
* @deprecated
|
|
987
1064
|
*/
|
|
988
1065
|
isAdsense?: boolean | null;
|
|
1066
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1067
|
+
widgetId?: string;
|
|
989
1068
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
990
1069
|
containerData?: PluginContainerData;
|
|
991
1070
|
/** The type of HTML code. */
|
|
@@ -1004,14 +1083,17 @@ interface HTMLDataDataOneOf {
|
|
|
1004
1083
|
* @deprecated
|
|
1005
1084
|
*/
|
|
1006
1085
|
isAdsense?: boolean | null;
|
|
1086
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1087
|
+
widgetId?: string;
|
|
1007
1088
|
}
|
|
1008
1089
|
declare enum Source {
|
|
1009
1090
|
HTML = "HTML",
|
|
1010
1091
|
ADSENSE = "ADSENSE",
|
|
1011
|
-
AI = "AI"
|
|
1092
|
+
AI = "AI",
|
|
1093
|
+
AI_WIDGET = "AI_WIDGET"
|
|
1012
1094
|
}
|
|
1013
1095
|
/** @enumType */
|
|
1014
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
1096
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
1015
1097
|
interface ImageData {
|
|
1016
1098
|
/** Styling for the image's container. */
|
|
1017
1099
|
containerData?: PluginContainerData;
|
|
@@ -1241,7 +1323,7 @@ interface OptionLayout {
|
|
|
1241
1323
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
1242
1324
|
enableImage?: boolean | null;
|
|
1243
1325
|
}
|
|
1244
|
-
declare enum
|
|
1326
|
+
declare enum PollDesignBackgroundType {
|
|
1245
1327
|
/** Color background type */
|
|
1246
1328
|
COLOR = "COLOR",
|
|
1247
1329
|
/** Image background type */
|
|
@@ -1250,8 +1332,8 @@ declare enum BackgroundType {
|
|
|
1250
1332
|
GRADIENT = "GRADIENT"
|
|
1251
1333
|
}
|
|
1252
1334
|
/** @enumType */
|
|
1253
|
-
type
|
|
1254
|
-
interface
|
|
1335
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
1336
|
+
interface BackgroundGradient {
|
|
1255
1337
|
/** The gradient angle in degrees. */
|
|
1256
1338
|
angle?: number | null;
|
|
1257
1339
|
/**
|
|
@@ -1265,7 +1347,7 @@ interface Gradient {
|
|
|
1265
1347
|
*/
|
|
1266
1348
|
lastColor?: string | null;
|
|
1267
1349
|
}
|
|
1268
|
-
interface
|
|
1350
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1269
1351
|
/**
|
|
1270
1352
|
* The background color as a hexademical value.
|
|
1271
1353
|
* @format COLOR_HEX
|
|
@@ -1274,12 +1356,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
1274
1356
|
/** An image to use for the background. */
|
|
1275
1357
|
image?: V1Media;
|
|
1276
1358
|
/** Details for a gradient background. */
|
|
1277
|
-
gradient?:
|
|
1359
|
+
gradient?: BackgroundGradient;
|
|
1278
1360
|
/** Background type. For each option, include the relevant details. */
|
|
1279
|
-
type?:
|
|
1361
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
1280
1362
|
}
|
|
1281
1363
|
/** @oneof */
|
|
1282
|
-
interface
|
|
1364
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
1283
1365
|
/**
|
|
1284
1366
|
* The background color as a hexademical value.
|
|
1285
1367
|
* @format COLOR_HEX
|
|
@@ -1288,11 +1370,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
1288
1370
|
/** An image to use for the background. */
|
|
1289
1371
|
image?: V1Media;
|
|
1290
1372
|
/** Details for a gradient background. */
|
|
1291
|
-
gradient?:
|
|
1373
|
+
gradient?: BackgroundGradient;
|
|
1292
1374
|
}
|
|
1293
1375
|
interface PollDesign {
|
|
1294
1376
|
/** Background styling. */
|
|
1295
|
-
background?:
|
|
1377
|
+
background?: PollDesignBackground;
|
|
1296
1378
|
/** Border radius in pixels. */
|
|
1297
1379
|
borderRadius?: number | null;
|
|
1298
1380
|
}
|
|
@@ -1975,12 +2057,13 @@ interface CaptionData {
|
|
|
1975
2057
|
}
|
|
1976
2058
|
interface LayoutData {
|
|
1977
2059
|
/**
|
|
1978
|
-
*
|
|
2060
|
+
* Deprecated: Use `background` instead.
|
|
1979
2061
|
* @format COLOR_HEX
|
|
2062
|
+
* @deprecated
|
|
1980
2063
|
*/
|
|
1981
2064
|
backgroundColor?: string | null;
|
|
1982
2065
|
/** Background image. */
|
|
1983
|
-
backgroundImage?:
|
|
2066
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
1984
2067
|
/**
|
|
1985
2068
|
* Border color as a hexadecimal value.
|
|
1986
2069
|
* @format COLOR_HEX
|
|
@@ -1988,15 +2071,16 @@ interface LayoutData {
|
|
|
1988
2071
|
borderColor?: string | null;
|
|
1989
2072
|
/** Border width in pixels. */
|
|
1990
2073
|
borderWidth?: number | null;
|
|
1991
|
-
/** Border */
|
|
2074
|
+
/** Border radius in pixels. */
|
|
1992
2075
|
borderRadius?: number | null;
|
|
1993
2076
|
/**
|
|
1994
|
-
*
|
|
2077
|
+
* Deprecated: Use `backdrop` instead.
|
|
1995
2078
|
* @format COLOR_HEX
|
|
2079
|
+
* @deprecated
|
|
1996
2080
|
*/
|
|
1997
2081
|
backdropColor?: string | null;
|
|
1998
|
-
/** Backdrop image.
|
|
1999
|
-
backdropImage?:
|
|
2082
|
+
/** Backdrop image. */
|
|
2083
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
2000
2084
|
/** Backdrop top padding. */
|
|
2001
2085
|
backdropPaddingTop?: number | null;
|
|
2002
2086
|
/** Backdrop bottom padding */
|
|
@@ -2020,8 +2104,12 @@ interface LayoutData {
|
|
|
2020
2104
|
designTarget?: DesignTargetWithLiterals;
|
|
2021
2105
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
2022
2106
|
banner?: Banner;
|
|
2107
|
+
/** Background styling (color or gradient). */
|
|
2108
|
+
background?: LayoutDataBackground;
|
|
2109
|
+
/** Backdrop styling (color or gradient). */
|
|
2110
|
+
backdrop?: Backdrop;
|
|
2023
2111
|
}
|
|
2024
|
-
declare enum
|
|
2112
|
+
declare enum ImageScalingScaling {
|
|
2025
2113
|
/** Auto image scaling */
|
|
2026
2114
|
AUTO = "AUTO",
|
|
2027
2115
|
/** Contain image scaling */
|
|
@@ -2030,7 +2118,7 @@ declare enum Scaling {
|
|
|
2030
2118
|
COVER = "COVER"
|
|
2031
2119
|
}
|
|
2032
2120
|
/** @enumType */
|
|
2033
|
-
type
|
|
2121
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2034
2122
|
declare enum ImagePosition {
|
|
2035
2123
|
/** Image positioned at the center */
|
|
2036
2124
|
CENTER = "CENTER",
|
|
@@ -2061,13 +2149,31 @@ declare enum BannerOrigin {
|
|
|
2061
2149
|
}
|
|
2062
2150
|
/** @enumType */
|
|
2063
2151
|
type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
|
|
2064
|
-
|
|
2152
|
+
/** Background type */
|
|
2153
|
+
declare enum LayoutDataBackgroundType {
|
|
2154
|
+
/** Solid color background */
|
|
2155
|
+
COLOR = "COLOR",
|
|
2156
|
+
/** Gradient background */
|
|
2157
|
+
GRADIENT = "GRADIENT"
|
|
2158
|
+
}
|
|
2159
|
+
/** @enumType */
|
|
2160
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2161
|
+
/** Backdrop type */
|
|
2162
|
+
declare enum BackdropType {
|
|
2163
|
+
/** Solid color backdrop */
|
|
2164
|
+
COLOR = "COLOR",
|
|
2165
|
+
/** Gradient backdrop */
|
|
2166
|
+
GRADIENT = "GRADIENT"
|
|
2167
|
+
}
|
|
2168
|
+
/** @enumType */
|
|
2169
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
2170
|
+
interface LayoutDataBackgroundImage {
|
|
2065
2171
|
/** Background image. */
|
|
2066
2172
|
media?: V1Media;
|
|
2067
2173
|
/** Background image opacity. */
|
|
2068
2174
|
opacity?: number | null;
|
|
2069
2175
|
/** Background image scaling. */
|
|
2070
|
-
scaling?:
|
|
2176
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
2071
2177
|
/** Position of background. Defaults to `CENTER`. */
|
|
2072
2178
|
position?: ImagePositionWithLiterals;
|
|
2073
2179
|
}
|
|
@@ -2101,6 +2207,30 @@ interface Banner {
|
|
|
2101
2207
|
/** Origin of the banner */
|
|
2102
2208
|
origin?: BannerOriginWithLiterals;
|
|
2103
2209
|
}
|
|
2210
|
+
/** Background styling (color or gradient) */
|
|
2211
|
+
interface LayoutDataBackground {
|
|
2212
|
+
/** Background type. */
|
|
2213
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2214
|
+
/**
|
|
2215
|
+
* Background color as a hexadecimal value.
|
|
2216
|
+
* @format COLOR_HEX
|
|
2217
|
+
*/
|
|
2218
|
+
color?: string | null;
|
|
2219
|
+
/** Gradient configuration. */
|
|
2220
|
+
gradient?: Gradient;
|
|
2221
|
+
}
|
|
2222
|
+
/** Backdrop styling (color or gradient) */
|
|
2223
|
+
interface Backdrop {
|
|
2224
|
+
/** Backdrop type. */
|
|
2225
|
+
type?: BackdropTypeWithLiterals;
|
|
2226
|
+
/**
|
|
2227
|
+
* Backdrop color as a hexadecimal value.
|
|
2228
|
+
* @format COLOR_HEX
|
|
2229
|
+
*/
|
|
2230
|
+
color?: string | null;
|
|
2231
|
+
/** Gradient configuration. */
|
|
2232
|
+
gradient?: Gradient;
|
|
2233
|
+
}
|
|
2104
2234
|
interface LayoutCellData {
|
|
2105
2235
|
/** Size of the cell in 12 columns grid. */
|
|
2106
2236
|
colSpan?: number | null;
|
|
@@ -2122,6 +2252,120 @@ interface ShapeDataStyles {
|
|
|
2122
2252
|
/** Map of original color keys to their new color values. */
|
|
2123
2253
|
colors?: Record<string, string>;
|
|
2124
2254
|
}
|
|
2255
|
+
interface CardData {
|
|
2256
|
+
/** Background styling (color or gradient). */
|
|
2257
|
+
background?: CardDataBackground;
|
|
2258
|
+
/** Background image. */
|
|
2259
|
+
backgroundImage?: BackgroundImage;
|
|
2260
|
+
}
|
|
2261
|
+
declare enum Scaling {
|
|
2262
|
+
/** Auto image scaling */
|
|
2263
|
+
AUTO = "AUTO",
|
|
2264
|
+
/** Contain image scaling */
|
|
2265
|
+
CONTAIN = "CONTAIN",
|
|
2266
|
+
/** Cover image scaling */
|
|
2267
|
+
COVER = "COVER"
|
|
2268
|
+
}
|
|
2269
|
+
/** @enumType */
|
|
2270
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2271
|
+
declare enum ImagePositionPosition {
|
|
2272
|
+
/** Image positioned at the center */
|
|
2273
|
+
CENTER = "CENTER",
|
|
2274
|
+
/** Image positioned on the left */
|
|
2275
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2276
|
+
/** Image positioned on the right */
|
|
2277
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2278
|
+
/** Image positioned at the center top */
|
|
2279
|
+
TOP = "TOP",
|
|
2280
|
+
/** Image positioned at the top left */
|
|
2281
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2282
|
+
/** Image positioned at the top right */
|
|
2283
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2284
|
+
/** Image positioned at the center bottom */
|
|
2285
|
+
BOTTOM = "BOTTOM",
|
|
2286
|
+
/** Image positioned at the bottom left */
|
|
2287
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2288
|
+
/** Image positioned at the bottom right */
|
|
2289
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2290
|
+
}
|
|
2291
|
+
/** @enumType */
|
|
2292
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2293
|
+
/** Background type */
|
|
2294
|
+
declare enum CardDataBackgroundType {
|
|
2295
|
+
/** Solid color background */
|
|
2296
|
+
COLOR = "COLOR",
|
|
2297
|
+
/** Gradient background */
|
|
2298
|
+
GRADIENT = "GRADIENT"
|
|
2299
|
+
}
|
|
2300
|
+
/** @enumType */
|
|
2301
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2302
|
+
/** Background styling (color or gradient) */
|
|
2303
|
+
interface CardDataBackground {
|
|
2304
|
+
/** Background type. */
|
|
2305
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
2306
|
+
/**
|
|
2307
|
+
* Background color as a hexadecimal value.
|
|
2308
|
+
* @format COLOR_HEX
|
|
2309
|
+
*/
|
|
2310
|
+
color?: string | null;
|
|
2311
|
+
/** Gradient configuration. */
|
|
2312
|
+
gradient?: Gradient;
|
|
2313
|
+
}
|
|
2314
|
+
interface BackgroundImage {
|
|
2315
|
+
/** Background image. */
|
|
2316
|
+
media?: V1Media;
|
|
2317
|
+
/** Background image opacity. */
|
|
2318
|
+
opacity?: number | null;
|
|
2319
|
+
/** Background image scaling. */
|
|
2320
|
+
scaling?: ScalingWithLiterals;
|
|
2321
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2322
|
+
position?: ImagePositionPositionWithLiterals;
|
|
2323
|
+
}
|
|
2324
|
+
interface TocData {
|
|
2325
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
2326
|
+
includedHeadings?: number[];
|
|
2327
|
+
/** List style. Default: PLAIN. */
|
|
2328
|
+
listStyle?: ListStyleWithLiterals;
|
|
2329
|
+
/** Optional override for the font size in pixels. */
|
|
2330
|
+
fontSize?: number | null;
|
|
2331
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
2332
|
+
itemSpacing?: number | null;
|
|
2333
|
+
/**
|
|
2334
|
+
* Optional override for the text color.
|
|
2335
|
+
* @format COLOR_HEX
|
|
2336
|
+
*/
|
|
2337
|
+
color?: string | null;
|
|
2338
|
+
/** Indentation style. Default: NESTED. */
|
|
2339
|
+
indentation?: IndentationWithLiterals;
|
|
2340
|
+
}
|
|
2341
|
+
/** List style. */
|
|
2342
|
+
declare enum ListStyle {
|
|
2343
|
+
/** No markers (default) */
|
|
2344
|
+
PLAIN = "PLAIN",
|
|
2345
|
+
/** Numbered list */
|
|
2346
|
+
NUMBERED = "NUMBERED",
|
|
2347
|
+
/** Alphabetic letters */
|
|
2348
|
+
LETTERS = "LETTERS",
|
|
2349
|
+
/** Roman numerals */
|
|
2350
|
+
ROMAN = "ROMAN",
|
|
2351
|
+
/** Bulleted list */
|
|
2352
|
+
BULLETED = "BULLETED",
|
|
2353
|
+
/** Alphabetical index */
|
|
2354
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
2355
|
+
/** Alphabetical index (compact top-row only) */
|
|
2356
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
2357
|
+
}
|
|
2358
|
+
/** @enumType */
|
|
2359
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
2360
|
+
/** Indentation style. */
|
|
2361
|
+
declare enum Indentation {
|
|
2362
|
+
/** Sub-headings indented under parents (default) */
|
|
2363
|
+
NESTED = "NESTED",
|
|
2364
|
+
/** All items at the same level */
|
|
2365
|
+
FLAT = "FLAT"
|
|
2366
|
+
}
|
|
2367
|
+
/** @enumType */
|
|
2368
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2125
2369
|
interface Metadata {
|
|
2126
2370
|
/** Schema version. */
|
|
2127
2371
|
version?: number;
|
|
@@ -3910,14 +4154,13 @@ declare function onPostUpdated(handler: (event: PostUpdatedEnvelope) => void | P
|
|
|
3910
4154
|
/**
|
|
3911
4155
|
* Retrieves the number of published posts per month within a specified time range.
|
|
3912
4156
|
*
|
|
3913
|
-
*
|
|
3914
|
-
* The
|
|
3915
|
-
*
|
|
3916
|
-
*
|
|
3917
|
-
*
|
|
3918
|
-
*
|
|
4157
|
+
* The time range is set using the `rangeStart` and `months` properties.
|
|
4158
|
+
* The time range always starts on the 1st day of the month set in `rangeStart` and
|
|
4159
|
+
* includes the number of `months` following `rangeStart`.
|
|
4160
|
+
* For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`,
|
|
4161
|
+
* the time range will be from `'2022-03-01'` until `'2022-06-30'`. The time range always ends on the last day of the month.
|
|
4162
|
+
* > Note: If there are no published posts in a month within the time range, that month is not included in the response. For example, let's say a blog has `0` posts dated in February 2022. If `rangeStart` is set to `'2022-01-01'` and `months` is set to `3`, the response includes `postCount` values for January and March, but not February.
|
|
3919
4163
|
* @public
|
|
3920
|
-
* @param options - Options specifying time frame, sort, and filter.
|
|
3921
4164
|
* @permissionId BLOG.READ-PUBLICATION
|
|
3922
4165
|
* @applicableIdentity APP
|
|
3923
4166
|
* @returns Get Blog Post Count Stats response
|
|
@@ -3958,7 +4201,6 @@ interface QueryPostCountStatsOptions {
|
|
|
3958
4201
|
/**
|
|
3959
4202
|
* Retrieves the total amount of published posts of the blog.
|
|
3960
4203
|
* @public
|
|
3961
|
-
* @param options - Language Options.
|
|
3962
4204
|
* @permissionId BLOG.READ-PUBLICATION
|
|
3963
4205
|
* @applicableIdentity APP
|
|
3964
4206
|
* @fqn com.wixpress.npm.communities.platformized.blog.BlogStatsService.GetTotalPosts
|
|
@@ -3979,12 +4221,12 @@ interface GetTotalPostsOptions {
|
|
|
3979
4221
|
* @param postId - Post ID.
|
|
3980
4222
|
* @public
|
|
3981
4223
|
* @requiredField postId
|
|
3982
|
-
* @param options - Options specifying which fields to return.
|
|
3983
4224
|
* @permissionId BLOG.READ-PUBLICATION
|
|
3984
4225
|
* @applicableIdentity APP
|
|
4226
|
+
* @returns Retrieved post info.
|
|
3985
4227
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPost
|
|
3986
4228
|
*/
|
|
3987
|
-
declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<
|
|
4229
|
+
declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<Post, `_id` | `title` | `excerpt` | `slug` | `featured` | `pinned` | `categoryIds` | `memberId` | `hashtags` | `commentingEnabled` | `minutesToRead` | `tagIds` | `relatedPostIds` | `pricingPlanIds` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `preview` | `moderationDetails.submittedBy` | `moderationDetails.status` | `media.embedMedia.thumbnail.url` | `media.embedMedia.thumbnail.width` | `media.embedMedia.thumbnail.height` | `media.embedMedia.video.url` | `media.embedMedia.video.width` | `media.embedMedia.video.height` | `media.displayed` | `media.custom` | `hasUnpublishedChanges`, 6>>;
|
|
3988
4230
|
interface GetPostOptions {
|
|
3989
4231
|
/**
|
|
3990
4232
|
* List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
@@ -4004,7 +4246,6 @@ interface GetPostOptions {
|
|
|
4004
4246
|
* @param slug - Slug of the post to retrieve.
|
|
4005
4247
|
* @public
|
|
4006
4248
|
* @requiredField slug
|
|
4007
|
-
* @param options - Options specifying which fields to return.
|
|
4008
4249
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4009
4250
|
* @applicableIdentity APP
|
|
4010
4251
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPostBySlug
|
|
@@ -4032,7 +4273,6 @@ interface GetPostBySlugOptions {
|
|
|
4032
4273
|
* - `paging.limit` is `50`.
|
|
4033
4274
|
* - `paging.offset` is `0`.
|
|
4034
4275
|
* @public
|
|
4035
|
-
* @param options - Sort, filter, and paging options.
|
|
4036
4276
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4037
4277
|
* @applicableIdentity APP
|
|
4038
4278
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.ListPosts
|
|
@@ -4103,26 +4343,18 @@ interface ListPostsOptions {
|
|
|
4103
4343
|
fieldsets?: PostFieldFieldWithLiterals[];
|
|
4104
4344
|
}
|
|
4105
4345
|
/**
|
|
4106
|
-
*
|
|
4346
|
+
* Retrieves a list of up to 100 posts, given the provided paging, filtering, and sorting.
|
|
4107
4347
|
*
|
|
4348
|
+
* Query Posts runs with these defaults, which you can override:
|
|
4349
|
+
* - `firstPublishedDate` is sorted in descending order, with pinned posts first.
|
|
4350
|
+
* - `paging.limit` is `50`.
|
|
4351
|
+
* - `paging.offset` is `0`.
|
|
4108
4352
|
*
|
|
4109
|
-
*
|
|
4110
|
-
*
|
|
4111
|
-
*
|
|
4112
|
-
*
|
|
4113
|
-
* You can refine the query by chaining `PostsQueryBuilder` functions onto the query. `PostsQueryBuilder` functions enable you to sort, filter, and control the results that `queryPosts()` returns.
|
|
4114
|
-
*
|
|
4115
|
-
* `queryPosts()` runs with these `PostsQueryBuilder` defaults that you can override:
|
|
4116
|
-
* + `limit(50)`
|
|
4117
|
-
* + `descending('firstPublishedDate')`
|
|
4118
|
-
*
|
|
4119
|
-
* Note that the default limit is `'50'`, but the max limit is `'100'`.
|
|
4120
|
-
*
|
|
4121
|
-
* To learn how to query posts, refer to the table below.
|
|
4122
|
-
*
|
|
4123
|
-
* The following `PostsQueryBuilder` functions are supported for the `queryPosts()` function. For a full description of the Posts object, see the object returned for the `items` property in `PostsQueryResult`.
|
|
4353
|
+
* To learn about working with _Query_ endpoints, see
|
|
4354
|
+
* [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language),
|
|
4355
|
+
* [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging), and
|
|
4356
|
+
* [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
4124
4357
|
* @public
|
|
4125
|
-
* @param options - Options specifying which fields to return.
|
|
4126
4358
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4127
4359
|
* @applicableIdentity APP
|
|
4128
4360
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.QueryPosts
|
|
@@ -4379,7 +4611,7 @@ type PostQuery = {
|
|
|
4379
4611
|
};
|
|
4380
4612
|
declare const utils: {
|
|
4381
4613
|
query: {
|
|
4382
|
-
/**
|
|
4614
|
+
/** Data for a spoiler decoration. */
|
|
4383
4615
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Post, PostQuerySpec, PostQuery>;
|
|
4384
4616
|
Filter: _wix_sdk_types.FilterFactory<Post, PostQuerySpec>;
|
|
4385
4617
|
Sort: _wix_sdk_types.SortFactory<PostQuerySpec>;
|
|
@@ -4398,4 +4630,4 @@ declare const utils: {
|
|
|
4398
4630
|
*/
|
|
4399
4631
|
declare function getPostMetrics(postId: string): Promise<NonNullablePaths<GetPostMetricsResponse, `metrics.comments` | `metrics.likes` | `metrics.views`, 3>>;
|
|
4400
4632
|
|
|
4401
|
-
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type
|
|
4633
|
+
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkDeletePostsRequest, type BulkDeletePostsResponse, type BulkGetPostReactionsRequest, type BulkGetPostReactionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type Category, type CategoryTranslation, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonQueryWithEntityContext, type ConvertDraftJsToRichContentRequest, type ConvertDraftJsToRichContentResponse, type ConvertRichContentToDraftJsRequest, type ConvertRichContentToDraftJsResponse, type CreateDraftPostFromTemplateRequest, type CreateDraftPostFromTemplateResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeletePostRequest, type DeletePostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftPost, type DraftPostTranslation, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetPostBySlugOptions, type GetPostBySlugRequest, type GetPostBySlugResponse, type GetPostCountPerMonthRequest, type GetPostCountPerMonthResponse, type GetPostCountsRequest, type GetPostCountsResponse, type GetPostMetricsRequest, type GetPostMetricsResponse, type GetPostOptions, type GetPostRequest, type GetPostResponse, GetPostTemplatesSort, type GetPostTemplatesSortWithLiterals, GetPostsSort, type GetPostsSortWithLiterals, type GetTemplateRequest, type GetTemplateResponse, type GetTotalLikesPerMemberRequest, type GetTotalLikesPerMemberResponse, type GetTotalPostsOptions, type GetTotalPostsRequest, type GetTotalPostsResponse, type GetTotalPublicationsRequest, type GetTotalPublicationsResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPostsCopied, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LikePostRequest, type LikePostResponse, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDemoPostsRequest, type ListDemoPostsResponse, type ListPostsArchiveRequest, type ListPostsArchiveResponse, type ListPostsOptions, type ListPostsRequest, type ListPostsResponse, ListStyle, type ListStyleWithLiterals, type ListTemplatesRequest, type ListTemplatesResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type Metrics, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, Order, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type PeriodPostCount, type PeriodPublicationsCount, type Permissions, type PinPostRequest, type PinPostResponse, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Post, type PostCategoriesUpdated, type PostCount, type PostCountInfo, type PostCountPerMonth, type PostCountersUpdated, type PostCountersUpdatedInitiatorOneOf, type PostCreatedEnvelope, type PostDeletedEnvelope, PostFieldField, type PostFieldFieldWithLiterals, type PostLiked, type PostLikedEnvelope, type PostLikedInitiatorOneOf, type PostOwnerChanged, type PostQuery, type PostQuerySpec, type PostTagsUpdated, type PostTranslation, type PostUnliked, type PostUnlikedEnvelope, type PostUnlikedInitiatorOneOf, type PostUpdatedEnvelope, type PostsQueryBuilder, type PostsQueryResult, type PricingData, type QueryPostCountStatsOptions, type QueryPostCountStatsRequest, type QueryPostCountStatsResponse, type QueryPostsOptions, type QueryPostsRequest, type QueryPostsResponse, type QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsRequestOrder, type QueryPublicationsCountStatsRequestOrderWithLiterals, type QueryPublicationsCountStatsResponse, type Reactions, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type ScheduledPostPublished, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type UnlikePostRequest, type UnlikePostResponse, type UnpinPostRequest, type UnpinPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, type ViewPostRequest, type ViewPostResponse, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, onPostCreated, onPostDeleted, onPostLiked, onPostUnliked, onPostUpdated, queryPostCountStats, queryPosts, typedQueryPosts, utils };
|