@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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +11 -15
  2. package/build/cjs/index.js +459 -35
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +288 -56
  5. package/build/cjs/index.typings.js +301 -22
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +270 -26
  8. package/build/cjs/meta.js +295 -16
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +11 -15
  11. package/build/es/index.mjs +450 -35
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +288 -56
  14. package/build/es/index.typings.mjs +292 -22
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +270 -26
  17. package/build/es/meta.mjs +286 -16
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +11 -15
  20. package/build/internal/cjs/index.js +459 -35
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +288 -56
  23. package/build/internal/cjs/index.typings.js +301 -22
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +270 -26
  26. package/build/internal/cjs/meta.js +295 -16
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +11 -15
  29. package/build/internal/es/index.mjs +450 -35
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +288 -56
  32. package/build/internal/es/index.typings.mjs +292 -22
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +270 -26
  35. package/build/internal/es/meta.mjs +286 -16
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -323,6 +323,10 @@ interface Node extends NodeDataOneOf {
323
323
  layoutCellData?: LayoutCellData;
324
324
  /** Data for a shape node. */
325
325
  shapeData?: ShapeData;
326
+ /** Data for a card node. */
327
+ cardData?: CardData;
328
+ /** Data for a table of contents node. */
329
+ tocData?: TocData;
326
330
  /** 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. */
327
331
  type?: NodeTypeWithLiterals;
328
332
  /** Node ID. */
@@ -392,6 +396,10 @@ interface NodeDataOneOf {
392
396
  layoutCellData?: LayoutCellData;
393
397
  /** Data for a shape node. */
394
398
  shapeData?: ShapeData;
399
+ /** Data for a card node. */
400
+ cardData?: CardData;
401
+ /** Data for a table of contents node. */
402
+ tocData?: TocData;
395
403
  }
396
404
  declare enum NodeType {
397
405
  PARAGRAPH = "PARAGRAPH",
@@ -428,10 +436,12 @@ declare enum NodeType {
428
436
  CAPTION = "CAPTION",
429
437
  LAYOUT = "LAYOUT",
430
438
  LAYOUT_CELL = "LAYOUT_CELL",
431
- SHAPE = "SHAPE"
439
+ SHAPE = "SHAPE",
440
+ CARD = "CARD",
441
+ TOC = "TOC"
432
442
  }
433
443
  /** @enumType */
434
- 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';
444
+ 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';
435
445
  interface NodeStyle {
436
446
  /** The top padding value in pixels. */
437
447
  paddingTop?: string | null;
@@ -452,6 +462,55 @@ interface ButtonData {
452
462
  /** Button link details. */
453
463
  link?: Link;
454
464
  }
465
+ /** Background type */
466
+ declare enum BackgroundType {
467
+ /** Solid color background */
468
+ COLOR = "COLOR",
469
+ /** Gradient background */
470
+ GRADIENT = "GRADIENT"
471
+ }
472
+ /** @enumType */
473
+ type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
474
+ interface Gradient {
475
+ /** Gradient type. */
476
+ type?: GradientTypeWithLiterals;
477
+ /**
478
+ * Color stops for the gradient.
479
+ * @maxSize 1000
480
+ */
481
+ stops?: Stop[];
482
+ /** Angle in degrees for linear gradient (0-360). */
483
+ angle?: number | null;
484
+ /**
485
+ * Horizontal center position for radial gradient (0-100).
486
+ * @max 100
487
+ */
488
+ centerX?: number | null;
489
+ /**
490
+ * Vertical center position for radial gradient (0-100).
491
+ * @max 100
492
+ */
493
+ centerY?: number | null;
494
+ }
495
+ /** Gradient type. */
496
+ declare enum GradientType {
497
+ /** Linear gradient. */
498
+ LINEAR = "LINEAR",
499
+ /** Radial gradient. */
500
+ RADIAL = "RADIAL"
501
+ }
502
+ /** @enumType */
503
+ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
504
+ /** A single color stop in the gradient. */
505
+ interface Stop {
506
+ /**
507
+ * Stop color as hex value.
508
+ * @format COLOR_HEX
509
+ */
510
+ color?: string | null;
511
+ /** Stop position (0-1). */
512
+ position?: number | null;
513
+ }
455
514
  interface Border {
456
515
  /**
457
516
  * Deprecated: Use `borderWidth` in `styles` instead.
@@ -481,6 +540,18 @@ interface Colors {
481
540
  */
482
541
  background?: string | null;
483
542
  }
543
+ /** Background styling (color or gradient) */
544
+ interface Background {
545
+ /** Background type. */
546
+ type?: BackgroundTypeWithLiterals;
547
+ /**
548
+ * Background color as a hexadecimal value.
549
+ * @format COLOR_HEX
550
+ */
551
+ color?: string | null;
552
+ /** Gradient configuration. */
553
+ gradient?: Gradient;
554
+ }
484
555
  interface PluginContainerData {
485
556
  /** The width of the node when it's displayed. */
486
557
  width?: PluginContainerDataWidth;
@@ -601,17 +672,23 @@ interface Styles {
601
672
  */
602
673
  textColorHover?: string | null;
603
674
  /**
604
- * Background color as a hexadecimal value.
675
+ * Deprecated: Use `background` instead.
605
676
  * @format COLOR_HEX
677
+ * @deprecated
606
678
  */
607
679
  backgroundColor?: string | null;
608
680
  /**
609
- * Background color as a hexadecimal value (hover state).
681
+ * Deprecated: Use `backgroundHover` instead.
610
682
  * @format COLOR_HEX
683
+ * @deprecated
611
684
  */
612
685
  backgroundColorHover?: string | null;
613
686
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
614
687
  buttonSize?: string | null;
688
+ /** Background styling (color or gradient). */
689
+ background?: Background;
690
+ /** Background styling for hover state (color or gradient). */
691
+ backgroundHover?: Background;
615
692
  }
616
693
  interface Link extends LinkDataOneOf {
617
694
  /** The absolute URL for the linked document. */
@@ -993,6 +1070,8 @@ interface HTMLData extends HTMLDataDataOneOf {
993
1070
  * @deprecated
994
1071
  */
995
1072
  isAdsense?: boolean | null;
1073
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1074
+ widgetId?: string;
996
1075
  /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
997
1076
  containerData?: PluginContainerData;
998
1077
  /** The type of HTML code. */
@@ -1011,14 +1090,17 @@ interface HTMLDataDataOneOf {
1011
1090
  * @deprecated
1012
1091
  */
1013
1092
  isAdsense?: boolean | null;
1093
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1094
+ widgetId?: string;
1014
1095
  }
1015
1096
  declare enum Source {
1016
1097
  HTML = "HTML",
1017
1098
  ADSENSE = "ADSENSE",
1018
- AI = "AI"
1099
+ AI = "AI",
1100
+ AI_WIDGET = "AI_WIDGET"
1019
1101
  }
1020
1102
  /** @enumType */
1021
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
1103
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
1022
1104
  interface ImageData {
1023
1105
  /** Styling for the image's container. */
1024
1106
  containerData?: PluginContainerData;
@@ -1248,7 +1330,7 @@ interface OptionLayout {
1248
1330
  /** Sets whether to display option images. Defaults to `false`. */
1249
1331
  enableImage?: boolean | null;
1250
1332
  }
1251
- declare enum BackgroundType {
1333
+ declare enum PollDesignBackgroundType {
1252
1334
  /** Color background type */
1253
1335
  COLOR = "COLOR",
1254
1336
  /** Image background type */
@@ -1257,8 +1339,8 @@ declare enum BackgroundType {
1257
1339
  GRADIENT = "GRADIENT"
1258
1340
  }
1259
1341
  /** @enumType */
1260
- type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1261
- interface Gradient {
1342
+ type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1343
+ interface BackgroundGradient {
1262
1344
  /** The gradient angle in degrees. */
1263
1345
  angle?: number | null;
1264
1346
  /**
@@ -1272,7 +1354,7 @@ interface Gradient {
1272
1354
  */
1273
1355
  lastColor?: string | null;
1274
1356
  }
1275
- interface Background extends BackgroundBackgroundOneOf {
1357
+ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1276
1358
  /**
1277
1359
  * The background color as a hexademical value.
1278
1360
  * @format COLOR_HEX
@@ -1281,12 +1363,12 @@ interface Background extends BackgroundBackgroundOneOf {
1281
1363
  /** An image to use for the background. */
1282
1364
  image?: V1Media;
1283
1365
  /** Details for a gradient background. */
1284
- gradient?: Gradient;
1366
+ gradient?: BackgroundGradient;
1285
1367
  /** Background type. For each option, include the relevant details. */
1286
- type?: BackgroundTypeWithLiterals;
1368
+ type?: PollDesignBackgroundTypeWithLiterals;
1287
1369
  }
1288
1370
  /** @oneof */
1289
- interface BackgroundBackgroundOneOf {
1371
+ interface PollDesignBackgroundBackgroundOneOf {
1290
1372
  /**
1291
1373
  * The background color as a hexademical value.
1292
1374
  * @format COLOR_HEX
@@ -1295,11 +1377,11 @@ interface BackgroundBackgroundOneOf {
1295
1377
  /** An image to use for the background. */
1296
1378
  image?: V1Media;
1297
1379
  /** Details for a gradient background. */
1298
- gradient?: Gradient;
1380
+ gradient?: BackgroundGradient;
1299
1381
  }
1300
1382
  interface PollDesign {
1301
1383
  /** Background styling. */
1302
- background?: Background;
1384
+ background?: PollDesignBackground;
1303
1385
  /** Border radius in pixels. */
1304
1386
  borderRadius?: number | null;
1305
1387
  }
@@ -1982,12 +2064,13 @@ interface CaptionData {
1982
2064
  }
1983
2065
  interface LayoutData {
1984
2066
  /**
1985
- * Background color as a hexadecimal value.
2067
+ * Deprecated: Use `background` instead.
1986
2068
  * @format COLOR_HEX
2069
+ * @deprecated
1987
2070
  */
1988
2071
  backgroundColor?: string | null;
1989
2072
  /** Background image. */
1990
- backgroundImage?: BackgroundImage;
2073
+ backgroundImage?: LayoutDataBackgroundImage;
1991
2074
  /**
1992
2075
  * Border color as a hexadecimal value.
1993
2076
  * @format COLOR_HEX
@@ -1995,15 +2078,16 @@ interface LayoutData {
1995
2078
  borderColor?: string | null;
1996
2079
  /** Border width in pixels. */
1997
2080
  borderWidth?: number | null;
1998
- /** Border */
2081
+ /** Border radius in pixels. */
1999
2082
  borderRadius?: number | null;
2000
2083
  /**
2001
- * Backdrop color as a hexadecimal value.
2084
+ * Deprecated: Use `backdrop` instead.
2002
2085
  * @format COLOR_HEX
2086
+ * @deprecated
2003
2087
  */
2004
2088
  backdropColor?: string | null;
2005
- /** Backdrop image.radius in pixels. */
2006
- backdropImage?: BackgroundImage;
2089
+ /** Backdrop image. */
2090
+ backdropImage?: LayoutDataBackgroundImage;
2007
2091
  /** Backdrop top padding. */
2008
2092
  backdropPaddingTop?: number | null;
2009
2093
  /** Backdrop bottom padding */
@@ -2027,8 +2111,12 @@ interface LayoutData {
2027
2111
  designTarget?: DesignTargetWithLiterals;
2028
2112
  /** Banner configuration. When present, this layout is displayed as a banner. */
2029
2113
  banner?: Banner;
2114
+ /** Background styling (color or gradient). */
2115
+ background?: LayoutDataBackground;
2116
+ /** Backdrop styling (color or gradient). */
2117
+ backdrop?: Backdrop;
2030
2118
  }
2031
- declare enum Scaling {
2119
+ declare enum ImageScalingScaling {
2032
2120
  /** Auto image scaling */
2033
2121
  AUTO = "AUTO",
2034
2122
  /** Contain image scaling */
@@ -2037,7 +2125,7 @@ declare enum Scaling {
2037
2125
  COVER = "COVER"
2038
2126
  }
2039
2127
  /** @enumType */
2040
- type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2128
+ type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
2041
2129
  declare enum ImagePosition {
2042
2130
  /** Image positioned at the center */
2043
2131
  CENTER = "CENTER",
@@ -2068,13 +2156,31 @@ declare enum BannerOrigin {
2068
2156
  }
2069
2157
  /** @enumType */
2070
2158
  type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
2071
- interface BackgroundImage {
2159
+ /** Background type */
2160
+ declare enum LayoutDataBackgroundType {
2161
+ /** Solid color background */
2162
+ COLOR = "COLOR",
2163
+ /** Gradient background */
2164
+ GRADIENT = "GRADIENT"
2165
+ }
2166
+ /** @enumType */
2167
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2168
+ /** Backdrop type */
2169
+ declare enum BackdropType {
2170
+ /** Solid color backdrop */
2171
+ COLOR = "COLOR",
2172
+ /** Gradient backdrop */
2173
+ GRADIENT = "GRADIENT"
2174
+ }
2175
+ /** @enumType */
2176
+ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2177
+ interface LayoutDataBackgroundImage {
2072
2178
  /** Background image. */
2073
2179
  media?: V1Media;
2074
2180
  /** Background image opacity. */
2075
2181
  opacity?: number | null;
2076
2182
  /** Background image scaling. */
2077
- scaling?: ScalingWithLiterals;
2183
+ scaling?: ImageScalingScalingWithLiterals;
2078
2184
  /** Position of background. Defaults to `CENTER`. */
2079
2185
  position?: ImagePositionWithLiterals;
2080
2186
  }
@@ -2108,6 +2214,30 @@ interface Banner {
2108
2214
  /** Origin of the banner */
2109
2215
  origin?: BannerOriginWithLiterals;
2110
2216
  }
2217
+ /** Background styling (color or gradient) */
2218
+ interface LayoutDataBackground {
2219
+ /** Background type. */
2220
+ type?: LayoutDataBackgroundTypeWithLiterals;
2221
+ /**
2222
+ * Background color as a hexadecimal value.
2223
+ * @format COLOR_HEX
2224
+ */
2225
+ color?: string | null;
2226
+ /** Gradient configuration. */
2227
+ gradient?: Gradient;
2228
+ }
2229
+ /** Backdrop styling (color or gradient) */
2230
+ interface Backdrop {
2231
+ /** Backdrop type. */
2232
+ type?: BackdropTypeWithLiterals;
2233
+ /**
2234
+ * Backdrop color as a hexadecimal value.
2235
+ * @format COLOR_HEX
2236
+ */
2237
+ color?: string | null;
2238
+ /** Gradient configuration. */
2239
+ gradient?: Gradient;
2240
+ }
2111
2241
  interface LayoutCellData {
2112
2242
  /** Size of the cell in 12 columns grid. */
2113
2243
  colSpan?: number | null;
@@ -2129,6 +2259,120 @@ interface ShapeDataStyles {
2129
2259
  /** Map of original color keys to their new color values. */
2130
2260
  colors?: Record<string, string>;
2131
2261
  }
2262
+ interface CardData {
2263
+ /** Background styling (color or gradient). */
2264
+ background?: CardDataBackground;
2265
+ /** Background image. */
2266
+ backgroundImage?: BackgroundImage;
2267
+ }
2268
+ declare enum Scaling {
2269
+ /** Auto image scaling */
2270
+ AUTO = "AUTO",
2271
+ /** Contain image scaling */
2272
+ CONTAIN = "CONTAIN",
2273
+ /** Cover image scaling */
2274
+ COVER = "COVER"
2275
+ }
2276
+ /** @enumType */
2277
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2278
+ declare enum ImagePositionPosition {
2279
+ /** Image positioned at the center */
2280
+ CENTER = "CENTER",
2281
+ /** Image positioned on the left */
2282
+ CENTER_LEFT = "CENTER_LEFT",
2283
+ /** Image positioned on the right */
2284
+ CENTER_RIGHT = "CENTER_RIGHT",
2285
+ /** Image positioned at the center top */
2286
+ TOP = "TOP",
2287
+ /** Image positioned at the top left */
2288
+ TOP_LEFT = "TOP_LEFT",
2289
+ /** Image positioned at the top right */
2290
+ TOP_RIGHT = "TOP_RIGHT",
2291
+ /** Image positioned at the center bottom */
2292
+ BOTTOM = "BOTTOM",
2293
+ /** Image positioned at the bottom left */
2294
+ BOTTOM_LEFT = "BOTTOM_LEFT",
2295
+ /** Image positioned at the bottom right */
2296
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
2297
+ }
2298
+ /** @enumType */
2299
+ type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2300
+ /** Background type */
2301
+ declare enum CardDataBackgroundType {
2302
+ /** Solid color background */
2303
+ COLOR = "COLOR",
2304
+ /** Gradient background */
2305
+ GRADIENT = "GRADIENT"
2306
+ }
2307
+ /** @enumType */
2308
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2309
+ /** Background styling (color or gradient) */
2310
+ interface CardDataBackground {
2311
+ /** Background type. */
2312
+ type?: CardDataBackgroundTypeWithLiterals;
2313
+ /**
2314
+ * Background color as a hexadecimal value.
2315
+ * @format COLOR_HEX
2316
+ */
2317
+ color?: string | null;
2318
+ /** Gradient configuration. */
2319
+ gradient?: Gradient;
2320
+ }
2321
+ interface BackgroundImage {
2322
+ /** Background image. */
2323
+ media?: V1Media;
2324
+ /** Background image opacity. */
2325
+ opacity?: number | null;
2326
+ /** Background image scaling. */
2327
+ scaling?: ScalingWithLiterals;
2328
+ /** Position of background. Defaults to `CENTER`. */
2329
+ position?: ImagePositionPositionWithLiterals;
2330
+ }
2331
+ interface TocData {
2332
+ /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
2333
+ includedHeadings?: number[];
2334
+ /** List style. Default: PLAIN. */
2335
+ listStyle?: ListStyleWithLiterals;
2336
+ /** Optional override for the font size in pixels. */
2337
+ fontSize?: number | null;
2338
+ /** Optional override for the vertical spacing between items in pixels. */
2339
+ itemSpacing?: number | null;
2340
+ /**
2341
+ * Optional override for the text color.
2342
+ * @format COLOR_HEX
2343
+ */
2344
+ color?: string | null;
2345
+ /** Indentation style. Default: NESTED. */
2346
+ indentation?: IndentationWithLiterals;
2347
+ }
2348
+ /** List style. */
2349
+ declare enum ListStyle {
2350
+ /** No markers (default) */
2351
+ PLAIN = "PLAIN",
2352
+ /** Numbered list */
2353
+ NUMBERED = "NUMBERED",
2354
+ /** Alphabetic letters */
2355
+ LETTERS = "LETTERS",
2356
+ /** Roman numerals */
2357
+ ROMAN = "ROMAN",
2358
+ /** Bulleted list */
2359
+ BULLETED = "BULLETED",
2360
+ /** Alphabetical index */
2361
+ ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
2362
+ /** Alphabetical index (compact top-row only) */
2363
+ ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
2364
+ }
2365
+ /** @enumType */
2366
+ type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
2367
+ /** Indentation style. */
2368
+ declare enum Indentation {
2369
+ /** Sub-headings indented under parents (default) */
2370
+ NESTED = "NESTED",
2371
+ /** All items at the same level */
2372
+ FLAT = "FLAT"
2373
+ }
2374
+ /** @enumType */
2375
+ type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2132
2376
  interface Metadata {
2133
2377
  /** Schema version. */
2134
2378
  version?: number;
@@ -3917,14 +4161,13 @@ declare function onPostUpdated(handler: (event: PostUpdatedEnvelope) => void | P
3917
4161
  /**
3918
4162
  * Retrieves the number of published posts per month within a specified time range.
3919
4163
  *
3920
- *
3921
- * The `queryPostCountStats()` function returns a Promise that resolves to the number of posts per month within the specified time range.
3922
- *
3923
- * You can set the time range using the `rangeStart` and `months` properties. The time range always starts on the 1st day of the month set in `rangeStart` and includes the number of `months` following `rangeStart`. For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`, the time range will be from `'2022-03-01'` until `'2022-06-30'`. The time range ends on the last day of the month.
3924
- *
3925
- * >**Note:** If there are no published posts in a specific month, 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.
4164
+ * The time range is set using the `rangeStart` and `months` properties.
4165
+ * The time range always starts on the 1st day of the month set in `rangeStart` and
4166
+ * includes the number of `months` following `rangeStart`.
4167
+ * For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`,
4168
+ * 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.
4169
+ * > 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.
3926
4170
  * @public
3927
- * @param options - Options specifying time frame, sort, and filter.
3928
4171
  * @permissionId BLOG.READ-PUBLICATION
3929
4172
  * @applicableIdentity APP
3930
4173
  * @returns Get Blog Post Count Stats response
@@ -3965,7 +4208,6 @@ interface QueryPostCountStatsOptions {
3965
4208
  /**
3966
4209
  * Retrieves the total amount of published posts of the blog.
3967
4210
  * @public
3968
- * @param options - Language Options.
3969
4211
  * @permissionId BLOG.READ-PUBLICATION
3970
4212
  * @applicableIdentity APP
3971
4213
  * @fqn com.wixpress.npm.communities.platformized.blog.BlogStatsService.GetTotalPosts
@@ -3986,12 +4228,12 @@ interface GetTotalPostsOptions {
3986
4228
  * @param postId - Post ID.
3987
4229
  * @public
3988
4230
  * @requiredField postId
3989
- * @param options - Options specifying which fields to return.
3990
4231
  * @permissionId BLOG.READ-PUBLICATION
3991
4232
  * @applicableIdentity APP
4233
+ * @returns Retrieved post info.
3992
4234
  * @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPost
3993
4235
  */
3994
- declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<GetPostResponse, `post._id` | `post.title` | `post.excerpt` | `post.slug` | `post.featured` | `post.pinned` | `post.categoryIds` | `post.memberId` | `post.hashtags` | `post.commentingEnabled` | `post.minutesToRead` | `post.tagIds` | `post.relatedPostIds` | `post.pricingPlanIds` | `post.seoData.tags` | `post.seoData.tags.${number}.type` | `post.seoData.tags.${number}.children` | `post.seoData.tags.${number}.custom` | `post.seoData.tags.${number}.disabled` | `post.seoData.settings.preventAutoRedirect` | `post.seoData.settings.keywords` | `post.seoData.settings.keywords.${number}.term` | `post.seoData.settings.keywords.${number}.isMain` | `post.preview` | `post.moderationDetails.submittedBy` | `post.moderationDetails.status` | `post.media.embedMedia.thumbnail.url` | `post.media.embedMedia.thumbnail.width` | `post.media.embedMedia.thumbnail.height` | `post.media.embedMedia.video.url` | `post.media.embedMedia.video.width` | `post.media.embedMedia.video.height` | `post.media.displayed` | `post.media.custom` | `post.hasUnpublishedChanges`, 7>>;
4236
+ 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>>;
3995
4237
  interface GetPostOptions {
3996
4238
  /**
3997
4239
  * List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
@@ -4011,7 +4253,6 @@ interface GetPostOptions {
4011
4253
  * @param slug - Slug of the post to retrieve.
4012
4254
  * @public
4013
4255
  * @requiredField slug
4014
- * @param options - Options specifying which fields to return.
4015
4256
  * @permissionId BLOG.READ-PUBLICATION
4016
4257
  * @applicableIdentity APP
4017
4258
  * @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPostBySlug
@@ -4039,7 +4280,6 @@ interface GetPostBySlugOptions {
4039
4280
  * - `paging.limit` is `50`.
4040
4281
  * - `paging.offset` is `0`.
4041
4282
  * @public
4042
- * @param options - Sort, filter, and paging options.
4043
4283
  * @permissionId BLOG.READ-PUBLICATION
4044
4284
  * @applicableIdentity APP
4045
4285
  * @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.ListPosts
@@ -4110,26 +4350,18 @@ interface ListPostsOptions {
4110
4350
  fieldsets?: PostFieldFieldWithLiterals[];
4111
4351
  }
4112
4352
  /**
4113
- * Creates a query to retrieve a list of posts.
4353
+ * Retrieves a list of up to 100 posts, given the provided paging, filtering, and sorting.
4114
4354
  *
4355
+ * Query Posts runs with these defaults, which you can override:
4356
+ * - `firstPublishedDate` is sorted in descending order, with pinned posts first.
4357
+ * - `paging.limit` is `50`.
4358
+ * - `paging.offset` is `0`.
4115
4359
  *
4116
- * The `queryPosts()` function builds a query to retrieve a list of up to 100 posts, and returns a `PostsQueryBuilder` object.
4117
- *
4118
- * The returned object contains the query definition which is typically used to run the query using the `find()` function.
4119
- *
4120
- * 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.
4121
- *
4122
- * `queryPosts()` runs with these `PostsQueryBuilder` defaults that you can override:
4123
- * + `limit(50)`
4124
- * + `descending('firstPublishedDate')`
4125
- *
4126
- * Note that the default limit is `'50'`, but the max limit is `'100'`.
4127
- *
4128
- * To learn how to query posts, refer to the table below.
4129
- *
4130
- * 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`.
4360
+ * To learn about working with _Query_ endpoints, see
4361
+ * [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language),
4362
+ * [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging), and
4363
+ * [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
4131
4364
  * @public
4132
- * @param options - Options specifying which fields to return.
4133
4365
  * @permissionId BLOG.READ-PUBLICATION
4134
4366
  * @applicableIdentity APP
4135
4367
  * @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.QueryPosts
@@ -4386,7 +4618,7 @@ type PostQuery = {
4386
4618
  };
4387
4619
  declare const utils: {
4388
4620
  query: {
4389
- /** @enumType */
4621
+ /** Data for a spoiler decoration. */
4390
4622
  QueryBuilder: () => _wix_sdk_types.QueryBuilder<Post, PostQuerySpec, PostQuery>;
4391
4623
  Filter: _wix_sdk_types.FilterFactory<Post, PostQuerySpec>;
4392
4624
  Sort: _wix_sdk_types.SortFactory<PostQuerySpec>;
@@ -4405,4 +4637,4 @@ declare const utils: {
4405
4637
  */
4406
4638
  declare function getPostMetrics(postId: string): Promise<NonNullablePaths<GetPostMetricsResponse, `metrics.comments` | `metrics.likes` | `metrics.views`, 3>>;
4407
4639
 
4408
- 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 BackgroundBackgroundOneOf, 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 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, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPostsCopied, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, 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, 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 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 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, 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 };
4640
+ 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 };