@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
@@ -951,7 +951,13 @@ declare enum EventStatus {
951
951
  /** Event has ended */
952
952
  ENDED = "ENDED",
953
953
  /** Event was canceled */
954
- CANCELED = "CANCELED"
954
+ CANCELED = "CANCELED",
955
+ /**
956
+ * Event is not public and needs to be published
957
+ * @documentationMaturity preview
958
+ * @internal
959
+ */
960
+ DRAFT = "DRAFT"
955
961
  }
956
962
  /** @enumType */
957
963
  type EventStatusWithLiterals = EventStatus | 'SCHEDULED' | 'STARTED' | 'ENDED' | 'CANCELED';
@@ -1557,6 +1563,10 @@ interface Node extends NodeDataOneOf {
1557
1563
  cardData?: CardData;
1558
1564
  /** Data for a table of contents node. */
1559
1565
  tocData?: TocData;
1566
+ /** Data for a smart block node. */
1567
+ smartBlockData?: SmartBlockData;
1568
+ /** Data for a smart block cell node. */
1569
+ smartBlockCellData?: SmartBlockCellData;
1560
1570
  /** 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. */
1561
1571
  type?: NodeTypeWithLiterals;
1562
1572
  /** Node ID. */
@@ -1630,6 +1640,10 @@ interface NodeDataOneOf {
1630
1640
  cardData?: CardData;
1631
1641
  /** Data for a table of contents node. */
1632
1642
  tocData?: TocData;
1643
+ /** Data for a smart block node. */
1644
+ smartBlockData?: SmartBlockData;
1645
+ /** Data for a smart block cell node. */
1646
+ smartBlockCellData?: SmartBlockCellData;
1633
1647
  }
1634
1648
  declare enum NodeType {
1635
1649
  PARAGRAPH = "PARAGRAPH",
@@ -1668,10 +1682,12 @@ declare enum NodeType {
1668
1682
  LAYOUT_CELL = "LAYOUT_CELL",
1669
1683
  SHAPE = "SHAPE",
1670
1684
  CARD = "CARD",
1671
- TOC = "TOC"
1685
+ TOC = "TOC",
1686
+ SMART_BLOCK = "SMART_BLOCK",
1687
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
1672
1688
  }
1673
1689
  /** @enumType */
1674
- 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';
1690
+ 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';
1675
1691
  interface NodeStyle {
1676
1692
  /** The top padding value in pixels. */
1677
1693
  paddingTop?: string | null;
@@ -1735,7 +1751,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
1735
1751
  interface Stop {
1736
1752
  /**
1737
1753
  * Stop color as hex value.
1738
- * @format COLOR_HEX
1754
+ * @maxLength 19
1739
1755
  */
1740
1756
  color?: string | null;
1741
1757
  /** Stop position (0-1). */
@@ -1776,7 +1792,7 @@ interface Background {
1776
1792
  type?: BackgroundTypeWithLiterals;
1777
1793
  /**
1778
1794
  * Background color as a hexadecimal value.
1779
- * @format COLOR_HEX
1795
+ * @maxLength 19
1780
1796
  */
1781
1797
  color?: string | null;
1782
1798
  /** Gradient configuration. */
@@ -1883,33 +1899,33 @@ interface Styles {
1883
1899
  borderRadius?: number | null;
1884
1900
  /**
1885
1901
  * Border color as a hexadecimal value.
1886
- * @format COLOR_HEX
1902
+ * @maxLength 19
1887
1903
  */
1888
1904
  borderColor?: string | null;
1889
1905
  /**
1890
1906
  * Border color as a hexadecimal value (hover state).
1891
- * @format COLOR_HEX
1907
+ * @maxLength 19
1892
1908
  */
1893
1909
  borderColorHover?: string | null;
1894
1910
  /**
1895
1911
  * Text color as a hexadecimal value.
1896
- * @format COLOR_HEX
1912
+ * @maxLength 19
1897
1913
  */
1898
1914
  textColor?: string | null;
1899
1915
  /**
1900
1916
  * Text color as a hexadecimal value (hover state).
1901
- * @format COLOR_HEX
1917
+ * @maxLength 19
1902
1918
  */
1903
1919
  textColorHover?: string | null;
1904
1920
  /**
1905
1921
  * Deprecated: Use `background` instead.
1906
- * @format COLOR_HEX
1922
+ * @maxLength 19
1907
1923
  * @deprecated
1908
1924
  */
1909
1925
  backgroundColor?: string | null;
1910
1926
  /**
1911
1927
  * Deprecated: Use `backgroundHover` instead.
1912
- * @format COLOR_HEX
1928
+ * @maxLength 19
1913
1929
  * @deprecated
1914
1930
  */
1915
1931
  backgroundColorHover?: string | null;
@@ -2289,6 +2305,8 @@ interface HeadingData {
2289
2305
  textStyle?: TextStyle;
2290
2306
  /** Indentation level from 1-4. */
2291
2307
  indentation?: number | null;
2308
+ /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
2309
+ renderedLevel?: number | null;
2292
2310
  }
2293
2311
  interface HTMLData extends HTMLDataDataOneOf {
2294
2312
  /** The URL for the HTML code for the node. */
@@ -2359,7 +2377,7 @@ interface StylesBorder {
2359
2377
  width?: number | null;
2360
2378
  /**
2361
2379
  * Border color as a hexadecimal value.
2362
- * @format COLOR_HEX
2380
+ * @maxLength 19
2363
2381
  */
2364
2382
  color?: string | null;
2365
2383
  /** Border radius in pixels. */
@@ -2400,22 +2418,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
2400
2418
  interface LinkPreviewDataStyles {
2401
2419
  /**
2402
2420
  * Background color as a hexadecimal value.
2403
- * @format COLOR_HEX
2421
+ * @maxLength 19
2404
2422
  */
2405
2423
  backgroundColor?: string | null;
2406
2424
  /**
2407
2425
  * Title color as a hexadecimal value.
2408
- * @format COLOR_HEX
2426
+ * @maxLength 19
2409
2427
  */
2410
2428
  titleColor?: string | null;
2411
2429
  /**
2412
2430
  * Subtitle color as a hexadecimal value.
2413
- * @format COLOR_HEX
2431
+ * @maxLength 19
2414
2432
  */
2415
2433
  subtitleColor?: string | null;
2416
2434
  /**
2417
2435
  * Link color as a hexadecimal value.
2418
- * @format COLOR_HEX
2436
+ * @maxLength 19
2419
2437
  */
2420
2438
  linkColor?: string | null;
2421
2439
  /** Border width in pixels. */
@@ -2424,7 +2442,7 @@ interface LinkPreviewDataStyles {
2424
2442
  borderRadius?: number | null;
2425
2443
  /**
2426
2444
  * Border color as a hexadecimal value.
2427
- * @format COLOR_HEX
2445
+ * @maxLength 19
2428
2446
  */
2429
2447
  borderColor?: string | null;
2430
2448
  /** Position of thumbnail. Defaults to `START`. */
@@ -2575,19 +2593,19 @@ interface BackgroundGradient {
2575
2593
  angle?: number | null;
2576
2594
  /**
2577
2595
  * The start color as a hexademical value.
2578
- * @format COLOR_HEX
2596
+ * @maxLength 19
2579
2597
  */
2580
2598
  startColor?: string | null;
2581
2599
  /**
2582
2600
  * The end color as a hexademical value.
2583
- * @format COLOR_HEX
2601
+ * @maxLength 19
2584
2602
  */
2585
2603
  lastColor?: string | null;
2586
2604
  }
2587
2605
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2588
2606
  /**
2589
2607
  * The background color as a hexademical value.
2590
- * @format COLOR_HEX
2608
+ * @maxLength 19
2591
2609
  */
2592
2610
  color?: string | null;
2593
2611
  /** An image to use for the background. */
@@ -2601,7 +2619,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2601
2619
  interface PollDesignBackgroundBackgroundOneOf {
2602
2620
  /**
2603
2621
  * The background color as a hexademical value.
2604
- * @format COLOR_HEX
2622
+ * @maxLength 19
2605
2623
  */
2606
2624
  color?: string | null;
2607
2625
  /** An image to use for the background. */
@@ -2915,32 +2933,32 @@ interface ButtonStyles {
2915
2933
  borderRadius?: number | null;
2916
2934
  /**
2917
2935
  * Border color as a hexadecimal value.
2918
- * @format COLOR_HEX
2936
+ * @maxLength 19
2919
2937
  */
2920
2938
  borderColor?: string | null;
2921
2939
  /**
2922
2940
  * Text color as a hexadecimal value.
2923
- * @format COLOR_HEX
2941
+ * @maxLength 19
2924
2942
  */
2925
2943
  textColor?: string | null;
2926
2944
  /**
2927
2945
  * Background color as a hexadecimal value.
2928
- * @format COLOR_HEX
2946
+ * @maxLength 19
2929
2947
  */
2930
2948
  backgroundColor?: string | null;
2931
2949
  /**
2932
2950
  * Border color as a hexadecimal value (hover state).
2933
- * @format COLOR_HEX
2951
+ * @maxLength 19
2934
2952
  */
2935
2953
  borderColorHover?: string | null;
2936
2954
  /**
2937
2955
  * Text color as a hexadecimal value (hover state).
2938
- * @format COLOR_HEX
2956
+ * @maxLength 19
2939
2957
  */
2940
2958
  textColorHover?: string | null;
2941
2959
  /**
2942
2960
  * Background color as a hexadecimal value (hover state).
2943
- * @format COLOR_HEX
2961
+ * @maxLength 19
2944
2962
  */
2945
2963
  backgroundColorHover?: string | null;
2946
2964
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -2957,7 +2975,7 @@ interface ImageStyles {
2957
2975
  resizing?: ResizingWithLiterals;
2958
2976
  /**
2959
2977
  * Image border color as a hexadecimal value.
2960
- * @format COLOR_HEX
2978
+ * @maxLength 19
2961
2979
  */
2962
2980
  borderColor?: string | null;
2963
2981
  /** Image border width in pixels. */
@@ -2970,17 +2988,17 @@ interface RibbonStyles {
2970
2988
  ribbonText?: string | null;
2971
2989
  /**
2972
2990
  * Ribbon background color as a hexadecimal value.
2973
- * @format COLOR_HEX
2991
+ * @maxLength 19
2974
2992
  */
2975
2993
  backgroundColor?: string | null;
2976
2994
  /**
2977
2995
  * Ribbon text color as a hexadecimal value.
2978
- * @format COLOR_HEX
2996
+ * @maxLength 19
2979
2997
  */
2980
2998
  textColor?: string | null;
2981
2999
  /**
2982
3000
  * Ribbon border color as a hexadecimal value.
2983
- * @format COLOR_HEX
3001
+ * @maxLength 19
2984
3002
  */
2985
3003
  borderColor?: string | null;
2986
3004
  /** Ribbon border width in pixels. */
@@ -2993,12 +3011,12 @@ interface RibbonStyles {
2993
3011
  interface CardStyles {
2994
3012
  /**
2995
3013
  * Card background color as a hexadecimal value.
2996
- * @format COLOR_HEX
3014
+ * @maxLength 19
2997
3015
  */
2998
3016
  backgroundColor?: string | null;
2999
3017
  /**
3000
3018
  * Card border color as a hexadecimal value.
3001
- * @format COLOR_HEX
3019
+ * @maxLength 19
3002
3020
  */
3003
3021
  borderColor?: string | null;
3004
3022
  /** Card border width in pixels. */
@@ -3013,12 +3031,12 @@ interface CardStyles {
3013
3031
  titlePriceLayout?: LayoutWithLiterals;
3014
3032
  /**
3015
3033
  * Title text color as a hexadecimal value.
3016
- * @format COLOR_HEX
3034
+ * @maxLength 19
3017
3035
  */
3018
3036
  titleColor?: string | null;
3019
3037
  /**
3020
3038
  * Text color as a hexadecimal value.
3021
- * @format COLOR_HEX
3039
+ * @maxLength 19
3022
3040
  */
3023
3041
  textColor?: string | null;
3024
3042
  }
@@ -3162,6 +3180,8 @@ interface TableData {
3162
3180
  * @maxSize 4
3163
3181
  */
3164
3182
  cellPadding?: number[];
3183
+ /** Table's alternative text. */
3184
+ altText?: string | null;
3165
3185
  }
3166
3186
  interface Dimensions {
3167
3187
  /** An array representing relative width of each column in relation to the other columns. */
@@ -3198,29 +3218,29 @@ interface CellStyle {
3198
3218
  verticalAlignment?: VerticalAlignmentWithLiterals;
3199
3219
  /**
3200
3220
  * Cell background color as a hexadecimal value.
3201
- * @format COLOR_HEX
3221
+ * @maxLength 19
3202
3222
  */
3203
3223
  backgroundColor?: string | null;
3204
3224
  }
3205
3225
  interface BorderColors {
3206
3226
  /**
3207
3227
  * Left border color as a hexadecimal value.
3208
- * @format COLOR_HEX
3228
+ * @maxLength 19
3209
3229
  */
3210
3230
  left?: string | null;
3211
3231
  /**
3212
3232
  * Right border color as a hexadecimal value.
3213
- * @format COLOR_HEX
3233
+ * @maxLength 19
3214
3234
  */
3215
3235
  right?: string | null;
3216
3236
  /**
3217
3237
  * Top border color as a hexadecimal value.
3218
- * @format COLOR_HEX
3238
+ * @maxLength 19
3219
3239
  */
3220
3240
  top?: string | null;
3221
3241
  /**
3222
3242
  * Bottom border color as a hexadecimal value.
3223
- * @format COLOR_HEX
3243
+ * @maxLength 19
3224
3244
  */
3225
3245
  bottom?: string | null;
3226
3246
  }
@@ -3295,7 +3315,7 @@ interface CaptionData {
3295
3315
  interface LayoutData {
3296
3316
  /**
3297
3317
  * Deprecated: Use `background` instead.
3298
- * @format COLOR_HEX
3318
+ * @maxLength 19
3299
3319
  * @deprecated
3300
3320
  */
3301
3321
  backgroundColor?: string | null;
@@ -3303,7 +3323,7 @@ interface LayoutData {
3303
3323
  backgroundImage?: LayoutDataBackgroundImage;
3304
3324
  /**
3305
3325
  * Border color as a hexadecimal value.
3306
- * @format COLOR_HEX
3326
+ * @maxLength 19
3307
3327
  */
3308
3328
  borderColor?: string | null;
3309
3329
  /** Border width in pixels. */
@@ -3312,7 +3332,7 @@ interface LayoutData {
3312
3332
  borderRadius?: number | null;
3313
3333
  /**
3314
3334
  * Deprecated: Use `backdrop` instead.
3315
- * @format COLOR_HEX
3335
+ * @maxLength 19
3316
3336
  * @deprecated
3317
3337
  */
3318
3338
  backdropColor?: string | null;
@@ -3450,7 +3470,7 @@ interface LayoutDataBackground {
3450
3470
  type?: LayoutDataBackgroundTypeWithLiterals;
3451
3471
  /**
3452
3472
  * Background color as a hexadecimal value.
3453
- * @format COLOR_HEX
3473
+ * @maxLength 19
3454
3474
  */
3455
3475
  color?: string | null;
3456
3476
  /** Gradient configuration. */
@@ -3462,7 +3482,7 @@ interface Backdrop {
3462
3482
  type?: BackdropTypeWithLiterals;
3463
3483
  /**
3464
3484
  * Backdrop color as a hexadecimal value.
3465
- * @format COLOR_HEX
3485
+ * @maxLength 19
3466
3486
  */
3467
3487
  color?: string | null;
3468
3488
  /** Gradient configuration. */
@@ -3483,7 +3503,7 @@ interface ShapeData {
3483
3503
  interface ShapeDataStyles {
3484
3504
  /**
3485
3505
  * Shape fill color as a hexadecimal value.
3486
- * @format COLOR_HEX
3506
+ * @maxLength 19
3487
3507
  */
3488
3508
  color?: string | null;
3489
3509
  /** Map of original color keys to their new color values. */
@@ -3542,7 +3562,7 @@ interface CardDataBackground {
3542
3562
  type?: CardDataBackgroundTypeWithLiterals;
3543
3563
  /**
3544
3564
  * Background color as a hexadecimal value.
3545
- * @format COLOR_HEX
3565
+ * @maxLength 19
3546
3566
  */
3547
3567
  color?: string | null;
3548
3568
  /** Gradient configuration. */
@@ -3569,7 +3589,7 @@ interface TocData {
3569
3589
  itemSpacing?: number | null;
3570
3590
  /**
3571
3591
  * Optional override for the text color.
3572
- * @format COLOR_HEX
3592
+ * @maxLength 19
3573
3593
  */
3574
3594
  color?: string | null;
3575
3595
  /** Indentation style. Default: NESTED. */
@@ -3603,6 +3623,103 @@ declare enum Indentation {
3603
3623
  }
3604
3624
  /** @enumType */
3605
3625
  type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
3626
+ /** Data for a smart block node. */
3627
+ interface SmartBlockData {
3628
+ /** The type of the smart block. */
3629
+ type?: SmartBlockDataTypeWithLiterals;
3630
+ /** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
3631
+ orientation?: string | null;
3632
+ /** Column size controlling cells per row. */
3633
+ columnSize?: ColumnSizeWithLiterals;
3634
+ /**
3635
+ * Border color (for SOLID_JOINED_BOXES variant).
3636
+ * @maxLength 19
3637
+ */
3638
+ borderColor?: string | null;
3639
+ /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
3640
+ borderWidth?: number | null;
3641
+ /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
3642
+ borderRadius?: number | null;
3643
+ }
3644
+ /** Layout type of the smart block */
3645
+ declare enum SmartBlockDataType {
3646
+ /** Grid-based layouts with solid box items containing title, body, and icon/image. */
3647
+ SOLID_BOXES = "SOLID_BOXES",
3648
+ /** Numbered boxes. */
3649
+ NUMBERED_BOXES = "NUMBERED_BOXES",
3650
+ /** Statistics display with large numbers/values. */
3651
+ STATS = "STATS",
3652
+ /** Statistics with circular visual elements. */
3653
+ CIRCLE_STATS = "CIRCLE_STATS",
3654
+ /** Staggered/zigzag grid layout with alternating box positions. */
3655
+ SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
3656
+ /** Grid layout with boxes visually joined (no gaps, shared container border). */
3657
+ SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
3658
+ /** Transparent cells with only a left side line. */
3659
+ SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
3660
+ /** Transparent cells with only a top line. */
3661
+ TOP_LINE_TEXT = "TOP_LINE_TEXT",
3662
+ /** Outlined boxes with a numbered/icon circle at the top. */
3663
+ OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
3664
+ /** Large icon bullets with text content. */
3665
+ BIG_BULLETS = "BIG_BULLETS",
3666
+ /** Small dot bullets with text content. */
3667
+ SMALL_BULLETS = "SMALL_BULLETS",
3668
+ /** Arrow icon bullets with text content. */
3669
+ ARROW_BULLETS = "ARROW_BULLETS",
3670
+ /** Process steps with numbered/icon labels above a horizontal line. */
3671
+ PROCESS_STEPS = "PROCESS_STEPS",
3672
+ /** Statistics with bar visual elements. */
3673
+ BAR_STATS = "BAR_STATS"
3674
+ }
3675
+ /** @enumType */
3676
+ 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';
3677
+ /** Column size controlling how many cells appear per row. */
3678
+ declare enum ColumnSize {
3679
+ /** Up to 4 cells in a row. */
3680
+ SMALL = "SMALL",
3681
+ /** Up to 3 cells in a row (default). */
3682
+ MEDIUM = "MEDIUM",
3683
+ /** Up to 2 cells in a row. */
3684
+ LARGE = "LARGE",
3685
+ /** 1 cell in a row. */
3686
+ EXTRA_LARGE = "EXTRA_LARGE"
3687
+ }
3688
+ /** @enumType */
3689
+ type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
3690
+ /** Data for a smart block cell node. */
3691
+ interface SmartBlockCellData {
3692
+ /** Optional label text for the cell (e.g., for stats variants). */
3693
+ label?: string | null;
3694
+ /** Shape file details. */
3695
+ shape?: Media;
3696
+ /**
3697
+ * Border color of the cell.
3698
+ * @maxLength 19
3699
+ */
3700
+ borderColor?: string | null;
3701
+ /** Border width in pixels. */
3702
+ borderWidth?: number | null;
3703
+ /** Border radius in pixels. */
3704
+ borderRadius?: number | null;
3705
+ /** The type of the parent smart block (must match parent). */
3706
+ type?: SmartBlockDataTypeWithLiterals;
3707
+ /**
3708
+ * Accent color for non-background variants (e.g., line, bullet, label color).
3709
+ * @maxLength 19
3710
+ */
3711
+ accentColor?: string | null;
3712
+ /**
3713
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
3714
+ * @maxLength 19
3715
+ */
3716
+ backgroundColor?: string | null;
3717
+ /**
3718
+ * Shape fill color as a hexadecimal value.
3719
+ * @maxLength 19
3720
+ */
3721
+ shapeColor?: string | null;
3722
+ }
3606
3723
  interface Metadata {
3607
3724
  /** Schema version. */
3608
3725
  version?: number;
@@ -4134,4 +4251,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
4134
4251
  */
4135
4252
  declare function discardDraft(eventId: string): Promise<void>;
4136
4253
 
4137
- export { type AccountInfo, type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, 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, ListStyle, type ListStyleWithLiterals, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, 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, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type ShapeData, type ShapeDataStyles, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type Stop, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, type TocData, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
4254
+ export { type AccountInfo, type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, 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, ListStyle, type ListStyleWithLiterals, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, 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, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type ShapeData, type ShapeDataStyles, type SiteUrl, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type Stop, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, type TocData, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
@@ -670,6 +670,7 @@ var EventStatus = /* @__PURE__ */ ((EventStatus2) => {
670
670
  EventStatus2["STARTED"] = "STARTED";
671
671
  EventStatus2["ENDED"] = "ENDED";
672
672
  EventStatus2["CANCELED"] = "CANCELED";
673
+ EventStatus2["DRAFT"] = "DRAFT";
673
674
  return EventStatus2;
674
675
  })(EventStatus || {});
675
676
  var EventType = /* @__PURE__ */ ((EventType2) => {
@@ -762,6 +763,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
762
763
  NodeType2["SHAPE"] = "SHAPE";
763
764
  NodeType2["CARD"] = "CARD";
764
765
  NodeType2["TOC"] = "TOC";
766
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
767
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
765
768
  return NodeType2;
766
769
  })(NodeType || {});
767
770
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -1089,6 +1092,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1089
1092
  Indentation2["FLAT"] = "FLAT";
1090
1093
  return Indentation2;
1091
1094
  })(Indentation || {});
1095
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1096
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
1097
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
1098
+ SmartBlockDataType2["STATS"] = "STATS";
1099
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
1100
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
1101
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
1102
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
1103
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
1104
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
1105
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
1106
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
1107
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1108
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1109
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1110
+ return SmartBlockDataType2;
1111
+ })(SmartBlockDataType || {});
1112
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
1113
+ ColumnSize2["SMALL"] = "SMALL";
1114
+ ColumnSize2["MEDIUM"] = "MEDIUM";
1115
+ ColumnSize2["LARGE"] = "LARGE";
1116
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
1117
+ return ColumnSize2;
1118
+ })(ColumnSize || {});
1092
1119
  var Type = /* @__PURE__ */ ((Type2) => {
1093
1120
  Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
1094
1121
  Type2["SECOND_PRIORITY"] = "SECOND_PRIORITY";
@@ -1329,6 +1356,7 @@ export {
1329
1356
  CardDataBackgroundType,
1330
1357
  CardStylesType,
1331
1358
  CheckoutType,
1359
+ ColumnSize,
1332
1360
  ConferenceType,
1333
1361
  Crop,
1334
1362
  DecorationType,
@@ -1369,6 +1397,7 @@ export {
1369
1397
  ResponsivenessBehaviour,
1370
1398
  RsvpStatusOptions,
1371
1399
  Scaling,
1400
+ SmartBlockDataType,
1372
1401
  Source,
1373
1402
  State,
1374
1403
  Status,