@wix/auto_sdk_blog_draft-posts 1.0.76 → 1.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +1017 -36
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +270 -26
  5. package/build/cjs/index.typings.js +857 -26
  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 +857 -26
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +1008 -36
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +270 -26
  14. package/build/es/index.typings.mjs +848 -26
  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 +848 -26
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +1017 -36
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +270 -26
  23. package/build/internal/cjs/index.typings.js +857 -26
  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 +857 -26
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +1008 -36
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +270 -26
  32. package/build/internal/es/index.typings.mjs +848 -26
  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 +848 -26
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -288,6 +288,10 @@ interface Node extends NodeDataOneOf {
288
288
  layoutCellData?: LayoutCellData;
289
289
  /** Data for a shape node. */
290
290
  shapeData?: ShapeData;
291
+ /** Data for a card node. */
292
+ cardData?: CardData;
293
+ /** Data for a table of contents node. */
294
+ tocData?: TocData;
291
295
  /** 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. */
292
296
  type?: NodeTypeWithLiterals;
293
297
  /** Node ID. */
@@ -357,6 +361,10 @@ interface NodeDataOneOf {
357
361
  layoutCellData?: LayoutCellData;
358
362
  /** Data for a shape node. */
359
363
  shapeData?: ShapeData;
364
+ /** Data for a card node. */
365
+ cardData?: CardData;
366
+ /** Data for a table of contents node. */
367
+ tocData?: TocData;
360
368
  }
361
369
  declare enum NodeType {
362
370
  PARAGRAPH = "PARAGRAPH",
@@ -393,10 +401,12 @@ declare enum NodeType {
393
401
  CAPTION = "CAPTION",
394
402
  LAYOUT = "LAYOUT",
395
403
  LAYOUT_CELL = "LAYOUT_CELL",
396
- SHAPE = "SHAPE"
404
+ SHAPE = "SHAPE",
405
+ CARD = "CARD",
406
+ TOC = "TOC"
397
407
  }
398
408
  /** @enumType */
399
- 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';
409
+ 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';
400
410
  interface NodeStyle {
401
411
  /** The top padding value in pixels. */
402
412
  paddingTop?: string | null;
@@ -417,6 +427,55 @@ interface ButtonData {
417
427
  /** Button link details. */
418
428
  link?: Link;
419
429
  }
430
+ /** Background type */
431
+ declare enum BackgroundType {
432
+ /** Solid color background */
433
+ COLOR = "COLOR",
434
+ /** Gradient background */
435
+ GRADIENT = "GRADIENT"
436
+ }
437
+ /** @enumType */
438
+ type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
439
+ interface Gradient {
440
+ /** Gradient type. */
441
+ type?: GradientTypeWithLiterals;
442
+ /**
443
+ * Color stops for the gradient.
444
+ * @maxSize 1000
445
+ */
446
+ stops?: Stop[];
447
+ /** Angle in degrees for linear gradient (0-360). */
448
+ angle?: number | null;
449
+ /**
450
+ * Horizontal center position for radial gradient (0-100).
451
+ * @max 100
452
+ */
453
+ centerX?: number | null;
454
+ /**
455
+ * Vertical center position for radial gradient (0-100).
456
+ * @max 100
457
+ */
458
+ centerY?: number | null;
459
+ }
460
+ /** Gradient type. */
461
+ declare enum GradientType {
462
+ /** Linear gradient. */
463
+ LINEAR = "LINEAR",
464
+ /** Radial gradient. */
465
+ RADIAL = "RADIAL"
466
+ }
467
+ /** @enumType */
468
+ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
469
+ /** A single color stop in the gradient. */
470
+ interface Stop {
471
+ /**
472
+ * Stop color as hex value.
473
+ * @format COLOR_HEX
474
+ */
475
+ color?: string | null;
476
+ /** Stop position (0-1). */
477
+ position?: number | null;
478
+ }
420
479
  interface Border {
421
480
  /**
422
481
  * Deprecated: Use `borderWidth` in `styles` instead.
@@ -446,6 +505,18 @@ interface Colors {
446
505
  */
447
506
  background?: string | null;
448
507
  }
508
+ /** Background styling (color or gradient) */
509
+ interface Background {
510
+ /** Background type. */
511
+ type?: BackgroundTypeWithLiterals;
512
+ /**
513
+ * Background color as a hexadecimal value.
514
+ * @format COLOR_HEX
515
+ */
516
+ color?: string | null;
517
+ /** Gradient configuration. */
518
+ gradient?: Gradient;
519
+ }
449
520
  interface PluginContainerData {
450
521
  /** The width of the node when it's displayed. */
451
522
  width?: PluginContainerDataWidth;
@@ -566,17 +637,23 @@ interface Styles {
566
637
  */
567
638
  textColorHover?: string | null;
568
639
  /**
569
- * Background color as a hexadecimal value.
640
+ * Deprecated: Use `background` instead.
570
641
  * @format COLOR_HEX
642
+ * @deprecated
571
643
  */
572
644
  backgroundColor?: string | null;
573
645
  /**
574
- * Background color as a hexadecimal value (hover state).
646
+ * Deprecated: Use `backgroundHover` instead.
575
647
  * @format COLOR_HEX
648
+ * @deprecated
576
649
  */
577
650
  backgroundColorHover?: string | null;
578
651
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
579
652
  buttonSize?: string | null;
653
+ /** Background styling (color or gradient). */
654
+ background?: Background;
655
+ /** Background styling for hover state (color or gradient). */
656
+ backgroundHover?: Background;
580
657
  }
581
658
  interface Link extends LinkDataOneOf {
582
659
  /** The absolute URL for the linked document. */
@@ -958,6 +1035,8 @@ interface HTMLData extends HTMLDataDataOneOf {
958
1035
  * @deprecated
959
1036
  */
960
1037
  isAdsense?: boolean | null;
1038
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1039
+ widgetId?: string;
961
1040
  /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
962
1041
  containerData?: PluginContainerData;
963
1042
  /** The type of HTML code. */
@@ -976,14 +1055,17 @@ interface HTMLDataDataOneOf {
976
1055
  * @deprecated
977
1056
  */
978
1057
  isAdsense?: boolean | null;
1058
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1059
+ widgetId?: string;
979
1060
  }
980
1061
  declare enum Source {
981
1062
  HTML = "HTML",
982
1063
  ADSENSE = "ADSENSE",
983
- AI = "AI"
1064
+ AI = "AI",
1065
+ AI_WIDGET = "AI_WIDGET"
984
1066
  }
985
1067
  /** @enumType */
986
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
1068
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
987
1069
  interface ImageData {
988
1070
  /** Styling for the image's container. */
989
1071
  containerData?: PluginContainerData;
@@ -1213,7 +1295,7 @@ interface OptionLayout {
1213
1295
  /** Sets whether to display option images. Defaults to `false`. */
1214
1296
  enableImage?: boolean | null;
1215
1297
  }
1216
- declare enum BackgroundType {
1298
+ declare enum PollDesignBackgroundType {
1217
1299
  /** Color background type */
1218
1300
  COLOR = "COLOR",
1219
1301
  /** Image background type */
@@ -1222,8 +1304,8 @@ declare enum BackgroundType {
1222
1304
  GRADIENT = "GRADIENT"
1223
1305
  }
1224
1306
  /** @enumType */
1225
- type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1226
- interface Gradient {
1307
+ type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1308
+ interface BackgroundGradient {
1227
1309
  /** The gradient angle in degrees. */
1228
1310
  angle?: number | null;
1229
1311
  /**
@@ -1237,7 +1319,7 @@ interface Gradient {
1237
1319
  */
1238
1320
  lastColor?: string | null;
1239
1321
  }
1240
- interface Background extends BackgroundBackgroundOneOf {
1322
+ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1241
1323
  /**
1242
1324
  * The background color as a hexademical value.
1243
1325
  * @format COLOR_HEX
@@ -1246,12 +1328,12 @@ interface Background extends BackgroundBackgroundOneOf {
1246
1328
  /** An image to use for the background. */
1247
1329
  image?: V1Media;
1248
1330
  /** Details for a gradient background. */
1249
- gradient?: Gradient;
1331
+ gradient?: BackgroundGradient;
1250
1332
  /** Background type. For each option, include the relevant details. */
1251
- type?: BackgroundTypeWithLiterals;
1333
+ type?: PollDesignBackgroundTypeWithLiterals;
1252
1334
  }
1253
1335
  /** @oneof */
1254
- interface BackgroundBackgroundOneOf {
1336
+ interface PollDesignBackgroundBackgroundOneOf {
1255
1337
  /**
1256
1338
  * The background color as a hexademical value.
1257
1339
  * @format COLOR_HEX
@@ -1260,11 +1342,11 @@ interface BackgroundBackgroundOneOf {
1260
1342
  /** An image to use for the background. */
1261
1343
  image?: V1Media;
1262
1344
  /** Details for a gradient background. */
1263
- gradient?: Gradient;
1345
+ gradient?: BackgroundGradient;
1264
1346
  }
1265
1347
  interface PollDesign {
1266
1348
  /** Background styling. */
1267
- background?: Background;
1349
+ background?: PollDesignBackground;
1268
1350
  /** Border radius in pixels. */
1269
1351
  borderRadius?: number | null;
1270
1352
  }
@@ -1947,12 +2029,13 @@ interface CaptionData {
1947
2029
  }
1948
2030
  interface LayoutData {
1949
2031
  /**
1950
- * Background color as a hexadecimal value.
2032
+ * Deprecated: Use `background` instead.
1951
2033
  * @format COLOR_HEX
2034
+ * @deprecated
1952
2035
  */
1953
2036
  backgroundColor?: string | null;
1954
2037
  /** Background image. */
1955
- backgroundImage?: BackgroundImage;
2038
+ backgroundImage?: LayoutDataBackgroundImage;
1956
2039
  /**
1957
2040
  * Border color as a hexadecimal value.
1958
2041
  * @format COLOR_HEX
@@ -1960,15 +2043,16 @@ interface LayoutData {
1960
2043
  borderColor?: string | null;
1961
2044
  /** Border width in pixels. */
1962
2045
  borderWidth?: number | null;
1963
- /** Border */
2046
+ /** Border radius in pixels. */
1964
2047
  borderRadius?: number | null;
1965
2048
  /**
1966
- * Backdrop color as a hexadecimal value.
2049
+ * Deprecated: Use `backdrop` instead.
1967
2050
  * @format COLOR_HEX
2051
+ * @deprecated
1968
2052
  */
1969
2053
  backdropColor?: string | null;
1970
- /** Backdrop image.radius in pixels. */
1971
- backdropImage?: BackgroundImage;
2054
+ /** Backdrop image. */
2055
+ backdropImage?: LayoutDataBackgroundImage;
1972
2056
  /** Backdrop top padding. */
1973
2057
  backdropPaddingTop?: number | null;
1974
2058
  /** Backdrop bottom padding */
@@ -1992,8 +2076,12 @@ interface LayoutData {
1992
2076
  designTarget?: DesignTargetWithLiterals;
1993
2077
  /** Banner configuration. When present, this layout is displayed as a banner. */
1994
2078
  banner?: Banner;
2079
+ /** Background styling (color or gradient). */
2080
+ background?: LayoutDataBackground;
2081
+ /** Backdrop styling (color or gradient). */
2082
+ backdrop?: Backdrop;
1995
2083
  }
1996
- declare enum Scaling {
2084
+ declare enum ImageScalingScaling {
1997
2085
  /** Auto image scaling */
1998
2086
  AUTO = "AUTO",
1999
2087
  /** Contain image scaling */
@@ -2002,7 +2090,7 @@ declare enum Scaling {
2002
2090
  COVER = "COVER"
2003
2091
  }
2004
2092
  /** @enumType */
2005
- type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2093
+ type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
2006
2094
  declare enum ImagePosition {
2007
2095
  /** Image positioned at the center */
2008
2096
  CENTER = "CENTER",
@@ -2033,13 +2121,31 @@ declare enum BannerOrigin {
2033
2121
  }
2034
2122
  /** @enumType */
2035
2123
  type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
2036
- interface BackgroundImage {
2124
+ /** Background type */
2125
+ declare enum LayoutDataBackgroundType {
2126
+ /** Solid color background */
2127
+ COLOR = "COLOR",
2128
+ /** Gradient background */
2129
+ GRADIENT = "GRADIENT"
2130
+ }
2131
+ /** @enumType */
2132
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2133
+ /** Backdrop type */
2134
+ declare enum BackdropType {
2135
+ /** Solid color backdrop */
2136
+ COLOR = "COLOR",
2137
+ /** Gradient backdrop */
2138
+ GRADIENT = "GRADIENT"
2139
+ }
2140
+ /** @enumType */
2141
+ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2142
+ interface LayoutDataBackgroundImage {
2037
2143
  /** Background image. */
2038
2144
  media?: V1Media;
2039
2145
  /** Background image opacity. */
2040
2146
  opacity?: number | null;
2041
2147
  /** Background image scaling. */
2042
- scaling?: ScalingWithLiterals;
2148
+ scaling?: ImageScalingScalingWithLiterals;
2043
2149
  /** Position of background. Defaults to `CENTER`. */
2044
2150
  position?: ImagePositionWithLiterals;
2045
2151
  }
@@ -2073,6 +2179,30 @@ interface Banner {
2073
2179
  /** Origin of the banner */
2074
2180
  origin?: BannerOriginWithLiterals;
2075
2181
  }
2182
+ /** Background styling (color or gradient) */
2183
+ interface LayoutDataBackground {
2184
+ /** Background type. */
2185
+ type?: LayoutDataBackgroundTypeWithLiterals;
2186
+ /**
2187
+ * Background color as a hexadecimal value.
2188
+ * @format COLOR_HEX
2189
+ */
2190
+ color?: string | null;
2191
+ /** Gradient configuration. */
2192
+ gradient?: Gradient;
2193
+ }
2194
+ /** Backdrop styling (color or gradient) */
2195
+ interface Backdrop {
2196
+ /** Backdrop type. */
2197
+ type?: BackdropTypeWithLiterals;
2198
+ /**
2199
+ * Backdrop color as a hexadecimal value.
2200
+ * @format COLOR_HEX
2201
+ */
2202
+ color?: string | null;
2203
+ /** Gradient configuration. */
2204
+ gradient?: Gradient;
2205
+ }
2076
2206
  interface LayoutCellData {
2077
2207
  /** Size of the cell in 12 columns grid. */
2078
2208
  colSpan?: number | null;
@@ -2094,6 +2224,120 @@ interface ShapeDataStyles {
2094
2224
  /** Map of original color keys to their new color values. */
2095
2225
  colors?: Record<string, string>;
2096
2226
  }
2227
+ interface CardData {
2228
+ /** Background styling (color or gradient). */
2229
+ background?: CardDataBackground;
2230
+ /** Background image. */
2231
+ backgroundImage?: BackgroundImage;
2232
+ }
2233
+ declare enum Scaling {
2234
+ /** Auto image scaling */
2235
+ AUTO = "AUTO",
2236
+ /** Contain image scaling */
2237
+ CONTAIN = "CONTAIN",
2238
+ /** Cover image scaling */
2239
+ COVER = "COVER"
2240
+ }
2241
+ /** @enumType */
2242
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2243
+ declare enum ImagePositionPosition {
2244
+ /** Image positioned at the center */
2245
+ CENTER = "CENTER",
2246
+ /** Image positioned on the left */
2247
+ CENTER_LEFT = "CENTER_LEFT",
2248
+ /** Image positioned on the right */
2249
+ CENTER_RIGHT = "CENTER_RIGHT",
2250
+ /** Image positioned at the center top */
2251
+ TOP = "TOP",
2252
+ /** Image positioned at the top left */
2253
+ TOP_LEFT = "TOP_LEFT",
2254
+ /** Image positioned at the top right */
2255
+ TOP_RIGHT = "TOP_RIGHT",
2256
+ /** Image positioned at the center bottom */
2257
+ BOTTOM = "BOTTOM",
2258
+ /** Image positioned at the bottom left */
2259
+ BOTTOM_LEFT = "BOTTOM_LEFT",
2260
+ /** Image positioned at the bottom right */
2261
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
2262
+ }
2263
+ /** @enumType */
2264
+ type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2265
+ /** Background type */
2266
+ declare enum CardDataBackgroundType {
2267
+ /** Solid color background */
2268
+ COLOR = "COLOR",
2269
+ /** Gradient background */
2270
+ GRADIENT = "GRADIENT"
2271
+ }
2272
+ /** @enumType */
2273
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2274
+ /** Background styling (color or gradient) */
2275
+ interface CardDataBackground {
2276
+ /** Background type. */
2277
+ type?: CardDataBackgroundTypeWithLiterals;
2278
+ /**
2279
+ * Background color as a hexadecimal value.
2280
+ * @format COLOR_HEX
2281
+ */
2282
+ color?: string | null;
2283
+ /** Gradient configuration. */
2284
+ gradient?: Gradient;
2285
+ }
2286
+ interface BackgroundImage {
2287
+ /** Background image. */
2288
+ media?: V1Media;
2289
+ /** Background image opacity. */
2290
+ opacity?: number | null;
2291
+ /** Background image scaling. */
2292
+ scaling?: ScalingWithLiterals;
2293
+ /** Position of background. Defaults to `CENTER`. */
2294
+ position?: ImagePositionPositionWithLiterals;
2295
+ }
2296
+ interface TocData {
2297
+ /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
2298
+ includedHeadings?: number[];
2299
+ /** List style. Default: PLAIN. */
2300
+ listStyle?: ListStyleWithLiterals;
2301
+ /** Optional override for the font size in pixels. */
2302
+ fontSize?: number | null;
2303
+ /** Optional override for the vertical spacing between items in pixels. */
2304
+ itemSpacing?: number | null;
2305
+ /**
2306
+ * Optional override for the text color.
2307
+ * @format COLOR_HEX
2308
+ */
2309
+ color?: string | null;
2310
+ /** Indentation style. Default: NESTED. */
2311
+ indentation?: IndentationWithLiterals;
2312
+ }
2313
+ /** List style. */
2314
+ declare enum ListStyle {
2315
+ /** No markers (default) */
2316
+ PLAIN = "PLAIN",
2317
+ /** Numbered list */
2318
+ NUMBERED = "NUMBERED",
2319
+ /** Alphabetic letters */
2320
+ LETTERS = "LETTERS",
2321
+ /** Roman numerals */
2322
+ ROMAN = "ROMAN",
2323
+ /** Bulleted list */
2324
+ BULLETED = "BULLETED",
2325
+ /** Alphabetical index */
2326
+ ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
2327
+ /** Alphabetical index (compact top-row only) */
2328
+ ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
2329
+ }
2330
+ /** @enumType */
2331
+ type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
2332
+ /** Indentation style. */
2333
+ declare enum Indentation {
2334
+ /** Sub-headings indented under parents (default) */
2335
+ NESTED = "NESTED",
2336
+ /** All items at the same level */
2337
+ FLAT = "FLAT"
2338
+ }
2339
+ /** @enumType */
2340
+ type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2097
2341
  interface Metadata {
2098
2342
  /** Schema version. */
2099
2343
  version?: number;
@@ -4107,4 +4351,4 @@ declare const utils: {
4107
4351
  */
4108
4352
  declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
4109
4353
 
4110
- export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, 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 BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, 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 GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, 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, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, 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, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, 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 PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, 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 TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
4354
+ export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, 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 BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, 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 GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, 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, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, 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, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, 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 PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, 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 TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };