@wix/auto_sdk_forms_submissions 1.0.102 → 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.
Files changed (41) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-M17yHtDQ.d.ts → forms-v4-submission-submissions.universal-DR-8_Ah8.d.ts} +232 -24
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +70 -12
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +70 -12
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +227 -25
  9. package/build/cjs/meta.js +70 -12
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-M17yHtDQ.d.mts → forms-v4-submission-submissions.universal-DR-8_Ah8.d.mts} +232 -24
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +63 -12
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +63 -12
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +227 -25
  19. package/build/es/meta.mjs +63 -12
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-BeboyW2D.d.ts → forms-v4-submission-submissions.universal-2yoJloqj.d.ts} +232 -24
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +70 -12
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +70 -12
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +227 -25
  29. package/build/internal/cjs/meta.js +70 -12
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-BeboyW2D.d.mts → forms-v4-submission-submissions.universal-2yoJloqj.d.mts} +232 -24
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +63 -12
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +63 -12
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +227 -25
  39. package/build/internal/es/meta.mjs +63 -12
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -69,6 +69,12 @@ interface FormSubmission {
69
69
  accessRestriction?: string | null;
70
70
  /** Tag IDs collections associated with the current entity. */
71
71
  tags?: PublicTags;
72
+ /**
73
+ * Appointment details.
74
+ * This object is only applicable when submitting a form that creates a booking appointment.
75
+ * @readonly
76
+ */
77
+ appointmentDetails?: AppointmentDetails;
72
78
  }
73
79
  declare enum SubmissionStatus {
74
80
  /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
@@ -181,6 +187,13 @@ interface TagList {
181
187
  */
182
188
  tagIds?: string[];
183
189
  }
190
+ interface AppointmentDetails {
191
+ /**
192
+ * ID of the staff member assigned to the appointment.
193
+ * @format GUID
194
+ */
195
+ staffMemberId?: string | null;
196
+ }
184
197
  interface FormSubmissionStatusUpdatedEvent {
185
198
  /** Updated submission. */
186
199
  submission?: FormSubmission;
@@ -1510,6 +1523,8 @@ interface Node extends NodeDataOneOf {
1510
1523
  layoutCellData?: LayoutCellData;
1511
1524
  /** Data for a shape node. */
1512
1525
  shapeData?: ShapeData;
1526
+ /** Data for a card node. */
1527
+ cardData?: CardData;
1513
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. */
1514
1529
  type?: NodeTypeWithLiterals;
1515
1530
  /** Node ID. */
@@ -1579,6 +1594,8 @@ interface NodeDataOneOf {
1579
1594
  layoutCellData?: LayoutCellData;
1580
1595
  /** Data for a shape node. */
1581
1596
  shapeData?: ShapeData;
1597
+ /** Data for a card node. */
1598
+ cardData?: CardData;
1582
1599
  }
1583
1600
  declare enum NodeType {
1584
1601
  PARAGRAPH = "PARAGRAPH",
@@ -1615,10 +1632,11 @@ declare enum NodeType {
1615
1632
  CAPTION = "CAPTION",
1616
1633
  LAYOUT = "LAYOUT",
1617
1634
  LAYOUT_CELL = "LAYOUT_CELL",
1618
- SHAPE = "SHAPE"
1635
+ SHAPE = "SHAPE",
1636
+ CARD = "CARD"
1619
1637
  }
1620
1638
  /** @enumType */
1621
- 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';
1622
1640
  interface NodeStyle {
1623
1641
  /** The top padding value in pixels. */
1624
1642
  paddingTop?: string | null;
@@ -1639,6 +1657,55 @@ interface ButtonData {
1639
1657
  /** Button link details. */
1640
1658
  link?: Link;
1641
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
+ }
1642
1709
  interface Border {
1643
1710
  /**
1644
1711
  * Deprecated: Use `borderWidth` in `styles` instead.
@@ -1668,6 +1735,18 @@ interface Colors {
1668
1735
  */
1669
1736
  background?: string | null;
1670
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
+ }
1671
1750
  interface PluginContainerData {
1672
1751
  /** The width of the node when it's displayed. */
1673
1752
  width?: PluginContainerDataWidth;
@@ -1788,17 +1867,23 @@ interface Styles {
1788
1867
  */
1789
1868
  textColorHover?: string | null;
1790
1869
  /**
1791
- * Background color as a hexadecimal value.
1870
+ * Deprecated: Use `background` instead.
1792
1871
  * @format COLOR_HEX
1872
+ * @deprecated
1793
1873
  */
1794
1874
  backgroundColor?: string | null;
1795
1875
  /**
1796
- * Background color as a hexadecimal value (hover state).
1876
+ * Deprecated: Use `backgroundHover` instead.
1797
1877
  * @format COLOR_HEX
1878
+ * @deprecated
1798
1879
  */
1799
1880
  backgroundColorHover?: string | null;
1800
1881
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
1801
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;
1802
1887
  }
1803
1888
  interface Link extends LinkDataOneOf {
1804
1889
  /** The absolute URL for the linked document. */
@@ -2435,7 +2520,7 @@ interface OptionLayout {
2435
2520
  /** Sets whether to display option images. Defaults to `false`. */
2436
2521
  enableImage?: boolean | null;
2437
2522
  }
2438
- declare enum BackgroundType {
2523
+ declare enum PollDesignBackgroundType {
2439
2524
  /** Color background type */
2440
2525
  COLOR = "COLOR",
2441
2526
  /** Image background type */
@@ -2444,8 +2529,8 @@ declare enum BackgroundType {
2444
2529
  GRADIENT = "GRADIENT"
2445
2530
  }
2446
2531
  /** @enumType */
2447
- type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
2448
- interface Gradient {
2532
+ type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
2533
+ interface BackgroundGradient {
2449
2534
  /** The gradient angle in degrees. */
2450
2535
  angle?: number | null;
2451
2536
  /**
@@ -2459,7 +2544,7 @@ interface Gradient {
2459
2544
  */
2460
2545
  lastColor?: string | null;
2461
2546
  }
2462
- interface Background extends BackgroundBackgroundOneOf {
2547
+ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2463
2548
  /**
2464
2549
  * The background color as a hexademical value.
2465
2550
  * @format COLOR_HEX
@@ -2468,12 +2553,12 @@ interface Background extends BackgroundBackgroundOneOf {
2468
2553
  /** An image to use for the background. */
2469
2554
  image?: Media;
2470
2555
  /** Details for a gradient background. */
2471
- gradient?: Gradient;
2556
+ gradient?: BackgroundGradient;
2472
2557
  /** Background type. For each option, include the relevant details. */
2473
- type?: BackgroundTypeWithLiterals;
2558
+ type?: PollDesignBackgroundTypeWithLiterals;
2474
2559
  }
2475
2560
  /** @oneof */
2476
- interface BackgroundBackgroundOneOf {
2561
+ interface PollDesignBackgroundBackgroundOneOf {
2477
2562
  /**
2478
2563
  * The background color as a hexademical value.
2479
2564
  * @format COLOR_HEX
@@ -2482,11 +2567,11 @@ interface BackgroundBackgroundOneOf {
2482
2567
  /** An image to use for the background. */
2483
2568
  image?: Media;
2484
2569
  /** Details for a gradient background. */
2485
- gradient?: Gradient;
2570
+ gradient?: BackgroundGradient;
2486
2571
  }
2487
2572
  interface PollDesign {
2488
2573
  /** Background styling. */
2489
- background?: Background;
2574
+ background?: PollDesignBackground;
2490
2575
  /** Border radius in pixels. */
2491
2576
  borderRadius?: number | null;
2492
2577
  }
@@ -3169,12 +3254,13 @@ interface CaptionData {
3169
3254
  }
3170
3255
  interface LayoutData {
3171
3256
  /**
3172
- * Background color as a hexadecimal value.
3257
+ * Deprecated: Use `background` instead.
3173
3258
  * @format COLOR_HEX
3259
+ * @deprecated
3174
3260
  */
3175
3261
  backgroundColor?: string | null;
3176
3262
  /** Background image. */
3177
- backgroundImage?: BackgroundImage;
3263
+ backgroundImage?: LayoutDataBackgroundImage;
3178
3264
  /**
3179
3265
  * Border color as a hexadecimal value.
3180
3266
  * @format COLOR_HEX
@@ -3182,15 +3268,16 @@ interface LayoutData {
3182
3268
  borderColor?: string | null;
3183
3269
  /** Border width in pixels. */
3184
3270
  borderWidth?: number | null;
3185
- /** Border */
3271
+ /** Border radius in pixels. */
3186
3272
  borderRadius?: number | null;
3187
3273
  /**
3188
- * Backdrop color as a hexadecimal value.
3274
+ * Deprecated: Use `backdrop` instead.
3189
3275
  * @format COLOR_HEX
3276
+ * @deprecated
3190
3277
  */
3191
3278
  backdropColor?: string | null;
3192
- /** Backdrop image.radius in pixels. */
3193
- backdropImage?: BackgroundImage;
3279
+ /** Backdrop image. */
3280
+ backdropImage?: LayoutDataBackgroundImage;
3194
3281
  /** Backdrop top padding. */
3195
3282
  backdropPaddingTop?: number | null;
3196
3283
  /** Backdrop bottom padding */
@@ -3214,8 +3301,12 @@ interface LayoutData {
3214
3301
  designTarget?: DesignTargetWithLiterals;
3215
3302
  /** Banner configuration. When present, this layout is displayed as a banner. */
3216
3303
  banner?: Banner;
3304
+ /** Background styling (color or gradient). */
3305
+ background?: LayoutDataBackground;
3306
+ /** Backdrop styling (color or gradient). */
3307
+ backdrop?: Backdrop;
3217
3308
  }
3218
- declare enum Scaling {
3309
+ declare enum ImageScalingScaling {
3219
3310
  /** Auto image scaling */
3220
3311
  AUTO = "AUTO",
3221
3312
  /** Contain image scaling */
@@ -3224,7 +3315,7 @@ declare enum Scaling {
3224
3315
  COVER = "COVER"
3225
3316
  }
3226
3317
  /** @enumType */
3227
- type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
3318
+ type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
3228
3319
  declare enum LayoutDataImagePosition {
3229
3320
  /** Image positioned at the center */
3230
3321
  CENTER = "CENTER",
@@ -3255,13 +3346,31 @@ declare enum Origin {
3255
3346
  }
3256
3347
  /** @enumType */
3257
3348
  type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
3258
- interface BackgroundImage {
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 {
3259
3368
  /** Background image. */
3260
3369
  media?: Media;
3261
3370
  /** Background image opacity. */
3262
3371
  opacity?: number | null;
3263
3372
  /** Background image scaling. */
3264
- scaling?: ScalingWithLiterals;
3373
+ scaling?: ImageScalingScalingWithLiterals;
3265
3374
  /** Position of background. Defaults to `CENTER`. */
3266
3375
  position?: LayoutDataImagePositionWithLiterals;
3267
3376
  }
@@ -3295,6 +3404,30 @@ interface Banner {
3295
3404
  /** Origin of the banner */
3296
3405
  origin?: OriginWithLiterals;
3297
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
+ }
3298
3431
  interface LayoutCellData {
3299
3432
  /** Size of the cell in 12 columns grid. */
3300
3433
  colSpan?: number | null;
@@ -3316,6 +3449,75 @@ interface ShapeDataStyles {
3316
3449
  /** Map of original color keys to their new color values. */
3317
3450
  colors?: Record<string, string>;
3318
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
+ }
3319
3521
  interface Metadata {
3320
3522
  /** Schema version. */
3321
3523
  version?: number;
@@ -7286,6 +7488,12 @@ interface UpdateSubmission {
7286
7488
  accessRestriction?: string | null;
7287
7489
  /** Tag IDs collections associated with the current entity. */
7288
7490
  tags?: PublicTags;
7491
+ /**
7492
+ * Appointment details.
7493
+ * This object is only applicable when submitting a form that creates a booking appointment.
7494
+ * @readonly
7495
+ */
7496
+ appointmentDetails?: AppointmentDetails;
7289
7497
  }
7290
7498
  /**
7291
7499
  * Confirms a submission.
@@ -7927,4 +8135,4 @@ interface ValidateFormSubmissionOptions {
7927
8135
  fieldsToValidate?: string[];
7928
8136
  }
7929
8137
 
7930
- 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 BulkDeleteSubmissionRequest 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 CreateSubmissionRequest as gF, type CreateSubmissionResponse as gG, type SubmissionValidationErrorsDetails as gH, type ValidationError as gI, type CreateSubmissionBySubmitterRequest as gJ, type CreateSubmissionBySubmitterResponse as gK, type BulkCreateSubmissionBySubmitterRequest as gL, type BulkCreateSubmissionBySubmitterData as gM, type BulkCreateSubmissionBySubmitterResponse as gN, type BulkSubmissionResult as gO, type ItemMetadata as gP, type ApplicationError as gQ, type BulkActionMetadata as gR, type GetSubmissionRequest as gS, type GetSubmissionResponse as gT, type GetSubmissionByCheckoutIdRequest as gU, type GetSubmissionByCheckoutIdResponse as gV, type UpdateSubmissionRequest as gW, type UpdateSubmissionResponse as gX, type ConfirmSubmissionRequest as gY, type DeleteSubmissionRequest as gZ, type DeleteSubmissionResponse 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, type SubmissionStatusWithLiterals as h$, type BulkDeleteSubmissionResult as h0, type RestoreSubmissionFromTrashBinRequest as h1, type RemoveSubmissionFromTrashBinRequest as h2, type RemoveSubmissionFromTrashBinResponse as h3, type BulkRemoveSubmissionFromTrashBinRequest as h4, type BulkRemoveSubmissionFromTrashBinResult as h5, type ListDeletedSubmissionsRequest as h6, type CursorPaging as h7, type CursorPagingMetadata as h8, type Cursors as h9, type HeadersEntry as hA, type GetFormattedSubmissionRequest as hB, type FormattedSubmission as hC, type ListFormattedSubmissionsRequest as hD, type ListFormattedSubmissionsResponse as hE, type FormattedFormSubmission as hF, type UpdateExtendedFieldsRequest as hG, type BulkUpdateFormSubmissionTagsRequest as hH, type BulkUpdateFormSubmissionTagsResponse as hI, type BulkUpdateFormSubmissionTagsResult as hJ, type BulkUpdateFormSubmissionTagsByFilterRequest as hK, type BulkUpdateFormSubmissionTagsByFilterResponse as hL, type ValidateFormSubmissionRequest as hM, type FieldViolation as hN, type FieldViolationErrorDataOneOf as hO, type SubmissionValidationErrors as hP, type SubmissionValidationError as hQ, type SubmissionValidationErrorErrorMessageOneOf as hR, type BaseEventMetadata as hS, type EventMetadata as hT, type AccountInfoMetadata as hU, type FormSubmissionSearchSpec as hV, type SubmissionsQueryResult as hW, type FormSubmissionQuerySpec as hX, type BulkUpdateFormSubmissionTagsOptions as hY, type BulkUpdateFormSubmissionTagsByFilterOptions as hZ, utils as h_, type GetDeletedSubmissionRequest as ha, type QuerySubmissionRequest as hb, type CursorQueryPagingMethodOneOf as hc, type Sorting as hd, type SearchSubmissionsByNamespaceRequest as he, type CursorSearch as hf, type CursorSearchPagingMethodOneOf as hg, type SearchDetails as hh, type SearchSubmissionsByNamespaceForExportRequest as hi, type SearchSubmissionsByNamespaceForExportResponse as hj, type QuerySubmissionsByNamespaceRequest as hk, type QuerySubmissionsByNamespaceResponse as hl, type QuerySubmissionsByNamespaceForExportRequest as hm, type QuerySubmissionsByNamespaceForExportResponse as hn, type CountSubmissionsByFilterRequest as ho, type FormSubmissionsCount as hp, type CountSubmissionsRequest as hq, type CountDeletedSubmissionsRequest as hr, type FormDeletedSubmissionsCount as hs, type GetMediaUploadURLRequest as ht, type BulkMarkSubmissionsAsSeenRequest as hu, type GetSubmissionDownloadUrlRequest as hv, type SubmissionDocument as hw, type SubmissionDocumentDocumentOneOf as hx, type DocumentReady as hy, type DownloadSubmissionRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PropertiesTypeEnumWithLiterals as i$, type OptInLevelWithLiterals as i0, type WebhookIdentityTypeWithLiterals as i1, type StringTypeFormatEnumFormatWithLiterals as i2, type DayOfWeekWithLiterals as i3, type ValidationFormatWithLiterals as i4, type ProductTypeWithLiterals as i5, type PriceTypeWithLiterals as i6, type FieldTypeWithLiterals as i7, type FormatEnumFormatWithLiterals as i8, type StringComponentTypeWithLiterals as i9, type FontTypeWithLiterals as iA, type PositionWithLiterals as iB, type AspectRatioWithLiterals as iC, type ResizingWithLiterals as iD, type PlacementWithLiterals as iE, type CardStylesTypeWithLiterals as iF, type CardStylesAlignmentWithLiterals as iG, type LayoutWithLiterals as iH, type AppTypeWithLiterals as iI, type InitialExpandedItemsWithLiterals as iJ, type DirectionWithLiterals as iK, type VerticalAlignmentWithLiterals as iL, type NullValueWithLiterals as iM, type ScalingWithLiterals as iN, type LayoutDataImagePositionWithLiterals as iO, type OriginWithLiterals as iP, type VerticalAlignmentAlignmentWithLiterals as iQ, type ResponsivenessBehaviourWithLiterals as iR, type DesignTargetWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type NumberComponentTypeWithLiterals as iY, type BooleanComponentTypeWithLiterals as iZ, type ItemTypeWithLiterals as i_, type NodeTypeWithLiterals as ia, type WidthTypeWithLiterals as ib, type PluginContainerDataAlignmentWithLiterals as ic, type ButtonDataTypeWithLiterals as id, type LinkTargetWithLiterals as ie, type TextAlignmentWithLiterals as ig, type LineStyleWithLiterals as ih, type WidthWithLiterals as ii, type DividerDataAlignmentWithLiterals as ij, type ViewModeWithLiterals as ik, type LayoutTypeWithLiterals as il, type OrientationWithLiterals as im, type CropWithLiterals as io, type ThumbnailsAlignmentWithLiterals as ip, type GIFTypeWithLiterals as iq, type SourceWithLiterals as ir, type StylesPositionWithLiterals as is, type MapTypeWithLiterals as it, type ViewRoleWithLiterals as iu, type VoteRoleWithLiterals as iv, type PollLayoutTypeWithLiterals as iw, type PollLayoutDirectionWithLiterals as ix, type BackgroundTypeWithLiterals as iy, type DecorationTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, querySubmission as j$, type ArrayComponentTypeWithLiterals as j0, type WixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type PaymentComponentTypeWithLiterals as j3, type ComponentTypeWithLiterals as j4, type TypeWithLiterals as j5, type ObjectArrayComponentTypeWithLiterals as j6, type SchedulingComponentTypeWithLiterals as j7, type FormatWithLiterals as j8, type MeetingTypeWithLiterals as j9, type IdentityTypeWithLiterals as jA, type ErrorTypeWithLiterals as jB, type SortOrderWithLiterals as jC, type ModeWithLiterals as jD, type StatusWithLiterals as jE, type SubmissionErrorTypeWithLiterals as jF, type CommonSearchWithEntityContext as jG, type CommonQueryWithEntityContext as jH, onSubmissionCreated as jI, onSubmissionDeleted as jJ, onSubmissionRemovedSubmissionFromTrash as jK, onSubmissionStatusUpdated as jL, onSubmissionContactMapped as jM, onSubmissionContactMappingSkipped as jN, onSubmissionUpdated as jO, upsertContactFromSubmission as jP, createSubmission as jQ, getSubmission as jR, updateSubmission as jS, confirmSubmission as jT, deleteSubmission as jU, bulkDeleteSubmission as jV, restoreSubmissionFromTrashBin as jW, removeSubmissionFromTrashBin as jX, bulkRemoveSubmissionFromTrashBin as jY, listDeletedSubmissions as jZ, getDeletedSubmission as j_, type StaffStrategySelectionWithLiterals as ja, type InputTypeWithLiterals as jb, type EmailInfoTagWithLiterals as jc, type PhoneInfoTagWithLiterals as jd, type TagWithLiterals as je, type ConfirmationLevelWithLiterals as jf, type SubscriptionChannelWithLiterals as jg, type ContactFieldWithLiterals as jh, type DisplayFieldTypeWithLiterals as ji, type OverrideEntityTypeWithLiterals as jj, type KindWithLiterals as jk, type FormFieldContactInfoEmailInfoTagWithLiterals as jl, type FormFieldContactInfoPhoneInfoTagWithLiterals as jm, type AddressInfoTagWithLiterals as jn, type SubscriptionInfoOptInLevelWithLiterals as jo, type FormFieldContactInfoContactFieldWithLiterals as jp, type SpamFilterProtectionLevelWithLiterals as jq, type RequiredIndicatorWithLiterals as jr, type RequiredIndicatorPlacementWithLiterals as js, type TargetWithLiterals as jt, type SubmitSuccessActionWithLiterals as ju, type ChangeablePropertyWithLiterals as jv, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jw, type OperatorWithLiterals as jx, type ResultsDisplayWithLiterals as jy, type ContactAutofillWithLiterals as jz, type CursorQuery as k, querySubmissionsByNamespace as k0, countSubmissionsByFilter as k1, countSubmissions as k2, countDeletedSubmissions as k3, getMediaUploadUrl as k4, bulkMarkSubmissionsAsSeen as k5, getSubmissionDownloadUrl as k6, downloadSubmission as k7, getFormattedSubmission as k8, updateExtendedFields as k9, validateFormSubmission as ka, 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 };
@@ -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-M17yHtDQ.js';
3
- export { bV as AccountInfo, hU as AccountInfoMetadata, bR as ActionEvent, fO as Address, fP as AddressComponentTypeOptionsOneOf, fw as AddressInfo, bh as AddressInfoTag, jn as AddressInfoTagWithLiterals, f9 as AddressLine2, aO as Alignment, iU as AlignmentWithLiterals, gi as AllowedValuesOptions, dN as AnchorData, gn as AndCondition, dU as AppEmbedData, dV as AppEmbedDataAppDataOneOf, aC as AppType, iI as AppTypeWithLiterals, gQ as ApplicationError, fl as Appointment, fm as AppointmentFormatInfoOneOf, aW as ArrayComponentType, j0 as ArrayComponentTypeWithLiterals, cj as ArrayErrorMessages, eT as ArrayItems, eU as ArrayItemsItemTypeOptionsOneOf, eP as ArrayType, ch as ArrayTypeArrayItems, ci as ArrayTypeArrayItemsItemsOneOf, aw as AspectRatio, iC as AspectRatioWithLiterals, ed as AudioData, c3 as Availability, dD as Background, dE as BackgroundBackgroundOneOf, ej as BackgroundImage, as as BackgroundType, iy as BackgroundTypeWithLiterals, ek as Banner, hS as BaseEventMetadata, eg as BlockquoteData, dW as BookingData, aT as BooleanComponentType, iZ as BooleanComponentTypeWithLiterals, cb as BooleanErrorMessages, eM as BooleanType, cS as Border, ea as BorderColors, eb as BorderWidths, ff as BreakPoint, gR as BulkActionMetadata, gM as BulkCreateSubmissionBySubmitterData, gL as BulkCreateSubmissionBySubmitterRequest, gN as BulkCreateSubmissionBySubmitterResponse, g$ as BulkDeleteSubmissionRequest, h0 as BulkDeleteSubmissionResult, hu as BulkMarkSubmissionsAsSeenRequest, h4 as BulkRemoveSubmissionFromTrashBinRequest, h5 as BulkRemoveSubmissionFromTrashBinResult, gO as BulkSubmissionResult, hZ as BulkUpdateFormSubmissionTagsByFilterOptions, hK as BulkUpdateFormSubmissionTagsByFilterRequest, hL as BulkUpdateFormSubmissionTagsByFilterResponse, hY as BulkUpdateFormSubmissionTagsOptions, hH as BulkUpdateFormSubmissionTagsRequest, hI as BulkUpdateFormSubmissionTagsResponse, hJ as BulkUpdateFormSubmissionTagsResult, ef as BulletedListData, cR as ButtonData, a9 as ButtonDataType, id as ButtonDataTypeWithLiterals, dY as ButtonStyles, eh as CaptionData, d$ as CardStyles, aA as CardStylesAlignment, iG as CardStylesAlignmentWithLiterals, az as CardStylesType, iF as CardStylesTypeWithLiterals, e9 as CellStyle, bp as ChangeableProperty, jv as ChangeablePropertyWithLiterals, eN as Checkbox, eW as CheckboxGroup, gz as Checkout, d1 as CodeBlockData, e5 as CollapsibleListData, dO as ColorData, cT as Colors, jH as CommonQueryWithEntityContext, jG as CommonSearchWithEntityContext, a_ as ComponentType, j4 as ComponentTypeWithLiterals, eY as ComponentsTags, gp as Condition, gl as ConditionNode, gm as ConditionNodeNodeOneOf, gY as ConfirmSubmissionRequest, b9 as ConfirmationLevel, jf as ConfirmationLevelWithLiterals, bt as ContactAutofill, jz as ContactAutofillWithLiterals, bb as ContactField, jh as ContactFieldWithLiterals, eO as CorrectAnswersList, hr as CountDeletedSubmissionsRequest, ho as CountSubmissionsByFilterRequest, hq as CountSubmissionsRequest, bW as CreateCheckoutFromSubmissionRequest, bX as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gy as CreateCheckoutFromSubmissionResponse, gJ as CreateSubmissionBySubmitterRequest, gK as CreateSubmissionBySubmitterResponse, gF as CreateSubmissionRequest, gG as CreateSubmissionResponse, ai as Crop, io as CropWithLiterals, h7 as CursorPaging, h8 as CursorPagingMetadata, hc as CursorQueryPagingMethodOneOf, hf as CursorSearch, hg as CursorSearchPagingMethodOneOf, h9 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, i3 as DayOfWeekWithLiterals, dL as Decoration, dM as DecorationDataOneOf, at as DecorationType, iz as DecorationTypeWithLiterals, fa as DefaultCountryConfig, fb as DefaultCountryConfigOptionsOneOf, gZ as DeleteSubmissionRequest, g_ as DeleteSubmissionResponse, dJ as Design, aM as DesignTarget, iS as DesignTargetWithLiterals, e7 as Dimensions, aE as Direction, iK as DirectionWithLiterals, fS as DisplayField, fT as DisplayFieldDisplayFieldTypeOptionsOneOf, bc as DisplayFieldType, ji as DisplayFieldTypeWithLiterals, d3 as DividerData, ae as DividerDataAlignment, ij as DividerDataAlignmentWithLiterals, hy as DocumentReady, ep as DocumentStyle, bL as DomainEvent, bM as DomainEventBodyOneOf, f4 as DonationInput, f5 as DonationInputOption, hz as DownloadSubmissionRequest, ex as Dropdown, ey as DropdownOption, cp as DynamicPriceOptions, fu as EmailInfo, b6 as EmailInfoTag, jc as EmailInfoTagWithLiterals, e3 as EmbedData, gC as Empty, bN as EntityCreatedEvent, bQ as EntityDeletedEvent, bP as EntityUpdatedEvent, bv as ErrorType, jB as ErrorTypeWithLiterals, dX as EventData, hT 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, i7 as FieldTypeWithLiterals, hN as FieldViolation, hO 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, iX as FirstDayOfWeekWithLiterals, f7 as FixedPayment, co as FixedPriceOptions, dT as FontFamilyData, dR as FontSizeData, au as FontType, iA as FontTypeWithLiterals, bY as Form, hs as FormDeletedSubmissionsCount, bZ as FormField, cc as FormFieldArrayType, ca as FormFieldBooleanType, fs as FormFieldContactInfo, ft as FormFieldContactInfoAdditionalInfoOneOf, g4 as FormFieldContactInfoAddressInfo, bj as FormFieldContactInfoContactField, jp as FormFieldContactInfoContactFieldWithLiterals, g5 as FormFieldContactInfoCustomFieldInfo, g2 as FormFieldContactInfoEmailInfo, bf as FormFieldContactInfoEmailInfoTag, jl as FormFieldContactInfoEmailInfoTagWithLiterals, g3 as FormFieldContactInfoPhoneInfo, bg as FormFieldContactInfoPhoneInfoTag, jm 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, hX as FormSubmissionQuerySpec, hV as FormSubmissionSearchSpec, bG as FormSubmissionStatusUpdatedEvent, hp as FormSubmissionsCount, b2 as Format, a4 as FormatEnumFormat, i8 as FormatEnumFormatWithLiterals, j8 as FormatWithLiterals, hF as FormattedFormSubmission, hC as FormattedSubmission, dj as GIF, di as GIFData, ak as GIFType, iq as GIFTypeWithLiterals, d8 as GalleryData, de as GalleryOptions, df as GalleryOptionsLayout, ha as GetDeletedSubmissionRequest, hB as GetFormattedSubmissionRequest, ht as GetMediaUploadURLRequest, gU as GetSubmissionByCheckoutIdRequest, gV as GetSubmissionByCheckoutIdResponse, hv as GetSubmissionDownloadUrlRequest, gS as GetSubmissionRequest, gT as GetSubmissionResponse, dC as Gradient, fi as Group, dl as HTMLData, dm as HTMLDataDataOneOf, hA as HeadersEntry, dk as HeadingData, cY as Height, gh as HiddenOptions, bT as IdentificationData, bU as IdentificationDataIdOneOf, bu as IdentityType, jA as IdentityTypeWithLiterals, da as Image, dn as ImageData, dq as ImageDataStyles, aP as ImageFit, iV as ImageFitWithLiterals, aN as ImagePosition, iT as ImagePositionWithLiterals, dZ as ImageStyles, fp as InPersonOptions, aD as InitialExpandedItems, iJ as InitialExpandedItemsWithLiterals, cD as InputField, cE as InputFieldInputTypeOptionsOneOf, b5 as InputType, jb as InputTypeWithLiterals, c9 as IntegerType, gA as IsFormSubmittableRequest, gB as IsFormSubmittableResponse, dc as Item, dd as ItemDataOneOf, fg as ItemLayout, fh as ItemLayoutItemOneOf, gP as ItemMetadata, dg as ItemStyle, aU as ItemType, i_ as ItemTypeWithLiterals, be as Kind, jk as KindWithLiterals, aB as Layout, el as LayoutCellData, ei as LayoutData, aI as LayoutDataImagePosition, iO as LayoutDataImagePositionWithLiterals, ag as LayoutType, il as LayoutTypeWithLiterals, iH as LayoutWithLiterals, g8 as LimitationRule, ac as LineStyle, ih as LineStyleWithLiterals, c_ as Link, dP as LinkData, c$ as LinkDataOneOf, dr as LinkPreviewData, ds as LinkPreviewDataStyles, aa as LinkTarget, ie as LinkTargetWithLiterals, h6 as ListDeletedSubmissionsRequest, hD as ListFormattedSubmissionsRequest, hE as ListFormattedSubmissionsResponse, ec as ListValue, fn as Location, fo as LocationLocationInfoOneOf, dt as MapData, du as MapSettings, an as MapType, it as MapTypeWithLiterals, fj as Margin, bJ as MarketingSubscriptionDetails, d9 as Media, er as MediaItem, es as MediaItemMediaOneOf, et as MediaSettings, b3 as MeetingType, j9 as MeetingTypeWithLiterals, dQ as MentionData, bS as MessageEnvelope, eo as Metadata, bx as Mode, jD 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, ia as NodeTypeWithLiterals, aG as NullValue, iM as NullValueWithLiterals, aS as NumberComponentType, iY as NumberComponentTypeWithLiterals, eH as NumberCorrectAnswersList, c8 as NumberErrorMessages, eK as NumberInput, aQ as NumberOfColumns, iW as NumberOfColumnsWithLiterals, eJ as NumberQuizFieldSettings, eI as NumberType, fQ as ObjectArray, b0 as ObjectArrayComponentType, fR as ObjectArrayComponentTypeOptionsOneOf, j6 as ObjectArrayComponentTypeWithLiterals, cv as ObjectArrayType, cg as ObjectErrorMessages, eQ as ObjectType, ce as ObjectTypePropertiesType, cf as ObjectTypePropertiesTypePropertiesTypeOneOf, e4 as Oembed, br as Operator, jx as OperatorWithLiterals, Y as OptInLevel, i0 as OptInLevelWithLiterals, eX as Option, dG as OptionDesign, dB as OptionLayout, go as OrCondition, bD as OrderDetails, ee as OrderedListData, ah as Orientation, im as OrientationWithLiterals, aJ as Origin, iP as OriginWithLiterals, bd as OverrideEntityType, bq as OverrideEntityTypeEnumOverrideEntityType, jw as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jj 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, j3 as PaymentComponentTypeWithLiterals, f6 as PaymentInput, cm as PaymentType, dx as Permissions, cJ as PhoneConstraints, fv as PhoneInfo, b7 as PhoneInfoTag, jd as PhoneInfoTagWithLiterals, eA as PhoneInput, fr as PhoneOptions, ay as Placement, iE as PlacementWithLiterals, e2 as PlaybackOptions, cU as PluginContainerData, a8 as PluginContainerDataAlignment, ic 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, ix as PollLayoutDirectionWithLiterals, aq as PollLayoutType, iw as PollLayoutTypeWithLiterals, dy as PollOption, av as Position, iB as PositionWithLiterals, f_ as PostSubmissionTriggers, ck as PredefinedValidation, cl as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, i6 as PriceTypeWithLiterals, e0 as PricingData, cq as Product, f2 as ProductCheckboxGroup, f3 as ProductCheckboxGroupOption, cr as ProductPriceOptionsOneOf, a1 as ProductType, i5 as ProductTypeWithLiterals, eR as PropertiesType, aV as PropertiesTypeEnum, i$ as PropertiesTypeEnumWithLiterals, eS as PropertiesTypePropertiesTypeOptionsOneOf, bE as PublicTags, cn as QuantityLimit, hb as QuerySubmissionRequest, hm as QuerySubmissionsByNamespaceForExportRequest, hn as QuerySubmissionsByNamespaceForExportResponse, hk as QuerySubmissionsByNamespaceRequest, hl 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, h2 as RemoveSubmissionFromTrashBinRequest, h3 as RemoveSubmissionFromTrashBinResponse, bH as RemovedSubmissionFromTrash, fd as Repeater, bl as RequiredIndicator, bm as RequiredIndicatorPlacement, js as RequiredIndicatorPlacementWithLiterals, g9 as RequiredIndicatorProperties, jr as RequiredIndicatorWithLiterals, gg as RequiredOptions, ax as Resizing, iD as ResizingWithLiterals, aL as ResponsivenessBehaviour, iR as ResponsivenessBehaviourWithLiterals, bO as RestoreInfo, h1 as RestoreSubmissionFromTrashBinRequest, bs as ResultsDisplay, jy as ResultsDisplayWithLiterals, d_ as RibbonStyles, cN as RichContent, fU as RichContentOptions, gf as Rule, gq as RuleFormOverride, gr as RuleFormOverrideEntityTypeOptionsOneOf, aH as Scaling, iN as ScalingWithLiterals, fM as Scheduling, b1 as SchedulingComponentType, fN as SchedulingComponentTypeOptionsOneOf, j7 as SchedulingComponentTypeWithLiterals, hh as SearchDetails, hi as SearchSubmissionsByNamespaceForExportRequest, hj as SearchSubmissionsByNamespaceForExportResponse, he 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, jC as SortOrderWithLiterals, hd as Sorting, al as Source, ir as SourceWithLiterals, bk as SpamFilterProtectionLevel, jq as SpamFilterProtectionLevelWithLiterals, cX as Spoiler, dS as SpoilerData, b4 as StaffStrategySelection, ja as StaffStrategySelectionWithLiterals, by as Status, jE as StatusWithLiterals, fW as Step, a5 as StringComponentType, i9 as StringComponentTypeWithLiterals, cF as StringCorrectAnswersList, c0 as StringErrorMessages, cL as StringQuizFieldSettings, cG as StringType, c1 as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, i2 as StringTypeFormatEnumFormatWithLiterals, cH as StringTypeFormatOptionsOneOf, c5 as StringTypePhoneConstraints, c6 as StringTypeValidationMessages, cZ as Styles, dp as StylesBorder, am as StylesPosition, is as StylesPositionWithLiterals, bI as SubmissionContactMapped, bK as SubmissionContactMappingSkipped, hw as SubmissionDocument, hx as SubmissionDocumentDocumentOneOf, bz as SubmissionErrorType, jF as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, h$ as SubmissionStatusWithLiterals, hQ as SubmissionValidationError, hR as SubmissionValidationErrorErrorMessageOneOf, hP as SubmissionValidationErrors, gH as SubmissionValidationErrorsDetails, hW as SubmissionsQueryResult, gE as SubmitContactResponse, ga as SubmitSettings, gb as SubmitSettingsSubmitSuccessActionOptionsOneOf, bo as SubmitSuccessAction, ju as SubmitSuccessActionWithLiterals, bA as Submitter, bB as SubmitterSubmitterOneOf, ba as SubscriptionChannel, jg as SubscriptionChannelWithLiterals, fy as SubscriptionInfo, bi as SubscriptionInfoOptInLevel, jo as SubscriptionInfoOptInLevelWithLiterals, e8 as TableCellData, e6 as TableData, b8 as Tag, bF as TagList, je as TagWithLiterals, gs as Tags, eZ as TagsOption, gt as TagsTagList, bn as Target, jt as TargetWithLiterals, ab as TextAlignment, ig as TextAlignmentWithLiterals, dK as TextData, cM as TextInput, eq as TextNodeStyle, d2 as TextStyle, gc as ThankYouMessageOptions, dh as Thumbnails, aj as ThumbnailsAlignment, ip as ThumbnailsAlignmentWithLiterals, eC as TimeInput, a$ as Type, j5 as TypeWithLiterals, hG as UpdateExtendedFieldsRequest, gW as UpdateSubmissionRequest, gX as UpdateSubmissionResponse, aY as UploadFileFormat, j2 as UploadFileFormatWithLiterals, f$ as UpsertContact, gD as UpsertContactFromSubmissionRequest, g0 as V4FormFieldContactInfo, g1 as V4FormFieldContactInfoAdditionalInfoOneOf, hM as ValidateFormSubmissionRequest, cx as Validation, gI as ValidationError, a0 as ValidationFormat, i4 as ValidationFormatWithLiterals, cK as ValidationMessages, cy as ValidationValidationOneOf, aF as VerticalAlignment, aK as VerticalAlignmentAlignment, iQ as VerticalAlignmentAlignmentWithLiterals, iL as VerticalAlignmentWithLiterals, db as Video, fq as VideoConferenceOptions, e1 as VideoData, af as ViewMode, ik as ViewModeWithLiterals, ao as ViewRole, iu as ViewRoleWithLiterals, ap as VoteRole, iv as VoteRoleWithLiterals, Z as WebhookIdentityType, i1 as WebhookIdentityTypeWithLiterals, ad as Width, a7 as WidthType, ib as WidthTypeWithLiterals, ii as WidthWithLiterals, fI as WixFile, aX as WixFileComponentType, fJ as WixFileComponentTypeOptionsOneOf, j1 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-M17yHtDQ.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 {