@wix/auto_sdk_events_forms 1.0.83 → 1.0.85

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 +35 -1
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +159 -48
  5. package/build/cjs/index.typings.js +31 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +159 -48
  8. package/build/cjs/meta.js +30 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +33 -1
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +159 -48
  14. package/build/es/index.typings.mjs +29 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +159 -48
  17. package/build/es/meta.mjs +28 -0
  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 +35 -1
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +166 -49
  23. package/build/internal/cjs/index.typings.js +31 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +159 -48
  26. package/build/internal/cjs/meta.js +30 -0
  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 +33 -1
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +166 -49
  32. package/build/internal/es/index.typings.mjs +29 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +159 -48
  35. package/build/internal/es/meta.mjs +28 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -1574,6 +1574,10 @@ interface Node extends NodeDataOneOf {
1574
1574
  cardData?: CardData;
1575
1575
  /** Data for a table of contents node. */
1576
1576
  tocData?: TocData;
1577
+ /** Data for a smart block node. */
1578
+ smartBlockData?: SmartBlockData;
1579
+ /** Data for a smart block cell node. */
1580
+ smartBlockCellData?: SmartBlockCellData;
1577
1581
  /** 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. */
1578
1582
  type?: NodeTypeWithLiterals;
1579
1583
  /** Node ID. */
@@ -1647,6 +1651,10 @@ interface NodeDataOneOf {
1647
1651
  cardData?: CardData;
1648
1652
  /** Data for a table of contents node. */
1649
1653
  tocData?: TocData;
1654
+ /** Data for a smart block node. */
1655
+ smartBlockData?: SmartBlockData;
1656
+ /** Data for a smart block cell node. */
1657
+ smartBlockCellData?: SmartBlockCellData;
1650
1658
  }
1651
1659
  declare enum NodeType {
1652
1660
  PARAGRAPH = "PARAGRAPH",
@@ -1685,10 +1693,12 @@ declare enum NodeType {
1685
1693
  LAYOUT_CELL = "LAYOUT_CELL",
1686
1694
  SHAPE = "SHAPE",
1687
1695
  CARD = "CARD",
1688
- TOC = "TOC"
1696
+ TOC = "TOC",
1697
+ SMART_BLOCK = "SMART_BLOCK",
1698
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
1689
1699
  }
1690
1700
  /** @enumType */
1691
- 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';
1701
+ 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' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
1692
1702
  interface NodeStyle {
1693
1703
  /** The top padding value in pixels. */
1694
1704
  paddingTop?: string | null;
@@ -1752,7 +1762,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
1752
1762
  interface Stop {
1753
1763
  /**
1754
1764
  * Stop color as hex value.
1755
- * @format COLOR_HEX
1765
+ * @maxLength 19
1756
1766
  */
1757
1767
  color?: string | null;
1758
1768
  /** Stop position (0-1). */
@@ -1793,7 +1803,7 @@ interface Background {
1793
1803
  type?: BackgroundTypeWithLiterals;
1794
1804
  /**
1795
1805
  * Background color as a hexadecimal value.
1796
- * @format COLOR_HEX
1806
+ * @maxLength 19
1797
1807
  */
1798
1808
  color?: string | null;
1799
1809
  /** Gradient configuration. */
@@ -1900,33 +1910,33 @@ interface Styles {
1900
1910
  borderRadius?: number | null;
1901
1911
  /**
1902
1912
  * Border color as a hexadecimal value.
1903
- * @format COLOR_HEX
1913
+ * @maxLength 19
1904
1914
  */
1905
1915
  borderColor?: string | null;
1906
1916
  /**
1907
1917
  * Border color as a hexadecimal value (hover state).
1908
- * @format COLOR_HEX
1918
+ * @maxLength 19
1909
1919
  */
1910
1920
  borderColorHover?: string | null;
1911
1921
  /**
1912
1922
  * Text color as a hexadecimal value.
1913
- * @format COLOR_HEX
1923
+ * @maxLength 19
1914
1924
  */
1915
1925
  textColor?: string | null;
1916
1926
  /**
1917
1927
  * Text color as a hexadecimal value (hover state).
1918
- * @format COLOR_HEX
1928
+ * @maxLength 19
1919
1929
  */
1920
1930
  textColorHover?: string | null;
1921
1931
  /**
1922
1932
  * Deprecated: Use `background` instead.
1923
- * @format COLOR_HEX
1933
+ * @maxLength 19
1924
1934
  * @deprecated
1925
1935
  */
1926
1936
  backgroundColor?: string | null;
1927
1937
  /**
1928
1938
  * Deprecated: Use `backgroundHover` instead.
1929
- * @format COLOR_HEX
1939
+ * @maxLength 19
1930
1940
  * @deprecated
1931
1941
  */
1932
1942
  backgroundColorHover?: string | null;
@@ -2306,6 +2316,8 @@ interface HeadingData {
2306
2316
  textStyle?: TextStyle;
2307
2317
  /** Indentation level from 1-4. */
2308
2318
  indentation?: number | null;
2319
+ /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
2320
+ renderedLevel?: number | null;
2309
2321
  }
2310
2322
  interface HTMLData extends HTMLDataDataOneOf {
2311
2323
  /** The URL for the HTML code for the node. */
@@ -2376,7 +2388,7 @@ interface StylesBorder {
2376
2388
  width?: number | null;
2377
2389
  /**
2378
2390
  * Border color as a hexadecimal value.
2379
- * @format COLOR_HEX
2391
+ * @maxLength 19
2380
2392
  */
2381
2393
  color?: string | null;
2382
2394
  /** Border radius in pixels. */
@@ -2417,22 +2429,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
2417
2429
  interface LinkPreviewDataStyles {
2418
2430
  /**
2419
2431
  * Background color as a hexadecimal value.
2420
- * @format COLOR_HEX
2432
+ * @maxLength 19
2421
2433
  */
2422
2434
  backgroundColor?: string | null;
2423
2435
  /**
2424
2436
  * Title color as a hexadecimal value.
2425
- * @format COLOR_HEX
2437
+ * @maxLength 19
2426
2438
  */
2427
2439
  titleColor?: string | null;
2428
2440
  /**
2429
2441
  * Subtitle color as a hexadecimal value.
2430
- * @format COLOR_HEX
2442
+ * @maxLength 19
2431
2443
  */
2432
2444
  subtitleColor?: string | null;
2433
2445
  /**
2434
2446
  * Link color as a hexadecimal value.
2435
- * @format COLOR_HEX
2447
+ * @maxLength 19
2436
2448
  */
2437
2449
  linkColor?: string | null;
2438
2450
  /** Border width in pixels. */
@@ -2441,7 +2453,7 @@ interface LinkPreviewDataStyles {
2441
2453
  borderRadius?: number | null;
2442
2454
  /**
2443
2455
  * Border color as a hexadecimal value.
2444
- * @format COLOR_HEX
2456
+ * @maxLength 19
2445
2457
  */
2446
2458
  borderColor?: string | null;
2447
2459
  /** Position of thumbnail. Defaults to `START`. */
@@ -2592,19 +2604,19 @@ interface BackgroundGradient {
2592
2604
  angle?: number | null;
2593
2605
  /**
2594
2606
  * The start color as a hexademical value.
2595
- * @format COLOR_HEX
2607
+ * @maxLength 19
2596
2608
  */
2597
2609
  startColor?: string | null;
2598
2610
  /**
2599
2611
  * The end color as a hexademical value.
2600
- * @format COLOR_HEX
2612
+ * @maxLength 19
2601
2613
  */
2602
2614
  lastColor?: string | null;
2603
2615
  }
2604
2616
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2605
2617
  /**
2606
2618
  * The background color as a hexademical value.
2607
- * @format COLOR_HEX
2619
+ * @maxLength 19
2608
2620
  */
2609
2621
  color?: string | null;
2610
2622
  /** An image to use for the background. */
@@ -2618,7 +2630,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2618
2630
  interface PollDesignBackgroundBackgroundOneOf {
2619
2631
  /**
2620
2632
  * The background color as a hexademical value.
2621
- * @format COLOR_HEX
2633
+ * @maxLength 19
2622
2634
  */
2623
2635
  color?: string | null;
2624
2636
  /** An image to use for the background. */
@@ -2932,32 +2944,32 @@ interface ButtonStyles {
2932
2944
  borderRadius?: number | null;
2933
2945
  /**
2934
2946
  * Border color as a hexadecimal value.
2935
- * @format COLOR_HEX
2947
+ * @maxLength 19
2936
2948
  */
2937
2949
  borderColor?: string | null;
2938
2950
  /**
2939
2951
  * Text color as a hexadecimal value.
2940
- * @format COLOR_HEX
2952
+ * @maxLength 19
2941
2953
  */
2942
2954
  textColor?: string | null;
2943
2955
  /**
2944
2956
  * Background color as a hexadecimal value.
2945
- * @format COLOR_HEX
2957
+ * @maxLength 19
2946
2958
  */
2947
2959
  backgroundColor?: string | null;
2948
2960
  /**
2949
2961
  * Border color as a hexadecimal value (hover state).
2950
- * @format COLOR_HEX
2962
+ * @maxLength 19
2951
2963
  */
2952
2964
  borderColorHover?: string | null;
2953
2965
  /**
2954
2966
  * Text color as a hexadecimal value (hover state).
2955
- * @format COLOR_HEX
2967
+ * @maxLength 19
2956
2968
  */
2957
2969
  textColorHover?: string | null;
2958
2970
  /**
2959
2971
  * Background color as a hexadecimal value (hover state).
2960
- * @format COLOR_HEX
2972
+ * @maxLength 19
2961
2973
  */
2962
2974
  backgroundColorHover?: string | null;
2963
2975
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -2974,7 +2986,7 @@ interface ImageStyles {
2974
2986
  resizing?: ResizingWithLiterals;
2975
2987
  /**
2976
2988
  * Image border color as a hexadecimal value.
2977
- * @format COLOR_HEX
2989
+ * @maxLength 19
2978
2990
  */
2979
2991
  borderColor?: string | null;
2980
2992
  /** Image border width in pixels. */
@@ -2987,17 +2999,17 @@ interface RibbonStyles {
2987
2999
  ribbonText?: string | null;
2988
3000
  /**
2989
3001
  * Ribbon background color as a hexadecimal value.
2990
- * @format COLOR_HEX
3002
+ * @maxLength 19
2991
3003
  */
2992
3004
  backgroundColor?: string | null;
2993
3005
  /**
2994
3006
  * Ribbon text color as a hexadecimal value.
2995
- * @format COLOR_HEX
3007
+ * @maxLength 19
2996
3008
  */
2997
3009
  textColor?: string | null;
2998
3010
  /**
2999
3011
  * Ribbon border color as a hexadecimal value.
3000
- * @format COLOR_HEX
3012
+ * @maxLength 19
3001
3013
  */
3002
3014
  borderColor?: string | null;
3003
3015
  /** Ribbon border width in pixels. */
@@ -3010,12 +3022,12 @@ interface RibbonStyles {
3010
3022
  interface CardStyles {
3011
3023
  /**
3012
3024
  * Card background color as a hexadecimal value.
3013
- * @format COLOR_HEX
3025
+ * @maxLength 19
3014
3026
  */
3015
3027
  backgroundColor?: string | null;
3016
3028
  /**
3017
3029
  * Card border color as a hexadecimal value.
3018
- * @format COLOR_HEX
3030
+ * @maxLength 19
3019
3031
  */
3020
3032
  borderColor?: string | null;
3021
3033
  /** Card border width in pixels. */
@@ -3030,12 +3042,12 @@ interface CardStyles {
3030
3042
  titlePriceLayout?: LayoutWithLiterals;
3031
3043
  /**
3032
3044
  * Title text color as a hexadecimal value.
3033
- * @format COLOR_HEX
3045
+ * @maxLength 19
3034
3046
  */
3035
3047
  titleColor?: string | null;
3036
3048
  /**
3037
3049
  * Text color as a hexadecimal value.
3038
- * @format COLOR_HEX
3050
+ * @maxLength 19
3039
3051
  */
3040
3052
  textColor?: string | null;
3041
3053
  }
@@ -3179,6 +3191,8 @@ interface TableData {
3179
3191
  * @maxSize 4
3180
3192
  */
3181
3193
  cellPadding?: number[];
3194
+ /** Table's alternative text. */
3195
+ altText?: string | null;
3182
3196
  }
3183
3197
  interface Dimensions {
3184
3198
  /** An array representing relative width of each column in relation to the other columns. */
@@ -3215,29 +3229,29 @@ interface CellStyle {
3215
3229
  verticalAlignment?: VerticalAlignmentWithLiterals;
3216
3230
  /**
3217
3231
  * Cell background color as a hexadecimal value.
3218
- * @format COLOR_HEX
3232
+ * @maxLength 19
3219
3233
  */
3220
3234
  backgroundColor?: string | null;
3221
3235
  }
3222
3236
  interface BorderColors {
3223
3237
  /**
3224
3238
  * Left border color as a hexadecimal value.
3225
- * @format COLOR_HEX
3239
+ * @maxLength 19
3226
3240
  */
3227
3241
  left?: string | null;
3228
3242
  /**
3229
3243
  * Right border color as a hexadecimal value.
3230
- * @format COLOR_HEX
3244
+ * @maxLength 19
3231
3245
  */
3232
3246
  right?: string | null;
3233
3247
  /**
3234
3248
  * Top border color as a hexadecimal value.
3235
- * @format COLOR_HEX
3249
+ * @maxLength 19
3236
3250
  */
3237
3251
  top?: string | null;
3238
3252
  /**
3239
3253
  * Bottom border color as a hexadecimal value.
3240
- * @format COLOR_HEX
3254
+ * @maxLength 19
3241
3255
  */
3242
3256
  bottom?: string | null;
3243
3257
  }
@@ -3312,7 +3326,7 @@ interface CaptionData {
3312
3326
  interface LayoutData {
3313
3327
  /**
3314
3328
  * Deprecated: Use `background` instead.
3315
- * @format COLOR_HEX
3329
+ * @maxLength 19
3316
3330
  * @deprecated
3317
3331
  */
3318
3332
  backgroundColor?: string | null;
@@ -3320,7 +3334,7 @@ interface LayoutData {
3320
3334
  backgroundImage?: LayoutDataBackgroundImage;
3321
3335
  /**
3322
3336
  * Border color as a hexadecimal value.
3323
- * @format COLOR_HEX
3337
+ * @maxLength 19
3324
3338
  */
3325
3339
  borderColor?: string | null;
3326
3340
  /** Border width in pixels. */
@@ -3329,7 +3343,7 @@ interface LayoutData {
3329
3343
  borderRadius?: number | null;
3330
3344
  /**
3331
3345
  * Deprecated: Use `backdrop` instead.
3332
- * @format COLOR_HEX
3346
+ * @maxLength 19
3333
3347
  * @deprecated
3334
3348
  */
3335
3349
  backdropColor?: string | null;
@@ -3467,7 +3481,7 @@ interface LayoutDataBackground {
3467
3481
  type?: LayoutDataBackgroundTypeWithLiterals;
3468
3482
  /**
3469
3483
  * Background color as a hexadecimal value.
3470
- * @format COLOR_HEX
3484
+ * @maxLength 19
3471
3485
  */
3472
3486
  color?: string | null;
3473
3487
  /** Gradient configuration. */
@@ -3479,7 +3493,7 @@ interface Backdrop {
3479
3493
  type?: BackdropTypeWithLiterals;
3480
3494
  /**
3481
3495
  * Backdrop color as a hexadecimal value.
3482
- * @format COLOR_HEX
3496
+ * @maxLength 19
3483
3497
  */
3484
3498
  color?: string | null;
3485
3499
  /** Gradient configuration. */
@@ -3500,7 +3514,7 @@ interface ShapeData {
3500
3514
  interface ShapeDataStyles {
3501
3515
  /**
3502
3516
  * Shape fill color as a hexadecimal value.
3503
- * @format COLOR_HEX
3517
+ * @maxLength 19
3504
3518
  */
3505
3519
  color?: string | null;
3506
3520
  /** Map of original color keys to their new color values. */
@@ -3559,7 +3573,7 @@ interface CardDataBackground {
3559
3573
  type?: CardDataBackgroundTypeWithLiterals;
3560
3574
  /**
3561
3575
  * Background color as a hexadecimal value.
3562
- * @format COLOR_HEX
3576
+ * @maxLength 19
3563
3577
  */
3564
3578
  color?: string | null;
3565
3579
  /** Gradient configuration. */
@@ -3586,7 +3600,7 @@ interface TocData {
3586
3600
  itemSpacing?: number | null;
3587
3601
  /**
3588
3602
  * Optional override for the text color.
3589
- * @format COLOR_HEX
3603
+ * @maxLength 19
3590
3604
  */
3591
3605
  color?: string | null;
3592
3606
  /** Indentation style. Default: NESTED. */
@@ -3620,6 +3634,103 @@ declare enum Indentation {
3620
3634
  }
3621
3635
  /** @enumType */
3622
3636
  type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
3637
+ /** Data for a smart block node. */
3638
+ interface SmartBlockData {
3639
+ /** The type of the smart block. */
3640
+ type?: SmartBlockDataTypeWithLiterals;
3641
+ /** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
3642
+ orientation?: string | null;
3643
+ /** Column size controlling cells per row. */
3644
+ columnSize?: ColumnSizeWithLiterals;
3645
+ /**
3646
+ * Border color (for SOLID_JOINED_BOXES variant).
3647
+ * @maxLength 19
3648
+ */
3649
+ borderColor?: string | null;
3650
+ /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
3651
+ borderWidth?: number | null;
3652
+ /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
3653
+ borderRadius?: number | null;
3654
+ }
3655
+ /** Layout type of the smart block */
3656
+ declare enum SmartBlockDataType {
3657
+ /** Grid-based layouts with solid box items containing title, body, and icon/image. */
3658
+ SOLID_BOXES = "SOLID_BOXES",
3659
+ /** Numbered boxes. */
3660
+ NUMBERED_BOXES = "NUMBERED_BOXES",
3661
+ /** Statistics display with large numbers/values. */
3662
+ STATS = "STATS",
3663
+ /** Statistics with circular visual elements. */
3664
+ CIRCLE_STATS = "CIRCLE_STATS",
3665
+ /** Staggered/zigzag grid layout with alternating box positions. */
3666
+ SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
3667
+ /** Grid layout with boxes visually joined (no gaps, shared container border). */
3668
+ SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
3669
+ /** Transparent cells with only a left side line. */
3670
+ SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
3671
+ /** Transparent cells with only a top line. */
3672
+ TOP_LINE_TEXT = "TOP_LINE_TEXT",
3673
+ /** Outlined boxes with a numbered/icon circle at the top. */
3674
+ OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
3675
+ /** Large icon bullets with text content. */
3676
+ BIG_BULLETS = "BIG_BULLETS",
3677
+ /** Small dot bullets with text content. */
3678
+ SMALL_BULLETS = "SMALL_BULLETS",
3679
+ /** Arrow icon bullets with text content. */
3680
+ ARROW_BULLETS = "ARROW_BULLETS",
3681
+ /** Process steps with numbered/icon labels above a horizontal line. */
3682
+ PROCESS_STEPS = "PROCESS_STEPS",
3683
+ /** Statistics with bar visual elements. */
3684
+ BAR_STATS = "BAR_STATS"
3685
+ }
3686
+ /** @enumType */
3687
+ type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
3688
+ /** Column size controlling how many cells appear per row. */
3689
+ declare enum ColumnSize {
3690
+ /** Up to 4 cells in a row. */
3691
+ SMALL = "SMALL",
3692
+ /** Up to 3 cells in a row (default). */
3693
+ MEDIUM = "MEDIUM",
3694
+ /** Up to 2 cells in a row. */
3695
+ LARGE = "LARGE",
3696
+ /** 1 cell in a row. */
3697
+ EXTRA_LARGE = "EXTRA_LARGE"
3698
+ }
3699
+ /** @enumType */
3700
+ type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
3701
+ /** Data for a smart block cell node. */
3702
+ interface SmartBlockCellData {
3703
+ /** Optional label text for the cell (e.g., for stats variants). */
3704
+ label?: string | null;
3705
+ /** Shape file details. */
3706
+ shape?: Media;
3707
+ /**
3708
+ * Border color of the cell.
3709
+ * @maxLength 19
3710
+ */
3711
+ borderColor?: string | null;
3712
+ /** Border width in pixels. */
3713
+ borderWidth?: number | null;
3714
+ /** Border radius in pixels. */
3715
+ borderRadius?: number | null;
3716
+ /** The type of the parent smart block (must match parent). */
3717
+ type?: SmartBlockDataTypeWithLiterals;
3718
+ /**
3719
+ * Accent color for non-background variants (e.g., line, bullet, label color).
3720
+ * @maxLength 19
3721
+ */
3722
+ accentColor?: string | null;
3723
+ /**
3724
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
3725
+ * @maxLength 19
3726
+ */
3727
+ backgroundColor?: string | null;
3728
+ /**
3729
+ * Shape fill color as a hexadecimal value.
3730
+ * @maxLength 19
3731
+ */
3732
+ shapeColor?: string | null;
3733
+ }
3623
3734
  interface Metadata {
3624
3735
  /** Schema version. */
3625
3736
  version?: number;
@@ -3905,4 +4016,4 @@ declare function discardDraft(): __PublicMethodMetaInfo<'DELETE', {
3905
4016
  eventId: string;
3906
4017
  }, DiscardDraftRequest$1, DiscardDraftRequest, DiscardDraftResponse$1, DiscardDraftResponse>;
3907
4018
 
3908
- export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddControlApplicationErrors as AddControlApplicationErrorsOriginal, type AddControlRequestControlOneOf as AddControlRequestControlOneOfOriginal, type AddControlRequest as AddControlRequestOriginal, type AddControlResponse as AddControlResponseOriginal, type AdditionalGuestsControl as AdditionalGuestsControlOriginal, type AddressControlLabels as AddressControlLabelsOriginal, type AddressControl as AddressControlOriginal, type AddressLocation as AddressLocationOriginal, type Address as AddressOriginal, type AddressStreetOneOf as AddressStreetOneOfOriginal, type Agenda as AgendaOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Badge as BadgeOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CalendarLinks as CalendarLinksOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CategoryCounts as CategoryCountsOriginal, type Category as CategoryOriginal, type CellStyle as CellStyleOriginal, type CheckboxControl as CheckboxControlOriginal, type CheckoutFormMessages as CheckoutFormMessagesOriginal, CheckoutType as CheckoutTypeOriginal, type CheckoutTypeWithLiterals as CheckoutTypeWithLiteralsOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ConferenceType as ConferenceTypeOriginal, type ConferenceTypeWithLiterals as ConferenceTypeWithLiteralsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type Dashboard as DashboardOriginal, type DateControl as DateControlOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteControlApplicationErrors as DeleteControlApplicationErrorsOriginal, type DeleteControlRequest as DeleteControlRequestOriginal, type DeleteControlResponse as DeleteControlResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, type DiscardDraftRequest as DiscardDraftRequestOriginal, type DiscardDraftResponse as DiscardDraftResponseOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DropdownControl as DropdownControlOriginal, type EmailControl as EmailControlOriginal, type EmbedData as EmbedDataOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type EventDisplaySettings as EventDisplaySettingsOriginal, type Event as EventOriginal, EventStatus as EventStatusOriginal, type EventStatusWithLiterals as EventStatusWithLiteralsOriginal, EventType as EventTypeOriginal, type EventTypeWithLiterals as EventTypeWithLiteralsOriginal, type EventUpdated as EventUpdatedOriginal, type ExternalEvent as ExternalEventOriginal, type Feed as FeedOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type FormInputControlAdded as FormInputControlAddedOriginal, type FormInputControlDeleted as FormInputControlDeletedOriginal, type FormInputControlUpdated as FormInputControlUpdatedOriginal, type FormMessages as FormMessagesOriginal, type Form as FormOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetFormRequest as GetFormRequestOriginal, type GetFormResponse as GetFormResponseOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type GuestListConfig as GuestListConfigOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InputControl as InputControlOriginal, InputControlType as InputControlTypeOriginal, type InputControlTypeWithLiterals as InputControlTypeWithLiteralsOriginal, type Input as InputOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type Label as LabelOriginal, type LabellingSettings as LabellingSettingsOriginal, type Labels as LabelsOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type Location as LocationOriginal, LocationType as LocationTypeOriginal, type LocationTypeWithLiterals as LocationTypeWithLiteralsOriginal, type MapCoordinates as MapCoordinatesOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type Money as MoneyOriginal, type NameControlLabels as NameControlLabelsOriginal, type NameControl as NameControlOriginal, type Negative as NegativeOriginal, type NegativeResponseConfirmation as NegativeResponseConfirmationOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Occurrence as OccurrenceOriginal, type Oembed as OembedOriginal, type OnlineConferencingConfig as OnlineConferencingConfigOriginal, type OnlineConferencing as OnlineConferencingOriginal, type OnlineConferencingSession as OnlineConferencingSessionOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OptionSelection as OptionSelectionOriginal, type OptionSelectionSelectedOptionOneOf as OptionSelectionSelectedOptionOneOfOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, type PhoneControl as PhoneControlOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type Positive as PositiveOriginal, type PositiveResponseConfirmation as PositiveResponseConfirmationOriginal, type PricingData as PricingDataOriginal, type PublishDraftRequest as PublishDraftRequestOriginal, type PublishDraftResponse as PublishDraftResponseOriginal, type RadioButtonControl as RadioButtonControlOriginal, type Recurrences as RecurrencesOriginal, type RegistrationClosedMessages as RegistrationClosedMessagesOriginal, type Registration as RegistrationOriginal, RegistrationStatus as RegistrationStatusOriginal, type RegistrationStatusWithLiterals as RegistrationStatusWithLiteralsOriginal, type Rel as RelOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResponseConfirmation as ResponseConfirmationOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type RsvpCollectionConfig as RsvpCollectionConfigOriginal, type RsvpCollection as RsvpCollectionOriginal, type RsvpConfirmationMessagesNegativeResponseConfirmation as RsvpConfirmationMessagesNegativeResponseConfirmationOriginal, type RsvpConfirmationMessages as RsvpConfirmationMessagesOriginal, type RsvpConfirmationMessagesPositiveResponseConfirmation as RsvpConfirmationMessagesPositiveResponseConfirmationOriginal, type RsvpFormMessages as RsvpFormMessagesOriginal, RsvpStatusOptions as RsvpStatusOptionsOriginal, type RsvpStatusOptionsWithLiterals as RsvpStatusOptionsWithLiteralsOriginal, type RsvpSummary as RsvpSummaryOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduleConfig as ScheduleConfigOriginal, type Scheduling as SchedulingOriginal, type SeoSchema as SeoSchemaOriginal, type SeoSettings as SeoSettingsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SiteUrl as SiteUrlOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StreetAddress as StreetAddressOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type Subdivision as SubdivisionOriginal, SubdivisionType as SubdivisionTypeOriginal, type SubdivisionTypeWithLiterals as SubdivisionTypeWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, type TaxConfig as TaxConfigOriginal, TaxType as TaxTypeOriginal, type TaxTypeWithLiterals as TaxTypeWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextControl as TextControlOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TicketingConfig as TicketingConfigOriginal, type Ticketing as TicketingOriginal, type TicketingSummary as TicketingSummaryOriginal, type TicketsConfirmationMessages as TicketsConfirmationMessagesOriginal, type TicketsUnavailableMessages as TicketsUnavailableMessagesOriginal, type TocData as TocDataOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateControlApplicationErrors as UpdateControlApplicationErrorsOriginal, type UpdateControlRequestControlOneOf as UpdateControlRequestControlOneOfOriginal, type UpdateControlRequest as UpdateControlRequestOriginal, type UpdateControlResponse as UpdateControlResponseOriginal, type UpdateMessagesRequest as UpdateMessagesRequestOriginal, type UpdateMessagesResponse as UpdateMessagesResponseOriginal, ValueType as ValueTypeOriginal, type ValueTypeWithLiterals as ValueTypeWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VisitorType as VisitorTypeOriginal, type VisitorTypeWithLiterals as VisitorTypeWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, addControl, deleteControl, discardDraft, getForm, publishDraft, updateControl, updateMessages };
4019
+ export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddControlApplicationErrors as AddControlApplicationErrorsOriginal, type AddControlRequestControlOneOf as AddControlRequestControlOneOfOriginal, type AddControlRequest as AddControlRequestOriginal, type AddControlResponse as AddControlResponseOriginal, type AdditionalGuestsControl as AdditionalGuestsControlOriginal, type AddressControlLabels as AddressControlLabelsOriginal, type AddressControl as AddressControlOriginal, type AddressLocation as AddressLocationOriginal, type Address as AddressOriginal, type AddressStreetOneOf as AddressStreetOneOfOriginal, type Agenda as AgendaOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Badge as BadgeOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CalendarLinks as CalendarLinksOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CategoryCounts as CategoryCountsOriginal, type Category as CategoryOriginal, type CellStyle as CellStyleOriginal, type CheckboxControl as CheckboxControlOriginal, type CheckoutFormMessages as CheckoutFormMessagesOriginal, CheckoutType as CheckoutTypeOriginal, type CheckoutTypeWithLiterals as CheckoutTypeWithLiteralsOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, ConferenceType as ConferenceTypeOriginal, type ConferenceTypeWithLiterals as ConferenceTypeWithLiteralsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type Dashboard as DashboardOriginal, type DateControl as DateControlOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteControlApplicationErrors as DeleteControlApplicationErrorsOriginal, type DeleteControlRequest as DeleteControlRequestOriginal, type DeleteControlResponse as DeleteControlResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, type DiscardDraftRequest as DiscardDraftRequestOriginal, type DiscardDraftResponse as DiscardDraftResponseOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DropdownControl as DropdownControlOriginal, type EmailControl as EmailControlOriginal, type EmbedData as EmbedDataOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type EventDisplaySettings as EventDisplaySettingsOriginal, type Event as EventOriginal, EventStatus as EventStatusOriginal, type EventStatusWithLiterals as EventStatusWithLiteralsOriginal, EventType as EventTypeOriginal, type EventTypeWithLiterals as EventTypeWithLiteralsOriginal, type EventUpdated as EventUpdatedOriginal, type ExternalEvent as ExternalEventOriginal, type Feed as FeedOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type FormInputControlAdded as FormInputControlAddedOriginal, type FormInputControlDeleted as FormInputControlDeletedOriginal, type FormInputControlUpdated as FormInputControlUpdatedOriginal, type FormMessages as FormMessagesOriginal, type Form as FormOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetFormRequest as GetFormRequestOriginal, type GetFormResponse as GetFormResponseOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type GuestListConfig as GuestListConfigOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InputControl as InputControlOriginal, InputControlType as InputControlTypeOriginal, type InputControlTypeWithLiterals as InputControlTypeWithLiteralsOriginal, type Input as InputOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type Label as LabelOriginal, type LabellingSettings as LabellingSettingsOriginal, type Labels as LabelsOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type Location as LocationOriginal, LocationType as LocationTypeOriginal, type LocationTypeWithLiterals as LocationTypeWithLiteralsOriginal, type MapCoordinates as MapCoordinatesOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type Money as MoneyOriginal, type NameControlLabels as NameControlLabelsOriginal, type NameControl as NameControlOriginal, type Negative as NegativeOriginal, type NegativeResponseConfirmation as NegativeResponseConfirmationOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Occurrence as OccurrenceOriginal, type Oembed as OembedOriginal, type OnlineConferencingConfig as OnlineConferencingConfigOriginal, type OnlineConferencing as OnlineConferencingOriginal, type OnlineConferencingSession as OnlineConferencingSessionOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OptionSelection as OptionSelectionOriginal, type OptionSelectionSelectedOptionOneOf as OptionSelectionSelectedOptionOneOfOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, type PhoneControl as PhoneControlOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type Positive as PositiveOriginal, type PositiveResponseConfirmation as PositiveResponseConfirmationOriginal, type PricingData as PricingDataOriginal, type PublishDraftRequest as PublishDraftRequestOriginal, type PublishDraftResponse as PublishDraftResponseOriginal, type RadioButtonControl as RadioButtonControlOriginal, type Recurrences as RecurrencesOriginal, type RegistrationClosedMessages as RegistrationClosedMessagesOriginal, type Registration as RegistrationOriginal, RegistrationStatus as RegistrationStatusOriginal, type RegistrationStatusWithLiterals as RegistrationStatusWithLiteralsOriginal, type Rel as RelOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResponseConfirmation as ResponseConfirmationOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type RsvpCollectionConfig as RsvpCollectionConfigOriginal, type RsvpCollection as RsvpCollectionOriginal, type RsvpConfirmationMessagesNegativeResponseConfirmation as RsvpConfirmationMessagesNegativeResponseConfirmationOriginal, type RsvpConfirmationMessages as RsvpConfirmationMessagesOriginal, type RsvpConfirmationMessagesPositiveResponseConfirmation as RsvpConfirmationMessagesPositiveResponseConfirmationOriginal, type RsvpFormMessages as RsvpFormMessagesOriginal, RsvpStatusOptions as RsvpStatusOptionsOriginal, type RsvpStatusOptionsWithLiterals as RsvpStatusOptionsWithLiteralsOriginal, type RsvpSummary as RsvpSummaryOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduleConfig as ScheduleConfigOriginal, type Scheduling as SchedulingOriginal, type SeoSchema as SeoSchemaOriginal, type SeoSettings as SeoSettingsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SiteUrl as SiteUrlOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StreetAddress as StreetAddressOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type Subdivision as SubdivisionOriginal, SubdivisionType as SubdivisionTypeOriginal, type SubdivisionTypeWithLiterals as SubdivisionTypeWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, type TaxConfig as TaxConfigOriginal, TaxType as TaxTypeOriginal, type TaxTypeWithLiterals as TaxTypeWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextControl as TextControlOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TicketingConfig as TicketingConfigOriginal, type Ticketing as TicketingOriginal, type TicketingSummary as TicketingSummaryOriginal, type TicketsConfirmationMessages as TicketsConfirmationMessagesOriginal, type TicketsUnavailableMessages as TicketsUnavailableMessagesOriginal, type TocData as TocDataOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateControlApplicationErrors as UpdateControlApplicationErrorsOriginal, type UpdateControlRequestControlOneOf as UpdateControlRequestControlOneOfOriginal, type UpdateControlRequest as UpdateControlRequestOriginal, type UpdateControlResponse as UpdateControlResponseOriginal, type UpdateMessagesRequest as UpdateMessagesRequestOriginal, type UpdateMessagesResponse as UpdateMessagesResponseOriginal, ValueType as ValueTypeOriginal, type ValueTypeWithLiterals as ValueTypeWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VisitorType as VisitorTypeOriginal, type VisitorTypeWithLiterals as VisitorTypeWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, addControl, deleteControl, discardDraft, getForm, publishDraft, updateControl, updateMessages };
package/build/cjs/meta.js CHANGED
@@ -29,6 +29,7 @@ __export(meta_exports, {
29
29
  CardDataBackgroundTypeOriginal: () => CardDataBackgroundType,
30
30
  CardStylesTypeOriginal: () => CardStylesType,
31
31
  CheckoutTypeOriginal: () => CheckoutType,
32
+ ColumnSizeOriginal: () => ColumnSize,
32
33
  ConferenceTypeOriginal: () => ConferenceType,
33
34
  CropOriginal: () => Crop,
34
35
  DecorationTypeOriginal: () => DecorationType,
@@ -69,6 +70,7 @@ __export(meta_exports, {
69
70
  ResponsivenessBehaviourOriginal: () => ResponsivenessBehaviour,
70
71
  RsvpStatusOptionsOriginal: () => RsvpStatusOptions,
71
72
  ScalingOriginal: () => Scaling,
73
+ SmartBlockDataTypeOriginal: () => SmartBlockDataType,
72
74
  SourceOriginal: () => Source,
73
75
  StateOriginal: () => State,
74
76
  StatusOriginal: () => Status,
@@ -856,6 +858,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
856
858
  NodeType2["SHAPE"] = "SHAPE";
857
859
  NodeType2["CARD"] = "CARD";
858
860
  NodeType2["TOC"] = "TOC";
861
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
862
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
859
863
  return NodeType2;
860
864
  })(NodeType || {});
861
865
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -1183,6 +1187,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1183
1187
  Indentation2["FLAT"] = "FLAT";
1184
1188
  return Indentation2;
1185
1189
  })(Indentation || {});
1190
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1191
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
1192
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
1193
+ SmartBlockDataType2["STATS"] = "STATS";
1194
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
1195
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
1196
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
1197
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
1198
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
1199
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
1200
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
1201
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
1202
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1203
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1204
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1205
+ return SmartBlockDataType2;
1206
+ })(SmartBlockDataType || {});
1207
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
1208
+ ColumnSize2["SMALL"] = "SMALL";
1209
+ ColumnSize2["MEDIUM"] = "MEDIUM";
1210
+ ColumnSize2["LARGE"] = "LARGE";
1211
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
1212
+ return ColumnSize2;
1213
+ })(ColumnSize || {});
1186
1214
  var Type = /* @__PURE__ */ ((Type2) => {
1187
1215
  Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
1188
1216
  Type2["SECOND_PRIORITY"] = "SECOND_PRIORITY";
@@ -1336,6 +1364,7 @@ function discardDraft2() {
1336
1364
  CardDataBackgroundTypeOriginal,
1337
1365
  CardStylesTypeOriginal,
1338
1366
  CheckoutTypeOriginal,
1367
+ ColumnSizeOriginal,
1339
1368
  ConferenceTypeOriginal,
1340
1369
  CropOriginal,
1341
1370
  DecorationTypeOriginal,
@@ -1376,6 +1405,7 @@ function discardDraft2() {
1376
1405
  ResponsivenessBehaviourOriginal,
1377
1406
  RsvpStatusOptionsOriginal,
1378
1407
  ScalingOriginal,
1408
+ SmartBlockDataTypeOriginal,
1379
1409
  SourceOriginal,
1380
1410
  StateOriginal,
1381
1411
  StatusOriginal,