@wix/auto_sdk_forms_submissions 1.0.120 → 1.0.122
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/{forms-v4-submission-submissions.universal-Yk4TWzuP.d.ts → forms-v4-submission-submissions.universal-iL5s7YRB.d.ts} +89 -54
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +12 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +12 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +90 -55
- package/build/cjs/meta.js +12 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-Yk4TWzuP.d.mts → forms-v4-submission-submissions.universal-iL5s7YRB.d.mts} +89 -54
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +11 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +11 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +90 -55
- package/build/es/meta.mjs +11 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-BX16r0LB.d.ts → forms-v4-submission-submissions.universal-MYwdZTUH.d.ts} +89 -54
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +12 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +12 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +90 -55
- package/build/internal/cjs/meta.js +12 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-BX16r0LB.d.mts → forms-v4-submission-submissions.universal-MYwdZTUH.d.mts} +89 -54
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +11 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +11 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +90 -55
- package/build/internal/es/meta.mjs +11 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1735,7 +1735,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
1735
1735
|
interface Stop {
|
|
1736
1736
|
/**
|
|
1737
1737
|
* Stop color as hex value.
|
|
1738
|
-
* @
|
|
1738
|
+
* @maxLength 19
|
|
1739
1739
|
*/
|
|
1740
1740
|
color?: string | null;
|
|
1741
1741
|
/** Stop position (0-1). */
|
|
@@ -1776,7 +1776,7 @@ interface Background {
|
|
|
1776
1776
|
type?: BackgroundTypeWithLiterals;
|
|
1777
1777
|
/**
|
|
1778
1778
|
* Background color as a hexadecimal value.
|
|
1779
|
-
* @
|
|
1779
|
+
* @maxLength 19
|
|
1780
1780
|
*/
|
|
1781
1781
|
color?: string | null;
|
|
1782
1782
|
/** Gradient configuration. */
|
|
@@ -1883,33 +1883,33 @@ interface Styles {
|
|
|
1883
1883
|
borderRadius?: number | null;
|
|
1884
1884
|
/**
|
|
1885
1885
|
* Border color as a hexadecimal value.
|
|
1886
|
-
* @
|
|
1886
|
+
* @maxLength 19
|
|
1887
1887
|
*/
|
|
1888
1888
|
borderColor?: string | null;
|
|
1889
1889
|
/**
|
|
1890
1890
|
* Border color as a hexadecimal value (hover state).
|
|
1891
|
-
* @
|
|
1891
|
+
* @maxLength 19
|
|
1892
1892
|
*/
|
|
1893
1893
|
borderColorHover?: string | null;
|
|
1894
1894
|
/**
|
|
1895
1895
|
* Text color as a hexadecimal value.
|
|
1896
|
-
* @
|
|
1896
|
+
* @maxLength 19
|
|
1897
1897
|
*/
|
|
1898
1898
|
textColor?: string | null;
|
|
1899
1899
|
/**
|
|
1900
1900
|
* Text color as a hexadecimal value (hover state).
|
|
1901
|
-
* @
|
|
1901
|
+
* @maxLength 19
|
|
1902
1902
|
*/
|
|
1903
1903
|
textColorHover?: string | null;
|
|
1904
1904
|
/**
|
|
1905
1905
|
* Deprecated: Use `background` instead.
|
|
1906
|
-
* @
|
|
1906
|
+
* @maxLength 19
|
|
1907
1907
|
* @deprecated
|
|
1908
1908
|
*/
|
|
1909
1909
|
backgroundColor?: string | null;
|
|
1910
1910
|
/**
|
|
1911
1911
|
* Deprecated: Use `backgroundHover` instead.
|
|
1912
|
-
* @
|
|
1912
|
+
* @maxLength 19
|
|
1913
1913
|
* @deprecated
|
|
1914
1914
|
*/
|
|
1915
1915
|
backgroundColorHover?: string | null;
|
|
@@ -2361,7 +2361,7 @@ interface StylesBorder {
|
|
|
2361
2361
|
width?: number | null;
|
|
2362
2362
|
/**
|
|
2363
2363
|
* Border color as a hexadecimal value.
|
|
2364
|
-
* @
|
|
2364
|
+
* @maxLength 19
|
|
2365
2365
|
*/
|
|
2366
2366
|
color?: string | null;
|
|
2367
2367
|
/** Border radius in pixels. */
|
|
@@ -2402,22 +2402,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
2402
2402
|
interface LinkPreviewDataStyles {
|
|
2403
2403
|
/**
|
|
2404
2404
|
* Background color as a hexadecimal value.
|
|
2405
|
-
* @
|
|
2405
|
+
* @maxLength 19
|
|
2406
2406
|
*/
|
|
2407
2407
|
backgroundColor?: string | null;
|
|
2408
2408
|
/**
|
|
2409
2409
|
* Title color as a hexadecimal value.
|
|
2410
|
-
* @
|
|
2410
|
+
* @maxLength 19
|
|
2411
2411
|
*/
|
|
2412
2412
|
titleColor?: string | null;
|
|
2413
2413
|
/**
|
|
2414
2414
|
* Subtitle color as a hexadecimal value.
|
|
2415
|
-
* @
|
|
2415
|
+
* @maxLength 19
|
|
2416
2416
|
*/
|
|
2417
2417
|
subtitleColor?: string | null;
|
|
2418
2418
|
/**
|
|
2419
2419
|
* Link color as a hexadecimal value.
|
|
2420
|
-
* @
|
|
2420
|
+
* @maxLength 19
|
|
2421
2421
|
*/
|
|
2422
2422
|
linkColor?: string | null;
|
|
2423
2423
|
/** Border width in pixels. */
|
|
@@ -2426,7 +2426,7 @@ interface LinkPreviewDataStyles {
|
|
|
2426
2426
|
borderRadius?: number | null;
|
|
2427
2427
|
/**
|
|
2428
2428
|
* Border color as a hexadecimal value.
|
|
2429
|
-
* @
|
|
2429
|
+
* @maxLength 19
|
|
2430
2430
|
*/
|
|
2431
2431
|
borderColor?: string | null;
|
|
2432
2432
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -2577,19 +2577,19 @@ interface BackgroundGradient {
|
|
|
2577
2577
|
angle?: number | null;
|
|
2578
2578
|
/**
|
|
2579
2579
|
* The start color as a hexademical value.
|
|
2580
|
-
* @
|
|
2580
|
+
* @maxLength 19
|
|
2581
2581
|
*/
|
|
2582
2582
|
startColor?: string | null;
|
|
2583
2583
|
/**
|
|
2584
2584
|
* The end color as a hexademical value.
|
|
2585
|
-
* @
|
|
2585
|
+
* @maxLength 19
|
|
2586
2586
|
*/
|
|
2587
2587
|
lastColor?: string | null;
|
|
2588
2588
|
}
|
|
2589
2589
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
2590
2590
|
/**
|
|
2591
2591
|
* The background color as a hexademical value.
|
|
2592
|
-
* @
|
|
2592
|
+
* @maxLength 19
|
|
2593
2593
|
*/
|
|
2594
2594
|
color?: string | null;
|
|
2595
2595
|
/** An image to use for the background. */
|
|
@@ -2603,7 +2603,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
2603
2603
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
2604
2604
|
/**
|
|
2605
2605
|
* The background color as a hexademical value.
|
|
2606
|
-
* @
|
|
2606
|
+
* @maxLength 19
|
|
2607
2607
|
*/
|
|
2608
2608
|
color?: string | null;
|
|
2609
2609
|
/** An image to use for the background. */
|
|
@@ -2917,32 +2917,32 @@ interface ButtonStyles {
|
|
|
2917
2917
|
borderRadius?: number | null;
|
|
2918
2918
|
/**
|
|
2919
2919
|
* Border color as a hexadecimal value.
|
|
2920
|
-
* @
|
|
2920
|
+
* @maxLength 19
|
|
2921
2921
|
*/
|
|
2922
2922
|
borderColor?: string | null;
|
|
2923
2923
|
/**
|
|
2924
2924
|
* Text color as a hexadecimal value.
|
|
2925
|
-
* @
|
|
2925
|
+
* @maxLength 19
|
|
2926
2926
|
*/
|
|
2927
2927
|
textColor?: string | null;
|
|
2928
2928
|
/**
|
|
2929
2929
|
* Background color as a hexadecimal value.
|
|
2930
|
-
* @
|
|
2930
|
+
* @maxLength 19
|
|
2931
2931
|
*/
|
|
2932
2932
|
backgroundColor?: string | null;
|
|
2933
2933
|
/**
|
|
2934
2934
|
* Border color as a hexadecimal value (hover state).
|
|
2935
|
-
* @
|
|
2935
|
+
* @maxLength 19
|
|
2936
2936
|
*/
|
|
2937
2937
|
borderColorHover?: string | null;
|
|
2938
2938
|
/**
|
|
2939
2939
|
* Text color as a hexadecimal value (hover state).
|
|
2940
|
-
* @
|
|
2940
|
+
* @maxLength 19
|
|
2941
2941
|
*/
|
|
2942
2942
|
textColorHover?: string | null;
|
|
2943
2943
|
/**
|
|
2944
2944
|
* Background color as a hexadecimal value (hover state).
|
|
2945
|
-
* @
|
|
2945
|
+
* @maxLength 19
|
|
2946
2946
|
*/
|
|
2947
2947
|
backgroundColorHover?: string | null;
|
|
2948
2948
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -2959,7 +2959,7 @@ interface ImageStyles {
|
|
|
2959
2959
|
resizing?: ResizingWithLiterals;
|
|
2960
2960
|
/**
|
|
2961
2961
|
* Image border color as a hexadecimal value.
|
|
2962
|
-
* @
|
|
2962
|
+
* @maxLength 19
|
|
2963
2963
|
*/
|
|
2964
2964
|
borderColor?: string | null;
|
|
2965
2965
|
/** Image border width in pixels. */
|
|
@@ -2972,17 +2972,17 @@ interface RibbonStyles {
|
|
|
2972
2972
|
ribbonText?: string | null;
|
|
2973
2973
|
/**
|
|
2974
2974
|
* Ribbon background color as a hexadecimal value.
|
|
2975
|
-
* @
|
|
2975
|
+
* @maxLength 19
|
|
2976
2976
|
*/
|
|
2977
2977
|
backgroundColor?: string | null;
|
|
2978
2978
|
/**
|
|
2979
2979
|
* Ribbon text color as a hexadecimal value.
|
|
2980
|
-
* @
|
|
2980
|
+
* @maxLength 19
|
|
2981
2981
|
*/
|
|
2982
2982
|
textColor?: string | null;
|
|
2983
2983
|
/**
|
|
2984
2984
|
* Ribbon border color as a hexadecimal value.
|
|
2985
|
-
* @
|
|
2985
|
+
* @maxLength 19
|
|
2986
2986
|
*/
|
|
2987
2987
|
borderColor?: string | null;
|
|
2988
2988
|
/** Ribbon border width in pixels. */
|
|
@@ -2995,12 +2995,12 @@ interface RibbonStyles {
|
|
|
2995
2995
|
interface CardStyles {
|
|
2996
2996
|
/**
|
|
2997
2997
|
* Card background color as a hexadecimal value.
|
|
2998
|
-
* @
|
|
2998
|
+
* @maxLength 19
|
|
2999
2999
|
*/
|
|
3000
3000
|
backgroundColor?: string | null;
|
|
3001
3001
|
/**
|
|
3002
3002
|
* Card border color as a hexadecimal value.
|
|
3003
|
-
* @
|
|
3003
|
+
* @maxLength 19
|
|
3004
3004
|
*/
|
|
3005
3005
|
borderColor?: string | null;
|
|
3006
3006
|
/** Card border width in pixels. */
|
|
@@ -3015,12 +3015,12 @@ interface CardStyles {
|
|
|
3015
3015
|
titlePriceLayout?: LayoutWithLiterals;
|
|
3016
3016
|
/**
|
|
3017
3017
|
* Title text color as a hexadecimal value.
|
|
3018
|
-
* @
|
|
3018
|
+
* @maxLength 19
|
|
3019
3019
|
*/
|
|
3020
3020
|
titleColor?: string | null;
|
|
3021
3021
|
/**
|
|
3022
3022
|
* Text color as a hexadecimal value.
|
|
3023
|
-
* @
|
|
3023
|
+
* @maxLength 19
|
|
3024
3024
|
*/
|
|
3025
3025
|
textColor?: string | null;
|
|
3026
3026
|
}
|
|
@@ -3202,29 +3202,29 @@ interface CellStyle {
|
|
|
3202
3202
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
3203
3203
|
/**
|
|
3204
3204
|
* Cell background color as a hexadecimal value.
|
|
3205
|
-
* @
|
|
3205
|
+
* @maxLength 19
|
|
3206
3206
|
*/
|
|
3207
3207
|
backgroundColor?: string | null;
|
|
3208
3208
|
}
|
|
3209
3209
|
interface BorderColors {
|
|
3210
3210
|
/**
|
|
3211
3211
|
* Left border color as a hexadecimal value.
|
|
3212
|
-
* @
|
|
3212
|
+
* @maxLength 19
|
|
3213
3213
|
*/
|
|
3214
3214
|
left?: string | null;
|
|
3215
3215
|
/**
|
|
3216
3216
|
* Right border color as a hexadecimal value.
|
|
3217
|
-
* @
|
|
3217
|
+
* @maxLength 19
|
|
3218
3218
|
*/
|
|
3219
3219
|
right?: string | null;
|
|
3220
3220
|
/**
|
|
3221
3221
|
* Top border color as a hexadecimal value.
|
|
3222
|
-
* @
|
|
3222
|
+
* @maxLength 19
|
|
3223
3223
|
*/
|
|
3224
3224
|
top?: string | null;
|
|
3225
3225
|
/**
|
|
3226
3226
|
* Bottom border color as a hexadecimal value.
|
|
3227
|
-
* @
|
|
3227
|
+
* @maxLength 19
|
|
3228
3228
|
*/
|
|
3229
3229
|
bottom?: string | null;
|
|
3230
3230
|
}
|
|
@@ -3299,7 +3299,7 @@ interface CaptionData {
|
|
|
3299
3299
|
interface LayoutData {
|
|
3300
3300
|
/**
|
|
3301
3301
|
* Deprecated: Use `background` instead.
|
|
3302
|
-
* @
|
|
3302
|
+
* @maxLength 19
|
|
3303
3303
|
* @deprecated
|
|
3304
3304
|
*/
|
|
3305
3305
|
backgroundColor?: string | null;
|
|
@@ -3307,7 +3307,7 @@ interface LayoutData {
|
|
|
3307
3307
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
3308
3308
|
/**
|
|
3309
3309
|
* Border color as a hexadecimal value.
|
|
3310
|
-
* @
|
|
3310
|
+
* @maxLength 19
|
|
3311
3311
|
*/
|
|
3312
3312
|
borderColor?: string | null;
|
|
3313
3313
|
/** Border width in pixels. */
|
|
@@ -3316,7 +3316,7 @@ interface LayoutData {
|
|
|
3316
3316
|
borderRadius?: number | null;
|
|
3317
3317
|
/**
|
|
3318
3318
|
* Deprecated: Use `backdrop` instead.
|
|
3319
|
-
* @
|
|
3319
|
+
* @maxLength 19
|
|
3320
3320
|
* @deprecated
|
|
3321
3321
|
*/
|
|
3322
3322
|
backdropColor?: string | null;
|
|
@@ -3343,7 +3343,7 @@ interface LayoutData {
|
|
|
3343
3343
|
containerData?: PluginContainerData;
|
|
3344
3344
|
/** Defines where selected design propertied applies to */
|
|
3345
3345
|
designTarget?: DesignTargetWithLiterals;
|
|
3346
|
-
/** Banner configuration. When present, this layout is
|
|
3346
|
+
/** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
|
|
3347
3347
|
banner?: Banner;
|
|
3348
3348
|
/** Background styling (color or gradient). */
|
|
3349
3349
|
background?: LayoutDataBackground;
|
|
@@ -3390,6 +3390,14 @@ declare enum Origin {
|
|
|
3390
3390
|
}
|
|
3391
3391
|
/** @enumType */
|
|
3392
3392
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
3393
|
+
declare enum BannerPosition {
|
|
3394
|
+
/** Attached to the top edge (banner) */
|
|
3395
|
+
TOP = "TOP",
|
|
3396
|
+
/** Attached to the bottom edge (footer) */
|
|
3397
|
+
BOTTOM = "BOTTOM"
|
|
3398
|
+
}
|
|
3399
|
+
/** @enumType */
|
|
3400
|
+
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
3393
3401
|
/** Background type */
|
|
3394
3402
|
declare enum LayoutDataBackgroundType {
|
|
3395
3403
|
/** Solid color background */
|
|
@@ -3447,6 +3455,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
|
3447
3455
|
interface Banner {
|
|
3448
3456
|
/** Origin of the banner */
|
|
3449
3457
|
origin?: OriginWithLiterals;
|
|
3458
|
+
/** Position of the banner */
|
|
3459
|
+
position?: BannerPositionWithLiterals;
|
|
3450
3460
|
}
|
|
3451
3461
|
/** Background styling (color or gradient) */
|
|
3452
3462
|
interface LayoutDataBackground {
|
|
@@ -3454,7 +3464,7 @@ interface LayoutDataBackground {
|
|
|
3454
3464
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
3455
3465
|
/**
|
|
3456
3466
|
* Background color as a hexadecimal value.
|
|
3457
|
-
* @
|
|
3467
|
+
* @maxLength 19
|
|
3458
3468
|
*/
|
|
3459
3469
|
color?: string | null;
|
|
3460
3470
|
/** Gradient configuration. */
|
|
@@ -3466,7 +3476,7 @@ interface Backdrop {
|
|
|
3466
3476
|
type?: BackdropTypeWithLiterals;
|
|
3467
3477
|
/**
|
|
3468
3478
|
* Backdrop color as a hexadecimal value.
|
|
3469
|
-
* @
|
|
3479
|
+
* @maxLength 19
|
|
3470
3480
|
*/
|
|
3471
3481
|
color?: string | null;
|
|
3472
3482
|
/** Gradient configuration. */
|
|
@@ -3487,7 +3497,7 @@ interface ShapeData {
|
|
|
3487
3497
|
interface ShapeDataStyles {
|
|
3488
3498
|
/**
|
|
3489
3499
|
* Shape fill color as a hexadecimal value.
|
|
3490
|
-
* @
|
|
3500
|
+
* @maxLength 19
|
|
3491
3501
|
*/
|
|
3492
3502
|
color?: string | null;
|
|
3493
3503
|
/** Map of original color keys to their new color values. */
|
|
@@ -3546,7 +3556,7 @@ interface CardDataBackground {
|
|
|
3546
3556
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
3547
3557
|
/**
|
|
3548
3558
|
* Background color as a hexadecimal value.
|
|
3549
|
-
* @
|
|
3559
|
+
* @maxLength 19
|
|
3550
3560
|
*/
|
|
3551
3561
|
color?: string | null;
|
|
3552
3562
|
/** Gradient configuration. */
|
|
@@ -3573,7 +3583,7 @@ interface TocData {
|
|
|
3573
3583
|
itemSpacing?: number | null;
|
|
3574
3584
|
/**
|
|
3575
3585
|
* Optional override for the text color.
|
|
3576
|
-
* @
|
|
3586
|
+
* @maxLength 19
|
|
3577
3587
|
*/
|
|
3578
3588
|
color?: string | null;
|
|
3579
3589
|
/** Indentation style. Default: NESTED. */
|
|
@@ -3615,7 +3625,10 @@ interface SmartBlockData {
|
|
|
3615
3625
|
orientation?: string | null;
|
|
3616
3626
|
/** Column size controlling cells per row. */
|
|
3617
3627
|
columnSize?: ColumnSizeWithLiterals;
|
|
3618
|
-
/**
|
|
3628
|
+
/**
|
|
3629
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
3630
|
+
* @maxLength 19
|
|
3631
|
+
*/
|
|
3619
3632
|
borderColor?: string | null;
|
|
3620
3633
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3621
3634
|
borderWidth?: number | null;
|
|
@@ -3651,10 +3664,20 @@ declare enum SmartBlockDataType {
|
|
|
3651
3664
|
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
3652
3665
|
PROCESS_STEPS = "PROCESS_STEPS",
|
|
3653
3666
|
/** Statistics with bar visual elements. */
|
|
3654
|
-
BAR_STATS = "BAR_STATS"
|
|
3667
|
+
BAR_STATS = "BAR_STATS",
|
|
3668
|
+
/** Timeline layout with numbered chips on a connecting line; cells alternate around the line. */
|
|
3669
|
+
TIMELINE = "TIMELINE",
|
|
3670
|
+
/** Timeline layout with plain dot indicators; no numbers or shapes; cells alternate around the line. */
|
|
3671
|
+
MINIMAL_TIMELINE = "MINIMAL_TIMELINE",
|
|
3672
|
+
/** Numbered pill-shaped labels (stadium chips) with text content; supports HORIZONTAL (pill on top) and VERTICAL (pill on left) orientations. */
|
|
3673
|
+
PILLS = "PILLS",
|
|
3674
|
+
/** Star rating display with stars and a numeric value per cell. */
|
|
3675
|
+
STAR_RATING = "STAR_RATING",
|
|
3676
|
+
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
3677
|
+
QUOTE_BOXES = "QUOTE_BOXES"
|
|
3655
3678
|
}
|
|
3656
3679
|
/** @enumType */
|
|
3657
|
-
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';
|
|
3680
|
+
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' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
|
|
3658
3681
|
/** Column size controlling how many cells appear per row. */
|
|
3659
3682
|
declare enum ColumnSize {
|
|
3660
3683
|
/** Up to 4 cells in a row. */
|
|
@@ -3674,7 +3697,10 @@ interface SmartBlockCellData {
|
|
|
3674
3697
|
label?: string | null;
|
|
3675
3698
|
/** Shape file details. */
|
|
3676
3699
|
shape?: Media;
|
|
3677
|
-
/**
|
|
3700
|
+
/**
|
|
3701
|
+
* Border color of the cell.
|
|
3702
|
+
* @maxLength 19
|
|
3703
|
+
*/
|
|
3678
3704
|
borderColor?: string | null;
|
|
3679
3705
|
/** Border width in pixels. */
|
|
3680
3706
|
borderWidth?: number | null;
|
|
@@ -3682,11 +3708,20 @@ interface SmartBlockCellData {
|
|
|
3682
3708
|
borderRadius?: number | null;
|
|
3683
3709
|
/** The type of the parent smart block (must match parent). */
|
|
3684
3710
|
type?: SmartBlockDataTypeWithLiterals;
|
|
3685
|
-
/**
|
|
3711
|
+
/**
|
|
3712
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
3713
|
+
* @maxLength 19
|
|
3714
|
+
*/
|
|
3686
3715
|
accentColor?: string | null;
|
|
3687
|
-
/**
|
|
3716
|
+
/**
|
|
3717
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
3718
|
+
* @maxLength 19
|
|
3719
|
+
*/
|
|
3688
3720
|
backgroundColor?: string | null;
|
|
3689
|
-
/**
|
|
3721
|
+
/**
|
|
3722
|
+
* Shape fill color as a hexadecimal value.
|
|
3723
|
+
* @maxLength 19
|
|
3724
|
+
*/
|
|
3690
3725
|
shapeColor?: string | null;
|
|
3691
3726
|
}
|
|
3692
3727
|
interface Metadata {
|
|
@@ -9047,4 +9082,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
9047
9082
|
fieldsToValidate?: string[];
|
|
9048
9083
|
}
|
|
9049
9084
|
|
|
9050
|
-
export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, ColumnSize as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, DayOfWeek as a3, ValidationFormat as a4, ProductType as a5, PriceType as a6, FieldType as a7, FormatEnumFormat as a8, StringComponentType as a9, FontType as aA, Position as aB, AspectRatio as aC, Resizing as aD, Placement as aE, CardStylesType as aF, CardStylesAlignment as aG, Layout as aH, AppType as aI, InitialExpandedItems as aJ, Direction as aK, VerticalAlignment as aL, NullValue as aM, ImageScalingScaling as aN, LayoutDataImagePosition as aO, Origin as aP, LayoutDataBackgroundType as aQ, BackdropType as aR, VerticalAlignmentAlignment as aS, ResponsivenessBehaviour as aT, DesignTarget as aU, Scaling as aV, ImagePositionPosition as aW, CardDataBackgroundType as aX, ListStyle as aY, Indentation as aZ, SmartBlockDataType as a_, NodeType as aa, BackgroundType as ab, GradientType as ac, WidthType as ad, PluginContainerDataAlignment as ae, ButtonDataType as af, LinkTarget as ag, TextAlignment as ah, LineStyle as ai, Width as aj, DividerDataAlignment as ak, ViewMode as al, LayoutType as am, Orientation as an, Crop as ao, ThumbnailsAlignment as ap, GIFType as aq, Source as ar, StylesPosition as as, MapType as at, ViewRole as au, VoteRole as av, PollLayoutType as aw, PollLayoutDirection as ax, PollDesignBackgroundType as ay, DecorationType as az, type CreateSubmissionApplicationErrors as b, type SubmitterSubmitterOneOf as b$, ImagePosition as b0, Alignment as b1, ImageFit as b2, NumberOfColumns as b3, FirstDayOfWeek as b4, NumberComponentType as b5, BooleanComponentType as b6, ItemType as b7, PropertiesTypeEnum as b8, ArrayComponentType as b9, RequiredIndicator as bA, RequiredIndicatorPlacement as bB, Target as bC, SubmitSuccessAction as bD, ChangeableProperty as bE, OverrideEntityTypeEnumOverrideEntityType as bF, Operator as bG, ResultsDisplay as bH, ContactAutofill as bI, SubmissionAccess as bJ, IdentityType as bK, SubscriptionStatus as bL, EmailDeliverabilityStatus as bM, PhoneTag as bN, PhoneDeliverabilityStatus as bO, AddressTag as bP, SubdivisionType as bQ, MemberStatus as bR, PrivacyStatus as bS, Role as bT, Action as bU, ErrorType as bV, SortOrder as bW, Mode as bX, Status as bY, SubmissionErrorType as bZ, type Submitter as b_, WixFileComponentType as ba, UploadFileFormat as bb, PaymentComponentType as bc, ComponentType as bd, Type as be, ObjectArrayComponentType as bf, SchedulingComponentType as bg, Format as bh, MeetingType as bi, StaffStrategySelection as bj, InputType as bk, EmailInfoTag as bl, PhoneInfoTag as bm, Tag as bn, ConfirmationLevel as bo, SubscriptionChannel as bp, ContactField as bq, DisplayFieldType as br, OverrideEntityType as bs, Kind as bt, FormFieldContactInfoEmailInfoTag as bu, FormFieldContactInfoPhoneInfoTag as bv, AddressInfoTag as bw, SubscriptionInfoOptInLevel as bx, FormFieldContactInfoContactField as by, SpamFilterProtectionLevel as bz, type CreateSubmissionValidationErrors as c, type NestedFormOverrides as c$, type ExtendedFields as c0, type OrderDetails as c1, type PublicTags as c2, type TagList as c3, type AppointmentDetails as c4, type FormSubmissionStatusUpdatedEvent as c5, type RemovedSubmissionFromTrash as c6, type SubmissionContactMapped as c7, type MarketingSubscriptionDetails as c8, type SubmissionContactMappingSkipped as c9, type IntegerType as cA, type FormFieldBooleanType as cB, type BooleanErrorMessages as cC, type FormFieldArrayType as cD, type FormFieldObjectType as cE, type ObjectTypePropertiesType as cF, type ObjectTypePropertiesTypePropertiesTypeOneOf as cG, type ObjectErrorMessages as cH, type ArrayTypeArrayItems as cI, type ArrayTypeArrayItemsItemsOneOf as cJ, type ArrayErrorMessages as cK, type PredefinedValidation as cL, type PredefinedValidationFormatOptionsOneOf as cM, type PaymentType as cN, type QuantityLimit as cO, type FixedPriceOptions as cP, type DynamicPriceOptions as cQ, type Product as cR, type ProductPriceOptionsOneOf as cS, type MultilineAddressValidation as cT, type FieldOverrides as cU, type FieldsOverrides as cV, type ObjectArrayType as cW, type NestedFormFieldOverrides as cX, type Validation as cY, type ValidationValidationOneOf as cZ, type DataExtensionsDetails as c_, type DomainEvent as ca, type DomainEventBodyOneOf as cb, type EntityCreatedEvent as cc, type RestoreInfo as cd, type EntityUpdatedEvent as ce, type EntityDeletedEvent as cf, type ActionEvent as cg, type MessageEnvelope as ch, type IdentificationData as ci, type IdentificationDataIdOneOf as cj, type AccountInfo as ck, type CreateCheckoutFromSubmissionRequest as cl, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as cm, type Form as cn, type FormField as co, type FormFieldStringType as cp, type FormFieldStringTypeFormatOptionsOneOf as cq, type StringErrorMessages as cr, type DateTimeAdvancedConstraints as cs, type Availability as ct, type DateRange as cu, type StringTypeDateTimeConstraints as cv, type StringTypePhoneConstraints as cw, type StringTypeValidationMessages as cx, type FormFieldNumberType as cy, type NumberErrorMessages as cz, type UpdateSubmission as d, type Permissions as d$, type Field as d0, type FieldFieldTypeOptionsOneOf as d1, type InputField as d2, type InputFieldInputTypeOptionsOneOf as d3, type StringCorrectAnswersList as d4, type StringType as d5, type StringTypeFormatOptionsOneOf as d6, type DateTimeConstraints as d7, type PhoneConstraints as d8, type ValidationMessages as d9, type FileSource as dA, type FileSourceDataOneOf as dB, type PDFSettings as dC, type GalleryData as dD, type Media as dE, type Image as dF, type Video as dG, type Item as dH, type ItemDataOneOf as dI, type GalleryOptions as dJ, type GalleryOptionsLayout as dK, type ItemStyle as dL, type Thumbnails as dM, type GIFData as dN, type GIF as dO, type HeadingData as dP, type HTMLData as dQ, type HTMLDataDataOneOf as dR, type ImageData as dS, type StylesBorder as dT, type ImageDataStyles as dU, type LinkPreviewData as dV, type LinkPreviewDataStyles as dW, type MapData as dX, type MapSettings as dY, type ParagraphData as dZ, type PollData as d_, type StringQuizFieldSettings as da, type TextInput as db, type RichContent as dc, type Node as dd, type NodeDataOneOf as de, type NodeStyle as df, type ButtonData as dg, type Gradient as dh, type Stop as di, type Border as dj, type Colors as dk, type Background as dl, type PluginContainerData as dm, type PluginContainerDataWidth as dn, type PluginContainerDataWidthDataOneOf as dp, type Spoiler as dq, type Height as dr, type Styles as ds, type Link as dt, type LinkDataOneOf as du, type Rel as dv, type CodeBlockData as dw, type TextStyle as dx, type DividerData as dy, type FileData as dz, type UpdateSubmissionValidationErrors as e, type DocumentStyle as e$, type PollOption as e0, type Settings as e1, type PollLayout as e2, type OptionLayout as e3, type BackgroundGradient as e4, type PollDesignBackground as e5, type PollDesignBackgroundBackgroundOneOf as e6, type PollDesign as e7, type OptionDesign as e8, type Poll as e9, type TableData as eA, type Dimensions as eB, type TableCellData as eC, type CellStyle as eD, type BorderColors as eE, type BorderWidths as eF, type ListValue as eG, type AudioData as eH, type OrderedListData as eI, type BulletedListData as eJ, type BlockquoteData as eK, type CaptionData as eL, type LayoutData as eM, type LayoutDataBackgroundImage as eN, type Banner as eO, type LayoutDataBackground as eP, type Backdrop as eQ, type LayoutCellData as eR, type ShapeData as eS, type ShapeDataStyles as eT, type CardData as eU, type CardDataBackground as eV, type BackgroundImage as eW, type TocData as eX, type SmartBlockData as eY, type SmartBlockCellData as eZ, type Metadata as e_, type PollDataLayout as ea, type Design as eb, type TextData as ec, type Decoration as ed, type DecorationDataOneOf as ee, type AnchorData as ef, type ColorData as eg, type LinkData as eh, type MentionData as ei, type FontSizeData as ej, type SpoilerData as ek, type FontFamilyData as el, type AppEmbedData as em, type AppEmbedDataAppDataOneOf as en, type BookingData as eo, type EventData as ep, type ButtonStyles as eq, type ImageStyles as er, type RibbonStyles as es, type CardStyles as et, type PricingData as eu, type VideoData as ev, type PlaybackOptions as ew, type EmbedData as ex, type Oembed as ey, type CollapsibleListData as ez, type ConfirmSubmissionResponse as f, type InPersonOptions as f$, type TextNodeStyle as f0, type MediaItem as f1, type MediaItemMediaOneOf as f2, type MediaSettings as f3, type RadioGroup as f4, type RadioGroupOption as f5, type CustomOption as f6, type Dropdown as f7, type DropdownOption as f8, type DateTimeInput as f9, type ServicesCheckboxGroup as fA, type FileType as fB, type FileUpload as fC, type Signature as fD, type ProductCheckboxGroup as fE, type ProductCheckboxGroupOption as fF, type DonationInput as fG, type DonationInputOption as fH, type PaymentInput as fI, type FixedPayment as fJ, type MultilineAddress as fK, type AddressLine2 as fL, type DefaultCountryConfig as fM, type DefaultCountryConfigOptionsOneOf as fN, type FieldsSettings as fO, type Repeater as fP, type FormLayout as fQ, type BreakPoint as fR, type ItemLayout as fS, type ItemLayoutItemOneOf as fT, type Group as fU, type Margin as fV, type Section as fW, type Appointment as fX, type AppointmentFormatInfoOneOf as fY, type Location as fZ, type LocationLocationInfoOneOf as f_, type PhoneInput as fa, type DateInput as fb, type TimeInput as fc, type DatePicker as fd, type ServicesDropdown as fe, type ServiceOption as ff, type Password as fg, type NumberCorrectAnswersList as fh, type NumberType as fi, type NumberQuizFieldSettings as fj, type NumberInput as fk, type RatingInput as fl, type BooleanType as fm, type Checkbox as fn, type CorrectAnswersList as fo, type ArrayType as fp, type ObjectType as fq, type PropertiesType as fr, type PropertiesTypePropertiesTypeOptionsOneOf as fs, type ArrayItems as ft, type ArrayItemsItemTypeOptionsOneOf as fu, type QuizFieldSettings as fv, type CheckboxGroup as fw, type Option as fx, type ComponentsTags as fy, type TagsOption as fz, type BulkDeleteSubmissionResponse as g, type OrCondition as g$, type VideoConferenceOptions as g0, type PhoneOptions as g1, type FormFieldContactInfo as g2, type FormFieldContactInfoAdditionalInfoOneOf as g3, type EmailInfo as g4, type PhoneInfo as g5, type AddressInfo as g6, type CustomFieldInfo as g7, type SubscriptionInfo as g8, type _String as g9, type PostSubmissionTriggers as gA, type UpsertContact as gB, type V4FormFieldContactInfo as gC, type V4FormFieldContactInfoAdditionalInfoOneOf as gD, type FormFieldContactInfoEmailInfo as gE, type FormFieldContactInfoPhoneInfo as gF, type FormFieldContactInfoAddressInfo as gG, type FormFieldContactInfoCustomFieldInfo as gH, type FormFieldContactInfoSubscriptionInfo as gI, type NestedForm as gJ, type LimitationRule as gK, type RequiredIndicatorProperties as gL, type SubmitSettings as gM, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gN, type ThankYouMessageOptions as gO, type RedirectOptions as gP, type PopupOptions as gQ, type FieldGroup as gR, type Rule as gS, type RequiredOptions as gT, type HiddenOptions as gU, type AllowedValuesOptions as gV, type FieldOverride as gW, type FieldOverridePropertyTypeOptionsOneOf as gX, type ConditionNode as gY, type ConditionNodeNodeOneOf as gZ, type AndCondition as g_, type _StringComponentTypeOptionsOneOf as ga, type _Number as gb, type _NumberComponentTypeOptionsOneOf as gc, type _Boolean as gd, type _BooleanComponentTypeOptionsOneOf as ge, type _Array as gf, type _ArrayComponentTypeOptionsOneOf as gg, type _Object as gh, type WixFile as gi, type WixFileComponentTypeOptionsOneOf as gj, type Payment as gk, type PaymentComponentTypeOptionsOneOf as gl, type Scheduling as gm, type SchedulingComponentTypeOptionsOneOf as gn, type InputFieldAddress as go, type InputFieldAddressComponentTypeOptionsOneOf as gp, type ObjectArray as gq, type ObjectArrayComponentTypeOptionsOneOf as gr, type DisplayField as gs, type DisplayFieldDisplayFieldTypeOptionsOneOf as gt, type RichContentOptions as gu, type PageNavigationOptions as gv, type Step as gw, type FormRule as gx, type FormOverride as gy, type FormProperties as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DeleteSubmissionResponse as h$, type Condition as h0, type RuleFormOverride as h1, type RuleFormOverrideEntityTypeOptionsOneOf as h2, type Tags as h3, type TagsTagList as h4, type QuizSettings as h5, type QuizSettingsPassingCriteriaOneOf as h6, type QuizSettingsResultsDisplayOptionsOneOf as h7, type PassFailMessages as h8, type CreateCheckoutFromSubmissionResponse as h9, type ProfileInfo as hA, type UserInfo as hB, type SessionInfo as hC, type GroupInfo as hD, type PrivateTags as hE, type PrivateTagsTagList as hF, type CreateSubmissionRequest as hG, type CreateSubmissionResponse as hH, type SubmissionValidationErrorsDetails as hI, type ValidationError as hJ, type CreateSubmissionBySubmitterRequest as hK, type CreateSubmissionBySubmitterResponse as hL, type BulkCreateSubmissionBySubmitterRequest as hM, type BulkCreateSubmissionBySubmitterData as hN, type BulkCreateSubmissionBySubmitterResponse as hO, type BulkSubmissionResult as hP, type ItemMetadata as hQ, type ApplicationError as hR, type BulkActionMetadata as hS, type GetSubmissionRequest as hT, type GetSubmissionResponse as hU, type GetSubmissionByCheckoutIdRequest as hV, type GetSubmissionByCheckoutIdResponse as hW, type UpdateSubmissionRequest as hX, type UpdateSubmissionResponse as hY, type ConfirmSubmissionRequest as hZ, type DeleteSubmissionRequest as h_, type Checkout as ha, type IsFormSubmittableRequest as hb, type IsFormSubmittableResponse as hc, type Empty as hd, type UpsertContactFromSubmissionRequest as he, type SubmitContactResponse as hf, type UpsertContactResponse as hg, type Contact as hh, type ContactName as hi, type ContactEmail as hj, type ContactSubscription as hk, type AdditionalEmail as hl, type ContactPhone as hm, type AdditionalPhone as hn, type ContactAddress as ho, type Address as hp, type AddressStreetOneOf as hq, type StreetAddress as hr, type AddressLocation as hs, type Subdivision as ht, type StandardDetails as hu, type Recipient as hv, type ContactCompany as hw, type ContactSource as hx, type ContactActivity as hy, type MemberInfo as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type OptInLevelWithLiterals as i$, type BulkDeleteSubmissionRequest as i0, type BulkDeleteSubmissionResult as i1, type RestoreSubmissionFromTrashBinRequest as i2, type RemoveSubmissionFromTrashBinRequest as i3, type RemoveSubmissionFromTrashBinResponse as i4, type BulkRemoveSubmissionFromTrashBinRequest as i5, type BulkRemoveSubmissionFromTrashBinResult as i6, type ListDeletedSubmissionsRequest as i7, type CursorPaging as i8, type CursorPagingMetadata as i9, type SubmissionDocumentDocumentOneOf as iA, type DocumentReady as iB, type DownloadSubmissionRequest as iC, type HeadersEntry as iD, type GetFormattedSubmissionRequest as iE, type FormattedSubmission as iF, type ListFormattedSubmissionsRequest as iG, type ListFormattedSubmissionsResponse as iH, type FormattedFormSubmission as iI, type UpdateExtendedFieldsRequest as iJ, type BulkUpdateFormSubmissionTagsRequest as iK, type BulkUpdateFormSubmissionTagsResult as iL, type BulkUpdateFormSubmissionTagsByFilterRequest as iM, type ValidateFormSubmissionRequest as iN, type FieldViolation as iO, type FieldViolationErrorDataOneOf as iP, type SubmissionValidationErrors as iQ, type SubmissionValidationError as iR, type SubmissionValidationErrorErrorMessageOneOf as iS, type BaseEventMetadata as iT, type EventMetadata as iU, type AccountInfoMetadata as iV, type FormSubmissionSearchSpec as iW, type SubmissionsQueryResult as iX, type FormSubmissionQuerySpec as iY, utils as iZ, type SubmissionStatusWithLiterals as i_, type Cursors as ia, type GetDeletedSubmissionRequest as ib, type QuerySubmissionRequest as ic, type CursorQueryPagingMethodOneOf as id, type Sorting as ie, type SearchSubmissionsByNamespaceRequest as ig, type CursorSearch as ih, type CursorSearchPagingMethodOneOf as ii, type SearchDetails as ij, type SearchSubmissionsByNamespaceForExportRequest as ik, type SearchSubmissionsByNamespaceForExportResponse as il, type QuerySubmissionsByNamespaceRequest as im, type QuerySubmissionsByNamespaceResponse as io, type QuerySubmissionsByNamespaceForExportRequest as ip, type QuerySubmissionsByNamespaceForExportResponse as iq, type CountSubmissionsByFilterRequest as ir, type FormSubmissionsCount as is, type CountSubmissionsRequest as it, type CountDeletedSubmissionsRequest as iu, type FormDeletedSubmissionsCount as iv, type GetMediaUploadURLRequest as iw, type BulkMarkSubmissionsAsSeenRequest as ix, type GetSubmissionDownloadUrlRequest as iy, type SubmissionDocument as iz, type ListDeletedSubmissionsResponse as j, type ImagePositionWithLiterals as j$, type WebhookIdentityTypeWithLiterals as j0, type StringTypeFormatEnumFormatWithLiterals as j1, type DayOfWeekWithLiterals as j2, type ValidationFormatWithLiterals as j3, type ProductTypeWithLiterals as j4, type PriceTypeWithLiterals as j5, type FieldTypeWithLiterals as j6, type FormatEnumFormatWithLiterals as j7, type StringComponentTypeWithLiterals as j8, type NodeTypeWithLiterals as j9, type PositionWithLiterals as jA, type AspectRatioWithLiterals as jB, type ResizingWithLiterals as jC, type PlacementWithLiterals as jD, type CardStylesTypeWithLiterals as jE, type CardStylesAlignmentWithLiterals as jF, type LayoutWithLiterals as jG, type AppTypeWithLiterals as jH, type InitialExpandedItemsWithLiterals as jI, type DirectionWithLiterals as jJ, type VerticalAlignmentWithLiterals as jK, type NullValueWithLiterals as jL, type ImageScalingScalingWithLiterals as jM, type LayoutDataImagePositionWithLiterals as jN, type OriginWithLiterals as jO, type LayoutDataBackgroundTypeWithLiterals as jP, type BackdropTypeWithLiterals as jQ, type VerticalAlignmentAlignmentWithLiterals as jR, type ResponsivenessBehaviourWithLiterals as jS, type DesignTargetWithLiterals as jT, type ScalingWithLiterals as jU, type ImagePositionPositionWithLiterals as jV, type CardDataBackgroundTypeWithLiterals as jW, type ListStyleWithLiterals as jX, type IndentationWithLiterals as jY, type SmartBlockDataTypeWithLiterals as jZ, type ColumnSizeWithLiterals as j_, type BackgroundTypeWithLiterals as ja, type GradientTypeWithLiterals as jb, type WidthTypeWithLiterals as jc, type PluginContainerDataAlignmentWithLiterals as jd, type ButtonDataTypeWithLiterals as je, type LinkTargetWithLiterals as jf, type TextAlignmentWithLiterals as jg, type LineStyleWithLiterals as jh, type WidthWithLiterals as ji, type DividerDataAlignmentWithLiterals as jj, type ViewModeWithLiterals as jk, type LayoutTypeWithLiterals as jl, type OrientationWithLiterals as jm, type CropWithLiterals as jn, type ThumbnailsAlignmentWithLiterals as jo, type GIFTypeWithLiterals as jp, type SourceWithLiterals as jq, type StylesPositionWithLiterals as jr, type MapTypeWithLiterals as js, type ViewRoleWithLiterals as jt, type VoteRoleWithLiterals as ju, type PollLayoutTypeWithLiterals as jv, type PollLayoutDirectionWithLiterals as jw, type PollDesignBackgroundTypeWithLiterals as jx, type DecorationTypeWithLiterals as jy, type FontTypeWithLiterals as jz, type CursorQuery as k, onSubmissionCreated as k$, type AlignmentWithLiterals as k0, type ImageFitWithLiterals as k1, type NumberOfColumnsWithLiterals as k2, type FirstDayOfWeekWithLiterals as k3, type NumberComponentTypeWithLiterals as k4, type BooleanComponentTypeWithLiterals as k5, type ItemTypeWithLiterals as k6, type PropertiesTypeEnumWithLiterals as k7, type ArrayComponentTypeWithLiterals as k8, type WixFileComponentTypeWithLiterals as k9, type RequiredIndicatorPlacementWithLiterals as kA, type TargetWithLiterals as kB, type SubmitSuccessActionWithLiterals as kC, type ChangeablePropertyWithLiterals as kD, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as kE, type OperatorWithLiterals as kF, type ResultsDisplayWithLiterals as kG, type ContactAutofillWithLiterals as kH, type SubmissionAccessWithLiterals as kI, type IdentityTypeWithLiterals as kJ, type SubscriptionStatusWithLiterals as kK, type EmailDeliverabilityStatusWithLiterals as kL, type PhoneTagWithLiterals as kM, type PhoneDeliverabilityStatusWithLiterals as kN, type AddressTagWithLiterals as kO, type SubdivisionTypeWithLiterals as kP, type MemberStatusWithLiterals as kQ, type PrivacyStatusWithLiterals as kR, type RoleWithLiterals as kS, type ActionWithLiterals as kT, type ErrorTypeWithLiterals as kU, type SortOrderWithLiterals as kV, type ModeWithLiterals as kW, type StatusWithLiterals as kX, type SubmissionErrorTypeWithLiterals as kY, type CommonSearchWithEntityContext as kZ, type CommonQueryWithEntityContext as k_, type UploadFileFormatWithLiterals as ka, type PaymentComponentTypeWithLiterals as kb, type ComponentTypeWithLiterals as kc, type TypeWithLiterals as kd, type ObjectArrayComponentTypeWithLiterals as ke, type SchedulingComponentTypeWithLiterals as kf, type FormatWithLiterals as kg, type MeetingTypeWithLiterals as kh, type StaffStrategySelectionWithLiterals as ki, type InputTypeWithLiterals as kj, type EmailInfoTagWithLiterals as kk, type PhoneInfoTagWithLiterals as kl, type TagWithLiterals as km, type ConfirmationLevelWithLiterals as kn, type SubscriptionChannelWithLiterals as ko, type ContactFieldWithLiterals as kp, type DisplayFieldTypeWithLiterals as kq, type OverrideEntityTypeWithLiterals as kr, type KindWithLiterals as ks, type FormFieldContactInfoEmailInfoTagWithLiterals as kt, type FormFieldContactInfoPhoneInfoTagWithLiterals as ku, type AddressInfoTagWithLiterals as kv, type SubscriptionInfoOptInLevelWithLiterals as kw, type FormFieldContactInfoContactFieldWithLiterals as kx, type SpamFilterProtectionLevelWithLiterals as ky, type RequiredIndicatorWithLiterals as kz, type QuerySubmissionResponse as l, onSubmissionDeleted as l0, onSubmissionRemovedSubmissionFromTrash as l1, onSubmissionStatusUpdated as l2, onSubmissionContactMapped as l3, onSubmissionContactMappingSkipped as l4, onSubmissionUpdated as l5, upsertContactFromSubmission as l6, createSubmission as l7, getSubmission as l8, updateSubmission as l9, confirmSubmission as la, deleteSubmission as lb, bulkDeleteSubmission as lc, restoreSubmissionFromTrashBin as ld, removeSubmissionFromTrashBin as le, bulkRemoveSubmissionFromTrashBin as lf, listDeletedSubmissions as lg, getDeletedSubmission as lh, querySubmission as li, querySubmissionsByNamespace as lj, countSubmissionsByFilter as lk, countSubmissions as ll, countDeletedSubmissions as lm, getMediaUploadUrl as ln, bulkMarkSubmissionsAsSeen as lo, getSubmissionDownloadUrl as lp, downloadSubmission as lq, getFormattedSubmission as lr, updateExtendedFields as ls, bulkUpdateFormSubmissionTags as lt, bulkUpdateFormSubmissionTagsByFilter as lu, validateFormSubmission as lv, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
9085
|
+
export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, SmartBlockDataType as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, DayOfWeek as a3, ValidationFormat as a4, ProductType as a5, PriceType as a6, FieldType as a7, FormatEnumFormat as a8, StringComponentType as a9, FontType as aA, Position as aB, AspectRatio as aC, Resizing as aD, Placement as aE, CardStylesType as aF, CardStylesAlignment as aG, Layout as aH, AppType as aI, InitialExpandedItems as aJ, Direction as aK, VerticalAlignment as aL, NullValue as aM, ImageScalingScaling as aN, LayoutDataImagePosition as aO, Origin as aP, BannerPosition as aQ, LayoutDataBackgroundType as aR, BackdropType as aS, VerticalAlignmentAlignment as aT, ResponsivenessBehaviour as aU, DesignTarget as aV, Scaling as aW, ImagePositionPosition as aX, CardDataBackgroundType as aY, ListStyle as aZ, Indentation as a_, NodeType as aa, BackgroundType as ab, GradientType as ac, WidthType as ad, PluginContainerDataAlignment as ae, ButtonDataType as af, LinkTarget as ag, TextAlignment as ah, LineStyle as ai, Width as aj, DividerDataAlignment as ak, ViewMode as al, LayoutType as am, Orientation as an, Crop as ao, ThumbnailsAlignment as ap, GIFType as aq, Source as ar, StylesPosition as as, MapType as at, ViewRole as au, VoteRole as av, PollLayoutType as aw, PollLayoutDirection as ax, PollDesignBackgroundType as ay, DecorationType as az, type CreateSubmissionApplicationErrors as b, type Submitter as b$, ColumnSize as b0, ImagePosition as b1, Alignment as b2, ImageFit as b3, NumberOfColumns as b4, FirstDayOfWeek as b5, NumberComponentType as b6, BooleanComponentType as b7, ItemType as b8, PropertiesTypeEnum as b9, SpamFilterProtectionLevel as bA, RequiredIndicator as bB, RequiredIndicatorPlacement as bC, Target as bD, SubmitSuccessAction as bE, ChangeableProperty as bF, OverrideEntityTypeEnumOverrideEntityType as bG, Operator as bH, ResultsDisplay as bI, ContactAutofill as bJ, SubmissionAccess as bK, IdentityType as bL, SubscriptionStatus as bM, EmailDeliverabilityStatus as bN, PhoneTag as bO, PhoneDeliverabilityStatus as bP, AddressTag as bQ, SubdivisionType as bR, MemberStatus as bS, PrivacyStatus as bT, Role as bU, Action as bV, ErrorType as bW, SortOrder as bX, Mode as bY, Status as bZ, SubmissionErrorType as b_, ArrayComponentType as ba, WixFileComponentType as bb, UploadFileFormat as bc, PaymentComponentType as bd, ComponentType as be, Type as bf, ObjectArrayComponentType as bg, SchedulingComponentType as bh, Format as bi, MeetingType as bj, StaffStrategySelection as bk, InputType as bl, EmailInfoTag as bm, PhoneInfoTag as bn, Tag as bo, ConfirmationLevel as bp, SubscriptionChannel as bq, ContactField as br, DisplayFieldType as bs, OverrideEntityType as bt, Kind as bu, FormFieldContactInfoEmailInfoTag as bv, FormFieldContactInfoPhoneInfoTag as bw, AddressInfoTag as bx, SubscriptionInfoOptInLevel as by, FormFieldContactInfoContactField as bz, type CreateSubmissionValidationErrors as c, type DataExtensionsDetails as c$, type SubmitterSubmitterOneOf as c0, type ExtendedFields as c1, type OrderDetails as c2, type PublicTags as c3, type TagList as c4, type AppointmentDetails as c5, type FormSubmissionStatusUpdatedEvent as c6, type RemovedSubmissionFromTrash as c7, type SubmissionContactMapped as c8, type MarketingSubscriptionDetails as c9, type NumberErrorMessages as cA, type IntegerType as cB, type FormFieldBooleanType as cC, type BooleanErrorMessages as cD, type FormFieldArrayType as cE, type FormFieldObjectType as cF, type ObjectTypePropertiesType as cG, type ObjectTypePropertiesTypePropertiesTypeOneOf as cH, type ObjectErrorMessages as cI, type ArrayTypeArrayItems as cJ, type ArrayTypeArrayItemsItemsOneOf as cK, type ArrayErrorMessages as cL, type PredefinedValidation as cM, type PredefinedValidationFormatOptionsOneOf as cN, type PaymentType as cO, type QuantityLimit as cP, type FixedPriceOptions as cQ, type DynamicPriceOptions as cR, type Product as cS, type ProductPriceOptionsOneOf as cT, type MultilineAddressValidation as cU, type FieldOverrides as cV, type FieldsOverrides as cW, type ObjectArrayType as cX, type NestedFormFieldOverrides as cY, type Validation as cZ, type ValidationValidationOneOf as c_, type SubmissionContactMappingSkipped as ca, type DomainEvent as cb, type DomainEventBodyOneOf as cc, type EntityCreatedEvent as cd, type RestoreInfo as ce, type EntityUpdatedEvent as cf, type EntityDeletedEvent as cg, type ActionEvent as ch, type MessageEnvelope as ci, type IdentificationData as cj, type IdentificationDataIdOneOf as ck, type AccountInfo as cl, type CreateCheckoutFromSubmissionRequest as cm, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as cn, type Form as co, type FormField as cp, type FormFieldStringType as cq, type FormFieldStringTypeFormatOptionsOneOf as cr, type StringErrorMessages as cs, type DateTimeAdvancedConstraints as ct, type Availability as cu, type DateRange as cv, type StringTypeDateTimeConstraints as cw, type StringTypePhoneConstraints as cx, type StringTypeValidationMessages as cy, type FormFieldNumberType as cz, type UpdateSubmission as d, type PollData as d$, type NestedFormOverrides as d0, type Field as d1, type FieldFieldTypeOptionsOneOf as d2, type InputField as d3, type InputFieldInputTypeOptionsOneOf as d4, type StringCorrectAnswersList as d5, type StringType as d6, type StringTypeFormatOptionsOneOf as d7, type DateTimeConstraints as d8, type PhoneConstraints as d9, type FileData as dA, type FileSource as dB, type FileSourceDataOneOf as dC, type PDFSettings as dD, type GalleryData as dE, type Media as dF, type Image as dG, type Video as dH, type Item as dI, type ItemDataOneOf as dJ, type GalleryOptions as dK, type GalleryOptionsLayout as dL, type ItemStyle as dM, type Thumbnails as dN, type GIFData as dO, type GIF as dP, type HeadingData as dQ, type HTMLData as dR, type HTMLDataDataOneOf as dS, type ImageData as dT, type StylesBorder as dU, type ImageDataStyles as dV, type LinkPreviewData as dW, type LinkPreviewDataStyles as dX, type MapData as dY, type MapSettings as dZ, type ParagraphData as d_, type ValidationMessages as da, type StringQuizFieldSettings as db, type TextInput as dc, type RichContent as dd, type Node as de, type NodeDataOneOf as df, type NodeStyle as dg, type ButtonData as dh, type Gradient as di, type Stop as dj, type Border as dk, type Colors as dl, type Background as dm, type PluginContainerData as dn, type PluginContainerDataWidth as dp, type PluginContainerDataWidthDataOneOf as dq, type Spoiler as dr, type Height as ds, type Styles as dt, type Link as du, type LinkDataOneOf as dv, type Rel as dw, type CodeBlockData as dx, type TextStyle as dy, type DividerData as dz, type UpdateSubmissionValidationErrors as e, type Metadata as e$, type Permissions as e0, type PollOption as e1, type Settings as e2, type PollLayout as e3, type OptionLayout as e4, type BackgroundGradient as e5, type PollDesignBackground as e6, type PollDesignBackgroundBackgroundOneOf as e7, type PollDesign as e8, type OptionDesign as e9, type CollapsibleListData as eA, type TableData as eB, type Dimensions as eC, type TableCellData as eD, type CellStyle as eE, type BorderColors as eF, type BorderWidths as eG, type ListValue as eH, type AudioData as eI, type OrderedListData as eJ, type BulletedListData as eK, type BlockquoteData as eL, type CaptionData as eM, type LayoutData as eN, type LayoutDataBackgroundImage as eO, type Banner as eP, type LayoutDataBackground as eQ, type Backdrop as eR, type LayoutCellData as eS, type ShapeData as eT, type ShapeDataStyles as eU, type CardData as eV, type CardDataBackground as eW, type BackgroundImage as eX, type TocData as eY, type SmartBlockData as eZ, type SmartBlockCellData as e_, type Poll as ea, type PollDataLayout as eb, type Design as ec, type TextData as ed, type Decoration as ee, type DecorationDataOneOf as ef, type AnchorData as eg, type ColorData as eh, type LinkData as ei, type MentionData as ej, type FontSizeData as ek, type SpoilerData as el, type FontFamilyData as em, type AppEmbedData as en, type AppEmbedDataAppDataOneOf as eo, type BookingData as ep, type EventData as eq, type ButtonStyles as er, type ImageStyles as es, type RibbonStyles as et, type CardStyles as eu, type PricingData as ev, type VideoData as ew, type PlaybackOptions as ex, type EmbedData as ey, type Oembed as ez, type ConfirmSubmissionResponse as f, type LocationLocationInfoOneOf as f$, type DocumentStyle as f0, type TextNodeStyle as f1, type MediaItem as f2, type MediaItemMediaOneOf as f3, type MediaSettings as f4, type RadioGroup as f5, type RadioGroupOption as f6, type CustomOption as f7, type Dropdown as f8, type DropdownOption as f9, type TagsOption as fA, type ServicesCheckboxGroup as fB, type FileType as fC, type FileUpload as fD, type Signature as fE, type ProductCheckboxGroup as fF, type ProductCheckboxGroupOption as fG, type DonationInput as fH, type DonationInputOption as fI, type PaymentInput as fJ, type FixedPayment as fK, type MultilineAddress as fL, type AddressLine2 as fM, type DefaultCountryConfig as fN, type DefaultCountryConfigOptionsOneOf as fO, type FieldsSettings as fP, type Repeater as fQ, type FormLayout as fR, type BreakPoint as fS, type ItemLayout as fT, type ItemLayoutItemOneOf as fU, type Group as fV, type Margin as fW, type Section as fX, type Appointment as fY, type AppointmentFormatInfoOneOf as fZ, type Location as f_, type DateTimeInput as fa, type PhoneInput as fb, type DateInput as fc, type TimeInput as fd, type DatePicker as fe, type ServicesDropdown as ff, type ServiceOption as fg, type Password as fh, type NumberCorrectAnswersList as fi, type NumberType as fj, type NumberQuizFieldSettings as fk, type NumberInput as fl, type RatingInput as fm, type BooleanType as fn, type Checkbox as fo, type CorrectAnswersList as fp, type ArrayType as fq, type ObjectType as fr, type PropertiesType as fs, type PropertiesTypePropertiesTypeOptionsOneOf as ft, type ArrayItems as fu, type ArrayItemsItemTypeOptionsOneOf as fv, type QuizFieldSettings as fw, type CheckboxGroup as fx, type Option as fy, type ComponentsTags as fz, type BulkDeleteSubmissionResponse as g, type AndCondition as g$, type InPersonOptions as g0, type VideoConferenceOptions as g1, type PhoneOptions as g2, type FormFieldContactInfo as g3, type FormFieldContactInfoAdditionalInfoOneOf as g4, type EmailInfo as g5, type PhoneInfo as g6, type AddressInfo as g7, type CustomFieldInfo as g8, type SubscriptionInfo as g9, type FormProperties as gA, type PostSubmissionTriggers as gB, type UpsertContact as gC, type V4FormFieldContactInfo as gD, type V4FormFieldContactInfoAdditionalInfoOneOf as gE, type FormFieldContactInfoEmailInfo as gF, type FormFieldContactInfoPhoneInfo as gG, type FormFieldContactInfoAddressInfo as gH, type FormFieldContactInfoCustomFieldInfo as gI, type FormFieldContactInfoSubscriptionInfo as gJ, type NestedForm as gK, type LimitationRule as gL, type RequiredIndicatorProperties as gM, type SubmitSettings as gN, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gO, type ThankYouMessageOptions as gP, type RedirectOptions as gQ, type PopupOptions as gR, type FieldGroup as gS, type Rule as gT, type RequiredOptions as gU, type HiddenOptions as gV, type AllowedValuesOptions as gW, type FieldOverride as gX, type FieldOverridePropertyTypeOptionsOneOf as gY, type ConditionNode as gZ, type ConditionNodeNodeOneOf as g_, type _String as ga, type _StringComponentTypeOptionsOneOf as gb, type _Number as gc, type _NumberComponentTypeOptionsOneOf as gd, type _Boolean as ge, type _BooleanComponentTypeOptionsOneOf as gf, type _Array as gg, type _ArrayComponentTypeOptionsOneOf as gh, type _Object as gi, type WixFile as gj, type WixFileComponentTypeOptionsOneOf as gk, type Payment as gl, type PaymentComponentTypeOptionsOneOf as gm, type Scheduling as gn, type SchedulingComponentTypeOptionsOneOf as go, type InputFieldAddress as gp, type InputFieldAddressComponentTypeOptionsOneOf as gq, type ObjectArray as gr, type ObjectArrayComponentTypeOptionsOneOf as gs, type DisplayField as gt, type DisplayFieldDisplayFieldTypeOptionsOneOf as gu, type RichContentOptions as gv, type PageNavigationOptions as gw, type Step as gx, type FormRule as gy, type FormOverride as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DeleteSubmissionRequest as h$, type OrCondition as h0, type Condition as h1, type RuleFormOverride as h2, type RuleFormOverrideEntityTypeOptionsOneOf as h3, type Tags as h4, type TagsTagList as h5, type QuizSettings as h6, type QuizSettingsPassingCriteriaOneOf as h7, type QuizSettingsResultsDisplayOptionsOneOf as h8, type PassFailMessages as h9, type MemberInfo as hA, type ProfileInfo as hB, type UserInfo as hC, type SessionInfo as hD, type GroupInfo as hE, type PrivateTags as hF, type PrivateTagsTagList as hG, type CreateSubmissionRequest as hH, type CreateSubmissionResponse as hI, type SubmissionValidationErrorsDetails as hJ, type ValidationError as hK, type CreateSubmissionBySubmitterRequest as hL, type CreateSubmissionBySubmitterResponse as hM, type BulkCreateSubmissionBySubmitterRequest as hN, type BulkCreateSubmissionBySubmitterData as hO, type BulkCreateSubmissionBySubmitterResponse as hP, type BulkSubmissionResult as hQ, type ItemMetadata as hR, type ApplicationError as hS, type BulkActionMetadata as hT, type GetSubmissionRequest as hU, type GetSubmissionResponse as hV, type GetSubmissionByCheckoutIdRequest as hW, type GetSubmissionByCheckoutIdResponse as hX, type UpdateSubmissionRequest as hY, type UpdateSubmissionResponse as hZ, type ConfirmSubmissionRequest as h_, type CreateCheckoutFromSubmissionResponse as ha, type Checkout as hb, type IsFormSubmittableRequest as hc, type IsFormSubmittableResponse as hd, type Empty as he, type UpsertContactFromSubmissionRequest as hf, type SubmitContactResponse as hg, type UpsertContactResponse as hh, type Contact as hi, type ContactName as hj, type ContactEmail as hk, type ContactSubscription as hl, type AdditionalEmail as hm, type ContactPhone as hn, type AdditionalPhone as ho, type ContactAddress as hp, type Address as hq, type AddressStreetOneOf as hr, type StreetAddress as hs, type AddressLocation as ht, type Subdivision as hu, type StandardDetails as hv, type Recipient as hw, type ContactCompany as hx, type ContactSource as hy, type ContactActivity as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type SubmissionStatusWithLiterals as i$, type DeleteSubmissionResponse as i0, type BulkDeleteSubmissionRequest as i1, type BulkDeleteSubmissionResult as i2, type RestoreSubmissionFromTrashBinRequest as i3, type RemoveSubmissionFromTrashBinRequest as i4, type RemoveSubmissionFromTrashBinResponse as i5, type BulkRemoveSubmissionFromTrashBinRequest as i6, type BulkRemoveSubmissionFromTrashBinResult as i7, type ListDeletedSubmissionsRequest as i8, type CursorPaging as i9, type SubmissionDocument as iA, type SubmissionDocumentDocumentOneOf as iB, type DocumentReady as iC, type DownloadSubmissionRequest as iD, type HeadersEntry as iE, type GetFormattedSubmissionRequest as iF, type FormattedSubmission as iG, type ListFormattedSubmissionsRequest as iH, type ListFormattedSubmissionsResponse as iI, type FormattedFormSubmission as iJ, type UpdateExtendedFieldsRequest as iK, type BulkUpdateFormSubmissionTagsRequest as iL, type BulkUpdateFormSubmissionTagsResult as iM, type BulkUpdateFormSubmissionTagsByFilterRequest as iN, type ValidateFormSubmissionRequest as iO, type FieldViolation as iP, type FieldViolationErrorDataOneOf as iQ, type SubmissionValidationErrors as iR, type SubmissionValidationError as iS, type SubmissionValidationErrorErrorMessageOneOf as iT, type BaseEventMetadata as iU, type EventMetadata as iV, type AccountInfoMetadata as iW, type FormSubmissionSearchSpec as iX, type SubmissionsQueryResult as iY, type FormSubmissionQuerySpec as iZ, utils as i_, type CursorPagingMetadata as ia, type Cursors as ib, type GetDeletedSubmissionRequest as ic, type QuerySubmissionRequest as id, type CursorQueryPagingMethodOneOf as ie, type Sorting as ig, type SearchSubmissionsByNamespaceRequest as ih, type CursorSearch as ii, type CursorSearchPagingMethodOneOf as ij, type SearchDetails as ik, type SearchSubmissionsByNamespaceForExportRequest as il, type SearchSubmissionsByNamespaceForExportResponse as im, type QuerySubmissionsByNamespaceRequest as io, type QuerySubmissionsByNamespaceResponse as ip, type QuerySubmissionsByNamespaceForExportRequest as iq, type QuerySubmissionsByNamespaceForExportResponse as ir, type CountSubmissionsByFilterRequest as is, type FormSubmissionsCount as it, type CountSubmissionsRequest as iu, type CountDeletedSubmissionsRequest as iv, type FormDeletedSubmissionsCount as iw, type GetMediaUploadURLRequest as ix, type BulkMarkSubmissionsAsSeenRequest as iy, type GetSubmissionDownloadUrlRequest as iz, type ListDeletedSubmissionsResponse as j, type SmartBlockDataTypeWithLiterals as j$, type OptInLevelWithLiterals as j0, type WebhookIdentityTypeWithLiterals as j1, type StringTypeFormatEnumFormatWithLiterals as j2, type DayOfWeekWithLiterals as j3, type ValidationFormatWithLiterals as j4, type ProductTypeWithLiterals as j5, type PriceTypeWithLiterals as j6, type FieldTypeWithLiterals as j7, type FormatEnumFormatWithLiterals as j8, type StringComponentTypeWithLiterals as j9, type FontTypeWithLiterals as jA, type PositionWithLiterals as jB, type AspectRatioWithLiterals as jC, type ResizingWithLiterals as jD, type PlacementWithLiterals as jE, type CardStylesTypeWithLiterals as jF, type CardStylesAlignmentWithLiterals as jG, type LayoutWithLiterals as jH, type AppTypeWithLiterals as jI, type InitialExpandedItemsWithLiterals as jJ, type DirectionWithLiterals as jK, type VerticalAlignmentWithLiterals as jL, type NullValueWithLiterals as jM, type ImageScalingScalingWithLiterals as jN, type LayoutDataImagePositionWithLiterals as jO, type OriginWithLiterals as jP, type BannerPositionWithLiterals as jQ, type LayoutDataBackgroundTypeWithLiterals as jR, type BackdropTypeWithLiterals as jS, type VerticalAlignmentAlignmentWithLiterals as jT, type ResponsivenessBehaviourWithLiterals as jU, type DesignTargetWithLiterals as jV, type ScalingWithLiterals as jW, type ImagePositionPositionWithLiterals as jX, type CardDataBackgroundTypeWithLiterals as jY, type ListStyleWithLiterals as jZ, type IndentationWithLiterals as j_, type NodeTypeWithLiterals as ja, type BackgroundTypeWithLiterals as jb, type GradientTypeWithLiterals as jc, type WidthTypeWithLiterals as jd, type PluginContainerDataAlignmentWithLiterals as je, type ButtonDataTypeWithLiterals as jf, type LinkTargetWithLiterals as jg, type TextAlignmentWithLiterals as jh, type LineStyleWithLiterals as ji, type WidthWithLiterals as jj, type DividerDataAlignmentWithLiterals as jk, type ViewModeWithLiterals as jl, type LayoutTypeWithLiterals as jm, type OrientationWithLiterals as jn, type CropWithLiterals as jo, type ThumbnailsAlignmentWithLiterals as jp, type GIFTypeWithLiterals as jq, type SourceWithLiterals as jr, type StylesPositionWithLiterals as js, type MapTypeWithLiterals as jt, type ViewRoleWithLiterals as ju, type VoteRoleWithLiterals as jv, type PollLayoutTypeWithLiterals as jw, type PollLayoutDirectionWithLiterals as jx, type PollDesignBackgroundTypeWithLiterals as jy, type DecorationTypeWithLiterals as jz, type CursorQuery as k, type CommonSearchWithEntityContext as k$, type ColumnSizeWithLiterals as k0, type ImagePositionWithLiterals as k1, type AlignmentWithLiterals as k2, type ImageFitWithLiterals as k3, type NumberOfColumnsWithLiterals as k4, type FirstDayOfWeekWithLiterals as k5, type NumberComponentTypeWithLiterals as k6, type BooleanComponentTypeWithLiterals as k7, type ItemTypeWithLiterals as k8, type PropertiesTypeEnumWithLiterals as k9, type SpamFilterProtectionLevelWithLiterals as kA, type RequiredIndicatorWithLiterals as kB, type RequiredIndicatorPlacementWithLiterals as kC, type TargetWithLiterals as kD, type SubmitSuccessActionWithLiterals as kE, type ChangeablePropertyWithLiterals as kF, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as kG, type OperatorWithLiterals as kH, type ResultsDisplayWithLiterals as kI, type ContactAutofillWithLiterals as kJ, type SubmissionAccessWithLiterals as kK, type IdentityTypeWithLiterals as kL, type SubscriptionStatusWithLiterals as kM, type EmailDeliverabilityStatusWithLiterals as kN, type PhoneTagWithLiterals as kO, type PhoneDeliverabilityStatusWithLiterals as kP, type AddressTagWithLiterals as kQ, type SubdivisionTypeWithLiterals as kR, type MemberStatusWithLiterals as kS, type PrivacyStatusWithLiterals as kT, type RoleWithLiterals as kU, type ActionWithLiterals as kV, type ErrorTypeWithLiterals as kW, type SortOrderWithLiterals as kX, type ModeWithLiterals as kY, type StatusWithLiterals as kZ, type SubmissionErrorTypeWithLiterals as k_, type ArrayComponentTypeWithLiterals as ka, type WixFileComponentTypeWithLiterals as kb, type UploadFileFormatWithLiterals as kc, type PaymentComponentTypeWithLiterals as kd, type ComponentTypeWithLiterals as ke, type TypeWithLiterals as kf, type ObjectArrayComponentTypeWithLiterals as kg, type SchedulingComponentTypeWithLiterals as kh, type FormatWithLiterals as ki, type MeetingTypeWithLiterals as kj, type StaffStrategySelectionWithLiterals as kk, type InputTypeWithLiterals as kl, type EmailInfoTagWithLiterals as km, type PhoneInfoTagWithLiterals as kn, type TagWithLiterals as ko, type ConfirmationLevelWithLiterals as kp, type SubscriptionChannelWithLiterals as kq, type ContactFieldWithLiterals as kr, type DisplayFieldTypeWithLiterals as ks, type OverrideEntityTypeWithLiterals as kt, type KindWithLiterals as ku, type FormFieldContactInfoEmailInfoTagWithLiterals as kv, type FormFieldContactInfoPhoneInfoTagWithLiterals as kw, type AddressInfoTagWithLiterals as kx, type SubscriptionInfoOptInLevelWithLiterals as ky, type FormFieldContactInfoContactFieldWithLiterals as kz, type QuerySubmissionResponse as l, type CommonQueryWithEntityContext as l0, onSubmissionCreated as l1, onSubmissionDeleted as l2, onSubmissionRemovedSubmissionFromTrash as l3, onSubmissionStatusUpdated as l4, onSubmissionContactMapped as l5, onSubmissionContactMappingSkipped as l6, onSubmissionUpdated as l7, upsertContactFromSubmission as l8, createSubmission as l9, getSubmission as la, updateSubmission as lb, confirmSubmission as lc, deleteSubmission as ld, bulkDeleteSubmission as le, restoreSubmissionFromTrashBin as lf, removeSubmissionFromTrashBin as lg, bulkRemoveSubmissionFromTrashBin as lh, listDeletedSubmissions as li, getDeletedSubmission as lj, querySubmission as lk, querySubmissionsByNamespace as ll, countSubmissionsByFilter as lm, countSubmissions as ln, countDeletedSubmissions as lo, getMediaUploadUrl as lp, bulkMarkSubmissionsAsSeen as lq, getSubmissionDownloadUrl as lr, downloadSubmission as ls, getFormattedSubmission as lt, updateExtendedFields as lu, bulkUpdateFormSubmissionTags as lv, bulkUpdateFormSubmissionTagsByFilter as lw, validateFormSubmission as lx, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { ck as AccountInfo, iV as AccountInfoMetadata, bU as Action, cg as ActionEvent, kT as ActionWithLiterals, hl as AdditionalEmail, hn as AdditionalPhone, hp as Address, g6 as AddressInfo, bw as AddressInfoTag, kv as AddressInfoTagWithLiterals, fL as AddressLine2, hs as AddressLocation, hq as AddressStreetOneOf, bP as AddressTag, kO as AddressTagWithLiterals, b1 as Alignment, k0 as AlignmentWithLiterals, gV as AllowedValuesOptions, ef as AnchorData, g_ as AndCondition, em as AppEmbedData, en as AppEmbedDataAppDataOneOf, aI as AppType, jH as AppTypeWithLiterals, hR as ApplicationError, fX as Appointment, c4 as AppointmentDetails, fY as AppointmentFormatInfoOneOf, b9 as ArrayComponentType, k8 as ArrayComponentTypeWithLiterals, cK as ArrayErrorMessages, ft as ArrayItems, fu as ArrayItemsItemTypeOptionsOneOf, fp as ArrayType, cI as ArrayTypeArrayItems, cJ as ArrayTypeArrayItemsItemsOneOf, aC as AspectRatio, jB as AspectRatioWithLiterals, eH as AudioData, ct as Availability, eQ as Backdrop, aR as BackdropType, jQ as BackdropTypeWithLiterals, dl as Background, e4 as BackgroundGradient, eW as BackgroundImage, ab as BackgroundType, ja as BackgroundTypeWithLiterals, eO as Banner, iT as BaseEventMetadata, eK as BlockquoteData, eo as BookingData, b6 as BooleanComponentType, k5 as BooleanComponentTypeWithLiterals, cC as BooleanErrorMessages, fm as BooleanType, dj as Border, eE as BorderColors, eF as BorderWidths, fR as BreakPoint, hS as BulkActionMetadata, hN as BulkCreateSubmissionBySubmitterData, hM as BulkCreateSubmissionBySubmitterRequest, hO as BulkCreateSubmissionBySubmitterResponse, i0 as BulkDeleteSubmissionRequest, i1 as BulkDeleteSubmissionResult, ix as BulkMarkSubmissionsAsSeenRequest, i5 as BulkRemoveSubmissionFromTrashBinRequest, i6 as BulkRemoveSubmissionFromTrashBinResult, hP as BulkSubmissionResult, iM as BulkUpdateFormSubmissionTagsByFilterRequest, iK as BulkUpdateFormSubmissionTagsRequest, iL as BulkUpdateFormSubmissionTagsResult, eJ as BulletedListData, dg as ButtonData, af as ButtonDataType, je as ButtonDataTypeWithLiterals, eq as ButtonStyles, eL as CaptionData, eU as CardData, eV as CardDataBackground, aX as CardDataBackgroundType, jW as CardDataBackgroundTypeWithLiterals, et as CardStyles, aG as CardStylesAlignment, jF as CardStylesAlignmentWithLiterals, aF as CardStylesType, jE as CardStylesTypeWithLiterals, eD as CellStyle, bE as ChangeableProperty, kD as ChangeablePropertyWithLiterals, fn as Checkbox, fw as CheckboxGroup, ha as Checkout, dw as CodeBlockData, ez as CollapsibleListData, eg as ColorData, dk as Colors, a$ as ColumnSize, j_ as ColumnSizeWithLiterals, k_ as CommonQueryWithEntityContext, kZ as CommonSearchWithEntityContext, bd as ComponentType, kc as ComponentTypeWithLiterals, fy as ComponentsTags, h0 as Condition, gY as ConditionNode, gZ as ConditionNodeNodeOneOf, hZ as ConfirmSubmissionRequest, bo as ConfirmationLevel, kn as ConfirmationLevelWithLiterals, hh as Contact, hy as ContactActivity, ho as ContactAddress, bI as ContactAutofill, kH as ContactAutofillWithLiterals, hw as ContactCompany, hj as ContactEmail, bq as ContactField, kp as ContactFieldWithLiterals, hi as ContactName, hm as ContactPhone, hx as ContactSource, hk as ContactSubscription, fo as CorrectAnswersList, iu as CountDeletedSubmissionsRequest, ir as CountSubmissionsByFilterRequest, it as CountSubmissionsRequest, cl as CreateCheckoutFromSubmissionRequest, cm as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, h9 as CreateCheckoutFromSubmissionResponse, hK as CreateSubmissionBySubmitterRequest, hL as CreateSubmissionBySubmitterResponse, hG as CreateSubmissionRequest, hH as CreateSubmissionResponse, ao as Crop, jn as CropWithLiterals, i8 as CursorPaging, i9 as CursorPagingMetadata, id as CursorQueryPagingMethodOneOf, ih as CursorSearch, ii as CursorSearchPagingMethodOneOf, ia as Cursors, g7 as CustomFieldInfo, f6 as CustomOption, c_ as DataExtensionsDetails, fb as DateInput, fd as DatePicker, cu as DateRange, cs as DateTimeAdvancedConstraints, d7 as DateTimeConstraints, f9 as DateTimeInput, a3 as DayOfWeek, j2 as DayOfWeekWithLiterals, ed as Decoration, ee as DecorationDataOneOf, az as DecorationType, jy as DecorationTypeWithLiterals, fM as DefaultCountryConfig, fN as DefaultCountryConfigOptionsOneOf, h_ as DeleteSubmissionRequest, h$ as DeleteSubmissionResponse, eb as Design, aU as DesignTarget, jT as DesignTargetWithLiterals, eB as Dimensions, aK as Direction, jJ as DirectionWithLiterals, gs as DisplayField, gt as DisplayFieldDisplayFieldTypeOptionsOneOf, br as DisplayFieldType, kq as DisplayFieldTypeWithLiterals, dy as DividerData, ak as DividerDataAlignment, jj as DividerDataAlignmentWithLiterals, iB as DocumentReady, e$ as DocumentStyle, ca as DomainEvent, cb as DomainEventBodyOneOf, fG as DonationInput, fH as DonationInputOption, iC as DownloadSubmissionRequest, f7 as Dropdown, f8 as DropdownOption, cQ as DynamicPriceOptions, bM as EmailDeliverabilityStatus, kL as EmailDeliverabilityStatusWithLiterals, g4 as EmailInfo, bl as EmailInfoTag, kk as EmailInfoTagWithLiterals, ex as EmbedData, hd as Empty, cc as EntityCreatedEvent, cf as EntityDeletedEvent, ce as EntityUpdatedEvent, bV as ErrorType, kU as ErrorTypeWithLiterals, ep as EventData, iU as EventMetadata, c0 as ExtendedFields, d0 as Field, d1 as FieldFieldTypeOptionsOneOf, gR as FieldGroup, gW as FieldOverride, gX as FieldOverridePropertyTypeOptionsOneOf, cU as FieldOverrides, a7 as FieldType, j6 as FieldTypeWithLiterals, iO as FieldViolation, iP as FieldViolationErrorDataOneOf, cV as FieldsOverrides, fO as FieldsSettings, dz as FileData, dA as FileSource, dB as FileSourceDataOneOf, fB as FileType, fC as FileUpload, b4 as FirstDayOfWeek, k3 as FirstDayOfWeekWithLiterals, fJ as FixedPayment, cP as FixedPriceOptions, el as FontFamilyData, ej as FontSizeData, aA as FontType, jz as FontTypeWithLiterals, cn as Form, iv as FormDeletedSubmissionsCount, co as FormField, cD as FormFieldArrayType, cB as FormFieldBooleanType, g2 as FormFieldContactInfo, g3 as FormFieldContactInfoAdditionalInfoOneOf, gG as FormFieldContactInfoAddressInfo, by as FormFieldContactInfoContactField, kx as FormFieldContactInfoContactFieldWithLiterals, gH as FormFieldContactInfoCustomFieldInfo, gE as FormFieldContactInfoEmailInfo, bu as FormFieldContactInfoEmailInfoTag, kt as FormFieldContactInfoEmailInfoTagWithLiterals, gF as FormFieldContactInfoPhoneInfo, bv as FormFieldContactInfoPhoneInfoTag, ku as FormFieldContactInfoPhoneInfoTagWithLiterals, gI as FormFieldContactInfoSubscriptionInfo, cy as FormFieldNumberType, cE as FormFieldObjectType, cp as FormFieldStringType, cq as FormFieldStringTypeFormatOptionsOneOf, fQ as FormLayout, gy as FormOverride, gz as FormProperties, gx as FormRule, iY as FormSubmissionQuerySpec, iW as FormSubmissionSearchSpec, c5 as FormSubmissionStatusUpdatedEvent, is as FormSubmissionsCount, bh as Format, a8 as FormatEnumFormat, j7 as FormatEnumFormatWithLiterals, kg as FormatWithLiterals, iI as FormattedFormSubmission, iF as FormattedSubmission, dO as GIF, dN as GIFData, aq as GIFType, jp as GIFTypeWithLiterals, dD as GalleryData, dJ as GalleryOptions, dK as GalleryOptionsLayout, ib as GetDeletedSubmissionRequest, iE as GetFormattedSubmissionRequest, iw as GetMediaUploadURLRequest, hV as GetSubmissionByCheckoutIdRequest, hW as GetSubmissionByCheckoutIdResponse, iy as GetSubmissionDownloadUrlRequest, hT as GetSubmissionRequest, hU as GetSubmissionResponse, dh as Gradient, ac as GradientType, jb as GradientTypeWithLiterals, fU as Group, hD as GroupInfo, dQ as HTMLData, dR as HTMLDataDataOneOf, iD as HeadersEntry, dP as HeadingData, dr as Height, gU as HiddenOptions, ci as IdentificationData, cj as IdentificationDataIdOneOf, bK as IdentityType, kJ as IdentityTypeWithLiterals, dF as Image, dS as ImageData, dU as ImageDataStyles, b2 as ImageFit, k1 as ImageFitWithLiterals, b0 as ImagePosition, aW as ImagePositionPosition, jV as ImagePositionPositionWithLiterals, j$ as ImagePositionWithLiterals, aN as ImageScalingScaling, jM as ImageScalingScalingWithLiterals, er as ImageStyles, f$ as InPersonOptions, aZ as Indentation, jY as IndentationWithLiterals, aJ as InitialExpandedItems, jI as InitialExpandedItemsWithLiterals, d2 as InputField, go as InputFieldAddress, gp as InputFieldAddressComponentTypeOptionsOneOf, d3 as InputFieldInputTypeOptionsOneOf, bk as InputType, kj as InputTypeWithLiterals, cA as IntegerType, hb as IsFormSubmittableRequest, hc as IsFormSubmittableResponse, dH as Item, dI as ItemDataOneOf, fS as ItemLayout, fT as ItemLayoutItemOneOf, hQ as ItemMetadata, dL as ItemStyle, b7 as ItemType, k6 as ItemTypeWithLiterals, bt as Kind, ks as KindWithLiterals, aH as Layout, eR as LayoutCellData, eM as LayoutData, eP as LayoutDataBackground, eN as LayoutDataBackgroundImage, aQ as LayoutDataBackgroundType, jP as LayoutDataBackgroundTypeWithLiterals, aO as LayoutDataImagePosition, jN as LayoutDataImagePositionWithLiterals, am as LayoutType, jl as LayoutTypeWithLiterals, jG as LayoutWithLiterals, gK as LimitationRule, ai as LineStyle, jh as LineStyleWithLiterals, dt as Link, eh as LinkData, du as LinkDataOneOf, dV as LinkPreviewData, dW as LinkPreviewDataStyles, ag as LinkTarget, jf as LinkTargetWithLiterals, i7 as ListDeletedSubmissionsRequest, iG as ListFormattedSubmissionsRequest, iH as ListFormattedSubmissionsResponse, aY as ListStyle, jX as ListStyleWithLiterals, eG as ListValue, fZ as Location, f_ as LocationLocationInfoOneOf, dX as MapData, dY as MapSettings, at as MapType, js as MapTypeWithLiterals, fV as Margin, c8 as MarketingSubscriptionDetails, dE as Media, f1 as MediaItem, f2 as MediaItemMediaOneOf, f3 as MediaSettings, bi as MeetingType, kh as MeetingTypeWithLiterals, hz as MemberInfo, bR as MemberStatus, kQ as MemberStatusWithLiterals, ei as MentionData, ch as MessageEnvelope, e_ as Metadata, bX as Mode, kW as ModeWithLiterals, fK as MultilineAddress, cT as MultilineAddressValidation, gJ as NestedForm, cX as NestedFormFieldOverrides, c$ as NestedFormOverrides, dd as Node, de as NodeDataOneOf, df as NodeStyle, aa as NodeType, j9 as NodeTypeWithLiterals, aM as NullValue, jL as NullValueWithLiterals, b5 as NumberComponentType, k4 as NumberComponentTypeWithLiterals, fh as NumberCorrectAnswersList, cz as NumberErrorMessages, fk as NumberInput, b3 as NumberOfColumns, k2 as NumberOfColumnsWithLiterals, fj as NumberQuizFieldSettings, fi as NumberType, gq as ObjectArray, bf as ObjectArrayComponentType, gr as ObjectArrayComponentTypeOptionsOneOf, ke as ObjectArrayComponentTypeWithLiterals, cW as ObjectArrayType, cH as ObjectErrorMessages, fq as ObjectType, cF as ObjectTypePropertiesType, cG as ObjectTypePropertiesTypePropertiesTypeOneOf, ey as Oembed, bG as Operator, kF as OperatorWithLiterals, a0 as OptInLevel, i$ as OptInLevelWithLiterals, fx as Option, e8 as OptionDesign, e3 as OptionLayout, g$ as OrCondition, c1 as OrderDetails, eI as OrderedListData, an as Orientation, jm as OrientationWithLiterals, aP as Origin, jO as OriginWithLiterals, bs as OverrideEntityType, bF as OverrideEntityTypeEnumOverrideEntityType, kE as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, kr as OverrideEntityTypeWithLiterals, dC as PDFSettings, gv as PageNavigationOptions, dZ as ParagraphData, h8 as PassFailMessages, fg as Password, gk as Payment, bc as PaymentComponentType, gl as PaymentComponentTypeOptionsOneOf, kb as PaymentComponentTypeWithLiterals, fI as PaymentInput, cN as PaymentType, d$ as Permissions, d8 as PhoneConstraints, bO as PhoneDeliverabilityStatus, kN as PhoneDeliverabilityStatusWithLiterals, g5 as PhoneInfo, bm as PhoneInfoTag, kl as PhoneInfoTagWithLiterals, fa as PhoneInput, g1 as PhoneOptions, bN as PhoneTag, kM as PhoneTagWithLiterals, aE as Placement, jD as PlacementWithLiterals, ew as PlaybackOptions, dm as PluginContainerData, ae as PluginContainerDataAlignment, jd as PluginContainerDataAlignmentWithLiterals, dn as PluginContainerDataWidth, dp as PluginContainerDataWidthDataOneOf, e9 as Poll, d_ as PollData, ea as PollDataLayout, e7 as PollDesign, e5 as PollDesignBackground, e6 as PollDesignBackgroundBackgroundOneOf, ay as PollDesignBackgroundType, jx as PollDesignBackgroundTypeWithLiterals, e2 as PollLayout, ax as PollLayoutDirection, jw as PollLayoutDirectionWithLiterals, aw as PollLayoutType, jv as PollLayoutTypeWithLiterals, e0 as PollOption, gQ as PopupOptions, aB as Position, jA as PositionWithLiterals, gA as PostSubmissionTriggers, cL as PredefinedValidation, cM as PredefinedValidationFormatOptionsOneOf, a6 as PriceType, j5 as PriceTypeWithLiterals, eu as PricingData, bS as PrivacyStatus, kR as PrivacyStatusWithLiterals, hE as PrivateTags, hF as PrivateTagsTagList, cR as Product, fE as ProductCheckboxGroup, fF as ProductCheckboxGroupOption, cS as ProductPriceOptionsOneOf, a5 as ProductType, j4 as ProductTypeWithLiterals, hA as ProfileInfo, fr as PropertiesType, b8 as PropertiesTypeEnum, k7 as PropertiesTypeEnumWithLiterals, fs as PropertiesTypePropertiesTypeOptionsOneOf, c2 as PublicTags, cO as QuantityLimit, ic as QuerySubmissionRequest, ip as QuerySubmissionsByNamespaceForExportRequest, iq as QuerySubmissionsByNamespaceForExportResponse, im as QuerySubmissionsByNamespaceRequest, io as QuerySubmissionsByNamespaceResponse, fv as QuizFieldSettings, h5 as QuizSettings, h6 as QuizSettingsPassingCriteriaOneOf, h7 as QuizSettingsResultsDisplayOptionsOneOf, f4 as RadioGroup, f5 as RadioGroupOption, fl as RatingInput, hv as Recipient, gP as RedirectOptions, dv as Rel, i3 as RemoveSubmissionFromTrashBinRequest, i4 as RemoveSubmissionFromTrashBinResponse, c6 as RemovedSubmissionFromTrash, fP as Repeater, bA as RequiredIndicator, bB as RequiredIndicatorPlacement, kA as RequiredIndicatorPlacementWithLiterals, gL as RequiredIndicatorProperties, kz as RequiredIndicatorWithLiterals, gT as RequiredOptions, aD as Resizing, jC as ResizingWithLiterals, aT as ResponsivenessBehaviour, jS as ResponsivenessBehaviourWithLiterals, cd as RestoreInfo, i2 as RestoreSubmissionFromTrashBinRequest, bH as ResultsDisplay, kG as ResultsDisplayWithLiterals, es as RibbonStyles, dc as RichContent, gu as RichContentOptions, bT as Role, kS as RoleWithLiterals, gS as Rule, h1 as RuleFormOverride, h2 as RuleFormOverrideEntityTypeOptionsOneOf, aV as Scaling, jU as ScalingWithLiterals, gm as Scheduling, bg as SchedulingComponentType, gn as SchedulingComponentTypeOptionsOneOf, kf as SchedulingComponentTypeWithLiterals, ij as SearchDetails, ik as SearchSubmissionsByNamespaceForExportRequest, il as SearchSubmissionsByNamespaceForExportResponse, ig as SearchSubmissionsByNamespaceRequest, fW as Section, ff as ServiceOption, fA as ServicesCheckboxGroup, fe as ServicesDropdown, hC as SessionInfo, e1 as Settings, eS as ShapeData, eT as ShapeDataStyles, fD as Signature, eZ as SmartBlockCellData, eY as SmartBlockData, a_ as SmartBlockDataType, jZ as SmartBlockDataTypeWithLiterals, bW as SortOrder, kV as SortOrderWithLiterals, ie as Sorting, ar as Source, jq as SourceWithLiterals, bz as SpamFilterProtectionLevel, ky as SpamFilterProtectionLevelWithLiterals, dq as Spoiler, ek as SpoilerData, bj as StaffStrategySelection, ki as StaffStrategySelectionWithLiterals, hu as StandardDetails, bY as Status, kX as StatusWithLiterals, gw as Step, di as Stop, hr as StreetAddress, a9 as StringComponentType, j8 as StringComponentTypeWithLiterals, d4 as StringCorrectAnswersList, cr as StringErrorMessages, da as StringQuizFieldSettings, d5 as StringType, cv as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, j1 as StringTypeFormatEnumFormatWithLiterals, d6 as StringTypeFormatOptionsOneOf, cw as StringTypePhoneConstraints, cx as StringTypeValidationMessages, ds as Styles, dT as StylesBorder, as as StylesPosition, jr as StylesPositionWithLiterals, ht as Subdivision, bQ as SubdivisionType, kP as SubdivisionTypeWithLiterals, bJ as SubmissionAccess, kI as SubmissionAccessWithLiterals, c7 as SubmissionContactMapped, c9 as SubmissionContactMappingSkipped, iz as SubmissionDocument, iA as SubmissionDocumentDocumentOneOf, bZ as SubmissionErrorType, kY as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, i_ as SubmissionStatusWithLiterals, iR as SubmissionValidationError, iS as SubmissionValidationErrorErrorMessageOneOf, iQ as SubmissionValidationErrors, hI as SubmissionValidationErrorsDetails, iX as SubmissionsQueryResult, hf as SubmitContactResponse, gM as SubmitSettings, gN as SubmitSettingsSubmitSuccessActionOptionsOneOf, bD as SubmitSuccessAction, kC as SubmitSuccessActionWithLiterals, b_ as Submitter, b$ as SubmitterSubmitterOneOf, bp as SubscriptionChannel, ko as SubscriptionChannelWithLiterals, g8 as SubscriptionInfo, bx as SubscriptionInfoOptInLevel, kw as SubscriptionInfoOptInLevelWithLiterals, bL as SubscriptionStatus, kK as SubscriptionStatusWithLiterals, eC as TableCellData, eA as TableData, bn as Tag, c3 as TagList, km as TagWithLiterals, h3 as Tags, fz as TagsOption, h4 as TagsTagList, bC as Target, kB as TargetWithLiterals, ah as TextAlignment, jg as TextAlignmentWithLiterals, ec as TextData, db as TextInput, f0 as TextNodeStyle, dx as TextStyle, gO as ThankYouMessageOptions, dM as Thumbnails, ap as ThumbnailsAlignment, jo as ThumbnailsAlignmentWithLiterals, fc as TimeInput, eX as TocData, be as Type, kd as TypeWithLiterals, iJ as UpdateExtendedFieldsRequest, hX as UpdateSubmissionRequest, hY as UpdateSubmissionResponse, bb as UploadFileFormat, ka as UploadFileFormatWithLiterals, gB as UpsertContact, he as UpsertContactFromSubmissionRequest, hg as UpsertContactResponse, hB as UserInfo, gC as V4FormFieldContactInfo, gD as V4FormFieldContactInfoAdditionalInfoOneOf, iN as ValidateFormSubmissionRequest, cY as Validation, hJ as ValidationError, a4 as ValidationFormat, j3 as ValidationFormatWithLiterals, d9 as ValidationMessages, cZ as ValidationValidationOneOf, aL as VerticalAlignment, aS as VerticalAlignmentAlignment, jR as VerticalAlignmentAlignmentWithLiterals, jK as VerticalAlignmentWithLiterals, dG as Video, g0 as VideoConferenceOptions, ev as VideoData, al as ViewMode, jk as ViewModeWithLiterals, au as ViewRole, jt as ViewRoleWithLiterals, av as VoteRole, ju as VoteRoleWithLiterals, a1 as WebhookIdentityType, j0 as WebhookIdentityTypeWithLiterals, aj as Width, ad as WidthType, jc as WidthTypeWithLiterals, ji as WidthWithLiterals, gi as WixFile, ba as WixFileComponentType, gj as WixFileComponentTypeOptionsOneOf, k9 as WixFileComponentTypeWithLiterals, gf as _Array, gg as _ArrayComponentTypeOptionsOneOf, gd as _Boolean, ge as _BooleanComponentTypeOptionsOneOf, gb as _Number, gc as _NumberComponentTypeOptionsOneOf, gh as _Object, g9 as _String, ga as _StringComponentTypeOptionsOneOf, iZ as utils } from './forms-v4-submission-submissions.universal-BX16r0LB.mjs';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-MYwdZTUH.mjs';
|
|
3
|
+
export { cl as AccountInfo, iW as AccountInfoMetadata, bV as Action, ch as ActionEvent, kV as ActionWithLiterals, hm as AdditionalEmail, ho as AdditionalPhone, hq as Address, g7 as AddressInfo, bx as AddressInfoTag, kx as AddressInfoTagWithLiterals, fM as AddressLine2, ht as AddressLocation, hr as AddressStreetOneOf, bQ as AddressTag, kQ as AddressTagWithLiterals, b2 as Alignment, k2 as AlignmentWithLiterals, gW as AllowedValuesOptions, eg as AnchorData, g$ as AndCondition, en as AppEmbedData, eo as AppEmbedDataAppDataOneOf, aI as AppType, jI as AppTypeWithLiterals, hS as ApplicationError, fY as Appointment, c5 as AppointmentDetails, fZ as AppointmentFormatInfoOneOf, ba as ArrayComponentType, ka as ArrayComponentTypeWithLiterals, cL as ArrayErrorMessages, fu as ArrayItems, fv as ArrayItemsItemTypeOptionsOneOf, fq as ArrayType, cJ as ArrayTypeArrayItems, cK as ArrayTypeArrayItemsItemsOneOf, aC as AspectRatio, jC as AspectRatioWithLiterals, eI as AudioData, cu as Availability, eR as Backdrop, aS as BackdropType, jS as BackdropTypeWithLiterals, dm as Background, e5 as BackgroundGradient, eX as BackgroundImage, ab as BackgroundType, jb as BackgroundTypeWithLiterals, eP as Banner, aQ as BannerPosition, jQ as BannerPositionWithLiterals, iU as BaseEventMetadata, eL as BlockquoteData, ep as BookingData, b7 as BooleanComponentType, k7 as BooleanComponentTypeWithLiterals, cD as BooleanErrorMessages, fn as BooleanType, dk as Border, eF as BorderColors, eG as BorderWidths, fS as BreakPoint, hT as BulkActionMetadata, hO as BulkCreateSubmissionBySubmitterData, hN as BulkCreateSubmissionBySubmitterRequest, hP as BulkCreateSubmissionBySubmitterResponse, i1 as BulkDeleteSubmissionRequest, i2 as BulkDeleteSubmissionResult, iy as BulkMarkSubmissionsAsSeenRequest, i6 as BulkRemoveSubmissionFromTrashBinRequest, i7 as BulkRemoveSubmissionFromTrashBinResult, hQ as BulkSubmissionResult, iN as BulkUpdateFormSubmissionTagsByFilterRequest, iL as BulkUpdateFormSubmissionTagsRequest, iM as BulkUpdateFormSubmissionTagsResult, eK as BulletedListData, dh as ButtonData, af as ButtonDataType, jf as ButtonDataTypeWithLiterals, er as ButtonStyles, eM as CaptionData, eV as CardData, eW as CardDataBackground, aY as CardDataBackgroundType, jY as CardDataBackgroundTypeWithLiterals, eu as CardStyles, aG as CardStylesAlignment, jG as CardStylesAlignmentWithLiterals, aF as CardStylesType, jF as CardStylesTypeWithLiterals, eE as CellStyle, bF as ChangeableProperty, kF as ChangeablePropertyWithLiterals, fo as Checkbox, fx as CheckboxGroup, hb as Checkout, dx as CodeBlockData, eA as CollapsibleListData, eh as ColorData, dl as Colors, b0 as ColumnSize, k0 as ColumnSizeWithLiterals, l0 as CommonQueryWithEntityContext, k$ as CommonSearchWithEntityContext, be as ComponentType, ke as ComponentTypeWithLiterals, fz as ComponentsTags, h1 as Condition, gZ as ConditionNode, g_ as ConditionNodeNodeOneOf, h_ as ConfirmSubmissionRequest, bp as ConfirmationLevel, kp as ConfirmationLevelWithLiterals, hi as Contact, hz as ContactActivity, hp as ContactAddress, bJ as ContactAutofill, kJ as ContactAutofillWithLiterals, hx as ContactCompany, hk as ContactEmail, br as ContactField, kr as ContactFieldWithLiterals, hj as ContactName, hn as ContactPhone, hy as ContactSource, hl as ContactSubscription, fp as CorrectAnswersList, iv as CountDeletedSubmissionsRequest, is as CountSubmissionsByFilterRequest, iu as CountSubmissionsRequest, cm as CreateCheckoutFromSubmissionRequest, cn as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, ha as CreateCheckoutFromSubmissionResponse, hL as CreateSubmissionBySubmitterRequest, hM as CreateSubmissionBySubmitterResponse, hH as CreateSubmissionRequest, hI as CreateSubmissionResponse, ao as Crop, jo as CropWithLiterals, i9 as CursorPaging, ia as CursorPagingMetadata, ie as CursorQueryPagingMethodOneOf, ii as CursorSearch, ij as CursorSearchPagingMethodOneOf, ib as Cursors, g8 as CustomFieldInfo, f7 as CustomOption, c$ as DataExtensionsDetails, fc as DateInput, fe as DatePicker, cv as DateRange, ct as DateTimeAdvancedConstraints, d8 as DateTimeConstraints, fa as DateTimeInput, a3 as DayOfWeek, j3 as DayOfWeekWithLiterals, ee as Decoration, ef as DecorationDataOneOf, az as DecorationType, jz as DecorationTypeWithLiterals, fN as DefaultCountryConfig, fO as DefaultCountryConfigOptionsOneOf, h$ as DeleteSubmissionRequest, i0 as DeleteSubmissionResponse, ec as Design, aV as DesignTarget, jV as DesignTargetWithLiterals, eC as Dimensions, aK as Direction, jK as DirectionWithLiterals, gt as DisplayField, gu as DisplayFieldDisplayFieldTypeOptionsOneOf, bs as DisplayFieldType, ks as DisplayFieldTypeWithLiterals, dz as DividerData, ak as DividerDataAlignment, jk as DividerDataAlignmentWithLiterals, iC as DocumentReady, f0 as DocumentStyle, cb as DomainEvent, cc as DomainEventBodyOneOf, fH as DonationInput, fI as DonationInputOption, iD as DownloadSubmissionRequest, f8 as Dropdown, f9 as DropdownOption, cR as DynamicPriceOptions, bN as EmailDeliverabilityStatus, kN as EmailDeliverabilityStatusWithLiterals, g5 as EmailInfo, bm as EmailInfoTag, km as EmailInfoTagWithLiterals, ey as EmbedData, he as Empty, cd as EntityCreatedEvent, cg as EntityDeletedEvent, cf as EntityUpdatedEvent, bW as ErrorType, kW as ErrorTypeWithLiterals, eq as EventData, iV as EventMetadata, c1 as ExtendedFields, d1 as Field, d2 as FieldFieldTypeOptionsOneOf, gS as FieldGroup, gX as FieldOverride, gY as FieldOverridePropertyTypeOptionsOneOf, cV as FieldOverrides, a7 as FieldType, j7 as FieldTypeWithLiterals, iP as FieldViolation, iQ as FieldViolationErrorDataOneOf, cW as FieldsOverrides, fP as FieldsSettings, dA as FileData, dB as FileSource, dC as FileSourceDataOneOf, fC as FileType, fD as FileUpload, b5 as FirstDayOfWeek, k5 as FirstDayOfWeekWithLiterals, fK as FixedPayment, cQ as FixedPriceOptions, em as FontFamilyData, ek as FontSizeData, aA as FontType, jA as FontTypeWithLiterals, co as Form, iw as FormDeletedSubmissionsCount, cp as FormField, cE as FormFieldArrayType, cC as FormFieldBooleanType, g3 as FormFieldContactInfo, g4 as FormFieldContactInfoAdditionalInfoOneOf, gH as FormFieldContactInfoAddressInfo, bz as FormFieldContactInfoContactField, kz as FormFieldContactInfoContactFieldWithLiterals, gI as FormFieldContactInfoCustomFieldInfo, gF as FormFieldContactInfoEmailInfo, bv as FormFieldContactInfoEmailInfoTag, kv as FormFieldContactInfoEmailInfoTagWithLiterals, gG as FormFieldContactInfoPhoneInfo, bw as FormFieldContactInfoPhoneInfoTag, kw as FormFieldContactInfoPhoneInfoTagWithLiterals, gJ as FormFieldContactInfoSubscriptionInfo, cz as FormFieldNumberType, cF as FormFieldObjectType, cq as FormFieldStringType, cr as FormFieldStringTypeFormatOptionsOneOf, fR as FormLayout, gz as FormOverride, gA as FormProperties, gy as FormRule, iZ as FormSubmissionQuerySpec, iX as FormSubmissionSearchSpec, c6 as FormSubmissionStatusUpdatedEvent, it as FormSubmissionsCount, bi as Format, a8 as FormatEnumFormat, j8 as FormatEnumFormatWithLiterals, ki as FormatWithLiterals, iJ as FormattedFormSubmission, iG as FormattedSubmission, dP as GIF, dO as GIFData, aq as GIFType, jq as GIFTypeWithLiterals, dE as GalleryData, dK as GalleryOptions, dL as GalleryOptionsLayout, ic as GetDeletedSubmissionRequest, iF as GetFormattedSubmissionRequest, ix as GetMediaUploadURLRequest, hW as GetSubmissionByCheckoutIdRequest, hX as GetSubmissionByCheckoutIdResponse, iz as GetSubmissionDownloadUrlRequest, hU as GetSubmissionRequest, hV as GetSubmissionResponse, di as Gradient, ac as GradientType, jc as GradientTypeWithLiterals, fV as Group, hE as GroupInfo, dR as HTMLData, dS as HTMLDataDataOneOf, iE as HeadersEntry, dQ as HeadingData, ds as Height, gV as HiddenOptions, cj as IdentificationData, ck as IdentificationDataIdOneOf, bL as IdentityType, kL as IdentityTypeWithLiterals, dG as Image, dT as ImageData, dV as ImageDataStyles, b3 as ImageFit, k3 as ImageFitWithLiterals, b1 as ImagePosition, aX as ImagePositionPosition, jX as ImagePositionPositionWithLiterals, k1 as ImagePositionWithLiterals, aN as ImageScalingScaling, jN as ImageScalingScalingWithLiterals, es as ImageStyles, g0 as InPersonOptions, a_ as Indentation, j_ as IndentationWithLiterals, aJ as InitialExpandedItems, jJ as InitialExpandedItemsWithLiterals, d3 as InputField, gp as InputFieldAddress, gq as InputFieldAddressComponentTypeOptionsOneOf, d4 as InputFieldInputTypeOptionsOneOf, bl as InputType, kl as InputTypeWithLiterals, cB as IntegerType, hc as IsFormSubmittableRequest, hd as IsFormSubmittableResponse, dI as Item, dJ as ItemDataOneOf, fT as ItemLayout, fU as ItemLayoutItemOneOf, hR as ItemMetadata, dM as ItemStyle, b8 as ItemType, k8 as ItemTypeWithLiterals, bu as Kind, ku as KindWithLiterals, aH as Layout, eS as LayoutCellData, eN as LayoutData, eQ as LayoutDataBackground, eO as LayoutDataBackgroundImage, aR as LayoutDataBackgroundType, jR as LayoutDataBackgroundTypeWithLiterals, aO as LayoutDataImagePosition, jO as LayoutDataImagePositionWithLiterals, am as LayoutType, jm as LayoutTypeWithLiterals, jH as LayoutWithLiterals, gL as LimitationRule, ai as LineStyle, ji as LineStyleWithLiterals, du as Link, ei as LinkData, dv as LinkDataOneOf, dW as LinkPreviewData, dX as LinkPreviewDataStyles, ag as LinkTarget, jg as LinkTargetWithLiterals, i8 as ListDeletedSubmissionsRequest, iH as ListFormattedSubmissionsRequest, iI as ListFormattedSubmissionsResponse, aZ as ListStyle, jZ as ListStyleWithLiterals, eH as ListValue, f_ as Location, f$ as LocationLocationInfoOneOf, dY as MapData, dZ as MapSettings, at as MapType, jt as MapTypeWithLiterals, fW as Margin, c9 as MarketingSubscriptionDetails, dF as Media, f2 as MediaItem, f3 as MediaItemMediaOneOf, f4 as MediaSettings, bj as MeetingType, kj as MeetingTypeWithLiterals, hA as MemberInfo, bS as MemberStatus, kS as MemberStatusWithLiterals, ej as MentionData, ci as MessageEnvelope, e$ as Metadata, bY as Mode, kY as ModeWithLiterals, fL as MultilineAddress, cU as MultilineAddressValidation, gK as NestedForm, cY as NestedFormFieldOverrides, d0 as NestedFormOverrides, de as Node, df as NodeDataOneOf, dg as NodeStyle, aa as NodeType, ja as NodeTypeWithLiterals, aM as NullValue, jM as NullValueWithLiterals, b6 as NumberComponentType, k6 as NumberComponentTypeWithLiterals, fi as NumberCorrectAnswersList, cA as NumberErrorMessages, fl as NumberInput, b4 as NumberOfColumns, k4 as NumberOfColumnsWithLiterals, fk as NumberQuizFieldSettings, fj as NumberType, gr as ObjectArray, bg as ObjectArrayComponentType, gs as ObjectArrayComponentTypeOptionsOneOf, kg as ObjectArrayComponentTypeWithLiterals, cX as ObjectArrayType, cI as ObjectErrorMessages, fr as ObjectType, cG as ObjectTypePropertiesType, cH as ObjectTypePropertiesTypePropertiesTypeOneOf, ez as Oembed, bH as Operator, kH as OperatorWithLiterals, a0 as OptInLevel, j0 as OptInLevelWithLiterals, fy as Option, e9 as OptionDesign, e4 as OptionLayout, h0 as OrCondition, c2 as OrderDetails, eJ as OrderedListData, an as Orientation, jn as OrientationWithLiterals, aP as Origin, jP as OriginWithLiterals, bt as OverrideEntityType, bG as OverrideEntityTypeEnumOverrideEntityType, kG as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, kt as OverrideEntityTypeWithLiterals, dD as PDFSettings, gw as PageNavigationOptions, d_ as ParagraphData, h9 as PassFailMessages, fh as Password, gl as Payment, bd as PaymentComponentType, gm as PaymentComponentTypeOptionsOneOf, kd as PaymentComponentTypeWithLiterals, fJ as PaymentInput, cO as PaymentType, e0 as Permissions, d9 as PhoneConstraints, bP as PhoneDeliverabilityStatus, kP as PhoneDeliverabilityStatusWithLiterals, g6 as PhoneInfo, bn as PhoneInfoTag, kn as PhoneInfoTagWithLiterals, fb as PhoneInput, g2 as PhoneOptions, bO as PhoneTag, kO as PhoneTagWithLiterals, aE as Placement, jE as PlacementWithLiterals, ex as PlaybackOptions, dn as PluginContainerData, ae as PluginContainerDataAlignment, je as PluginContainerDataAlignmentWithLiterals, dp as PluginContainerDataWidth, dq as PluginContainerDataWidthDataOneOf, ea as Poll, d$ as PollData, eb as PollDataLayout, e8 as PollDesign, e6 as PollDesignBackground, e7 as PollDesignBackgroundBackgroundOneOf, ay as PollDesignBackgroundType, jy as PollDesignBackgroundTypeWithLiterals, e3 as PollLayout, ax as PollLayoutDirection, jx as PollLayoutDirectionWithLiterals, aw as PollLayoutType, jw as PollLayoutTypeWithLiterals, e1 as PollOption, gR as PopupOptions, aB as Position, jB as PositionWithLiterals, gB as PostSubmissionTriggers, cM as PredefinedValidation, cN as PredefinedValidationFormatOptionsOneOf, a6 as PriceType, j6 as PriceTypeWithLiterals, ev as PricingData, bT as PrivacyStatus, kT as PrivacyStatusWithLiterals, hF as PrivateTags, hG as PrivateTagsTagList, cS as Product, fF as ProductCheckboxGroup, fG as ProductCheckboxGroupOption, cT as ProductPriceOptionsOneOf, a5 as ProductType, j5 as ProductTypeWithLiterals, hB as ProfileInfo, fs as PropertiesType, b9 as PropertiesTypeEnum, k9 as PropertiesTypeEnumWithLiterals, ft as PropertiesTypePropertiesTypeOptionsOneOf, c3 as PublicTags, cP as QuantityLimit, id as QuerySubmissionRequest, iq as QuerySubmissionsByNamespaceForExportRequest, ir as QuerySubmissionsByNamespaceForExportResponse, io as QuerySubmissionsByNamespaceRequest, ip as QuerySubmissionsByNamespaceResponse, fw as QuizFieldSettings, h6 as QuizSettings, h7 as QuizSettingsPassingCriteriaOneOf, h8 as QuizSettingsResultsDisplayOptionsOneOf, f5 as RadioGroup, f6 as RadioGroupOption, fm as RatingInput, hw as Recipient, gQ as RedirectOptions, dw as Rel, i4 as RemoveSubmissionFromTrashBinRequest, i5 as RemoveSubmissionFromTrashBinResponse, c7 as RemovedSubmissionFromTrash, fQ as Repeater, bB as RequiredIndicator, bC as RequiredIndicatorPlacement, kC as RequiredIndicatorPlacementWithLiterals, gM as RequiredIndicatorProperties, kB as RequiredIndicatorWithLiterals, gU as RequiredOptions, aD as Resizing, jD as ResizingWithLiterals, aU as ResponsivenessBehaviour, jU as ResponsivenessBehaviourWithLiterals, ce as RestoreInfo, i3 as RestoreSubmissionFromTrashBinRequest, bI as ResultsDisplay, kI as ResultsDisplayWithLiterals, et as RibbonStyles, dd as RichContent, gv as RichContentOptions, bU as Role, kU as RoleWithLiterals, gT as Rule, h2 as RuleFormOverride, h3 as RuleFormOverrideEntityTypeOptionsOneOf, aW as Scaling, jW as ScalingWithLiterals, gn as Scheduling, bh as SchedulingComponentType, go as SchedulingComponentTypeOptionsOneOf, kh as SchedulingComponentTypeWithLiterals, ik as SearchDetails, il as SearchSubmissionsByNamespaceForExportRequest, im as SearchSubmissionsByNamespaceForExportResponse, ih as SearchSubmissionsByNamespaceRequest, fX as Section, fg as ServiceOption, fB as ServicesCheckboxGroup, ff as ServicesDropdown, hD as SessionInfo, e2 as Settings, eT as ShapeData, eU as ShapeDataStyles, fE as Signature, e_ as SmartBlockCellData, eZ as SmartBlockData, a$ as SmartBlockDataType, j$ as SmartBlockDataTypeWithLiterals, bX as SortOrder, kX as SortOrderWithLiterals, ig as Sorting, ar as Source, jr as SourceWithLiterals, bA as SpamFilterProtectionLevel, kA as SpamFilterProtectionLevelWithLiterals, dr as Spoiler, el as SpoilerData, bk as StaffStrategySelection, kk as StaffStrategySelectionWithLiterals, hv as StandardDetails, bZ as Status, kZ as StatusWithLiterals, gx as Step, dj as Stop, hs as StreetAddress, a9 as StringComponentType, j9 as StringComponentTypeWithLiterals, d5 as StringCorrectAnswersList, cs as StringErrorMessages, db as StringQuizFieldSettings, d6 as StringType, cw as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, j2 as StringTypeFormatEnumFormatWithLiterals, d7 as StringTypeFormatOptionsOneOf, cx as StringTypePhoneConstraints, cy as StringTypeValidationMessages, dt as Styles, dU as StylesBorder, as as StylesPosition, js as StylesPositionWithLiterals, hu as Subdivision, bR as SubdivisionType, kR as SubdivisionTypeWithLiterals, bK as SubmissionAccess, kK as SubmissionAccessWithLiterals, c8 as SubmissionContactMapped, ca as SubmissionContactMappingSkipped, iA as SubmissionDocument, iB as SubmissionDocumentDocumentOneOf, b_ as SubmissionErrorType, k_ as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, i$ as SubmissionStatusWithLiterals, iS as SubmissionValidationError, iT as SubmissionValidationErrorErrorMessageOneOf, iR as SubmissionValidationErrors, hJ as SubmissionValidationErrorsDetails, iY as SubmissionsQueryResult, hg as SubmitContactResponse, gN as SubmitSettings, gO as SubmitSettingsSubmitSuccessActionOptionsOneOf, bE as SubmitSuccessAction, kE as SubmitSuccessActionWithLiterals, b$ as Submitter, c0 as SubmitterSubmitterOneOf, bq as SubscriptionChannel, kq as SubscriptionChannelWithLiterals, g9 as SubscriptionInfo, by as SubscriptionInfoOptInLevel, ky as SubscriptionInfoOptInLevelWithLiterals, bM as SubscriptionStatus, kM as SubscriptionStatusWithLiterals, eD as TableCellData, eB as TableData, bo as Tag, c4 as TagList, ko as TagWithLiterals, h4 as Tags, fA as TagsOption, h5 as TagsTagList, bD as Target, kD as TargetWithLiterals, ah as TextAlignment, jh as TextAlignmentWithLiterals, ed as TextData, dc as TextInput, f1 as TextNodeStyle, dy as TextStyle, gP as ThankYouMessageOptions, dN as Thumbnails, ap as ThumbnailsAlignment, jp as ThumbnailsAlignmentWithLiterals, fd as TimeInput, eY as TocData, bf as Type, kf as TypeWithLiterals, iK as UpdateExtendedFieldsRequest, hY as UpdateSubmissionRequest, hZ as UpdateSubmissionResponse, bc as UploadFileFormat, kc as UploadFileFormatWithLiterals, gC as UpsertContact, hf as UpsertContactFromSubmissionRequest, hh as UpsertContactResponse, hC as UserInfo, gD as V4FormFieldContactInfo, gE as V4FormFieldContactInfoAdditionalInfoOneOf, iO as ValidateFormSubmissionRequest, cZ as Validation, hK as ValidationError, a4 as ValidationFormat, j4 as ValidationFormatWithLiterals, da as ValidationMessages, c_ as ValidationValidationOneOf, aL as VerticalAlignment, aT as VerticalAlignmentAlignment, jT as VerticalAlignmentAlignmentWithLiterals, jL as VerticalAlignmentWithLiterals, dH as Video, g1 as VideoConferenceOptions, ew as VideoData, al as ViewMode, jl as ViewModeWithLiterals, au as ViewRole, ju as ViewRoleWithLiterals, av as VoteRole, jv as VoteRoleWithLiterals, a1 as WebhookIdentityType, j1 as WebhookIdentityTypeWithLiterals, aj as Width, ad as WidthType, jd as WidthTypeWithLiterals, jj as WidthWithLiterals, gj as WixFile, bb as WixFileComponentType, gk as WixFileComponentTypeOptionsOneOf, kb as WixFileComponentTypeWithLiterals, gg as _Array, gh as _ArrayComponentTypeOptionsOneOf, ge as _Boolean, gf as _BooleanComponentTypeOptionsOneOf, gc as _Number, gd as _NumberComponentTypeOptionsOneOf, gi as _Object, ga as _String, gb as _StringComponentTypeOptionsOneOf, i_ as utils } from './forms-v4-submission-submissions.universal-MYwdZTUH.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|