@wix/auto_sdk_comments_comments 1.0.53 → 1.0.54

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 +283 -42
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +232 -177
  5. package/build/cjs/index.typings.js +193 -42
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +232 -177
  8. package/build/cjs/meta.js +193 -42
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +281 -42
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +232 -177
  14. package/build/es/index.typings.mjs +191 -42
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +232 -177
  17. package/build/es/meta.mjs +191 -42
  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 +283 -42
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +232 -177
  23. package/build/internal/cjs/index.typings.js +193 -42
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +232 -177
  26. package/build/internal/cjs/meta.js +193 -42
  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 +281 -42
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +232 -177
  32. package/build/internal/es/index.typings.mjs +191 -42
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +232 -177
  35. package/build/internal/es/meta.mjs +191 -42
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -203,6 +203,8 @@ interface Node extends NodeDataOneOf {
203
203
  shapeData?: ShapeData;
204
204
  /** Data for a card node. */
205
205
  cardData?: CardData;
206
+ /** Data for a table of contents node. */
207
+ tocData?: TocData;
206
208
  /** 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. */
207
209
  type?: NodeTypeWithLiterals;
208
210
  /** Node ID. */
@@ -274,6 +276,8 @@ interface NodeDataOneOf {
274
276
  shapeData?: ShapeData;
275
277
  /** Data for a card node. */
276
278
  cardData?: CardData;
279
+ /** Data for a table of contents node. */
280
+ tocData?: TocData;
277
281
  }
278
282
  declare enum NodeType {
279
283
  PARAGRAPH = "PARAGRAPH",
@@ -311,10 +315,11 @@ declare enum NodeType {
311
315
  LAYOUT = "LAYOUT",
312
316
  LAYOUT_CELL = "LAYOUT_CELL",
313
317
  SHAPE = "SHAPE",
314
- CARD = "CARD"
318
+ CARD = "CARD",
319
+ TOC = "TOC"
315
320
  }
316
321
  /** @enumType */
317
- 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';
322
+ 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';
318
323
  interface NodeStyle {
319
324
  /** The top padding value in pixels. */
320
325
  paddingTop?: string | null;
@@ -335,6 +340,55 @@ interface ButtonData {
335
340
  /** Button link details. */
336
341
  link?: Link;
337
342
  }
343
+ /** Background type */
344
+ declare enum BackgroundType {
345
+ /** Solid color background */
346
+ COLOR = "COLOR",
347
+ /** Gradient background */
348
+ GRADIENT = "GRADIENT"
349
+ }
350
+ /** @enumType */
351
+ type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
352
+ interface Gradient {
353
+ /** Gradient type. */
354
+ type?: GradientTypeWithLiterals;
355
+ /**
356
+ * Color stops for the gradient.
357
+ * @maxSize 1000
358
+ */
359
+ stops?: Stop[];
360
+ /** Angle in degrees for linear gradient (0-360). */
361
+ angle?: number | null;
362
+ /**
363
+ * Horizontal center position for radial gradient (0-100).
364
+ * @max 100
365
+ */
366
+ centerX?: number | null;
367
+ /**
368
+ * Vertical center position for radial gradient (0-100).
369
+ * @max 100
370
+ */
371
+ centerY?: number | null;
372
+ }
373
+ /** Gradient type. */
374
+ declare enum GradientType {
375
+ /** Linear gradient. */
376
+ LINEAR = "LINEAR",
377
+ /** Radial gradient. */
378
+ RADIAL = "RADIAL"
379
+ }
380
+ /** @enumType */
381
+ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
382
+ /** A single color stop in the gradient. */
383
+ interface Stop {
384
+ /**
385
+ * Stop color as hex value.
386
+ * @format COLOR_HEX
387
+ */
388
+ color?: string | null;
389
+ /** Stop position (0-1). */
390
+ position?: number | null;
391
+ }
338
392
  interface Border {
339
393
  /**
340
394
  * Deprecated: Use `borderWidth` in `styles` instead.
@@ -364,6 +418,18 @@ interface Colors {
364
418
  */
365
419
  background?: string | null;
366
420
  }
421
+ /** Background styling (color or gradient) */
422
+ interface Background {
423
+ /** Background type. */
424
+ type?: BackgroundTypeWithLiterals;
425
+ /**
426
+ * Background color as a hexadecimal value.
427
+ * @format COLOR_HEX
428
+ */
429
+ color?: string | null;
430
+ /** Gradient configuration. */
431
+ gradient?: Gradient;
432
+ }
367
433
  interface PluginContainerData {
368
434
  /** The width of the node when it's displayed. */
369
435
  width?: PluginContainerDataWidth;
@@ -882,6 +948,8 @@ interface HTMLData extends HTMLDataDataOneOf {
882
948
  * @deprecated
883
949
  */
884
950
  isAdsense?: boolean | null;
951
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
952
+ widgetId?: string;
885
953
  /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
886
954
  containerData?: PluginContainerData;
887
955
  /** The type of HTML code. */
@@ -900,14 +968,17 @@ interface HTMLDataDataOneOf {
900
968
  * @deprecated
901
969
  */
902
970
  isAdsense?: boolean | null;
971
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
972
+ widgetId?: string;
903
973
  }
904
974
  declare enum Source {
905
975
  HTML = "HTML",
906
976
  ADSENSE = "ADSENSE",
907
- AI = "AI"
977
+ AI = "AI",
978
+ AI_WIDGET = "AI_WIDGET"
908
979
  }
909
980
  /** @enumType */
910
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
981
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
911
982
  interface ImageData {
912
983
  /** Styling for the image's container. */
913
984
  containerData?: PluginContainerData;
@@ -1963,6 +2034,24 @@ declare enum Origin {
1963
2034
  }
1964
2035
  /** @enumType */
1965
2036
  type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
2037
+ /** Background type */
2038
+ declare enum LayoutDataBackgroundType {
2039
+ /** Solid color background */
2040
+ COLOR = "COLOR",
2041
+ /** Gradient background */
2042
+ GRADIENT = "GRADIENT"
2043
+ }
2044
+ /** @enumType */
2045
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2046
+ /** Backdrop type */
2047
+ declare enum BackdropType {
2048
+ /** Solid color backdrop */
2049
+ COLOR = "COLOR",
2050
+ /** Gradient backdrop */
2051
+ GRADIENT = "GRADIENT"
2052
+ }
2053
+ /** @enumType */
2054
+ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
1966
2055
  interface LayoutDataBackgroundImage {
1967
2056
  /** Background image. */
1968
2057
  media?: Media;
@@ -2003,6 +2092,30 @@ interface Banner {
2003
2092
  /** Origin of the banner */
2004
2093
  origin?: OriginWithLiterals;
2005
2094
  }
2095
+ /** Background styling (color or gradient) */
2096
+ interface LayoutDataBackground {
2097
+ /** Background type. */
2098
+ type?: LayoutDataBackgroundTypeWithLiterals;
2099
+ /**
2100
+ * Background color as a hexadecimal value.
2101
+ * @format COLOR_HEX
2102
+ */
2103
+ color?: string | null;
2104
+ /** Gradient configuration. */
2105
+ gradient?: Gradient;
2106
+ }
2107
+ /** Backdrop styling (color or gradient) */
2108
+ interface Backdrop {
2109
+ /** Backdrop type. */
2110
+ type?: BackdropTypeWithLiterals;
2111
+ /**
2112
+ * Backdrop color as a hexadecimal value.
2113
+ * @format COLOR_HEX
2114
+ */
2115
+ color?: string | null;
2116
+ /** Gradient configuration. */
2117
+ gradient?: Gradient;
2118
+ }
2006
2119
  interface LayoutCellData {
2007
2120
  /** Size of the cell in 12 columns grid. */
2008
2121
  colSpan?: number | null;
@@ -2024,6 +2137,120 @@ interface ShapeDataStyles {
2024
2137
  /** Map of original color keys to their new color values. */
2025
2138
  colors?: Record<string, string>;
2026
2139
  }
2140
+ interface CardData {
2141
+ /** Background styling (color or gradient). */
2142
+ background?: CardDataBackground;
2143
+ /** Background image. */
2144
+ backgroundImage?: BackgroundImage;
2145
+ }
2146
+ declare enum Scaling {
2147
+ /** Auto image scaling */
2148
+ AUTO = "AUTO",
2149
+ /** Contain image scaling */
2150
+ CONTAIN = "CONTAIN",
2151
+ /** Cover image scaling */
2152
+ COVER = "COVER"
2153
+ }
2154
+ /** @enumType */
2155
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2156
+ declare enum ImagePositionPosition {
2157
+ /** Image positioned at the center */
2158
+ CENTER = "CENTER",
2159
+ /** Image positioned on the left */
2160
+ CENTER_LEFT = "CENTER_LEFT",
2161
+ /** Image positioned on the right */
2162
+ CENTER_RIGHT = "CENTER_RIGHT",
2163
+ /** Image positioned at the center top */
2164
+ TOP = "TOP",
2165
+ /** Image positioned at the top left */
2166
+ TOP_LEFT = "TOP_LEFT",
2167
+ /** Image positioned at the top right */
2168
+ TOP_RIGHT = "TOP_RIGHT",
2169
+ /** Image positioned at the center bottom */
2170
+ BOTTOM = "BOTTOM",
2171
+ /** Image positioned at the bottom left */
2172
+ BOTTOM_LEFT = "BOTTOM_LEFT",
2173
+ /** Image positioned at the bottom right */
2174
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
2175
+ }
2176
+ /** @enumType */
2177
+ type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2178
+ /** Background type */
2179
+ declare enum CardDataBackgroundType {
2180
+ /** Solid color background */
2181
+ COLOR = "COLOR",
2182
+ /** Gradient background */
2183
+ GRADIENT = "GRADIENT"
2184
+ }
2185
+ /** @enumType */
2186
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2187
+ /** Background styling (color or gradient) */
2188
+ interface CardDataBackground {
2189
+ /** Background type. */
2190
+ type?: CardDataBackgroundTypeWithLiterals;
2191
+ /**
2192
+ * Background color as a hexadecimal value.
2193
+ * @format COLOR_HEX
2194
+ */
2195
+ color?: string | null;
2196
+ /** Gradient configuration. */
2197
+ gradient?: Gradient;
2198
+ }
2199
+ interface BackgroundImage {
2200
+ /** Background image. */
2201
+ media?: Media;
2202
+ /** Background image opacity. */
2203
+ opacity?: number | null;
2204
+ /** Background image scaling. */
2205
+ scaling?: ScalingWithLiterals;
2206
+ /** Position of background. Defaults to `CENTER`. */
2207
+ position?: ImagePositionPositionWithLiterals;
2208
+ }
2209
+ interface TocData {
2210
+ /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
2211
+ includedHeadings?: number[];
2212
+ /** List style. Default: PLAIN. */
2213
+ listStyle?: ListStyleWithLiterals;
2214
+ /** Optional override for the font size in pixels. */
2215
+ fontSize?: number | null;
2216
+ /** Optional override for the vertical spacing between items in pixels. */
2217
+ itemSpacing?: number | null;
2218
+ /**
2219
+ * Optional override for the text color.
2220
+ * @format COLOR_HEX
2221
+ */
2222
+ color?: string | null;
2223
+ /** Indentation style. Default: NESTED. */
2224
+ indentation?: IndentationWithLiterals;
2225
+ }
2226
+ /** List style. */
2227
+ declare enum ListStyle {
2228
+ /** No markers (default) */
2229
+ PLAIN = "PLAIN",
2230
+ /** Numbered list */
2231
+ NUMBERED = "NUMBERED",
2232
+ /** Alphabetic letters */
2233
+ LETTERS = "LETTERS",
2234
+ /** Roman numerals */
2235
+ ROMAN = "ROMAN",
2236
+ /** Bulleted list */
2237
+ BULLETED = "BULLETED",
2238
+ /** Alphabetical index */
2239
+ ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
2240
+ /** Alphabetical index (compact top-row only) */
2241
+ ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
2242
+ }
2243
+ /** @enumType */
2244
+ type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
2245
+ /** Indentation style. */
2246
+ declare enum Indentation {
2247
+ /** Sub-headings indented under parents (default) */
2248
+ NESTED = "NESTED",
2249
+ /** All items at the same level */
2250
+ FLAT = "FLAT"
2251
+ }
2252
+ /** @enumType */
2253
+ type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2027
2254
  interface Metadata {
2028
2255
  /** Schema version. */
2029
2256
  version?: number;
@@ -2634,178 +2861,6 @@ interface AccountInfo {
2634
2861
  */
2635
2862
  siteId?: string | null;
2636
2863
  }
2637
- /** Background type */
2638
- declare enum BackgroundType {
2639
- /** Solid color background */
2640
- COLOR = "COLOR",
2641
- /** Gradient background */
2642
- GRADIENT = "GRADIENT"
2643
- }
2644
- /** @enumType */
2645
- type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
2646
- interface Gradient {
2647
- /** Gradient type. */
2648
- type?: GradientTypeWithLiterals;
2649
- /**
2650
- * Color stops for the gradient.
2651
- * @maxSize 1000
2652
- */
2653
- stops?: Stop[];
2654
- /** Angle in degrees for linear gradient (0-360). */
2655
- angle?: number | null;
2656
- /**
2657
- * Horizontal center position for radial gradient (0-100).
2658
- * @max 100
2659
- */
2660
- centerX?: number | null;
2661
- /**
2662
- * Vertical center position for radial gradient (0-100).
2663
- * @max 100
2664
- */
2665
- centerY?: number | null;
2666
- }
2667
- /** Gradient type. */
2668
- declare enum GradientType {
2669
- /** Linear gradient. */
2670
- LINEAR = "LINEAR",
2671
- /** Radial gradient. */
2672
- RADIAL = "RADIAL"
2673
- }
2674
- /** @enumType */
2675
- type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
2676
- /** A single color stop in the gradient. */
2677
- interface Stop {
2678
- /**
2679
- * Stop color as hex value.
2680
- * @format COLOR_HEX
2681
- */
2682
- color?: string | null;
2683
- /** Stop position (0-1). */
2684
- position?: number | null;
2685
- }
2686
- /** Background styling (color or gradient) */
2687
- interface Background {
2688
- /** Background type. */
2689
- type?: BackgroundTypeWithLiterals;
2690
- /**
2691
- * Background color as a hexadecimal value.
2692
- * @format COLOR_HEX
2693
- */
2694
- color?: string | null;
2695
- /** Gradient configuration. */
2696
- gradient?: Gradient;
2697
- }
2698
- /** Background type */
2699
- declare enum LayoutDataBackgroundType {
2700
- /** Solid color background */
2701
- COLOR = "COLOR",
2702
- /** Gradient background */
2703
- GRADIENT = "GRADIENT"
2704
- }
2705
- /** @enumType */
2706
- type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2707
- /** Backdrop type */
2708
- declare enum BackdropType {
2709
- /** Solid color backdrop */
2710
- COLOR = "COLOR",
2711
- /** Gradient backdrop */
2712
- GRADIENT = "GRADIENT"
2713
- }
2714
- /** @enumType */
2715
- type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2716
- /** Background styling (color or gradient) */
2717
- interface LayoutDataBackground {
2718
- /** Background type. */
2719
- type?: LayoutDataBackgroundTypeWithLiterals;
2720
- /**
2721
- * Background color as a hexadecimal value.
2722
- * @format COLOR_HEX
2723
- */
2724
- color?: string | null;
2725
- /** Gradient configuration. */
2726
- gradient?: Gradient;
2727
- }
2728
- /** Backdrop styling (color or gradient) */
2729
- interface Backdrop {
2730
- /** Backdrop type. */
2731
- type?: BackdropTypeWithLiterals;
2732
- /**
2733
- * Backdrop color as a hexadecimal value.
2734
- * @format COLOR_HEX
2735
- */
2736
- color?: string | null;
2737
- /** Gradient configuration. */
2738
- gradient?: Gradient;
2739
- }
2740
- interface CardData {
2741
- /** Background styling (color or gradient). */
2742
- background?: CardDataBackground;
2743
- /** Background image. */
2744
- backgroundImage?: BackgroundImage;
2745
- }
2746
- declare enum Scaling {
2747
- /** Auto image scaling */
2748
- AUTO = "AUTO",
2749
- /** Contain image scaling */
2750
- CONTAIN = "CONTAIN",
2751
- /** Cover image scaling */
2752
- COVER = "COVER"
2753
- }
2754
- /** @enumType */
2755
- type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2756
- declare enum ImagePositionPosition {
2757
- /** Image positioned at the center */
2758
- CENTER = "CENTER",
2759
- /** Image positioned on the left */
2760
- CENTER_LEFT = "CENTER_LEFT",
2761
- /** Image positioned on the right */
2762
- CENTER_RIGHT = "CENTER_RIGHT",
2763
- /** Image positioned at the center top */
2764
- TOP = "TOP",
2765
- /** Image positioned at the top left */
2766
- TOP_LEFT = "TOP_LEFT",
2767
- /** Image positioned at the top right */
2768
- TOP_RIGHT = "TOP_RIGHT",
2769
- /** Image positioned at the center bottom */
2770
- BOTTOM = "BOTTOM",
2771
- /** Image positioned at the bottom left */
2772
- BOTTOM_LEFT = "BOTTOM_LEFT",
2773
- /** Image positioned at the bottom right */
2774
- BOTTOM_RIGHT = "BOTTOM_RIGHT"
2775
- }
2776
- /** @enumType */
2777
- type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2778
- /** Background type */
2779
- declare enum CardDataBackgroundType {
2780
- /** Solid color background */
2781
- COLOR = "COLOR",
2782
- /** Gradient background */
2783
- GRADIENT = "GRADIENT"
2784
- }
2785
- /** @enumType */
2786
- type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2787
- /** Background styling (color or gradient) */
2788
- interface CardDataBackground {
2789
- /** Background type. */
2790
- type?: CardDataBackgroundTypeWithLiterals;
2791
- /**
2792
- * Background color as a hexadecimal value.
2793
- * @format COLOR_HEX
2794
- */
2795
- color?: string | null;
2796
- /** Gradient configuration. */
2797
- gradient?: Gradient;
2798
- }
2799
- interface BackgroundImage {
2800
- /** Background image. */
2801
- media?: Media;
2802
- /** Background image opacity. */
2803
- opacity?: number | null;
2804
- /** Background image scaling. */
2805
- scaling?: ScalingWithLiterals;
2806
- /** Position of background. Defaults to `CENTER`. */
2807
- position?: ImagePositionPositionWithLiterals;
2808
- }
2809
2864
  interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
2810
2865
  /** insert/update documents */
2811
2866
  update?: InternalDocumentUpdateOperation;
@@ -4331,4 +4386,4 @@ interface BulkMoveCommentByFilterOptions {
4331
4386
  destination?: Destination;
4332
4387
  }
4333
4388
 
4334
- export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Attachment, type AttachmentMediaOneOf, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkDeleteCommentOptions, type BulkDeleteCommentRequest, type BulkDeleteCommentResponse, type BulkHideCommentOptions, type BulkHideCommentRequest, type BulkHideCommentResponse, type BulkModerateDraftContentOptions, type BulkModerateDraftContentRequest, type BulkModerateDraftContentResponse, type BulkMoveCommentByFilterOptions, type BulkMoveCommentByFilterRequest, type BulkMoveCommentByFilterResponse, type BulkPublishCommentOptions, type BulkPublishCommentRequest, type BulkPublishCommentResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type Comment, type CommentAuthor, type CommentAuthorIdentityOneOf, type CommentContent, type CommentContentChanged, type CommentContentChangedEnvelope, type CommentCreatedEnvelope, type CommentDeleted, type CommentDeletedEnvelope, type CommentHidden, type CommentHiddenEnvelope, type CommentMarked, type CommentMarkedEnvelope, type CommentModerated, type CommentMoved, type CommentMovedEnvelope, type CommentPublished, type CommentPublishedEnvelope, type CommentQuery, type CommentQuerySpec, type CommentReactionSummary, type CommentResourceCommentCountChangedEnvelope, type CommentSort, type CommentUnmarked, type CommentUnmarkedEnvelope, type CommentUpdatedEnvelope, type CommentsQueryBuilder, type CommentsQueryResult, type CommonQueryWithEntityContext, type ContactDetails, type ContentAuthor, type ContentAuthorAuthorOneOf, type CountCommentsApplicationErrors, type CountCommentsOptions, type CountCommentsRequest, type CountCommentsResponse, type CreateCommentApplicationErrors, type CreateCommentRequest, type CreateCommentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomTag, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteByFilterOperation, type DeleteByIdsOperation, type DeleteCommentRequest, type DeleteCommentResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Destination, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetCommentRequest, type GetCommentResponse, type GetCommentThreadOptions, type GetCommentThreadRequest, type GetCommentThreadResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type HideCommentRequest, type HideCommentResponse, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InternalDocument, type InternalDocumentUpdateByFilterOperation, type InternalDocumentUpdateOperation, type InternalUpdateExistingOperation, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, 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 ListCommentsByResourceCursorPaging, type ListCommentsByResourceOptions, type ListCommentsByResourceRequest, type ListCommentsByResourceResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkCommentRequest, type MarkCommentResponse, type Media, type Mention, type MentionData, type MentionIdentityOneOf, type MessageEnvelope, type Metadata, type ModerateDraftContentOptions, type ModerateDraftContentRequest, type ModerateDraftContentResponse, 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 Page, type Pages, type ParagraphData, type ParentComment, type Permissions, Placement, type PlacementWithLiterals, 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, Position, type PositionWithLiterals, type PricingData, type PublishCommentRequest, type PublishCommentResponse, type QueryCommentsOptions, type QueryCommentsRequest, type QueryCommentsResponse, type Rel, type RepliesListResponse, type ReplySort, ReplySortOrder, type ReplySortOrderWithLiterals, Resizing, type ResizingWithLiterals, type ResourceCommentCountChanged, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, 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, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type URI, type URIs, type UnmarkCommentRequest, type UnmarkCommentResponse, type UpdateComment, type UpdateCommentApplicationErrors, type UpdateCommentRequest, type UpdateCommentResponse, type UpdateInternalDocumentsEvent, type UpdateInternalDocumentsEventOperationOneOf, type VersionedDeleteByIdsOperation, type VersionedDocumentId, type VersionedDocumentUpdateOperation, VersioningMode, type VersioningModeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, type VoteSummary, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, onCommentContentChanged, onCommentCreated, onCommentDeleted, onCommentHidden, onCommentMarked, onCommentMoved, onCommentPublished, onCommentResourceCommentCountChanged, onCommentUnmarked, onCommentUpdated, publishComment, queryComments, typedQueryComments, unmarkComment, updateComment, utils };
4389
+ export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Attachment, type AttachmentMediaOneOf, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkDeleteCommentOptions, type BulkDeleteCommentRequest, type BulkDeleteCommentResponse, type BulkHideCommentOptions, type BulkHideCommentRequest, type BulkHideCommentResponse, type BulkModerateDraftContentOptions, type BulkModerateDraftContentRequest, type BulkModerateDraftContentResponse, type BulkMoveCommentByFilterOptions, type BulkMoveCommentByFilterRequest, type BulkMoveCommentByFilterResponse, type BulkPublishCommentOptions, type BulkPublishCommentRequest, type BulkPublishCommentResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type Comment, type CommentAuthor, type CommentAuthorIdentityOneOf, type CommentContent, type CommentContentChanged, type CommentContentChangedEnvelope, type CommentCreatedEnvelope, type CommentDeleted, type CommentDeletedEnvelope, type CommentHidden, type CommentHiddenEnvelope, type CommentMarked, type CommentMarkedEnvelope, type CommentModerated, type CommentMoved, type CommentMovedEnvelope, type CommentPublished, type CommentPublishedEnvelope, type CommentQuery, type CommentQuerySpec, type CommentReactionSummary, type CommentResourceCommentCountChangedEnvelope, type CommentSort, type CommentUnmarked, type CommentUnmarkedEnvelope, type CommentUpdatedEnvelope, type CommentsQueryBuilder, type CommentsQueryResult, type CommonQueryWithEntityContext, type ContactDetails, type ContentAuthor, type ContentAuthorAuthorOneOf, type CountCommentsApplicationErrors, type CountCommentsOptions, type CountCommentsRequest, type CountCommentsResponse, type CreateCommentApplicationErrors, type CreateCommentRequest, type CreateCommentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomTag, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteByFilterOperation, type DeleteByIdsOperation, type DeleteCommentRequest, type DeleteCommentResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Destination, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetCommentRequest, type GetCommentResponse, type GetCommentThreadOptions, type GetCommentThreadRequest, type GetCommentThreadResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type HideCommentRequest, type HideCommentResponse, 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 InternalDocument, type InternalDocumentUpdateByFilterOperation, type InternalDocumentUpdateOperation, type InternalUpdateExistingOperation, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, 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 ListCommentsByResourceCursorPaging, type ListCommentsByResourceOptions, type ListCommentsByResourceRequest, type ListCommentsByResourceResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkCommentRequest, type MarkCommentResponse, type Media, type Mention, type MentionData, type MentionIdentityOneOf, type MessageEnvelope, type Metadata, type ModerateDraftContentOptions, type ModerateDraftContentRequest, type ModerateDraftContentResponse, 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 Page, type Pages, type ParagraphData, type ParentComment, type Permissions, Placement, type PlacementWithLiterals, 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, Position, type PositionWithLiterals, type PricingData, type PublishCommentRequest, type PublishCommentResponse, type QueryCommentsOptions, type QueryCommentsRequest, type QueryCommentsResponse, type Rel, type RepliesListResponse, type ReplySort, ReplySortOrder, type ReplySortOrderWithLiterals, Resizing, type ResizingWithLiterals, type ResourceCommentCountChanged, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, 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, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type URI, type URIs, type UnmarkCommentRequest, type UnmarkCommentResponse, type UpdateComment, type UpdateCommentApplicationErrors, type UpdateCommentRequest, type UpdateCommentResponse, type UpdateInternalDocumentsEvent, type UpdateInternalDocumentsEventOperationOneOf, type VersionedDeleteByIdsOperation, type VersionedDocumentId, type VersionedDocumentUpdateOperation, VersioningMode, type VersioningModeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, type VoteSummary, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, onCommentContentChanged, onCommentCreated, onCommentDeleted, onCommentHidden, onCommentMarked, onCommentMoved, onCommentPublished, onCommentResourceCommentCountChanged, onCommentUnmarked, onCommentUpdated, publishComment, queryComments, typedQueryComments, unmarkComment, updateComment, utils };