@wix/auto_sdk_forms_submissions 1.0.100 → 1.0.101

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-M17yHtDQ.d.ts → forms-v4-submission-submissions.universal-DGP8cfot.d.ts} +62 -23
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +23 -0
  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 +23 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +63 -24
  9. package/build/cjs/meta.js +23 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-M17yHtDQ.d.mts → forms-v4-submission-submissions.universal-DGP8cfot.d.mts} +62 -23
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +23 -0
  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 +23 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +63 -24
  19. package/build/es/meta.mjs +23 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-BeboyW2D.d.ts → forms-v4-submission-submissions.universal-BAcUgmrV.d.ts} +62 -23
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +23 -0
  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 +23 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +63 -24
  29. package/build/internal/cjs/meta.js +23 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-BeboyW2D.d.mts → forms-v4-submission-submissions.universal-BAcUgmrV.d.mts} +62 -23
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +23 -0
  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 +23 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +63 -24
  39. package/build/internal/es/meta.mjs +23 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -71,6 +71,7 @@ interface FormSubmission {
71
71
  tags?: PublicTags;
72
72
  }
73
73
  declare enum SubmissionStatus {
74
+ UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
74
75
  /** A submission is created, but has not yet been recorded in the Wix Forms collection. */
75
76
  PENDING = "PENDING",
76
77
  /** A submission is recorded in the Wix Forms collection. */
@@ -81,7 +82,7 @@ declare enum SubmissionStatus {
81
82
  PAYMENT_CANCELED = "PAYMENT_CANCELED"
82
83
  }
83
84
  /** @enumType */
84
- type SubmissionStatusWithLiterals = SubmissionStatus | 'PENDING' | 'CONFIRMED' | 'PAYMENT_WAITING' | 'PAYMENT_CANCELED';
85
+ type SubmissionStatusWithLiterals = SubmissionStatus | 'UNKNOWN_SUBMISSION_STATUS' | 'PENDING' | 'CONFIRMED' | 'PAYMENT_WAITING' | 'PAYMENT_CANCELED';
85
86
  interface Submitter extends SubmitterSubmitterOneOf {
86
87
  /**
87
88
  * Member ID.
@@ -941,21 +942,25 @@ interface PaymentType {
941
942
  maxItems?: number | null;
942
943
  }
943
944
  declare enum ProductType {
945
+ /** Unknown product type. */
946
+ UNKNOWN_PRODUCT_TYPE = "UNKNOWN_PRODUCT_TYPE",
944
947
  /** Physical product that can be shipped. */
945
948
  SHIPPABLE = "SHIPPABLE",
946
949
  /** Digital product. */
947
950
  DIGITAL = "DIGITAL"
948
951
  }
949
952
  /** @enumType */
950
- type ProductTypeWithLiterals = ProductType | 'SHIPPABLE' | 'DIGITAL';
953
+ type ProductTypeWithLiterals = ProductType | 'UNKNOWN_PRODUCT_TYPE' | 'SHIPPABLE' | 'DIGITAL';
951
954
  declare enum PriceType {
955
+ /** Unknown price type. */
956
+ UNKNOWN_PRICE_TYPE = "UNKNOWN_PRICE_TYPE",
952
957
  /** Product has a single, unchanging price. */
953
958
  FIXED_PRICE = "FIXED_PRICE",
954
959
  /** Product price can vary within a specified range. */
955
960
  DYNAMIC_PRICE = "DYNAMIC_PRICE"
956
961
  }
957
962
  /** @enumType */
958
- type PriceTypeWithLiterals = PriceType | 'FIXED_PRICE' | 'DYNAMIC_PRICE';
963
+ type PriceTypeWithLiterals = PriceType | 'UNKNOWN_PRICE_TYPE' | 'FIXED_PRICE' | 'DYNAMIC_PRICE';
959
964
  interface QuantityLimit {
960
965
  /**
961
966
  * Minimum quantity that must be selected for this product.
@@ -3388,14 +3393,18 @@ interface MediaSettings {
3388
3393
  imageFit?: ImageFitWithLiterals;
3389
3394
  }
3390
3395
  declare enum ImagePosition {
3396
+ /** Undefined position. */
3397
+ UNKNOWN_IMAGE_POSITION = "UNKNOWN_IMAGE_POSITION",
3391
3398
  /** Above the field's label. */
3392
3399
  ABOVE = "ABOVE",
3393
3400
  /** Below the field's label. */
3394
3401
  BELOW = "BELOW"
3395
3402
  }
3396
3403
  /** @enumType */
3397
- type ImagePositionWithLiterals = ImagePosition | 'ABOVE' | 'BELOW';
3404
+ type ImagePositionWithLiterals = ImagePosition | 'UNKNOWN_IMAGE_POSITION' | 'ABOVE' | 'BELOW';
3398
3405
  declare enum Alignment {
3406
+ /** Undefined alignment. */
3407
+ UNKNOWN_ALIGNMENT = "UNKNOWN_ALIGNMENT",
3399
3408
  /** Align left. */
3400
3409
  LEFT = "LEFT",
3401
3410
  /** Align center. */
@@ -3404,15 +3413,16 @@ declare enum Alignment {
3404
3413
  RIGHT = "RIGHT"
3405
3414
  }
3406
3415
  /** @enumType */
3407
- type AlignmentWithLiterals = Alignment | 'LEFT' | 'CENTER' | 'RIGHT';
3416
+ type AlignmentWithLiterals = Alignment | 'UNKNOWN_ALIGNMENT' | 'LEFT' | 'CENTER' | 'RIGHT';
3408
3417
  declare enum ImageFit {
3418
+ UNKNOWN_IMAGE_FIT = "UNKNOWN_IMAGE_FIT",
3409
3419
  /** Scale the image to maintain its aspect ratio while filling the element's entire content box. Portions of the image may be clipped if the aspect ratios don't match. */
3410
3420
  COVER = "COVER",
3411
3421
  /** Resize the image to fill the element's content box. The image's original sspect ratio may not be preserved. */
3412
3422
  CONTAIN = "CONTAIN"
3413
3423
  }
3414
3424
  /** @enumType */
3415
- type ImageFitWithLiterals = ImageFit | 'COVER' | 'CONTAIN';
3425
+ type ImageFitWithLiterals = ImageFit | 'UNKNOWN_IMAGE_FIT' | 'COVER' | 'CONTAIN';
3416
3426
  interface RadioGroup {
3417
3427
  /**
3418
3428
  * Field label.
@@ -3478,6 +3488,8 @@ interface CustomOption {
3478
3488
  placeholder?: string | null;
3479
3489
  }
3480
3490
  declare enum NumberOfColumns {
3491
+ /** Undefined number of columns. */
3492
+ UNKNOWN_NUMBER_OF_COLUMNS = "UNKNOWN_NUMBER_OF_COLUMNS",
3481
3493
  /** Zero columns. */
3482
3494
  ZERO = "ZERO",
3483
3495
  /** One column. */
@@ -3488,7 +3500,7 @@ declare enum NumberOfColumns {
3488
3500
  THREE = "THREE"
3489
3501
  }
3490
3502
  /** @enumType */
3491
- type NumberOfColumnsWithLiterals = NumberOfColumns | 'ZERO' | 'ONE' | 'TWO' | 'THREE';
3503
+ type NumberOfColumnsWithLiterals = NumberOfColumns | 'UNKNOWN_NUMBER_OF_COLUMNS' | 'ZERO' | 'ONE' | 'TWO' | 'THREE';
3492
3504
  interface Dropdown {
3493
3505
  /**
3494
3506
  * Field label.
@@ -3941,6 +3953,8 @@ interface ArrayType {
3941
3953
  items?: ArrayItems;
3942
3954
  }
3943
3955
  declare enum ItemType {
3956
+ /** Unknown item type. */
3957
+ UNKNOWN_ITEM_TYPE = "UNKNOWN_ITEM_TYPE",
3944
3958
  /** Array can contain string values. */
3945
3959
  STRING = "STRING",
3946
3960
  /** Array can contain numeric values. */
@@ -3949,12 +3963,14 @@ declare enum ItemType {
3949
3963
  BOOLEAN = "BOOLEAN"
3950
3964
  }
3951
3965
  /** @enumType */
3952
- type ItemTypeWithLiterals = ItemType | 'STRING' | 'NUMBER' | 'BOOLEAN';
3966
+ type ItemTypeWithLiterals = ItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN';
3953
3967
  interface ObjectType {
3954
3968
  /** Definition of object properties and their validation rules. */
3955
3969
  properties?: Record<string, PropertiesType>;
3956
3970
  }
3957
3971
  declare enum PropertiesTypeEnum {
3972
+ /** Unknown property type. */
3973
+ UNKNOWN_PROPERTY_TYPE = "UNKNOWN_PROPERTY_TYPE",
3958
3974
  /** Property must contain a string value. */
3959
3975
  STRING = "STRING",
3960
3976
  /** Property must contain a numeric value. */
@@ -3965,7 +3981,7 @@ declare enum PropertiesTypeEnum {
3965
3981
  ARRAY = "ARRAY"
3966
3982
  }
3967
3983
  /** @enumType */
3968
- type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY';
3984
+ type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | 'UNKNOWN_PROPERTY_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY';
3969
3985
  interface PropertiesType extends PropertiesTypePropertiesTypeOptionsOneOf {
3970
3986
  /** Validation rules for string properties. */
3971
3987
  stringOptions?: StringType;
@@ -4185,6 +4201,8 @@ interface FileType {
4185
4201
  uploadFileFormats?: UploadFileFormatWithLiterals[];
4186
4202
  }
4187
4203
  declare enum UploadFileFormat {
4204
+ /** Undefined upload file format. */
4205
+ UNKNOWN_UPLOAD_FILE_FORMAT = "UNKNOWN_UPLOAD_FILE_FORMAT",
4188
4206
  /** Video files. */
4189
4207
  VIDEO = "VIDEO",
4190
4208
  /** Image files. */
@@ -4197,7 +4215,7 @@ declare enum UploadFileFormat {
4197
4215
  ARCHIVE = "ARCHIVE"
4198
4216
  }
4199
4217
  /** @enumType */
4200
- type UploadFileFormatWithLiterals = UploadFileFormat | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
4218
+ type UploadFileFormatWithLiterals = UploadFileFormat | 'UNKNOWN_UPLOAD_FILE_FORMAT' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
4201
4219
  interface FileUpload {
4202
4220
  /**
4203
4221
  * Field label.
@@ -4670,6 +4688,7 @@ interface LocationLocationInfoOneOf {
4670
4688
  businessLocationId?: string | null;
4671
4689
  }
4672
4690
  declare enum Format {
4691
+ UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
4673
4692
  /** Face-to-face meeting at a physical location. */
4674
4693
  IN_PERSON = "IN_PERSON",
4675
4694
  /** Online meeting via video conference. */
@@ -4678,16 +4697,18 @@ declare enum Format {
4678
4697
  PHONE = "PHONE"
4679
4698
  }
4680
4699
  /** @enumType */
4681
- type FormatWithLiterals = Format | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
4700
+ type FormatWithLiterals = Format | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
4682
4701
  declare enum MeetingType {
4702
+ UNKNOWN_MEETING_TYPE = "UNKNOWN_MEETING_TYPE",
4683
4703
  /** Single staff member provides the service. */
4684
4704
  SINGLE_STAFF = "SINGLE_STAFF",
4685
4705
  /** Multiple staff members rotate via round robin scheduling. */
4686
4706
  ROUND_ROBIN = "ROUND_ROBIN"
4687
4707
  }
4688
4708
  /** @enumType */
4689
- type MeetingTypeWithLiterals = MeetingType | 'SINGLE_STAFF' | 'ROUND_ROBIN';
4709
+ type MeetingTypeWithLiterals = MeetingType | 'UNKNOWN_MEETING_TYPE' | 'SINGLE_STAFF' | 'ROUND_ROBIN';
4690
4710
  declare enum StaffStrategySelection {
4711
+ UNKNOWN_STAFF_STRATEGY_SELECTION = "UNKNOWN_STAFF_STRATEGY_SELECTION",
4691
4712
  /** Staff selected randomly. */
4692
4713
  AUTOMATIC = "AUTOMATIC",
4693
4714
  /** Staff sorted by priority, highest first. */
@@ -4696,7 +4717,7 @@ declare enum StaffStrategySelection {
4696
4717
  LOW_TO_HIGH_PRIORITY = "LOW_TO_HIGH_PRIORITY"
4697
4718
  }
4698
4719
  /** @enumType */
4699
- type StaffStrategySelectionWithLiterals = StaffStrategySelection | 'AUTOMATIC' | 'HIGH_TO_LOW_PRIORITY' | 'LOW_TO_HIGH_PRIORITY';
4720
+ type StaffStrategySelectionWithLiterals = StaffStrategySelection | 'UNKNOWN_STAFF_STRATEGY_SELECTION' | 'AUTOMATIC' | 'HIGH_TO_LOW_PRIORITY' | 'LOW_TO_HIGH_PRIORITY';
4700
4721
  interface InPersonOptions {
4701
4722
  /**
4702
4723
  * Physical locations where the appointment can take place.
@@ -4813,6 +4834,7 @@ declare enum SubscriptionChannel {
4813
4834
  /** @enumType */
4814
4835
  type SubscriptionChannelWithLiterals = SubscriptionChannel | 'EMAIL' | 'SMS';
4815
4836
  declare enum ContactField {
4837
+ UNKNOWN_CONTACT_FIELD = "UNKNOWN_CONTACT_FIELD",
4816
4838
  /** Contact's first name. */
4817
4839
  FIRST_NAME = "FIRST_NAME",
4818
4840
  /** Contact's last name. */
@@ -4837,7 +4859,7 @@ declare enum ContactField {
4837
4859
  VAT_ID = "VAT_ID"
4838
4860
  }
4839
4861
  /** @enumType */
4840
- type ContactFieldWithLiterals = ContactField | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
4862
+ type ContactFieldWithLiterals = ContactField | 'UNKNOWN_CONTACT_FIELD' | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
4841
4863
  interface EmailInfo {
4842
4864
  /** Email categorization tag. */
4843
4865
  tag?: EmailInfoTagWithLiterals;
@@ -5315,6 +5337,8 @@ declare enum SubscriptionInfoOptInLevel {
5315
5337
  /** @enumType */
5316
5338
  type SubscriptionInfoOptInLevelWithLiterals = SubscriptionInfoOptInLevel | 'UNKNOWN' | 'SINGLE_CONFIRMATION' | 'DOUBLE_CONFIRMATION';
5317
5339
  declare enum FormFieldContactInfoContactField {
5340
+ /** Unknown contact field. */
5341
+ UNDEFINED = "UNDEFINED",
5318
5342
  /** First name. */
5319
5343
  FIRST_NAME = "FIRST_NAME",
5320
5344
  /** CLast name. */
@@ -5339,7 +5363,7 @@ declare enum FormFieldContactInfoContactField {
5339
5363
  VAT_ID = "VAT_ID"
5340
5364
  }
5341
5365
  /** @enumType */
5342
- type FormFieldContactInfoContactFieldWithLiterals = FormFieldContactInfoContactField | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
5366
+ type FormFieldContactInfoContactFieldWithLiterals = FormFieldContactInfoContactField | 'UNDEFINED' | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
5343
5367
  interface FormFieldContactInfoEmailInfo {
5344
5368
  /** Email tag. */
5345
5369
  tag?: FormFieldContactInfoEmailInfoTagWithLiterals;
@@ -5413,6 +5437,8 @@ interface RequiredIndicatorProperties {
5413
5437
  requiredIndicatorPlacement?: RequiredIndicatorPlacementWithLiterals;
5414
5438
  }
5415
5439
  declare enum RequiredIndicator {
5440
+ /** Unknown required indicator type. */
5441
+ UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
5416
5442
  /** Display an asterisk (*) symbol to indicate required fields. */
5417
5443
  ASTERISK = "ASTERISK",
5418
5444
  /** Display the text "Required" to indicate required fields. */
@@ -5421,15 +5447,17 @@ declare enum RequiredIndicator {
5421
5447
  NONE = "NONE"
5422
5448
  }
5423
5449
  /** @enumType */
5424
- type RequiredIndicatorWithLiterals = RequiredIndicator | 'ASTERISK' | 'TEXT' | 'NONE';
5450
+ type RequiredIndicatorWithLiterals = RequiredIndicator | 'UNKNOWN_INDICATOR' | 'ASTERISK' | 'TEXT' | 'NONE';
5425
5451
  declare enum RequiredIndicatorPlacement {
5452
+ /** Unknown required indicator placement. */
5453
+ UNKNOWN_PLACEMENT = "UNKNOWN_PLACEMENT",
5426
5454
  /** Place the required indicator after the field title. */
5427
5455
  AFTER_FIELD_TITLE = "AFTER_FIELD_TITLE",
5428
5456
  /** Place the required indicator before the field title. */
5429
5457
  BEFORE_FIELD_TITLE = "BEFORE_FIELD_TITLE"
5430
5458
  }
5431
5459
  /** @enumType */
5432
- type RequiredIndicatorPlacementWithLiterals = RequiredIndicatorPlacement | 'AFTER_FIELD_TITLE' | 'BEFORE_FIELD_TITLE';
5460
+ type RequiredIndicatorPlacementWithLiterals = RequiredIndicatorPlacement | 'UNKNOWN_PLACEMENT' | 'AFTER_FIELD_TITLE' | 'BEFORE_FIELD_TITLE';
5433
5461
  interface SubmitSettings extends SubmitSettingsSubmitSuccessActionOptionsOneOf {
5434
5462
  /** Configuration for displaying a thank you message after submission. */
5435
5463
  thankYouMessageOptions?: ThankYouMessageOptions;
@@ -5456,6 +5484,8 @@ declare enum Target {
5456
5484
  /** @enumType */
5457
5485
  type TargetWithLiterals = Target | 'UNKNOWN_TARGET' | 'SELF' | 'BLANK';
5458
5486
  declare enum SubmitSuccessAction {
5487
+ /** Unknown submit success action. */
5488
+ UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
5459
5489
  /** No action is taken after form submission. */
5460
5490
  NO_ACTION = "NO_ACTION",
5461
5491
  /** Display a thank you message after form submission. */
@@ -5464,7 +5494,7 @@ declare enum SubmitSuccessAction {
5464
5494
  REDIRECT = "REDIRECT"
5465
5495
  }
5466
5496
  /** @enumType */
5467
- type SubmitSuccessActionWithLiterals = SubmitSuccessAction | 'NO_ACTION' | 'THANK_YOU_MESSAGE' | 'REDIRECT';
5497
+ type SubmitSuccessActionWithLiterals = SubmitSuccessAction | 'UNKNOWN_SUBMIT_SUCCESS_ACTION' | 'NO_ACTION' | 'THANK_YOU_MESSAGE' | 'REDIRECT';
5468
5498
  interface ThankYouMessageOptions {
5469
5499
  /**
5470
5500
  * Duration in seconds before the thank you message automatically disappears.
@@ -5526,6 +5556,8 @@ interface Rule {
5526
5556
  }
5527
5557
  /** Enum for different types of field properties that can be modified by rules. */
5528
5558
  declare enum ChangeableProperty {
5559
+ /** Unknown property type. */
5560
+ UNKNOWN_CHANGEABLE_PROPERTY = "UNKNOWN_CHANGEABLE_PROPERTY",
5529
5561
  /** Required property type. */
5530
5562
  REQUIRED = "REQUIRED",
5531
5563
  /** Hidden property type. */
@@ -5534,7 +5566,7 @@ declare enum ChangeableProperty {
5534
5566
  ALLOWED_VALUES = "ALLOWED_VALUES"
5535
5567
  }
5536
5568
  /** @enumType */
5537
- type ChangeablePropertyWithLiterals = ChangeableProperty | 'REQUIRED' | 'HIDDEN' | 'ALLOWED_VALUES';
5569
+ type ChangeablePropertyWithLiterals = ChangeableProperty | 'UNKNOWN_CHANGEABLE_PROPERTY' | 'REQUIRED' | 'HIDDEN' | 'ALLOWED_VALUES';
5538
5570
  interface RequiredOptions {
5539
5571
  /** Whether the field should be required. */
5540
5572
  required?: boolean;
@@ -5552,11 +5584,13 @@ interface AllowedValuesOptions {
5552
5584
  allowedValues?: any[];
5553
5585
  }
5554
5586
  declare enum OverrideEntityTypeEnumOverrideEntityType {
5587
+ /** Unknown override entity type. */
5588
+ UNKNOWN_OVERRIDE_ENTITY_TYPE = "UNKNOWN_OVERRIDE_ENTITY_TYPE",
5555
5589
  /** Override applies to a form field. */
5556
5590
  FIELD = "FIELD"
5557
5591
  }
5558
5592
  /** @enumType */
5559
- type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals = OverrideEntityTypeEnumOverrideEntityType | 'FIELD';
5593
+ type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals = OverrideEntityTypeEnumOverrideEntityType | 'UNKNOWN_OVERRIDE_ENTITY_TYPE' | 'FIELD';
5560
5594
  interface FieldOverride extends FieldOverridePropertyTypeOptionsOneOf {
5561
5595
  /** Configuration for changing the required property of a field. */
5562
5596
  requiredOptions?: RequiredOptions;
@@ -5628,6 +5662,7 @@ interface Condition {
5628
5662
  value?: any;
5629
5663
  }
5630
5664
  declare enum Operator {
5665
+ UNKNOWN_OPERATOR = "UNKNOWN_OPERATOR",
5631
5666
  /** Specified value equals the value in the target field. */
5632
5667
  EQUAL = "EQUAL",
5633
5668
  /** Specified value doesn't equal the value in the target field. */
@@ -5682,7 +5717,7 @@ declare enum Operator {
5682
5717
  IS_DATE_NEWER_THAN_OR_EQUAL = "IS_DATE_NEWER_THAN_OR_EQUAL"
5683
5718
  }
5684
5719
  /** @enumType */
5685
- type OperatorWithLiterals = Operator | 'EQUAL' | 'NOT_EQUAL' | 'EMPTY' | 'NOT_EMPTY' | 'CONTAINS' | 'NOT_CONTAINS' | 'LESS_THAN' | 'LESS_THAN_OR_EQUALS' | 'GREATER_THAN' | 'GREATER_THAN_OR_EQUALS' | 'BEFORE' | 'BEFORE_OR_EQUAL' | 'AFTER' | 'AFTER_OR_EQUAL' | 'BETWEEN' | 'ANY' | 'ARRAY_EQUAL' | 'ARRAY_NOT_EQUAL' | 'CHECKED' | 'NOT_CHECKED' | 'IN' | 'NOT_IN' | 'IS_DATE_OLDER_THAN' | 'IS_DATE_OLDER_THAN_OR_EQUAL' | 'IS_DATE_NEWER_THAN' | 'IS_DATE_NEWER_THAN_OR_EQUAL';
5720
+ type OperatorWithLiterals = Operator | 'UNKNOWN_OPERATOR' | 'EQUAL' | 'NOT_EQUAL' | 'EMPTY' | 'NOT_EMPTY' | 'CONTAINS' | 'NOT_CONTAINS' | 'LESS_THAN' | 'LESS_THAN_OR_EQUALS' | 'GREATER_THAN' | 'GREATER_THAN_OR_EQUALS' | 'BEFORE' | 'BEFORE_OR_EQUAL' | 'AFTER' | 'AFTER_OR_EQUAL' | 'BETWEEN' | 'ANY' | 'ARRAY_EQUAL' | 'ARRAY_NOT_EQUAL' | 'CHECKED' | 'NOT_CHECKED' | 'IN' | 'NOT_IN' | 'IS_DATE_OLDER_THAN' | 'IS_DATE_OLDER_THAN_OR_EQUAL' | 'IS_DATE_NEWER_THAN' | 'IS_DATE_NEWER_THAN_OR_EQUAL';
5686
5721
  interface RuleFormOverride extends RuleFormOverrideEntityTypeOptionsOneOf {
5687
5722
  /** Field override settings. */
5688
5723
  fieldOptions?: FieldOverride;
@@ -5772,6 +5807,8 @@ interface QuizSettingsResultsDisplayOptionsOneOf {
5772
5807
  scoreAndPassingStatusOptions?: PassFailMessages;
5773
5808
  }
5774
5809
  declare enum ResultsDisplay {
5810
+ /** Unknown results display type. */
5811
+ UNKNOWN_DISPLAY = "UNKNOWN_DISPLAY",
5775
5812
  /** Do not show quiz score and passing status. */
5776
5813
  DO_NOT_DISPLAY = "DO_NOT_DISPLAY",
5777
5814
  /** Display only the user's score. */
@@ -5782,7 +5819,7 @@ declare enum ResultsDisplay {
5782
5819
  SCORE_AND_PASSING_STATUS = "SCORE_AND_PASSING_STATUS"
5783
5820
  }
5784
5821
  /** @enumType */
5785
- type ResultsDisplayWithLiterals = ResultsDisplay | 'DO_NOT_DISPLAY' | 'SCORE' | 'PASSING_STATUS' | 'SCORE_AND_PASSING_STATUS';
5822
+ type ResultsDisplayWithLiterals = ResultsDisplay | 'UNKNOWN_DISPLAY' | 'DO_NOT_DISPLAY' | 'SCORE' | 'PASSING_STATUS' | 'SCORE_AND_PASSING_STATUS';
5786
5823
  interface PassFailMessages {
5787
5824
  /** Message displayed when the user passes the quiz. */
5788
5825
  passMessage?: RichContent;
@@ -5790,13 +5827,15 @@ interface PassFailMessages {
5790
5827
  failMessage?: RichContent;
5791
5828
  }
5792
5829
  declare enum ContactAutofill {
5830
+ /** Unknown contact autofill source. */
5831
+ UNKNOWN_CONTACT_AUTOFILL = "UNKNOWN_CONTACT_AUTOFILL",
5793
5832
  /** Use site member data to autofill contact fields. */
5794
5833
  MEMBER_DATA = "MEMBER_DATA",
5795
5834
  /** Use form input data to autofill contact fields. */
5796
5835
  FORM_INPUT = "FORM_INPUT"
5797
5836
  }
5798
5837
  /** @enumType */
5799
- type ContactAutofillWithLiterals = ContactAutofill | 'MEMBER_DATA' | 'FORM_INPUT';
5838
+ type ContactAutofillWithLiterals = ContactAutofill | 'UNKNOWN_CONTACT_AUTOFILL' | 'MEMBER_DATA' | 'FORM_INPUT';
5800
5839
  interface CreateCheckoutFromSubmissionResponse {
5801
5840
  /**
5802
5841
  * Checkout ID (applicable for form involving payments).
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-M17yHtDQ.js';
3
- export { bV as AccountInfo, hU as AccountInfoMetadata, bR as ActionEvent, fO as Address, fP as AddressComponentTypeOptionsOneOf, fw as AddressInfo, bh as AddressInfoTag, jn as AddressInfoTagWithLiterals, f9 as AddressLine2, aO as Alignment, iU as AlignmentWithLiterals, gi as AllowedValuesOptions, dN as AnchorData, gn as AndCondition, dU as AppEmbedData, dV as AppEmbedDataAppDataOneOf, aC as AppType, iI as AppTypeWithLiterals, gQ as ApplicationError, fl as Appointment, fm as AppointmentFormatInfoOneOf, aW as ArrayComponentType, j0 as ArrayComponentTypeWithLiterals, cj as ArrayErrorMessages, eT as ArrayItems, eU as ArrayItemsItemTypeOptionsOneOf, eP as ArrayType, ch as ArrayTypeArrayItems, ci as ArrayTypeArrayItemsItemsOneOf, aw as AspectRatio, iC as AspectRatioWithLiterals, ed as AudioData, c3 as Availability, dD as Background, dE as BackgroundBackgroundOneOf, ej as BackgroundImage, as as BackgroundType, iy as BackgroundTypeWithLiterals, ek as Banner, hS as BaseEventMetadata, eg as BlockquoteData, dW as BookingData, aT as BooleanComponentType, iZ as BooleanComponentTypeWithLiterals, cb as BooleanErrorMessages, eM as BooleanType, cS as Border, ea as BorderColors, eb as BorderWidths, ff as BreakPoint, gR as BulkActionMetadata, gM as BulkCreateSubmissionBySubmitterData, gL as BulkCreateSubmissionBySubmitterRequest, gN as BulkCreateSubmissionBySubmitterResponse, g$ as BulkDeleteSubmissionRequest, h0 as BulkDeleteSubmissionResult, hu as BulkMarkSubmissionsAsSeenRequest, h4 as BulkRemoveSubmissionFromTrashBinRequest, h5 as BulkRemoveSubmissionFromTrashBinResult, gO as BulkSubmissionResult, hZ as BulkUpdateFormSubmissionTagsByFilterOptions, hK as BulkUpdateFormSubmissionTagsByFilterRequest, hL as BulkUpdateFormSubmissionTagsByFilterResponse, hY as BulkUpdateFormSubmissionTagsOptions, hH as BulkUpdateFormSubmissionTagsRequest, hI as BulkUpdateFormSubmissionTagsResponse, hJ as BulkUpdateFormSubmissionTagsResult, ef as BulletedListData, cR as ButtonData, a9 as ButtonDataType, id as ButtonDataTypeWithLiterals, dY as ButtonStyles, eh as CaptionData, d$ as CardStyles, aA as CardStylesAlignment, iG as CardStylesAlignmentWithLiterals, az as CardStylesType, iF as CardStylesTypeWithLiterals, e9 as CellStyle, bp as ChangeableProperty, jv as ChangeablePropertyWithLiterals, eN as Checkbox, eW as CheckboxGroup, gz as Checkout, d1 as CodeBlockData, e5 as CollapsibleListData, dO as ColorData, cT as Colors, jH as CommonQueryWithEntityContext, jG as CommonSearchWithEntityContext, a_ as ComponentType, j4 as ComponentTypeWithLiterals, eY as ComponentsTags, gp as Condition, gl as ConditionNode, gm as ConditionNodeNodeOneOf, gY as ConfirmSubmissionRequest, b9 as ConfirmationLevel, jf as ConfirmationLevelWithLiterals, bt as ContactAutofill, jz as ContactAutofillWithLiterals, bb as ContactField, jh as ContactFieldWithLiterals, eO as CorrectAnswersList, hr as CountDeletedSubmissionsRequest, ho as CountSubmissionsByFilterRequest, hq as CountSubmissionsRequest, bW as CreateCheckoutFromSubmissionRequest, bX as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gy as CreateCheckoutFromSubmissionResponse, gJ as CreateSubmissionBySubmitterRequest, gK as CreateSubmissionBySubmitterResponse, gF as CreateSubmissionRequest, gG as CreateSubmissionResponse, ai as Crop, io as CropWithLiterals, h7 as CursorPaging, h8 as CursorPagingMetadata, hc as CursorQueryPagingMethodOneOf, hf as CursorSearch, hg as CursorSearchPagingMethodOneOf, h9 as Cursors, fx as CustomFieldInfo, ew as CustomOption, cz as DataExtensionsDetails, eB as DateInput, eD as DatePicker, c4 as DateRange, c2 as DateTimeAdvancedConstraints, cI as DateTimeConstraints, ez as DateTimeInput, $ as DayOfWeek, i3 as DayOfWeekWithLiterals, dL as Decoration, dM as DecorationDataOneOf, at as DecorationType, iz as DecorationTypeWithLiterals, fa as DefaultCountryConfig, fb as DefaultCountryConfigOptionsOneOf, gZ as DeleteSubmissionRequest, g_ as DeleteSubmissionResponse, dJ as Design, aM as DesignTarget, iS as DesignTargetWithLiterals, e7 as Dimensions, aE as Direction, iK as DirectionWithLiterals, fS as DisplayField, fT as DisplayFieldDisplayFieldTypeOptionsOneOf, bc as DisplayFieldType, ji as DisplayFieldTypeWithLiterals, d3 as DividerData, ae as DividerDataAlignment, ij as DividerDataAlignmentWithLiterals, hy as DocumentReady, ep as DocumentStyle, bL as DomainEvent, bM as DomainEventBodyOneOf, f4 as DonationInput, f5 as DonationInputOption, hz as DownloadSubmissionRequest, ex as Dropdown, ey as DropdownOption, cp as DynamicPriceOptions, fu as EmailInfo, b6 as EmailInfoTag, jc as EmailInfoTagWithLiterals, e3 as EmbedData, gC as Empty, bN as EntityCreatedEvent, bQ as EntityDeletedEvent, bP as EntityUpdatedEvent, bv as ErrorType, jB as ErrorTypeWithLiterals, dX as EventData, hT as EventMetadata, bC as ExtendedFields, cB as Field, cC as FieldFieldTypeOptionsOneOf, ge as FieldGroup, gj as FieldOverride, gk as FieldOverridePropertyTypeOptionsOneOf, ct as FieldOverrides, a3 as FieldType, i7 as FieldTypeWithLiterals, hN as FieldViolation, hO as FieldViolationErrorDataOneOf, cu as FieldsOverrides, fc as FieldsSettings, d4 as FileData, d5 as FileSource, d6 as FileSourceDataOneOf, e$ as FileType, f0 as FileUpload, aR as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, f7 as FixedPayment, co as FixedPriceOptions, dT as FontFamilyData, dR as FontSizeData, au as FontType, iA as FontTypeWithLiterals, bY as Form, hs as FormDeletedSubmissionsCount, bZ as FormField, cc as FormFieldArrayType, ca as FormFieldBooleanType, fs as FormFieldContactInfo, ft as FormFieldContactInfoAdditionalInfoOneOf, g4 as FormFieldContactInfoAddressInfo, bj as FormFieldContactInfoContactField, jp as FormFieldContactInfoContactFieldWithLiterals, g5 as FormFieldContactInfoCustomFieldInfo, g2 as FormFieldContactInfoEmailInfo, bf as FormFieldContactInfoEmailInfoTag, jl as FormFieldContactInfoEmailInfoTagWithLiterals, g3 as FormFieldContactInfoPhoneInfo, bg as FormFieldContactInfoPhoneInfoTag, jm as FormFieldContactInfoPhoneInfoTagWithLiterals, g6 as FormFieldContactInfoSubscriptionInfo, c7 as FormFieldNumberType, cd as FormFieldObjectType, b_ as FormFieldStringType, b$ as FormFieldStringTypeFormatOptionsOneOf, fe as FormLayout, fY as FormOverride, fZ as FormProperties, fX as FormRule, hX as FormSubmissionQuerySpec, hV as FormSubmissionSearchSpec, bG as FormSubmissionStatusUpdatedEvent, hp as FormSubmissionsCount, b2 as Format, a4 as FormatEnumFormat, i8 as FormatEnumFormatWithLiterals, j8 as FormatWithLiterals, hF as FormattedFormSubmission, hC as FormattedSubmission, dj as GIF, di as GIFData, ak as GIFType, iq as GIFTypeWithLiterals, d8 as GalleryData, de as GalleryOptions, df as GalleryOptionsLayout, ha as GetDeletedSubmissionRequest, hB as GetFormattedSubmissionRequest, ht as GetMediaUploadURLRequest, gU as GetSubmissionByCheckoutIdRequest, gV as GetSubmissionByCheckoutIdResponse, hv as GetSubmissionDownloadUrlRequest, gS as GetSubmissionRequest, gT as GetSubmissionResponse, dC as Gradient, fi as Group, dl as HTMLData, dm as HTMLDataDataOneOf, hA as HeadersEntry, dk as HeadingData, cY as Height, gh as HiddenOptions, bT as IdentificationData, bU as IdentificationDataIdOneOf, bu as IdentityType, jA as IdentityTypeWithLiterals, da as Image, dn as ImageData, dq as ImageDataStyles, aP as ImageFit, iV as ImageFitWithLiterals, aN as ImagePosition, iT as ImagePositionWithLiterals, dZ as ImageStyles, fp as InPersonOptions, aD as InitialExpandedItems, iJ as InitialExpandedItemsWithLiterals, cD as InputField, cE as InputFieldInputTypeOptionsOneOf, b5 as InputType, jb as InputTypeWithLiterals, c9 as IntegerType, gA as IsFormSubmittableRequest, gB as IsFormSubmittableResponse, dc as Item, dd as ItemDataOneOf, fg as ItemLayout, fh as ItemLayoutItemOneOf, gP as ItemMetadata, dg as ItemStyle, aU as ItemType, i_ as ItemTypeWithLiterals, be as Kind, jk as KindWithLiterals, aB as Layout, el as LayoutCellData, ei as LayoutData, aI as LayoutDataImagePosition, iO as LayoutDataImagePositionWithLiterals, ag as LayoutType, il as LayoutTypeWithLiterals, iH as LayoutWithLiterals, g8 as LimitationRule, ac as LineStyle, ih as LineStyleWithLiterals, c_ as Link, dP as LinkData, c$ as LinkDataOneOf, dr as LinkPreviewData, ds as LinkPreviewDataStyles, aa as LinkTarget, ie as LinkTargetWithLiterals, h6 as ListDeletedSubmissionsRequest, hD as ListFormattedSubmissionsRequest, hE as ListFormattedSubmissionsResponse, ec as ListValue, fn as Location, fo as LocationLocationInfoOneOf, dt as MapData, du as MapSettings, an as MapType, it as MapTypeWithLiterals, fj as Margin, bJ as MarketingSubscriptionDetails, d9 as Media, er as MediaItem, es as MediaItemMediaOneOf, et as MediaSettings, b3 as MeetingType, j9 as MeetingTypeWithLiterals, dQ as MentionData, bS as MessageEnvelope, eo as Metadata, bx as Mode, jD as ModeWithLiterals, f8 as MultilineAddress, cs as MultilineAddressValidation, g7 as NestedForm, cw as NestedFormFieldOverrides, cA as NestedFormOverrides, cO as Node, cP as NodeDataOneOf, cQ as NodeStyle, a6 as NodeType, ia as NodeTypeWithLiterals, aG as NullValue, iM as NullValueWithLiterals, aS as NumberComponentType, iY as NumberComponentTypeWithLiterals, eH as NumberCorrectAnswersList, c8 as NumberErrorMessages, eK as NumberInput, aQ as NumberOfColumns, iW as NumberOfColumnsWithLiterals, eJ as NumberQuizFieldSettings, eI as NumberType, fQ as ObjectArray, b0 as ObjectArrayComponentType, fR as ObjectArrayComponentTypeOptionsOneOf, j6 as ObjectArrayComponentTypeWithLiterals, cv as ObjectArrayType, cg as ObjectErrorMessages, eQ as ObjectType, ce as ObjectTypePropertiesType, cf as ObjectTypePropertiesTypePropertiesTypeOneOf, e4 as Oembed, br as Operator, jx as OperatorWithLiterals, Y as OptInLevel, i0 as OptInLevelWithLiterals, eX as Option, dG as OptionDesign, dB as OptionLayout, go as OrCondition, bD as OrderDetails, ee as OrderedListData, ah as Orientation, im as OrientationWithLiterals, aJ as Origin, iP as OriginWithLiterals, bd as OverrideEntityType, bq as OverrideEntityTypeEnumOverrideEntityType, jw as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jj as OverrideEntityTypeWithLiterals, d7 as PDFSettings, fV as PageNavigationOptions, dv as ParagraphData, gx as PassFailMessages, eG as Password, fK as Payment, aZ as PaymentComponentType, fL as PaymentComponentTypeOptionsOneOf, j3 as PaymentComponentTypeWithLiterals, f6 as PaymentInput, cm as PaymentType, dx as Permissions, cJ as PhoneConstraints, fv as PhoneInfo, b7 as PhoneInfoTag, jd as PhoneInfoTagWithLiterals, eA as PhoneInput, fr as PhoneOptions, ay as Placement, iE as PlacementWithLiterals, e2 as PlaybackOptions, cU as PluginContainerData, a8 as PluginContainerDataAlignment, ic as PluginContainerDataAlignmentWithLiterals, cV as PluginContainerDataWidth, cW as PluginContainerDataWidthDataOneOf, dH as Poll, dw as PollData, dI as PollDataLayout, dF as PollDesign, dA as PollLayout, ar as PollLayoutDirection, ix as PollLayoutDirectionWithLiterals, aq as PollLayoutType, iw as PollLayoutTypeWithLiterals, dy as PollOption, av as Position, iB as PositionWithLiterals, f_ as PostSubmissionTriggers, ck as PredefinedValidation, cl as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, i6 as PriceTypeWithLiterals, e0 as PricingData, cq as Product, f2 as ProductCheckboxGroup, f3 as ProductCheckboxGroupOption, cr as ProductPriceOptionsOneOf, a1 as ProductType, i5 as ProductTypeWithLiterals, eR as PropertiesType, aV as PropertiesTypeEnum, i$ as PropertiesTypeEnumWithLiterals, eS as PropertiesTypePropertiesTypeOptionsOneOf, bE as PublicTags, cn as QuantityLimit, hb as QuerySubmissionRequest, hm as QuerySubmissionsByNamespaceForExportRequest, hn as QuerySubmissionsByNamespaceForExportResponse, hk as QuerySubmissionsByNamespaceRequest, hl as QuerySubmissionsByNamespaceResponse, eV as QuizFieldSettings, gu as QuizSettings, gv as QuizSettingsPassingCriteriaOneOf, gw as QuizSettingsResultsDisplayOptionsOneOf, eu as RadioGroup, ev as RadioGroupOption, eL as RatingInput, gd as RedirectOptions, d0 as Rel, h2 as RemoveSubmissionFromTrashBinRequest, h3 as RemoveSubmissionFromTrashBinResponse, bH as RemovedSubmissionFromTrash, fd as Repeater, bl as RequiredIndicator, bm as RequiredIndicatorPlacement, js as RequiredIndicatorPlacementWithLiterals, g9 as RequiredIndicatorProperties, jr as RequiredIndicatorWithLiterals, gg as RequiredOptions, ax as Resizing, iD as ResizingWithLiterals, aL as ResponsivenessBehaviour, iR as ResponsivenessBehaviourWithLiterals, bO as RestoreInfo, h1 as RestoreSubmissionFromTrashBinRequest, bs as ResultsDisplay, jy as ResultsDisplayWithLiterals, d_ as RibbonStyles, cN as RichContent, fU as RichContentOptions, gf as Rule, gq as RuleFormOverride, gr as RuleFormOverrideEntityTypeOptionsOneOf, aH as Scaling, iN as ScalingWithLiterals, fM as Scheduling, b1 as SchedulingComponentType, fN as SchedulingComponentTypeOptionsOneOf, j7 as SchedulingComponentTypeWithLiterals, hh as SearchDetails, hi as SearchSubmissionsByNamespaceForExportRequest, hj as SearchSubmissionsByNamespaceForExportResponse, he as SearchSubmissionsByNamespaceRequest, fk as Section, eF as ServiceOption, e_ as ServicesCheckboxGroup, eE as ServicesDropdown, dz as Settings, em as ShapeData, en as ShapeDataStyles, f1 as Signature, bw as SortOrder, jC as SortOrderWithLiterals, hd as Sorting, al as Source, ir as SourceWithLiterals, bk as SpamFilterProtectionLevel, jq as SpamFilterProtectionLevelWithLiterals, cX as Spoiler, dS as SpoilerData, b4 as StaffStrategySelection, ja as StaffStrategySelectionWithLiterals, by as Status, jE as StatusWithLiterals, fW as Step, a5 as StringComponentType, i9 as StringComponentTypeWithLiterals, cF as StringCorrectAnswersList, c0 as StringErrorMessages, cL as StringQuizFieldSettings, cG as StringType, c1 as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, i2 as StringTypeFormatEnumFormatWithLiterals, cH as StringTypeFormatOptionsOneOf, c5 as StringTypePhoneConstraints, c6 as StringTypeValidationMessages, cZ as Styles, dp as StylesBorder, am as StylesPosition, is as StylesPositionWithLiterals, bI as SubmissionContactMapped, bK as SubmissionContactMappingSkipped, hw as SubmissionDocument, hx as SubmissionDocumentDocumentOneOf, bz as SubmissionErrorType, jF as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, h$ as SubmissionStatusWithLiterals, hQ as SubmissionValidationError, hR as SubmissionValidationErrorErrorMessageOneOf, hP as SubmissionValidationErrors, gH as SubmissionValidationErrorsDetails, hW as SubmissionsQueryResult, gE as SubmitContactResponse, ga as SubmitSettings, gb as SubmitSettingsSubmitSuccessActionOptionsOneOf, bo as SubmitSuccessAction, ju as SubmitSuccessActionWithLiterals, bA as Submitter, bB as SubmitterSubmitterOneOf, ba as SubscriptionChannel, jg as SubscriptionChannelWithLiterals, fy as SubscriptionInfo, bi as SubscriptionInfoOptInLevel, jo as SubscriptionInfoOptInLevelWithLiterals, e8 as TableCellData, e6 as TableData, b8 as Tag, bF as TagList, je as TagWithLiterals, gs as Tags, eZ as TagsOption, gt as TagsTagList, bn as Target, jt as TargetWithLiterals, ab as TextAlignment, ig as TextAlignmentWithLiterals, dK as TextData, cM as TextInput, eq as TextNodeStyle, d2 as TextStyle, gc as ThankYouMessageOptions, dh as Thumbnails, aj as ThumbnailsAlignment, ip as ThumbnailsAlignmentWithLiterals, eC as TimeInput, a$ as Type, j5 as TypeWithLiterals, hG as UpdateExtendedFieldsRequest, gW as UpdateSubmissionRequest, gX as UpdateSubmissionResponse, aY as UploadFileFormat, j2 as UploadFileFormatWithLiterals, f$ as UpsertContact, gD as UpsertContactFromSubmissionRequest, g0 as V4FormFieldContactInfo, g1 as V4FormFieldContactInfoAdditionalInfoOneOf, hM as ValidateFormSubmissionRequest, cx as Validation, gI as ValidationError, a0 as ValidationFormat, i4 as ValidationFormatWithLiterals, cK as ValidationMessages, cy as ValidationValidationOneOf, aF as VerticalAlignment, aK as VerticalAlignmentAlignment, iQ as VerticalAlignmentAlignmentWithLiterals, iL as VerticalAlignmentWithLiterals, db as Video, fq as VideoConferenceOptions, e1 as VideoData, af as ViewMode, ik as ViewModeWithLiterals, ao as ViewRole, iu as ViewRoleWithLiterals, ap as VoteRole, iv as VoteRoleWithLiterals, Z as WebhookIdentityType, i1 as WebhookIdentityTypeWithLiterals, ad as Width, a7 as WidthType, ib as WidthTypeWithLiterals, ii as WidthWithLiterals, fI as WixFile, aX as WixFileComponentType, fJ as WixFileComponentTypeOptionsOneOf, j1 as WixFileComponentTypeWithLiterals, fF as _Array, fG as _ArrayComponentTypeOptionsOneOf, fD as _Boolean, fE as _BooleanComponentTypeOptionsOneOf, fB as _Number, fC as _NumberComponentTypeOptionsOneOf, fH as _Object, fz as _String, fA as _StringComponentTypeOptionsOneOf, h_ as utils } from './forms-v4-submission-submissions.universal-M17yHtDQ.js';
2
+ import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-DGP8cfot.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-DGP8cfot.js';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -1025,6 +1025,7 @@ var import_transform_paths2 = require("@wix/sdk-runtime/transformations/transfor
1025
1025
  var import_search_builder_utils = require("@wix/sdk-runtime/search-builder-utils");
1026
1026
  var import_query_builder_utils = require("@wix/sdk-runtime/query-builder-utils");
1027
1027
  var SubmissionStatus = /* @__PURE__ */ ((SubmissionStatus2) => {
1028
+ SubmissionStatus2["UNKNOWN_SUBMISSION_STATUS"] = "UNKNOWN_SUBMISSION_STATUS";
1028
1029
  SubmissionStatus2["PENDING"] = "PENDING";
1029
1030
  SubmissionStatus2["CONFIRMED"] = "CONFIRMED";
1030
1031
  SubmissionStatus2["PAYMENT_WAITING"] = "PAYMENT_WAITING";
@@ -1081,11 +1082,13 @@ var ValidationFormat = /* @__PURE__ */ ((ValidationFormat2) => {
1081
1082
  return ValidationFormat2;
1082
1083
  })(ValidationFormat || {});
1083
1084
  var ProductType = /* @__PURE__ */ ((ProductType2) => {
1085
+ ProductType2["UNKNOWN_PRODUCT_TYPE"] = "UNKNOWN_PRODUCT_TYPE";
1084
1086
  ProductType2["SHIPPABLE"] = "SHIPPABLE";
1085
1087
  ProductType2["DIGITAL"] = "DIGITAL";
1086
1088
  return ProductType2;
1087
1089
  })(ProductType || {});
1088
1090
  var PriceType = /* @__PURE__ */ ((PriceType2) => {
1091
+ PriceType2["UNKNOWN_PRICE_TYPE"] = "UNKNOWN_PRICE_TYPE";
1089
1092
  PriceType2["FIXED_PRICE"] = "FIXED_PRICE";
1090
1093
  PriceType2["DYNAMIC_PRICE"] = "DYNAMIC_PRICE";
1091
1094
  return PriceType2;
@@ -1431,22 +1434,26 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
1431
1434
  return DesignTarget2;
1432
1435
  })(DesignTarget || {});
1433
1436
  var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
1437
+ ImagePosition2["UNKNOWN_IMAGE_POSITION"] = "UNKNOWN_IMAGE_POSITION";
1434
1438
  ImagePosition2["ABOVE"] = "ABOVE";
1435
1439
  ImagePosition2["BELOW"] = "BELOW";
1436
1440
  return ImagePosition2;
1437
1441
  })(ImagePosition || {});
1438
1442
  var Alignment = /* @__PURE__ */ ((Alignment2) => {
1443
+ Alignment2["UNKNOWN_ALIGNMENT"] = "UNKNOWN_ALIGNMENT";
1439
1444
  Alignment2["LEFT"] = "LEFT";
1440
1445
  Alignment2["CENTER"] = "CENTER";
1441
1446
  Alignment2["RIGHT"] = "RIGHT";
1442
1447
  return Alignment2;
1443
1448
  })(Alignment || {});
1444
1449
  var ImageFit = /* @__PURE__ */ ((ImageFit2) => {
1450
+ ImageFit2["UNKNOWN_IMAGE_FIT"] = "UNKNOWN_IMAGE_FIT";
1445
1451
  ImageFit2["COVER"] = "COVER";
1446
1452
  ImageFit2["CONTAIN"] = "CONTAIN";
1447
1453
  return ImageFit2;
1448
1454
  })(ImageFit || {});
1449
1455
  var NumberOfColumns = /* @__PURE__ */ ((NumberOfColumns2) => {
1456
+ NumberOfColumns2["UNKNOWN_NUMBER_OF_COLUMNS"] = "UNKNOWN_NUMBER_OF_COLUMNS";
1450
1457
  NumberOfColumns2["ZERO"] = "ZERO";
1451
1458
  NumberOfColumns2["ONE"] = "ONE";
1452
1459
  NumberOfColumns2["TWO"] = "TWO";
@@ -1470,12 +1477,14 @@ var BooleanComponentType = /* @__PURE__ */ ((BooleanComponentType2) => {
1470
1477
  return BooleanComponentType2;
1471
1478
  })(BooleanComponentType || {});
1472
1479
  var ItemType = /* @__PURE__ */ ((ItemType2) => {
1480
+ ItemType2["UNKNOWN_ITEM_TYPE"] = "UNKNOWN_ITEM_TYPE";
1473
1481
  ItemType2["STRING"] = "STRING";
1474
1482
  ItemType2["NUMBER"] = "NUMBER";
1475
1483
  ItemType2["BOOLEAN"] = "BOOLEAN";
1476
1484
  return ItemType2;
1477
1485
  })(ItemType || {});
1478
1486
  var PropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypeEnum2) => {
1487
+ PropertiesTypeEnum2["UNKNOWN_PROPERTY_TYPE"] = "UNKNOWN_PROPERTY_TYPE";
1479
1488
  PropertiesTypeEnum2["STRING"] = "STRING";
1480
1489
  PropertiesTypeEnum2["NUMBER"] = "NUMBER";
1481
1490
  PropertiesTypeEnum2["BOOLEAN"] = "BOOLEAN";
@@ -1496,6 +1505,7 @@ var WixFileComponentType = /* @__PURE__ */ ((WixFileComponentType2) => {
1496
1505
  return WixFileComponentType2;
1497
1506
  })(WixFileComponentType || {});
1498
1507
  var UploadFileFormat = /* @__PURE__ */ ((UploadFileFormat2) => {
1508
+ UploadFileFormat2["UNKNOWN_UPLOAD_FILE_FORMAT"] = "UNKNOWN_UPLOAD_FILE_FORMAT";
1499
1509
  UploadFileFormat2["VIDEO"] = "VIDEO";
1500
1510
  UploadFileFormat2["IMAGE"] = "IMAGE";
1501
1511
  UploadFileFormat2["AUDIO"] = "AUDIO";
@@ -1533,17 +1543,20 @@ var SchedulingComponentType = /* @__PURE__ */ ((SchedulingComponentType2) => {
1533
1543
  return SchedulingComponentType2;
1534
1544
  })(SchedulingComponentType || {});
1535
1545
  var Format = /* @__PURE__ */ ((Format2) => {
1546
+ Format2["UNKNOWN_FORMAT_TYPE"] = "UNKNOWN_FORMAT_TYPE";
1536
1547
  Format2["IN_PERSON"] = "IN_PERSON";
1537
1548
  Format2["VIDEO_CONFERENCE"] = "VIDEO_CONFERENCE";
1538
1549
  Format2["PHONE"] = "PHONE";
1539
1550
  return Format2;
1540
1551
  })(Format || {});
1541
1552
  var MeetingType = /* @__PURE__ */ ((MeetingType2) => {
1553
+ MeetingType2["UNKNOWN_MEETING_TYPE"] = "UNKNOWN_MEETING_TYPE";
1542
1554
  MeetingType2["SINGLE_STAFF"] = "SINGLE_STAFF";
1543
1555
  MeetingType2["ROUND_ROBIN"] = "ROUND_ROBIN";
1544
1556
  return MeetingType2;
1545
1557
  })(MeetingType || {});
1546
1558
  var StaffStrategySelection = /* @__PURE__ */ ((StaffStrategySelection2) => {
1559
+ StaffStrategySelection2["UNKNOWN_STAFF_STRATEGY_SELECTION"] = "UNKNOWN_STAFF_STRATEGY_SELECTION";
1547
1560
  StaffStrategySelection2["AUTOMATIC"] = "AUTOMATIC";
1548
1561
  StaffStrategySelection2["HIGH_TO_LOW_PRIORITY"] = "HIGH_TO_LOW_PRIORITY";
1549
1562
  StaffStrategySelection2["LOW_TO_HIGH_PRIORITY"] = "LOW_TO_HIGH_PRIORITY";
@@ -1589,6 +1602,7 @@ var SubscriptionChannel = /* @__PURE__ */ ((SubscriptionChannel2) => {
1589
1602
  return SubscriptionChannel2;
1590
1603
  })(SubscriptionChannel || {});
1591
1604
  var ContactField = /* @__PURE__ */ ((ContactField2) => {
1605
+ ContactField2["UNKNOWN_CONTACT_FIELD"] = "UNKNOWN_CONTACT_FIELD";
1592
1606
  ContactField2["FIRST_NAME"] = "FIRST_NAME";
1593
1607
  ContactField2["LAST_NAME"] = "LAST_NAME";
1594
1608
  ContactField2["COMPANY"] = "COMPANY";
@@ -1641,6 +1655,7 @@ var SubscriptionInfoOptInLevel = /* @__PURE__ */ ((SubscriptionInfoOptInLevel2)
1641
1655
  return SubscriptionInfoOptInLevel2;
1642
1656
  })(SubscriptionInfoOptInLevel || {});
1643
1657
  var FormFieldContactInfoContactField = /* @__PURE__ */ ((FormFieldContactInfoContactField2) => {
1658
+ FormFieldContactInfoContactField2["UNDEFINED"] = "UNDEFINED";
1644
1659
  FormFieldContactInfoContactField2["FIRST_NAME"] = "FIRST_NAME";
1645
1660
  FormFieldContactInfoContactField2["LAST_NAME"] = "LAST_NAME";
1646
1661
  FormFieldContactInfoContactField2["COMPANY"] = "COMPANY";
@@ -1662,12 +1677,14 @@ var SpamFilterProtectionLevel = /* @__PURE__ */ ((SpamFilterProtectionLevel2) =>
1662
1677
  return SpamFilterProtectionLevel2;
1663
1678
  })(SpamFilterProtectionLevel || {});
1664
1679
  var RequiredIndicator = /* @__PURE__ */ ((RequiredIndicator2) => {
1680
+ RequiredIndicator2["UNKNOWN_INDICATOR"] = "UNKNOWN_INDICATOR";
1665
1681
  RequiredIndicator2["ASTERISK"] = "ASTERISK";
1666
1682
  RequiredIndicator2["TEXT"] = "TEXT";
1667
1683
  RequiredIndicator2["NONE"] = "NONE";
1668
1684
  return RequiredIndicator2;
1669
1685
  })(RequiredIndicator || {});
1670
1686
  var RequiredIndicatorPlacement = /* @__PURE__ */ ((RequiredIndicatorPlacement2) => {
1687
+ RequiredIndicatorPlacement2["UNKNOWN_PLACEMENT"] = "UNKNOWN_PLACEMENT";
1671
1688
  RequiredIndicatorPlacement2["AFTER_FIELD_TITLE"] = "AFTER_FIELD_TITLE";
1672
1689
  RequiredIndicatorPlacement2["BEFORE_FIELD_TITLE"] = "BEFORE_FIELD_TITLE";
1673
1690
  return RequiredIndicatorPlacement2;
@@ -1679,22 +1696,26 @@ var Target = /* @__PURE__ */ ((Target2) => {
1679
1696
  return Target2;
1680
1697
  })(Target || {});
1681
1698
  var SubmitSuccessAction = /* @__PURE__ */ ((SubmitSuccessAction2) => {
1699
+ SubmitSuccessAction2["UNKNOWN_SUBMIT_SUCCESS_ACTION"] = "UNKNOWN_SUBMIT_SUCCESS_ACTION";
1682
1700
  SubmitSuccessAction2["NO_ACTION"] = "NO_ACTION";
1683
1701
  SubmitSuccessAction2["THANK_YOU_MESSAGE"] = "THANK_YOU_MESSAGE";
1684
1702
  SubmitSuccessAction2["REDIRECT"] = "REDIRECT";
1685
1703
  return SubmitSuccessAction2;
1686
1704
  })(SubmitSuccessAction || {});
1687
1705
  var ChangeableProperty = /* @__PURE__ */ ((ChangeableProperty2) => {
1706
+ ChangeableProperty2["UNKNOWN_CHANGEABLE_PROPERTY"] = "UNKNOWN_CHANGEABLE_PROPERTY";
1688
1707
  ChangeableProperty2["REQUIRED"] = "REQUIRED";
1689
1708
  ChangeableProperty2["HIDDEN"] = "HIDDEN";
1690
1709
  ChangeableProperty2["ALLOWED_VALUES"] = "ALLOWED_VALUES";
1691
1710
  return ChangeableProperty2;
1692
1711
  })(ChangeableProperty || {});
1693
1712
  var OverrideEntityTypeEnumOverrideEntityType = /* @__PURE__ */ ((OverrideEntityTypeEnumOverrideEntityType2) => {
1713
+ OverrideEntityTypeEnumOverrideEntityType2["UNKNOWN_OVERRIDE_ENTITY_TYPE"] = "UNKNOWN_OVERRIDE_ENTITY_TYPE";
1694
1714
  OverrideEntityTypeEnumOverrideEntityType2["FIELD"] = "FIELD";
1695
1715
  return OverrideEntityTypeEnumOverrideEntityType2;
1696
1716
  })(OverrideEntityTypeEnumOverrideEntityType || {});
1697
1717
  var Operator = /* @__PURE__ */ ((Operator2) => {
1718
+ Operator2["UNKNOWN_OPERATOR"] = "UNKNOWN_OPERATOR";
1698
1719
  Operator2["EQUAL"] = "EQUAL";
1699
1720
  Operator2["NOT_EQUAL"] = "NOT_EQUAL";
1700
1721
  Operator2["EMPTY"] = "EMPTY";
@@ -1724,6 +1745,7 @@ var Operator = /* @__PURE__ */ ((Operator2) => {
1724
1745
  return Operator2;
1725
1746
  })(Operator || {});
1726
1747
  var ResultsDisplay = /* @__PURE__ */ ((ResultsDisplay2) => {
1748
+ ResultsDisplay2["UNKNOWN_DISPLAY"] = "UNKNOWN_DISPLAY";
1727
1749
  ResultsDisplay2["DO_NOT_DISPLAY"] = "DO_NOT_DISPLAY";
1728
1750
  ResultsDisplay2["SCORE"] = "SCORE";
1729
1751
  ResultsDisplay2["PASSING_STATUS"] = "PASSING_STATUS";
@@ -1731,6 +1753,7 @@ var ResultsDisplay = /* @__PURE__ */ ((ResultsDisplay2) => {
1731
1753
  return ResultsDisplay2;
1732
1754
  })(ResultsDisplay || {});
1733
1755
  var ContactAutofill = /* @__PURE__ */ ((ContactAutofill2) => {
1756
+ ContactAutofill2["UNKNOWN_CONTACT_AUTOFILL"] = "UNKNOWN_CONTACT_AUTOFILL";
1734
1757
  ContactAutofill2["MEMBER_DATA"] = "MEMBER_DATA";
1735
1758
  ContactAutofill2["FORM_INPUT"] = "FORM_INPUT";
1736
1759
  return ContactAutofill2;