@wix/auto_sdk_forms_submissions 1.0.97 → 1.0.98

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-CG5mgBXv.d.ts → forms-v4-submission-submissions.universal-DkEEErBR.d.ts} +180 -18
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +61 -3
  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 +61 -3
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +166 -13
  9. package/build/cjs/meta.js +52 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-CG5mgBXv.d.mts → forms-v4-submission-submissions.universal-DkEEErBR.d.mts} +180 -18
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +55 -3
  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 +55 -3
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +166 -13
  19. package/build/es/meta.mjs +46 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-CioD21SQ.d.ts → forms-v4-submission-submissions.universal-CqVoo7cC.d.ts} +180 -18
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +61 -3
  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 +61 -3
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +166 -13
  29. package/build/internal/cjs/meta.js +52 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-CioD21SQ.d.mts → forms-v4-submission-submissions.universal-CqVoo7cC.d.mts} +180 -18
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +55 -3
  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 +55 -3
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +166 -13
  39. package/build/internal/es/meta.mjs +46 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -1,5 +1,5 @@
1
1
  import * as _wix_sdk_types from '@wix/sdk-types';
2
- import { SearchSpec, QuerySpec, Query, Search, NonNullablePaths } from '@wix/sdk-types';
2
+ import { SearchSpec, QuerySpec, Search, Query, NonNullablePaths } from '@wix/sdk-types';
3
3
 
4
4
  /** Form submission that was created or retrieved. */
