@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
|
@@ -1745,7 +1745,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
1745
1745
|
interface Stop {
|
|
1746
1746
|
/**
|
|
1747
1747
|
* Stop color as hex value.
|
|
1748
|
-
* @
|
|
1748
|
+
* @maxLength 19
|
|
1749
1749
|
*/
|
|
1750
1750
|
color?: string | null;
|
|
1751
1751
|
/** Stop position (0-1). */
|
|
@@ -1786,7 +1786,7 @@ interface Background {
|
|
|
1786
1786
|
type?: BackgroundTypeWithLiterals;
|
|
1787
1787
|
/**
|
|
1788
1788
|
* Background color as a hexadecimal value.
|
|
1789
|
-
* @
|
|
1789
|
+
* @maxLength 19
|
|
1790
1790
|
*/
|
|
1791
1791
|
color?: string | null;
|
|
1792
1792
|
/** Gradient configuration. */
|
|
@@ -1893,33 +1893,33 @@ interface Styles {
|
|
|
1893
1893
|
borderRadius?: number | null;
|
|
1894
1894
|
/**
|
|
1895
1895
|
* Border color as a hexadecimal value.
|
|
1896
|
-
* @
|
|
1896
|
+
* @maxLength 19
|
|
1897
1897
|
*/
|
|
1898
1898
|
borderColor?: string | null;
|
|
1899
1899
|
/**
|
|
1900
1900
|
* Border color as a hexadecimal value (hover state).
|
|
1901
|
-
* @
|
|
1901
|
+
* @maxLength 19
|
|
1902
1902
|
*/
|
|
1903
1903
|
borderColorHover?: string | null;
|
|
1904
1904
|
/**
|
|
1905
1905
|
* Text color as a hexadecimal value.
|
|
1906
|
-
* @
|
|
1906
|
+
* @maxLength 19
|
|
1907
1907
|
*/
|
|
1908
1908
|
textColor?: string | null;
|
|
1909
1909
|
/**
|
|
1910
1910
|
* Text color as a hexadecimal value (hover state).
|
|
1911
|
-
* @
|
|
1911
|
+
* @maxLength 19
|
|
1912
1912
|
*/
|
|
1913
1913
|
textColorHover?: string | null;
|
|
1914
1914
|
/**
|
|
1915
1915
|
* Deprecated: Use `background` instead.
|
|
1916
|
-
* @
|
|
1916
|
+
* @maxLength 19
|
|
1917
1917
|
* @deprecated
|
|
1918
1918
|
*/
|
|
1919
1919
|
backgroundColor?: string | null;
|
|
1920
1920
|
/**
|
|
1921
1921
|
* Deprecated: Use `backgroundHover` instead.
|
|
1922
|
-
* @
|
|
1922
|
+
* @maxLength 19
|
|
1923
1923
|
* @deprecated
|
|
1924
1924
|
*/
|
|
1925
1925
|
backgroundColorHover?: string | null;
|
|
@@ -2371,7 +2371,7 @@ interface StylesBorder {
|
|
|
2371
2371
|
width?: number | null;
|
|
2372
2372
|
/**
|
|
2373
2373
|
* Border color as a hexadecimal value.
|
|
2374
|
-
* @
|
|
2374
|
+
* @maxLength 19
|
|
2375
2375
|
*/
|
|
2376
2376
|
color?: string | null;
|
|
2377
2377
|
/** Border radius in pixels. */
|
|
@@ -2412,22 +2412,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
2412
2412
|
interface LinkPreviewDataStyles {
|
|
2413
2413
|
/**
|
|
2414
2414
|
* Background color as a hexadecimal value.
|
|
2415
|
-
* @
|
|
2415
|
+
* @maxLength 19
|
|
2416
2416
|
*/
|
|
2417
2417
|
backgroundColor?: string | null;
|
|
2418
2418
|
/**
|
|
2419
2419
|
* Title color as a hexadecimal value.
|
|
2420
|
-
* @
|
|
2420
|
+
* @maxLength 19
|
|
2421
2421
|
*/
|
|
2422
2422
|
titleColor?: string | null;
|
|
2423
2423
|
/**
|
|
2424
2424
|
* Subtitle color as a hexadecimal value.
|
|
2425
|
-
* @
|
|
2425
|
+
* @maxLength 19
|
|
2426
2426
|
*/
|
|
2427
2427
|
subtitleColor?: string | null;
|
|
2428
2428
|
/**
|
|
2429
2429
|
* Link color as a hexadecimal value.
|
|
2430
|
-
* @
|
|
2430
|
+
* @maxLength 19
|
|
2431
2431
|
*/
|
|
2432
2432
|
linkColor?: string | null;
|
|
2433
2433
|
/** Border width in pixels. */
|
|
@@ -2436,7 +2436,7 @@ interface LinkPreviewDataStyles {
|
|
|
2436
2436
|
borderRadius?: number | null;
|
|
2437
2437
|
/**
|
|
2438
2438
|
* Border color as a hexadecimal value.
|
|
2439
|
-
* @
|
|
2439
|
+
* @maxLength 19
|
|
2440
2440
|
*/
|
|
2441
2441
|
borderColor?: string | null;
|
|
2442
2442
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -2587,19 +2587,19 @@ interface BackgroundGradient {
|
|
|
2587
2587
|
angle?: number | null;
|
|
2588
2588
|
/**
|
|
2589
2589
|
* The start color as a hexademical value.
|
|
2590
|
-
* @
|
|
2590
|
+
* @maxLength 19
|
|
2591
2591
|
*/
|
|
2592
2592
|
startColor?: string | null;
|
|
2593
2593
|
/**
|
|
2594
2594
|
* The end color as a hexademical value.
|
|
2595
|
-
* @
|
|
2595
|
+
* @maxLength 19
|
|
2596
2596
|
*/
|
|
2597
2597
|
lastColor?: string | null;
|
|
2598
2598
|
}
|
|
2599
2599
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
2600
2600
|
/**
|
|
2601
2601
|
* The background color as a hexademical value.
|
|
2602
|
-
* @
|
|
2602
|
+
* @maxLength 19
|
|
2603
2603
|
*/
|
|
2604
2604
|
color?: string | null;
|
|
2605
2605
|
/** An image to use for the background. */
|
|
@@ -2613,7 +2613,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
2613
2613
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
2614
2614
|
/**
|
|
2615
2615
|
* The background color as a hexademical value.
|
|
2616
|
-
* @
|
|
2616
|
+
* @maxLength 19
|
|
2617
2617
|
*/
|
|
2618
2618
|
color?: string | null;
|
|
2619
2619
|
/** An image to use for the background. */
|
|
@@ -2927,32 +2927,32 @@ interface ButtonStyles {
|
|
|
2927
2927
|
borderRadius?: number | null;
|
|
2928
2928
|
/**
|
|
2929
2929
|
* Border color as a hexadecimal value.
|
|
2930
|
-
* @
|
|
2930
|
+
* @maxLength 19
|
|
2931
2931
|
*/
|
|
2932
2932
|
borderColor?: string | null;
|
|
2933
2933
|
/**
|
|
2934
2934
|
* Text color as a hexadecimal value.
|
|
2935
|
-
* @
|
|
2935
|
+
* @maxLength 19
|
|
2936
2936
|
*/
|
|
2937
2937
|
textColor?: string | null;
|
|
2938
2938
|
/**
|
|
2939
2939
|
* Background color as a hexadecimal value.
|
|
2940
|
-
* @
|
|
2940
|
+
* @maxLength 19
|
|
2941
2941
|
*/
|
|
2942
2942
|
backgroundColor?: string | null;
|
|
2943
2943
|
/**
|
|
2944
2944
|
* Border color as a hexadecimal value (hover state).
|
|
2945
|
-
* @
|
|
2945
|
+
* @maxLength 19
|
|
2946
2946
|
*/
|
|
2947
2947
|
borderColorHover?: string | null;
|
|
2948
2948
|
/**
|
|
2949
2949
|
* Text color as a hexadecimal value (hover state).
|
|
2950
|
-
* @
|
|
2950
|
+
* @maxLength 19
|
|
2951
2951
|
*/
|
|
2952
2952
|
textColorHover?: string | null;
|
|
2953
2953
|
/**
|
|
2954
2954
|
* Background color as a hexadecimal value (hover state).
|
|
2955
|
-
* @
|
|
2955
|
+
* @maxLength 19
|
|
2956
2956
|
*/
|
|
2957
2957
|
backgroundColorHover?: string | null;
|
|
2958
2958
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -2969,7 +2969,7 @@ interface ImageStyles {
|
|
|
2969
2969
|
resizing?: ResizingWithLiterals;
|
|
2970
2970
|
/**
|
|
2971
2971
|
* Image border color as a hexadecimal value.
|
|
2972
|
-
* @
|
|
2972
|
+
* @maxLength 19
|
|
2973
2973
|
*/
|
|
2974
2974
|
borderColor?: string | null;
|
|
2975
2975
|
/** Image border width in pixels. */
|
|
@@ -2982,17 +2982,17 @@ interface RibbonStyles {
|
|
|
2982
2982
|
ribbonText?: string | null;
|
|
2983
2983
|
/**
|
|
2984
2984
|
* Ribbon background color as a hexadecimal value.
|
|
2985
|
-
* @
|
|
2985
|
+
* @maxLength 19
|
|
2986
2986
|
*/
|
|
2987
2987
|
backgroundColor?: string | null;
|
|
2988
2988
|
/**
|
|
2989
2989
|
* Ribbon text color as a hexadecimal value.
|
|
2990
|
-
* @
|
|
2990
|
+
* @maxLength 19
|
|
2991
2991
|
*/
|
|
2992
2992
|
textColor?: string | null;
|
|
2993
2993
|
/**
|
|
2994
2994
|
* Ribbon border color as a hexadecimal value.
|
|
2995
|
-
* @
|
|
2995
|
+
* @maxLength 19
|
|
2996
2996
|
*/
|
|
2997
2997
|
borderColor?: string | null;
|
|
2998
2998
|
/** Ribbon border width in pixels. */
|
|
@@ -3005,12 +3005,12 @@ interface RibbonStyles {
|
|
|
3005
3005
|
interface CardStyles {
|
|
3006
3006
|
/**
|
|
3007
3007
|
* Card background color as a hexadecimal value.
|
|
3008
|
-
* @
|
|
3008
|
+
* @maxLength 19
|
|
3009
3009
|
*/
|
|
3010
3010
|
backgroundColor?: string | null;
|
|
3011
3011
|
/**
|
|
3012
3012
|
* Card border color as a hexadecimal value.
|
|
3013
|
-
* @
|
|
3013
|
+
* @maxLength 19
|
|
3014
3014
|
*/
|
|
3015
3015
|
borderColor?: string | null;
|
|
3016
3016
|
/** Card border width in pixels. */
|
|
@@ -3025,12 +3025,12 @@ interface CardStyles {
|
|
|
3025
3025
|
titlePriceLayout?: LayoutWithLiterals;
|
|
3026
3026
|
/**
|
|
3027
3027
|
* Title text color as a hexadecimal value.
|
|
3028
|
-
* @
|
|
3028
|
+
* @maxLength 19
|
|
3029
3029
|
*/
|
|
3030
3030
|
titleColor?: string | null;
|
|
3031
3031
|
/**
|
|
3032
3032
|
* Text color as a hexadecimal value.
|
|
3033
|
-
* @
|
|
3033
|
+
* @maxLength 19
|
|
3034
3034
|
*/
|
|
3035
3035
|
textColor?: string | null;
|
|
3036
3036
|
}
|
|
@@ -3212,29 +3212,29 @@ interface CellStyle {
|
|
|
3212
3212
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
3213
3213
|
/**
|
|
3214
3214
|
* Cell background color as a hexadecimal value.
|
|
3215
|
-
* @
|
|
3215
|
+
* @maxLength 19
|
|
3216
3216
|
*/
|
|
3217
3217
|
backgroundColor?: string | null;
|
|
3218
3218
|
}
|
|
3219
3219
|
interface BorderColors {
|
|
3220
3220
|
/**
|
|
3221
3221
|
* Left border color as a hexadecimal value.
|
|
3222
|
-
* @
|
|
3222
|
+
* @maxLength 19
|
|
3223
3223
|
*/
|
|
3224
3224
|
left?: string | null;
|
|
3225
3225
|
/**
|
|
3226
3226
|
* Right border color as a hexadecimal value.
|
|
3227
|
-
* @
|
|
3227
|
+
* @maxLength 19
|
|
3228
3228
|
*/
|
|
3229
3229
|
right?: string | null;
|
|
3230
3230
|
/**
|
|
3231
3231
|
* Top border color as a hexadecimal value.
|
|
3232
|
-
* @
|
|
3232
|
+
* @maxLength 19
|
|
3233
3233
|
*/
|
|
3234
3234
|
top?: string | null;
|
|
3235
3235
|
/**
|
|
3236
3236
|
* Bottom border color as a hexadecimal value.
|
|
3237
|
-
* @
|
|
3237
|
+
* @maxLength 19
|
|
3238
3238
|
*/
|
|
3239
3239
|
bottom?: string | null;
|
|
3240
3240
|
}
|
|
@@ -3309,7 +3309,7 @@ interface CaptionData {
|
|
|
3309
3309
|
interface LayoutData {
|
|
3310
3310
|
/**
|
|
3311
3311
|
* Deprecated: Use `background` instead.
|
|
3312
|
-
* @
|
|
3312
|
+
* @maxLength 19
|
|
3313
3313
|
* @deprecated
|
|
3314
3314
|
*/
|
|
3315
3315
|
backgroundColor?: string | null;
|
|
@@ -3317,7 +3317,7 @@ interface LayoutData {
|
|
|
3317
3317
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
3318
3318
|
/**
|
|
3319
3319
|
* Border color as a hexadecimal value.
|
|
3320
|
-
* @
|
|
3320
|
+
* @maxLength 19
|
|
3321
3321
|
*/
|
|
3322
3322
|
borderColor?: string | null;
|
|
3323
3323
|
/** Border width in pixels. */
|
|
@@ -3326,7 +3326,7 @@ interface LayoutData {
|
|
|
3326
3326
|
borderRadius?: number | null;
|
|
3327
3327
|
/**
|
|
3328
3328
|
* Deprecated: Use `backdrop` instead.
|
|
3329
|
-
* @
|
|
3329
|
+
* @maxLength 19
|
|
3330
3330
|
* @deprecated
|
|
3331
3331
|
*/
|
|
3332
3332
|
backdropColor?: string | null;
|
|
@@ -3353,7 +3353,7 @@ interface LayoutData {
|
|
|
3353
3353
|
containerData?: PluginContainerData;
|
|
3354
3354
|
/** Defines where selected design propertied applies to */
|
|
3355
3355
|
designTarget?: DesignTargetWithLiterals;
|
|
3356
|
-
/** Banner configuration. When present, this layout is
|
|
3356
|
+
/** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
|
|
3357
3357
|
banner?: Banner;
|
|
3358
3358
|
/** Background styling (color or gradient). */
|
|
3359
3359
|
background?: LayoutDataBackground;
|
|
@@ -3400,6 +3400,14 @@ declare enum Origin {
|
|
|
3400
3400
|
}
|
|
3401
3401
|
/** @enumType */
|
|
3402
3402
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
3403
|
+
declare enum BannerPosition {
|
|
3404
|
+
/** Attached to the top edge (banner) */
|
|
3405
|
+
TOP = "TOP",
|
|
3406
|
+
/** Attached to the bottom edge (footer) */
|
|
3407
|
+
BOTTOM = "BOTTOM"
|
|
3408
|
+
}
|
|
3409
|
+
/** @enumType */
|
|
3410
|
+
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
3403
3411
|
/** Background type */
|
|
3404
3412
|
declare enum LayoutDataBackgroundType {
|
|
3405
3413
|
/** Solid color background */
|
|
@@ -3457,6 +3465,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
|
3457
3465
|
interface Banner {
|
|
3458
3466
|
/** Origin of the banner */
|
|
3459
3467
|
origin?: OriginWithLiterals;
|
|
3468
|
+
/** Position of the banner */
|
|
3469
|
+
position?: BannerPositionWithLiterals;
|
|
3460
3470
|
}
|
|
3461
3471
|
/** Background styling (color or gradient) */
|
|
3462
3472
|
interface LayoutDataBackground {
|
|
@@ -3464,7 +3474,7 @@ interface LayoutDataBackground {
|
|
|
3464
3474
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
3465
3475
|
/**
|
|
3466
3476
|
* Background color as a hexadecimal value.
|
|
3467
|
-
* @
|
|
3477
|
+
* @maxLength 19
|
|
3468
3478
|
*/
|
|
3469
3479
|
color?: string | null;
|
|
3470
3480
|
/** Gradient configuration. */
|
|
@@ -3476,7 +3486,7 @@ interface Backdrop {
|
|
|
3476
3486
|
type?: BackdropTypeWithLiterals;
|
|
3477
3487
|
/**
|
|
3478
3488
|
* Backdrop color as a hexadecimal value.
|
|
3479
|
-
* @
|
|
3489
|
+
* @maxLength 19
|
|
3480
3490
|
*/
|
|
3481
3491
|
color?: string | null;
|
|
3482
3492
|
/** Gradient configuration. */
|
|
@@ -3497,7 +3507,7 @@ interface ShapeData {
|
|
|
3497
3507
|
interface ShapeDataStyles {
|
|
3498
3508
|
/**
|
|
3499
3509
|
* Shape fill color as a hexadecimal value.
|
|
3500
|
-
* @
|
|
3510
|
+
* @maxLength 19
|
|
3501
3511
|
*/
|
|
3502
3512
|
color?: string | null;
|
|
3503
3513
|
/** Map of original color keys to their new color values. */
|
|
@@ -3556,7 +3566,7 @@ interface CardDataBackground {
|
|
|
3556
3566
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
3557
3567
|
/**
|
|
3558
3568
|
* Background color as a hexadecimal value.
|
|
3559
|
-
* @
|
|
3569
|
+
* @maxLength 19
|
|
3560
3570
|
*/
|
|
3561
3571
|
color?: string | null;
|
|
3562
3572
|
/** Gradient configuration. */
|
|
@@ -3583,7 +3593,7 @@ interface TocData {
|
|
|
3583
3593
|
itemSpacing?: number | null;
|
|
3584
3594
|
/**
|
|
3585
3595
|
* Optional override for the text color.
|
|
3586
|
-
* @
|
|
3596
|
+
* @maxLength 19
|
|
3587
3597
|
*/
|
|
3588
3598
|
color?: string | null;
|
|
3589
3599
|
/** Indentation style. Default: NESTED. */
|
|
@@ -3625,7 +3635,10 @@ interface SmartBlockData {
|
|
|
3625
3635
|
orientation?: string | null;
|
|
3626
3636
|
/** Column size controlling cells per row. */
|
|
3627
3637
|
columnSize?: ColumnSizeWithLiterals;
|
|
3628
|
-
/**
|
|
3638
|
+
/**
|
|
3639
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
3640
|
+
* @maxLength 19
|
|
3641
|
+
*/
|
|
3629
3642
|
borderColor?: string | null;
|
|
3630
3643
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3631
3644
|
borderWidth?: number | null;
|
|
@@ -3684,7 +3697,10 @@ interface SmartBlockCellData {
|
|
|
3684
3697
|
label?: string | null;
|
|
3685
3698
|
/** Shape file details. */
|
|
3686
3699
|
shape?: Media;
|
|
3687
|
-
/**
|
|
3700
|
+
/**
|
|
3701
|
+
* Border color of the cell.
|
|
3702
|
+
* @maxLength 19
|
|
3703
|
+
*/
|
|
3688
3704
|
borderColor?: string | null;
|
|
3689
3705
|
/** Border width in pixels. */
|
|
3690
3706
|
borderWidth?: number | null;
|
|
@@ -3692,11 +3708,20 @@ interface SmartBlockCellData {
|
|
|
3692
3708
|
borderRadius?: number | null;
|
|
3693
3709
|
/** The type of the parent smart block (must match parent). */
|
|
3694
3710
|
type?: SmartBlockDataTypeWithLiterals;
|
|
3695
|
-
/**
|
|
3711
|
+
/**
|
|
3712
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
3713
|
+
* @maxLength 19
|
|
3714
|
+
*/
|
|
3696
3715
|
accentColor?: string | null;
|
|
3697
|
-
/**
|
|
3716
|
+
/**
|
|
3717
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
3718
|
+
* @maxLength 19
|
|
3719
|
+
*/
|
|
3698
3720
|
backgroundColor?: string | null;
|
|
3699
|
-
/**
|
|
3721
|
+
/**
|
|
3722
|
+
* Shape fill color as a hexadecimal value.
|
|
3723
|
+
* @maxLength 19
|
|
3724
|
+
*/
|
|
3700
3725
|
shapeColor?: string | null;
|
|
3701
3726
|
}
|
|
3702
3727
|
interface Metadata {
|
|
@@ -4230,4 +4255,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4230
4255
|
*/
|
|
4231
4256
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4232
4257
|
|
|
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 };
|
|
4258
|
+
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 };
|
|
@@ -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) => {
|
|
@@ -1027,6 +1028,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
1027
1028
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
1028
1029
|
return Origin2;
|
|
1029
1030
|
})(Origin || {});
|
|
1031
|
+
var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
1032
|
+
BannerPosition2["TOP"] = "TOP";
|
|
1033
|
+
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
1034
|
+
return BannerPosition2;
|
|
1035
|
+
})(BannerPosition || {});
|
|
1030
1036
|
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
1031
1037
|
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
1032
1038
|
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
@@ -1351,6 +1357,7 @@ export {
|
|
|
1351
1357
|
AspectRatio,
|
|
1352
1358
|
BackdropType,
|
|
1353
1359
|
BackgroundType,
|
|
1360
|
+
BannerPosition,
|
|
1354
1361
|
ButtonDataType,
|
|
1355
1362
|
CardDataBackgroundType,
|
|
1356
1363
|
CardStylesType,
|