@wix/auto_sdk_forms_submissions 1.0.68 → 1.0.69

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-8MFuPNM3.d.ts → forms-v4-submission-submissions.universal-BGR1uSK9.d.ts} +541 -1205
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +101 -244
  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 +101 -244
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +542 -1206
  9. package/build/cjs/meta.js +101 -244
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-8MFuPNM3.d.mts → forms-v4-submission-submissions.universal-BGR1uSK9.d.mts} +541 -1205
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +101 -230
  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 +101 -230
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +542 -1206
  19. package/build/es/meta.mjs +101 -230
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-EPX5eZ7e.d.ts → forms-v4-submission-submissions.universal-BlAMJnaP.d.ts} +541 -1205
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +101 -244
  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 +101 -244
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +542 -1206
  29. package/build/internal/cjs/meta.js +101 -244
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-EPX5eZ7e.d.mts → forms-v4-submission-submissions.universal-BlAMJnaP.d.mts} +541 -1205
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +101 -230
  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 +101 -230
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +542 -1206
  39. package/build/internal/es/meta.mjs +101 -230
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -318,12 +318,6 @@ interface Form {
318
318
  * @readonly
319
319
  */
320
320
  deletedFields?: FormField[];
321
- /**
322
- * List of form fields that represent input elements.
323
- * @maxSize 150
324
- * @readonly
325
- */
326
- deletedFieldsV2?: FormFieldV2[];
327
321
  /**
328
322
  * Form fields that were soft deleted.
329
323
  * @maxSize 150
@@ -902,141 +896,282 @@ interface NestedFormOverrides {
902
896
  /** Field overrides by field ID */
903
897
  fieldOverrides?: Record<string, NestedFormFieldOverrides>;
904
898
  }
