@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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +35 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +159 -48
- package/build/cjs/index.typings.js +31 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +159 -48
- package/build/cjs/meta.js +30 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +33 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +159 -48
- package/build/es/index.typings.mjs +29 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +159 -48
- package/build/es/meta.mjs +28 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +35 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +166 -49
- package/build/internal/cjs/index.typings.js +31 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +159 -48
- package/build/internal/cjs/meta.js +30 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +33 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +166 -49
- package/build/internal/es/index.typings.mjs +29 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +159 -48
- package/build/internal/es/meta.mjs +28 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1557,6 +1557,10 @@ interface Node extends NodeDataOneOf {
|
|
|
1557
1557
|
cardData?: CardData;
|
|
1558
1558
|
/** Data for a table of contents node. */
|
|
1559
1559
|
tocData?: TocData;
|
|
1560
|
+
/** Data for a smart block node. */
|
|
1561
|
+
smartBlockData?: SmartBlockData;
|
|
1562
|
+
/** Data for a smart block cell node. */
|
|
1563
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
1560
1564
|
/** 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
1565
|
type?: NodeTypeWithLiterals;
|
|
1562
1566
|
/** Node ID. */
|
|
@@ -1630,6 +1634,10 @@ interface NodeDataOneOf {
|
|
|
1630
1634
|
cardData?: CardData;
|
|
1631
1635
|
/** Data for a table of contents node. */
|
|
1632
1636
|
tocData?: TocData;
|
|
1637
|
+
/** Data for a smart block node. */
|
|
1638
|
+
smartBlockData?: SmartBlockData;
|
|
1639
|
+
/** Data for a smart block cell node. */
|
|
1640
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
1633
1641
|
}
|
|
1634
1642
|
declare enum NodeType {
|
|
1635
1643
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1668,10 +1676,12 @@ declare enum NodeType {
|
|
|
1668
1676
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
1669
1677
|
SHAPE = "SHAPE",
|
|
1670
1678
|
CARD = "CARD",
|
|
1671
|
-
TOC = "TOC"
|
|
1679
|
+
TOC = "TOC",
|
|
1680
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
1681
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
1672
1682
|
}
|
|
1673
1683
|
/** @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';
|
|
1684
|
+
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
1685
|
interface NodeStyle {
|
|
1676
1686
|
/** The top padding value in pixels. */
|
|
1677
1687
|
paddingTop?: string | null;
|
|
@@ -1735,7 +1745,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
1735
1745
|
interface Stop {
|
|
1736
1746
|
/**
|
|
1737
1747
|
* Stop color as hex value.
|
|
1738
|
-
* @
|
|
1748
|
+
* @maxLength 19
|
|
1739
1749
|
*/
|
|
1740
1750
|
color?: string | null;
|
|
1741
1751
|
/** Stop position (0-1). */
|
|
@@ -1776,7 +1786,7 @@ interface Background {
|
|
|
1776
1786
|
type?: BackgroundTypeWithLiterals;
|
|
1777
1787
|
/**
|
|
1778
1788
|
* Background color as a hexadecimal value.
|
|
1779
|
-
* @
|
|
1789
|
+
* @maxLength 19
|
|
1780
1790
|
*/
|
|
1781
1791
|
color?: string | null;
|
|
1782
1792
|
/** Gradient configuration. */
|
|
@@ -1883,33 +1893,33 @@ interface Styles {
|
|
|
1883
1893
|
borderRadius?: number | null;
|
|
1884
1894
|
/**
|
|
1885
1895
|
* Border color as a hexadecimal value.
|
|
1886
|
-
* @
|
|
1896
|
+
* @maxLength 19
|
|
1887
1897
|
*/
|
|
1888
1898
|
borderColor?: string | null;
|
|
1889
1899
|
/**
|
|
1890
1900
|
* Border color as a hexadecimal value (hover state).
|
|
1891
|
-
* @
|
|
1901
|
+
* @maxLength 19
|
|
1892
1902
|
*/
|
|
1893
1903
|
borderColorHover?: string | null;
|
|
1894
1904
|
/**
|
|
1895
1905
|
* Text color as a hexadecimal value.
|
|
1896
|
-
* @
|
|
1906
|
+
* @maxLength 19
|
|
1897
1907
|
*/
|
|
1898
1908
|
textColor?: string | null;
|
|
1899
1909
|
/**
|
|
1900
1910
|
* Text color as a hexadecimal value (hover state).
|
|
1901
|
-
* @
|
|
1911
|
+
* @maxLength 19
|
|
1902
1912
|
*/
|
|
1903
1913
|
textColorHover?: string | null;
|
|
1904
1914
|
/**
|
|
1905
1915
|
* Deprecated: Use `background` instead.
|
|
1906
|
-
* @
|
|
1916
|
+
* @maxLength 19
|
|
1907
1917
|
* @deprecated
|
|
1908
1918
|
*/
|
|
1909
1919
|
backgroundColor?: string | null;
|
|
1910
1920
|
/**
|
|
1911
1921
|
* Deprecated: Use `backgroundHover` instead.
|
|
1912
|
-
* @
|
|
1922
|
+
* @maxLength 19
|
|
1913
1923
|
* @deprecated
|
|
1914
1924
|
*/
|
|
1915
1925
|
backgroundColorHover?: string | null;
|
|
@@ -2289,6 +2299,8 @@ interface HeadingData {
|
|
|
2289
2299
|
textStyle?: TextStyle;
|
|
2290
2300
|
/** Indentation level from 1-4. */
|
|
2291
2301
|
indentation?: number | null;
|
|
2302
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
2303
|
+
renderedLevel?: number | null;
|
|
2292
2304
|
}
|
|
2293
2305
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
2294
2306
|
/** The URL for the HTML code for the node. */
|
|
@@ -2359,7 +2371,7 @@ interface StylesBorder {
|
|
|
2359
2371
|
width?: number | null;
|
|
2360
2372
|
/**
|
|
2361
2373
|
* Border color as a hexadecimal value.
|
|
2362
|
-
* @
|
|
2374
|
+
* @maxLength 19
|
|
2363
2375
|
*/
|
|
2364
2376
|
color?: string | null;
|
|
2365
2377
|
/** Border radius in pixels. */
|
|
@@ -2400,22 +2412,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
2400
2412
|
interface LinkPreviewDataStyles {
|
|
2401
2413
|
/**
|
|
2402
2414
|
* Background color as a hexadecimal value.
|
|
2403
|
-
* @
|
|
2415
|
+
* @maxLength 19
|
|
2404
2416
|
*/
|
|
2405
2417
|
backgroundColor?: string | null;
|
|
2406
2418
|
/**
|
|
2407
2419
|
* Title color as a hexadecimal value.
|
|
2408
|
-
* @
|
|
2420
|
+
* @maxLength 19
|
|
2409
2421
|
*/
|
|
2410
2422
|
titleColor?: string | null;
|
|
2411
2423
|
/**
|
|
2412
2424
|
* Subtitle color as a hexadecimal value.
|
|
2413
|
-
* @
|
|
2425
|
+
* @maxLength 19
|
|
2414
2426
|
*/
|
|
2415
2427
|
subtitleColor?: string | null;
|
|
2416
2428
|
/**
|
|
2417
2429
|
* Link color as a hexadecimal value.
|
|
2418
|
-
* @
|
|
2430
|
+
* @maxLength 19
|
|
2419
2431
|
*/
|
|
2420
2432
|
linkColor?: string | null;
|
|
2421
2433
|
/** Border width in pixels. */
|
|
@@ -2424,7 +2436,7 @@ interface LinkPreviewDataStyles {
|
|
|
2424
2436
|
borderRadius?: number | null;
|
|
2425
2437
|
/**
|
|
2426
2438
|
* Border color as a hexadecimal value.
|
|
2427
|
-
* @
|
|
2439
|
+
* @maxLength 19
|
|
2428
2440
|
*/
|
|
2429
2441
|
borderColor?: string | null;
|
|
2430
2442
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -2575,19 +2587,19 @@ interface BackgroundGradient {
|
|
|
2575
2587
|
angle?: number | null;
|
|
2576
2588
|
/**
|
|
2577
2589
|
* The start color as a hexademical value.
|
|
2578
|
-
* @
|
|
2590
|
+
* @maxLength 19
|
|
2579
2591
|
*/
|
|
2580
2592
|
startColor?: string | null;
|
|
2581
2593
|
/**
|
|
2582
2594
|
* The end color as a hexademical value.
|
|
2583
|
-
* @
|
|
2595
|
+
* @maxLength 19
|
|
2584
2596
|
*/
|
|
2585
2597
|
lastColor?: string | null;
|
|
2586
2598
|
}
|
|
2587
2599
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
2588
2600
|
/**
|
|
2589
2601
|
* The background color as a hexademical value.
|
|
2590
|
-
* @
|
|
2602
|
+
* @maxLength 19
|
|
2591
2603
|
*/
|
|
2592
2604
|
color?: string | null;
|
|
2593
2605
|
/** An image to use for the background. */
|
|
@@ -2601,7 +2613,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
2601
2613
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
2602
2614
|
/**
|
|
2603
2615
|
* The background color as a hexademical value.
|
|
2604
|
-
* @
|
|
2616
|
+
* @maxLength 19
|
|
2605
2617
|
*/
|
|
2606
2618
|
color?: string | null;
|
|
2607
2619
|
/** An image to use for the background. */
|
|
@@ -2915,32 +2927,32 @@ interface ButtonStyles {
|
|
|
2915
2927
|
borderRadius?: number | null;
|
|
2916
2928
|
/**
|
|
2917
2929
|
* Border color as a hexadecimal value.
|
|
2918
|
-
* @
|
|
2930
|
+
* @maxLength 19
|
|
2919
2931
|
*/
|
|
2920
2932
|
borderColor?: string | null;
|
|
2921
2933
|
/**
|
|
2922
2934
|
* Text color as a hexadecimal value.
|
|
2923
|
-
* @
|
|
2935
|
+
* @maxLength 19
|
|
2924
2936
|
*/
|
|
2925
2937
|
textColor?: string | null;
|
|
2926
2938
|
/**
|
|
2927
2939
|
* Background color as a hexadecimal value.
|
|
2928
|
-
* @
|
|
2940
|
+
* @maxLength 19
|
|
2929
2941
|
*/
|
|
2930
2942
|
backgroundColor?: string | null;
|
|
2931
2943
|
/**
|
|
2932
2944
|
* Border color as a hexadecimal value (hover state).
|
|
2933
|
-
* @
|
|
2945
|
+
* @maxLength 19
|
|
2934
2946
|
*/
|
|
2935
2947
|
borderColorHover?: string | null;
|
|
2936
2948
|
/**
|
|
2937
2949
|
* Text color as a hexadecimal value (hover state).
|
|
2938
|
-
* @
|
|
2950
|
+
* @maxLength 19
|
|
2939
2951
|
*/
|
|
2940
2952
|
textColorHover?: string | null;
|
|
2941
2953
|
/**
|
|
2942
2954
|
* Background color as a hexadecimal value (hover state).
|
|
2943
|
-
* @
|
|
2955
|
+
* @maxLength 19
|
|
2944
2956
|
*/
|
|
2945
2957
|
backgroundColorHover?: string | null;
|
|
2946
2958
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -2957,7 +2969,7 @@ interface ImageStyles {
|
|
|
2957
2969
|
resizing?: ResizingWithLiterals;
|
|
2958
2970
|
/**
|
|
2959
2971
|
* Image border color as a hexadecimal value.
|
|
2960
|
-
* @
|
|
2972
|
+
* @maxLength 19
|
|
2961
2973
|
*/
|
|
2962
2974
|
borderColor?: string | null;
|
|
2963
2975
|
/** Image border width in pixels. */
|
|
@@ -2970,17 +2982,17 @@ interface RibbonStyles {
|
|
|
2970
2982
|
ribbonText?: string | null;
|
|
2971
2983
|
/**
|
|
2972
2984
|
* Ribbon background color as a hexadecimal value.
|
|
2973
|
-
* @
|
|
2985
|
+
* @maxLength 19
|
|
2974
2986
|
*/
|
|
2975
2987
|
backgroundColor?: string | null;
|
|
2976
2988
|
/**
|
|
2977
2989
|
* Ribbon text color as a hexadecimal value.
|
|
2978
|
-
* @
|
|
2990
|
+
* @maxLength 19
|
|
2979
2991
|
*/
|
|
2980
2992
|
textColor?: string | null;
|
|
2981
2993
|
/**
|
|
2982
2994
|
* Ribbon border color as a hexadecimal value.
|
|
2983
|
-
* @
|
|
2995
|
+
* @maxLength 19
|
|
2984
2996
|
*/
|
|
2985
2997
|
borderColor?: string | null;
|
|
2986
2998
|
/** Ribbon border width in pixels. */
|
|
@@ -2993,12 +3005,12 @@ interface RibbonStyles {
|
|
|
2993
3005
|
interface CardStyles {
|
|
2994
3006
|
/**
|
|
2995
3007
|
* Card background color as a hexadecimal value.
|
|
2996
|
-
* @
|
|
3008
|
+
* @maxLength 19
|
|
2997
3009
|
*/
|
|
2998
3010
|
backgroundColor?: string | null;
|
|
2999
3011
|
/**
|
|
3000
3012
|
* Card border color as a hexadecimal value.
|
|
3001
|
-
* @
|
|
3013
|
+
* @maxLength 19
|
|
3002
3014
|
*/
|
|
3003
3015
|
borderColor?: string | null;
|
|
3004
3016
|
/** Card border width in pixels. */
|
|
@@ -3013,12 +3025,12 @@ interface CardStyles {
|
|
|
3013
3025
|
titlePriceLayout?: LayoutWithLiterals;
|
|
3014
3026
|
/**
|
|
3015
3027
|
* Title text color as a hexadecimal value.
|
|
3016
|
-
* @
|
|
3028
|
+
* @maxLength 19
|
|
3017
3029
|
*/
|
|
3018
3030
|
titleColor?: string | null;
|
|
3019
3031
|
/**
|
|
3020
3032
|
* Text color as a hexadecimal value.
|
|
3021
|
-
* @
|
|
3033
|
+
* @maxLength 19
|
|
3022
3034
|
*/
|
|
3023
3035
|
textColor?: string | null;
|
|
3024
3036
|
}
|
|
@@ -3162,6 +3174,8 @@ interface TableData {
|
|
|
3162
3174
|
* @maxSize 4
|
|
3163
3175
|
*/
|
|
3164
3176
|
cellPadding?: number[];
|
|
3177
|
+
/** Table's alternative text. */
|
|
3178
|
+
altText?: string | null;
|
|
3165
3179
|
}
|
|
3166
3180
|
interface Dimensions {
|
|
3167
3181
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -3198,29 +3212,29 @@ interface CellStyle {
|
|
|
3198
3212
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
3199
3213
|
/**
|
|
3200
3214
|
* Cell background color as a hexadecimal value.
|
|
3201
|
-
* @
|
|
3215
|
+
* @maxLength 19
|
|
3202
3216
|
*/
|
|
3203
3217
|
backgroundColor?: string | null;
|
|
3204
3218
|
}
|
|
3205
3219
|
interface BorderColors {
|
|
3206
3220
|
/**
|
|
3207
3221
|
* Left border color as a hexadecimal value.
|
|
3208
|
-
* @
|
|
3222
|
+
* @maxLength 19
|
|
3209
3223
|
*/
|
|
3210
3224
|
left?: string | null;
|
|
3211
3225
|
/**
|
|
3212
3226
|
* Right border color as a hexadecimal value.
|
|
3213
|
-
* @
|
|
3227
|
+
* @maxLength 19
|
|
3214
3228
|
*/
|
|
3215
3229
|
right?: string | null;
|
|
3216
3230
|
/**
|
|
3217
3231
|
* Top border color as a hexadecimal value.
|
|
3218
|
-
* @
|
|
3232
|
+
* @maxLength 19
|
|
3219
3233
|
*/
|
|
3220
3234
|
top?: string | null;
|
|
3221
3235
|
/**
|
|
3222
3236
|
* Bottom border color as a hexadecimal value.
|
|
3223
|
-
* @
|
|
3237
|
+
* @maxLength 19
|
|
3224
3238
|
*/
|
|
3225
3239
|
bottom?: string | null;
|
|
3226
3240
|
}
|
|
@@ -3295,7 +3309,7 @@ interface CaptionData {
|
|
|
3295
3309
|
interface LayoutData {
|
|
3296
3310
|
/**
|
|
3297
3311
|
* Deprecated: Use `background` instead.
|
|
3298
|
-
* @
|
|
3312
|
+
* @maxLength 19
|
|
3299
3313
|
* @deprecated
|
|
3300
3314
|
*/
|
|
3301
3315
|
backgroundColor?: string | null;
|
|
@@ -3303,7 +3317,7 @@ interface LayoutData {
|
|
|
3303
3317
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
3304
3318
|
/**
|
|
3305
3319
|
* Border color as a hexadecimal value.
|
|
3306
|
-
* @
|
|
3320
|
+
* @maxLength 19
|
|
3307
3321
|
*/
|
|
3308
3322
|
borderColor?: string | null;
|
|
3309
3323
|
/** Border width in pixels. */
|
|
@@ -3312,7 +3326,7 @@ interface LayoutData {
|
|
|
3312
3326
|
borderRadius?: number | null;
|
|
3313
3327
|
/**
|
|
3314
3328
|
* Deprecated: Use `backdrop` instead.
|
|
3315
|
-
* @
|
|
3329
|
+
* @maxLength 19
|
|
3316
3330
|
* @deprecated
|
|
3317
3331
|
*/
|
|
3318
3332
|
backdropColor?: string | null;
|
|
@@ -3450,7 +3464,7 @@ interface LayoutDataBackground {
|
|
|
3450
3464
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
3451
3465
|
/**
|
|
3452
3466
|
* Background color as a hexadecimal value.
|
|
3453
|
-
* @
|
|
3467
|
+
* @maxLength 19
|
|
3454
3468
|
*/
|
|
3455
3469
|
color?: string | null;
|
|
3456
3470
|
/** Gradient configuration. */
|
|
@@ -3462,7 +3476,7 @@ interface Backdrop {
|
|
|
3462
3476
|
type?: BackdropTypeWithLiterals;
|
|
3463
3477
|
/**
|
|
3464
3478
|
* Backdrop color as a hexadecimal value.
|
|
3465
|
-
* @
|
|
3479
|
+
* @maxLength 19
|
|
3466
3480
|
*/
|
|
3467
3481
|
color?: string | null;
|
|
3468
3482
|
/** Gradient configuration. */
|
|
@@ -3483,7 +3497,7 @@ interface ShapeData {
|
|
|
3483
3497
|
interface ShapeDataStyles {
|
|
3484
3498
|
/**
|
|
3485
3499
|
* Shape fill color as a hexadecimal value.
|
|
3486
|
-
* @
|
|
3500
|
+
* @maxLength 19
|
|
3487
3501
|
*/
|
|
3488
3502
|
color?: string | null;
|
|
3489
3503
|
/** Map of original color keys to their new color values. */
|
|
@@ -3542,7 +3556,7 @@ interface CardDataBackground {
|
|
|
3542
3556
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
3543
3557
|
/**
|
|
3544
3558
|
* Background color as a hexadecimal value.
|
|
3545
|
-
* @
|
|
3559
|
+
* @maxLength 19
|
|
3546
3560
|
*/
|
|
3547
3561
|
color?: string | null;
|
|
3548
3562
|
/** Gradient configuration. */
|
|
@@ -3569,7 +3583,7 @@ interface TocData {
|
|
|
3569
3583
|
itemSpacing?: number | null;
|
|
3570
3584
|
/**
|
|
3571
3585
|
* Optional override for the text color.
|
|
3572
|
-
* @
|
|
3586
|
+
* @maxLength 19
|
|
3573
3587
|
*/
|
|
3574
3588
|
color?: string | null;
|
|
3575
3589
|
/** Indentation style. Default: NESTED. */
|
|
@@ -3603,6 +3617,103 @@ declare enum Indentation {
|
|
|
3603
3617
|
}
|
|
3604
3618
|
/** @enumType */
|
|
3605
3619
|
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
3620
|
+
/** Data for a smart block node. */
|
|
3621
|
+
interface SmartBlockData {
|
|
3622
|
+
/** The type of the smart block. */
|
|
3623
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
3624
|
+
/** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
|
|
3625
|
+
orientation?: string | null;
|
|
3626
|
+
/** Column size controlling cells per row. */
|
|
3627
|
+
columnSize?: ColumnSizeWithLiterals;
|
|
3628
|
+
/**
|
|
3629
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
3630
|
+
* @maxLength 19
|
|
3631
|
+
*/
|
|
3632
|
+
borderColor?: string | null;
|
|
3633
|
+
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3634
|
+
borderWidth?: number | null;
|
|
3635
|
+
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3636
|
+
borderRadius?: number | null;
|
|
3637
|
+
}
|
|
3638
|
+
/** Layout type of the smart block */
|
|
3639
|
+
declare enum SmartBlockDataType {
|
|
3640
|
+
/** Grid-based layouts with solid box items containing title, body, and icon/image. */
|
|
3641
|
+
SOLID_BOXES = "SOLID_BOXES",
|
|
3642
|
+
/** Numbered boxes. */
|
|
3643
|
+
NUMBERED_BOXES = "NUMBERED_BOXES",
|
|
3644
|
+
/** Statistics display with large numbers/values. */
|
|
3645
|
+
STATS = "STATS",
|
|
3646
|
+
/** Statistics with circular visual elements. */
|
|
3647
|
+
CIRCLE_STATS = "CIRCLE_STATS",
|
|
3648
|
+
/** Staggered/zigzag grid layout with alternating box positions. */
|
|
3649
|
+
SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
|
|
3650
|
+
/** Grid layout with boxes visually joined (no gaps, shared container border). */
|
|
3651
|
+
SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
|
|
3652
|
+
/** Transparent cells with only a left side line. */
|
|
3653
|
+
SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
|
|
3654
|
+
/** Transparent cells with only a top line. */
|
|
3655
|
+
TOP_LINE_TEXT = "TOP_LINE_TEXT",
|
|
3656
|
+
/** Outlined boxes with a numbered/icon circle at the top. */
|
|
3657
|
+
OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
|
|
3658
|
+
/** Large icon bullets with text content. */
|
|
3659
|
+
BIG_BULLETS = "BIG_BULLETS",
|
|
3660
|
+
/** Small dot bullets with text content. */
|
|
3661
|
+
SMALL_BULLETS = "SMALL_BULLETS",
|
|
3662
|
+
/** Arrow icon bullets with text content. */
|
|
3663
|
+
ARROW_BULLETS = "ARROW_BULLETS",
|
|
3664
|
+
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
3665
|
+
PROCESS_STEPS = "PROCESS_STEPS",
|
|
3666
|
+
/** Statistics with bar visual elements. */
|
|
3667
|
+
BAR_STATS = "BAR_STATS"
|
|
3668
|
+
}
|
|
3669
|
+
/** @enumType */
|
|
3670
|
+
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';
|
|
3671
|
+
/** Column size controlling how many cells appear per row. */
|
|
3672
|
+
declare enum ColumnSize {
|
|
3673
|
+
/** Up to 4 cells in a row. */
|
|
3674
|
+
SMALL = "SMALL",
|
|
3675
|
+
/** Up to 3 cells in a row (default). */
|
|
3676
|
+
MEDIUM = "MEDIUM",
|
|
3677
|
+
/** Up to 2 cells in a row. */
|
|
3678
|
+
LARGE = "LARGE",
|
|
3679
|
+
/** 1 cell in a row. */
|
|
3680
|
+
EXTRA_LARGE = "EXTRA_LARGE"
|
|
3681
|
+
}
|
|
3682
|
+
/** @enumType */
|
|
3683
|
+
type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
|
|
3684
|
+
/** Data for a smart block cell node. */
|
|
3685
|
+
interface SmartBlockCellData {
|
|
3686
|
+
/** Optional label text for the cell (e.g., for stats variants). */
|
|
3687
|
+
label?: string | null;
|
|
3688
|
+
/** Shape file details. */
|
|
3689
|
+
shape?: Media;
|
|
3690
|
+
/**
|
|
3691
|
+
* Border color of the cell.
|
|
3692
|
+
* @maxLength 19
|
|
3693
|
+
*/
|
|
3694
|
+
borderColor?: string | null;
|
|
3695
|
+
/** Border width in pixels. */
|
|
3696
|
+
borderWidth?: number | null;
|
|
3697
|
+
/** Border radius in pixels. */
|
|
3698
|
+
borderRadius?: number | null;
|
|
3699
|
+
/** The type of the parent smart block (must match parent). */
|
|
3700
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
3701
|
+
/**
|
|
3702
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
3703
|
+
* @maxLength 19
|
|
3704
|
+
*/
|
|
3705
|
+
accentColor?: string | null;
|
|
3706
|
+
/**
|
|
3707
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
3708
|
+
* @maxLength 19
|
|
3709
|
+
*/
|
|
3710
|
+
backgroundColor?: string | null;
|
|
3711
|
+
/**
|
|
3712
|
+
* Shape fill color as a hexadecimal value.
|
|
3713
|
+
* @maxLength 19
|
|
3714
|
+
*/
|
|
3715
|
+
shapeColor?: string | null;
|
|
3716
|
+
}
|
|
3606
3717
|
interface Metadata {
|
|
3607
3718
|
/** Schema version. */
|
|
3608
3719
|
version?: number;
|
|
@@ -4134,4 +4245,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4134
4245
|
*/
|
|
4135
4246
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4136
4247
|
|
|
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 };
|
|
4248
|
+
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,
|