@wix/auto_sdk_events_forms 1.0.84 → 1.0.86
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 +8 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +77 -52
- package/build/cjs/index.typings.js +8 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +77 -52
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +7 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +77 -52
- package/build/es/index.typings.mjs +7 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +77 -52
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +8 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +84 -53
- package/build/internal/cjs/index.typings.js +8 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +77 -52
- package/build/internal/cjs/meta.js +7 -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 +7 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +84 -53
- package/build/internal/es/index.typings.mjs +7 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +77 -52
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- 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';
|
|
@@ -1745,7 +1751,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
1745
1751
|
interface Stop {
|
|
1746
1752
|
/**
|
|
1747
1753
|
* Stop color as hex value.
|
|
1748
|
-
* @
|
|
1754
|
+
* @maxLength 19
|
|
1749
1755
|
*/
|
|
1750
1756
|
color?: string | null;
|
|
1751
1757
|
/** Stop position (0-1). */
|
|
@@ -1786,7 +1792,7 @@ interface Background {
|
|
|
1786
1792
|
type?: BackgroundTypeWithLiterals;
|
|
1787
1793
|
/**
|
|
1788
1794
|
* Background color as a hexadecimal value.
|
|
1789
|
-
* @
|
|
1795
|
+
* @maxLength 19
|
|
1790
1796
|
*/
|
|
1791
1797
|
color?: string | null;
|
|
1792
1798
|
/** Gradient configuration. */
|
|
@@ -1893,33 +1899,33 @@ interface Styles {
|
|
|
1893
1899
|
borderRadius?: number | null;
|
|
1894
1900
|
/**
|
|
1895
1901
|
* Border color as a hexadecimal value.
|
|
1896
|
-
* @
|
|
1902
|
+
* @maxLength 19
|
|
1897
1903
|
*/
|
|
1898
1904
|
borderColor?: string | null;
|
|
1899
1905
|
/**
|
|
1900
1906
|
* Border color as a hexadecimal value (hover state).
|
|
1901
|
-
* @
|
|
1907
|
+
* @maxLength 19
|
|
1902
1908
|
*/
|
|
1903
1909
|
borderColorHover?: string | null;
|
|
1904
1910
|
/**
|
|
1905
1911
|
* Text color as a hexadecimal value.
|
|
1906
|
-
* @
|
|
1912
|
+
* @maxLength 19
|
|
1907
1913
|
*/
|
|
1908
1914
|
textColor?: string | null;
|
|
1909
1915
|
/**
|
|
1910
1916
|
* Text color as a hexadecimal value (hover state).
|
|
1911
|
-
* @
|
|
1917
|
+
* @maxLength 19
|
|
1912
1918
|
*/
|
|
1913
1919
|
textColorHover?: string | null;
|
|
1914
1920
|
/**
|
|
1915
1921
|
* Deprecated: Use `background` instead.
|
|
1916
|
-
* @
|
|
1922
|
+
* @maxLength 19
|
|
1917
1923
|
* @deprecated
|
|
1918
1924
|
*/
|
|
1919
1925
|
backgroundColor?: string | null;
|
|
1920
1926
|
/**
|
|
1921
1927
|
* Deprecated: Use `backgroundHover` instead.
|
|
1922
|
-
* @
|
|
1928
|
+
* @maxLength 19
|
|
1923
1929
|
* @deprecated
|
|
1924
1930
|
*/
|
|
1925
1931
|
backgroundColorHover?: string | null;
|
|
@@ -2371,7 +2377,7 @@ interface StylesBorder {
|
|
|
2371
2377
|
width?: number | null;
|
|
2372
2378
|
/**
|
|
2373
2379
|
* Border color as a hexadecimal value.
|
|
2374
|
-
* @
|
|
2380
|
+
* @maxLength 19
|
|
2375
2381
|
*/
|
|
2376
2382
|
color?: string | null;
|
|
2377
2383
|
/** Border radius in pixels. */
|
|
@@ -2412,22 +2418,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
2412
2418
|
interface LinkPreviewDataStyles {
|
|
2413
2419
|
/**
|
|
2414
2420
|
* Background color as a hexadecimal value.
|
|
2415
|
-
* @
|
|
2421
|
+
* @maxLength 19
|
|
2416
2422
|
*/
|
|
2417
2423
|
backgroundColor?: string | null;
|
|
2418
2424
|
/**
|
|
2419
2425
|
* Title color as a hexadecimal value.
|
|
2420
|
-
* @
|
|
2426
|
+
* @maxLength 19
|
|
2421
2427
|
*/
|
|
2422
2428
|
titleColor?: string | null;
|
|
2423
2429
|
/**
|
|
2424
2430
|
* Subtitle color as a hexadecimal value.
|
|
2425
|
-
* @
|
|
2431
|
+
* @maxLength 19
|
|
2426
2432
|
*/
|
|
2427
2433
|
subtitleColor?: string | null;
|
|
2428
2434
|
/**
|
|
2429
2435
|
* Link color as a hexadecimal value.
|
|
2430
|
-
* @
|
|
2436
|
+
* @maxLength 19
|
|
2431
2437
|
*/
|
|
2432
2438
|
linkColor?: string | null;
|
|
2433
2439
|
/** Border width in pixels. */
|
|
@@ -2436,7 +2442,7 @@ interface LinkPreviewDataStyles {
|
|
|
2436
2442
|
borderRadius?: number | null;
|
|
2437
2443
|
/**
|
|
2438
2444
|
* Border color as a hexadecimal value.
|
|
2439
|
-
* @
|
|
2445
|
+
* @maxLength 19
|
|
2440
2446
|
*/
|
|
2441
2447
|
borderColor?: string | null;
|
|
2442
2448
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -2587,19 +2593,19 @@ interface BackgroundGradient {
|
|
|
2587
2593
|
angle?: number | null;
|
|
2588
2594
|
/**
|
|
2589
2595
|
* The start color as a hexademical value.
|
|
2590
|
-
* @
|
|
2596
|
+
* @maxLength 19
|
|
2591
2597
|
*/
|
|
2592
2598
|
startColor?: string | null;
|
|
2593
2599
|
/**
|
|
2594
2600
|
* The end color as a hexademical value.
|
|
2595
|
-
* @
|
|
2601
|
+
* @maxLength 19
|
|
2596
2602
|
*/
|
|
2597
2603
|
lastColor?: string | null;
|
|
2598
2604
|
}
|
|
2599
2605
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
2600
2606
|
/**
|
|
2601
2607
|
* The background color as a hexademical value.
|
|
2602
|
-
* @
|
|
2608
|
+
* @maxLength 19
|
|
2603
2609
|
*/
|
|
2604
2610
|
color?: string | null;
|
|
2605
2611
|
/** An image to use for the background. */
|
|
@@ -2613,7 +2619,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
2613
2619
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
2614
2620
|
/**
|
|
2615
2621
|
* The background color as a hexademical value.
|
|
2616
|
-
* @
|
|
2622
|
+
* @maxLength 19
|
|
2617
2623
|
*/
|
|
2618
2624
|
color?: string | null;
|
|
2619
2625
|
/** An image to use for the background. */
|
|
@@ -2927,32 +2933,32 @@ interface ButtonStyles {
|
|
|
2927
2933
|
borderRadius?: number | null;
|
|
2928
2934
|
/**
|
|
2929
2935
|
* Border color as a hexadecimal value.
|
|
2930
|
-
* @
|
|
2936
|
+
* @maxLength 19
|
|
2931
2937
|
*/
|
|
2932
2938
|
borderColor?: string | null;
|
|
2933
2939
|
/**
|
|
2934
2940
|
* Text color as a hexadecimal value.
|
|
2935
|
-
* @
|
|
2941
|
+
* @maxLength 19
|
|
2936
2942
|
*/
|
|
2937
2943
|
textColor?: string | null;
|
|
2938
2944
|
/**
|
|
2939
2945
|
* Background color as a hexadecimal value.
|
|
2940
|
-
* @
|
|
2946
|
+
* @maxLength 19
|
|
2941
2947
|
*/
|
|
2942
2948
|
backgroundColor?: string | null;
|
|
2943
2949
|
/**
|
|
2944
2950
|
* Border color as a hexadecimal value (hover state).
|
|
2945
|
-
* @
|
|
2951
|
+
* @maxLength 19
|
|
2946
2952
|
*/
|
|
2947
2953
|
borderColorHover?: string | null;
|
|
2948
2954
|
/**
|
|
2949
2955
|
* Text color as a hexadecimal value (hover state).
|
|
2950
|
-
* @
|
|
2956
|
+
* @maxLength 19
|
|
2951
2957
|
*/
|
|
2952
2958
|
textColorHover?: string | null;
|
|
2953
2959
|
/**
|
|
2954
2960
|
* Background color as a hexadecimal value (hover state).
|
|
2955
|
-
* @
|
|
2961
|
+
* @maxLength 19
|
|
2956
2962
|
*/
|
|
2957
2963
|
backgroundColorHover?: string | null;
|
|
2958
2964
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -2969,7 +2975,7 @@ interface ImageStyles {
|
|
|
2969
2975
|
resizing?: ResizingWithLiterals;
|
|
2970
2976
|
/**
|
|
2971
2977
|
* Image border color as a hexadecimal value.
|
|
2972
|
-
* @
|
|
2978
|
+
* @maxLength 19
|
|
2973
2979
|
*/
|
|
2974
2980
|
borderColor?: string | null;
|
|
2975
2981
|
/** Image border width in pixels. */
|
|
@@ -2982,17 +2988,17 @@ interface RibbonStyles {
|
|
|
2982
2988
|
ribbonText?: string | null;
|
|
2983
2989
|
/**
|
|
2984
2990
|
* Ribbon background color as a hexadecimal value.
|
|
2985
|
-
* @
|
|
2991
|
+
* @maxLength 19
|
|
2986
2992
|
*/
|
|
2987
2993
|
backgroundColor?: string | null;
|
|
2988
2994
|
/**
|
|
2989
2995
|
* Ribbon text color as a hexadecimal value.
|
|
2990
|
-
* @
|
|
2996
|
+
* @maxLength 19
|
|
2991
2997
|
*/
|
|
2992
2998
|
textColor?: string | null;
|
|
2993
2999
|
/**
|
|
2994
3000
|
* Ribbon border color as a hexadecimal value.
|
|
2995
|
-
* @
|
|
3001
|
+
* @maxLength 19
|
|
2996
3002
|
*/
|
|
2997
3003
|
borderColor?: string | null;
|
|
2998
3004
|
/** Ribbon border width in pixels. */
|
|
@@ -3005,12 +3011,12 @@ interface RibbonStyles {
|
|
|
3005
3011
|
interface CardStyles {
|
|
3006
3012
|
/**
|
|
3007
3013
|
* Card background color as a hexadecimal value.
|
|
3008
|
-
* @
|
|
3014
|
+
* @maxLength 19
|
|
3009
3015
|
*/
|
|
3010
3016
|
backgroundColor?: string | null;
|
|
3011
3017
|
/**
|
|
3012
3018
|
* Card border color as a hexadecimal value.
|
|
3013
|
-
* @
|
|
3019
|
+
* @maxLength 19
|
|
3014
3020
|
*/
|
|
3015
3021
|
borderColor?: string | null;
|
|
3016
3022
|
/** Card border width in pixels. */
|
|
@@ -3025,12 +3031,12 @@ interface CardStyles {
|
|
|
3025
3031
|
titlePriceLayout?: LayoutWithLiterals;
|
|
3026
3032
|
/**
|
|
3027
3033
|
* Title text color as a hexadecimal value.
|
|
3028
|
-
* @
|
|
3034
|
+
* @maxLength 19
|
|
3029
3035
|
*/
|
|
3030
3036
|
titleColor?: string | null;
|
|
3031
3037
|
/**
|
|
3032
3038
|
* Text color as a hexadecimal value.
|
|
3033
|
-
* @
|
|
3039
|
+
* @maxLength 19
|
|
3034
3040
|
*/
|
|
3035
3041
|
textColor?: string | null;
|
|
3036
3042
|
}
|
|
@@ -3212,29 +3218,29 @@ interface CellStyle {
|
|
|
3212
3218
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
3213
3219
|
/**
|
|
3214
3220
|
* Cell background color as a hexadecimal value.
|
|
3215
|
-
* @
|
|
3221
|
+
* @maxLength 19
|
|
3216
3222
|
*/
|
|
3217
3223
|
backgroundColor?: string | null;
|
|
3218
3224
|
}
|
|
3219
3225
|
interface BorderColors {
|
|
3220
3226
|
/**
|
|
3221
3227
|
* Left border color as a hexadecimal value.
|
|
3222
|
-
* @
|
|
3228
|
+
* @maxLength 19
|
|
3223
3229
|
*/
|
|
3224
3230
|
left?: string | null;
|
|
3225
3231
|
/**
|
|
3226
3232
|
* Right border color as a hexadecimal value.
|
|
3227
|
-
* @
|
|
3233
|
+
* @maxLength 19
|
|
3228
3234
|
*/
|
|
3229
3235
|
right?: string | null;
|
|
3230
3236
|
/**
|
|
3231
3237
|
* Top border color as a hexadecimal value.
|
|
3232
|
-
* @
|
|
3238
|
+
* @maxLength 19
|
|
3233
3239
|
*/
|
|
3234
3240
|
top?: string | null;
|
|
3235
3241
|
/**
|
|
3236
3242
|
* Bottom border color as a hexadecimal value.
|
|
3237
|
-
* @
|
|
3243
|
+
* @maxLength 19
|
|
3238
3244
|
*/
|
|
3239
3245
|
bottom?: string | null;
|
|
3240
3246
|
}
|
|
@@ -3309,7 +3315,7 @@ interface CaptionData {
|
|
|
3309
3315
|
interface LayoutData {
|
|
3310
3316
|
/**
|
|
3311
3317
|
* Deprecated: Use `background` instead.
|
|
3312
|
-
* @
|
|
3318
|
+
* @maxLength 19
|
|
3313
3319
|
* @deprecated
|
|
3314
3320
|
*/
|
|
3315
3321
|
backgroundColor?: string | null;
|
|
@@ -3317,7 +3323,7 @@ interface LayoutData {
|
|
|
3317
3323
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
3318
3324
|
/**
|
|
3319
3325
|
* Border color as a hexadecimal value.
|
|
3320
|
-
* @
|
|
3326
|
+
* @maxLength 19
|
|
3321
3327
|
*/
|
|
3322
3328
|
borderColor?: string | null;
|
|
3323
3329
|
/** Border width in pixels. */
|
|
@@ -3326,7 +3332,7 @@ interface LayoutData {
|
|
|
3326
3332
|
borderRadius?: number | null;
|
|
3327
3333
|
/**
|
|
3328
3334
|
* Deprecated: Use `backdrop` instead.
|
|
3329
|
-
* @
|
|
3335
|
+
* @maxLength 19
|
|
3330
3336
|
* @deprecated
|
|
3331
3337
|
*/
|
|
3332
3338
|
backdropColor?: string | null;
|
|
@@ -3353,7 +3359,7 @@ interface LayoutData {
|
|
|
3353
3359
|
containerData?: PluginContainerData;
|
|
3354
3360
|
/** Defines where selected design propertied applies to */
|
|
3355
3361
|
designTarget?: DesignTargetWithLiterals;
|
|
3356
|
-
/** Banner configuration. When present, this layout is
|
|
3362
|
+
/** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
|
|
3357
3363
|
banner?: Banner;
|
|
3358
3364
|
/** Background styling (color or gradient). */
|
|
3359
3365
|
background?: LayoutDataBackground;
|
|
@@ -3400,6 +3406,14 @@ declare enum Origin {
|
|
|
3400
3406
|
}
|
|
3401
3407
|
/** @enumType */
|
|
3402
3408
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
3409
|
+
declare enum BannerPosition {
|
|
3410
|
+
/** Attached to the top edge (banner) */
|
|
3411
|
+
TOP = "TOP",
|
|
3412
|
+
/** Attached to the bottom edge (footer) */
|
|
3413
|
+
BOTTOM = "BOTTOM"
|
|
3414
|
+
}
|
|
3415
|
+
/** @enumType */
|
|
3416
|
+
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
3403
3417
|
/** Background type */
|
|
3404
3418
|
declare enum LayoutDataBackgroundType {
|
|
3405
3419
|
/** Solid color background */
|
|
@@ -3457,6 +3471,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
|
3457
3471
|
interface Banner {
|
|
3458
3472
|
/** Origin of the banner */
|
|
3459
3473
|
origin?: OriginWithLiterals;
|
|
3474
|
+
/** Position of the banner */
|
|
3475
|
+
position?: BannerPositionWithLiterals;
|
|
3460
3476
|
}
|
|
3461
3477
|
/** Background styling (color or gradient) */
|
|
3462
3478
|
interface LayoutDataBackground {
|
|
@@ -3464,7 +3480,7 @@ interface LayoutDataBackground {
|
|
|
3464
3480
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
3465
3481
|
/**
|
|
3466
3482
|
* Background color as a hexadecimal value.
|
|
3467
|
-
* @
|
|
3483
|
+
* @maxLength 19
|
|
3468
3484
|
*/
|
|
3469
3485
|
color?: string | null;
|
|
3470
3486
|
/** Gradient configuration. */
|
|
@@ -3476,7 +3492,7 @@ interface Backdrop {
|
|
|
3476
3492
|
type?: BackdropTypeWithLiterals;
|
|
3477
3493
|
/**
|
|
3478
3494
|
* Backdrop color as a hexadecimal value.
|
|
3479
|
-
* @
|
|
3495
|
+
* @maxLength 19
|
|
3480
3496
|
*/
|
|
3481
3497
|
color?: string | null;
|
|
3482
3498
|
/** Gradient configuration. */
|
|
@@ -3497,7 +3513,7 @@ interface ShapeData {
|
|
|
3497
3513
|
interface ShapeDataStyles {
|
|
3498
3514
|
/**
|
|
3499
3515
|
* Shape fill color as a hexadecimal value.
|
|
3500
|
-
* @
|
|
3516
|
+
* @maxLength 19
|
|
3501
3517
|
*/
|
|
3502
3518
|
color?: string | null;
|
|
3503
3519
|
/** Map of original color keys to their new color values. */
|
|
@@ -3556,7 +3572,7 @@ interface CardDataBackground {
|
|
|
3556
3572
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
3557
3573
|
/**
|
|
3558
3574
|
* Background color as a hexadecimal value.
|
|
3559
|
-
* @
|
|
3575
|
+
* @maxLength 19
|
|
3560
3576
|
*/
|
|
3561
3577
|
color?: string | null;
|
|
3562
3578
|
/** Gradient configuration. */
|
|
@@ -3583,7 +3599,7 @@ interface TocData {
|
|
|
3583
3599
|
itemSpacing?: number | null;
|
|
3584
3600
|
/**
|
|
3585
3601
|
* Optional override for the text color.
|
|
3586
|
-
* @
|
|
3602
|
+
* @maxLength 19
|
|
3587
3603
|
*/
|
|
3588
3604
|
color?: string | null;
|
|
3589
3605
|
/** Indentation style. Default: NESTED. */
|
|
@@ -3625,7 +3641,10 @@ interface SmartBlockData {
|
|
|
3625
3641
|
orientation?: string | null;
|
|
3626
3642
|
/** Column size controlling cells per row. */
|
|
3627
3643
|
columnSize?: ColumnSizeWithLiterals;
|
|
3628
|
-
/**
|
|
3644
|
+
/**
|
|
3645
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
3646
|
+
* @maxLength 19
|
|
3647
|
+
*/
|
|
3629
3648
|
borderColor?: string | null;
|
|
3630
3649
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3631
3650
|
borderWidth?: number | null;
|
|
@@ -3684,7 +3703,10 @@ interface SmartBlockCellData {
|
|
|
3684
3703
|
label?: string | null;
|
|
3685
3704
|
/** Shape file details. */
|
|
3686
3705
|
shape?: Media;
|
|
3687
|
-
/**
|
|
3706
|
+
/**
|
|
3707
|
+
* Border color of the cell.
|
|
3708
|
+
* @maxLength 19
|
|
3709
|
+
*/
|
|
3688
3710
|
borderColor?: string | null;
|
|
3689
3711
|
/** Border width in pixels. */
|
|
3690
3712
|
borderWidth?: number | null;
|
|
@@ -3692,11 +3714,20 @@ interface SmartBlockCellData {
|
|
|
3692
3714
|
borderRadius?: number | null;
|
|
3693
3715
|
/** The type of the parent smart block (must match parent). */
|
|
3694
3716
|
type?: SmartBlockDataTypeWithLiterals;
|
|
3695
|
-
/**
|
|
3717
|
+
/**
|
|
3718
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
3719
|
+
* @maxLength 19
|
|
3720
|
+
*/
|
|
3696
3721
|
accentColor?: string | null;
|
|
3697
|
-
/**
|
|
3722
|
+
/**
|
|
3723
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
3724
|
+
* @maxLength 19
|
|
3725
|
+
*/
|
|
3698
3726
|
backgroundColor?: string | null;
|
|
3699
|
-
/**
|
|
3727
|
+
/**
|
|
3728
|
+
* Shape fill color as a hexadecimal value.
|
|
3729
|
+
* @maxLength 19
|
|
3730
|
+
*/
|
|
3700
3731
|
shapeColor?: string | null;
|
|
3701
3732
|
}
|
|
3702
3733
|
interface Metadata {
|
|
@@ -4230,4 +4261,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4230
4261
|
*/
|
|
4231
4262
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4232
4263
|
|
|
4233
|
-
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 };
|
|
4264
|
+
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, BannerPosition, type BannerPositionWithLiterals, 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 };
|
|
@@ -25,6 +25,7 @@ __export(index_typings_exports, {
|
|
|
25
25
|
AspectRatio: () => AspectRatio,
|
|
26
26
|
BackdropType: () => BackdropType,
|
|
27
27
|
BackgroundType: () => BackgroundType,
|
|
28
|
+
BannerPosition: () => BannerPosition,
|
|
28
29
|
ButtonDataType: () => ButtonDataType,
|
|
29
30
|
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
30
31
|
CardStylesType: () => CardStylesType,
|
|
@@ -770,6 +771,7 @@ var EventStatus = /* @__PURE__ */ ((EventStatus2) => {
|
|
|
770
771
|
EventStatus2["STARTED"] = "STARTED";
|
|
771
772
|
EventStatus2["ENDED"] = "ENDED";
|
|
772
773
|
EventStatus2["CANCELED"] = "CANCELED";
|
|
774
|
+
EventStatus2["DRAFT"] = "DRAFT";
|
|
773
775
|
return EventStatus2;
|
|
774
776
|
})(EventStatus || {});
|
|
775
777
|
var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
@@ -1127,6 +1129,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
1127
1129
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
1128
1130
|
return Origin2;
|
|
1129
1131
|
})(Origin || {});
|
|
1132
|
+
var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
1133
|
+
BannerPosition2["TOP"] = "TOP";
|
|
1134
|
+
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
1135
|
+
return BannerPosition2;
|
|
1136
|
+
})(BannerPosition || {});
|
|
1130
1137
|
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
1131
1138
|
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
1132
1139
|
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
@@ -1452,6 +1459,7 @@ async function discardDraft2(eventId) {
|
|
|
1452
1459
|
AspectRatio,
|
|
1453
1460
|
BackdropType,
|
|
1454
1461
|
BackgroundType,
|
|
1462
|
+
BannerPosition,
|
|
1455
1463
|
ButtonDataType,
|
|
1456
1464
|
CardDataBackgroundType,
|
|
1457
1465
|
CardStylesType,
|