905
- interface FormFieldV2 extends FormFieldV2FieldTypeOptionsOneOf {
906
- /** Field accept input of data */
907
- inputOptions?: FormFieldV2InputField;
908
- /** Field for displaying information such as header or text paragraph */
899
+ interface Field extends FieldFieldTypeOptionsOneOf {
900
+ /** Configuration for input fields that collect user data. */
901
+ inputOptions?: InputField;
902
+ /** Configuration for display fields that show information without collecting input. */
909
903
  displayOptions?: DisplayField;
910
904
  /**
911
- * Field id.
905
+ * Field ID.
912
906
  * @format GUID
913
907
  * @immutable
914
908
  */
915
909
  _id?: string;
916
910
  /**
917
- * Whether the field is hidden.
918
- * Default: false
911
+ * Whether the field is hidden from submitters.
912
+ *
913
+ * Default: `false`
919
914
  */
920
915
  hidden?: boolean;
921
916
  /**
922
- * Type of the field
917
+ * Custom identification for the field. This is intended as a way for you to identify certain fields that you want to apply special behavior to in your own logic.
918
+ * @maxLength 50
919
+ */
920
+ identifier?: string | null;
921
+ /**
922
+ * Field type.
923
923
  * @readonly
924
924
  */
925
- fieldType?: FormFieldV2FieldTypeWithLiterals;
925
+ fieldType?: FieldTypeWithLiterals;
926
926
  }
927
927
  /** @oneof */
928
- interface FormFieldV2FieldTypeOptionsOneOf {
929
- /** Field accept input of data */
930
- inputOptions?: FormFieldV2InputField;
931
- /** Field for displaying information such as header or text paragraph */
928
+ interface FieldFieldTypeOptionsOneOf {
929
+ /** Configuration for input fields that collect user data. */
930
+ inputOptions?: InputField;
931
+ /** Configuration for display fields that show information without collecting input. */
932
932
  displayOptions?: DisplayField;
933
933
  }
934
- interface InputFieldStringType extends InputFieldStringTypeFormatOptionsOneOf {
935
- /** DATE format options */
936
- dateOptions?: InputFieldStringTypeDateTimeConstraints;
937
- /** DATE_TIME format options */
938
- dateTimeOptions?: InputFieldStringTypeDateTimeConstraints;
939
- /** TIME format options */
940
- timeOptions?: InputFieldStringTypeDateTimeConstraints;
941
- /** DATE_OPTIONAL_TIME format options */
942
- dateOptionalTimeOptions?: InputFieldStringTypeDateTimeConstraints;
943
- /** PHONE format options */
944
- phoneOptions?: InputFieldStringTypePhoneConstraints;
934
+ declare enum FieldType {
935
+ /** Unknown field type. */
936
+ UNKNOWN_FIELD_TYPE = "UNKNOWN_FIELD_TYPE",
937
+ /** Input field that collects data from users. */
938
+ INPUT = "INPUT",
939
+ /** Display field that shows information without collecting input. */
940
+ DISPLAY = "DISPLAY"
941
+ }
942
+ /** @enumType */
943
+ type FieldTypeWithLiterals = FieldType | 'UNKNOWN_FIELD_TYPE' | 'INPUT' | 'DISPLAY';
944
+ interface InputField extends InputFieldInputTypeOptionsOneOf {
945
+ /** String input field settings. */
946
+ stringOptions?: _String;
947
+ /** Number input field settings. */
948
+ numberOptions?: _Number;
949
+ /** Boolean input field settings. */
950
+ booleanOptions?: _Boolean;
951
+ /** Array input field settings. */
952
+ arrayOptions?: _Array;
953
+ /** Object input field settings. */
954
+ objectOptions?: _Object;
955
+ /** File input field settings. Files are uploaded to the [Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager). */
956
+ wixFileOptions?: WixFile;
957
+ /** Payment input field settings. */
958
+ paymentOptions?: Payment;
959
+ /** Scheduling input field settings. */
960
+ schedulingOptions?: Scheduling;
961
+ /** Address input field settings. */
962
+ addressOptions?: Address;
945
963
  /**
946
- * Minimum length.
964
+ * Human readable identifier used to reference a field. For example, `"address"`.
965
+ *
966
+ * Can be set once.
967
+ * @minLength 1
968
+ * @maxLength 200
969
+ * @immutable
970
+ */
971
+ target?: string;
972
+ /**
973
+ * Whether this field contains Personally Identifiable Information (PII).
974
+ *
975
+ * PII fields are automatically encrypted when stored.
976
+ *
977
+ * Default: `false`
978
+ */
979
+ pii?: boolean;
980
+ /**
981
+ * Whether the field is required for form submission.
982
+ *
983
+ * Default: `false`
984
+ */
985
+ required?: boolean;
986
+ /**
987
+ * Type of the input field that determines what kind of data it collects.
988
+ * @readonly
989
+ */
990
+ inputType?: InputTypeWithLiterals;
991
+ /**
992
+ * Mapping configuration for automatically saving field values to contact properties.
993
+ *
994
+ * When specified, form submissions automatically create or update contacts with the field data.
995
+ */
996
+ contactMapping?: FormFieldContactInfo;
997
+ /**
998
+ * Whether the field is read-only.
999
+ *
1000
+ * Default: `false`
1001
+ */
1002
+ readOnly?: boolean;
1003
+ }
1004
+ /** @oneof */
1005
+ interface InputFieldInputTypeOptionsOneOf {
1006
+ /** String input field settings. */
1007
+ stringOptions?: _String;
1008
+ /** Number input field settings. */
1009
+ numberOptions?: _Number;
1010
+ /** Boolean input field settings. */
1011
+ booleanOptions?: _Boolean;
1012
+ /** Array input field settings. */
1013
+ arrayOptions?: _Array;
1014
+ /** Object input field settings. */
1015
+ objectOptions?: _Object;
1016
+ /** File input field settings. Files are uploaded to the [Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager). */
1017
+ wixFileOptions?: WixFile;
1018
+ /** Payment input field settings. */
1019
+ paymentOptions?: Payment;
1020
+ /** Scheduling input field settings. */
1021
+ schedulingOptions?: Scheduling;
1022
+ /** Address input field settings. */
1023
+ addressOptions?: Address;
1024
+ }
1025
+ interface StringType extends StringTypeFormatOptionsOneOf {
1026
+ /** Validation rules for strings with date format. */
1027
+ dateOptions?: DateTimeConstraints;
1028
+ /** Validation rules for strings with date and time format. */
1029
+ dateTimeOptions?: DateTimeConstraints;
1030
+ /** Validation rules for strings with time format. */
1031
+ timeOptions?: DateTimeConstraints;
1032
+ /** Validation rules for string with date and time format, where time is optional. */
1033
+ dateOptionalTimeOptions?: DateTimeConstraints;
1034
+ /** Validation rules for strings with phone number format. */
1035
+ phoneOptions?: PhoneConstraints;
1036
+ /**
1037
+ * Minimum required length for the string value.
947
1038
  * @max 20000
948
1039
  */
949
1040
  minLength?: number | null;
950
1041
  /**
951
- * Maximum length.
1042
+ * Maximum allowed length for the string value.
952
1043
  * @max 20000
953
1044
  */
954
1045
  maxLength?: number | null;
955
1046
  /**
956
- * Pattern for a regular expression match.
1047
+ * Regular expression pattern that the string value must match.
957
1048
  * @maxLength 500
958
1049
  */
959
1050
  pattern?: string | null;
960
- /** Format of a string. */
961
- format?: InputFieldStringTypeFormatEnumFormatWithLiterals;
1051
+ /** Expected format of the string value. */
1052
+ format?: FormatEnumFormatWithLiterals;
962
1053
  /**
963
- * List of allowed values.
1054
+ * List of specific values that are allowed for this field.
1055
+ * When specified, the input must match one of these predefined values.
964
1056
  * @maxSize 500
965
1057
  * @maxLength 20000
966
1058
  */
967
1059
  enum?: string[] | null;
1060
+ /** Custom error messages displayed when validation fails. */
1061
+ validationMessages?: ValidationMessages;
968
1062
  }
969
1063
  /** @oneof */
970
- interface InputFieldStringTypeFormatOptionsOneOf {
971
- /** DATE format options */
972
- dateOptions?: InputFieldStringTypeDateTimeConstraints;
973
- /** DATE_TIME format options */
974
- dateTimeOptions?: InputFieldStringTypeDateTimeConstraints;
975
- /** TIME format options */
976
- timeOptions?: InputFieldStringTypeDateTimeConstraints;
977
- /** DATE_OPTIONAL_TIME format options */
978
- dateOptionalTimeOptions?: InputFieldStringTypeDateTimeConstraints;
979
- /** PHONE format options */
980
- phoneOptions?: InputFieldStringTypePhoneConstraints;
1064
+ interface StringTypeFormatOptionsOneOf {
1065
+ /** Validation rules for strings with date format. */
1066
+ dateOptions?: DateTimeConstraints;
1067
+ /** Validation rules for strings with date and time format. */
1068
+ dateTimeOptions?: DateTimeConstraints;
1069
+ /** Validation rules for strings with time format. */
1070
+ timeOptions?: DateTimeConstraints;
1071
+ /** Validation rules for string with date and time format, where time is optional. */
1072
+ dateOptionalTimeOptions?: DateTimeConstraints;
1073
+ /** Validation rules for strings with phone number format. */
1074
+ phoneOptions?: PhoneConstraints;
981
1075
  }
982
- declare enum InputFieldStringTypeFormatEnumFormat {
1076
+ declare enum FormatEnumFormat {
1077
+ /** Unknown format. */
983
1078
  UNKNOWN_FORMAT = "UNKNOWN_FORMAT",
1079
+ /** Date format. */
984
1080
  DATE = "DATE",
1081
+ /** Time format. */
985
1082
  TIME = "TIME",
1083
+ /** Date and time format. */
986
1084
  DATE_TIME = "DATE_TIME",
1085
+ /** Email format. */
987
1086
  EMAIL = "EMAIL",
1087
+ /** URL format. */
988
1088
  URL = "URL",
1089
+ /** UUID format. */
989
1090
  UUID = "UUID",
1091
+ /** Phone number format. */
990
1092
  PHONE = "PHONE",
1093
+ /** URI format. */
991
1094
  URI = "URI",
1095
+ /** Hostname format. */
992
1096
  HOSTNAME = "HOSTNAME",
1097
+ /** Hexadecimal color code format. */
993
1098
  COLOR_HEX = "COLOR_HEX",
1099
+ /** Currency format. */
994
1100
  CURRENCY = "CURRENCY",
1101
+ /** Language code format. */
995
1102
  LANGUAGE = "LANGUAGE",
1103
+ /** Date with optional time format. */
996
1104
  DATE_OPTIONAL_TIME = "DATE_OPTIONAL_TIME"
997
1105
  }
998
1106
  /** @enumType */
999
- type InputFieldStringTypeFormatEnumFormatWithLiterals = InputFieldStringTypeFormatEnumFormat | 'UNKNOWN_FORMAT' | 'DATE' | 'TIME' | 'DATE_TIME' | 'EMAIL' | 'URL' | 'UUID' | 'PHONE' | 'URI' | 'HOSTNAME' | 'COLOR_HEX' | 'CURRENCY' | 'LANGUAGE' | 'DATE_OPTIONAL_TIME';
1000
- interface InputFieldStringTypeDateTimeConstraints {
1107
+ type FormatEnumFormatWithLiterals = FormatEnumFormat | 'UNKNOWN_FORMAT' | 'DATE' | 'TIME' | 'DATE_TIME' | 'EMAIL' | 'URL' | 'UUID' | 'PHONE' | 'URI' | 'HOSTNAME' | 'COLOR_HEX' | 'CURRENCY' | 'LANGUAGE' | 'DATE_OPTIONAL_TIME';
1108
+ interface DateTimeConstraints {
1001
1109
  /**
1002
- * Support static constrains defined as ISO date/time format, as well as
1003
- * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
1004
- * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
1005
- * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
1110
+ * Minimum allowed datetime value.
1111
+ *
1112
+ * Supports ISO datetime format or dynamic calculations using "$now" keyword.
1113
+ * The dynamic calculation supports times in the future and past.
1114
+ * The pattern for dynamic calculations: $now([+-]\d{1,2})([yMdmh]).
1115
+ *
1116
+ * Examples: `"2023-01-01"`, `"$now-1d"` (1 day ago), `"$now+2h"` (2 hours from now).
1006
1117
  * @maxLength 50
1007
1118
  */
1008
1119
  minimum?: string | null;
1009
1120
  /**
1010
- * Support static constrains defined as ISO date/time format, as well as
1011
- * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
1012
- * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
1013
- * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
1121
+ * Maximum allowed datetime value.
1122
+ *
1123
+ * Supports ISO datetime format or dynamic calculations using "$now" keyword.
1124
+ * The dynamic calculation supports times in the future and past.
1125
+ * The pattern for dynamic calculations: $now([+-]\d{1,2})([yMdmh]).
1126
+ *
1127
+ * Examples: `"2023-01-01"`, `"$now-1d"` (1 day ago), `"$now+2h"` (2 hours from now).
1014
1128
  * @maxLength 50
1015
1129
  */
1016
1130
  maximum?: string | null;
1017
1131
  }
1018
- interface InputFieldStringTypePhoneConstraints {
1132
+ interface PhoneConstraints {
1019
1133
  /**
1020
- * Country codes for phone number that are allowed
1134
+ * Country codes that are allowed for phone number validation.
1135
+ *
1136
+ * Use ISO 3166-1 alpha-2 country codes. For example, `"US"`, `"GB"`, `"CA"`.
1021
1137
  * @maxSize 250
1022
1138
  * @maxLength 2
1023
1139
  */
1024
1140
  allowedCountryCodes?: string[];
1025
1141
  }
1026
- declare enum InputFieldStringComponentType {
1142
+ interface ValidationMessages {
1143
+ /**
1144
+ * Error message shown when the pattern validation fails.
1145
+ *
1146
+ * This message is displayed to users when their input doesn't match the specified regex pattern.
1147
+ * @maxLength 200
1148
+ */
1149
+ pattern?: string | null;
1150
+ }
1151
+ declare enum StringComponentType {
1152
+ /** Unknown component type. */
1027
1153
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
1154
+ /** Text input component. */
1028
1155
  TEXT_INPUT = "TEXT_INPUT",
1156
+ /** Radio group component. */
1029
1157
  RADIO_GROUP = "RADIO_GROUP",
1158
+ /** Dropdown component. */
1030
1159
  DROPDOWN = "DROPDOWN",
1160
+ /** Date and time component. */
1031
1161
  DATE_TIME = "DATE_TIME",
1162
+ /** Phone number component. */
1032
1163
  PHONE_INPUT = "PHONE_INPUT",
1164
+ /** Date selection component. */
1033
1165
  DATE_INPUT = "DATE_INPUT",
1166
+ /** Time selection component. */
1034
1167
  TIME_INPUT = "TIME_INPUT",
1168
+ /** Calendar-style date picker component. */
1035
1169
  DATE_PICKER = "DATE_PICKER",
1170
+ /** Dropdown component for selecting available services. */
1036
1171
  SERVICES_DROPDOWN = "SERVICES_DROPDOWN"
1037
1172
  }
1038
1173
  /** @enumType */
1039
- type InputFieldStringComponentTypeWithLiterals = InputFieldStringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
1174
+ type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
1040
1175
  interface TextInput {
1041
1176
  /**
1042
1177
  * Field label.
@@ -3322,12 +3457,12 @@ interface ServiceOption {
3322
3457
  */
3323
3458
  value?: string | null;
3324
3459
  }
3325
- interface InputFieldNumberType {
3326
- /** Inclusive maximum value. */
3460
+ interface NumberType {
3461
+ /** The maximum value of the number. Inclusive. */
3327
3462
  maximum?: number | null;
3328
- /** Inclusive minimum value. */
3463
+ /** The minimum value of the number. Inclusive. */
3329
3464
  minimum?: number | null;
3330
- /** Multiple of value. */
3465
+ /** A number that the value must be a multiple of. */
3331
3466
  multipleOf?: number | null;
3332
3467
  /**
3333
3468
  * List of allowed values.
@@ -3335,13 +3470,16 @@ interface InputFieldNumberType {
3335
3470
  */
3336
3471
  enum?: number[] | null;
3337
3472
  }
3338
- declare enum InputFieldNumberComponentType {
3473
+ declare enum NumberComponentType {
3474
+ /** Unknown component type. */
3339
3475
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
3476
+ /** Numeric input component. */
3340
3477
  NUMBER_INPUT = "NUMBER_INPUT",
3478
+ /** Rating input component. */
3341
3479
  RATING_INPUT = "RATING_INPUT"
3342
3480
  }
3343
3481
  /** @enumType */
3344
- type InputFieldNumberComponentTypeWithLiterals = InputFieldNumberComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'NUMBER_INPUT' | 'RATING_INPUT';
3482
+ type NumberComponentTypeWithLiterals = NumberComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'NUMBER_INPUT' | 'RATING_INPUT';
3345
3483
  interface NumberInput {
3346
3484
  /**
3347
3485
  * Field label.
@@ -3393,19 +3531,21 @@ interface RatingInput {
3393
3531
  /** Configuration for the media content. */
3394
3532
  mediaSettings?: MediaSettings;
3395
3533
  }
3396
- interface InputFieldBooleanType {
3534
+ interface BooleanType {
3397
3535
  /**
3398
3536
  * List of allowed values.
3399
3537
  * @maxSize 2
3400
3538
  */
3401
3539
  enum?: boolean[];
3402
3540
  }
3403
- declare enum InputFieldBooleanComponentType {
3541
+ declare enum BooleanComponentType {
3542
+ /** Unknown component type. */
3404
3543
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
3544
+ /** Checkbox component. */
3405
3545
  CHECKBOX = "CHECKBOX"
3406
3546
  }
3407
3547
  /** @enumType */
3408
- type InputFieldBooleanComponentTypeWithLiterals = InputFieldBooleanComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX';
3548
+ type BooleanComponentTypeWithLiterals = BooleanComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX';
3409
3549
  interface Checkbox {
3410
3550
  /** Field label. */
3411
3551
  label?: RichContent;
@@ -3416,127 +3556,111 @@ interface Checkbox {
3416
3556
  */
3417
3557
  checked?: boolean;
3418
3558
  }
3419
- interface InputFieldArrayType {
3559
+ interface ArrayType {
3420
3560
  /**
3421
- * Maximum amount of array elements.
3561
+ * Maximum number of elements allowed in the array.
3422
3562
  * @max 1000
3423
3563
  */
3424
3564
  maxItems?: number | null;
3425
3565
  /**
3426
- * Minimum amount of array elements.
3566
+ * Minimum number of elements required in the array.
3427
3567
  * @max 1000
3428
3568
  */
3429
3569
  minItems?: number | null;
3430
- /** Type of items allowed in array. */
3431
- items?: InputFieldArrayTypeArrayItems;
3570
+ /** Type of items allowed in the array. */
3571
+ items?: ArrayItems;
3432
3572
  }
3433
- declare enum ArrayItemsItemType {
3573
+ declare enum ItemType {
3574
+ /** Unknown item type. */
3434
3575
  UNKNOWN_ITEM_TYPE = "UNKNOWN_ITEM_TYPE",
3576
+ /** Array can contain string values. */
3435
3577
  STRING = "STRING",
3578
+ /** Array can contain numeric values. */
3436
3579
  NUMBER = "NUMBER",
3437
- BOOLEAN = "BOOLEAN",
3438
- INTEGER = "INTEGER",
3439
- OBJECT = "OBJECT"
3580
+ /** Array can contain boolean values. */
3581
+ BOOLEAN = "BOOLEAN"
3440
3582
  }
3441
3583
  /** @enumType */
3442
- type ArrayItemsItemTypeWithLiterals = ArrayItemsItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'INTEGER' | 'OBJECT';
3443
- interface InputFieldIntegerType {
3444
- /** Maximum value. */
3445
- maximum?: number | null;
3446
- /** Minimum value. */
3447
- minimum?: number | null;
3448
- /** Multiple of value. */
3449
- multipleOf?: number | null;
3450
- /**
3451
- * List of allowed values.
3452
- * @maxSize 500
3453
- */
3454
- enum?: number[] | null;
3455
- }
3456
- interface InputFieldObjectType {
3457
- /** Description of object properties. */
3458
- properties?: Record<string, InputFieldObjectTypePropertiesType>;
3584
+ type ItemTypeWithLiterals = ItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN';
3585
+ interface ObjectType {
3586
+ /** Definition of object properties and their validation rules. */
3587
+ properties?: Record<string, PropertiesType>;
3459
3588
  }
3460
- declare enum PropertiesTypePropertiesTypeEnum {
3461
- UNKNOWN_PROPERTIES_TYPE = "UNKNOWN_PROPERTIES_TYPE",
3589
+ declare enum PropertiesTypeEnum {
3590
+ /** Unknown property type. */
3591
+ UNKNOWN_PROPERTY_TYPE = "UNKNOWN_PROPERTY_TYPE",
3592
+ /** Property must contain a string value. */
3462
3593
  STRING = "STRING",
3594
+ /** Property must contain a numeric value. */
3463
3595
  NUMBER = "NUMBER",
3596
+ /** Property must contain a boolean value. */
3464
3597
  BOOLEAN = "BOOLEAN",
3465
- INTEGER = "INTEGER",
3598
+ /** Property must contain an array. */
3466
3599
  ARRAY = "ARRAY"
3467
3600
  }
3468
3601
  /** @enumType */
3469
- type PropertiesTypePropertiesTypeEnumWithLiterals = PropertiesTypePropertiesTypeEnum | 'UNKNOWN_PROPERTIES_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'INTEGER' | 'ARRAY';
3470
- interface InputFieldObjectTypePropertiesType extends InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf {
3471
- /** String type validation for property. */
3472
- stringOptions?: InputFieldStringType;
3473
- /** Number type validation for property. */
3474
- numberOptions?: InputFieldNumberType;
3475
- /** Boolean type validation for property. */
3476
- booleanOptions?: InputFieldBooleanType;
3477
- /** Integer type validation for property. */
3478
- integerOptions?: InputFieldIntegerType;
3479
- /** Array type validation for property. */
3480
- arrayOptions?: InputFieldArrayType;
3602
+ type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | 'UNKNOWN_PROPERTY_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY';
3603
+ interface PropertiesType extends PropertiesTypePropertiesTypeOptionsOneOf {
3604
+ /** Validation rules for string properties. */
3605
+ stringOptions?: StringType;
3606
+ /** Validation rules for numeric properties. */
3607
+ numberOptions?: NumberType;
3608
+ /** Validation rules for boolean properties. */
3609
+ booleanOptions?: BooleanType;
3610
+ /** Validation rules for array properties. */
3611
+ arrayOptions?: ArrayType;
3481
3612
  /**
3482
- * Type of object properties
3613
+ * Data type of the object property.
3483
3614
  * @readonly
3484
3615
  */
3485
- propertiesType?: PropertiesTypePropertiesTypeEnumWithLiterals;
3486
- /** Whether the property is required. */
3616
+ propertiesType?: PropertiesTypeEnumWithLiterals;
3617
+ /** Whether the object property is required for validation. */
3487
3618
  required?: boolean;
3488
3619
  }
3489
3620
  /** @oneof */
3490
- interface InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf {
3491
- /** String type validation for property. */
3492
- stringOptions?: InputFieldStringType;
3493
- /** Number type validation for property. */
3494
- numberOptions?: InputFieldNumberType;
3495
- /** Boolean type validation for property. */
3496
- booleanOptions?: InputFieldBooleanType;
3497
- /** Integer type validation for property. */
3498
- integerOptions?: InputFieldIntegerType;
3499
- /** Array type validation for property. */
3500
- arrayOptions?: InputFieldArrayType;
3621
+ interface PropertiesTypePropertiesTypeOptionsOneOf {
3622
+ /** Validation rules for string properties. */
3623
+ stringOptions?: StringType;
3624
+ /** Validation rules for numeric properties. */
3625
+ numberOptions?: NumberType;
3626
+ /** Validation rules for boolean properties. */
3627
+ booleanOptions?: BooleanType;
3628
+ /** Validation rules for array properties. */
3629
+ arrayOptions?: ArrayType;
3501
3630
  }
3502
- interface InputFieldArrayTypeArrayItems extends InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf {
3503
- /** String type validation for items. */
3504
- stringOptions?: InputFieldStringType;
3505
- /** Number type validation for items. */
3506
- numberOptions?: InputFieldNumberType;
3507
- /** Boolean type validation for items. */
3508
- booleanOptions?: InputFieldBooleanType;
3509
- /** Integer type validation for items. */
3510
- integerOptions?: InputFieldIntegerType;
3511
- /** Object type validation for items */
3512
- objectOptions?: InputFieldObjectType;
3631
+ interface ArrayItems extends ArrayItemsItemTypeOptionsOneOf {
3632
+ /** Validation rules for string array elements. */
3633
+ stringOptions?: StringType;
3634
+ /** Validation rules for numeric array elements. */
3635
+ numberOptions?: NumberType;
3636
+ /** Validation rules for boolean array elements. */
3637
+ booleanOptions?: BooleanType;
3513
3638
  /**
3514
- * Type of array items
3639
+ * Allowed item type.
3515
3640
  * @readonly
3516
3641
  */
3517
- itemType?: ArrayItemsItemTypeWithLiterals;
3642
+ itemType?: ItemTypeWithLiterals;
3518
3643
  }
3519
3644
  /** @oneof */
3520
- interface InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf {
3521
- /** String type validation for items. */
3522
- stringOptions?: InputFieldStringType;
3523
- /** Number type validation for items. */
3524
- numberOptions?: InputFieldNumberType;
3525
- /** Boolean type validation for items. */
3526
- booleanOptions?: InputFieldBooleanType;
3527
- /** Integer type validation for items. */
3528
- integerOptions?: InputFieldIntegerType;
3529
- /** Object type validation for items */
3530
- objectOptions?: InputFieldObjectType;
3645
+ interface ArrayItemsItemTypeOptionsOneOf {
3646
+ /** Validation rules for string array elements. */
3647
+ stringOptions?: StringType;
3648
+ /** Validation rules for numeric array elements. */
3649
+ numberOptions?: NumberType;
3650
+ /** Validation rules for boolean array elements. */
3651
+ booleanOptions?: BooleanType;
3531
3652
  }
3532
- declare enum InputFieldArrayComponentType {
3653
+ declare enum ArrayComponentType {
3654
+ /** Unknown component type. */
3533
3655
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
3656
+ /** Checkbox group component. */
3534
3657
  CHECKBOX_GROUP = "CHECKBOX_GROUP",
3658
+ /** Tags component. */
3535
3659
  TAGS = "TAGS",
3536
3660
  SERVICES_CHECKBOX_GROUP = "SERVICES_CHECKBOX_GROUP"
3537
3661
  }
3538
3662
  /** @enumType */
3539
- type InputFieldArrayComponentTypeWithLiterals = InputFieldArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
3663
+ type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
3540
3664
  interface CheckboxGroup {
3541
3665
  /**
3542
3666
  * Field label.
@@ -3665,13 +3789,16 @@ interface ServicesCheckboxGroup {
3665
3789
  */
3666
3790
  numberOfColumns?: NumberOfColumnsWithLiterals;
3667
3791
  }
3668
- declare enum InputFieldWixFileComponentType {
3792
+ declare enum WixFileComponentType {
3793
+ /** Unknown component type. */
3669
3794
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
3795
+ /** File upload component. */
3670
3796
  FILE_UPLOAD = "FILE_UPLOAD",
3797
+ /** Signature component. */
3671
3798
  SIGNATURE = "SIGNATURE"
3672
3799
  }
3673
3800
  /** @enumType */
3674
- type InputFieldWixFileComponentTypeWithLiterals = InputFieldWixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
3801
+ type WixFileComponentTypeWithLiterals = WixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
3675
3802
  interface FileType {
3676
3803
  /**
3677
3804
  * Maximum number of files that can be uploaded.
@@ -3751,15 +3878,20 @@ interface Signature {
3751
3878
  /** Configuration for the media item. */
3752
3879
  mediaSettings?: MediaSettings;
3753
3880
  }
3754
- declare enum InputFieldPaymentComponentType {
3881
+ declare enum PaymentComponentType {
3882
+ /** Unknown component type. */
3755
3883
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
3884
+ /** Checkbox group component. */
3756
3885
  CHECKBOX_GROUP = "CHECKBOX_GROUP",
3886
+ /** Donation input component. */
3757
3887
  DONATION_INPUT = "DONATION_INPUT",
3888
+ /** Payment input component. */
3758
3889
  PAYMENT_INPUT = "PAYMENT_INPUT",
3890
+ /** Fixed payment component. */
3759
3891
  FIXED_PAYMENT = "FIXED_PAYMENT"
3760
3892
  }
3761
3893
  /** @enumType */
3762
- type InputFieldPaymentComponentTypeWithLiterals = InputFieldPaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
3894
+ type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
3763
3895
  interface ProductCheckboxGroup {
3764
3896
  /**
3765
3897
  * Field label.
@@ -3895,128 +4027,14 @@ interface FixedPayment {
3895
4027
  /** Configuration for the media content. */
3896
4028
  mediaSettings?: MediaSettings;
3897
4029
  }
3898
- declare enum InputFieldSchedulingComponentType {
3899
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
3900
- APPOINTMENT = "APPOINTMENT"
3901
- }
3902
- /** @enumType */
3903
- type InputFieldSchedulingComponentTypeWithLiterals = InputFieldSchedulingComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'APPOINTMENT';
3904
- interface Appointment extends AppointmentFormatInfoOneOf {
3905
- /** Configuration for in-person appointments. */
3906
- inPersonOptions?: InPersonOptions;
3907
- /** Configuration for video conference appointments. */
3908
- videoConferenceOptions?: VideoConferenceOptions;
3909
- /** Configuration for phone appointments. */
3910
- phoneOptions?: PhoneOptions;
3911
- /**
3912
- * Field label.
3913
- * @maxLength 255
3914
- */
3915
- label?: string | null;
3916
- /**
3917
- * Appointment name.
3918
- * @minLength 1
3919
- * @maxLength 400
3920
- */
3921
- name?: string | null;
3922
- /**
3923
- * Duration of the appointment in minutes.
3924
- * @min 1
3925
- * @max 44639
3926
- */
3927
- durationInMinutes?: number | null;
3928
- /** Whether appointments require manual approval before confirmation. */
3929
- manualApprovalRequired?: boolean | null;
3930
- /**
3931
- * IDs of staff members who provide this service.
3932
- * @maxSize 220
3933
- * @format GUID
3934
- */
3935
- staffIds?: string[] | null;
3936
- /** Appointment format. */
3937
- format?: FormatWithLiterals;
3938
- /** Additional description or instructions for the field. */
3939
- description?: RichContent;
3940
- /**
3941
- * Whether to display the field label.
3942
- *
3943
- * Default: `true`
3944
- */
3945
- showLabel?: boolean | null;
3946
- }
3947
- /** @oneof */
3948
- interface AppointmentFormatInfoOneOf {
3949
- /** Configuration for in-person appointments. */
3950
- inPersonOptions?: InPersonOptions;
3951
- /** Configuration for video conference appointments. */
3952
- videoConferenceOptions?: VideoConferenceOptions;
3953
- /** Configuration for phone appointments. */
3954
- phoneOptions?: PhoneOptions;
3955
- }
3956
- interface Location extends LocationLocationInfoOneOf {
3957
- /**
3958
- * Custom address specified as a text string.
3959
- * @maxLength 512
3960
- */
3961
- customAddress?: string | null;
3962
- /**
3963
- * ID of a predefined business [location](https://dev.wix.com/docs/rest/crm/members-contacts/locations/locations/introduction).
3964
- * @format GUID
3965
- */
3966
- businessLocationId?: string | null;
3967
- }
3968
- /** @oneof */
3969
- interface LocationLocationInfoOneOf {
3970
- /**
3971
- * Custom address specified as a text string.
3972
- * @maxLength 512
3973
- */
3974
- customAddress?: string | null;
3975
- /**
3976
- * ID of a predefined business [location](https://dev.wix.com/docs/rest/crm/members-contacts/locations/locations/introduction).
3977
- * @format GUID
3978
- */
3979
- businessLocationId?: string | null;
3980
- }
3981
- declare enum Format {
3982
- UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
3983
- /** Face-to-face meeting at a physical location. */
3984
- IN_PERSON = "IN_PERSON",
3985
- /** Online meeting via video conference. */
3986
- VIDEO_CONFERENCE = "VIDEO_CONFERENCE",
3987
- /** Appointment conducted over the phone. */
3988
- PHONE = "PHONE"
3989
- }
3990
- /** @enumType */
3991
- type FormatWithLiterals = Format | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
3992
- interface InPersonOptions {
3993
- /**
3994
- * Physical locations where the appointment can take place.
3995
- * @minSize 1
3996
- * @maxSize 1
3997
- */
3998
- locations?: Location[];
3999
- }
4000
- interface VideoConferenceOptions {
4001
- /**
4002
- * Description or instructions for video conference appointments.
4003
- * @maxLength 512
4004
- */
4005
- description?: string | null;
4006
- }
4007
- interface PhoneOptions {
4008
- /**
4009
- * Description or instructions for phone appointments.
4010
- * @maxLength 512
4011
- */
4012
- description?: string | null;
4013
- }
4014
- declare enum MultilineAddressComponentType {
4030
+ declare enum ComponentType {
4031
+ /** Unknown component type. */
4015
4032
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4033
+ /** Multiline address component. */
4016
4034
  MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
4017
4035
  }
4018
4036
  /** @enumType */
4019
- type MultilineAddressComponentTypeWithLiterals = MultilineAddressComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
4037
+ type ComponentTypeWithLiterals = ComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
4020
4038
  interface MultilineAddress {
4021
4039
  /**
4022
4040
  * Field label.
@@ -4060,933 +4078,25 @@ interface AddressLine2 {
4060
4078
  }
4061
4079
  interface DefaultCountryConfig extends DefaultCountryConfigOptionsOneOf {
4062
4080
  /**
4063
- * Country code for the pre-selected default country. Two-letter country code in ISO-3166 alpha-2 format.
4064
- * @format COUNTRY
4065
- */
4066
- countryOptions?: string;
4067
- /** Default country type. */
4068
- type?: TypeWithLiterals;
4069
- }
4070
- /** @oneof */
4071
- interface DefaultCountryConfigOptionsOneOf {
4072
- /**
4073
- * Country code for the pre-selected default country. Two-letter country code in ISO-3166 alpha-2 format.
4074
- * @format COUNTRY
4075
- */
4076
- countryOptions?: string;
4077
- }
4078
- interface FieldsSettings {
4079
- /** Configuration for the address line 2 field. */
4080
- addressLine2?: AddressLine2;
4081
- }
4082
- declare enum InputFieldInputType {
4083
- UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
4084
- STRING = "STRING",
4085
- NUMBER = "NUMBER",
4086
- BOOLEAN = "BOOLEAN",
4087
- ARRAY = "ARRAY",
4088
- OBJECT = "OBJECT",
4089
- WIX_FILE = "WIX_FILE",
4090
- PAYMENT = "PAYMENT",
4091
- MULTILINE_ADDRESS = "MULTILINE_ADDRESS",
4092
- SCHEDULING = "SCHEDULING"
4093
- }
4094
- /** @enumType */
4095
- type InputFieldInputTypeWithLiterals = InputFieldInputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'MULTILINE_ADDRESS' | 'SCHEDULING';
4096
- interface V4FormFieldContactInfo extends V4FormFieldContactInfoAdditionalInfoOneOf {
4097
- /** Email info. */
4098
- emailInfo?: FormFieldContactInfoEmailInfo;
4099
- /** Phone info. */
4100
- phoneInfo?: FormFieldContactInfoPhoneInfo;
4101
- /** Address info. */
4102
- addressInfo?: FormFieldContactInfoAddressInfo;
4103
- /** Custom field info. */
4104
- customFieldInfo?: FormFieldContactInfoCustomFieldInfo;
4105
- /** Subscription info. */
4106
- subscriptionInfo?: FormFieldContactInfoSubscriptionInfo;
4107
- /** The contact field that the form field maps to. */
4108
- contactField?: FormFieldContactInfoContactFieldWithLiterals;
4109
- }
4110
- /** @oneof */
4111
- interface V4FormFieldContactInfoAdditionalInfoOneOf {
4112
- /** Email info. */
4113
- emailInfo?: FormFieldContactInfoEmailInfo;
4114
- /** Phone info. */
4115
- phoneInfo?: FormFieldContactInfoPhoneInfo;
4116
- /** Address info. */
4117
- addressInfo?: FormFieldContactInfoAddressInfo;
4118
- /** Custom field info. */
4119
- customFieldInfo?: FormFieldContactInfoCustomFieldInfo;
4120
- /** Subscription info. */
4121
- subscriptionInfo?: FormFieldContactInfoSubscriptionInfo;
4122
- }
4123
- declare enum FormFieldContactInfoEmailInfoTag {
4124
- /** Email without a specific tag. */
4125
- UNTAGGED = "UNTAGGED",
4126
- /** Primary email address for the contact. */
4127
- MAIN = "MAIN"
4128
- }
4129
- /** @enumType */
4130
- type FormFieldContactInfoEmailInfoTagWithLiterals = FormFieldContactInfoEmailInfoTag | 'UNTAGGED' | 'MAIN';
4131
- declare enum FormFieldContactInfoPhoneInfoTag {
4132
- /** Phone number without a specific tag. */
4133
- UNTAGGED = "UNTAGGED",
4134
- /** Primary phone number for the contact. */
4135
- MAIN = "MAIN"
4136
- }
4137
- /** @enumType */
4138
- type FormFieldContactInfoPhoneInfoTagWithLiterals = FormFieldContactInfoPhoneInfoTag | 'UNTAGGED' | 'MAIN';
4139
- declare enum AddressInfoTag {
4140
- /** Address without a specific tag. */
4141
- UNTAGGED = "UNTAGGED",
4142
- /** Home address for the contact. */
4143
- HOME = "HOME"
4144
- }
4145
- /** @enumType */
4146
- type AddressInfoTagWithLiterals = AddressInfoTag | 'UNTAGGED' | 'HOME';
4147
- declare enum SubscriptionInfoOptInLevel {
4148
- /** Unknown opt-in level. */
4149
- UNKNOWN = "UNKNOWN",
4150
- /** Single confirmation opt-in. The contact is subscribed immediately. */
4151
- SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
4152
- /** Double confirmation opt-in. The contact must confirm their subscription via email. */
4153
- DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
4154
- }
4155
- /** @enumType */
4156
- type SubscriptionInfoOptInLevelWithLiterals = SubscriptionInfoOptInLevel | 'UNKNOWN' | 'SINGLE_CONFIRMATION' | 'DOUBLE_CONFIRMATION';
4157
- declare enum FormFieldContactInfoContactField {
4158
- /** Unknown contact field. */
4159
- UNDEFINED = "UNDEFINED",
4160
- /** First name. */
4161
- FIRST_NAME = "FIRST_NAME",
4162
- /** CLast name. */
4163
- LAST_NAME = "LAST_NAME",
4164
- /** Company name. */
4165
- COMPANY = "COMPANY",
4166
- /** Job position or title. */
4167
- POSITION = "POSITION",
4168
- /** Email address. */
4169
- EMAIL = "EMAIL",
4170
- /** Phone number. */
4171
- PHONE = "PHONE",
4172
- /** Physical address. */
4173
- ADDRESS = "ADDRESS",
4174
- /** Birth date. */
4175
- BIRTHDATE = "BIRTHDATE",
4176
- /** Custom field. */
4177
- CUSTOM_FIELD = "CUSTOM_FIELD",
4178
- /** Subscription status. */
4179
- SUBSCRIPTION = "SUBSCRIPTION",
4180
- /** VAT identification number. */
4181
- VAT_ID = "VAT_ID"
4182
- }
4183
- /** @enumType */
4184
- type FormFieldContactInfoContactFieldWithLiterals = FormFieldContactInfoContactField | 'UNDEFINED' | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
4185
- interface FormFieldContactInfoEmailInfo {
4186
- /** Email tag. */
4187
- tag?: FormFieldContactInfoEmailInfoTagWithLiterals;
4188
- }
4189
- interface FormFieldContactInfoPhoneInfo {
4190
- /** Phone tag. */
4191
- tag?: FormFieldContactInfoPhoneInfoTagWithLiterals;
4192
- }
4193
- interface FormFieldContactInfoAddressInfo {
4194
- /** Address tag. */
4195
- tag?: AddressInfoTagWithLiterals;
4196
- }
4197
- interface FormFieldContactInfoCustomFieldInfo {
4198
- /**
4199
- * Custom field key.
4200
- * @minLength 1
4201
- * @maxLength 500
4202
- */
4203
- key?: string;
4204
- }
4205
- interface FormFieldContactInfoSubscriptionInfo {
4206
- /**
4207
- * Subscription consent opt-in level.
4208
- * Default: `SINGLE_CONFIRMATION`
4209
- */
4210
- optInLevel?: SubscriptionInfoOptInLevelWithLiterals;
4211
- }
4212
- interface InputField_String extends InputField_StringComponentTypeOptionsOneOf {
4213
- /** Text input field */
4214
- textInputOptions?: TextInput;
4215
- /** Selection field as radio group */
4216
- radioGroupOptions?: RadioGroup;
4217
- /** Selection field as drop down */
4218
- dropdownOptions?: Dropdown;
4219
- /** Field for selecting date and/or time */
4220
- dateTimeOptions?: DateTimeInput;
4221
- /** Phone input field */
4222
- phoneInputOptions?: PhoneInput;
4223
- /** Dropdown based component for selecting date */
4224
- dateInputOptions?: DateInput;
4225
- /** Field for selecting time */
4226
- timeInputOptions?: TimeInput;
4227
- /** Calendar type component for selecting date */
4228
- datePickerOptions?: DatePicker;
4229
- /** Dropdown for selecting services */
4230
- servicesDropdownOptions?: ServicesDropdown;
4231
- /** Validation of field output value. */
4232
- validation?: InputFieldStringType;
4233
- /**
4234
- * Component type of the string input field
4235
- * @readonly
4236
- */
4237
- componentType?: InputFieldStringComponentTypeWithLiterals;
4238
- }
4239
- /** @oneof */
4240
- interface InputField_StringComponentTypeOptionsOneOf {
4241
- /** Text input field */
4242
- textInputOptions?: TextInput;
4243
- /** Selection field as radio group */
4244
- radioGroupOptions?: RadioGroup;
4245
- /** Selection field as drop down */
4246
- dropdownOptions?: Dropdown;
4247
- /** Field for selecting date and/or time */
4248
- dateTimeOptions?: DateTimeInput;
4249
- /** Phone input field */
4250
- phoneInputOptions?: PhoneInput;
4251
- /** Dropdown based component for selecting date */
4252
- dateInputOptions?: DateInput;
4253
- /** Field for selecting time */
4254
- timeInputOptions?: TimeInput;
4255
- /** Calendar type component for selecting date */
4256
- datePickerOptions?: DatePicker;
4257
- /** Dropdown for selecting services */
4258
- servicesDropdownOptions?: ServicesDropdown;
4259
- }
4260
- interface InputField_Number extends InputField_NumberComponentTypeOptionsOneOf {
4261
- /** Number value input field */
4262
- numberInputOptions?: NumberInput;
4263
- /** Rating value input field */
4264
- ratingInputOptions?: RatingInput;
4265
- /** Validation of field output value. */
4266
- validation?: InputFieldNumberType;
4267
- /**
4268
- * Component type of the number input field
4269
- * @readonly
4270
- */
4271
- componentType?: InputFieldNumberComponentTypeWithLiterals;
4272
- }
4273
- /** @oneof */
4274
- interface InputField_NumberComponentTypeOptionsOneOf {
4275
- /** Number value input field */
4276
- numberInputOptions?: NumberInput;
4277
- /** Rating value input field */
4278
- ratingInputOptions?: RatingInput;
4279
- }
4280
- interface InputField_Boolean extends InputField_BooleanComponentTypeOptionsOneOf {
4281
- /** Checkbox input field */
4282
- checkboxOptions?: Checkbox;
4283
- /** Validation of field output value. */
4284
- validation?: InputFieldBooleanType;
4285
- /**
4286
- * Component type of the boolean input field
4287
- * @readonly
4288
- */
4289
- componentType?: InputFieldBooleanComponentTypeWithLiterals;
4290
- }
4291
- /** @oneof */
4292
- interface InputField_BooleanComponentTypeOptionsOneOf {
4293
- /** Checkbox input field */
4294
- checkboxOptions?: Checkbox;
4295
- }
4296
- interface InputField_Array extends InputField_ArrayComponentTypeOptionsOneOf {
4297
- /** Checkbox group input field */
4298
- checkboxGroupOptions?: CheckboxGroup;
4299
- /** Tags input field */
4300
- tagsOptions?: Tags;
4301
- /** Services checkbox group input field */
4302
- servicesCheckboxGroupOptions?: ServicesCheckboxGroup;
4303
- /** Validation of array type. */
4304
- validation?: InputFieldArrayType;
4305
- /**
4306
- * Component type of the array input field
4307
- * @readonly
4308
- */
4309
- componentType?: InputFieldArrayComponentTypeWithLiterals;
4310
- }
4311
- /** @oneof */
4312
- interface InputField_ArrayComponentTypeOptionsOneOf {
4313
- /** Checkbox group input field */
4314
- checkboxGroupOptions?: CheckboxGroup;
4315
- /** Tags input field */
4316
- tagsOptions?: Tags;
4317
- /** Services checkbox group input field */
4318
- servicesCheckboxGroupOptions?: ServicesCheckboxGroup;
4319
- }
4320
- interface InputField_Object extends InputField_ObjectValidationOneOf {
4321
- /** Validation of object type. */
4322
- object?: InputFieldObjectType;
4323
- }
4324
- /** @oneof */
4325
- interface InputField_ObjectValidationOneOf {
4326
- /** Validation of object type. */
4327
- object?: InputFieldObjectType;
4328
- }
4329
- interface InputFieldWixFile extends InputFieldWixFileComponentTypeOptionsOneOf {
4330
- /** File upload input field */
4331
- fileUploadOptions?: FileUpload;
4332
- /** Signature input field */
4333
- signatureOptions?: Signature;
4334
- /**
4335
- * Component type of the array input field
4336
- * @readonly
4337
- */
4338
- componentType?: InputFieldWixFileComponentTypeWithLiterals;
4339
- /** Validation of field type. */
4340
- validation?: FileType;
4341
- }
4342
- /** @oneof */
4343
- interface InputFieldWixFileComponentTypeOptionsOneOf {
4344
- /** File upload input field */
4345
- fileUploadOptions?: FileUpload;
4346
- /** Signature input field */
4347
- signatureOptions?: Signature;
4348
- }
4349
- interface InputFieldPayment extends InputFieldPaymentComponentTypeOptionsOneOf {
4350
- /** Checkbox group input field. */
4351
- checkboxGroupOptions?: ProductCheckboxGroup;
4352
- /** Donation input field. */
4353
- donationInputOptions?: DonationInput;
4354
- /** Payment input field. */
4355
- paymentInputOptions?: PaymentInput;
4356
- /** Fixed payment field. */
4357
- fixedPaymentOptions?: FixedPayment;
4358
- /**
4359
- * Component type of the payment input field.
4360
- * @readonly
4361
- */
4362
- componentType?: InputFieldPaymentComponentTypeWithLiterals;
4363
- /** Validation of payment type. */
4364
- validation?: PaymentType;
4365
- }
4366
- /** @oneof */
4367
- interface InputFieldPaymentComponentTypeOptionsOneOf {
4368
- /** Checkbox group input field. */
4369
- checkboxGroupOptions?: ProductCheckboxGroup;
4370
- /** Donation input field. */
4371
- donationInputOptions?: DonationInput;
4372
- /** Payment input field. */
4373
- paymentInputOptions?: PaymentInput;
4374
- /** Fixed payment field. */
4375
- fixedPaymentOptions?: FixedPayment;
4376
- }
4377
- interface InputFieldMultilineAddress extends InputFieldMultilineAddressComponentTypeOptionsOneOf {
4378
- /** Multiline address input field. */
4379
- multilineAddressOptions?: MultilineAddress;
4380
- /**
4381
- * Component type of the multiline address field.
4382
- * @readonly
4383
- */
4384
- componentType?: MultilineAddressComponentTypeWithLiterals;
4385
- /** Validation of multiline address field output value. */
4386
- validation?: MultilineAddressValidation;
4387
- }
4388
- /** @oneof */
4389
- interface InputFieldMultilineAddressComponentTypeOptionsOneOf {
4390
- /** Multiline address input field. */
4391
- multilineAddressOptions?: MultilineAddress;
4392
- }
4393
- interface InputFieldScheduling extends InputFieldSchedulingComponentTypeOptionsOneOf {
4394
- /** Appointment input field */
4395
- appointmentOptions?: Appointment;
4396
- /**
4397
- * Component type of the scheduling input field
4398
- * @readonly
4399
- */
4400
- componentType?: InputFieldSchedulingComponentTypeWithLiterals;
4401
- }
4402
- /** @oneof */
4403
- interface InputFieldSchedulingComponentTypeOptionsOneOf {
4404
- /** Appointment input field */
4405
- appointmentOptions?: Appointment;
4406
- }
4407
- declare enum FormFieldV2FieldType {
4408
- UNKNOWN_FIELD_TYPE = "UNKNOWN_FIELD_TYPE",
4409
- INPUT = "INPUT",
4410
- DISPLAY = "DISPLAY"
4411
- }
4412
- /** @enumType */
4413
- type FormFieldV2FieldTypeWithLiterals = FormFieldV2FieldType | 'UNKNOWN_FIELD_TYPE' | 'INPUT' | 'DISPLAY';
4414
- interface FormFieldV2InputField extends FormFieldV2InputFieldInputTypeOptionsOneOf {
4415
- /** Input return string as value */
4416
- stringOptions?: InputField_String;
4417
- /** Input return number as value */
4418
- numberOptions?: InputField_Number;
4419
- /** Input return boolean as value */
4420
- booleanOptions?: InputField_Boolean;
4421
- /** Input return array as value */
4422
- arrayOptions?: InputField_Array;
4423
- /** Input return object as value */
4424
- objectOptions?: InputField_Object;
4425
- /** Input return "Wix file" as value */
4426
- wixFileOptions?: InputFieldWixFile;
4427
- /** Input returns selected products as value. */
4428
- paymentOptions?: InputFieldPayment;
4429
- /** Input returns multiline address as value. */
4430
- multilineAddressOptions?: InputFieldMultilineAddress;
4431
- /** Input returns scheduling as value. */
4432
- schedulingOptions?: InputFieldScheduling;
4433
- /**
4434
- * Definition of a target where the value of field belongs.
4435
- * @minLength 1
4436
- * @maxLength 200
4437
- * @immutable
4438
- */
4439
- target?: string | null;
4440
- /**
4441
- * Mark the field as containing personal information. This will encrypt user data when storing it.
4442
- * Default: false
4443
- */
4444
- pii?: boolean;
4445
- /**
4446
- * Whether the field is required.
4447
- * Default: false
4448
- */
4449
- required?: boolean;
4450
- /**
4451
- * Type of the input field
4452
- * @readonly
4453
- */
4454
- inputType?: InputFieldInputTypeWithLiterals;
4455
- /** Mapping to contacts, telling to what contact property field input value should be saved. */
4456
- contactMapping?: V4FormFieldContactInfo;
4457
- /**
4458
- * Whether the field is read only.
4459
- * Default: false
4460
- */
4461
- readOnly?: boolean;
4462
- }
4463
- /** @oneof */
4464
- interface FormFieldV2InputFieldInputTypeOptionsOneOf {
4465
- /** Input return string as value */
4466
- stringOptions?: InputField_String;
4467
- /** Input return number as value */
4468
- numberOptions?: InputField_Number;
4469
- /** Input return boolean as value */
4470
- booleanOptions?: InputField_Boolean;
4471
- /** Input return array as value */
4472
- arrayOptions?: InputField_Array;
4473
- /** Input return object as value */
4474
- objectOptions?: InputField_Object;
4475
- /** Input return "Wix file" as value */
4476
- wixFileOptions?: InputFieldWixFile;
4477
- /** Input returns selected products as value. */
4478
- paymentOptions?: InputFieldPayment;
4479
- /** Input returns multiline address as value. */
4480
- multilineAddressOptions?: InputFieldMultilineAddress;
4481
- /** Input returns scheduling as value. */
4482
- schedulingOptions?: InputFieldScheduling;
4483
- }
4484
- /** Copy of the entity existing in form template project, needed to hide translations. */
4485
- interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {
4486
- /** Configuration for rich content display fields. */
4487
- richContentOptions?: V4RichContentOptions;
4488
- /** Configuration for page navigation display fields. */
4489
- pageNavigationOptions?: V4PageNavigationOptions;
4490
- /** Type of display field that determines its appearance and behavior. */
4491
- displayFieldType?: DisplayFieldTypeWithLiterals;
4492
- }
4493
- /** @oneof */
4494
- interface DisplayFieldDisplayFieldTypeOptionsOneOf {
4495
- /** Configuration for rich content display fields. */
4496
- richContentOptions?: V4RichContentOptions;
4497
- /** Configuration for page navigation display fields. */
4498
- pageNavigationOptions?: V4PageNavigationOptions;
4499
- }
4500
- declare enum DisplayFieldType {
4501
- /** Unknown display field type. */
4502
- UNKNOWN_FIELD_TYPE = "UNKNOWN_FIELD_TYPE",
4503
- /** Rich content element for displaying formatted text, images, and media. */
4504
- RICH_CONTENT = "RICH_CONTENT",
4505
- /** Navigation element with buttons for moving between form pages or submitting. */
4506
- PAGE_NAVIGATION = "PAGE_NAVIGATION"
4507
- }
4508
- /** @enumType */
4509
- type DisplayFieldTypeWithLiterals = DisplayFieldType | 'UNKNOWN_FIELD_TYPE' | 'RICH_CONTENT' | 'PAGE_NAVIGATION';
4510
- interface V4RichContentOptions {
4511
- /** Rich content to display, including formatted text, images, and embedded media. */
4512
- richContent?: RichContent;
4513
- /**
4514
- * Maximum number of paragraphs to show initially.
4515
- * Additional content is hidden behind an expandable section. If not specified, all content is visible.
4516
- */
4517
- maxShownParagraphs?: number | null;
4518
- }
4519
- interface V4PageNavigationOptions {
4520
- /**
4521
- * Text displayed on the button when it navigates to the next page.
4522
- * Only applicable when the button is not on the final form page.
4523
- * @maxLength 65
4524
- */
4525
- nextPageText?: string | null;
4526
- /**
4527
- * Text displayed on the button when it navigates to the previous page.
4528
- * Only applicable when the button is not on the first form page.
4529
- * @maxLength 65
4530
- */
4531
- previousPageText?: string | null;
4532
- /**
4533
- * Text displayed on the button when it submits the form.
4534
- * Only applicable when the button is on the final form page.
4535
- * @maxLength 65
4536
- */
4537
- submitText?: string | null;
4538
- }
4539
- interface Field extends FieldFieldTypeOptionsOneOf {
4540
- /** Configuration for input fields that collect user data. */
4541
- inputOptions?: InputField;
4542
- /** Configuration for display fields that show information without collecting input. */
4543
- displayOptions?: FieldsDisplayField;
4544
- /**
4545
- * Field ID.
4546
- * @format GUID
4547
- * @immutable
4548
- */
4549
- _id?: string;
4550
- /**
4551
- * Whether the field is hidden from submitters.
4552
- *
4553
- * Default: `false`
4554
- */
4555
- hidden?: boolean;
4556
- /**
4557
- * Custom identification for the field. This is intended as a way for you to identify certain fields that you want to apply special behavior to in your own logic.
4558
- * @maxLength 50
4559
- */
4560
- identifier?: string | null;
4561
- /**
4562
- * Field type.
4563
- * @readonly
4564
- */
4565
- fieldType?: FieldTypeWithLiterals;
4566
- }
4567
- /** @oneof */
4568
- interface FieldFieldTypeOptionsOneOf {
4569
- /** Configuration for input fields that collect user data. */
4570
- inputOptions?: InputField;
4571
- /** Configuration for display fields that show information without collecting input. */
4572
- displayOptions?: FieldsDisplayField;
4573
- }
4574
- declare enum FieldType {
4575
- /** Unknown field type. */
4576
- UNKNOWN_FIELD_TYPE = "UNKNOWN_FIELD_TYPE",
4577
- /** Input field that collects data from users. */
4578
- INPUT = "INPUT",
4579
- /** Display field that shows information without collecting input. */
4580
- DISPLAY = "DISPLAY"
4581
- }
4582
- /** @enumType */
4583
- type FieldTypeWithLiterals = FieldType | 'UNKNOWN_FIELD_TYPE' | 'INPUT' | 'DISPLAY';
4584
- interface InputField extends InputFieldInputTypeOptionsOneOf {
4585
- /** String input field settings. */
4586
- stringOptions?: _String;
4587
- /** Number input field settings. */
4588
- numberOptions?: _Number;
4589
- /** Boolean input field settings. */
4590
- booleanOptions?: _Boolean;
4591
- /** Array input field settings. */
4592
- arrayOptions?: _Array;
4593
- /** Object input field settings. */
4594
- objectOptions?: _Object;
4595
- /** File input field settings. Files are uploaded to the [Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager). */
4596
- wixFileOptions?: WixFile;
4597
- /** Payment input field settings. */
4598
- paymentOptions?: Payment;
4599
- /** Scheduling input field settings. */
4600
- schedulingOptions?: Scheduling;
4601
- /** Address input field settings. */
4602
- addressOptions?: Address;
4603
- /**
4604
- * Human readable identifier used to reference a field. For example, `"address"`.
4605
- *
4606
- * Can be set once.
4607
- * @minLength 1
4608
- * @maxLength 200
4609
- * @immutable
4610
- */
4611
- target?: string;
4612
- /**
4613
- * Whether this field contains Personally Identifiable Information (PII).
4614
- *
4615
- * PII fields are automatically encrypted when stored.
4616
- *
4617
- * Default: `false`
4618
- */
4619
- pii?: boolean;
4620
- /**
4621
- * Whether the field is required for form submission.
4622
- *
4623
- * Default: `false`
4624
- */
4625
- required?: boolean;
4626
- /**
4627
- * Type of the input field that determines what kind of data it collects.
4628
- * @readonly
4629
- */
4630
- inputType?: InputTypeWithLiterals;
4631
- /**
4632
- * Mapping configuration for automatically saving field values to contact properties.
4633
- *
4634
- * When specified, form submissions automatically create or update contacts with the field data.
4635
- */
4636
- contactMapping?: FormFieldContactInfo;
4637
- /**
4638
- * Whether the field is read-only.
4639
- *
4640
- * Default: `false`
4641
- */
4642
- readOnly?: boolean;
4643
- }
4644
- /** @oneof */
4645
- interface InputFieldInputTypeOptionsOneOf {
4646
- /** String input field settings. */
4647
- stringOptions?: _String;
4648
- /** Number input field settings. */
4649
- numberOptions?: _Number;
4650
- /** Boolean input field settings. */
4651
- booleanOptions?: _Boolean;
4652
- /** Array input field settings. */
4653
- arrayOptions?: _Array;
4654
- /** Object input field settings. */
4655
- objectOptions?: _Object;
4656
- /** File input field settings. Files are uploaded to the [Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager). */
4657
- wixFileOptions?: WixFile;
4658
- /** Payment input field settings. */
4659
- paymentOptions?: Payment;
4660
- /** Scheduling input field settings. */
4661
- schedulingOptions?: Scheduling;
4662
- /** Address input field settings. */
4663
- addressOptions?: Address;
4664
- }
4665
- interface StringType extends StringTypeFormatOptionsOneOf {
4666
- /** Validation rules for strings with date format. */
4667
- dateOptions?: DateTimeConstraints;
4668
- /** Validation rules for strings with date and time format. */
4669
- dateTimeOptions?: DateTimeConstraints;
4670
- /** Validation rules for strings with time format. */
4671
- timeOptions?: DateTimeConstraints;
4672
- /** Validation rules for string with date and time format, where time is optional. */
4673
- dateOptionalTimeOptions?: DateTimeConstraints;
4674
- /** Validation rules for strings with phone number format. */
4675
- phoneOptions?: PhoneConstraints;
4676
- /**
4677
- * Minimum required length for the string value.
4678
- * @max 20000
4679
- */
4680
- minLength?: number | null;
4681
- /**
4682
- * Maximum allowed length for the string value.
4683
- * @max 20000
4684
- */
4685
- maxLength?: number | null;
4686
- /**
4687
- * Regular expression pattern that the string value must match.
4688
- * @maxLength 500
4689
- */
4690
- pattern?: string | null;
4691
- /** Expected format of the string value. */
4692
- format?: FormatEnumFormatWithLiterals;
4693
- /**
4694
- * List of specific values that are allowed for this field.
4695
- * When specified, the input must match one of these predefined values.
4696
- * @maxSize 500
4697
- * @maxLength 20000
4698
- */
4699
- enum?: string[] | null;
4700
- /** Custom error messages displayed when validation fails. */
4701
- validationMessages?: ValidationMessages;
4702
- }
4703
- /** @oneof */
4704
- interface StringTypeFormatOptionsOneOf {
4705
- /** Validation rules for strings with date format. */
4706
- dateOptions?: DateTimeConstraints;
4707
- /** Validation rules for strings with date and time format. */
4708
- dateTimeOptions?: DateTimeConstraints;
4709
- /** Validation rules for strings with time format. */
4710
- timeOptions?: DateTimeConstraints;
4711
- /** Validation rules for string with date and time format, where time is optional. */
4712
- dateOptionalTimeOptions?: DateTimeConstraints;
4713
- /** Validation rules for strings with phone number format. */
4714
- phoneOptions?: PhoneConstraints;
4715
- }
4716
- declare enum FormatEnumFormat {
4717
- /** Unknown format. */
4718
- UNKNOWN_FORMAT = "UNKNOWN_FORMAT",
4719
- /** Date format. */
4720
- DATE = "DATE",
4721
- /** Time format. */
4722
- TIME = "TIME",
4723
- /** Date and time format. */
4724
- DATE_TIME = "DATE_TIME",
4725
- /** Email format. */
4726
- EMAIL = "EMAIL",
4727
- /** URL format. */
4728
- URL = "URL",
4729
- /** UUID format. */
4730
- UUID = "UUID",
4731
- /** Phone number format. */
4732
- PHONE = "PHONE",
4733
- /** URI format. */
4734
- URI = "URI",
4735
- /** Hostname format. */
4736
- HOSTNAME = "HOSTNAME",
4737
- /** Hexadecimal color code format. */
4738
- COLOR_HEX = "COLOR_HEX",
4739
- /** Currency format. */
4740
- CURRENCY = "CURRENCY",
4741
- /** Language code format. */
4742
- LANGUAGE = "LANGUAGE",
4743
- /** Date with optional time format. */
4744
- DATE_OPTIONAL_TIME = "DATE_OPTIONAL_TIME"
4745
- }
4746
- /** @enumType */
4747
- type FormatEnumFormatWithLiterals = FormatEnumFormat | 'UNKNOWN_FORMAT' | 'DATE' | 'TIME' | 'DATE_TIME' | 'EMAIL' | 'URL' | 'UUID' | 'PHONE' | 'URI' | 'HOSTNAME' | 'COLOR_HEX' | 'CURRENCY' | 'LANGUAGE' | 'DATE_OPTIONAL_TIME';
4748
- interface DateTimeConstraints {
4749
- /**
4750
- * Minimum allowed datetime value.
4751
- *
4752
- * Supports ISO datetime format or dynamic calculations using "$now" keyword.
4753
- * The dynamic calculation supports times in the future and past.
4754
- * The pattern for dynamic calculations: $now([+-]\d{1,2})([yMdmh]).
4755
- *
4756
- * Examples: `"2023-01-01"`, `"$now-1d"` (1 day ago), `"$now+2h"` (2 hours from now).
4757
- * @maxLength 50
4758
- */
4759
- minimum?: string | null;
4760
- /**
4761
- * Maximum allowed datetime value.
4762
- *
4763
- * Supports ISO datetime format or dynamic calculations using "$now" keyword.
4764
- * The dynamic calculation supports times in the future and past.
4765
- * The pattern for dynamic calculations: $now([+-]\d{1,2})([yMdmh]).
4766
- *
4767
- * Examples: `"2023-01-01"`, `"$now-1d"` (1 day ago), `"$now+2h"` (2 hours from now).
4768
- * @maxLength 50
4769
- */
4770
- maximum?: string | null;
4771
- }
4772
- interface PhoneConstraints {
4773
- /**
4774
- * Country codes that are allowed for phone number validation.
4775
- *
4776
- * Use ISO 3166-1 alpha-2 country codes. For example, `"US"`, `"GB"`, `"CA"`.
4777
- * @maxSize 250
4778
- * @maxLength 2
4779
- */
4780
- allowedCountryCodes?: string[];
4781
- }
4782
- interface ValidationMessages {
4783
- /**
4784
- * Error message shown when the pattern validation fails.
4785
- *
4786
- * This message is displayed to users when their input doesn't match the specified regex pattern.
4787
- * @maxLength 200
4788
- */
4789
- pattern?: string | null;
4790
- }
4791
- declare enum StringComponentType {
4792
- /** Unknown component type. */
4793
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4794
- /** Text input component. */
4795
- TEXT_INPUT = "TEXT_INPUT",
4796
- /** Radio group component. */
4797
- RADIO_GROUP = "RADIO_GROUP",
4798
- /** Dropdown component. */
4799
- DROPDOWN = "DROPDOWN",
4800
- /** Date and time component. */
4801
- DATE_TIME = "DATE_TIME",
4802
- /** Phone number component. */
4803
- PHONE_INPUT = "PHONE_INPUT",
4804
- /** Date selection component. */
4805
- DATE_INPUT = "DATE_INPUT",
4806
- /** Time selection component. */
4807
- TIME_INPUT = "TIME_INPUT",
4808
- /** Calendar-style date picker component. */
4809
- DATE_PICKER = "DATE_PICKER",
4810
- /** Dropdown component for selecting available services. */
4811
- SERVICES_DROPDOWN = "SERVICES_DROPDOWN"
4812
- }
4813
- /** @enumType */
4814
- type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
4815
- interface NumberType {
4816
- /** The maximum value of the number. Inclusive. */
4817
- maximum?: number | null;
4818
- /** The minimum value of the number. Inclusive. */
4819
- minimum?: number | null;
4820
- /** A number that the value must be a multiple of. */
4821
- multipleOf?: number | null;
4822
- /**
4823
- * List of allowed values.
4824
- * @maxSize 500
4825
- */
4826
- enum?: number[] | null;
4827
- }
4828
- declare enum NumberComponentType {
4829
- /** Unknown component type. */
4830
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4831
- /** Numeric input component. */
4832
- NUMBER_INPUT = "NUMBER_INPUT",
4833
- /** Rating input component. */
4834
- RATING_INPUT = "RATING_INPUT"
4835
- }
4836
- /** @enumType */
4837
- type NumberComponentTypeWithLiterals = NumberComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'NUMBER_INPUT' | 'RATING_INPUT';
4838
- interface BooleanType {
4839
- /**
4840
- * List of allowed values.
4841
- * @maxSize 2
4842
- */
4843
- enum?: boolean[];
4844
- }
4845
- declare enum BooleanComponentType {
4846
- /** Unknown component type. */
4847
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4848
- /** Checkbox component. */
4849
- CHECKBOX = "CHECKBOX"
4850
- }
4851
- /** @enumType */
4852
- type BooleanComponentTypeWithLiterals = BooleanComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX';
4853
- interface ArrayType {
4854
- /**
4855
- * Maximum number of elements allowed in the array.
4856
- * @max 1000
4857
- */
4858
- maxItems?: number | null;
4859
- /**
4860
- * Minimum number of elements required in the array.
4861
- * @max 1000
4862
- */
4863
- minItems?: number | null;
4864
- /** Type of items allowed in the array. */
4865
- items?: ArrayItems;
4866
- }
4867
- declare enum ItemType {
4868
- /** Unknown item type. */
4869
- UNKNOWN_ITEM_TYPE = "UNKNOWN_ITEM_TYPE",
4870
- /** Array can contain string values. */
4871
- STRING = "STRING",
4872
- /** Array can contain numeric values. */
4873
- NUMBER = "NUMBER",
4874
- /** Array can contain boolean values. */
4875
- BOOLEAN = "BOOLEAN"
4876
- }
4877
- /** @enumType */
4878
- type ItemTypeWithLiterals = ItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN';
4879
- interface ObjectType {
4880
- /** Definition of object properties and their validation rules. */
4881
- properties?: Record<string, PropertiesType>;
4882
- }
4883
- declare enum PropertiesTypeEnum {
4884
- /** Unknown property type. */
4885
- UNKNOWN_PROPERTY_TYPE = "UNKNOWN_PROPERTY_TYPE",
4886
- /** Property must contain a string value. */
4887
- STRING = "STRING",
4888
- /** Property must contain a numeric value. */
4889
- NUMBER = "NUMBER",
4890
- /** Property must contain a boolean value. */
4891
- BOOLEAN = "BOOLEAN",
4892
- /** Property must contain an array. */
4893
- ARRAY = "ARRAY"
4894
- }
4895
- /** @enumType */
4896
- type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | 'UNKNOWN_PROPERTY_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY';
4897
- interface PropertiesType extends PropertiesTypePropertiesTypeOptionsOneOf {
4898
- /** Validation rules for string properties. */
4899
- stringOptions?: StringType;
4900
- /** Validation rules for numeric properties. */
4901
- numberOptions?: NumberType;
4902
- /** Validation rules for boolean properties. */
4903
- booleanOptions?: BooleanType;
4904
- /** Validation rules for array properties. */
4905
- arrayOptions?: ArrayType;
4906
- /**
4907
- * Data type of the object property.
4908
- * @readonly
4909
- */
4910
- propertiesType?: PropertiesTypeEnumWithLiterals;
4911
- /** Whether the object property is required for validation. */
4912
- required?: boolean;
4913
- }
4914
- /** @oneof */
4915
- interface PropertiesTypePropertiesTypeOptionsOneOf {
4916
- /** Validation rules for string properties. */
4917
- stringOptions?: StringType;
4918
- /** Validation rules for numeric properties. */
4919
- numberOptions?: NumberType;
4920
- /** Validation rules for boolean properties. */
4921
- booleanOptions?: BooleanType;
4922
- /** Validation rules for array properties. */
4923
- arrayOptions?: ArrayType;
4924
- }
4925
- interface ArrayItems extends ArrayItemsItemTypeOptionsOneOf {
4926
- /** Validation rules for string array elements. */
4927
- stringOptions?: StringType;
4928
- /** Validation rules for numeric array elements. */
4929
- numberOptions?: NumberType;
4930
- /** Validation rules for boolean array elements. */
4931
- booleanOptions?: BooleanType;
4932
- /**
4933
- * Allowed item type.
4934
- * @readonly
4935
- */
4936
- itemType?: ItemTypeWithLiterals;
4937
- }
4938
- /** @oneof */
4939
- interface ArrayItemsItemTypeOptionsOneOf {
4940
- /** Validation rules for string array elements. */
4941
- stringOptions?: StringType;
4942
- /** Validation rules for numeric array elements. */
4943
- numberOptions?: NumberType;
4944
- /** Validation rules for boolean array elements. */
4945
- booleanOptions?: BooleanType;
4946
- }
4947
- declare enum ArrayComponentType {
4948
- /** Unknown component type. */
4949
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4950
- /** Checkbox group component. */
4951
- CHECKBOX_GROUP = "CHECKBOX_GROUP",
4952
- /** Tags component. */
4953
- TAGS = "TAGS",
4954
- SERVICES_CHECKBOX_GROUP = "SERVICES_CHECKBOX_GROUP"
4955
- }
4956
- /** @enumType */
4957
- type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
4958
- declare enum WixFileComponentType {
4959
- /** Unknown component type. */
4960
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4961
- /** File upload component. */
4962
- FILE_UPLOAD = "FILE_UPLOAD",
4963
- /** Signature component. */
4964
- SIGNATURE = "SIGNATURE"
4965
- }
4966
- /** @enumType */
4967
- type WixFileComponentTypeWithLiterals = WixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
4968
- declare enum PaymentComponentType {
4969
- /** Unknown component type. */
4970
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4971
- /** Checkbox group component. */
4972
- CHECKBOX_GROUP = "CHECKBOX_GROUP",
4973
- /** Donation input component. */
4974
- DONATION_INPUT = "DONATION_INPUT",
4975
- /** Payment input component. */
4976
- PAYMENT_INPUT = "PAYMENT_INPUT",
4977
- /** Fixed payment component. */
4978
- FIXED_PAYMENT = "FIXED_PAYMENT"
4081
+ * Country code for the pre-selected default country. Two-letter country code in ISO-3166 alpha-2 format.
4082
+ * @format COUNTRY
4083
+ */
4084
+ countryOptions?: string;
4085
+ /** Default country type. */
4086
+ type?: TypeWithLiterals;
4979
4087
  }
4980
- /** @enumType */
4981
- type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
4982
- declare enum ComponentType {
4983
- /** Unknown component type. */
4984
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4985
- /** Multiline address component. */
4986
- MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
4088
+ /** @oneof */
4089
+ interface DefaultCountryConfigOptionsOneOf {
4090
+ /**
4091
+ * Country code for the pre-selected default country. Two-letter country code in ISO-3166 alpha-2 format.
4092
+ * @format COUNTRY
4093
+ */
4094
+ countryOptions?: string;
4095
+ }
4096
+ interface FieldsSettings {
4097
+ /** Configuration for the address line 2 field. */
4098
+ addressLine2?: AddressLine2;
4987
4099
  }
4988
- /** @enumType */
4989
- type ComponentTypeWithLiterals = ComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
4990
4100
  declare enum ObjectArrayComponentType {
4991
4101
  /** Unknown component type. */
4992
4102
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
@@ -5112,6 +4222,116 @@ declare enum SchedulingComponentType {
5112
4222
  }
5113
4223
  /** @enumType */
5114
4224
  type SchedulingComponentTypeWithLiterals = SchedulingComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'APPOINTMENT';
4225
+ interface Appointment extends AppointmentFormatInfoOneOf {
4226
+ /** Configuration for in-person appointments. */
4227
+ inPersonOptions?: InPersonOptions;
4228
+ /** Configuration for video conference appointments. */
4229
+ videoConferenceOptions?: VideoConferenceOptions;
4230
+ /** Configuration for phone appointments. */
4231
+ phoneOptions?: PhoneOptions;
4232
+ /**
4233
+ * Field label.
4234
+ * @maxLength 255
4235
+ */
4236
+ label?: string | null;
4237
+ /**
4238
+ * Appointment name.
4239
+ * @minLength 1
4240
+ * @maxLength 400
4241
+ */
4242
+ name?: string | null;
4243
+ /**
4244
+ * Duration of the appointment in minutes.
4245
+ * @min 1
4246
+ * @max 44639
4247
+ */
4248
+ durationInMinutes?: number | null;
4249
+ /** Whether appointments require manual approval before confirmation. */
4250
+ manualApprovalRequired?: boolean | null;
4251
+ /**
4252
+ * IDs of staff members who provide this service.
4253
+ * @maxSize 220
4254
+ * @format GUID
4255
+ */
4256
+ staffIds?: string[] | null;
4257
+ /** Appointment format. */
4258
+ format?: FormatWithLiterals;
4259
+ /** Additional description or instructions for the field. */
4260
+ description?: RichContent;
4261
+ /**
4262
+ * Whether to display the field label.
4263
+ *
4264
+ * Default: `true`
4265
+ */
4266
+ showLabel?: boolean | null;
4267
+ }
4268
+ /** @oneof */
4269
+ interface AppointmentFormatInfoOneOf {
4270
+ /** Configuration for in-person appointments. */
4271
+ inPersonOptions?: InPersonOptions;
4272
+ /** Configuration for video conference appointments. */
4273
+ videoConferenceOptions?: VideoConferenceOptions;
4274
+ /** Configuration for phone appointments. */
4275
+ phoneOptions?: PhoneOptions;
4276
+ }
4277
+ interface Location extends LocationLocationInfoOneOf {
4278
+ /**
4279
+ * Custom address specified as a text string.
4280
+ * @maxLength 512
4281
+ */
4282
+ customAddress?: string | null;
4283
+ /**
4284
+ * ID of a predefined business [location](https://dev.wix.com/docs/rest/crm/members-contacts/locations/locations/introduction).
4285
+ * @format GUID
4286
+ */
4287
+ businessLocationId?: string | null;
4288
+ }
4289
+ /** @oneof */
4290
+ interface LocationLocationInfoOneOf {
4291
+ /**
4292
+ * Custom address specified as a text string.
4293
+ * @maxLength 512
4294
+ */
4295
+ customAddress?: string | null;
4296
+ /**
4297
+ * ID of a predefined business [location](https://dev.wix.com/docs/rest/crm/members-contacts/locations/locations/introduction).
4298
+ * @format GUID
4299
+ */
4300
+ businessLocationId?: string | null;
4301
+ }
4302
+ declare enum Format {
4303
+ UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
4304
+ /** Face-to-face meeting at a physical location. */
4305
+ IN_PERSON = "IN_PERSON",
4306
+ /** Online meeting via video conference. */
4307
+ VIDEO_CONFERENCE = "VIDEO_CONFERENCE",
4308
+ /** Appointment conducted over the phone. */
4309
+ PHONE = "PHONE"
4310
+ }
4311
+ /** @enumType */
4312
+ type FormatWithLiterals = Format | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
4313
+ interface InPersonOptions {
4314
+ /**
4315
+ * Physical locations where the appointment can take place.
4316
+ * @minSize 1
4317
+ * @maxSize 1
4318
+ */
4319
+ locations?: Location[];
4320
+ }
4321
+ interface VideoConferenceOptions {
4322
+ /**
4323
+ * Description or instructions for video conference appointments.
4324
+ * @maxLength 512
4325
+ */
4326
+ description?: string | null;
4327
+ }
4328
+ interface PhoneOptions {
4329
+ /**
4330
+ * Description or instructions for phone appointments.
4331
+ * @maxLength 512
4332
+ */
4333
+ description?: string | null;
4334
+ }
5115
4335
  declare enum InputType {
5116
4336
  /** Unknown input type. */
5117
4337
  UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
@@ -5457,22 +4677,22 @@ interface ObjectArrayComponentTypeOptionsOneOf {
5457
4677
  /** Repeater component settings. */
5458
4678
  repeaterOptions?: Repeater;
5459
4679
  }
5460
- interface FieldsDisplayField extends FieldsDisplayFieldDisplayFieldTypeOptionsOneOf {
4680
+ interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {
5461
4681
  /** Configuration for rich content display fields. */
5462
4682
  richContentOptions?: RichContentOptions;
5463
4683
  /** Configuration for page navigation display fields such as navigation or submit buttons. */
5464
4684
  pageNavigationOptions?: PageNavigationOptions;
5465
4685
  /** Type of display field that determines its appearance and behavior. */
5466
- displayFieldType?: DisplayFieldDisplayFieldTypeWithLiterals;
4686
+ displayFieldType?: DisplayFieldTypeWithLiterals;
5467
4687
  }
5468
4688
  /** @oneof */
5469
- interface FieldsDisplayFieldDisplayFieldTypeOptionsOneOf {
4689
+ interface DisplayFieldDisplayFieldTypeOptionsOneOf {
5470
4690
  /** Configuration for rich content display fields. */
5471
4691
  richContentOptions?: RichContentOptions;
5472
4692
  /** Configuration for page navigation display fields such as navigation or submit buttons. */
5473
4693
  pageNavigationOptions?: PageNavigationOptions;
5474
4694
  }
5475
- declare enum DisplayFieldDisplayFieldType {
4695
+ declare enum DisplayFieldType {
5476
4696
  /** Unknown field type. */
5477
4697
  UNKNOWN_FIELD_TYPE = "UNKNOWN_FIELD_TYPE",
5478
4698
  /** Rich content display field. */
@@ -5483,7 +4703,7 @@ declare enum DisplayFieldDisplayFieldType {
5483
4703
  LOGIN_BAR = "LOGIN_BAR"
5484
4704
  }
5485
4705
  /** @enumType */
5486
- type DisplayFieldDisplayFieldTypeWithLiterals = DisplayFieldDisplayFieldType | 'UNKNOWN_FIELD_TYPE' | 'RICH_CONTENT' | 'PAGE_NAVIGATION' | 'LOGIN_BAR';
4706
+ type DisplayFieldTypeWithLiterals = DisplayFieldType | 'UNKNOWN_FIELD_TYPE' | 'RICH_CONTENT' | 'PAGE_NAVIGATION' | 'LOGIN_BAR';
5487
4707
  interface RichContentOptions {
5488
4708
  /** Rich content to display in the field. */
5489
4709
  richContent?: RichContent;
@@ -5629,6 +4849,122 @@ interface UpsertContact {
5629
4849
  */
5630
4850
  labels?: string[];
5631
4851
  }
4852
+ interface V4FormFieldContactInfo extends V4FormFieldContactInfoAdditionalInfoOneOf {
4853
+ /** Email info. */
4854
+ emailInfo?: FormFieldContactInfoEmailInfo;
4855
+ /** Phone info. */
4856
+ phoneInfo?: FormFieldContactInfoPhoneInfo;
4857
+ /** Address info. */
4858
+ addressInfo?: FormFieldContactInfoAddressInfo;
4859
+ /** Custom field info. */
4860
+ customFieldInfo?: FormFieldContactInfoCustomFieldInfo;
4861
+ /** Subscription info. */
4862
+ subscriptionInfo?: FormFieldContactInfoSubscriptionInfo;
4863
+ /** The contact field that the form field maps to. */
4864
+ contactField?: FormFieldContactInfoContactFieldWithLiterals;
4865
+ }
4866
+ /** @oneof */
4867
+ interface V4FormFieldContactInfoAdditionalInfoOneOf {
4868
+ /** Email info. */
4869
+ emailInfo?: FormFieldContactInfoEmailInfo;
4870
+ /** Phone info. */
4871
+ phoneInfo?: FormFieldContactInfoPhoneInfo;
4872
+ /** Address info. */
4873
+ addressInfo?: FormFieldContactInfoAddressInfo;
4874
+ /** Custom field info. */
4875
+ customFieldInfo?: FormFieldContactInfoCustomFieldInfo;
4876
+ /** Subscription info. */
4877
+ subscriptionInfo?: FormFieldContactInfoSubscriptionInfo;
4878
+ }
4879
+ declare enum FormFieldContactInfoEmailInfoTag {
4880
+ /** Email without a specific tag. */
4881
+ UNTAGGED = "UNTAGGED",
4882
+ /** Primary email address for the contact. */
4883
+ MAIN = "MAIN"
4884
+ }
4885
+ /** @enumType */
4886
+ type FormFieldContactInfoEmailInfoTagWithLiterals = FormFieldContactInfoEmailInfoTag | 'UNTAGGED' | 'MAIN';
4887
+ declare enum FormFieldContactInfoPhoneInfoTag {
4888
+ /** Phone number without a specific tag. */
4889
+ UNTAGGED = "UNTAGGED",
4890
+ /** Primary phone number for the contact. */
4891
+ MAIN = "MAIN"
4892
+ }
4893
+ /** @enumType */
4894
+ type FormFieldContactInfoPhoneInfoTagWithLiterals = FormFieldContactInfoPhoneInfoTag | 'UNTAGGED' | 'MAIN';
4895
+ declare enum AddressInfoTag {
4896
+ /** Address without a specific tag. */
4897
+ UNTAGGED = "UNTAGGED",
4898
+ /** Home address for the contact. */
4899
+ HOME = "HOME"
4900
+ }
4901
+ /** @enumType */
4902
+ type AddressInfoTagWithLiterals = AddressInfoTag | 'UNTAGGED' | 'HOME';
4903
+ declare enum SubscriptionInfoOptInLevel {
4904
+ /** Unknown opt-in level. */
4905
+ UNKNOWN = "UNKNOWN",
4906
+ /** Single confirmation opt-in. The contact is subscribed immediately. */
4907
+ SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
4908
+ /** Double confirmation opt-in. The contact must confirm their subscription via email. */
4909
+ DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
4910
+ }
4911
+ /** @enumType */
4912
+ type SubscriptionInfoOptInLevelWithLiterals = SubscriptionInfoOptInLevel | 'UNKNOWN' | 'SINGLE_CONFIRMATION' | 'DOUBLE_CONFIRMATION';
4913
+ declare enum FormFieldContactInfoContactField {
4914
+ /** Unknown contact field. */
4915
+ UNDEFINED = "UNDEFINED",
4916
+ /** First name. */
4917
+ FIRST_NAME = "FIRST_NAME",
4918
+ /** CLast name. */
4919
+ LAST_NAME = "LAST_NAME",
4920
+ /** Company name. */
4921
+ COMPANY = "COMPANY",
4922
+ /** Job position or title. */
4923
+ POSITION = "POSITION",
4924
+ /** Email address. */
4925
+ EMAIL = "EMAIL",
4926
+ /** Phone number. */
4927
+ PHONE = "PHONE",
4928
+ /** Physical address. */
4929
+ ADDRESS = "ADDRESS",
4930
+ /** Birth date. */
4931
+ BIRTHDATE = "BIRTHDATE",
4932
+ /** Custom field. */
4933
+ CUSTOM_FIELD = "CUSTOM_FIELD",
4934
+ /** Subscription status. */
4935
+ SUBSCRIPTION = "SUBSCRIPTION",
4936
+ /** VAT identification number. */
4937
+ VAT_ID = "VAT_ID"
4938
+ }
4939
+ /** @enumType */
4940
+ type FormFieldContactInfoContactFieldWithLiterals = FormFieldContactInfoContactField | 'UNDEFINED' | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
4941
+ interface FormFieldContactInfoEmailInfo {
4942
+ /** Email tag. */
4943
+ tag?: FormFieldContactInfoEmailInfoTagWithLiterals;
4944
+ }
4945
+ interface FormFieldContactInfoPhoneInfo {
4946
+ /** Phone tag. */
4947
+ tag?: FormFieldContactInfoPhoneInfoTagWithLiterals;
4948
+ }
4949
+ interface FormFieldContactInfoAddressInfo {
4950
+ /** Address tag. */
4951
+ tag?: AddressInfoTagWithLiterals;
4952
+ }
4953
+ interface FormFieldContactInfoCustomFieldInfo {
4954
+ /**
4955
+ * Custom field key.
4956
+ * @minLength 1
4957
+ * @maxLength 500
4958
+ */
4959
+ key?: string;
4960
+ }
4961
+ interface FormFieldContactInfoSubscriptionInfo {
4962
+ /**
4963
+ * Subscription consent opt-in level.
4964
+ * Default: `SINGLE_CONFIRMATION`
4965
+ */
4966
+ optInLevel?: SubscriptionInfoOptInLevelWithLiterals;
4967
+ }
5632
4968
  interface NestedForm {
5633
4969
  /**
5634
4970
  * Targets which have this form.
@@ -8087,4 +7423,4 @@ interface ValidateFormSubmissionOptions {
8087
7423
  fieldsToValidate?: string[];
8088
7424
  }
8089
7425
 
8090
- export { PriceType 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 QuerySubmissionsByNamespaceOptions as O, typedQuerySubmissionsByNamespace as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionsQueryBuilder as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, SubmissionStatus as W, OptInLevel as X, StringTypeFormatEnumFormat as Y, ValidationFormat as Z, ProductType as _, type UpsertContactFromSubmissionResponse as a, AddressInfoTag as a$, InputFieldStringTypeFormatEnumFormat as a0, InputFieldStringComponentType as a1, NodeType as a2, WidthType as a3, PluginContainerDataAlignment as a4, ButtonDataType as a5, LinkTarget as a6, TextAlignment as a7, LineStyle as a8, Width as a9, Direction as aA, VerticalAlignment as aB, NullValue as aC, Scaling as aD, LayoutDataImagePosition as aE, VerticalAlignmentAlignment as aF, ResponsivenessBehaviour as aG, ImagePosition as aH, Alignment as aI, ImageFit as aJ, NumberOfColumns as aK, FirstDayOfWeek as aL, InputFieldNumberComponentType as aM, InputFieldBooleanComponentType as aN, ArrayItemsItemType as aO, PropertiesTypePropertiesTypeEnum as aP, InputFieldArrayComponentType as aQ, InputFieldWixFileComponentType as aR, UploadFileFormat as aS, InputFieldPaymentComponentType as aT, InputFieldSchedulingComponentType as aU, Format as aV, MultilineAddressComponentType as aW, Type as aX, InputFieldInputType as aY, FormFieldContactInfoEmailInfoTag as aZ, FormFieldContactInfoPhoneInfoTag as a_, DividerDataAlignment as aa, ViewMode as ab, LayoutType as ac, Orientation as ad, Crop as ae, ThumbnailsAlignment as af, GIFType as ag, Source as ah, StylesPosition as ai, MapType as aj, ViewRole as ak, VoteRole as al, PollLayoutType as am, PollLayoutDirection as an, BackgroundType as ao, DecorationType as ap, FontType as aq, Position as ar, AspectRatio as as, Resizing as at, Placement as au, CardStylesType as av, CardStylesAlignment as aw, Layout as ax, AppType as ay, InitialExpandedItems as az, type CreateSubmissionApplicationErrors as b, type NumberErrorMessages as b$, SubscriptionInfoOptInLevel as b0, FormFieldContactInfoContactField as b1, FormFieldV2FieldType as b2, DisplayFieldType as b3, FieldType as b4, FormatEnumFormat as b5, StringComponentType as b6, NumberComponentType as b7, BooleanComponentType as b8, ItemType as b9, ErrorType as bA, SortOrder as bB, Mode as bC, Status as bD, SubmissionErrorType as bE, type Submitter as bF, type SubmitterSubmitterOneOf as bG, type ExtendedFields as bH, type OrderDetails as bI, type PublicTags as bJ, type TagList as bK, type FormSubmissionStatusUpdatedEvent as bL, type RemovedSubmissionFromTrash as bM, type SubmissionContactMapped as bN, type MarketingSubscriptionDetails as bO, type SubmissionContactMappingSkipped 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_, PropertiesTypeEnum as ba, ArrayComponentType as bb, WixFileComponentType as bc, PaymentComponentType as bd, ComponentType as be, ObjectArrayComponentType as bf, SchedulingComponentType as bg, InputType as bh, EmailInfoTag as bi, PhoneInfoTag as bj, Tag as bk, ConfirmationLevel as bl, ContactField as bm, DisplayFieldDisplayFieldType as bn, OverrideEntityType as bo, Kind as bp, SpamFilterProtectionLevel as bq, RequiredIndicator as br, RequiredIndicatorPlacement as bs, Target as bt, SubmitSuccessAction as bu, ChangeableProperty as bv, OverrideEntityTypeEnumOverrideEntityType as bw, Operator as bx, WebhookIdentityType as by, IdentityType as bz, type CreateSubmissionValidationErrors as c, type ItemDataOneOf 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 Node as cA, type NodeDataOneOf as cB, type NodeStyle as cC, type ButtonData as cD, type Border as cE, type Colors as cF, type PluginContainerData as cG, type PluginContainerDataWidth as cH, type PluginContainerDataWidthDataOneOf as cI, type Spoiler as cJ, type Height as cK, type Styles as cL, type Link as cM, type LinkDataOneOf as cN, type Rel as cO, type CodeBlockData as cP, type TextStyle as cQ, type DividerData as cR, type FileData as cS, type FileSource as cT, type FileSourceDataOneOf as cU, type PDFSettings as cV, type GalleryData as cW, type Media as cX, type Image as cY, type Video as cZ, type Item 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 FormFieldV2 as cs, type FormFieldV2FieldTypeOptionsOneOf as ct, type InputFieldStringType as cu, type InputFieldStringTypeFormatOptionsOneOf as cv, type InputFieldStringTypeDateTimeConstraints as cw, type InputFieldStringTypePhoneConstraints as cx, type TextInput as cy, type RichContent as cz, type UpdateSubmission as d, type BulletedListData as d$, type GalleryOptions as d0, type GalleryOptionsLayout as d1, type ItemStyle as d2, type Thumbnails as d3, type GIFData as d4, type GIF as d5, type HeadingData as d6, type HTMLData as d7, type HTMLDataDataOneOf as d8, type ImageData as d9, type ColorData as dA, type LinkData as dB, type MentionData as dC, type FontSizeData as dD, type SpoilerData as dE, type AppEmbedData as dF, type AppEmbedDataAppDataOneOf as dG, type BookingData as dH, type EventData as dI, type ButtonStyles as dJ, type ImageStyles as dK, type RibbonStyles as dL, type CardStyles as dM, type PricingData as dN, type VideoData as dO, type PlaybackOptions as dP, type EmbedData as dQ, type Oembed as dR, type CollapsibleListData as dS, type TableData as dT, type Dimensions as dU, type TableCellData as dV, type CellStyle as dW, type BorderColors as dX, type ListValue as dY, type AudioData as dZ, type OrderedListData as d_, type StylesBorder as da, type ImageDataStyles as db, type LinkPreviewData as dc, type LinkPreviewDataStyles as dd, type MapData as de, type MapSettings as df, type ParagraphData as dg, type PollData as dh, type Permissions as di, type PollOption as dj, type Settings as dk, type PollLayout as dl, type OptionLayout as dm, type Gradient as dn, type Background as dp, type BackgroundBackgroundOneOf as dq, type PollDesign as dr, type OptionDesign as ds, type Poll as dt, type PollDataLayout as du, type Design as dv, type TextData as dw, type Decoration as dx, type DecorationDataOneOf as dy, type AnchorData as dz, type UpdateSubmissionValidationErrors as e, type FormFieldContactInfoEmailInfo as e$, type BlockquoteData as e0, type CaptionData as e1, type LayoutData as e2, type BackgroundImage as e3, type LayoutCellData as e4, type Metadata as e5, type DocumentStyle as e6, type TextNodeStyle as e7, type MediaItem as e8, type MediaItemMediaOneOf as e9, type Option as eA, type Tags as eB, type TagsOption as eC, type ServicesCheckboxGroup as eD, type FileType as eE, type FileUpload as eF, type Signature as eG, type ProductCheckboxGroup as eH, type ProductCheckboxGroupOption as eI, type DonationInput as eJ, type DonationInputOption as eK, type PaymentInput as eL, type FixedPayment as eM, type Appointment as eN, type AppointmentFormatInfoOneOf as eO, type Location as eP, type LocationLocationInfoOneOf as eQ, type InPersonOptions as eR, type VideoConferenceOptions as eS, type PhoneOptions as eT, type MultilineAddress as eU, type AddressLine2 as eV, type DefaultCountryConfig as eW, type DefaultCountryConfigOptionsOneOf as eX, type FieldsSettings as eY, type V4FormFieldContactInfo as eZ, type V4FormFieldContactInfoAdditionalInfoOneOf as e_, type MediaSettings as ea, type RadioGroup as eb, type RadioGroupOption as ec, type CustomOption as ed, type Dropdown as ee, type DropdownOption as ef, type DateTimeInput as eg, type PhoneInput as eh, type DateInput as ei, type TimeInput as ej, type DatePicker as ek, type ServicesDropdown as el, type ServiceOption as em, type InputFieldNumberType as en, type NumberInput as eo, type RatingInput as ep, type InputFieldBooleanType as eq, type Checkbox as er, type InputFieldArrayType as es, type InputFieldIntegerType as et, type InputFieldObjectType as eu, type InputFieldObjectTypePropertiesType as ev, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ew, type InputFieldArrayTypeArrayItems as ex, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as ey, type CheckboxGroup as ez, type ConfirmSubmissionResponse as f, type _NumberComponentTypeOptionsOneOf as f$, type FormFieldContactInfoPhoneInfo as f0, type FormFieldContactInfoAddressInfo as f1, type FormFieldContactInfoCustomFieldInfo as f2, type FormFieldContactInfoSubscriptionInfo as f3, type InputField_String as f4, type InputField_StringComponentTypeOptionsOneOf as f5, type InputField_Number as f6, type InputField_NumberComponentTypeOptionsOneOf as f7, type InputField_Boolean as f8, type InputField_BooleanComponentTypeOptionsOneOf as f9, type ValidationMessages as fA, type NumberType as fB, type BooleanType as fC, type ArrayType as fD, type ObjectType as fE, type PropertiesType as fF, type PropertiesTypePropertiesTypeOptionsOneOf as fG, type ArrayItems as fH, type ArrayItemsItemTypeOptionsOneOf as fI, type Repeater as fJ, type FormLayout as fK, type BreakPoint as fL, type ItemLayout as fM, type ItemLayoutItemOneOf as fN, type Group as fO, type Margin as fP, type Section as fQ, type FormFieldContactInfo as fR, type FormFieldContactInfoAdditionalInfoOneOf as fS, type EmailInfo as fT, type PhoneInfo as fU, type AddressInfo as fV, type CustomFieldInfo as fW, type SubscriptionInfo as fX, type _String as fY, type _StringComponentTypeOptionsOneOf as fZ, type _Number as f_, type InputField_Array as fa, type InputField_ArrayComponentTypeOptionsOneOf as fb, type InputField_Object as fc, type InputField_ObjectValidationOneOf as fd, type InputFieldWixFile as fe, type InputFieldWixFileComponentTypeOptionsOneOf as ff, type InputFieldPayment as fg, type InputFieldPaymentComponentTypeOptionsOneOf as fh, type InputFieldMultilineAddress as fi, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fj, type InputFieldScheduling as fk, type InputFieldSchedulingComponentTypeOptionsOneOf as fl, type FormFieldV2InputField as fm, type FormFieldV2InputFieldInputTypeOptionsOneOf as fn, type DisplayField as fo, type DisplayFieldDisplayFieldTypeOptionsOneOf as fp, type V4RichContentOptions as fq, type V4PageNavigationOptions as fr, type Field as fs, type FieldFieldTypeOptionsOneOf as ft, type InputField as fu, type InputFieldInputTypeOptionsOneOf as fv, type StringType as fw, type StringTypeFormatOptionsOneOf as fx, type DateTimeConstraints as fy, type PhoneConstraints as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionRequest as g$, type _Boolean as g0, type _BooleanComponentTypeOptionsOneOf as g1, type _Array as g2, type _ArrayComponentTypeOptionsOneOf as g3, type _Object as g4, type WixFile as g5, type WixFileComponentTypeOptionsOneOf as g6, type Payment as g7, type PaymentComponentTypeOptionsOneOf as g8, type Scheduling as g9, type AllowedValuesOptions as gA, type FieldOverride as gB, type FieldOverridePropertyTypeOptionsOneOf as gC, type ConditionNode as gD, type ConditionNodeNodeOneOf as gE, type AndCondition as gF, type OrCondition as gG, type Condition as gH, type RuleFormOverride as gI, type RuleFormOverrideEntityTypeOptionsOneOf as gJ, type CreateCheckoutFromSubmissionResponse as gK, type Checkout as gL, type IsFormSubmittableRequest as gM, type IsFormSubmittableResponse as gN, type DomainEvent as gO, type DomainEventBodyOneOf as gP, type EntityCreatedEvent as gQ, type RestoreInfo as gR, type EntityUpdatedEvent as gS, type EntityDeletedEvent as gT, type ActionEvent as gU, type Empty as gV, type MessageEnvelope as gW, type IdentificationData as gX, type IdentificationDataIdOneOf as gY, type UpsertContactFromSubmissionRequest as gZ, type SubmitContactResponse as g_, type SchedulingComponentTypeOptionsOneOf as ga, type Address as gb, type AddressComponentTypeOptionsOneOf as gc, type ObjectArray as gd, type ObjectArrayComponentTypeOptionsOneOf as ge, type FieldsDisplayField as gf, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as gg, type RichContentOptions as gh, type PageNavigationOptions as gi, type Step as gj, type FormRule as gk, type FormOverride as gl, type FormProperties as gm, type PostSubmissionTriggers as gn, type UpsertContact as go, type NestedForm as gp, type LimitationRule as gq, type RequiredIndicatorProperties as gr, type SubmitSettings as gs, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gt, type ThankYouMessageOptions as gu, type RedirectOptions as gv, type FieldGroup as gw, type Rule as gx, type RequiredOptions as gy, type HiddenOptions as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ListFormattedSubmissionsRequest as h$, type CreateSubmissionResponse as h0, type SubmissionValidationErrorsDetails as h1, type ValidationError as h2, type CreateSubmissionForMigrationRequest as h3, type CreateSubmissionForMigrationResponse as h4, type CreateSubmissionBySubmitterRequest as h5, type CreateSubmissionBySubmitterResponse as h6, type BulkCreateSubmissionBySubmitterRequest as h7, type BulkCreateSubmissionBySubmitterData as h8, type BulkCreateSubmissionBySubmitterResponse as h9, type CursorQueryPagingMethodOneOf as hA, type Sorting as hB, type SearchSubmissionsByNamespaceRequest as hC, type CursorSearch as hD, type CursorSearchPagingMethodOneOf as hE, type SearchDetails as hF, type SearchSubmissionsByNamespaceForExportRequest as hG, type SearchSubmissionsByNamespaceForExportResponse as hH, type QuerySubmissionsByNamespaceRequest as hI, type QuerySubmissionsByNamespaceResponse as hJ, type QuerySubmissionsByNamespaceForExportRequest as hK, type QuerySubmissionsByNamespaceForExportResponse as hL, type CountSubmissionsByFilterRequest as hM, type FormSubmissionsCount as hN, type CountSubmissionsRequest as hO, type CountDeletedSubmissionsRequest as hP, type FormDeletedSubmissionsCount as hQ, type GetMediaUploadURLRequest as hR, type BulkMarkSubmissionsAsSeenRequest as hS, type GetSubmissionDownloadUrlRequest as hT, type SubmissionDocument as hU, type SubmissionDocumentDocumentOneOf as hV, type DocumentReady as hW, type DownloadSubmissionRequest as hX, type HeadersEntry as hY, type GetFormattedSubmissionRequest as hZ, type FormattedSubmission as h_, type BulkSubmissionResult as ha, type ItemMetadata as hb, type ApplicationError as hc, type BulkActionMetadata as hd, type GetSubmissionRequest as he, type GetSubmissionResponse as hf, type GetSubmissionByCheckoutIdRequest as hg, type GetSubmissionByCheckoutIdResponse as hh, type UpdateSubmissionRequest as hi, type UpdateSubmissionResponse as hj, type ConfirmSubmissionRequest as hk, type DeleteSubmissionRequest as hl, type DeleteSubmissionResponse as hm, type BulkDeleteSubmissionRequest as hn, type BulkDeleteSubmissionResult as ho, type RestoreSubmissionFromTrashBinRequest as hp, type RemoveSubmissionFromTrashBinRequest as hq, type RemoveSubmissionFromTrashBinResponse as hr, type BulkRemoveSubmissionFromTrashBinRequest as hs, type BulkRemoveSubmissionFromTrashBinResult as ht, type ListDeletedSubmissionsRequest as hu, type CursorPaging as hv, type CursorPagingMetadata as hw, type Cursors as hx, type GetDeletedSubmissionRequest as hy, type QuerySubmissionRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type InitialExpandedItemsWithLiterals as i$, type ListFormattedSubmissionsResponse as i0, type FormattedFormSubmission as i1, type UpdateExtendedFieldsRequest as i2, type BulkUpdateFormSubmissionTagsRequest as i3, type BulkUpdateFormSubmissionTagsResponse as i4, type BulkUpdateFormSubmissionTagsResult as i5, type BulkUpdateFormSubmissionTagsByFilterRequest as i6, type BulkUpdateFormSubmissionTagsByFilterResponse as i7, type ValidateFormSubmissionRequest as i8, type FieldViolation as i9, type LineStyleWithLiterals as iA, type WidthWithLiterals as iB, type DividerDataAlignmentWithLiterals as iC, type ViewModeWithLiterals as iD, type LayoutTypeWithLiterals as iE, type OrientationWithLiterals as iF, type CropWithLiterals as iG, type ThumbnailsAlignmentWithLiterals as iH, type GIFTypeWithLiterals as iI, type SourceWithLiterals as iJ, type StylesPositionWithLiterals as iK, type MapTypeWithLiterals as iL, type ViewRoleWithLiterals as iM, type VoteRoleWithLiterals as iN, type PollLayoutTypeWithLiterals as iO, type PollLayoutDirectionWithLiterals as iP, type BackgroundTypeWithLiterals as iQ, type DecorationTypeWithLiterals as iR, type FontTypeWithLiterals as iS, type PositionWithLiterals as iT, type AspectRatioWithLiterals as iU, type ResizingWithLiterals as iV, type PlacementWithLiterals as iW, type CardStylesTypeWithLiterals as iX, type CardStylesAlignmentWithLiterals as iY, type LayoutWithLiterals as iZ, type AppTypeWithLiterals as i_, type FieldViolationErrorDataOneOf as ia, type SubmissionValidationErrors as ib, type SubmissionValidationError as ic, type SubmissionValidationErrorErrorMessageOneOf as id, type BaseEventMetadata as ie, type EventMetadata as ig, type FormSubmissionSearchSpec as ih, type SubmissionsQueryResult as ii, type BulkUpdateFormSubmissionTagsOptions as ij, type BulkUpdateFormSubmissionTagsByFilterOptions as ik, type SubmissionStatusWithLiterals as il, type OptInLevelWithLiterals as im, type StringTypeFormatEnumFormatWithLiterals as io, type ValidationFormatWithLiterals as ip, type ProductTypeWithLiterals as iq, type PriceTypeWithLiterals as ir, type InputFieldStringTypeFormatEnumFormatWithLiterals as is, type InputFieldStringComponentTypeWithLiterals as it, type NodeTypeWithLiterals as iu, type WidthTypeWithLiterals as iv, type PluginContainerDataAlignmentWithLiterals as iw, type ButtonDataTypeWithLiterals as ix, type LinkTargetWithLiterals as iy, type TextAlignmentWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type IdentityTypeWithLiterals as j$, type DirectionWithLiterals as j0, type VerticalAlignmentWithLiterals as j1, type NullValueWithLiterals as j2, type ScalingWithLiterals as j3, type LayoutDataImagePositionWithLiterals as j4, type VerticalAlignmentAlignmentWithLiterals as j5, type ResponsivenessBehaviourWithLiterals as j6, type ImagePositionWithLiterals as j7, type AlignmentWithLiterals as j8, type ImageFitWithLiterals as j9, type BooleanComponentTypeWithLiterals as jA, type ItemTypeWithLiterals as jB, type PropertiesTypeEnumWithLiterals as jC, type ArrayComponentTypeWithLiterals as jD, type WixFileComponentTypeWithLiterals as jE, type PaymentComponentTypeWithLiterals as jF, type ComponentTypeWithLiterals as jG, type ObjectArrayComponentTypeWithLiterals as jH, type SchedulingComponentTypeWithLiterals as jI, type InputTypeWithLiterals as jJ, type EmailInfoTagWithLiterals as jK, type PhoneInfoTagWithLiterals as jL, type TagWithLiterals as jM, type ConfirmationLevelWithLiterals as jN, type ContactFieldWithLiterals as jO, type DisplayFieldDisplayFieldTypeWithLiterals as jP, type OverrideEntityTypeWithLiterals as jQ, type KindWithLiterals as jR, type SpamFilterProtectionLevelWithLiterals as jS, type RequiredIndicatorWithLiterals as jT, type RequiredIndicatorPlacementWithLiterals as jU, type TargetWithLiterals as jV, type SubmitSuccessActionWithLiterals as jW, type ChangeablePropertyWithLiterals as jX, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jY, type OperatorWithLiterals as jZ, type WebhookIdentityTypeWithLiterals as j_, type NumberOfColumnsWithLiterals as ja, type FirstDayOfWeekWithLiterals as jb, type InputFieldNumberComponentTypeWithLiterals as jc, type InputFieldBooleanComponentTypeWithLiterals as jd, type ArrayItemsItemTypeWithLiterals as je, type PropertiesTypePropertiesTypeEnumWithLiterals as jf, type InputFieldArrayComponentTypeWithLiterals as jg, type InputFieldWixFileComponentTypeWithLiterals as jh, type UploadFileFormatWithLiterals as ji, type InputFieldPaymentComponentTypeWithLiterals as jj, type InputFieldSchedulingComponentTypeWithLiterals as jk, type FormatWithLiterals as jl, type MultilineAddressComponentTypeWithLiterals as jm, type TypeWithLiterals as jn, type InputFieldInputTypeWithLiterals as jo, type FormFieldContactInfoEmailInfoTagWithLiterals as jp, type FormFieldContactInfoPhoneInfoTagWithLiterals as jq, type AddressInfoTagWithLiterals as jr, type SubscriptionInfoOptInLevelWithLiterals as js, type FormFieldContactInfoContactFieldWithLiterals as jt, type FormFieldV2FieldTypeWithLiterals as ju, type DisplayFieldTypeWithLiterals as jv, type FieldTypeWithLiterals as jw, type FormatEnumFormatWithLiterals as jx, type StringComponentTypeWithLiterals as jy, type NumberComponentTypeWithLiterals as jz, type CursorQuery as k, type ErrorTypeWithLiterals as k0, type SortOrderWithLiterals as k1, type ModeWithLiterals as k2, type StatusWithLiterals as k3, type SubmissionErrorTypeWithLiterals as k4, type CommonSearchWithEntityContext as k5, onSubmissionCreated as k6, onSubmissionDeleted as k7, onSubmissionRemovedSubmissionFromTrash as k8, onSubmissionStatusUpdated as k9, validateFormSubmission as kA, onSubmissionContactMapped as ka, onSubmissionContactMappingSkipped as kb, onSubmissionUpdated as kc, upsertContactFromSubmission as kd, createSubmission as ke, getSubmission as kf, updateSubmission as kg, confirmSubmission as kh, deleteSubmission as ki, bulkDeleteSubmission as kj, restoreSubmissionFromTrashBin as kk, removeSubmissionFromTrashBin as kl, bulkRemoveSubmissionFromTrashBin as km, listDeletedSubmissions as kn, getDeletedSubmission as ko, querySubmission as kp, querySubmissionsByNamespace as kq, countSubmissionsByFilter as kr, countSubmissions as ks, countDeletedSubmissions as kt, getMediaUploadUrl as ku, bulkMarkSubmissionsAsSeen as kv, getSubmissionDownloadUrl as kw, downloadSubmission as kx, getFormattedSubmission as ky, updateExtendedFields as kz, 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 };
7426
+ export { PriceType 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 QuerySubmissionsByNamespaceOptions as O, typedQuerySubmissionsByNamespace as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionsQueryBuilder as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, SubmissionStatus as W, OptInLevel as X, StringTypeFormatEnumFormat as Y, ValidationFormat as Z, ProductType as _, type UpsertContactFromSubmissionResponse as a, EmailInfoTag as a$, FieldType as a0, FormatEnumFormat as a1, StringComponentType as a2, NodeType as a3, WidthType as a4, PluginContainerDataAlignment as a5, ButtonDataType as a6, LinkTarget as a7, TextAlignment as a8, LineStyle as a9, InitialExpandedItems as aA, Direction as aB, VerticalAlignment as aC, NullValue as aD, Scaling as aE, LayoutDataImagePosition as aF, VerticalAlignmentAlignment as aG, ResponsivenessBehaviour as aH, ImagePosition as aI, Alignment as aJ, ImageFit as aK, NumberOfColumns as aL, FirstDayOfWeek as aM, NumberComponentType as aN, BooleanComponentType as aO, ItemType as aP, PropertiesTypeEnum as aQ, ArrayComponentType as aR, WixFileComponentType as aS, UploadFileFormat as aT, PaymentComponentType as aU, ComponentType as aV, Type as aW, ObjectArrayComponentType as aX, SchedulingComponentType as aY, Format as aZ, InputType as a_, Width as aa, DividerDataAlignment as ab, ViewMode as ac, LayoutType as ad, Orientation as ae, Crop as af, ThumbnailsAlignment as ag, GIFType as ah, Source as ai, StylesPosition as aj, MapType as ak, ViewRole as al, VoteRole as am, PollLayoutType as an, PollLayoutDirection as ao, BackgroundType as ap, DecorationType as aq, FontType as ar, Position as as, AspectRatio as at, Resizing as au, Placement as av, CardStylesType as aw, CardStylesAlignment as ax, Layout as ay, AppType as az, type CreateSubmissionApplicationErrors as b, type PaymentType as b$, PhoneInfoTag as b0, Tag as b1, ConfirmationLevel as b2, ContactField as b3, DisplayFieldType as b4, OverrideEntityType as b5, Kind as b6, FormFieldContactInfoEmailInfoTag as b7, FormFieldContactInfoPhoneInfoTag as b8, AddressInfoTag as b9, type MarketingSubscriptionDetails as bA, type SubmissionContactMappingSkipped as bB, type CreateCheckoutFromSubmissionRequest as bC, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bD, type Form as bE, type FormField as bF, type FormFieldStringType as bG, type FormFieldStringTypeFormatOptionsOneOf as bH, type StringErrorMessages as bI, type StringTypeDateTimeConstraints as bJ, type StringTypePhoneConstraints as bK, type StringTypeValidationMessages as bL, type FormFieldNumberType as bM, type NumberErrorMessages as bN, type IntegerType as bO, type FormFieldBooleanType as bP, type BooleanErrorMessages as bQ, type FormFieldArrayType as bR, type FormFieldObjectType as bS, type ObjectTypePropertiesType as bT, type ObjectTypePropertiesTypePropertiesTypeOneOf as bU, type ObjectErrorMessages as bV, type ArrayTypeArrayItems as bW, type ArrayTypeArrayItemsItemsOneOf as bX, type ArrayErrorMessages as bY, type PredefinedValidation as bZ, type PredefinedValidationFormatOptionsOneOf as b_, SubscriptionInfoOptInLevel as ba, FormFieldContactInfoContactField as bb, SpamFilterProtectionLevel as bc, RequiredIndicator as bd, RequiredIndicatorPlacement as be, Target as bf, SubmitSuccessAction as bg, ChangeableProperty as bh, OverrideEntityTypeEnumOverrideEntityType as bi, Operator as bj, WebhookIdentityType as bk, IdentityType as bl, ErrorType as bm, SortOrder as bn, Mode as bo, Status as bp, SubmissionErrorType as bq, type Submitter as br, type SubmitterSubmitterOneOf as bs, type ExtendedFields as bt, type OrderDetails as bu, type PublicTags as bv, type TagList as bw, type FormSubmissionStatusUpdatedEvent as bx, type RemovedSubmissionFromTrash as by, type SubmissionContactMapped as bz, type CreateSubmissionValidationErrors as c, type StylesBorder as c$, type QuantityLimit as c0, type FixedPriceOptions as c1, type DynamicPriceOptions as c2, type Product as c3, type ProductPriceOptionsOneOf as c4, type MultilineAddressValidation as c5, type FieldOverrides as c6, type FieldsOverrides as c7, type ObjectArrayType as c8, type NestedFormFieldOverrides as c9, type Styles as cA, type Link as cB, type LinkDataOneOf as cC, type Rel as cD, type CodeBlockData as cE, type TextStyle as cF, type DividerData as cG, type FileData as cH, type FileSource as cI, type FileSourceDataOneOf as cJ, type PDFSettings as cK, type GalleryData as cL, type Media as cM, type Image as cN, type Video as cO, type Item as cP, type ItemDataOneOf as cQ, type GalleryOptions as cR, type GalleryOptionsLayout as cS, type ItemStyle as cT, type Thumbnails as cU, type GIFData as cV, type GIF as cW, type HeadingData as cX, type HTMLData as cY, type HTMLDataDataOneOf as cZ, type ImageData as c_, type Validation as ca, type ValidationValidationOneOf as cb, type DataExtensionsDetails as cc, type NestedFormOverrides as cd, type Field as ce, type FieldFieldTypeOptionsOneOf as cf, type InputField as cg, type InputFieldInputTypeOptionsOneOf as ch, type StringType as ci, type StringTypeFormatOptionsOneOf as cj, type DateTimeConstraints as ck, type PhoneConstraints as cl, type ValidationMessages as cm, type TextInput as cn, type RichContent as co, type Node as cp, type NodeDataOneOf as cq, type NodeStyle as cr, type ButtonData as cs, type Border as ct, type Colors as cu, type PluginContainerData as cv, type PluginContainerDataWidth as cw, type PluginContainerDataWidthDataOneOf as cx, type Spoiler as cy, type Height as cz, type UpdateSubmission as d, type MediaSettings as d$, type ImageDataStyles as d0, type LinkPreviewData as d1, type LinkPreviewDataStyles as d2, type MapData as d3, type MapSettings as d4, type ParagraphData as d5, type PollData as d6, type Permissions as d7, type PollOption as d8, type Settings as d9, type RibbonStyles as dA, type CardStyles as dB, type PricingData as dC, type VideoData as dD, type PlaybackOptions as dE, type EmbedData as dF, type Oembed as dG, type CollapsibleListData as dH, type TableData as dI, type Dimensions as dJ, type TableCellData as dK, type CellStyle as dL, type BorderColors as dM, type ListValue as dN, type AudioData as dO, type OrderedListData as dP, type BulletedListData as dQ, type BlockquoteData as dR, type CaptionData as dS, type LayoutData as dT, type BackgroundImage as dU, type LayoutCellData as dV, type Metadata as dW, type DocumentStyle as dX, type TextNodeStyle as dY, type MediaItem as dZ, type MediaItemMediaOneOf as d_, 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 dp, type LinkData as dq, type MentionData as dr, type FontSizeData as ds, type SpoilerData 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 UpdateSubmissionValidationErrors as e, type SubscriptionInfo as e$, type RadioGroup as e0, type RadioGroupOption as e1, type CustomOption as e2, type Dropdown as e3, type DropdownOption as e4, type DateTimeInput as e5, type PhoneInput as e6, type DateInput as e7, type TimeInput as e8, type DatePicker as e9, type FixedPayment as eA, type MultilineAddress as eB, type AddressLine2 as eC, type DefaultCountryConfig as eD, type DefaultCountryConfigOptionsOneOf as eE, type FieldsSettings as eF, type Repeater as eG, type FormLayout as eH, type BreakPoint as eI, type ItemLayout as eJ, type ItemLayoutItemOneOf as eK, type Group as eL, type Margin as eM, type Section as eN, type Appointment as eO, type AppointmentFormatInfoOneOf as eP, type Location as eQ, type LocationLocationInfoOneOf as eR, type InPersonOptions as eS, type VideoConferenceOptions as eT, type PhoneOptions as eU, type FormFieldContactInfo as eV, type FormFieldContactInfoAdditionalInfoOneOf as eW, type EmailInfo as eX, type PhoneInfo as eY, type AddressInfo as eZ, type CustomFieldInfo as e_, type ServicesDropdown as ea, type ServiceOption as eb, type NumberType as ec, type NumberInput as ed, type RatingInput as ee, type BooleanType as ef, type Checkbox as eg, type ArrayType as eh, type ObjectType as ei, type PropertiesType as ej, type PropertiesTypePropertiesTypeOptionsOneOf as ek, type ArrayItems as el, type ArrayItemsItemTypeOptionsOneOf as em, type CheckboxGroup as en, type Option as eo, type Tags as ep, type TagsOption as eq, type ServicesCheckboxGroup as er, type FileType as es, type FileUpload as et, type Signature as eu, type ProductCheckboxGroup as ev, type ProductCheckboxGroupOption as ew, type DonationInput as ex, type DonationInputOption as ey, type PaymentInput as ez, type ConfirmSubmissionResponse as f, type EntityCreatedEvent as f$, type _String as f0, type _StringComponentTypeOptionsOneOf as f1, type _Number as f2, type _NumberComponentTypeOptionsOneOf as f3, type _Boolean as f4, type _BooleanComponentTypeOptionsOneOf as f5, type _Array as f6, type _ArrayComponentTypeOptionsOneOf as f7, type _Object as f8, type WixFile as f9, type NestedForm as fA, type LimitationRule as fB, type RequiredIndicatorProperties as fC, type SubmitSettings as fD, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fE, type ThankYouMessageOptions as fF, type RedirectOptions as fG, type FieldGroup as fH, type Rule as fI, type RequiredOptions as fJ, type HiddenOptions as fK, type AllowedValuesOptions as fL, type FieldOverride as fM, type FieldOverridePropertyTypeOptionsOneOf as fN, type ConditionNode as fO, type ConditionNodeNodeOneOf as fP, type AndCondition as fQ, type OrCondition as fR, type Condition as fS, type RuleFormOverride as fT, type RuleFormOverrideEntityTypeOptionsOneOf as fU, type CreateCheckoutFromSubmissionResponse as fV, type Checkout as fW, type IsFormSubmittableRequest as fX, type IsFormSubmittableResponse as fY, type DomainEvent as fZ, type DomainEventBodyOneOf as f_, type WixFileComponentTypeOptionsOneOf as fa, type Payment as fb, type PaymentComponentTypeOptionsOneOf as fc, type Scheduling as fd, type SchedulingComponentTypeOptionsOneOf as fe, type Address as ff, type AddressComponentTypeOptionsOneOf as fg, type ObjectArray as fh, type ObjectArrayComponentTypeOptionsOneOf as fi, type DisplayField as fj, type DisplayFieldDisplayFieldTypeOptionsOneOf as fk, type RichContentOptions as fl, type PageNavigationOptions as fm, type Step as fn, type FormRule as fo, type FormOverride as fp, type FormProperties as fq, type PostSubmissionTriggers as fr, type UpsertContact as fs, type V4FormFieldContactInfo as ft, type V4FormFieldContactInfoAdditionalInfoOneOf as fu, type FormFieldContactInfoEmailInfo as fv, type FormFieldContactInfoPhoneInfo as fw, type FormFieldContactInfoAddressInfo as fx, type FormFieldContactInfoCustomFieldInfo as fy, type FormFieldContactInfoSubscriptionInfo as fz, type BulkDeleteSubmissionResponse as g, type FormDeletedSubmissionsCount as g$, type RestoreInfo as g0, type EntityUpdatedEvent as g1, type EntityDeletedEvent as g2, type ActionEvent as g3, type Empty as g4, type MessageEnvelope as g5, type IdentificationData as g6, type IdentificationDataIdOneOf as g7, type UpsertContactFromSubmissionRequest as g8, type SubmitContactResponse as g9, type RestoreSubmissionFromTrashBinRequest as gA, type RemoveSubmissionFromTrashBinRequest as gB, type RemoveSubmissionFromTrashBinResponse as gC, type BulkRemoveSubmissionFromTrashBinRequest as gD, type BulkRemoveSubmissionFromTrashBinResult as gE, type ListDeletedSubmissionsRequest as gF, type CursorPaging as gG, type CursorPagingMetadata as gH, type Cursors as gI, type GetDeletedSubmissionRequest as gJ, type QuerySubmissionRequest as gK, type CursorQueryPagingMethodOneOf as gL, type Sorting as gM, type SearchSubmissionsByNamespaceRequest as gN, type CursorSearch as gO, type CursorSearchPagingMethodOneOf as gP, type SearchDetails as gQ, type SearchSubmissionsByNamespaceForExportRequest as gR, type SearchSubmissionsByNamespaceForExportResponse as gS, type QuerySubmissionsByNamespaceRequest as gT, type QuerySubmissionsByNamespaceResponse as gU, type QuerySubmissionsByNamespaceForExportRequest as gV, type QuerySubmissionsByNamespaceForExportResponse as gW, type CountSubmissionsByFilterRequest as gX, type FormSubmissionsCount as gY, type CountSubmissionsRequest as gZ, type CountDeletedSubmissionsRequest as g_, type CreateSubmissionRequest as ga, type CreateSubmissionResponse as gb, type SubmissionValidationErrorsDetails as gc, type ValidationError as gd, type CreateSubmissionForMigrationRequest as ge, type CreateSubmissionForMigrationResponse as gf, type CreateSubmissionBySubmitterRequest as gg, type CreateSubmissionBySubmitterResponse as gh, type BulkCreateSubmissionBySubmitterRequest as gi, type BulkCreateSubmissionBySubmitterData as gj, type BulkCreateSubmissionBySubmitterResponse as gk, type BulkSubmissionResult as gl, type ItemMetadata as gm, type ApplicationError as gn, type BulkActionMetadata as go, type GetSubmissionRequest as gp, type GetSubmissionResponse as gq, type GetSubmissionByCheckoutIdRequest as gr, type GetSubmissionByCheckoutIdResponse as gs, type UpdateSubmissionRequest as gt, type UpdateSubmissionResponse as gu, type ConfirmSubmissionRequest as gv, type DeleteSubmissionRequest as gw, type DeleteSubmissionResponse as gx, type BulkDeleteSubmissionRequest as gy, type BulkDeleteSubmissionResult as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DecorationTypeWithLiterals as h$, type GetMediaUploadURLRequest as h0, type BulkMarkSubmissionsAsSeenRequest as h1, type GetSubmissionDownloadUrlRequest as h2, type SubmissionDocument as h3, type SubmissionDocumentDocumentOneOf as h4, type DocumentReady as h5, type DownloadSubmissionRequest as h6, type HeadersEntry as h7, type GetFormattedSubmissionRequest as h8, type FormattedSubmission as h9, type PriceTypeWithLiterals as hA, type FieldTypeWithLiterals as hB, type FormatEnumFormatWithLiterals as hC, type StringComponentTypeWithLiterals as hD, type NodeTypeWithLiterals as hE, type WidthTypeWithLiterals as hF, type PluginContainerDataAlignmentWithLiterals as hG, type ButtonDataTypeWithLiterals as hH, type LinkTargetWithLiterals as hI, type TextAlignmentWithLiterals as hJ, type LineStyleWithLiterals as hK, type WidthWithLiterals as hL, type DividerDataAlignmentWithLiterals as hM, type ViewModeWithLiterals as hN, type LayoutTypeWithLiterals as hO, type OrientationWithLiterals as hP, type CropWithLiterals as hQ, type ThumbnailsAlignmentWithLiterals as hR, type GIFTypeWithLiterals as hS, type SourceWithLiterals as hT, type StylesPositionWithLiterals as hU, type MapTypeWithLiterals as hV, type ViewRoleWithLiterals as hW, type VoteRoleWithLiterals as hX, type PollLayoutTypeWithLiterals as hY, type PollLayoutDirectionWithLiterals as hZ, type BackgroundTypeWithLiterals as h_, type ListFormattedSubmissionsRequest as ha, type ListFormattedSubmissionsResponse as hb, type FormattedFormSubmission as hc, type UpdateExtendedFieldsRequest as hd, type BulkUpdateFormSubmissionTagsRequest as he, type BulkUpdateFormSubmissionTagsResponse as hf, type BulkUpdateFormSubmissionTagsResult as hg, type BulkUpdateFormSubmissionTagsByFilterRequest as hh, type BulkUpdateFormSubmissionTagsByFilterResponse as hi, type ValidateFormSubmissionRequest as hj, type FieldViolation as hk, type FieldViolationErrorDataOneOf as hl, type SubmissionValidationErrors as hm, type SubmissionValidationError as hn, type SubmissionValidationErrorErrorMessageOneOf as ho, type BaseEventMetadata as hp, type EventMetadata as hq, type FormSubmissionSearchSpec as hr, type SubmissionsQueryResult as hs, type BulkUpdateFormSubmissionTagsOptions as ht, type BulkUpdateFormSubmissionTagsByFilterOptions as hu, type SubmissionStatusWithLiterals as hv, type OptInLevelWithLiterals as hw, type StringTypeFormatEnumFormatWithLiterals as hx, type ValidationFormatWithLiterals as hy, type ProductTypeWithLiterals as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type ModeWithLiterals as i$, type FontTypeWithLiterals as i0, type PositionWithLiterals as i1, type AspectRatioWithLiterals as i2, type ResizingWithLiterals as i3, type PlacementWithLiterals as i4, type CardStylesTypeWithLiterals as i5, type CardStylesAlignmentWithLiterals as i6, type LayoutWithLiterals as i7, type AppTypeWithLiterals as i8, type InitialExpandedItemsWithLiterals as i9, type FormatWithLiterals as iA, type InputTypeWithLiterals as iB, type EmailInfoTagWithLiterals as iC, type PhoneInfoTagWithLiterals as iD, type TagWithLiterals as iE, type ConfirmationLevelWithLiterals as iF, type ContactFieldWithLiterals as iG, type DisplayFieldTypeWithLiterals as iH, type OverrideEntityTypeWithLiterals as iI, type KindWithLiterals as iJ, type FormFieldContactInfoEmailInfoTagWithLiterals as iK, type FormFieldContactInfoPhoneInfoTagWithLiterals as iL, type AddressInfoTagWithLiterals as iM, type SubscriptionInfoOptInLevelWithLiterals as iN, type FormFieldContactInfoContactFieldWithLiterals as iO, type SpamFilterProtectionLevelWithLiterals as iP, type RequiredIndicatorWithLiterals as iQ, type RequiredIndicatorPlacementWithLiterals as iR, type TargetWithLiterals as iS, type SubmitSuccessActionWithLiterals as iT, type ChangeablePropertyWithLiterals as iU, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as iV, type OperatorWithLiterals as iW, type WebhookIdentityTypeWithLiterals as iX, type IdentityTypeWithLiterals as iY, type ErrorTypeWithLiterals as iZ, type SortOrderWithLiterals as i_, type DirectionWithLiterals as ia, type VerticalAlignmentWithLiterals as ib, type NullValueWithLiterals as ic, type ScalingWithLiterals as id, type LayoutDataImagePositionWithLiterals as ie, type VerticalAlignmentAlignmentWithLiterals as ig, type ResponsivenessBehaviourWithLiterals as ih, type ImagePositionWithLiterals as ii, type AlignmentWithLiterals as ij, type ImageFitWithLiterals as ik, type NumberOfColumnsWithLiterals as il, type FirstDayOfWeekWithLiterals as im, type NumberComponentTypeWithLiterals as io, type BooleanComponentTypeWithLiterals as ip, type ItemTypeWithLiterals as iq, type PropertiesTypeEnumWithLiterals as ir, type ArrayComponentTypeWithLiterals as is, type WixFileComponentTypeWithLiterals as it, type UploadFileFormatWithLiterals as iu, type PaymentComponentTypeWithLiterals as iv, type ComponentTypeWithLiterals as iw, type TypeWithLiterals as ix, type ObjectArrayComponentTypeWithLiterals as iy, type SchedulingComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type StatusWithLiterals as j0, type SubmissionErrorTypeWithLiterals as j1, type CommonSearchWithEntityContext as j2, onSubmissionCreated as j3, onSubmissionDeleted as j4, onSubmissionRemovedSubmissionFromTrash as j5, onSubmissionStatusUpdated as j6, onSubmissionContactMapped as j7, onSubmissionContactMappingSkipped as j8, onSubmissionUpdated as j9, upsertContactFromSubmission as ja, createSubmission as jb, getSubmission as jc, updateSubmission as jd, confirmSubmission as je, deleteSubmission as jf, bulkDeleteSubmission as jg, restoreSubmissionFromTrashBin as jh, removeSubmissionFromTrashBin as ji, bulkRemoveSubmissionFromTrashBin as jj, listDeletedSubmissions as jk, getDeletedSubmission as jl, querySubmission as jm, querySubmissionsByNamespace as jn, countSubmissionsByFilter as jo, countSubmissions as jp, countDeletedSubmissions as jq, getMediaUploadUrl as jr, bulkMarkSubmissionsAsSeen as js, getSubmissionDownloadUrl as jt, downloadSubmission as ju, getFormattedSubmission as jv, updateExtendedFields as jw, validateFormSubmission as jx, 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 };