@wix/auto_sdk_forms_submissions 1.0.103 → 1.0.104
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-DSP0qe-E.d.ts → forms-v4-submission-submissions.universal-DR-8_Ah8.d.ts} +220 -31
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +70 -12
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +70 -12
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +221 -32
- package/build/cjs/meta.js +70 -12
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-DSP0qe-E.d.mts → forms-v4-submission-submissions.universal-DR-8_Ah8.d.mts} +220 -31
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +63 -12
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +63 -12
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +221 -32
- package/build/es/meta.mjs +63 -12
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-Bh2R7TwZ.d.ts → forms-v4-submission-submissions.universal-2yoJloqj.d.ts} +220 -31
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +70 -12
- 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 +70 -12
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +221 -32
- package/build/internal/cjs/meta.js +70 -12
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-Bh2R7TwZ.d.mts → forms-v4-submission-submissions.universal-2yoJloqj.d.mts} +220 -31
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +63 -12
- 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 +63 -12
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +221 -32
- package/build/internal/es/meta.mjs +63 -12
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -187,6 +187,13 @@ interface TagList {
|
|
|
187
187
|
*/
|
|
188
188
|
tagIds?: string[];
|
|
189
189
|
}
|
|
190
|
+
interface AppointmentDetails {
|
|
191
|
+
/**
|
|
192
|
+
* ID of the staff member assigned to the appointment.
|
|
193
|
+
* @format GUID
|
|
194
|
+
*/
|
|
195
|
+
staffMemberId?: string | null;
|
|
196
|
+
}
|
|
190
197
|
interface FormSubmissionStatusUpdatedEvent {
|
|
191
198
|
/** Updated submission. */
|
|
192
199
|
submission?: FormSubmission;
|
|
@@ -1516,6 +1523,8 @@ interface Node extends NodeDataOneOf {
|
|
|
1516
1523
|
layoutCellData?: LayoutCellData;
|
|
1517
1524
|
/** Data for a shape node. */
|
|
1518
1525
|
shapeData?: ShapeData;
|
|
1526
|
+
/** Data for a card node. */
|
|
1527
|
+
cardData?: CardData;
|
|
1519
1528
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
1520
1529
|
type?: NodeTypeWithLiterals;
|
|
1521
1530
|
/** Node ID. */
|
|
@@ -1585,6 +1594,8 @@ interface NodeDataOneOf {
|
|
|
1585
1594
|
layoutCellData?: LayoutCellData;
|
|
1586
1595
|
/** Data for a shape node. */
|
|
1587
1596
|
shapeData?: ShapeData;
|
|
1597
|
+
/** Data for a card node. */
|
|
1598
|
+
cardData?: CardData;
|
|
1588
1599
|
}
|
|
1589
1600
|
declare enum NodeType {
|
|
1590
1601
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1621,10 +1632,11 @@ declare enum NodeType {
|
|
|
1621
1632
|
CAPTION = "CAPTION",
|
|
1622
1633
|
LAYOUT = "LAYOUT",
|
|
1623
1634
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
1624
|
-
SHAPE = "SHAPE"
|
|
1635
|
+
SHAPE = "SHAPE",
|
|
1636
|
+
CARD = "CARD"
|
|
1625
1637
|
}
|
|
1626
1638
|
/** @enumType */
|
|
1627
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
|
|
1639
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD';
|
|
1628
1640
|
interface NodeStyle {
|
|
1629
1641
|
/** The top padding value in pixels. */
|
|
1630
1642
|
paddingTop?: string | null;
|
|
@@ -1645,6 +1657,55 @@ interface ButtonData {
|
|
|
1645
1657
|
/** Button link details. */
|
|
1646
1658
|
link?: Link;
|
|
1647
1659
|
}
|
|
1660
|
+
/** Background type */
|
|
1661
|
+
declare enum BackgroundType {
|
|
1662
|
+
/** Solid color background */
|
|
1663
|
+
COLOR = "COLOR",
|
|
1664
|
+
/** Gradient background */
|
|
1665
|
+
GRADIENT = "GRADIENT"
|
|
1666
|
+
}
|
|
1667
|
+
/** @enumType */
|
|
1668
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
1669
|
+
interface Gradient {
|
|
1670
|
+
/** Gradient type. */
|
|
1671
|
+
type?: GradientTypeWithLiterals;
|
|
1672
|
+
/**
|
|
1673
|
+
* Color stops for the gradient.
|
|
1674
|
+
* @maxSize 1000
|
|
1675
|
+
*/
|
|
1676
|
+
stops?: Stop[];
|
|
1677
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
1678
|
+
angle?: number | null;
|
|
1679
|
+
/**
|
|
1680
|
+
* Horizontal center position for radial gradient (0-100).
|
|
1681
|
+
* @max 100
|
|
1682
|
+
*/
|
|
1683
|
+
centerX?: number | null;
|
|
1684
|
+
/**
|
|
1685
|
+
* Vertical center position for radial gradient (0-100).
|
|
1686
|
+
* @max 100
|
|
1687
|
+
*/
|
|
1688
|
+
centerY?: number | null;
|
|
1689
|
+
}
|
|
1690
|
+
/** Gradient type. */
|
|
1691
|
+
declare enum GradientType {
|
|
1692
|
+
/** Linear gradient. */
|
|
1693
|
+
LINEAR = "LINEAR",
|
|
1694
|
+
/** Radial gradient. */
|
|
1695
|
+
RADIAL = "RADIAL"
|
|
1696
|
+
}
|
|
1697
|
+
/** @enumType */
|
|
1698
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
1699
|
+
/** A single color stop in the gradient. */
|
|
1700
|
+
interface Stop {
|
|
1701
|
+
/**
|
|
1702
|
+
* Stop color as hex value.
|
|
1703
|
+
* @format COLOR_HEX
|
|
1704
|
+
*/
|
|
1705
|
+
color?: string | null;
|
|
1706
|
+
/** Stop position (0-1). */
|
|
1707
|
+
position?: number | null;
|
|
1708
|
+
}
|
|
1648
1709
|
interface Border {
|
|
1649
1710
|
/**
|
|
1650
1711
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
@@ -1674,6 +1735,18 @@ interface Colors {
|
|
|
1674
1735
|
*/
|
|
1675
1736
|
background?: string | null;
|
|
1676
1737
|
}
|
|
1738
|
+
/** Background styling (color or gradient) */
|
|
1739
|
+
interface Background {
|
|
1740
|
+
/** Background type. */
|
|
1741
|
+
type?: BackgroundTypeWithLiterals;
|
|
1742
|
+
/**
|
|
1743
|
+
* Background color as a hexadecimal value.
|
|
1744
|
+
* @format COLOR_HEX
|
|
1745
|
+
*/
|
|
1746
|
+
color?: string | null;
|
|
1747
|
+
/** Gradient configuration. */
|
|
1748
|
+
gradient?: Gradient;
|
|
1749
|
+
}
|
|
1677
1750
|
interface PluginContainerData {
|
|
1678
1751
|
/** The width of the node when it's displayed. */
|
|
1679
1752
|
width?: PluginContainerDataWidth;
|
|
@@ -1794,17 +1867,23 @@ interface Styles {
|
|
|
1794
1867
|
*/
|
|
1795
1868
|
textColorHover?: string | null;
|
|
1796
1869
|
/**
|
|
1797
|
-
*
|
|
1870
|
+
* Deprecated: Use `background` instead.
|
|
1798
1871
|
* @format COLOR_HEX
|
|
1872
|
+
* @deprecated
|
|
1799
1873
|
*/
|
|
1800
1874
|
backgroundColor?: string | null;
|
|
1801
1875
|
/**
|
|
1802
|
-
*
|
|
1876
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
1803
1877
|
* @format COLOR_HEX
|
|
1878
|
+
* @deprecated
|
|
1804
1879
|
*/
|
|
1805
1880
|
backgroundColorHover?: string | null;
|
|
1806
1881
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
1807
1882
|
buttonSize?: string | null;
|
|
1883
|
+
/** Background styling (color or gradient). */
|
|
1884
|
+
background?: Background;
|
|
1885
|
+
/** Background styling for hover state (color or gradient). */
|
|
1886
|
+
backgroundHover?: Background;
|
|
1808
1887
|
}
|
|
1809
1888
|
interface Link extends LinkDataOneOf {
|
|
1810
1889
|
/** The absolute URL for the linked document. */
|
|
@@ -2441,7 +2520,7 @@ interface OptionLayout {
|
|
|
2441
2520
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
2442
2521
|
enableImage?: boolean | null;
|
|
2443
2522
|
}
|
|
2444
|
-
declare enum
|
|
2523
|
+
declare enum PollDesignBackgroundType {
|
|
2445
2524
|
/** Color background type */
|
|
2446
2525
|
COLOR = "COLOR",
|
|
2447
2526
|
/** Image background type */
|
|
@@ -2450,8 +2529,8 @@ declare enum BackgroundType {
|
|
|
2450
2529
|
GRADIENT = "GRADIENT"
|
|
2451
2530
|
}
|
|
2452
2531
|
/** @enumType */
|
|
2453
|
-
type
|
|
2454
|
-
interface
|
|
2532
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
2533
|
+
interface BackgroundGradient {
|
|
2455
2534
|
/** The gradient angle in degrees. */
|
|
2456
2535
|
angle?: number | null;
|
|
2457
2536
|
/**
|
|
@@ -2465,7 +2544,7 @@ interface Gradient {
|
|
|
2465
2544
|
*/
|
|
2466
2545
|
lastColor?: string | null;
|
|
2467
2546
|
}
|
|
2468
|
-
interface
|
|
2547
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
2469
2548
|
/**
|
|
2470
2549
|
* The background color as a hexademical value.
|
|
2471
2550
|
* @format COLOR_HEX
|
|
@@ -2474,12 +2553,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
2474
2553
|
/** An image to use for the background. */
|
|
2475
2554
|
image?: Media;
|
|
2476
2555
|
/** Details for a gradient background. */
|
|
2477
|
-
gradient?:
|
|
2556
|
+
gradient?: BackgroundGradient;
|
|
2478
2557
|
/** Background type. For each option, include the relevant details. */
|
|
2479
|
-
type?:
|
|
2558
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
2480
2559
|
}
|
|
2481
2560
|
/** @oneof */
|
|
2482
|
-
interface
|
|
2561
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
2483
2562
|
/**
|
|
2484
2563
|
* The background color as a hexademical value.
|
|
2485
2564
|
* @format COLOR_HEX
|
|
@@ -2488,11 +2567,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
2488
2567
|
/** An image to use for the background. */
|
|
2489
2568
|
image?: Media;
|
|
2490
2569
|
/** Details for a gradient background. */
|
|
2491
|
-
gradient?:
|
|
2570
|
+
gradient?: BackgroundGradient;
|
|
2492
2571
|
}
|
|
2493
2572
|
interface PollDesign {
|
|
2494
2573
|
/** Background styling. */
|
|
2495
|
-
background?:
|
|
2574
|
+
background?: PollDesignBackground;
|
|
2496
2575
|
/** Border radius in pixels. */
|
|
2497
2576
|
borderRadius?: number | null;
|
|
2498
2577
|
}
|
|
@@ -3175,12 +3254,13 @@ interface CaptionData {
|
|
|
3175
3254
|
}
|
|
3176
3255
|
interface LayoutData {
|
|
3177
3256
|
/**
|
|
3178
|
-
*
|
|
3257
|
+
* Deprecated: Use `background` instead.
|
|
3179
3258
|
* @format COLOR_HEX
|
|
3259
|
+
* @deprecated
|
|
3180
3260
|
*/
|
|
3181
3261
|
backgroundColor?: string | null;
|
|
3182
3262
|
/** Background image. */
|
|
3183
|
-
backgroundImage?:
|
|
3263
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
3184
3264
|
/**
|
|
3185
3265
|
* Border color as a hexadecimal value.
|
|
3186
3266
|
* @format COLOR_HEX
|
|
@@ -3188,15 +3268,16 @@ interface LayoutData {
|
|
|
3188
3268
|
borderColor?: string | null;
|
|
3189
3269
|
/** Border width in pixels. */
|
|
3190
3270
|
borderWidth?: number | null;
|
|
3191
|
-
/** Border */
|
|
3271
|
+
/** Border radius in pixels. */
|
|
3192
3272
|
borderRadius?: number | null;
|
|
3193
3273
|
/**
|
|
3194
|
-
*
|
|
3274
|
+
* Deprecated: Use `backdrop` instead.
|
|
3195
3275
|
* @format COLOR_HEX
|
|
3276
|
+
* @deprecated
|
|
3196
3277
|
*/
|
|
3197
3278
|
backdropColor?: string | null;
|
|
3198
|
-
/** Backdrop image.
|
|
3199
|
-
backdropImage?:
|
|
3279
|
+
/** Backdrop image. */
|
|
3280
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
3200
3281
|
/** Backdrop top padding. */
|
|
3201
3282
|
backdropPaddingTop?: number | null;
|
|
3202
3283
|
/** Backdrop bottom padding */
|
|
@@ -3220,8 +3301,12 @@ interface LayoutData {
|
|
|
3220
3301
|
designTarget?: DesignTargetWithLiterals;
|
|
3221
3302
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
3222
3303
|
banner?: Banner;
|
|
3304
|
+
/** Background styling (color or gradient). */
|
|
3305
|
+
background?: LayoutDataBackground;
|
|
3306
|
+
/** Backdrop styling (color or gradient). */
|
|
3307
|
+
backdrop?: Backdrop;
|
|
3223
3308
|
}
|
|
3224
|
-
declare enum
|
|
3309
|
+
declare enum ImageScalingScaling {
|
|
3225
3310
|
/** Auto image scaling */
|
|
3226
3311
|
AUTO = "AUTO",
|
|
3227
3312
|
/** Contain image scaling */
|
|
@@ -3230,7 +3315,7 @@ declare enum Scaling {
|
|
|
3230
3315
|
COVER = "COVER"
|
|
3231
3316
|
}
|
|
3232
3317
|
/** @enumType */
|
|
3233
|
-
type
|
|
3318
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
3234
3319
|
declare enum LayoutDataImagePosition {
|
|
3235
3320
|
/** Image positioned at the center */
|
|
3236
3321
|
CENTER = "CENTER",
|
|
@@ -3261,13 +3346,31 @@ declare enum Origin {
|
|
|
3261
3346
|
}
|
|
3262
3347
|
/** @enumType */
|
|
3263
3348
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
3264
|
-
|
|
3349
|
+
/** Background type */
|
|
3350
|
+
declare enum LayoutDataBackgroundType {
|
|
3351
|
+
/** Solid color background */
|
|
3352
|
+
COLOR = "COLOR",
|
|
3353
|
+
/** Gradient background */
|
|
3354
|
+
GRADIENT = "GRADIENT"
|
|
3355
|
+
}
|
|
3356
|
+
/** @enumType */
|
|
3357
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
3358
|
+
/** Backdrop type */
|
|
3359
|
+
declare enum BackdropType {
|
|
3360
|
+
/** Solid color backdrop */
|
|
3361
|
+
COLOR = "COLOR",
|
|
3362
|
+
/** Gradient backdrop */
|
|
3363
|
+
GRADIENT = "GRADIENT"
|
|
3364
|
+
}
|
|
3365
|
+
/** @enumType */
|
|
3366
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
3367
|
+
interface LayoutDataBackgroundImage {
|
|
3265
3368
|
/** Background image. */
|
|
3266
3369
|
media?: Media;
|
|
3267
3370
|
/** Background image opacity. */
|
|
3268
3371
|
opacity?: number | null;
|
|
3269
3372
|
/** Background image scaling. */
|
|
3270
|
-
scaling?:
|
|
3373
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
3271
3374
|
/** Position of background. Defaults to `CENTER`. */
|
|
3272
3375
|
position?: LayoutDataImagePositionWithLiterals;
|
|
3273
3376
|
}
|
|
@@ -3301,6 +3404,30 @@ interface Banner {
|
|
|
3301
3404
|
/** Origin of the banner */
|
|
3302
3405
|
origin?: OriginWithLiterals;
|
|
3303
3406
|
}
|
|
3407
|
+
/** Background styling (color or gradient) */
|
|
3408
|
+
interface LayoutDataBackground {
|
|
3409
|
+
/** Background type. */
|
|
3410
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
3411
|
+
/**
|
|
3412
|
+
* Background color as a hexadecimal value.
|
|
3413
|
+
* @format COLOR_HEX
|
|
3414
|
+
*/
|
|
3415
|
+
color?: string | null;
|
|
3416
|
+
/** Gradient configuration. */
|
|
3417
|
+
gradient?: Gradient;
|
|
3418
|
+
}
|
|
3419
|
+
/** Backdrop styling (color or gradient) */
|
|
3420
|
+
interface Backdrop {
|
|
3421
|
+
/** Backdrop type. */
|
|
3422
|
+
type?: BackdropTypeWithLiterals;
|
|
3423
|
+
/**
|
|
3424
|
+
* Backdrop color as a hexadecimal value.
|
|
3425
|
+
* @format COLOR_HEX
|
|
3426
|
+
*/
|
|
3427
|
+
color?: string | null;
|
|
3428
|
+
/** Gradient configuration. */
|
|
3429
|
+
gradient?: Gradient;
|
|
3430
|
+
}
|
|
3304
3431
|
interface LayoutCellData {
|
|
3305
3432
|
/** Size of the cell in 12 columns grid. */
|
|
3306
3433
|
colSpan?: number | null;
|
|
@@ -3322,6 +3449,75 @@ interface ShapeDataStyles {
|
|
|
3322
3449
|
/** Map of original color keys to their new color values. */
|
|
3323
3450
|
colors?: Record<string, string>;
|
|
3324
3451
|
}
|
|
3452
|
+
interface CardData {
|
|
3453
|
+
/** Background styling (color or gradient). */
|
|
3454
|
+
background?: CardDataBackground;
|
|
3455
|
+
/** Background image. */
|
|
3456
|
+
backgroundImage?: BackgroundImage;
|
|
3457
|
+
}
|
|
3458
|
+
declare enum Scaling {
|
|
3459
|
+
/** Auto image scaling */
|
|
3460
|
+
AUTO = "AUTO",
|
|
3461
|
+
/** Contain image scaling */
|
|
3462
|
+
CONTAIN = "CONTAIN",
|
|
3463
|
+
/** Cover image scaling */
|
|
3464
|
+
COVER = "COVER"
|
|
3465
|
+
}
|
|
3466
|
+
/** @enumType */
|
|
3467
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
3468
|
+
declare enum ImagePositionPosition {
|
|
3469
|
+
/** Image positioned at the center */
|
|
3470
|
+
CENTER = "CENTER",
|
|
3471
|
+
/** Image positioned on the left */
|
|
3472
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
3473
|
+
/** Image positioned on the right */
|
|
3474
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
3475
|
+
/** Image positioned at the center top */
|
|
3476
|
+
TOP = "TOP",
|
|
3477
|
+
/** Image positioned at the top left */
|
|
3478
|
+
TOP_LEFT = "TOP_LEFT",
|
|
3479
|
+
/** Image positioned at the top right */
|
|
3480
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
3481
|
+
/** Image positioned at the center bottom */
|
|
3482
|
+
BOTTOM = "BOTTOM",
|
|
3483
|
+
/** Image positioned at the bottom left */
|
|
3484
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
3485
|
+
/** Image positioned at the bottom right */
|
|
3486
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
3487
|
+
}
|
|
3488
|
+
/** @enumType */
|
|
3489
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
3490
|
+
/** Background type */
|
|
3491
|
+
declare enum CardDataBackgroundType {
|
|
3492
|
+
/** Solid color background */
|
|
3493
|
+
COLOR = "COLOR",
|
|
3494
|
+
/** Gradient background */
|
|
3495
|
+
GRADIENT = "GRADIENT"
|
|
3496
|
+
}
|
|
3497
|
+
/** @enumType */
|
|
3498
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
3499
|
+
/** Background styling (color or gradient) */
|
|
3500
|
+
interface CardDataBackground {
|
|
3501
|
+
/** Background type. */
|
|
3502
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
3503
|
+
/**
|
|
3504
|
+
* Background color as a hexadecimal value.
|
|
3505
|
+
* @format COLOR_HEX
|
|
3506
|
+
*/
|
|
3507
|
+
color?: string | null;
|
|
3508
|
+
/** Gradient configuration. */
|
|
3509
|
+
gradient?: Gradient;
|
|
3510
|
+
}
|
|
3511
|
+
interface BackgroundImage {
|
|
3512
|
+
/** Background image. */
|
|
3513
|
+
media?: Media;
|
|
3514
|
+
/** Background image opacity. */
|
|
3515
|
+
opacity?: number | null;
|
|
3516
|
+
/** Background image scaling. */
|
|
3517
|
+
scaling?: ScalingWithLiterals;
|
|
3518
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
3519
|
+
position?: ImagePositionPositionWithLiterals;
|
|
3520
|
+
}
|
|
3325
3521
|
interface Metadata {
|
|
3326
3522
|
/** Schema version. */
|
|
3327
3523
|
version?: number;
|
|
@@ -5882,13 +6078,6 @@ declare enum IdentityType {
|
|
|
5882
6078
|
}
|
|
5883
6079
|
/** @enumType */
|
|
5884
6080
|
type IdentityTypeWithLiterals = IdentityType | 'UNKNOWN' | 'CONTACT' | 'MEMBER' | 'NOT_AUTHENTICATED_MEMBER';
|
|
5885
|
-
interface AppointmentDetails {
|
|
5886
|
-
/**
|
|
5887
|
-
* ID of the staff member assigned to the appointment.
|
|
5888
|
-
* @format GUID
|
|
5889
|
-
*/
|
|
5890
|
-
staffMemberId?: string | null;
|
|
5891
|
-
}
|
|
5892
6081
|
interface CreateSubmissionRequest {
|
|
5893
6082
|
/** Submission to create. */
|
|
5894
6083
|
submission: FormSubmission;
|
|
@@ -7946,4 +8135,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7946
8135
|
fieldsToValidate?: string[];
|
|
7947
8136
|
}
|
|
7948
8137
|
|
|
7949
|
-
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, Type as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, WidthType as a7, PluginContainerDataAlignment as a8, ButtonDataType as a9, CardStylesAlignment as aA, Layout as aB, AppType as aC, InitialExpandedItems as aD, Direction as aE, VerticalAlignment as aF, NullValue as aG, Scaling as aH, LayoutDataImagePosition as aI, Origin as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, DesignTarget as aM, ImagePosition as aN, Alignment as aO, ImageFit as aP, NumberOfColumns as aQ, FirstDayOfWeek as aR, NumberComponentType as aS, BooleanComponentType as aT, ItemType as aU, PropertiesTypeEnum as aV, ArrayComponentType as aW, WixFileComponentType as aX, UploadFileFormat as aY, PaymentComponentType as aZ, ComponentType as a_, LinkTarget as aa, TextAlignment as ab, LineStyle as ac, Width as ad, DividerDataAlignment as ae, ViewMode as af, LayoutType as ag, Orientation as ah, Crop as ai, ThumbnailsAlignment as aj, GIFType as ak, Source as al, StylesPosition as am, MapType as an, ViewRole as ao, VoteRole as ap, PollLayoutType as aq, PollLayoutDirection as ar, BackgroundType as as, DecorationType as at, FontType as au, Position as av, AspectRatio as aw, Resizing as ax, Placement as ay, CardStylesType as az, type CreateSubmissionApplicationErrors as b, type FormFieldStringTypeFormatOptionsOneOf as b$, ObjectArrayComponentType as b0, SchedulingComponentType as b1, Format as b2, MeetingType as b3, StaffStrategySelection as b4, InputType as b5, EmailInfoTag as b6, PhoneInfoTag as b7, Tag as b8, ConfirmationLevel as b9, type Submitter as bA, type SubmitterSubmitterOneOf as bB, type ExtendedFields as bC, type OrderDetails as bD, type PublicTags as bE, type TagList as bF, type FormSubmissionStatusUpdatedEvent as bG, type RemovedSubmissionFromTrash as bH, type SubmissionContactMapped as bI, type MarketingSubscriptionDetails as bJ, type SubmissionContactMappingSkipped as bK, type DomainEvent as bL, type DomainEventBodyOneOf as bM, type EntityCreatedEvent as bN, type RestoreInfo as bO, type EntityUpdatedEvent as bP, type EntityDeletedEvent as bQ, type ActionEvent as bR, type MessageEnvelope as bS, type IdentificationData as bT, type IdentificationDataIdOneOf as bU, type AccountInfo as bV, type CreateCheckoutFromSubmissionRequest as bW, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bX, type Form as bY, type FormField as bZ, type FormFieldStringType as b_, SubscriptionChannel as ba, ContactField as bb, DisplayFieldType as bc, OverrideEntityType as bd, Kind as be, FormFieldContactInfoEmailInfoTag as bf, FormFieldContactInfoPhoneInfoTag as bg, AddressInfoTag as bh, SubscriptionInfoOptInLevel as bi, FormFieldContactInfoContactField as bj, SpamFilterProtectionLevel as bk, RequiredIndicator as bl, RequiredIndicatorPlacement as bm, Target as bn, SubmitSuccessAction as bo, ChangeableProperty as bp, OverrideEntityTypeEnumOverrideEntityType as bq, Operator as br, ResultsDisplay as bs, ContactAutofill as bt, IdentityType as bu, ErrorType as bv, SortOrder as bw, Mode as bx, Status as by, SubmissionErrorType as bz, type CreateSubmissionValidationErrors as c, type LinkDataOneOf as c$, type StringErrorMessages as c0, type StringTypeDateTimeConstraints as c1, type DateTimeAdvancedConstraints as c2, type Availability as c3, type DateRange as c4, type StringTypePhoneConstraints as c5, type StringTypeValidationMessages as c6, type FormFieldNumberType as c7, type NumberErrorMessages as c8, type IntegerType as c9, type NestedFormOverrides as cA, type Field as cB, type FieldFieldTypeOptionsOneOf as cC, type InputField as cD, type InputFieldInputTypeOptionsOneOf as cE, type StringCorrectAnswersList as cF, type StringType as cG, type StringTypeFormatOptionsOneOf as cH, type DateTimeConstraints as cI, type PhoneConstraints as cJ, type ValidationMessages as cK, type StringQuizFieldSettings as cL, type TextInput as cM, type RichContent as cN, type Node as cO, type NodeDataOneOf as cP, type NodeStyle as cQ, type ButtonData as cR, type Border as cS, type Colors as cT, type PluginContainerData as cU, type PluginContainerDataWidth as cV, type PluginContainerDataWidthDataOneOf as cW, type Spoiler as cX, type Height as cY, type Styles as cZ, type Link as c_, type FormFieldBooleanType as ca, type BooleanErrorMessages as cb, type FormFieldArrayType as cc, type FormFieldObjectType as cd, type ObjectTypePropertiesType as ce, type ObjectTypePropertiesTypePropertiesTypeOneOf as cf, type ObjectErrorMessages as cg, type ArrayTypeArrayItems as ch, type ArrayTypeArrayItemsItemsOneOf as ci, type ArrayErrorMessages as cj, type PredefinedValidation as ck, type PredefinedValidationFormatOptionsOneOf as cl, type PaymentType as cm, type QuantityLimit as cn, type FixedPriceOptions as co, type DynamicPriceOptions as cp, type Product as cq, type ProductPriceOptionsOneOf as cr, type MultilineAddressValidation as cs, type FieldOverrides as ct, type FieldsOverrides as cu, type ObjectArrayType as cv, type NestedFormFieldOverrides as cw, type Validation as cx, type ValidationValidationOneOf as cy, type DataExtensionsDetails as cz, type UpdateSubmission as d, type CardStyles as d$, type Rel as d0, type CodeBlockData as d1, type TextStyle as d2, type DividerData as d3, type FileData as d4, type FileSource as d5, type FileSourceDataOneOf as d6, type PDFSettings as d7, type GalleryData as d8, type Media as d9, type PollLayout as dA, type OptionLayout as dB, type Gradient as dC, type Background as dD, type BackgroundBackgroundOneOf as dE, type PollDesign as dF, type OptionDesign as dG, type Poll as dH, type PollDataLayout as dI, type Design as dJ, type TextData as dK, type Decoration as dL, type DecorationDataOneOf as dM, type AnchorData as dN, type ColorData as dO, type LinkData as dP, type MentionData as dQ, type FontSizeData as dR, type SpoilerData as dS, type FontFamilyData as dT, type AppEmbedData as dU, type AppEmbedDataAppDataOneOf as dV, type BookingData as dW, type EventData as dX, type ButtonStyles as dY, type ImageStyles as dZ, type RibbonStyles as d_, type Image as da, type Video as db, type Item as dc, type ItemDataOneOf as dd, type GalleryOptions as de, type GalleryOptionsLayout as df, type ItemStyle as dg, type Thumbnails as dh, type GIFData as di, type GIF as dj, type HeadingData as dk, type HTMLData as dl, type HTMLDataDataOneOf as dm, type ImageData as dn, type StylesBorder as dp, type ImageDataStyles as dq, type LinkPreviewData as dr, type LinkPreviewDataStyles as ds, type MapData as dt, type MapSettings as du, type ParagraphData as dv, type PollData as dw, type Permissions as dx, type PollOption as dy, type Settings as dz, type UpdateSubmissionValidationErrors as e, type FileType as e$, type PricingData as e0, type VideoData as e1, type PlaybackOptions as e2, type EmbedData as e3, type Oembed as e4, type CollapsibleListData as e5, type TableData as e6, type Dimensions as e7, type TableCellData as e8, type CellStyle as e9, type PhoneInput as eA, type DateInput as eB, type TimeInput as eC, type DatePicker as eD, type ServicesDropdown as eE, type ServiceOption as eF, type Password as eG, type NumberCorrectAnswersList as eH, type NumberType as eI, type NumberQuizFieldSettings as eJ, type NumberInput as eK, type RatingInput as eL, type BooleanType as eM, type Checkbox as eN, type CorrectAnswersList as eO, type ArrayType as eP, type ObjectType as eQ, type PropertiesType as eR, type PropertiesTypePropertiesTypeOptionsOneOf as eS, type ArrayItems as eT, type ArrayItemsItemTypeOptionsOneOf as eU, type QuizFieldSettings as eV, type CheckboxGroup as eW, type Option as eX, type ComponentsTags as eY, type TagsOption as eZ, type ServicesCheckboxGroup as e_, type BorderColors as ea, type BorderWidths as eb, type ListValue as ec, type AudioData as ed, type OrderedListData as ee, type BulletedListData as ef, type BlockquoteData as eg, type CaptionData as eh, type LayoutData as ei, type BackgroundImage as ej, type Banner as ek, type LayoutCellData as el, type ShapeData as em, type ShapeDataStyles as en, type Metadata as eo, type DocumentStyle as ep, type TextNodeStyle as eq, type MediaItem as er, type MediaItemMediaOneOf as es, type MediaSettings as et, type RadioGroup as eu, type RadioGroupOption as ev, type CustomOption as ew, type Dropdown as ex, type DropdownOption as ey, type DateTimeInput as ez, type ConfirmSubmissionResponse as f, type UpsertContact as f$, type FileUpload as f0, type Signature as f1, type ProductCheckboxGroup as f2, type ProductCheckboxGroupOption as f3, type DonationInput as f4, type DonationInputOption as f5, type PaymentInput as f6, type FixedPayment as f7, type MultilineAddress as f8, type AddressLine2 as f9, type _StringComponentTypeOptionsOneOf as fA, type _Number as fB, type _NumberComponentTypeOptionsOneOf as fC, type _Boolean as fD, type _BooleanComponentTypeOptionsOneOf as fE, type _Array as fF, type _ArrayComponentTypeOptionsOneOf as fG, type _Object as fH, type WixFile as fI, type WixFileComponentTypeOptionsOneOf as fJ, type Payment as fK, type PaymentComponentTypeOptionsOneOf as fL, type Scheduling as fM, type SchedulingComponentTypeOptionsOneOf as fN, type Address as fO, type AddressComponentTypeOptionsOneOf as fP, type ObjectArray as fQ, type ObjectArrayComponentTypeOptionsOneOf as fR, type DisplayField as fS, type DisplayFieldDisplayFieldTypeOptionsOneOf as fT, type RichContentOptions as fU, type PageNavigationOptions as fV, type Step as fW, type FormRule as fX, type FormOverride as fY, type FormProperties as fZ, type PostSubmissionTriggers as f_, type DefaultCountryConfig as fa, type DefaultCountryConfigOptionsOneOf as fb, type FieldsSettings as fc, type Repeater as fd, type FormLayout as fe, type BreakPoint as ff, type ItemLayout as fg, type ItemLayoutItemOneOf as fh, type Group as fi, type Margin as fj, type Section as fk, type Appointment as fl, type AppointmentFormatInfoOneOf as fm, type Location as fn, type LocationLocationInfoOneOf as fo, type InPersonOptions as fp, type VideoConferenceOptions as fq, type PhoneOptions as fr, type FormFieldContactInfo as fs, type FormFieldContactInfoAdditionalInfoOneOf as ft, type EmailInfo as fu, type PhoneInfo as fv, type AddressInfo as fw, type CustomFieldInfo as fx, type SubscriptionInfo as fy, type _String as fz, type BulkDeleteSubmissionResponse as g, type DeleteSubmissionResponse as g$, type V4FormFieldContactInfo as g0, type V4FormFieldContactInfoAdditionalInfoOneOf as g1, type FormFieldContactInfoEmailInfo as g2, type FormFieldContactInfoPhoneInfo as g3, type FormFieldContactInfoAddressInfo as g4, type FormFieldContactInfoCustomFieldInfo as g5, type FormFieldContactInfoSubscriptionInfo as g6, type NestedForm as g7, type LimitationRule as g8, type RequiredIndicatorProperties as g9, type IsFormSubmittableRequest as gA, type IsFormSubmittableResponse as gB, type Empty as gC, type UpsertContactFromSubmissionRequest as gD, type SubmitContactResponse as gE, type AppointmentDetails as gF, type CreateSubmissionRequest as gG, type CreateSubmissionResponse as gH, type SubmissionValidationErrorsDetails as gI, type ValidationError as gJ, type CreateSubmissionBySubmitterRequest as gK, type CreateSubmissionBySubmitterResponse as gL, type BulkCreateSubmissionBySubmitterRequest as gM, type BulkCreateSubmissionBySubmitterData as gN, type BulkCreateSubmissionBySubmitterResponse as gO, type BulkSubmissionResult as gP, type ItemMetadata as gQ, type ApplicationError as gR, type BulkActionMetadata as gS, type GetSubmissionRequest as gT, type GetSubmissionResponse as gU, type GetSubmissionByCheckoutIdRequest as gV, type GetSubmissionByCheckoutIdResponse as gW, type UpdateSubmissionRequest as gX, type UpdateSubmissionResponse as gY, type ConfirmSubmissionRequest as gZ, type DeleteSubmissionRequest as g_, type SubmitSettings as ga, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gb, type ThankYouMessageOptions as gc, type RedirectOptions as gd, type FieldGroup as ge, type Rule as gf, type RequiredOptions as gg, type HiddenOptions as gh, type AllowedValuesOptions as gi, type FieldOverride as gj, type FieldOverridePropertyTypeOptionsOneOf as gk, type ConditionNode as gl, type ConditionNodeNodeOneOf as gm, type AndCondition as gn, type OrCondition as go, type Condition as gp, type RuleFormOverride as gq, type RuleFormOverrideEntityTypeOptionsOneOf as gr, type Tags as gs, type TagsTagList as gt, type QuizSettings as gu, type QuizSettingsPassingCriteriaOneOf as gv, type QuizSettingsResultsDisplayOptionsOneOf as gw, type PassFailMessages as gx, type CreateCheckoutFromSubmissionResponse as gy, type Checkout as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, utils as h$, type BulkDeleteSubmissionRequest as h0, type BulkDeleteSubmissionResult as h1, type RestoreSubmissionFromTrashBinRequest as h2, type RemoveSubmissionFromTrashBinRequest as h3, type RemoveSubmissionFromTrashBinResponse as h4, type BulkRemoveSubmissionFromTrashBinRequest as h5, type BulkRemoveSubmissionFromTrashBinResult as h6, type ListDeletedSubmissionsRequest as h7, type CursorPaging as h8, type CursorPagingMetadata as h9, type DownloadSubmissionRequest as hA, type HeadersEntry as hB, type GetFormattedSubmissionRequest as hC, type FormattedSubmission as hD, type ListFormattedSubmissionsRequest as hE, type ListFormattedSubmissionsResponse as hF, type FormattedFormSubmission as hG, type UpdateExtendedFieldsRequest as hH, type BulkUpdateFormSubmissionTagsRequest as hI, type BulkUpdateFormSubmissionTagsResponse as hJ, type BulkUpdateFormSubmissionTagsResult as hK, type BulkUpdateFormSubmissionTagsByFilterRequest as hL, type BulkUpdateFormSubmissionTagsByFilterResponse as hM, type ValidateFormSubmissionRequest as hN, type FieldViolation as hO, type FieldViolationErrorDataOneOf as hP, type SubmissionValidationErrors as hQ, type SubmissionValidationError as hR, type SubmissionValidationErrorErrorMessageOneOf as hS, type BaseEventMetadata as hT, type EventMetadata as hU, type AccountInfoMetadata as hV, type FormSubmissionSearchSpec as hW, type SubmissionsQueryResult as hX, type FormSubmissionQuerySpec as hY, type BulkUpdateFormSubmissionTagsOptions as hZ, type BulkUpdateFormSubmissionTagsByFilterOptions as h_, type Cursors as ha, type GetDeletedSubmissionRequest as hb, type QuerySubmissionRequest as hc, type CursorQueryPagingMethodOneOf as hd, type Sorting as he, type SearchSubmissionsByNamespaceRequest as hf, type CursorSearch as hg, type CursorSearchPagingMethodOneOf as hh, type SearchDetails as hi, type SearchSubmissionsByNamespaceForExportRequest as hj, type SearchSubmissionsByNamespaceForExportResponse as hk, type QuerySubmissionsByNamespaceRequest as hl, type QuerySubmissionsByNamespaceResponse as hm, type QuerySubmissionsByNamespaceForExportRequest as hn, type QuerySubmissionsByNamespaceForExportResponse as ho, type CountSubmissionsByFilterRequest as hp, type FormSubmissionsCount as hq, type CountSubmissionsRequest as hr, type CountDeletedSubmissionsRequest as hs, type FormDeletedSubmissionsCount as ht, type GetMediaUploadURLRequest as hu, type BulkMarkSubmissionsAsSeenRequest as hv, type GetSubmissionDownloadUrlRequest as hw, type SubmissionDocument as hx, type SubmissionDocumentDocumentOneOf as hy, type DocumentReady as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type ItemTypeWithLiterals as i$, type SubmissionStatusWithLiterals as i0, type OptInLevelWithLiterals as i1, type WebhookIdentityTypeWithLiterals as i2, type StringTypeFormatEnumFormatWithLiterals as i3, type DayOfWeekWithLiterals as i4, type ValidationFormatWithLiterals as i5, type ProductTypeWithLiterals as i6, type PriceTypeWithLiterals as i7, type FieldTypeWithLiterals as i8, type FormatEnumFormatWithLiterals as i9, type DecorationTypeWithLiterals as iA, type FontTypeWithLiterals as iB, type PositionWithLiterals as iC, type AspectRatioWithLiterals as iD, type ResizingWithLiterals as iE, type PlacementWithLiterals as iF, type CardStylesTypeWithLiterals as iG, type CardStylesAlignmentWithLiterals as iH, type LayoutWithLiterals as iI, type AppTypeWithLiterals as iJ, type InitialExpandedItemsWithLiterals as iK, type DirectionWithLiterals as iL, type VerticalAlignmentWithLiterals as iM, type NullValueWithLiterals as iN, type ScalingWithLiterals as iO, type LayoutDataImagePositionWithLiterals as iP, type OriginWithLiterals as iQ, type VerticalAlignmentAlignmentWithLiterals as iR, type ResponsivenessBehaviourWithLiterals as iS, type DesignTargetWithLiterals as iT, type ImagePositionWithLiterals as iU, type AlignmentWithLiterals as iV, type ImageFitWithLiterals as iW, type NumberOfColumnsWithLiterals as iX, type FirstDayOfWeekWithLiterals as iY, type NumberComponentTypeWithLiterals as iZ, type BooleanComponentTypeWithLiterals as i_, type StringComponentTypeWithLiterals as ia, type NodeTypeWithLiterals as ib, type WidthTypeWithLiterals as ic, type PluginContainerDataAlignmentWithLiterals as id, type ButtonDataTypeWithLiterals as ie, type LinkTargetWithLiterals as ig, type TextAlignmentWithLiterals as ih, type LineStyleWithLiterals as ii, type WidthWithLiterals as ij, type DividerDataAlignmentWithLiterals as ik, type ViewModeWithLiterals as il, type LayoutTypeWithLiterals as im, type OrientationWithLiterals as io, type CropWithLiterals as ip, type ThumbnailsAlignmentWithLiterals as iq, type GIFTypeWithLiterals as ir, type SourceWithLiterals as is, type StylesPositionWithLiterals as it, type MapTypeWithLiterals as iu, type ViewRoleWithLiterals as iv, type VoteRoleWithLiterals as iw, type PollLayoutTypeWithLiterals as ix, type PollLayoutDirectionWithLiterals as iy, type BackgroundTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, getDeletedSubmission as j$, type PropertiesTypeEnumWithLiterals as j0, type ArrayComponentTypeWithLiterals as j1, type WixFileComponentTypeWithLiterals as j2, type UploadFileFormatWithLiterals as j3, type PaymentComponentTypeWithLiterals as j4, type ComponentTypeWithLiterals as j5, type TypeWithLiterals as j6, type ObjectArrayComponentTypeWithLiterals as j7, type SchedulingComponentTypeWithLiterals as j8, type FormatWithLiterals as j9, type ContactAutofillWithLiterals as jA, type IdentityTypeWithLiterals as jB, type ErrorTypeWithLiterals as jC, type SortOrderWithLiterals as jD, type ModeWithLiterals as jE, type StatusWithLiterals as jF, type SubmissionErrorTypeWithLiterals as jG, type CommonSearchWithEntityContext as jH, type CommonQueryWithEntityContext as jI, onSubmissionCreated as jJ, onSubmissionDeleted as jK, onSubmissionRemovedSubmissionFromTrash as jL, onSubmissionStatusUpdated as jM, onSubmissionContactMapped as jN, onSubmissionContactMappingSkipped as jO, onSubmissionUpdated as jP, upsertContactFromSubmission as jQ, createSubmission as jR, getSubmission as jS, updateSubmission as jT, confirmSubmission as jU, deleteSubmission as jV, bulkDeleteSubmission as jW, restoreSubmissionFromTrashBin as jX, removeSubmissionFromTrashBin as jY, bulkRemoveSubmissionFromTrashBin as jZ, listDeletedSubmissions as j_, type MeetingTypeWithLiterals as ja, type StaffStrategySelectionWithLiterals as jb, type InputTypeWithLiterals as jc, type EmailInfoTagWithLiterals as jd, type PhoneInfoTagWithLiterals as je, type TagWithLiterals as jf, type ConfirmationLevelWithLiterals as jg, type SubscriptionChannelWithLiterals as jh, type ContactFieldWithLiterals as ji, type DisplayFieldTypeWithLiterals as jj, type OverrideEntityTypeWithLiterals as jk, type KindWithLiterals as jl, type FormFieldContactInfoEmailInfoTagWithLiterals as jm, type FormFieldContactInfoPhoneInfoTagWithLiterals as jn, type AddressInfoTagWithLiterals as jo, type SubscriptionInfoOptInLevelWithLiterals as jp, type FormFieldContactInfoContactFieldWithLiterals as jq, type SpamFilterProtectionLevelWithLiterals as jr, type RequiredIndicatorWithLiterals as js, type RequiredIndicatorPlacementWithLiterals as jt, type TargetWithLiterals as ju, type SubmitSuccessActionWithLiterals as jv, type ChangeablePropertyWithLiterals as jw, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jx, type OperatorWithLiterals as jy, type ResultsDisplayWithLiterals as jz, type CursorQuery as k, querySubmission as k0, querySubmissionsByNamespace as k1, countSubmissionsByFilter as k2, countSubmissions as k3, countDeletedSubmissions as k4, getMediaUploadUrl as k5, bulkMarkSubmissionsAsSeen as k6, getSubmissionDownloadUrl as k7, downloadSubmission as k8, getFormattedSubmission as k9, updateExtendedFields as ka, validateFormSubmission as kb, type QuerySubmissionResponse as l, 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 };
|
|
8138
|
+
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, ItemType as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, BackgroundType as a7, GradientType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, ImageScalingScaling as aJ, LayoutDataImagePosition as aK, Origin as aL, LayoutDataBackgroundType as aM, BackdropType as aN, VerticalAlignmentAlignment as aO, ResponsivenessBehaviour as aP, DesignTarget as aQ, Scaling as aR, ImagePositionPosition as aS, CardDataBackgroundType as aT, ImagePosition as aU, Alignment as aV, ImageFit as aW, NumberOfColumns as aX, FirstDayOfWeek as aY, NumberComponentType as aZ, BooleanComponentType as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, PollDesignBackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type IdentificationData as b$, PropertiesTypeEnum as b0, ArrayComponentType as b1, WixFileComponentType as b2, UploadFileFormat as b3, PaymentComponentType as b4, ComponentType as b5, Type as b6, ObjectArrayComponentType as b7, SchedulingComponentType as b8, Format as b9, ContactAutofill as bA, IdentityType as bB, ErrorType as bC, SortOrder as bD, Mode as bE, Status as bF, SubmissionErrorType as bG, type Submitter as bH, type SubmitterSubmitterOneOf as bI, type ExtendedFields as bJ, type OrderDetails as bK, type PublicTags as bL, type TagList as bM, type AppointmentDetails as bN, type FormSubmissionStatusUpdatedEvent as bO, type RemovedSubmissionFromTrash as bP, type SubmissionContactMapped as bQ, type MarketingSubscriptionDetails as bR, type SubmissionContactMappingSkipped as bS, type DomainEvent as bT, type DomainEventBodyOneOf as bU, type EntityCreatedEvent as bV, type RestoreInfo as bW, type EntityUpdatedEvent as bX, type EntityDeletedEvent as bY, type ActionEvent as bZ, type MessageEnvelope as b_, MeetingType as ba, StaffStrategySelection as bb, InputType as bc, EmailInfoTag as bd, PhoneInfoTag as be, Tag as bf, ConfirmationLevel as bg, SubscriptionChannel as bh, ContactField as bi, DisplayFieldType as bj, OverrideEntityType as bk, Kind as bl, FormFieldContactInfoEmailInfoTag as bm, FormFieldContactInfoPhoneInfoTag as bn, AddressInfoTag as bo, SubscriptionInfoOptInLevel as bp, FormFieldContactInfoContactField as bq, SpamFilterProtectionLevel as br, RequiredIndicator as bs, RequiredIndicatorPlacement as bt, Target as bu, SubmitSuccessAction as bv, ChangeableProperty as bw, OverrideEntityTypeEnumOverrideEntityType as bx, Operator as by, ResultsDisplay as bz, type CreateSubmissionValidationErrors as c, type Stop as c$, type IdentificationDataIdOneOf as c0, type AccountInfo as c1, type CreateCheckoutFromSubmissionRequest as c2, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c3, type Form as c4, type FormField as c5, type FormFieldStringType as c6, type FormFieldStringTypeFormatOptionsOneOf as c7, type StringErrorMessages as c8, type StringTypeDateTimeConstraints as c9, type MultilineAddressValidation as cA, type FieldOverrides as cB, type FieldsOverrides as cC, type ObjectArrayType as cD, type NestedFormFieldOverrides as cE, type Validation as cF, type ValidationValidationOneOf as cG, type DataExtensionsDetails as cH, type NestedFormOverrides as cI, type Field as cJ, type FieldFieldTypeOptionsOneOf as cK, type InputField as cL, type InputFieldInputTypeOptionsOneOf as cM, type StringCorrectAnswersList as cN, type StringType as cO, type StringTypeFormatOptionsOneOf as cP, type DateTimeConstraints as cQ, type PhoneConstraints as cR, type ValidationMessages as cS, type StringQuizFieldSettings as cT, type TextInput as cU, type RichContent as cV, type Node as cW, type NodeDataOneOf as cX, type NodeStyle as cY, type ButtonData as cZ, type Gradient as c_, type DateTimeAdvancedConstraints as ca, type Availability as cb, type DateRange as cc, type StringTypePhoneConstraints as cd, type StringTypeValidationMessages as ce, type FormFieldNumberType as cf, type NumberErrorMessages as cg, type IntegerType as ch, type FormFieldBooleanType as ci, type BooleanErrorMessages as cj, type FormFieldArrayType as ck, type FormFieldObjectType as cl, type ObjectTypePropertiesType as cm, type ObjectTypePropertiesTypePropertiesTypeOneOf as cn, type ObjectErrorMessages as co, type ArrayTypeArrayItems as cp, type ArrayTypeArrayItemsItemsOneOf as cq, type ArrayErrorMessages as cr, type PredefinedValidation as cs, type PredefinedValidationFormatOptionsOneOf as ct, type PaymentType as cu, type QuantityLimit as cv, type FixedPriceOptions as cw, type DynamicPriceOptions as cx, type Product as cy, type ProductPriceOptionsOneOf as cz, type UpdateSubmission as d, type MentionData as d$, type Border as d0, type Colors as d1, type Background as d2, type PluginContainerData as d3, type PluginContainerDataWidth as d4, type PluginContainerDataWidthDataOneOf as d5, type Spoiler as d6, type Height as d7, type Styles as d8, type Link as d9, type StylesBorder as dA, type ImageDataStyles as dB, type LinkPreviewData as dC, type LinkPreviewDataStyles as dD, type MapData as dE, type MapSettings as dF, type ParagraphData as dG, type PollData as dH, type Permissions as dI, type PollOption as dJ, type Settings as dK, type PollLayout as dL, type OptionLayout as dM, type BackgroundGradient as dN, type PollDesignBackground as dO, type PollDesignBackgroundBackgroundOneOf as dP, type PollDesign as dQ, type OptionDesign as dR, type Poll as dS, type PollDataLayout as dT, type Design as dU, type TextData as dV, type Decoration as dW, type DecorationDataOneOf as dX, type AnchorData as dY, type ColorData as dZ, type LinkData as d_, type LinkDataOneOf as da, type Rel as db, type CodeBlockData as dc, type TextStyle as dd, type DividerData as de, type FileData as df, type FileSource as dg, type FileSourceDataOneOf as dh, type PDFSettings as di, type GalleryData as dj, type Media as dk, type Image as dl, type Video as dm, type Item as dn, type ItemDataOneOf as dp, type GalleryOptions as dq, type GalleryOptionsLayout as dr, type ItemStyle as ds, type Thumbnails as dt, type GIFData as du, type GIF as dv, type HeadingData as dw, type HTMLData as dx, type HTMLDataDataOneOf as dy, type ImageData as dz, type UpdateSubmissionValidationErrors as e, type RatingInput as e$, type FontSizeData as e0, type SpoilerData as e1, type FontFamilyData as e2, type AppEmbedData as e3, type AppEmbedDataAppDataOneOf as e4, type BookingData as e5, type EventData as e6, type ButtonStyles as e7, type ImageStyles as e8, type RibbonStyles as e9, type ShapeDataStyles as eA, type CardData as eB, type CardDataBackground as eC, type BackgroundImage as eD, type Metadata as eE, type DocumentStyle as eF, type TextNodeStyle as eG, type MediaItem as eH, type MediaItemMediaOneOf as eI, type MediaSettings as eJ, type RadioGroup as eK, type RadioGroupOption as eL, type CustomOption as eM, type Dropdown as eN, type DropdownOption as eO, type DateTimeInput as eP, type PhoneInput as eQ, type DateInput as eR, type TimeInput as eS, type DatePicker as eT, type ServicesDropdown as eU, type ServiceOption as eV, type Password as eW, type NumberCorrectAnswersList as eX, type NumberType as eY, type NumberQuizFieldSettings as eZ, type NumberInput as e_, type CardStyles as ea, type PricingData as eb, type VideoData as ec, type PlaybackOptions as ed, type EmbedData as ee, type Oembed as ef, type CollapsibleListData as eg, type TableData as eh, type Dimensions as ei, type TableCellData as ej, type CellStyle as ek, type BorderColors as el, type BorderWidths as em, type ListValue as en, type AudioData as eo, type OrderedListData as ep, type BulletedListData as eq, type BlockquoteData as er, type CaptionData as es, type LayoutData as et, type LayoutDataBackgroundImage as eu, type Banner as ev, type LayoutDataBackground as ew, type Backdrop as ex, type LayoutCellData as ey, type ShapeData as ez, type ConfirmSubmissionResponse as f, type PaymentComponentTypeOptionsOneOf as f$, type BooleanType as f0, type Checkbox as f1, type CorrectAnswersList as f2, type ArrayType as f3, type ObjectType as f4, type PropertiesType as f5, type PropertiesTypePropertiesTypeOptionsOneOf as f6, type ArrayItems as f7, type ArrayItemsItemTypeOptionsOneOf as f8, type QuizFieldSettings as f9, type Section as fA, type Appointment as fB, type AppointmentFormatInfoOneOf as fC, type Location as fD, type LocationLocationInfoOneOf as fE, type InPersonOptions as fF, type VideoConferenceOptions as fG, type PhoneOptions as fH, type FormFieldContactInfo as fI, type FormFieldContactInfoAdditionalInfoOneOf as fJ, type EmailInfo as fK, type PhoneInfo as fL, type AddressInfo as fM, type CustomFieldInfo as fN, type SubscriptionInfo as fO, type _String as fP, type _StringComponentTypeOptionsOneOf as fQ, type _Number as fR, type _NumberComponentTypeOptionsOneOf as fS, type _Boolean as fT, type _BooleanComponentTypeOptionsOneOf as fU, type _Array as fV, type _ArrayComponentTypeOptionsOneOf as fW, type _Object as fX, type WixFile as fY, type WixFileComponentTypeOptionsOneOf as fZ, type Payment as f_, type CheckboxGroup as fa, type Option as fb, type ComponentsTags as fc, type TagsOption as fd, type ServicesCheckboxGroup as fe, type FileType as ff, type FileUpload as fg, type Signature as fh, type ProductCheckboxGroup as fi, type ProductCheckboxGroupOption as fj, type DonationInput as fk, type DonationInputOption as fl, type PaymentInput as fm, type FixedPayment as fn, type MultilineAddress as fo, type AddressLine2 as fp, type DefaultCountryConfig as fq, type DefaultCountryConfigOptionsOneOf as fr, type FieldsSettings as fs, type Repeater as ft, type FormLayout as fu, type BreakPoint as fv, type ItemLayout as fw, type ItemLayoutItemOneOf as fx, type Group as fy, type Margin as fz, type BulkDeleteSubmissionResponse as g, type BulkCreateSubmissionBySubmitterRequest as g$, type Scheduling as g0, type SchedulingComponentTypeOptionsOneOf as g1, type Address as g2, type AddressComponentTypeOptionsOneOf as g3, type ObjectArray as g4, type ObjectArrayComponentTypeOptionsOneOf as g5, type DisplayField as g6, type DisplayFieldDisplayFieldTypeOptionsOneOf as g7, type RichContentOptions as g8, type PageNavigationOptions as g9, type FieldOverridePropertyTypeOptionsOneOf as gA, type ConditionNode as gB, type ConditionNodeNodeOneOf as gC, type AndCondition as gD, type OrCondition as gE, type Condition as gF, type RuleFormOverride as gG, type RuleFormOverrideEntityTypeOptionsOneOf as gH, type Tags as gI, type TagsTagList as gJ, type QuizSettings as gK, type QuizSettingsPassingCriteriaOneOf as gL, type QuizSettingsResultsDisplayOptionsOneOf as gM, type PassFailMessages as gN, type CreateCheckoutFromSubmissionResponse as gO, type Checkout as gP, type IsFormSubmittableRequest as gQ, type IsFormSubmittableResponse as gR, type Empty as gS, type UpsertContactFromSubmissionRequest as gT, type SubmitContactResponse as gU, type CreateSubmissionRequest as gV, type CreateSubmissionResponse as gW, type SubmissionValidationErrorsDetails as gX, type ValidationError as gY, type CreateSubmissionBySubmitterRequest as gZ, type CreateSubmissionBySubmitterResponse as g_, type Step as ga, type FormRule as gb, type FormOverride as gc, type FormProperties as gd, type PostSubmissionTriggers as ge, type UpsertContact as gf, type V4FormFieldContactInfo as gg, type V4FormFieldContactInfoAdditionalInfoOneOf as gh, type FormFieldContactInfoEmailInfo as gi, type FormFieldContactInfoPhoneInfo as gj, type FormFieldContactInfoAddressInfo as gk, type FormFieldContactInfoCustomFieldInfo as gl, type FormFieldContactInfoSubscriptionInfo as gm, type NestedForm as gn, type LimitationRule as go, type RequiredIndicatorProperties as gp, type SubmitSettings as gq, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gr, type ThankYouMessageOptions as gs, type RedirectOptions as gt, type FieldGroup as gu, type Rule as gv, type RequiredOptions as gw, type HiddenOptions as gx, type AllowedValuesOptions as gy, type FieldOverride as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type BulkUpdateFormSubmissionTagsByFilterResponse as h$, type BulkCreateSubmissionBySubmitterData as h0, type BulkCreateSubmissionBySubmitterResponse as h1, type BulkSubmissionResult as h2, type ItemMetadata as h3, type ApplicationError as h4, type BulkActionMetadata as h5, type GetSubmissionRequest as h6, type GetSubmissionResponse as h7, type GetSubmissionByCheckoutIdRequest as h8, type GetSubmissionByCheckoutIdResponse as h9, type QuerySubmissionsByNamespaceRequest as hA, type QuerySubmissionsByNamespaceResponse as hB, type QuerySubmissionsByNamespaceForExportRequest as hC, type QuerySubmissionsByNamespaceForExportResponse as hD, type CountSubmissionsByFilterRequest as hE, type FormSubmissionsCount as hF, type CountSubmissionsRequest as hG, type CountDeletedSubmissionsRequest as hH, type FormDeletedSubmissionsCount as hI, type GetMediaUploadURLRequest as hJ, type BulkMarkSubmissionsAsSeenRequest as hK, type GetSubmissionDownloadUrlRequest as hL, type SubmissionDocument as hM, type SubmissionDocumentDocumentOneOf as hN, type DocumentReady as hO, type DownloadSubmissionRequest as hP, type HeadersEntry as hQ, type GetFormattedSubmissionRequest as hR, type FormattedSubmission as hS, type ListFormattedSubmissionsRequest as hT, type ListFormattedSubmissionsResponse as hU, type FormattedFormSubmission as hV, type UpdateExtendedFieldsRequest as hW, type BulkUpdateFormSubmissionTagsRequest as hX, type BulkUpdateFormSubmissionTagsResponse as hY, type BulkUpdateFormSubmissionTagsResult as hZ, type BulkUpdateFormSubmissionTagsByFilterRequest as h_, type UpdateSubmissionRequest as ha, type UpdateSubmissionResponse as hb, type ConfirmSubmissionRequest as hc, type DeleteSubmissionRequest as hd, type DeleteSubmissionResponse as he, type BulkDeleteSubmissionRequest as hf, type BulkDeleteSubmissionResult as hg, type RestoreSubmissionFromTrashBinRequest as hh, type RemoveSubmissionFromTrashBinRequest as hi, type RemoveSubmissionFromTrashBinResponse as hj, type BulkRemoveSubmissionFromTrashBinRequest as hk, type BulkRemoveSubmissionFromTrashBinResult as hl, type ListDeletedSubmissionsRequest as hm, type CursorPaging as hn, type CursorPagingMetadata as ho, type Cursors as hp, type GetDeletedSubmissionRequest as hq, type QuerySubmissionRequest as hr, type CursorQueryPagingMethodOneOf as hs, type Sorting as ht, type SearchSubmissionsByNamespaceRequest as hu, type CursorSearch as hv, type CursorSearchPagingMethodOneOf as hw, type SearchDetails as hx, type SearchSubmissionsByNamespaceForExportRequest as hy, type SearchSubmissionsByNamespaceForExportResponse as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type InitialExpandedItemsWithLiterals as i$, type ValidateFormSubmissionRequest as i0, type FieldViolation as i1, type FieldViolationErrorDataOneOf as i2, type SubmissionValidationErrors as i3, type SubmissionValidationError as i4, type SubmissionValidationErrorErrorMessageOneOf as i5, type BaseEventMetadata as i6, type EventMetadata as i7, type AccountInfoMetadata as i8, type FormSubmissionSearchSpec as i9, type LineStyleWithLiterals as iA, type WidthWithLiterals as iB, type DividerDataAlignmentWithLiterals as iC, type ViewModeWithLiterals as iD, type LayoutTypeWithLiterals as iE, type OrientationWithLiterals as iF, type CropWithLiterals as iG, type ThumbnailsAlignmentWithLiterals as iH, type GIFTypeWithLiterals as iI, type SourceWithLiterals as iJ, type StylesPositionWithLiterals as iK, type MapTypeWithLiterals as iL, type ViewRoleWithLiterals as iM, type VoteRoleWithLiterals as iN, type PollLayoutTypeWithLiterals as iO, type PollLayoutDirectionWithLiterals as iP, type PollDesignBackgroundTypeWithLiterals as iQ, type DecorationTypeWithLiterals as iR, type FontTypeWithLiterals as iS, type PositionWithLiterals as iT, type AspectRatioWithLiterals as iU, type ResizingWithLiterals as iV, type PlacementWithLiterals as iW, type CardStylesTypeWithLiterals as iX, type CardStylesAlignmentWithLiterals as iY, type LayoutWithLiterals as iZ, type AppTypeWithLiterals as i_, type SubmissionsQueryResult as ia, type FormSubmissionQuerySpec as ib, type BulkUpdateFormSubmissionTagsOptions as ic, type BulkUpdateFormSubmissionTagsByFilterOptions as id, utils as ie, type SubmissionStatusWithLiterals as ig, type OptInLevelWithLiterals as ih, type WebhookIdentityTypeWithLiterals as ii, type StringTypeFormatEnumFormatWithLiterals as ij, type DayOfWeekWithLiterals as ik, type ValidationFormatWithLiterals as il, type ProductTypeWithLiterals as im, type PriceTypeWithLiterals as io, type FieldTypeWithLiterals as ip, type FormatEnumFormatWithLiterals as iq, type StringComponentTypeWithLiterals as ir, type NodeTypeWithLiterals as is, type BackgroundTypeWithLiterals as it, type GradientTypeWithLiterals as iu, type WidthTypeWithLiterals as iv, type PluginContainerDataAlignmentWithLiterals as iw, type ButtonDataTypeWithLiterals as ix, type LinkTargetWithLiterals as iy, type TextAlignmentWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type StatusWithLiterals as j$, type DirectionWithLiterals as j0, type VerticalAlignmentWithLiterals as j1, type NullValueWithLiterals as j2, type ImageScalingScalingWithLiterals as j3, type LayoutDataImagePositionWithLiterals as j4, type OriginWithLiterals as j5, type LayoutDataBackgroundTypeWithLiterals as j6, type BackdropTypeWithLiterals as j7, type VerticalAlignmentAlignmentWithLiterals as j8, type ResponsivenessBehaviourWithLiterals as j9, type PhoneInfoTagWithLiterals as jA, type TagWithLiterals as jB, type ConfirmationLevelWithLiterals as jC, type SubscriptionChannelWithLiterals as jD, type ContactFieldWithLiterals as jE, type DisplayFieldTypeWithLiterals as jF, type OverrideEntityTypeWithLiterals as jG, type KindWithLiterals as jH, type FormFieldContactInfoEmailInfoTagWithLiterals as jI, type FormFieldContactInfoPhoneInfoTagWithLiterals as jJ, type AddressInfoTagWithLiterals as jK, type SubscriptionInfoOptInLevelWithLiterals as jL, type FormFieldContactInfoContactFieldWithLiterals as jM, type SpamFilterProtectionLevelWithLiterals as jN, type RequiredIndicatorWithLiterals as jO, type RequiredIndicatorPlacementWithLiterals as jP, type TargetWithLiterals as jQ, type SubmitSuccessActionWithLiterals as jR, type ChangeablePropertyWithLiterals as jS, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jT, type OperatorWithLiterals as jU, type ResultsDisplayWithLiterals as jV, type ContactAutofillWithLiterals as jW, type IdentityTypeWithLiterals as jX, type ErrorTypeWithLiterals as jY, type SortOrderWithLiterals as jZ, type ModeWithLiterals as j_, type DesignTargetWithLiterals as ja, type ScalingWithLiterals as jb, type ImagePositionPositionWithLiterals as jc, type CardDataBackgroundTypeWithLiterals as jd, type ImagePositionWithLiterals as je, type AlignmentWithLiterals as jf, type ImageFitWithLiterals as jg, type NumberOfColumnsWithLiterals as jh, type FirstDayOfWeekWithLiterals as ji, type NumberComponentTypeWithLiterals as jj, type BooleanComponentTypeWithLiterals as jk, type ItemTypeWithLiterals as jl, type PropertiesTypeEnumWithLiterals as jm, type ArrayComponentTypeWithLiterals as jn, type WixFileComponentTypeWithLiterals as jo, type UploadFileFormatWithLiterals as jp, type PaymentComponentTypeWithLiterals as jq, type ComponentTypeWithLiterals as jr, type TypeWithLiterals as js, type ObjectArrayComponentTypeWithLiterals as jt, type SchedulingComponentTypeWithLiterals as ju, type FormatWithLiterals as jv, type MeetingTypeWithLiterals as jw, type StaffStrategySelectionWithLiterals as jx, type InputTypeWithLiterals as jy, type EmailInfoTagWithLiterals as jz, type CursorQuery as k, type SubmissionErrorTypeWithLiterals as k0, type CommonSearchWithEntityContext as k1, type CommonQueryWithEntityContext as k2, onSubmissionCreated as k3, onSubmissionDeleted as k4, onSubmissionRemovedSubmissionFromTrash as k5, onSubmissionStatusUpdated as k6, onSubmissionContactMapped as k7, onSubmissionContactMappingSkipped as k8, onSubmissionUpdated as k9, upsertContactFromSubmission as ka, createSubmission as kb, getSubmission as kc, updateSubmission as kd, confirmSubmission as ke, deleteSubmission as kf, bulkDeleteSubmission as kg, restoreSubmissionFromTrashBin as kh, removeSubmissionFromTrashBin as ki, bulkRemoveSubmissionFromTrashBin as kj, listDeletedSubmissions as kk, getDeletedSubmission as kl, querySubmission as km, querySubmissionsByNamespace as kn, countSubmissionsByFilter as ko, countSubmissions as kp, countDeletedSubmissions as kq, getMediaUploadUrl as kr, bulkMarkSubmissionsAsSeen as ks, getSubmissionDownloadUrl as kt, downloadSubmission as ku, getFormattedSubmission as kv, updateExtendedFields as kw, validateFormSubmission as kx, type QuerySubmissionResponse as l, 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 };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -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, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { bV as AccountInfo, hV as AccountInfoMetadata, bR as ActionEvent, fO as Address, fP as AddressComponentTypeOptionsOneOf, fw as AddressInfo, bh as AddressInfoTag, jo as AddressInfoTagWithLiterals, f9 as AddressLine2, aO as Alignment, iV as AlignmentWithLiterals, gi as AllowedValuesOptions, dN as AnchorData, gn as AndCondition, dU as AppEmbedData, dV as AppEmbedDataAppDataOneOf, aC as AppType, iJ as AppTypeWithLiterals, gR as ApplicationError, fl as Appointment, gF as AppointmentDetails, fm as AppointmentFormatInfoOneOf, aW as ArrayComponentType, j1 as ArrayComponentTypeWithLiterals, cj as ArrayErrorMessages, eT as ArrayItems, eU as ArrayItemsItemTypeOptionsOneOf, eP as ArrayType, ch as ArrayTypeArrayItems, ci as ArrayTypeArrayItemsItemsOneOf, aw as AspectRatio, iD as AspectRatioWithLiterals, ed as AudioData, c3 as Availability, dD as Background, dE as BackgroundBackgroundOneOf, ej as BackgroundImage, as as BackgroundType, iz as BackgroundTypeWithLiterals, ek as Banner, hT as BaseEventMetadata, eg as BlockquoteData, dW as BookingData, aT as BooleanComponentType, i_ as BooleanComponentTypeWithLiterals, cb as BooleanErrorMessages, eM as BooleanType, cS as Border, ea as BorderColors, eb as BorderWidths, ff as BreakPoint, gS as BulkActionMetadata, gN as BulkCreateSubmissionBySubmitterData, gM as BulkCreateSubmissionBySubmitterRequest, gO as BulkCreateSubmissionBySubmitterResponse, h0 as BulkDeleteSubmissionRequest, h1 as BulkDeleteSubmissionResult, hv as BulkMarkSubmissionsAsSeenRequest, h5 as BulkRemoveSubmissionFromTrashBinRequest, h6 as BulkRemoveSubmissionFromTrashBinResult, gP as BulkSubmissionResult, h_ as BulkUpdateFormSubmissionTagsByFilterOptions, hL as BulkUpdateFormSubmissionTagsByFilterRequest, hM as BulkUpdateFormSubmissionTagsByFilterResponse, hZ as BulkUpdateFormSubmissionTagsOptions, hI as BulkUpdateFormSubmissionTagsRequest, hJ as BulkUpdateFormSubmissionTagsResponse, hK as BulkUpdateFormSubmissionTagsResult, ef as BulletedListData, cR as ButtonData, a9 as ButtonDataType, ie as ButtonDataTypeWithLiterals, dY as ButtonStyles, eh as CaptionData, d$ as CardStyles, aA as CardStylesAlignment, iH as CardStylesAlignmentWithLiterals, az as CardStylesType, iG as CardStylesTypeWithLiterals, e9 as CellStyle, bp as ChangeableProperty, jw as ChangeablePropertyWithLiterals, eN as Checkbox, eW as CheckboxGroup, gz as Checkout, d1 as CodeBlockData, e5 as CollapsibleListData, dO as ColorData, cT as Colors, jI as CommonQueryWithEntityContext, jH as CommonSearchWithEntityContext, a_ as ComponentType, j5 as ComponentTypeWithLiterals, eY as ComponentsTags, gp as Condition, gl as ConditionNode, gm as ConditionNodeNodeOneOf, gZ as ConfirmSubmissionRequest, b9 as ConfirmationLevel, jg as ConfirmationLevelWithLiterals, bt as ContactAutofill, jA as ContactAutofillWithLiterals, bb as ContactField, ji as ContactFieldWithLiterals, eO as CorrectAnswersList, hs as CountDeletedSubmissionsRequest, hp as CountSubmissionsByFilterRequest, hr as CountSubmissionsRequest, bW as CreateCheckoutFromSubmissionRequest, bX as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gy as CreateCheckoutFromSubmissionResponse, gK as CreateSubmissionBySubmitterRequest, gL as CreateSubmissionBySubmitterResponse, gG as CreateSubmissionRequest, gH as CreateSubmissionResponse, ai as Crop, ip as CropWithLiterals, h8 as CursorPaging, h9 as CursorPagingMetadata, hd as CursorQueryPagingMethodOneOf, hg as CursorSearch, hh as CursorSearchPagingMethodOneOf, ha as Cursors, fx as CustomFieldInfo, ew as CustomOption, cz as DataExtensionsDetails, eB as DateInput, eD as DatePicker, c4 as DateRange, c2 as DateTimeAdvancedConstraints, cI as DateTimeConstraints, ez as DateTimeInput, $ as DayOfWeek, i4 as DayOfWeekWithLiterals, dL as Decoration, dM as DecorationDataOneOf, at as DecorationType, iA as DecorationTypeWithLiterals, fa as DefaultCountryConfig, fb as DefaultCountryConfigOptionsOneOf, g_ as DeleteSubmissionRequest, g$ as DeleteSubmissionResponse, dJ as Design, aM as DesignTarget, iT as DesignTargetWithLiterals, e7 as Dimensions, aE as Direction, iL as DirectionWithLiterals, fS as DisplayField, fT as DisplayFieldDisplayFieldTypeOptionsOneOf, bc as DisplayFieldType, jj as DisplayFieldTypeWithLiterals, d3 as DividerData, ae as DividerDataAlignment, ik as DividerDataAlignmentWithLiterals, hz as DocumentReady, ep as DocumentStyle, bL as DomainEvent, bM as DomainEventBodyOneOf, f4 as DonationInput, f5 as DonationInputOption, hA as DownloadSubmissionRequest, ex as Dropdown, ey as DropdownOption, cp as DynamicPriceOptions, fu as EmailInfo, b6 as EmailInfoTag, jd as EmailInfoTagWithLiterals, e3 as EmbedData, gC as Empty, bN as EntityCreatedEvent, bQ as EntityDeletedEvent, bP as EntityUpdatedEvent, bv as ErrorType, jC as ErrorTypeWithLiterals, dX as EventData, hU as EventMetadata, bC as ExtendedFields, cB as Field, cC as FieldFieldTypeOptionsOneOf, ge as FieldGroup, gj as FieldOverride, gk as FieldOverridePropertyTypeOptionsOneOf, ct as FieldOverrides, a3 as FieldType, i8 as FieldTypeWithLiterals, hO as FieldViolation, hP as FieldViolationErrorDataOneOf, cu as FieldsOverrides, fc as FieldsSettings, d4 as FileData, d5 as FileSource, d6 as FileSourceDataOneOf, e$ as FileType, f0 as FileUpload, aR as FirstDayOfWeek, iY as FirstDayOfWeekWithLiterals, f7 as FixedPayment, co as FixedPriceOptions, dT as FontFamilyData, dR as FontSizeData, au as FontType, iB as FontTypeWithLiterals, bY as Form, ht as FormDeletedSubmissionsCount, bZ as FormField, cc as FormFieldArrayType, ca as FormFieldBooleanType, fs as FormFieldContactInfo, ft as FormFieldContactInfoAdditionalInfoOneOf, g4 as FormFieldContactInfoAddressInfo, bj as FormFieldContactInfoContactField, jq as FormFieldContactInfoContactFieldWithLiterals, g5 as FormFieldContactInfoCustomFieldInfo, g2 as FormFieldContactInfoEmailInfo, bf as FormFieldContactInfoEmailInfoTag, jm as FormFieldContactInfoEmailInfoTagWithLiterals, g3 as FormFieldContactInfoPhoneInfo, bg as FormFieldContactInfoPhoneInfoTag, jn as FormFieldContactInfoPhoneInfoTagWithLiterals, g6 as FormFieldContactInfoSubscriptionInfo, c7 as FormFieldNumberType, cd as FormFieldObjectType, b_ as FormFieldStringType, b$ as FormFieldStringTypeFormatOptionsOneOf, fe as FormLayout, fY as FormOverride, fZ as FormProperties, fX as FormRule, hY as FormSubmissionQuerySpec, hW as FormSubmissionSearchSpec, bG as FormSubmissionStatusUpdatedEvent, hq as FormSubmissionsCount, b2 as Format, a4 as FormatEnumFormat, i9 as FormatEnumFormatWithLiterals, j9 as FormatWithLiterals, hG as FormattedFormSubmission, hD as FormattedSubmission, dj as GIF, di as GIFData, ak as GIFType, ir as GIFTypeWithLiterals, d8 as GalleryData, de as GalleryOptions, df as GalleryOptionsLayout, hb as GetDeletedSubmissionRequest, hC as GetFormattedSubmissionRequest, hu as GetMediaUploadURLRequest, gV as GetSubmissionByCheckoutIdRequest, gW as GetSubmissionByCheckoutIdResponse, hw as GetSubmissionDownloadUrlRequest, gT as GetSubmissionRequest, gU as GetSubmissionResponse, dC as Gradient, fi as Group, dl as HTMLData, dm as HTMLDataDataOneOf, hB as HeadersEntry, dk as HeadingData, cY as Height, gh as HiddenOptions, bT as IdentificationData, bU as IdentificationDataIdOneOf, bu as IdentityType, jB as IdentityTypeWithLiterals, da as Image, dn as ImageData, dq as ImageDataStyles, aP as ImageFit, iW as ImageFitWithLiterals, aN as ImagePosition, iU as ImagePositionWithLiterals, dZ as ImageStyles, fp as InPersonOptions, aD as InitialExpandedItems, iK as InitialExpandedItemsWithLiterals, cD as InputField, cE as InputFieldInputTypeOptionsOneOf, b5 as InputType, jc as InputTypeWithLiterals, c9 as IntegerType, gA as IsFormSubmittableRequest, gB as IsFormSubmittableResponse, dc as Item, dd as ItemDataOneOf, fg as ItemLayout, fh as ItemLayoutItemOneOf, gQ as ItemMetadata, dg as ItemStyle, aU as ItemType, i$ as ItemTypeWithLiterals, be as Kind, jl as KindWithLiterals, aB as Layout, el as LayoutCellData, ei as LayoutData, aI as LayoutDataImagePosition, iP as LayoutDataImagePositionWithLiterals, ag as LayoutType, im as LayoutTypeWithLiterals, iI as LayoutWithLiterals, g8 as LimitationRule, ac as LineStyle, ii as LineStyleWithLiterals, c_ as Link, dP as LinkData, c$ as LinkDataOneOf, dr as LinkPreviewData, ds as LinkPreviewDataStyles, aa as LinkTarget, ig as LinkTargetWithLiterals, h7 as ListDeletedSubmissionsRequest, hE as ListFormattedSubmissionsRequest, hF as ListFormattedSubmissionsResponse, ec as ListValue, fn as Location, fo as LocationLocationInfoOneOf, dt as MapData, du as MapSettings, an as MapType, iu as MapTypeWithLiterals, fj as Margin, bJ as MarketingSubscriptionDetails, d9 as Media, er as MediaItem, es as MediaItemMediaOneOf, et as MediaSettings, b3 as MeetingType, ja as MeetingTypeWithLiterals, dQ as MentionData, bS as MessageEnvelope, eo as Metadata, bx as Mode, jE as ModeWithLiterals, f8 as MultilineAddress, cs as MultilineAddressValidation, g7 as NestedForm, cw as NestedFormFieldOverrides, cA as NestedFormOverrides, cO as Node, cP as NodeDataOneOf, cQ as NodeStyle, a6 as NodeType, ib as NodeTypeWithLiterals, aG as NullValue, iN as NullValueWithLiterals, aS as NumberComponentType, iZ as NumberComponentTypeWithLiterals, eH as NumberCorrectAnswersList, c8 as NumberErrorMessages, eK as NumberInput, aQ as NumberOfColumns, iX as NumberOfColumnsWithLiterals, eJ as NumberQuizFieldSettings, eI as NumberType, fQ as ObjectArray, b0 as ObjectArrayComponentType, fR as ObjectArrayComponentTypeOptionsOneOf, j7 as ObjectArrayComponentTypeWithLiterals, cv as ObjectArrayType, cg as ObjectErrorMessages, eQ as ObjectType, ce as ObjectTypePropertiesType, cf as ObjectTypePropertiesTypePropertiesTypeOneOf, e4 as Oembed, br as Operator, jy as OperatorWithLiterals, Y as OptInLevel, i1 as OptInLevelWithLiterals, eX as Option, dG as OptionDesign, dB as OptionLayout, go as OrCondition, bD as OrderDetails, ee as OrderedListData, ah as Orientation, io as OrientationWithLiterals, aJ as Origin, iQ as OriginWithLiterals, bd as OverrideEntityType, bq as OverrideEntityTypeEnumOverrideEntityType, jx as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jk as OverrideEntityTypeWithLiterals, d7 as PDFSettings, fV as PageNavigationOptions, dv as ParagraphData, gx as PassFailMessages, eG as Password, fK as Payment, aZ as PaymentComponentType, fL as PaymentComponentTypeOptionsOneOf, j4 as PaymentComponentTypeWithLiterals, f6 as PaymentInput, cm as PaymentType, dx as Permissions, cJ as PhoneConstraints, fv as PhoneInfo, b7 as PhoneInfoTag, je as PhoneInfoTagWithLiterals, eA as PhoneInput, fr as PhoneOptions, ay as Placement, iF as PlacementWithLiterals, e2 as PlaybackOptions, cU as PluginContainerData, a8 as PluginContainerDataAlignment, id as PluginContainerDataAlignmentWithLiterals, cV as PluginContainerDataWidth, cW as PluginContainerDataWidthDataOneOf, dH as Poll, dw as PollData, dI as PollDataLayout, dF as PollDesign, dA as PollLayout, ar as PollLayoutDirection, iy as PollLayoutDirectionWithLiterals, aq as PollLayoutType, ix as PollLayoutTypeWithLiterals, dy as PollOption, av as Position, iC as PositionWithLiterals, f_ as PostSubmissionTriggers, ck as PredefinedValidation, cl as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, i7 as PriceTypeWithLiterals, e0 as PricingData, cq as Product, f2 as ProductCheckboxGroup, f3 as ProductCheckboxGroupOption, cr as ProductPriceOptionsOneOf, a1 as ProductType, i6 as ProductTypeWithLiterals, eR as PropertiesType, aV as PropertiesTypeEnum, j0 as PropertiesTypeEnumWithLiterals, eS as PropertiesTypePropertiesTypeOptionsOneOf, bE as PublicTags, cn as QuantityLimit, hc as QuerySubmissionRequest, hn as QuerySubmissionsByNamespaceForExportRequest, ho as QuerySubmissionsByNamespaceForExportResponse, hl as QuerySubmissionsByNamespaceRequest, hm as QuerySubmissionsByNamespaceResponse, eV as QuizFieldSettings, gu as QuizSettings, gv as QuizSettingsPassingCriteriaOneOf, gw as QuizSettingsResultsDisplayOptionsOneOf, eu as RadioGroup, ev as RadioGroupOption, eL as RatingInput, gd as RedirectOptions, d0 as Rel, h3 as RemoveSubmissionFromTrashBinRequest, h4 as RemoveSubmissionFromTrashBinResponse, bH as RemovedSubmissionFromTrash, fd as Repeater, bl as RequiredIndicator, bm as RequiredIndicatorPlacement, jt as RequiredIndicatorPlacementWithLiterals, g9 as RequiredIndicatorProperties, js as RequiredIndicatorWithLiterals, gg as RequiredOptions, ax as Resizing, iE as ResizingWithLiterals, aL as ResponsivenessBehaviour, iS as ResponsivenessBehaviourWithLiterals, bO as RestoreInfo, h2 as RestoreSubmissionFromTrashBinRequest, bs as ResultsDisplay, jz as ResultsDisplayWithLiterals, d_ as RibbonStyles, cN as RichContent, fU as RichContentOptions, gf as Rule, gq as RuleFormOverride, gr as RuleFormOverrideEntityTypeOptionsOneOf, aH as Scaling, iO as ScalingWithLiterals, fM as Scheduling, b1 as SchedulingComponentType, fN as SchedulingComponentTypeOptionsOneOf, j8 as SchedulingComponentTypeWithLiterals, hi as SearchDetails, hj as SearchSubmissionsByNamespaceForExportRequest, hk as SearchSubmissionsByNamespaceForExportResponse, hf as SearchSubmissionsByNamespaceRequest, fk as Section, eF as ServiceOption, e_ as ServicesCheckboxGroup, eE as ServicesDropdown, dz as Settings, em as ShapeData, en as ShapeDataStyles, f1 as Signature, bw as SortOrder, jD as SortOrderWithLiterals, he as Sorting, al as Source, is as SourceWithLiterals, bk as SpamFilterProtectionLevel, jr as SpamFilterProtectionLevelWithLiterals, cX as Spoiler, dS as SpoilerData, b4 as StaffStrategySelection, jb as StaffStrategySelectionWithLiterals, by as Status, jF as StatusWithLiterals, fW as Step, a5 as StringComponentType, ia as StringComponentTypeWithLiterals, cF as StringCorrectAnswersList, c0 as StringErrorMessages, cL as StringQuizFieldSettings, cG as StringType, c1 as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, i3 as StringTypeFormatEnumFormatWithLiterals, cH as StringTypeFormatOptionsOneOf, c5 as StringTypePhoneConstraints, c6 as StringTypeValidationMessages, cZ as Styles, dp as StylesBorder, am as StylesPosition, it as StylesPositionWithLiterals, bI as SubmissionContactMapped, bK as SubmissionContactMappingSkipped, hx as SubmissionDocument, hy as SubmissionDocumentDocumentOneOf, bz as SubmissionErrorType, jG as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, i0 as SubmissionStatusWithLiterals, hR as SubmissionValidationError, hS as SubmissionValidationErrorErrorMessageOneOf, hQ as SubmissionValidationErrors, gI as SubmissionValidationErrorsDetails, hX as SubmissionsQueryResult, gE as SubmitContactResponse, ga as SubmitSettings, gb as SubmitSettingsSubmitSuccessActionOptionsOneOf, bo as SubmitSuccessAction, jv as SubmitSuccessActionWithLiterals, bA as Submitter, bB as SubmitterSubmitterOneOf, ba as SubscriptionChannel, jh as SubscriptionChannelWithLiterals, fy as SubscriptionInfo, bi as SubscriptionInfoOptInLevel, jp as SubscriptionInfoOptInLevelWithLiterals, e8 as TableCellData, e6 as TableData, b8 as Tag, bF as TagList, jf as TagWithLiterals, gs as Tags, eZ as TagsOption, gt as TagsTagList, bn as Target, ju as TargetWithLiterals, ab as TextAlignment, ih as TextAlignmentWithLiterals, dK as TextData, cM as TextInput, eq as TextNodeStyle, d2 as TextStyle, gc as ThankYouMessageOptions, dh as Thumbnails, aj as ThumbnailsAlignment, iq as ThumbnailsAlignmentWithLiterals, eC as TimeInput, a$ as Type, j6 as TypeWithLiterals, hH as UpdateExtendedFieldsRequest, gX as UpdateSubmissionRequest, gY as UpdateSubmissionResponse, aY as UploadFileFormat, j3 as UploadFileFormatWithLiterals, f$ as UpsertContact, gD as UpsertContactFromSubmissionRequest, g0 as V4FormFieldContactInfo, g1 as V4FormFieldContactInfoAdditionalInfoOneOf, hN as ValidateFormSubmissionRequest, cx as Validation, gJ as ValidationError, a0 as ValidationFormat, i5 as ValidationFormatWithLiterals, cK as ValidationMessages, cy as ValidationValidationOneOf, aF as VerticalAlignment, aK as VerticalAlignmentAlignment, iR as VerticalAlignmentAlignmentWithLiterals, iM as VerticalAlignmentWithLiterals, db as Video, fq as VideoConferenceOptions, e1 as VideoData, af as ViewMode, il as ViewModeWithLiterals, ao as ViewRole, iv as ViewRoleWithLiterals, ap as VoteRole, iw as VoteRoleWithLiterals, Z as WebhookIdentityType, i2 as WebhookIdentityTypeWithLiterals, ad as Width, a7 as WidthType, ic as WidthTypeWithLiterals, ij as WidthWithLiterals, fI as WixFile, aX as WixFileComponentType, fJ as WixFileComponentTypeOptionsOneOf, j2 as WixFileComponentTypeWithLiterals, fF as _Array, fG as _ArrayComponentTypeOptionsOneOf, fD as _Boolean, fE as _BooleanComponentTypeOptionsOneOf, fB as _Number, fC as _NumberComponentTypeOptionsOneOf, fH as _Object, fz as _String, fA as _StringComponentTypeOptionsOneOf, h$ as utils } from './forms-v4-submission-submissions.universal-DSP0qe-E.js';
|
|
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, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-DR-8_Ah8.js';
|
|
3
|
+
export { c1 as AccountInfo, i8 as AccountInfoMetadata, bZ as ActionEvent, g2 as Address, g3 as AddressComponentTypeOptionsOneOf, fM as AddressInfo, bo as AddressInfoTag, jK as AddressInfoTagWithLiterals, fp as AddressLine2, aV as Alignment, jf as AlignmentWithLiterals, gy as AllowedValuesOptions, dY as AnchorData, gD as AndCondition, e3 as AppEmbedData, e4 as AppEmbedDataAppDataOneOf, aE as AppType, i_ as AppTypeWithLiterals, h4 as ApplicationError, fB as Appointment, bN as AppointmentDetails, fC as AppointmentFormatInfoOneOf, b1 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, cr as ArrayErrorMessages, f7 as ArrayItems, f8 as ArrayItemsItemTypeOptionsOneOf, f3 as ArrayType, cp as ArrayTypeArrayItems, cq as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, iU as AspectRatioWithLiterals, eo as AudioData, cb as Availability, ex as Backdrop, aN as BackdropType, j7 as BackdropTypeWithLiterals, d2 as Background, dN as BackgroundGradient, eD as BackgroundImage, a7 as BackgroundType, it as BackgroundTypeWithLiterals, ev as Banner, i6 as BaseEventMetadata, er as BlockquoteData, e5 as BookingData, a_ as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, cj as BooleanErrorMessages, f0 as BooleanType, d0 as Border, el as BorderColors, em as BorderWidths, fv as BreakPoint, h5 as BulkActionMetadata, h0 as BulkCreateSubmissionBySubmitterData, g$ as BulkCreateSubmissionBySubmitterRequest, h1 as BulkCreateSubmissionBySubmitterResponse, hf as BulkDeleteSubmissionRequest, hg as BulkDeleteSubmissionResult, hK as BulkMarkSubmissionsAsSeenRequest, hk as BulkRemoveSubmissionFromTrashBinRequest, hl as BulkRemoveSubmissionFromTrashBinResult, h2 as BulkSubmissionResult, id as BulkUpdateFormSubmissionTagsByFilterOptions, h_ as BulkUpdateFormSubmissionTagsByFilterRequest, h$ as BulkUpdateFormSubmissionTagsByFilterResponse, ic as BulkUpdateFormSubmissionTagsOptions, hX as BulkUpdateFormSubmissionTagsRequest, hY as BulkUpdateFormSubmissionTagsResponse, hZ as BulkUpdateFormSubmissionTagsResult, eq as BulletedListData, cZ as ButtonData, ab as ButtonDataType, ix as ButtonDataTypeWithLiterals, e7 as ButtonStyles, es as CaptionData, eB as CardData, eC as CardDataBackground, aT as CardDataBackgroundType, jd as CardDataBackgroundTypeWithLiterals, ea as CardStyles, aC as CardStylesAlignment, iY as CardStylesAlignmentWithLiterals, aB as CardStylesType, iX as CardStylesTypeWithLiterals, ek as CellStyle, bw as ChangeableProperty, jS as ChangeablePropertyWithLiterals, f1 as Checkbox, fa as CheckboxGroup, gP as Checkout, dc as CodeBlockData, eg as CollapsibleListData, dZ as ColorData, d1 as Colors, k2 as CommonQueryWithEntityContext, k1 as CommonSearchWithEntityContext, b5 as ComponentType, jr as ComponentTypeWithLiterals, fc as ComponentsTags, gF as Condition, gB as ConditionNode, gC as ConditionNodeNodeOneOf, hc as ConfirmSubmissionRequest, bg as ConfirmationLevel, jC as ConfirmationLevelWithLiterals, bA as ContactAutofill, jW as ContactAutofillWithLiterals, bi as ContactField, jE as ContactFieldWithLiterals, f2 as CorrectAnswersList, hH as CountDeletedSubmissionsRequest, hE as CountSubmissionsByFilterRequest, hG as CountSubmissionsRequest, c2 as CreateCheckoutFromSubmissionRequest, c3 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gO as CreateCheckoutFromSubmissionResponse, gZ as CreateSubmissionBySubmitterRequest, g_ as CreateSubmissionBySubmitterResponse, gV as CreateSubmissionRequest, gW as CreateSubmissionResponse, ak as Crop, iG as CropWithLiterals, hn as CursorPaging, ho as CursorPagingMetadata, hs as CursorQueryPagingMethodOneOf, hv as CursorSearch, hw as CursorSearchPagingMethodOneOf, hp as Cursors, fN as CustomFieldInfo, eM as CustomOption, cH as DataExtensionsDetails, eR as DateInput, eT as DatePicker, cc as DateRange, ca as DateTimeAdvancedConstraints, cQ as DateTimeConstraints, eP as DateTimeInput, $ as DayOfWeek, ik as DayOfWeekWithLiterals, dW as Decoration, dX as DecorationDataOneOf, av as DecorationType, iR as DecorationTypeWithLiterals, fq as DefaultCountryConfig, fr as DefaultCountryConfigOptionsOneOf, hd as DeleteSubmissionRequest, he as DeleteSubmissionResponse, dU as Design, aQ as DesignTarget, ja as DesignTargetWithLiterals, ei as Dimensions, aG as Direction, j0 as DirectionWithLiterals, g6 as DisplayField, g7 as DisplayFieldDisplayFieldTypeOptionsOneOf, bj as DisplayFieldType, jF as DisplayFieldTypeWithLiterals, de as DividerData, ag as DividerDataAlignment, iC as DividerDataAlignmentWithLiterals, hO as DocumentReady, eF as DocumentStyle, bT as DomainEvent, bU as DomainEventBodyOneOf, fk as DonationInput, fl as DonationInputOption, hP as DownloadSubmissionRequest, eN as Dropdown, eO as DropdownOption, cx as DynamicPriceOptions, fK as EmailInfo, bd as EmailInfoTag, jz as EmailInfoTagWithLiterals, ee as EmbedData, gS as Empty, bV as EntityCreatedEvent, bY as EntityDeletedEvent, bX as EntityUpdatedEvent, bC as ErrorType, jY as ErrorTypeWithLiterals, e6 as EventData, i7 as EventMetadata, bJ as ExtendedFields, cJ as Field, cK as FieldFieldTypeOptionsOneOf, gu as FieldGroup, gz as FieldOverride, gA as FieldOverridePropertyTypeOptionsOneOf, cB as FieldOverrides, a3 as FieldType, ip as FieldTypeWithLiterals, i1 as FieldViolation, i2 as FieldViolationErrorDataOneOf, cC as FieldsOverrides, fs as FieldsSettings, df as FileData, dg as FileSource, dh as FileSourceDataOneOf, ff as FileType, fg as FileUpload, aY as FirstDayOfWeek, ji as FirstDayOfWeekWithLiterals, fn as FixedPayment, cw as FixedPriceOptions, e2 as FontFamilyData, e0 as FontSizeData, aw as FontType, iS as FontTypeWithLiterals, c4 as Form, hI as FormDeletedSubmissionsCount, c5 as FormField, ck as FormFieldArrayType, ci as FormFieldBooleanType, fI as FormFieldContactInfo, fJ as FormFieldContactInfoAdditionalInfoOneOf, gk as FormFieldContactInfoAddressInfo, bq as FormFieldContactInfoContactField, jM as FormFieldContactInfoContactFieldWithLiterals, gl as FormFieldContactInfoCustomFieldInfo, gi as FormFieldContactInfoEmailInfo, bm as FormFieldContactInfoEmailInfoTag, jI as FormFieldContactInfoEmailInfoTagWithLiterals, gj as FormFieldContactInfoPhoneInfo, bn as FormFieldContactInfoPhoneInfoTag, jJ as FormFieldContactInfoPhoneInfoTagWithLiterals, gm as FormFieldContactInfoSubscriptionInfo, cf as FormFieldNumberType, cl as FormFieldObjectType, c6 as FormFieldStringType, c7 as FormFieldStringTypeFormatOptionsOneOf, fu as FormLayout, gc as FormOverride, gd as FormProperties, gb as FormRule, ib as FormSubmissionQuerySpec, i9 as FormSubmissionSearchSpec, bO as FormSubmissionStatusUpdatedEvent, hF as FormSubmissionsCount, b9 as Format, a4 as FormatEnumFormat, iq as FormatEnumFormatWithLiterals, jv as FormatWithLiterals, hV as FormattedFormSubmission, hS as FormattedSubmission, dv as GIF, du as GIFData, am as GIFType, iI as GIFTypeWithLiterals, dj as GalleryData, dq as GalleryOptions, dr as GalleryOptionsLayout, hq as GetDeletedSubmissionRequest, hR as GetFormattedSubmissionRequest, hJ as GetMediaUploadURLRequest, h8 as GetSubmissionByCheckoutIdRequest, h9 as GetSubmissionByCheckoutIdResponse, hL as GetSubmissionDownloadUrlRequest, h6 as GetSubmissionRequest, h7 as GetSubmissionResponse, c_ as Gradient, a8 as GradientType, iu as GradientTypeWithLiterals, fy as Group, dx as HTMLData, dy as HTMLDataDataOneOf, hQ as HeadersEntry, dw as HeadingData, d7 as Height, gx as HiddenOptions, b$ as IdentificationData, c0 as IdentificationDataIdOneOf, bB as IdentityType, jX as IdentityTypeWithLiterals, dl as Image, dz as ImageData, dB as ImageDataStyles, aW as ImageFit, jg as ImageFitWithLiterals, aU as ImagePosition, aS as ImagePositionPosition, jc as ImagePositionPositionWithLiterals, je as ImagePositionWithLiterals, aJ as ImageScalingScaling, j3 as ImageScalingScalingWithLiterals, e8 as ImageStyles, fF as InPersonOptions, aF as InitialExpandedItems, i$ as InitialExpandedItemsWithLiterals, cL as InputField, cM as InputFieldInputTypeOptionsOneOf, bc as InputType, jy as InputTypeWithLiterals, ch as IntegerType, gQ as IsFormSubmittableRequest, gR as IsFormSubmittableResponse, dn as Item, dp as ItemDataOneOf, fw as ItemLayout, fx as ItemLayoutItemOneOf, h3 as ItemMetadata, ds as ItemStyle, a$ as ItemType, jl as ItemTypeWithLiterals, bl as Kind, jH as KindWithLiterals, aD as Layout, ey as LayoutCellData, et as LayoutData, ew as LayoutDataBackground, eu as LayoutDataBackgroundImage, aM as LayoutDataBackgroundType, j6 as LayoutDataBackgroundTypeWithLiterals, aK as LayoutDataImagePosition, j4 as LayoutDataImagePositionWithLiterals, ai as LayoutType, iE as LayoutTypeWithLiterals, iZ as LayoutWithLiterals, go as LimitationRule, ae as LineStyle, iA as LineStyleWithLiterals, d9 as Link, d_ as LinkData, da as LinkDataOneOf, dC as LinkPreviewData, dD as LinkPreviewDataStyles, ac as LinkTarget, iy as LinkTargetWithLiterals, hm as ListDeletedSubmissionsRequest, hT as ListFormattedSubmissionsRequest, hU as ListFormattedSubmissionsResponse, en as ListValue, fD as Location, fE as LocationLocationInfoOneOf, dE as MapData, dF as MapSettings, ap as MapType, iL as MapTypeWithLiterals, fz as Margin, bR as MarketingSubscriptionDetails, dk as Media, eH as MediaItem, eI as MediaItemMediaOneOf, eJ as MediaSettings, ba as MeetingType, jw as MeetingTypeWithLiterals, d$ as MentionData, b_ as MessageEnvelope, eE as Metadata, bE as Mode, j_ as ModeWithLiterals, fo as MultilineAddress, cA as MultilineAddressValidation, gn as NestedForm, cE as NestedFormFieldOverrides, cI as NestedFormOverrides, cW as Node, cX as NodeDataOneOf, cY as NodeStyle, a6 as NodeType, is as NodeTypeWithLiterals, aI as NullValue, j2 as NullValueWithLiterals, aZ as NumberComponentType, jj as NumberComponentTypeWithLiterals, eX as NumberCorrectAnswersList, cg as NumberErrorMessages, e_ as NumberInput, aX as NumberOfColumns, jh as NumberOfColumnsWithLiterals, eZ as NumberQuizFieldSettings, eY as NumberType, g4 as ObjectArray, b7 as ObjectArrayComponentType, g5 as ObjectArrayComponentTypeOptionsOneOf, jt as ObjectArrayComponentTypeWithLiterals, cD as ObjectArrayType, co as ObjectErrorMessages, f4 as ObjectType, cm as ObjectTypePropertiesType, cn as ObjectTypePropertiesTypePropertiesTypeOneOf, ef as Oembed, by as Operator, jU as OperatorWithLiterals, Y as OptInLevel, ih as OptInLevelWithLiterals, fb as Option, dR as OptionDesign, dM as OptionLayout, gE as OrCondition, bK as OrderDetails, ep as OrderedListData, aj as Orientation, iF as OrientationWithLiterals, aL as Origin, j5 as OriginWithLiterals, bk as OverrideEntityType, bx as OverrideEntityTypeEnumOverrideEntityType, jT as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jG as OverrideEntityTypeWithLiterals, di as PDFSettings, g9 as PageNavigationOptions, dG as ParagraphData, gN as PassFailMessages, eW as Password, f_ as Payment, b4 as PaymentComponentType, f$ as PaymentComponentTypeOptionsOneOf, jq as PaymentComponentTypeWithLiterals, fm as PaymentInput, cu as PaymentType, dI as Permissions, cR as PhoneConstraints, fL as PhoneInfo, be as PhoneInfoTag, jA as PhoneInfoTagWithLiterals, eQ as PhoneInput, fH as PhoneOptions, aA as Placement, iW as PlacementWithLiterals, ed as PlaybackOptions, d3 as PluginContainerData, aa as PluginContainerDataAlignment, iw as PluginContainerDataAlignmentWithLiterals, d4 as PluginContainerDataWidth, d5 as PluginContainerDataWidthDataOneOf, dS as Poll, dH as PollData, dT as PollDataLayout, dQ as PollDesign, dO as PollDesignBackground, dP as PollDesignBackgroundBackgroundOneOf, au as PollDesignBackgroundType, iQ as PollDesignBackgroundTypeWithLiterals, dL as PollLayout, at as PollLayoutDirection, iP as PollLayoutDirectionWithLiterals, as as PollLayoutType, iO as PollLayoutTypeWithLiterals, dJ as PollOption, ax as Position, iT as PositionWithLiterals, ge as PostSubmissionTriggers, cs as PredefinedValidation, ct as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, io as PriceTypeWithLiterals, eb as PricingData, cy as Product, fi as ProductCheckboxGroup, fj as ProductCheckboxGroupOption, cz as ProductPriceOptionsOneOf, a1 as ProductType, im as ProductTypeWithLiterals, f5 as PropertiesType, b0 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, f6 as PropertiesTypePropertiesTypeOptionsOneOf, bL as PublicTags, cv as QuantityLimit, hr as QuerySubmissionRequest, hC as QuerySubmissionsByNamespaceForExportRequest, hD as QuerySubmissionsByNamespaceForExportResponse, hA as QuerySubmissionsByNamespaceRequest, hB as QuerySubmissionsByNamespaceResponse, f9 as QuizFieldSettings, gK as QuizSettings, gL as QuizSettingsPassingCriteriaOneOf, gM as QuizSettingsResultsDisplayOptionsOneOf, eK as RadioGroup, eL as RadioGroupOption, e$ as RatingInput, gt as RedirectOptions, db as Rel, hi as RemoveSubmissionFromTrashBinRequest, hj as RemoveSubmissionFromTrashBinResponse, bP as RemovedSubmissionFromTrash, ft as Repeater, bs as RequiredIndicator, bt as RequiredIndicatorPlacement, jP as RequiredIndicatorPlacementWithLiterals, gp as RequiredIndicatorProperties, jO as RequiredIndicatorWithLiterals, gw as RequiredOptions, az as Resizing, iV as ResizingWithLiterals, aP as ResponsivenessBehaviour, j9 as ResponsivenessBehaviourWithLiterals, bW as RestoreInfo, hh as RestoreSubmissionFromTrashBinRequest, bz as ResultsDisplay, jV as ResultsDisplayWithLiterals, e9 as RibbonStyles, cV as RichContent, g8 as RichContentOptions, gv as Rule, gG as RuleFormOverride, gH as RuleFormOverrideEntityTypeOptionsOneOf, aR as Scaling, jb as ScalingWithLiterals, g0 as Scheduling, b8 as SchedulingComponentType, g1 as SchedulingComponentTypeOptionsOneOf, ju as SchedulingComponentTypeWithLiterals, hx as SearchDetails, hy as SearchSubmissionsByNamespaceForExportRequest, hz as SearchSubmissionsByNamespaceForExportResponse, hu as SearchSubmissionsByNamespaceRequest, fA as Section, eV as ServiceOption, fe as ServicesCheckboxGroup, eU as ServicesDropdown, dK as Settings, ez as ShapeData, eA as ShapeDataStyles, fh as Signature, bD as SortOrder, jZ as SortOrderWithLiterals, ht as Sorting, an as Source, iJ as SourceWithLiterals, br as SpamFilterProtectionLevel, jN as SpamFilterProtectionLevelWithLiterals, d6 as Spoiler, e1 as SpoilerData, bb as StaffStrategySelection, jx as StaffStrategySelectionWithLiterals, bF as Status, j$ as StatusWithLiterals, ga as Step, c$ as Stop, a5 as StringComponentType, ir as StringComponentTypeWithLiterals, cN as StringCorrectAnswersList, c8 as StringErrorMessages, cT as StringQuizFieldSettings, cO as StringType, c9 as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ij as StringTypeFormatEnumFormatWithLiterals, cP as StringTypeFormatOptionsOneOf, cd as StringTypePhoneConstraints, ce as StringTypeValidationMessages, d8 as Styles, dA as StylesBorder, ao as StylesPosition, iK as StylesPositionWithLiterals, bQ as SubmissionContactMapped, bS as SubmissionContactMappingSkipped, hM as SubmissionDocument, hN as SubmissionDocumentDocumentOneOf, bG as SubmissionErrorType, k0 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, ig as SubmissionStatusWithLiterals, i4 as SubmissionValidationError, i5 as SubmissionValidationErrorErrorMessageOneOf, i3 as SubmissionValidationErrors, gX as SubmissionValidationErrorsDetails, ia as SubmissionsQueryResult, gU as SubmitContactResponse, gq as SubmitSettings, gr as SubmitSettingsSubmitSuccessActionOptionsOneOf, bv as SubmitSuccessAction, jR as SubmitSuccessActionWithLiterals, bH as Submitter, bI as SubmitterSubmitterOneOf, bh as SubscriptionChannel, jD as SubscriptionChannelWithLiterals, fO as SubscriptionInfo, bp as SubscriptionInfoOptInLevel, jL as SubscriptionInfoOptInLevelWithLiterals, ej as TableCellData, eh as TableData, bf as Tag, bM as TagList, jB as TagWithLiterals, gI as Tags, fd as TagsOption, gJ as TagsTagList, bu as Target, jQ as TargetWithLiterals, ad as TextAlignment, iz as TextAlignmentWithLiterals, dV as TextData, cU as TextInput, eG as TextNodeStyle, dd as TextStyle, gs as ThankYouMessageOptions, dt as Thumbnails, al as ThumbnailsAlignment, iH as ThumbnailsAlignmentWithLiterals, eS as TimeInput, b6 as Type, js as TypeWithLiterals, hW as UpdateExtendedFieldsRequest, ha as UpdateSubmissionRequest, hb as UpdateSubmissionResponse, b3 as UploadFileFormat, jp as UploadFileFormatWithLiterals, gf as UpsertContact, gT as UpsertContactFromSubmissionRequest, gg as V4FormFieldContactInfo, gh as V4FormFieldContactInfoAdditionalInfoOneOf, i0 as ValidateFormSubmissionRequest, cF as Validation, gY as ValidationError, a0 as ValidationFormat, il as ValidationFormatWithLiterals, cS as ValidationMessages, cG as ValidationValidationOneOf, aH as VerticalAlignment, aO as VerticalAlignmentAlignment, j8 as VerticalAlignmentAlignmentWithLiterals, j1 as VerticalAlignmentWithLiterals, dm as Video, fG as VideoConferenceOptions, ec as VideoData, ah as ViewMode, iD as ViewModeWithLiterals, aq as ViewRole, iM as ViewRoleWithLiterals, ar as VoteRole, iN as VoteRoleWithLiterals, Z as WebhookIdentityType, ii as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, iv as WidthTypeWithLiterals, iB as WidthWithLiterals, fY as WixFile, b2 as WixFileComponentType, fZ as WixFileComponentTypeOptionsOneOf, jo as WixFileComponentTypeWithLiterals, fV as _Array, fW as _ArrayComponentTypeOptionsOneOf, fT as _Boolean, fU as _BooleanComponentTypeOptionsOneOf, fR as _Number, fS as _NumberComponentTypeOptionsOneOf, fX as _Object, fP as _String, fQ as _StringComponentTypeOptionsOneOf, ie as utils } from './forms-v4-submission-submissions.universal-DR-8_Ah8.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|