5
5
  interface FormSubmission {
@@ -227,10 +227,21 @@ interface MarketingSubscriptionDetails {
227
227
  */
228
228
  submittedDate?: Date | null;
229
229
  /**
230
- * Subscription consent opt in level, either single or double confirmation.
230
+ * Email subscription consent opt in level, either single or double confirmation.
231
231
  * Default: SINGLE_CONFIRMATION
232
232
  */
233
233
  optInLevel?: OptInLevelWithLiterals;
234
+ /**
235
+ * Mapped valid contact phones.
236
+ * @format PHONE
237
+ * @maxSize 100
238
+ */
239
+ phones?: string[];
240
+ /**
241
+ * Phone subscription consent opt in level, either single or double confirmation.
242
+ * Default: SINGLE_CONFIRMATION
243
+ */
244
+ phoneOptInLevel?: OptInLevelWithLiterals;
234
245
  }
235
246
  declare enum OptInLevel {
236
247
  /** Single confirmation. */
@@ -532,6 +543,8 @@ interface Form {
532
543
  formRules?: Rule[];
533
544
  /** Tag IDs collections associated with the current entity. */
534
545
  tags?: Tags;
546
+ /** Source used for contact autofill when filling form fields. Default: FORM_INPUT. */
547
+ autoFillContact?: ContactAutofillWithLiterals;
535
548
  }
536
549
  interface FormField {
537
550
  /**
@@ -566,7 +579,7 @@ interface FormFieldStringType extends FormFieldStringTypeFormatOptionsOneOf {
566
579
  /** DATE format options */
567
580
  dateOptions?: StringTypeDateTimeConstraints;
568
581
  /** DATE_TIME format options */
569
- dateTimeOptions?: StringTypeDateTimeConstraints;
582
+ dateTimeOptions?: DateTimeAdvancedConstraints;
570
583
  /** TIME format options */
571
584
  timeOptions?: StringTypeDateTimeConstraints;
572
585
  /** DATE_OPTIONAL_TIME format options */
@@ -606,7 +619,7 @@ interface FormFieldStringTypeFormatOptionsOneOf {
606
619
  /** DATE format options */
607
620
  dateOptions?: StringTypeDateTimeConstraints;
608
621
  /** DATE_TIME format options */
609
- dateTimeOptions?: StringTypeDateTimeConstraints;
622
+ dateTimeOptions?: DateTimeAdvancedConstraints;
610
623
  /** TIME format options */
611
624
  timeOptions?: StringTypeDateTimeConstraints;
612
625
  /** DATE_OPTIONAL_TIME format options */
@@ -657,6 +670,63 @@ interface StringTypeDateTimeConstraints {
657
670
  */
658
671
  maximum?: string | null;
659
672
  }
673
+ interface DateTimeAdvancedConstraints {
674
+ /**
675
+ * Allows to specify available and unavailable dates and days of the week.
676
+ * If unset, all dates from minimum to maximum are available.
677
+ */
678
+ availability?: Availability;
679
+ /**
680
+ * Support static constrains defined as ISO date/time format, as well as
681
+ * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
682
+ * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
683
+ * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
684
+ * @maxLength 50
685
+ */
686
+ minimum?: string | null;
687
+ /**
688
+ * Support static constrains defined as ISO date/time format, as well as
689
+ * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
690
+ * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
691
+ * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
692
+ * @maxLength 50
693
+ */
694
+ maximum?: string | null;
695
+ }
696
+ interface Availability {
697
+ /**
698
+ * Available date ranges. They give priority to unavailable_dates in case of overlap.
699
+ * @maxSize 5
700
+ */
701
+ availableDates?: DateRange[];
702
+ /**
703
+ * Unavailable date ranges. They take priority over available_dates in case of overlap.
704
+ * @maxSize 5
705
+ */
706
+ unavailableDates?: DateRange[];
707
+ /**
708
+ * During available_dates, only these days of the week are available.
709
+ * @maxSize 7
710
+ */
711
+ availableDays?: DayOfWeekWithLiterals[];
712
+ }
713
+ interface DateRange {
714
+ /** The beginning of the date range (inclusive). */
715
+ start?: Date | null;
716
+ /** The end of the date range (exclusive). */
717
+ end?: Date | null;
718
+ }
719
+ declare enum DayOfWeek {
720
+ MONDAY = "MONDAY",
721
+ TUESDAY = "TUESDAY",
722
+ WEDNESDAY = "WEDNESDAY",
723
+ THURSDAY = "THURSDAY",
724
+ FRIDAY = "FRIDAY",
725
+ SATURDAY = "SATURDAY",
726
+ SUNDAY = "SUNDAY"
727
+ }
728
+ /** @enumType */
729
+ type DayOfWeekWithLiterals = DayOfWeek | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY';
660
730
  interface StringTypePhoneConstraints {
661
731
  /**
662
732
  * Country codes for phone number that are allowed
@@ -1188,7 +1258,7 @@ interface StringType extends StringTypeFormatOptionsOneOf {
1188
1258
  /** Validation rules for strings with date format. */
1189
1259
  dateOptions?: DateTimeConstraints;
1190
1260
  /** Validation rules for strings with date and time format. */
1191
- dateTimeOptions?: DateTimeConstraints;
1261
+ dateTimeOptions?: DateTimeAdvancedConstraints;
1192
1262
  /** Validation rules for strings with time format. */
1193
1263
  timeOptions?: DateTimeConstraints;
1194
1264
  /** Validation rules for string with date and time format, where time is optional. */
@@ -1227,7 +1297,7 @@ interface StringTypeFormatOptionsOneOf {
1227
1297
  /** Validation rules for strings with date format. */
1228
1298
  dateOptions?: DateTimeConstraints;
1229
1299
  /** Validation rules for strings with date and time format. */
1230
- dateTimeOptions?: DateTimeConstraints;
1300
+ dateTimeOptions?: DateTimeAdvancedConstraints;
1231
1301
  /** Validation rules for strings with time format. */
1232
1302
  timeOptions?: DateTimeConstraints;
1233
1303
  /** Validation rules for string with date and time format, where time is optional. */
@@ -3141,6 +3211,8 @@ interface LayoutData {
3141
3211
  containerData?: PluginContainerData;
3142
3212
  /** Defines where selected design propertied applies to */
3143
3213
  designTarget?: DesignTargetWithLiterals;
3214
+ /** Banner configuration. When present, this layout is displayed as a banner. */
3215
+ banner?: Banner;
3144
3216
  }
3145
3217
  declare enum Scaling {
3146
3218
  /** Auto image scaling */
@@ -3174,6 +3246,14 @@ declare enum LayoutDataImagePosition {
3174
3246
  }
3175
3247
  /** @enumType */
3176
3248
  type LayoutDataImagePositionWithLiterals = LayoutDataImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
3249
+ declare enum Origin {
3250
+ /** Banner originated from an image */
3251
+ IMAGE = "IMAGE",
3252
+ /** Banner originated from a layout */
3253
+ LAYOUT = "LAYOUT"
3254
+ }
3255
+ /** @enumType */
3256
+ type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
3177
3257
  interface BackgroundImage {
3178
3258
  /** Background image. */
3179
3259
  media?: Media;
@@ -3210,6 +3290,10 @@ declare enum DesignTarget {
3210
3290
  }
3211
3291
  /** @enumType */
3212
3292
  type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
3293
+ interface Banner {
3294
+ /** Origin of the banner */
3295
+ origin?: OriginWithLiterals;
3296
+ }
3213
3297
  interface LayoutCellData {
3214
3298
  /** Size of the cell in 12 columns grid. */
3215
3299
  colSpan?: number | null;
@@ -3490,7 +3574,10 @@ interface DateTimeInput {
3490
3574
  use24HourFormat?: boolean;
3491
3575
  /**
3492
3576
  * Default value for the field. This value is pre-populated in the field when the form loads.
3493
- * @format LOCAL_DATE_TIME
3577
+ * Supports static constrains defined as ISO date-time format, as well as dynamic calculations using special keywords
3578
+ * such as "$now" to represent the current date and time.
3579
+ * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
3580
+ * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
3494
3581
  */
3495
3582
  default?: string | null;
3496
3583
  /** Media content associated with the field, such as an image. */
@@ -3561,7 +3648,10 @@ interface DateInput {
3561
3648
  showPlaceholder?: boolean | null;
3562
3649
  /**
3563
3650
  * Default value for the field. This value is pre-populated in the field when the form loads.
3564
- * @format LOCAL_DATE
3651
+ * Supports static constrains defined as ISO date format, as well as dynamic calculations using special keywords
3652
+ * such as "$now" to represent the current date and time.
3653
+ * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
3654
+ * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
3565
3655
  */
3566
3656
  default?: string | null;
3567
3657
  /** Media content associated with the field, such as an image. */
@@ -3602,7 +3692,10 @@ interface TimeInput {
3602
3692
  use24HourFormat?: boolean;
3603
3693
  /**
3604
3694
  * Default value for the field. This value is pre-populated in the field when the form loads.
3605
- * @format LOCAL_TIME
3695
+ * Supports static constrains defined as ISO time format, as well as dynamic calculations using special keywords
3696
+ * such as "$now" to represent the current date and time.
3697
+ * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
3698
+ * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
3606
3699
  */
3607
3700
  default?: string | null;
3608
3701
  /** Media content associated with the field, such as an image. */
@@ -3633,7 +3726,10 @@ interface DatePicker {
3633
3726
  firstDayOfWeek?: FirstDayOfWeekWithLiterals;
3634
3727
  /**
3635
3728
  * Default value for the field. This value is pre-populated in the field when the form loads.
3636
- * @format LOCAL_DATE
3729
+ * Supports static constrains defined as ISO date format, as well as dynamic calculations using special keywords
3730
+ * such as "$now" to represent the current date and time.
3731
+ * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
3732
+ * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
3637
3733
  */
3638
3734
  default?: string | null;
3639
3735
  /** Media content associated with the field, such as an image. */
@@ -4596,6 +4692,26 @@ declare enum Format {
4596
4692
  }
4597
4693
  /** @enumType */
4598
4694
  type FormatWithLiterals = Format | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
4695
+ declare enum MeetingType {
4696
+ UNKNOWN_MEETING_TYPE = "UNKNOWN_MEETING_TYPE",
4697
+ /** Single staff member provides the service. */
4698
+ SINGLE_STAFF = "SINGLE_STAFF",
4699
+ /** Multiple staff members rotate via round robin scheduling. */
4700
+ ROUND_ROBIN = "ROUND_ROBIN"
4701
+ }
4702
+ /** @enumType */
4703
+ type MeetingTypeWithLiterals = MeetingType | 'UNKNOWN_MEETING_TYPE' | 'SINGLE_STAFF' | 'ROUND_ROBIN';
4704
+ declare enum StaffStrategySelection {
4705
+ UNKNOWN_STAFF_STRATEGY_SELECTION = "UNKNOWN_STAFF_STRATEGY_SELECTION",
4706
+ /** Staff selected randomly. */
4707
+ AUTOMATIC = "AUTOMATIC",
4708
+ /** Staff sorted by priority, highest first. */
4709
+ HIGH_TO_LOW_PRIORITY = "HIGH_TO_LOW_PRIORITY",
4710
+ /** Staff sorted by priority, lowest first. */
4711
+ LOW_TO_HIGH_PRIORITY = "LOW_TO_HIGH_PRIORITY"
4712
+ }
4713
+ /** @enumType */
4714
+ type StaffStrategySelectionWithLiterals = StaffStrategySelection | 'UNKNOWN_STAFF_STRATEGY_SELECTION' | 'AUTOMATIC' | 'HIGH_TO_LOW_PRIORITY' | 'LOW_TO_HIGH_PRIORITY';
4599
4715
  interface InPersonOptions {
4600
4716
  /**
4601
4717
  * Physical locations where the appointment can take place.
@@ -4703,6 +4819,14 @@ declare enum ConfirmationLevel {
4703
4819
  }
4704
4820
  /** @enumType */
4705
4821
  type ConfirmationLevelWithLiterals = ConfirmationLevel | 'UNKNOWN_CONFIRMATION_LEVEL' | 'SINGLE_CONFIRMATION' | 'DOUBLE_CONFIRMATION';
4822
+ declare enum SubscriptionChannel {
4823
+ /** Email subscription channel. */
4824
+ EMAIL = "EMAIL",
4825
+ /** SMS subscription channel. */
4826
+ SMS = "SMS"
4827
+ }
4828
+ /** @enumType */
4829
+ type SubscriptionChannelWithLiterals = SubscriptionChannel | 'EMAIL' | 'SMS';
4706
4830
  declare enum ContactField {
4707
4831
  UNKNOWN_CONTACT_FIELD = "UNKNOWN_CONTACT_FIELD",
4708
4832
  /** Contact's first name. */
@@ -4756,6 +4880,12 @@ interface SubscriptionInfo {
4756
4880
  * Default: `SINGLE_CONFIRMATION`
4757
4881
  */
4758
4882
  confirmationLevel?: ConfirmationLevelWithLiterals;
4883
+ /**
4884
+ * Subscription channels.
4885
+ * When not specified, defaults to `EMAIL`.
4886
+ * @maxSize 2
4887
+ */
4888
+ subscriptionChannels?: SubscriptionChannelWithLiterals[];
4759
4889
  }
4760
4890
  interface _String extends _StringComponentTypeOptionsOneOf {
4761
4891
  /** Text input component settings. */
@@ -5254,6 +5384,12 @@ interface FormFieldContactInfoSubscriptionInfo {
5254
5384
  * Default: `SINGLE_CONFIRMATION`
5255
5385
  */
5256
5386
  optInLevel?: SubscriptionInfoOptInLevelWithLiterals;
5387
+ /**
5388
+ * Subscription channels.
5389
+ * When not specified, defaults to `EMAIL`.
5390
+ * @maxSize 2
5391
+ */
5392
+ subscriptionChannels?: SubscriptionChannelWithLiterals[];
5257
5393
  }
5258
5394
  interface NestedForm {
5259
5395
  /**
@@ -5270,6 +5406,11 @@ interface LimitationRule {
5270
5406
  maxAllowedSubmissions?: number | null;
5271
5407
  /** Limitation by submission date, disables form when a set date and time is reached. */
5272
5408
  dateTimeDeadline?: Date | null;
5409
+ /**
5410
+ * Limitation per user submission count, disables form when a set amount of submissions per user is reached.
5411
+ * @min 1
5412
+ */
5413
+ submissionLimitPerUser?: number | null;
5273
5414
  }
5274
5415
  declare enum SpamFilterProtectionLevel {
5275
5416
  /** Unknown spam filter protection level. */
@@ -5679,6 +5820,16 @@ interface PassFailMessages {
5679
5820
  /** Message displayed when the user fails the quiz. */
5680
5821
  failMessage?: RichContent;
5681
5822
  }
5823
+ declare enum ContactAutofill {
5824
+ /** Unknown contact autofill source. */
5825
+ UNKNOWN_CONTACT_AUTOFILL = "UNKNOWN_CONTACT_AUTOFILL",
5826
+ /** Use site member data to autofill contact fields. */
5827
+ MEMBER_DATA = "MEMBER_DATA",
5828
+ /** Use form input data to autofill contact fields. */
5829
+ FORM_INPUT = "FORM_INPUT"
5830
+ }
5831
+ /** @enumType */
5832
+ type ContactAutofillWithLiterals = ContactAutofill | 'UNKNOWN_CONTACT_AUTOFILL' | 'MEMBER_DATA' | 'FORM_INPUT';
5682
5833
  interface CreateCheckoutFromSubmissionResponse {
5683
5834
  /**
5684
5835
  * Checkout ID (applicable for form involving payments).
@@ -5871,10 +6022,12 @@ declare enum ErrorType {
5871
6022
  /** Date value is incomplete or missing required parts */
5872
6023
  INCOMPLETE_DATE_ERROR = "INCOMPLETE_DATE_ERROR",
5873
6024
  /** Value does not match the required pattern format */
5874
- INVALID_VALUE_FOR_PATTERN_ERROR = "INVALID_VALUE_FOR_PATTERN_ERROR"
6025
+ INVALID_VALUE_FOR_PATTERN_ERROR = "INVALID_VALUE_FOR_PATTERN_ERROR",
6026
+ /** Default value does not pass form field validation */
6027
+ INVALID_DEFAULT_VALUE_ERROR = "INVALID_DEFAULT_VALUE_ERROR"
5875
6028
  }
5876
6029
  /** @enumType */
5877
- type ErrorTypeWithLiterals = ErrorType | 'UNKNOWN_ERROR' | 'TYPE_ERROR' | 'REQUIRED_VALUE_ERROR' | 'UNKNOWN_VALUE_ERROR' | 'MAX_LENGTH_ERROR' | 'MIN_LENGTH_ERROR' | 'PATTERN_ERROR' | 'FORMAT_ERROR' | 'MAX_VALUE_ERROR' | 'MIN_VALUE_ERROR' | 'MULTIPLE_OF_VALUE_ERROR' | 'MIN_ITEMS_ERROR' | 'MAX_ITEMS_ERROR' | 'NOT_ALLOWED_VALUE_ERROR' | 'FIELDS_COMPATIBILITY_ERROR' | 'DISABLED_FORM_ERROR' | 'FORMS_COUNT_RESTRICTIONS_ERROR' | 'FIELDS_COUNT_RESTRICTIONS_ERROR' | 'STEPS_COUNT_RESTRICTIONS_ERROR' | 'RULES_COUNT_RESTRICTIONS_ERROR' | 'FILE_UPLOAD_RESTRICTIONS_ERROR' | 'INVALID_PHONE_COUNTRY_CODE_ERROR' | 'INVALID_STAFF_ID_ERROR' | 'INVALID_LOCATION_ID_ERROR' | 'MISSING_SERVICE_OPTION_ERROR' | 'INVALID_SERVICE_OPTIONS_ERROR' | 'NO_AVAILABLE_SERVICE_OPTIONS_ERROR' | 'EXACT_CHARACTER_LENGTH_ERROR' | 'CHARACTER_LENGTH_RANGE_ERROR' | 'VALUE_RANGE_ERROR' | 'EXACT_ITEMS_NUMBER_ERROR' | 'DECIMAL_POINT_ERROR' | 'INCOMPLETE_DATE_ERROR' | 'INVALID_VALUE_FOR_PATTERN_ERROR';
6030
+ type ErrorTypeWithLiterals = ErrorType | 'UNKNOWN_ERROR' | 'TYPE_ERROR' | 'REQUIRED_VALUE_ERROR' | 'UNKNOWN_VALUE_ERROR' | 'MAX_LENGTH_ERROR' | 'MIN_LENGTH_ERROR' | 'PATTERN_ERROR' | 'FORMAT_ERROR' | 'MAX_VALUE_ERROR' | 'MIN_VALUE_ERROR' | 'MULTIPLE_OF_VALUE_ERROR' | 'MIN_ITEMS_ERROR' | 'MAX_ITEMS_ERROR' | 'NOT_ALLOWED_VALUE_ERROR' | 'FIELDS_COMPATIBILITY_ERROR' | 'DISABLED_FORM_ERROR' | 'FORMS_COUNT_RESTRICTIONS_ERROR' | 'FIELDS_COUNT_RESTRICTIONS_ERROR' | 'STEPS_COUNT_RESTRICTIONS_ERROR' | 'RULES_COUNT_RESTRICTIONS_ERROR' | 'FILE_UPLOAD_RESTRICTIONS_ERROR' | 'INVALID_PHONE_COUNTRY_CODE_ERROR' | 'INVALID_STAFF_ID_ERROR' | 'INVALID_LOCATION_ID_ERROR' | 'MISSING_SERVICE_OPTION_ERROR' | 'INVALID_SERVICE_OPTIONS_ERROR' | 'NO_AVAILABLE_SERVICE_OPTIONS_ERROR' | 'EXACT_CHARACTER_LENGTH_ERROR' | 'CHARACTER_LENGTH_RANGE_ERROR' | 'VALUE_RANGE_ERROR' | 'EXACT_ITEMS_NUMBER_ERROR' | 'DECIMAL_POINT_ERROR' | 'INCOMPLETE_DATE_ERROR' | 'INVALID_VALUE_FOR_PATTERN_ERROR' | 'INVALID_DEFAULT_VALUE_ERROR';
5878
6031
  interface CreateSubmissionBySubmitterRequest {
5879
6032
  /** Submission to create. */
5880
6033
  submission?: FormSubmission;
@@ -7422,6 +7575,20 @@ type FormSubmissionSearch = {
7422
7575
  fuzzy?: NonNullable<CommonSearchWithEntityContext['search']>['fuzzy'];
7423
7576
  };
7424
7577
  };
7578
+ declare const utils: {
7579
+ search: {
7580
+ SearchBuilder: () => _wix_sdk_types.SearchBuilder<FormSubmission, FormSubmissionSearchSpec, FormSubmissionSearch>;
7581
+ Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionSearchSpec>;
7582
+ Sort: _wix_sdk_types.SortFactory<FormSubmissionSearchSpec>;
7583
+ SearchParams: _wix_sdk_types.SearchParamsFactory<FormSubmissionSearchSpec>;
7584
+ Aggregation: _wix_sdk_types.AggregationFactory<FormSubmissionSearchSpec>;
7585
+ };
7586
+ query: {
7587
+ QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
7588
+ Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
7589
+ Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
7590
+ };
7591
+ };
7425
7592
  /**
7426
7593
  * Creates a query to retrieve a list of submissions.
7427
7594
  *
@@ -7602,11 +7769,6 @@ type FormSubmissionQuery = {
7602
7769
  order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
7603
7770
  }[];
7604
7771
  };
7605
- declare const utils: {
7606
- QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
7607
- Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
7608
- Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
7609
- };
7610
7772
  /**
7611
7773
  * > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
7612
7774
  * <br>
@@ -7798,4 +7960,4 @@ interface ValidateFormSubmissionOptions {
7798
7960
  fieldsToValidate?: string[];
7799
7961
  }
7800
7962
 
7801
- export { ValidationFormat 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, SchedulingComponentType as a$, ProductType as a0, PriceType as a1, FieldType as a2, FormatEnumFormat as a3, StringComponentType as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, LinkTarget as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, Scaling as aG, LayoutDataImagePosition as aH, VerticalAlignmentAlignment as aI, ResponsivenessBehaviour as aJ, DesignTarget as aK, ImagePosition as aL, Alignment as aM, ImageFit as aN, NumberOfColumns as aO, FirstDayOfWeek as aP, NumberComponentType as aQ, BooleanComponentType as aR, ItemType as aS, PropertiesTypeEnum as aT, ArrayComponentType as aU, WixFileComponentType as aV, UploadFileFormat as aW, PaymentComponentType as aX, ComponentType as aY, Type as aZ, ObjectArrayComponentType as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, Position as au, AspectRatio as av, Resizing as aw, Placement as ax, CardStylesType as ay, CardStylesAlignment as az, type CreateSubmissionApplicationErrors as b, type NumberErrorMessages as b$, Format as b0, InputType as b1, EmailInfoTag as b2, PhoneInfoTag as b3, Tag as b4, ConfirmationLevel as b5, ContactField as b6, DisplayFieldType as b7, OverrideEntityType as b8, Kind as b9, type FormSubmissionStatusUpdatedEvent as bA, type RemovedSubmissionFromTrash as bB, type SubmissionContactMapped as bC, type MarketingSubscriptionDetails as bD, type SubmissionContactMappingSkipped as bE, type DomainEvent as bF, type DomainEventBodyOneOf as bG, type EntityCreatedEvent as bH, type RestoreInfo as bI, type EntityUpdatedEvent as bJ, type EntityDeletedEvent as bK, type ActionEvent as bL, type MessageEnvelope as bM, type IdentificationData as bN, type IdentificationDataIdOneOf as bO, type AccountInfo as bP, type CreateCheckoutFromSubmissionRequest as bQ, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bR, type Form as bS, type FormField as bT, type FormFieldStringType as bU, type FormFieldStringTypeFormatOptionsOneOf as bV, type StringErrorMessages as bW, type StringTypeDateTimeConstraints as bX, type StringTypePhoneConstraints as bY, type StringTypeValidationMessages as bZ, type FormFieldNumberType as b_, FormFieldContactInfoEmailInfoTag as ba, FormFieldContactInfoPhoneInfoTag as bb, AddressInfoTag as bc, SubscriptionInfoOptInLevel as bd, FormFieldContactInfoContactField as be, SpamFilterProtectionLevel as bf, RequiredIndicator as bg, RequiredIndicatorPlacement as bh, Target as bi, SubmitSuccessAction as bj, ChangeableProperty as bk, OverrideEntityTypeEnumOverrideEntityType as bl, Operator as bm, ResultsDisplay as bn, IdentityType as bo, ErrorType as bp, SortOrder as bq, Mode as br, Status as bs, SubmissionErrorType as bt, type Submitter as bu, type SubmitterSubmitterOneOf as bv, type ExtendedFields as bw, type OrderDetails as bx, type PublicTags as by, type TagList as bz, type CreateSubmissionValidationErrors as c, type GalleryData as c$, type IntegerType as c0, type FormFieldBooleanType as c1, type BooleanErrorMessages as c2, type FormFieldArrayType as c3, type FormFieldObjectType as c4, type ObjectTypePropertiesType as c5, type ObjectTypePropertiesTypePropertiesTypeOneOf as c6, type ObjectErrorMessages as c7, type ArrayTypeArrayItems as c8, type ArrayTypeArrayItemsItemsOneOf as c9, type PhoneConstraints as cA, type ValidationMessages as cB, type StringQuizFieldSettings as cC, type TextInput as cD, type RichContent as cE, type Node as cF, type NodeDataOneOf as cG, type NodeStyle as cH, type ButtonData as cI, type Border as cJ, type Colors as cK, type PluginContainerData as cL, type PluginContainerDataWidth as cM, type PluginContainerDataWidthDataOneOf as cN, type Spoiler as cO, type Height as cP, type Styles as cQ, type Link as cR, type LinkDataOneOf as cS, type Rel as cT, type CodeBlockData as cU, type TextStyle as cV, type DividerData as cW, type FileData as cX, type FileSource as cY, type FileSourceDataOneOf as cZ, type PDFSettings as c_, type ArrayErrorMessages as ca, type PredefinedValidation as cb, type PredefinedValidationFormatOptionsOneOf as cc, type PaymentType as cd, type QuantityLimit as ce, type FixedPriceOptions as cf, type DynamicPriceOptions as cg, type Product as ch, type ProductPriceOptionsOneOf as ci, type MultilineAddressValidation as cj, type FieldOverrides as ck, type FieldsOverrides as cl, type ObjectArrayType as cm, type NestedFormFieldOverrides as cn, type Validation as co, type ValidationValidationOneOf as cp, type DataExtensionsDetails as cq, type NestedFormOverrides as cr, type Field as cs, type FieldFieldTypeOptionsOneOf as ct, type InputField as cu, type InputFieldInputTypeOptionsOneOf as cv, type StringCorrectAnswersList as cw, type StringType as cx, type StringTypeFormatOptionsOneOf as cy, type DateTimeConstraints as cz, type UpdateSubmission as d, type TableCellData as d$, type Media as d0, type Image as d1, type Video as d2, type Item as d3, type ItemDataOneOf as d4, type GalleryOptions as d5, type GalleryOptionsLayout as d6, type ItemStyle as d7, type Thumbnails as d8, type GIFData as d9, type Design as dA, type TextData as dB, type Decoration as dC, type DecorationDataOneOf as dD, type AnchorData as dE, type ColorData as dF, type LinkData as dG, type MentionData as dH, type FontSizeData as dI, type SpoilerData as dJ, type FontFamilyData as dK, type AppEmbedData as dL, type AppEmbedDataAppDataOneOf as dM, type BookingData as dN, type EventData as dO, type ButtonStyles as dP, type ImageStyles as dQ, type RibbonStyles as dR, type CardStyles as dS, type PricingData as dT, type VideoData as dU, type PlaybackOptions as dV, type EmbedData as dW, type Oembed as dX, type CollapsibleListData as dY, type TableData as dZ, type Dimensions as d_, type GIF as da, type HeadingData as db, type HTMLData as dc, type HTMLDataDataOneOf as dd, type ImageData as de, type StylesBorder as df, type ImageDataStyles as dg, type LinkPreviewData as dh, type LinkPreviewDataStyles as di, type MapData as dj, type MapSettings as dk, type ParagraphData as dl, type PollData as dm, type Permissions as dn, type PollOption as dp, type Settings as dq, type PollLayout as dr, type OptionLayout as ds, type Gradient as dt, type Background as du, type BackgroundBackgroundOneOf as dv, type PollDesign as dw, type OptionDesign as dx, type Poll as dy, type PollDataLayout as dz, type UpdateSubmissionValidationErrors as e, type AddressLine2 as e$, type CellStyle as e0, type BorderColors as e1, type BorderWidths as e2, type ListValue as e3, type AudioData as e4, type OrderedListData as e5, type BulletedListData as e6, type BlockquoteData as e7, type CaptionData as e8, type LayoutData as e9, type NumberInput as eA, type RatingInput as eB, type BooleanType as eC, type Checkbox as eD, type CorrectAnswersList as eE, type ArrayType as eF, type ObjectType as eG, type PropertiesType as eH, type PropertiesTypePropertiesTypeOptionsOneOf as eI, type ArrayItems as eJ, type ArrayItemsItemTypeOptionsOneOf as eK, type QuizFieldSettings as eL, type CheckboxGroup as eM, type Option as eN, type ComponentsTags as eO, type TagsOption as eP, type ServicesCheckboxGroup as eQ, type FileType as eR, type FileUpload as eS, type Signature as eT, type ProductCheckboxGroup as eU, type ProductCheckboxGroupOption as eV, type DonationInput as eW, type DonationInputOption as eX, type PaymentInput as eY, type FixedPayment as eZ, type MultilineAddress as e_, type BackgroundImage as ea, type LayoutCellData as eb, type ShapeData as ec, type ShapeDataStyles 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 ConfirmSubmissionResponse as f, type RequiredIndicatorProperties as f$, type DefaultCountryConfig as f0, type DefaultCountryConfigOptionsOneOf as f1, type FieldsSettings as f2, type Repeater as f3, type FormLayout as f4, type BreakPoint as f5, type ItemLayout as f6, type ItemLayoutItemOneOf as f7, type Group as f8, type Margin as f9, type Payment as fA, type PaymentComponentTypeOptionsOneOf as fB, type Scheduling as fC, type SchedulingComponentTypeOptionsOneOf as fD, type Address as fE, type AddressComponentTypeOptionsOneOf as fF, type ObjectArray as fG, type ObjectArrayComponentTypeOptionsOneOf as fH, type DisplayField as fI, type DisplayFieldDisplayFieldTypeOptionsOneOf as fJ, type RichContentOptions as fK, type PageNavigationOptions as fL, type Step as fM, type FormRule as fN, type FormOverride as fO, type FormProperties as fP, type PostSubmissionTriggers as fQ, type UpsertContact as fR, type V4FormFieldContactInfo as fS, type V4FormFieldContactInfoAdditionalInfoOneOf as fT, type FormFieldContactInfoEmailInfo as fU, type FormFieldContactInfoPhoneInfo as fV, type FormFieldContactInfoAddressInfo as fW, type FormFieldContactInfoCustomFieldInfo as fX, type FormFieldContactInfoSubscriptionInfo as fY, type NestedForm as fZ, type LimitationRule as f_, 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 BulkDeleteSubmissionResponse as g, type Cursors as g$, type SubmitSettings as g0, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g1, type ThankYouMessageOptions as g2, type RedirectOptions as g3, type FieldGroup as g4, type Rule as g5, type RequiredOptions as g6, type HiddenOptions as g7, type AllowedValuesOptions as g8, type FieldOverride as g9, type CreateSubmissionBySubmitterResponse as gA, type BulkCreateSubmissionBySubmitterRequest as gB, type BulkCreateSubmissionBySubmitterData as gC, type BulkCreateSubmissionBySubmitterResponse as gD, type BulkSubmissionResult as gE, type ItemMetadata as gF, type ApplicationError as gG, type BulkActionMetadata as gH, type GetSubmissionRequest as gI, type GetSubmissionResponse as gJ, type GetSubmissionByCheckoutIdRequest as gK, type GetSubmissionByCheckoutIdResponse as gL, type UpdateSubmissionRequest as gM, type UpdateSubmissionResponse as gN, type ConfirmSubmissionRequest as gO, type DeleteSubmissionRequest as gP, type DeleteSubmissionResponse as gQ, type BulkDeleteSubmissionRequest as gR, type BulkDeleteSubmissionResult as gS, type RestoreSubmissionFromTrashBinRequest as gT, type RemoveSubmissionFromTrashBinRequest as gU, type RemoveSubmissionFromTrashBinResponse as gV, type BulkRemoveSubmissionFromTrashBinRequest as gW, type BulkRemoveSubmissionFromTrashBinResult as gX, type ListDeletedSubmissionsRequest as gY, type CursorPaging as gZ, type CursorPagingMetadata as g_, 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 BulkRemoveSubmissionFromTrashBinOptions as h, type NodeTypeWithLiterals as h$, type GetDeletedSubmissionRequest as h0, type QuerySubmissionRequest as h1, type CursorQueryPagingMethodOneOf as h2, type Sorting as h3, type SearchSubmissionsByNamespaceRequest as h4, type CursorSearch as h5, type CursorSearchPagingMethodOneOf as h6, type SearchDetails as h7, type SearchSubmissionsByNamespaceForExportRequest as h8, type SearchSubmissionsByNamespaceForExportResponse as h9, type BulkUpdateFormSubmissionTagsByFilterRequest as hA, type BulkUpdateFormSubmissionTagsByFilterResponse as hB, type ValidateFormSubmissionRequest as hC, type FieldViolation as hD, type FieldViolationErrorDataOneOf as hE, type SubmissionValidationErrors as hF, type SubmissionValidationError as hG, type SubmissionValidationErrorErrorMessageOneOf as hH, type BaseEventMetadata as hI, type EventMetadata as hJ, type AccountInfoMetadata as hK, type FormSubmissionSearchSpec as hL, type SubmissionsQueryResult as hM, type FormSubmissionQuerySpec as hN, type BulkUpdateFormSubmissionTagsOptions as hO, type BulkUpdateFormSubmissionTagsByFilterOptions as hP, utils as hQ, type SubmissionStatusWithLiterals as hR, type OptInLevelWithLiterals as hS, type WebhookIdentityTypeWithLiterals as hT, type StringTypeFormatEnumFormatWithLiterals as hU, type ValidationFormatWithLiterals as hV, type ProductTypeWithLiterals as hW, type PriceTypeWithLiterals as hX, type FieldTypeWithLiterals as hY, type FormatEnumFormatWithLiterals as hZ, type StringComponentTypeWithLiterals as h_, 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 BulkRemoveSubmissionFromTrashBinResponse as i, type PhoneInfoTagWithLiterals as i$, type WidthTypeWithLiterals as i0, type PluginContainerDataAlignmentWithLiterals as i1, type ButtonDataTypeWithLiterals as i2, type LinkTargetWithLiterals as i3, type TextAlignmentWithLiterals as i4, type LineStyleWithLiterals as i5, type WidthWithLiterals as i6, type DividerDataAlignmentWithLiterals as i7, type ViewModeWithLiterals as i8, type LayoutTypeWithLiterals as i9, type VerticalAlignmentWithLiterals as iA, type NullValueWithLiterals as iB, type ScalingWithLiterals as iC, type LayoutDataImagePositionWithLiterals as iD, type VerticalAlignmentAlignmentWithLiterals as iE, type ResponsivenessBehaviourWithLiterals as iF, type DesignTargetWithLiterals as iG, type ImagePositionWithLiterals as iH, type AlignmentWithLiterals as iI, type ImageFitWithLiterals as iJ, type NumberOfColumnsWithLiterals as iK, type FirstDayOfWeekWithLiterals as iL, type NumberComponentTypeWithLiterals as iM, type BooleanComponentTypeWithLiterals as iN, type ItemTypeWithLiterals as iO, type PropertiesTypeEnumWithLiterals as iP, type ArrayComponentTypeWithLiterals as iQ, type WixFileComponentTypeWithLiterals as iR, type UploadFileFormatWithLiterals as iS, type PaymentComponentTypeWithLiterals as iT, type ComponentTypeWithLiterals as iU, type TypeWithLiterals as iV, type ObjectArrayComponentTypeWithLiterals as iW, type SchedulingComponentTypeWithLiterals as iX, type FormatWithLiterals as iY, type InputTypeWithLiterals as iZ, type EmailInfoTagWithLiterals as i_, type OrientationWithLiterals as ia, type CropWithLiterals as ib, type ThumbnailsAlignmentWithLiterals as ic, type GIFTypeWithLiterals as id, type SourceWithLiterals as ie, type StylesPositionWithLiterals as ig, type MapTypeWithLiterals as ih, type ViewRoleWithLiterals as ii, type VoteRoleWithLiterals as ij, type PollLayoutTypeWithLiterals as ik, type PollLayoutDirectionWithLiterals as il, type BackgroundTypeWithLiterals as im, type DecorationTypeWithLiterals as io, type FontTypeWithLiterals as ip, type PositionWithLiterals as iq, type AspectRatioWithLiterals as ir, type ResizingWithLiterals as is, type PlacementWithLiterals as it, type CardStylesTypeWithLiterals as iu, type CardStylesAlignmentWithLiterals as iv, type LayoutWithLiterals as iw, type AppTypeWithLiterals as ix, type InitialExpandedItemsWithLiterals as iy, type DirectionWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type TagWithLiterals as j0, type ConfirmationLevelWithLiterals as j1, type ContactFieldWithLiterals as j2, type DisplayFieldTypeWithLiterals as j3, type OverrideEntityTypeWithLiterals as j4, type KindWithLiterals as j5, type FormFieldContactInfoEmailInfoTagWithLiterals as j6, type FormFieldContactInfoPhoneInfoTagWithLiterals as j7, type AddressInfoTagWithLiterals as j8, type SubscriptionInfoOptInLevelWithLiterals as j9, createSubmission as jA, getSubmission as jB, updateSubmission as jC, confirmSubmission as jD, deleteSubmission as jE, bulkDeleteSubmission as jF, restoreSubmissionFromTrashBin as jG, removeSubmissionFromTrashBin as jH, bulkRemoveSubmissionFromTrashBin as jI, listDeletedSubmissions as jJ, getDeletedSubmission as jK, querySubmission as jL, querySubmissionsByNamespace as jM, countSubmissionsByFilter as jN, countSubmissions as jO, countDeletedSubmissions as jP, getMediaUploadUrl as jQ, bulkMarkSubmissionsAsSeen as jR, getSubmissionDownloadUrl as jS, downloadSubmission as jT, getFormattedSubmission as jU, updateExtendedFields as jV, validateFormSubmission as jW, type FormFieldContactInfoContactFieldWithLiterals as ja, type SpamFilterProtectionLevelWithLiterals as jb, type RequiredIndicatorWithLiterals as jc, type RequiredIndicatorPlacementWithLiterals as jd, type TargetWithLiterals as je, type SubmitSuccessActionWithLiterals as jf, type ChangeablePropertyWithLiterals as jg, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jh, type OperatorWithLiterals as ji, type ResultsDisplayWithLiterals as jj, type IdentityTypeWithLiterals as jk, type ErrorTypeWithLiterals as jl, type SortOrderWithLiterals as jm, type ModeWithLiterals as jn, type StatusWithLiterals as jo, type SubmissionErrorTypeWithLiterals as jp, type CommonSearchWithEntityContext as jq, type CommonQueryWithEntityContext as jr, onSubmissionCreated as js, onSubmissionDeleted as jt, onSubmissionRemovedSubmissionFromTrash as ju, onSubmissionStatusUpdated as jv, onSubmissionContactMapped as jw, onSubmissionContactMappingSkipped as jx, onSubmissionUpdated as jy, upsertContactFromSubmission as jz, type CursorQuery as k, 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 };
7963
+ 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 };
@@ -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-CG5mgBXv.js';
3
- export { bP as AccountInfo, hK as AccountInfoMetadata, bL as ActionEvent, fE as Address, fF as AddressComponentTypeOptionsOneOf, fm as AddressInfo, bc as AddressInfoTag, j8 as AddressInfoTagWithLiterals, e$ as AddressLine2, aM as Alignment, iI as AlignmentWithLiterals, g8 as AllowedValuesOptions, dE as AnchorData, gd as AndCondition, dL as AppEmbedData, dM as AppEmbedDataAppDataOneOf, aB as AppType, ix as AppTypeWithLiterals, gG as ApplicationError, fb as Appointment, fc as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iQ as ArrayComponentTypeWithLiterals, ca as ArrayErrorMessages, eJ as ArrayItems, eK as ArrayItemsItemTypeOptionsOneOf, eF as ArrayType, c8 as ArrayTypeArrayItems, c9 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, ir as AspectRatioWithLiterals, e4 as AudioData, du as Background, dv as BackgroundBackgroundOneOf, ea as BackgroundImage, ar as BackgroundType, im as BackgroundTypeWithLiterals, hI as BaseEventMetadata, e7 as BlockquoteData, dN as BookingData, aR as BooleanComponentType, iN as BooleanComponentTypeWithLiterals, c2 as BooleanErrorMessages, eC as BooleanType, cJ as Border, e1 as BorderColors, e2 as BorderWidths, f5 as BreakPoint, gH as BulkActionMetadata, gC as BulkCreateSubmissionBySubmitterData, gB as BulkCreateSubmissionBySubmitterRequest, gD as BulkCreateSubmissionBySubmitterResponse, gR as BulkDeleteSubmissionRequest, gS as BulkDeleteSubmissionResult, hk as BulkMarkSubmissionsAsSeenRequest, gW as BulkRemoveSubmissionFromTrashBinRequest, gX as BulkRemoveSubmissionFromTrashBinResult, gE as BulkSubmissionResult, hP as BulkUpdateFormSubmissionTagsByFilterOptions, hA as BulkUpdateFormSubmissionTagsByFilterRequest, hB as BulkUpdateFormSubmissionTagsByFilterResponse, hO as BulkUpdateFormSubmissionTagsOptions, hx as BulkUpdateFormSubmissionTagsRequest, hy as BulkUpdateFormSubmissionTagsResponse, hz as BulkUpdateFormSubmissionTagsResult, e6 as BulletedListData, cI as ButtonData, a8 as ButtonDataType, i2 as ButtonDataTypeWithLiterals, dP as ButtonStyles, e8 as CaptionData, dS as CardStyles, az as CardStylesAlignment, iv as CardStylesAlignmentWithLiterals, ay as CardStylesType, iu as CardStylesTypeWithLiterals, e0 as CellStyle, bk as ChangeableProperty, jg as ChangeablePropertyWithLiterals, eD as Checkbox, eM as CheckboxGroup, gp as Checkout, cU as CodeBlockData, dY as CollapsibleListData, dF as ColorData, cK as Colors, jr as CommonQueryWithEntityContext, jq as CommonSearchWithEntityContext, aY as ComponentType, iU as ComponentTypeWithLiterals, eO as ComponentsTags, gf as Condition, gb as ConditionNode, gc as ConditionNodeNodeOneOf, gO as ConfirmSubmissionRequest, b5 as ConfirmationLevel, j1 as ConfirmationLevelWithLiterals, b6 as ContactField, j2 as ContactFieldWithLiterals, eE as CorrectAnswersList, hh as CountDeletedSubmissionsRequest, he as CountSubmissionsByFilterRequest, hg as CountSubmissionsRequest, bQ as CreateCheckoutFromSubmissionRequest, bR as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, go as CreateCheckoutFromSubmissionResponse, gz as CreateSubmissionBySubmitterRequest, gA as CreateSubmissionBySubmitterResponse, gv as CreateSubmissionRequest, gw as CreateSubmissionResponse, ah as Crop, ib as CropWithLiterals, gZ as CursorPaging, g_ as CursorPagingMetadata, h2 as CursorQueryPagingMethodOneOf, h5 as CursorSearch, h6 as CursorSearchPagingMethodOneOf, g$ as Cursors, fn as CustomFieldInfo, em as CustomOption, cq as DataExtensionsDetails, er as DateInput, et as DatePicker, cz as DateTimeConstraints, ep as DateTimeInput, dC as Decoration, dD as DecorationDataOneOf, as as DecorationType, io as DecorationTypeWithLiterals, f0 as DefaultCountryConfig, f1 as DefaultCountryConfigOptionsOneOf, gP as DeleteSubmissionRequest, gQ as DeleteSubmissionResponse, dA as Design, aK as DesignTarget, iG as DesignTargetWithLiterals, d_ as Dimensions, aD as Direction, iz as DirectionWithLiterals, fI as DisplayField, fJ as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, j3 as DisplayFieldTypeWithLiterals, cW as DividerData, ad as DividerDataAlignment, i7 as DividerDataAlignmentWithLiterals, ho as DocumentReady, ef as DocumentStyle, bF as DomainEvent, bG as DomainEventBodyOneOf, eW as DonationInput, eX as DonationInputOption, hp as DownloadSubmissionRequest, en as Dropdown, eo as DropdownOption, cg as DynamicPriceOptions, fk as EmailInfo, b2 as EmailInfoTag, i_ as EmailInfoTagWithLiterals, dW as EmbedData, gs as Empty, bH as EntityCreatedEvent, bK as EntityDeletedEvent, bJ as EntityUpdatedEvent, bp as ErrorType, jl as ErrorTypeWithLiterals, dO as EventData, hJ as EventMetadata, bw as ExtendedFields, cs as Field, ct as FieldFieldTypeOptionsOneOf, g4 as FieldGroup, g9 as FieldOverride, ga as FieldOverridePropertyTypeOptionsOneOf, ck as FieldOverrides, a2 as FieldType, hY as FieldTypeWithLiterals, hD as FieldViolation, hE as FieldViolationErrorDataOneOf, cl as FieldsOverrides, f2 as FieldsSettings, cX as FileData, cY as FileSource, cZ as FileSourceDataOneOf, eR as FileType, eS as FileUpload, aP as FirstDayOfWeek, iL as FirstDayOfWeekWithLiterals, eZ as FixedPayment, cf as FixedPriceOptions, dK as FontFamilyData, dI as FontSizeData, at as FontType, ip as FontTypeWithLiterals, bS as Form, hi as FormDeletedSubmissionsCount, bT as FormField, c3 as FormFieldArrayType, c1 as FormFieldBooleanType, fi as FormFieldContactInfo, fj as FormFieldContactInfoAdditionalInfoOneOf, fW as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, ja as FormFieldContactInfoContactFieldWithLiterals, fX as FormFieldContactInfoCustomFieldInfo, fU as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, j6 as FormFieldContactInfoEmailInfoTagWithLiterals, fV as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, j7 as FormFieldContactInfoPhoneInfoTagWithLiterals, fY as FormFieldContactInfoSubscriptionInfo, b_ as FormFieldNumberType, c4 as FormFieldObjectType, bU as FormFieldStringType, bV as FormFieldStringTypeFormatOptionsOneOf, f4 as FormLayout, fO as FormOverride, fP as FormProperties, fN as FormRule, hN as FormSubmissionQuerySpec, hL as FormSubmissionSearchSpec, bA as FormSubmissionStatusUpdatedEvent, hf as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, hZ as FormatEnumFormatWithLiterals, iY as FormatWithLiterals, hv as FormattedFormSubmission, hs as FormattedSubmission, da as GIF, d9 as GIFData, aj as GIFType, id as GIFTypeWithLiterals, c$ as GalleryData, d5 as GalleryOptions, d6 as GalleryOptionsLayout, h0 as GetDeletedSubmissionRequest, hr as GetFormattedSubmissionRequest, hj as GetMediaUploadURLRequest, gK as GetSubmissionByCheckoutIdRequest, gL as GetSubmissionByCheckoutIdResponse, hl as GetSubmissionDownloadUrlRequest, gI as GetSubmissionRequest, gJ as GetSubmissionResponse, dt as Gradient, f8 as Group, dc as HTMLData, dd as HTMLDataDataOneOf, hq as HeadersEntry, db as HeadingData, cP as Height, g7 as HiddenOptions, bN as IdentificationData, bO as IdentificationDataIdOneOf, bo as IdentityType, jk as IdentityTypeWithLiterals, d1 as Image, de as ImageData, dg as ImageDataStyles, aN as ImageFit, iJ as ImageFitWithLiterals, aL as ImagePosition, iH as ImagePositionWithLiterals, dQ as ImageStyles, ff as InPersonOptions, aC as InitialExpandedItems, iy as InitialExpandedItemsWithLiterals, cu as InputField, cv as InputFieldInputTypeOptionsOneOf, b1 as InputType, iZ as InputTypeWithLiterals, c0 as IntegerType, gq as IsFormSubmittableRequest, gr as IsFormSubmittableResponse, d3 as Item, d4 as ItemDataOneOf, f6 as ItemLayout, f7 as ItemLayoutItemOneOf, gF as ItemMetadata, d7 as ItemStyle, aS as ItemType, iO as ItemTypeWithLiterals, b9 as Kind, j5 as KindWithLiterals, aA as Layout, eb as LayoutCellData, e9 as LayoutData, aH as LayoutDataImagePosition, iD as LayoutDataImagePositionWithLiterals, af as LayoutType, i9 as LayoutTypeWithLiterals, iw as LayoutWithLiterals, f_ as LimitationRule, ab as LineStyle, i5 as LineStyleWithLiterals, cR as Link, dG as LinkData, cS as LinkDataOneOf, dh as LinkPreviewData, di as LinkPreviewDataStyles, a9 as LinkTarget, i3 as LinkTargetWithLiterals, gY as ListDeletedSubmissionsRequest, ht as ListFormattedSubmissionsRequest, hu as ListFormattedSubmissionsResponse, e3 as ListValue, fd as Location, fe as LocationLocationInfoOneOf, dj as MapData, dk as MapSettings, am as MapType, ih as MapTypeWithLiterals, f9 as Margin, bD as MarketingSubscriptionDetails, d0 as Media, eh as MediaItem, ei as MediaItemMediaOneOf, ej as MediaSettings, dH as MentionData, bM as MessageEnvelope, ee as Metadata, br as Mode, jn as ModeWithLiterals, e_ as MultilineAddress, cj as MultilineAddressValidation, fZ as NestedForm, cn as NestedFormFieldOverrides, cr as NestedFormOverrides, cF as Node, cG as NodeDataOneOf, cH as NodeStyle, a5 as NodeType, h$ as NodeTypeWithLiterals, aF as NullValue, iB as NullValueWithLiterals, aQ as NumberComponentType, iM as NumberComponentTypeWithLiterals, ex as NumberCorrectAnswersList, b$ as NumberErrorMessages, eA as NumberInput, aO as NumberOfColumns, iK as NumberOfColumnsWithLiterals, ez as NumberQuizFieldSettings, ey as NumberType, fG as ObjectArray, a_ as ObjectArrayComponentType, fH as ObjectArrayComponentTypeOptionsOneOf, iW as ObjectArrayComponentTypeWithLiterals, cm as ObjectArrayType, c7 as ObjectErrorMessages, eG as ObjectType, c5 as ObjectTypePropertiesType, c6 as ObjectTypePropertiesTypePropertiesTypeOneOf, dX as Oembed, bm as Operator, ji as OperatorWithLiterals, Y as OptInLevel, hS as OptInLevelWithLiterals, eN as Option, dx as OptionDesign, ds as OptionLayout, ge as OrCondition, bx as OrderDetails, e5 as OrderedListData, ag as Orientation, ia as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, jh as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, j4 as OverrideEntityTypeWithLiterals, c_ as PDFSettings, fL as PageNavigationOptions, dl as ParagraphData, gn as PassFailMessages, ew as Password, fA as Payment, aX as PaymentComponentType, fB as PaymentComponentTypeOptionsOneOf, iT as PaymentComponentTypeWithLiterals, eY as PaymentInput, cd as PaymentType, dn as Permissions, cA as PhoneConstraints, fl as PhoneInfo, b3 as PhoneInfoTag, i$ as PhoneInfoTagWithLiterals, eq as PhoneInput, fh as PhoneOptions, ax as Placement, it as PlacementWithLiterals, dV as PlaybackOptions, cL as PluginContainerData, a7 as PluginContainerDataAlignment, i1 as PluginContainerDataAlignmentWithLiterals, cM as PluginContainerDataWidth, cN as PluginContainerDataWidthDataOneOf, dy as Poll, dm as PollData, dz as PollDataLayout, dw as PollDesign, dr as PollLayout, aq as PollLayoutDirection, il as PollLayoutDirectionWithLiterals, ap as PollLayoutType, ik as PollLayoutTypeWithLiterals, dp as PollOption, au as Position, iq as PositionWithLiterals, fQ as PostSubmissionTriggers, cb as PredefinedValidation, cc as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hX as PriceTypeWithLiterals, dT as PricingData, ch as Product, eU as ProductCheckboxGroup, eV as ProductCheckboxGroupOption, ci as ProductPriceOptionsOneOf, a0 as ProductType, hW as ProductTypeWithLiterals, eH as PropertiesType, aT as PropertiesTypeEnum, iP as PropertiesTypeEnumWithLiterals, eI as PropertiesTypePropertiesTypeOptionsOneOf, by as PublicTags, ce as QuantityLimit, h1 as QuerySubmissionRequest, hc as QuerySubmissionsByNamespaceForExportRequest, hd as QuerySubmissionsByNamespaceForExportResponse, ha as QuerySubmissionsByNamespaceRequest, hb as QuerySubmissionsByNamespaceResponse, eL as QuizFieldSettings, gk as QuizSettings, gl as QuizSettingsPassingCriteriaOneOf, gm as QuizSettingsResultsDisplayOptionsOneOf, ek as RadioGroup, el as RadioGroupOption, eB as RatingInput, g3 as RedirectOptions, cT as Rel, gU as RemoveSubmissionFromTrashBinRequest, gV as RemoveSubmissionFromTrashBinResponse, bB as RemovedSubmissionFromTrash, f3 as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, jd as RequiredIndicatorPlacementWithLiterals, f$ as RequiredIndicatorProperties, jc as RequiredIndicatorWithLiterals, g6 as RequiredOptions, aw as Resizing, is as ResizingWithLiterals, aJ as ResponsivenessBehaviour, iF as ResponsivenessBehaviourWithLiterals, bI as RestoreInfo, gT as RestoreSubmissionFromTrashBinRequest, bn as ResultsDisplay, jj as ResultsDisplayWithLiterals, dR as RibbonStyles, cE as RichContent, fK as RichContentOptions, g5 as Rule, gg as RuleFormOverride, gh as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, iC as ScalingWithLiterals, fC as Scheduling, a$ as SchedulingComponentType, fD as SchedulingComponentTypeOptionsOneOf, iX as SchedulingComponentTypeWithLiterals, h7 as SearchDetails, h8 as SearchSubmissionsByNamespaceForExportRequest, h9 as SearchSubmissionsByNamespaceForExportResponse, h4 as SearchSubmissionsByNamespaceRequest, fa as Section, ev as ServiceOption, eQ as ServicesCheckboxGroup, eu as ServicesDropdown, dq as Settings, ec as ShapeData, ed as ShapeDataStyles, eT as Signature, bq as SortOrder, jm as SortOrderWithLiterals, h3 as Sorting, ak as Source, ie as SourceWithLiterals, bf as SpamFilterProtectionLevel, jb as SpamFilterProtectionLevelWithLiterals, cO as Spoiler, dJ as SpoilerData, bs as Status, jo as StatusWithLiterals, fM as Step, a4 as StringComponentType, h_ as StringComponentTypeWithLiterals, cw as StringCorrectAnswersList, bW as StringErrorMessages, cC as StringQuizFieldSettings, cx as StringType, bX as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hU as StringTypeFormatEnumFormatWithLiterals, cy as StringTypeFormatOptionsOneOf, bY as StringTypePhoneConstraints, bZ as StringTypeValidationMessages, cQ as Styles, df as StylesBorder, al as StylesPosition, ig as StylesPositionWithLiterals, bC as SubmissionContactMapped, bE as SubmissionContactMappingSkipped, hm as SubmissionDocument, hn as SubmissionDocumentDocumentOneOf, bt as SubmissionErrorType, jp as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hR as SubmissionStatusWithLiterals, hG as SubmissionValidationError, hH as SubmissionValidationErrorErrorMessageOneOf, hF as SubmissionValidationErrors, gx as SubmissionValidationErrorsDetails, hM as SubmissionsQueryResult, gu as SubmitContactResponse, g0 as SubmitSettings, g1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, jf as SubmitSuccessActionWithLiterals, bu as Submitter, bv as SubmitterSubmitterOneOf, fo as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, j9 as SubscriptionInfoOptInLevelWithLiterals, d$ as TableCellData, dZ as TableData, b4 as Tag, bz as TagList, j0 as TagWithLiterals, gi as Tags, eP as TagsOption, gj as TagsTagList, bi as Target, je as TargetWithLiterals, aa as TextAlignment, i4 as TextAlignmentWithLiterals, dB as TextData, cD as TextInput, eg as TextNodeStyle, cV as TextStyle, g2 as ThankYouMessageOptions, d8 as Thumbnails, ai as ThumbnailsAlignment, ic as ThumbnailsAlignmentWithLiterals, es as TimeInput, aZ as Type, iV as TypeWithLiterals, hw as UpdateExtendedFieldsRequest, gM as UpdateSubmissionRequest, gN as UpdateSubmissionResponse, aW as UploadFileFormat, iS as UploadFileFormatWithLiterals, fR as UpsertContact, gt as UpsertContactFromSubmissionRequest, fS as V4FormFieldContactInfo, fT as V4FormFieldContactInfoAdditionalInfoOneOf, hC as ValidateFormSubmissionRequest, co as Validation, gy as ValidationError, $ as ValidationFormat, hV as ValidationFormatWithLiterals, cB as ValidationMessages, cp as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, iE as VerticalAlignmentAlignmentWithLiterals, iA as VerticalAlignmentWithLiterals, d2 as Video, fg as VideoConferenceOptions, dU as VideoData, ae as ViewMode, i8 as ViewModeWithLiterals, an as ViewRole, ii as ViewRoleWithLiterals, ao as VoteRole, ij as VoteRoleWithLiterals, Z as WebhookIdentityType, hT as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, i0 as WidthTypeWithLiterals, i6 as WidthWithLiterals, fy as WixFile, aV as WixFileComponentType, fz as WixFileComponentTypeOptionsOneOf, iR 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, hQ as utils } from './forms-v4-submission-submissions.universal-CG5mgBXv.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-DkEEErBR.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-DkEEErBR.js';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {