@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.
- package/build/cjs/{forms-v4-submission-submissions.universal-8MFuPNM3.d.ts → forms-v4-submission-submissions.universal-BGR1uSK9.d.ts} +541 -1205
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +101 -244
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +101 -244
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +542 -1206
- package/build/cjs/meta.js +101 -244
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-8MFuPNM3.d.mts → forms-v4-submission-submissions.universal-BGR1uSK9.d.mts} +541 -1205
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +101 -230
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +101 -230
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +542 -1206
- package/build/es/meta.mjs +101 -230
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-EPX5eZ7e.d.ts → forms-v4-submission-submissions.universal-BlAMJnaP.d.ts} +541 -1205
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +101 -244
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +101 -244
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +542 -1206
- package/build/internal/cjs/meta.js +101 -244
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-EPX5eZ7e.d.mts → forms-v4-submission-submissions.universal-BlAMJnaP.d.mts} +541 -1205
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +101 -230
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +101 -230
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +542 -1206
- package/build/internal/es/meta.mjs +101 -230
- package/build/internal/es/meta.mjs.map +1 -1
- 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
|
|
906
|
-
/**
|
|
907
|
-
inputOptions?:
|
|
908
|
-
/**
|
|
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
|
|
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
|
-
*
|
|
911
|
+
* Whether the field is hidden from submitters.
|
|
912
|
+
*
|
|
913
|
+
* Default: `false`
|
|
919
914
|
*/
|
|
920
915
|
hidden?: boolean;
|
|
921
916
|
/**
|
|
922
|
-
*
|
|
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?:
|
|
925
|
+
fieldType?: FieldTypeWithLiterals;
|
|
926
926
|
}
|
|
927
927
|
/** @oneof */
|
|
928
|
-
interface
|
|
929
|
-
/**
|
|
930
|
-
inputOptions?:
|
|
931
|
-
/**
|
|
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
|
-
|
|
935
|
-
/**
|
|
936
|
-
|
|
937
|
-
/**
|
|
938
|
-
|
|
939
|
-
/**
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
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
|
-
*
|
|
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
|
-
*
|
|
1047
|
+
* Regular expression pattern that the string value must match.
|
|
957
1048
|
* @maxLength 500
|
|
958
1049
|
*/
|
|
959
1050
|
pattern?: string | null;
|
|
960
|
-
/**
|
|
961
|
-
format?:
|
|
1051
|
+
/** Expected format of the string value. */
|
|
1052
|
+
format?: FormatEnumFormatWithLiterals;
|
|
962
1053
|
/**
|
|
963
|
-
* List of allowed
|
|
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
|
|
971
|
-
/**
|
|
972
|
-
dateOptions?:
|
|
973
|
-
/**
|
|
974
|
-
dateTimeOptions?:
|
|
975
|
-
/**
|
|
976
|
-
timeOptions?:
|
|
977
|
-
/**
|
|
978
|
-
dateOptionalTimeOptions?:
|
|
979
|
-
/**
|
|
980
|
-
phoneOptions?:
|
|
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
|
|
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
|
|
1000
|
-
interface
|
|
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
|
-
*
|
|
1003
|
-
*
|
|
1004
|
-
*
|
|
1005
|
-
* The
|
|
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
|
-
*
|
|
1011
|
-
*
|
|
1012
|
-
*
|
|
1013
|
-
* The
|
|
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
|
|
1132
|
+
interface PhoneConstraints {
|
|
1019
1133
|
/**
|
|
1020
|
-
* Country codes for phone number
|
|
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
|
-
|
|
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
|
|
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
|
|
3326
|
-
/**
|
|
3460
|
+
interface NumberType {
|
|
3461
|
+
/** The maximum value of the number. Inclusive. */
|
|
3327
3462
|
maximum?: number | null;
|
|
3328
|
-
/**
|
|
3463
|
+
/** The minimum value of the number. Inclusive. */
|
|
3329
3464
|
minimum?: number | null;
|
|
3330
|
-
/**
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
3559
|
+
interface ArrayType {
|
|
3420
3560
|
/**
|
|
3421
|
-
* Maximum
|
|
3561
|
+
* Maximum number of elements allowed in the array.
|
|
3422
3562
|
* @max 1000
|
|
3423
3563
|
*/
|
|
3424
3564
|
maxItems?: number | null;
|
|
3425
3565
|
/**
|
|
3426
|
-
* Minimum
|
|
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?:
|
|
3570
|
+
/** Type of items allowed in the array. */
|
|
3571
|
+
items?: ArrayItems;
|
|
3432
3572
|
}
|
|
3433
|
-
declare enum
|
|
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
|
-
|
|
3438
|
-
|
|
3439
|
-
OBJECT = "OBJECT"
|
|
3580
|
+
/** Array can contain boolean values. */
|
|
3581
|
+
BOOLEAN = "BOOLEAN"
|
|
3440
3582
|
}
|
|
3441
3583
|
/** @enumType */
|
|
3442
|
-
type
|
|
3443
|
-
interface
|
|
3444
|
-
/**
|
|
3445
|
-
|
|
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
|
|
3461
|
-
|
|
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
|
-
|
|
3598
|
+
/** Property must contain an array. */
|
|
3466
3599
|
ARRAY = "ARRAY"
|
|
3467
3600
|
}
|
|
3468
3601
|
/** @enumType */
|
|
3469
|
-
type
|
|
3470
|
-
interface
|
|
3471
|
-
/**
|
|
3472
|
-
stringOptions?:
|
|
3473
|
-
/**
|
|
3474
|
-
numberOptions?:
|
|
3475
|
-
/**
|
|
3476
|
-
booleanOptions?:
|
|
3477
|
-
/**
|
|
3478
|
-
|
|
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
|
-
*
|
|
3613
|
+
* Data type of the object property.
|
|
3483
3614
|
* @readonly
|
|
3484
3615
|
*/
|
|
3485
|
-
propertiesType?:
|
|
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
|
|
3491
|
-
/**
|
|
3492
|
-
stringOptions?:
|
|
3493
|
-
/**
|
|
3494
|
-
numberOptions?:
|
|
3495
|
-
/**
|
|
3496
|
-
booleanOptions?:
|
|
3497
|
-
/**
|
|
3498
|
-
|
|
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
|
|
3503
|
-
/**
|
|
3504
|
-
stringOptions?:
|
|
3505
|
-
/**
|
|
3506
|
-
numberOptions?:
|
|
3507
|
-
/**
|
|
3508
|
-
booleanOptions?:
|
|
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
|
-
*
|
|
3639
|
+
* Allowed item type.
|
|
3515
3640
|
* @readonly
|
|
3516
3641
|
*/
|
|
3517
|
-
itemType?:
|
|
3642
|
+
itemType?: ItemTypeWithLiterals;
|
|
3518
3643
|
}
|
|
3519
3644
|
/** @oneof */
|
|
3520
|
-
interface
|
|
3521
|
-
/**
|
|
3522
|
-
stringOptions?:
|
|
3523
|
-
/**
|
|
3524
|
-
numberOptions?:
|
|
3525
|
-
/**
|
|
3526
|
-
booleanOptions?:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
3899
|
-
|
|
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
|
|
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
|
-
/** @
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
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
|
|
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?:
|
|
4686
|
+
displayFieldType?: DisplayFieldTypeWithLiterals;
|
|
5467
4687
|
}
|
|
5468
4688
|
/** @oneof */
|
|
5469
|
-
interface
|
|
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
|
|
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
|
|
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.
|
|
@@ -8119,4 +7455,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
8119
7455
|
fieldsToValidate?: string[];
|
|
8120
7456
|
}
|
|
8121
7457
|
|
|
8122
|
-
export { OptInLevel as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type QuerySubmissionsByNamespaceOptions as X, typedQuerySubmissionsByNamespace as Y, type SubmissionsQueryBuilder as Z, SubmissionStatus as _, type UpsertContactFromSubmissionResponse as a, Type as a$, StringTypeFormatEnumFormat as a0, ValidationFormat as a1, ProductType as a2, PriceType as a3, InputFieldStringTypeFormatEnumFormat as a4, InputFieldStringComponentType as a5, NodeType as a6, WidthType as a7, PluginContainerDataAlignment as a8, ButtonDataType as a9, CardStylesAlignment as aA, Layout as aB, AppType as aC, InitialExpandedItems as aD, Direction as aE, VerticalAlignment as aF, NullValue as aG, Scaling as aH, LayoutDataImagePosition as aI, VerticalAlignmentAlignment as aJ, ResponsivenessBehaviour as aK, ImagePosition as aL, Alignment as aM, ImageFit as aN, NumberOfColumns as aO, FirstDayOfWeek as aP, InputFieldNumberComponentType as aQ, InputFieldBooleanComponentType as aR, ArrayItemsItemType as aS, PropertiesTypePropertiesTypeEnum as aT, InputFieldArrayComponentType as aU, InputFieldWixFileComponentType as aV, UploadFileFormat as aW, InputFieldPaymentComponentType as aX, InputFieldSchedulingComponentType as aY, Format as aZ, MultilineAddressComponentType as a_, LinkTarget as aa, TextAlignment as ab, LineStyle as ac, Width as ad, DividerDataAlignment as ae, ViewMode as af, LayoutType as ag, Orientation as ah, Crop as ai, ThumbnailsAlignment as aj, GIFType as ak, Source as al, StylesPosition as am, MapType as an, ViewRole as ao, VoteRole as ap, PollLayoutType as aq, PollLayoutDirection as ar, BackgroundType as as, DecorationType as at, FontType as au, Position as av, AspectRatio as aw, Resizing as ax, Placement as ay, CardStylesType as az, type CreateSubmissionApplicationErrors as b, type StringTypeDateTimeConstraints as b$, InputFieldInputType as b0, FormFieldContactInfoEmailInfoTag as b1, FormFieldContactInfoPhoneInfoTag as b2, AddressInfoTag as b3, SubscriptionInfoOptInLevel as b4, FormFieldContactInfoContactField as b5, FormFieldV2FieldType as b6, DisplayFieldType as b7, FieldType as b8, FormatEnumFormat as b9, OverrideEntityTypeEnumOverrideEntityType as bA, Operator as bB, WebhookIdentityType as bC, IdentityType as bD, ErrorType as bE, SortOrder as bF, Mode as bG, Status as bH, SubmissionErrorType as bI, type Submitter as bJ, type SubmitterSubmitterOneOf as bK, type ExtendedFields as bL, type OrderDetails as bM, type PublicTags as bN, type TagList as bO, type FormSubmissionStatusUpdatedEvent as bP, type RemovedSubmissionFromTrash as bQ, type SubmissionContactMapped as bR, type MarketingSubscriptionDetails as bS, type SubmissionContactMappingSkipped as bT, type CreateCheckoutFromSubmissionRequest as bU, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bV, type Form as bW, type FormField as bX, type FormFieldStringType as bY, type FormFieldStringTypeFormatOptionsOneOf as bZ, type StringErrorMessages as b_, StringComponentType as ba, NumberComponentType as bb, BooleanComponentType as bc, ItemType as bd, PropertiesTypeEnum as be, ArrayComponentType as bf, WixFileComponentType as bg, PaymentComponentType as bh, ComponentType as bi, ObjectArrayComponentType as bj, SchedulingComponentType as bk, InputType as bl, EmailInfoTag as bm, PhoneInfoTag as bn, Tag as bo, ConfirmationLevel as bp, ContactField as bq, DisplayFieldDisplayFieldType as br, OverrideEntityType as bs, Kind as bt, SpamFilterProtectionLevel as bu, RequiredIndicator as bv, RequiredIndicatorPlacement as bw, Target as bx, SubmitSuccessAction as by, ChangeableProperty as bz, type CreateSubmissionValidationErrors as c, type Media as c$, type StringTypePhoneConstraints as c0, type StringTypeValidationMessages as c1, type FormFieldNumberType as c2, type NumberErrorMessages as c3, type IntegerType as c4, type FormFieldBooleanType as c5, type BooleanErrorMessages as c6, type FormFieldArrayType as c7, type FormFieldObjectType as c8, type ObjectTypePropertiesType as c9, type InputFieldStringTypeDateTimeConstraints as cA, type InputFieldStringTypePhoneConstraints as cB, type TextInput as cC, type RichContent as cD, type Node as cE, type NodeDataOneOf as cF, type NodeStyle as cG, type ButtonData as cH, type Border as cI, type Colors as cJ, type PluginContainerData as cK, type PluginContainerDataWidth as cL, type PluginContainerDataWidthDataOneOf as cM, type Spoiler as cN, type Height as cO, type Styles as cP, type Link as cQ, type LinkDataOneOf as cR, type Rel as cS, type CodeBlockData as cT, type TextStyle as cU, type DividerData as cV, type FileData as cW, type FileSource as cX, type FileSourceDataOneOf as cY, type PDFSettings as cZ, type GalleryData as c_, type ObjectTypePropertiesTypePropertiesTypeOneOf as ca, type ObjectErrorMessages as cb, type ArrayTypeArrayItems as cc, type ArrayTypeArrayItemsItemsOneOf as cd, type ArrayErrorMessages as ce, type PredefinedValidation as cf, type PredefinedValidationFormatOptionsOneOf as cg, type PaymentType as ch, type QuantityLimit as ci, type FixedPriceOptions as cj, type DynamicPriceOptions as ck, type Product as cl, type ProductPriceOptionsOneOf as cm, type MultilineAddressValidation as cn, type FieldOverrides as co, type FieldsOverrides as cp, type ObjectArrayType as cq, type NestedFormFieldOverrides as cr, type Validation as cs, type ValidationValidationOneOf as ct, type DataExtensionsDetails as cu, type NestedFormOverrides as cv, type FormFieldV2 as cw, type FormFieldV2FieldTypeOptionsOneOf as cx, type InputFieldStringType as cy, type InputFieldStringTypeFormatOptionsOneOf as cz, type UpdateSubmission as d, type BorderColors as d$, type Image as d0, type Video as d1, type Item as d2, type ItemDataOneOf as d3, type GalleryOptions as d4, type GalleryOptionsLayout as d5, type ItemStyle as d6, type Thumbnails as d7, type GIFData as d8, type GIF as d9, type TextData as dA, type Decoration as dB, type DecorationDataOneOf as dC, type AnchorData as dD, type ColorData as dE, type LinkData as dF, type MentionData as dG, type FontSizeData as dH, type SpoilerData as dI, type AppEmbedData as dJ, type AppEmbedDataAppDataOneOf as dK, type BookingData as dL, type EventData as dM, type ButtonStyles as dN, type ImageStyles as dO, type RibbonStyles as dP, type CardStyles as dQ, type PricingData as dR, type VideoData as dS, type PlaybackOptions as dT, type EmbedData as dU, type Oembed as dV, type CollapsibleListData as dW, type TableData as dX, type Dimensions as dY, type TableCellData as dZ, type CellStyle as d_, type HeadingData as da, type HTMLData as db, type HTMLDataDataOneOf as dc, type ImageData as dd, type StylesBorder as de, type ImageDataStyles as df, type LinkPreviewData as dg, type LinkPreviewDataStyles as dh, type MapData as di, type MapSettings as dj, type ParagraphData as dk, type PollData as dl, type Permissions as dm, type PollOption as dn, type Settings as dp, type PollLayout as dq, type OptionLayout as dr, type Gradient as ds, type Background as dt, type BackgroundBackgroundOneOf as du, type PollDesign as dv, type OptionDesign as dw, type Poll as dx, type PollDataLayout as dy, type Design as dz, type UpdateSubmissionValidationErrors as e, type DefaultCountryConfigOptionsOneOf as e$, type ListValue as e0, type AudioData as e1, type OrderedListData as e2, type BulletedListData as e3, type BlockquoteData as e4, type CaptionData as e5, type LayoutData as e6, type BackgroundImage as e7, type LayoutCellData as e8, type Metadata as e9, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as eA, type InputFieldArrayTypeArrayItems as eB, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as eC, type CheckboxGroup as eD, type Option as eE, type Tags as eF, type TagsOption as eG, type ServicesCheckboxGroup as eH, type FileType as eI, type FileUpload as eJ, type Signature as eK, type ProductCheckboxGroup as eL, type ProductCheckboxGroupOption as eM, type DonationInput as eN, type DonationInputOption as eO, type PaymentInput as eP, type FixedPayment as eQ, type Appointment as eR, type AppointmentFormatInfoOneOf as eS, type Location as eT, type LocationLocationInfoOneOf as eU, type InPersonOptions as eV, type VideoConferenceOptions as eW, type PhoneOptions as eX, type MultilineAddress as eY, type AddressLine2 as eZ, type DefaultCountryConfig as e_, type DocumentStyle as ea, type TextNodeStyle as eb, type MediaItem as ec, type MediaItemMediaOneOf as ed, type MediaSettings as ee, type RadioGroup as ef, type RadioGroupOption as eg, type CustomOption as eh, type Dropdown as ei, type DropdownOption as ej, type DateTimeInput as ek, type PhoneInput as el, type DateInput as em, type TimeInput as en, type DatePicker as eo, type ServicesDropdown as ep, type ServiceOption as eq, type InputFieldNumberType as er, type NumberInput as es, type RatingInput as et, type InputFieldBooleanType as eu, type Checkbox as ev, type InputFieldArrayType as ew, type InputFieldIntegerType as ex, type InputFieldObjectType as ey, type InputFieldObjectTypePropertiesType as ez, type ConfirmSubmissionResponse as f, type SubscriptionInfo as f$, type FieldsSettings as f0, type V4FormFieldContactInfo as f1, type V4FormFieldContactInfoAdditionalInfoOneOf as f2, type FormFieldContactInfoEmailInfo as f3, type FormFieldContactInfoPhoneInfo as f4, type FormFieldContactInfoAddressInfo as f5, type FormFieldContactInfoCustomFieldInfo as f6, type FormFieldContactInfoSubscriptionInfo as f7, type InputField_String as f8, type InputField_StringComponentTypeOptionsOneOf as f9, type StringType as fA, type StringTypeFormatOptionsOneOf as fB, type DateTimeConstraints as fC, type PhoneConstraints as fD, type ValidationMessages as fE, type NumberType as fF, type BooleanType as fG, type ArrayType as fH, type ObjectType as fI, type PropertiesType as fJ, type PropertiesTypePropertiesTypeOptionsOneOf as fK, type ArrayItems as fL, type ArrayItemsItemTypeOptionsOneOf as fM, type Repeater as fN, type FormLayout as fO, type BreakPoint as fP, type ItemLayout as fQ, type ItemLayoutItemOneOf as fR, type Group as fS, type Margin as fT, type Section as fU, type FormFieldContactInfo as fV, type FormFieldContactInfoAdditionalInfoOneOf as fW, type EmailInfo as fX, type PhoneInfo as fY, type AddressInfo as fZ, type CustomFieldInfo as f_, type InputField_Number as fa, type InputField_NumberComponentTypeOptionsOneOf as fb, type InputField_Boolean as fc, type InputField_BooleanComponentTypeOptionsOneOf as fd, type InputField_Array as fe, type InputField_ArrayComponentTypeOptionsOneOf as ff, type InputField_Object as fg, type InputField_ObjectValidationOneOf as fh, type InputFieldWixFile as fi, type InputFieldWixFileComponentTypeOptionsOneOf as fj, type InputFieldPayment as fk, type InputFieldPaymentComponentTypeOptionsOneOf as fl, type InputFieldMultilineAddress as fm, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fn, type InputFieldScheduling as fo, type InputFieldSchedulingComponentTypeOptionsOneOf as fp, type FormFieldV2InputField as fq, type FormFieldV2InputFieldInputTypeOptionsOneOf as fr, type DisplayField as fs, type DisplayFieldDisplayFieldTypeOptionsOneOf as ft, type V4RichContentOptions as fu, type V4PageNavigationOptions as fv, type Field as fw, type FieldFieldTypeOptionsOneOf as fx, type InputField as fy, type InputFieldInputTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type IdentificationData as g$, type _String as g0, type _StringComponentTypeOptionsOneOf as g1, type _Number as g2, type _NumberComponentTypeOptionsOneOf as g3, type _Boolean as g4, type _BooleanComponentTypeOptionsOneOf as g5, type _Array as g6, type _ArrayComponentTypeOptionsOneOf as g7, type _Object as g8, type WixFile as g9, type FieldGroup as gA, type Rule as gB, type RequiredOptions as gC, type HiddenOptions as gD, type AllowedValuesOptions as gE, type FieldOverride as gF, type FieldOverridePropertyTypeOptionsOneOf as gG, type ConditionNode as gH, type ConditionNodeNodeOneOf as gI, type AndCondition as gJ, type OrCondition as gK, type Condition as gL, type RuleFormOverride as gM, type RuleFormOverrideEntityTypeOptionsOneOf as gN, type CreateCheckoutFromSubmissionResponse as gO, type Checkout as gP, type IsFormSubmittableRequest as gQ, type IsFormSubmittableResponse as gR, type DomainEvent as gS, type DomainEventBodyOneOf as gT, type EntityCreatedEvent as gU, type RestoreInfo as gV, type EntityUpdatedEvent as gW, type EntityDeletedEvent as gX, type ActionEvent as gY, type Empty as gZ, type MessageEnvelope as g_, type WixFileComponentTypeOptionsOneOf as ga, type Payment as gb, type PaymentComponentTypeOptionsOneOf as gc, type Scheduling as gd, type SchedulingComponentTypeOptionsOneOf as ge, type Address as gf, type AddressComponentTypeOptionsOneOf as gg, type ObjectArray as gh, type ObjectArrayComponentTypeOptionsOneOf as gi, type FieldsDisplayField as gj, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as gk, type RichContentOptions as gl, type PageNavigationOptions as gm, type Step as gn, type FormRule as go, type FormOverride as gp, type FormProperties as gq, type PostSubmissionTriggers as gr, type UpsertContact as gs, type NestedForm as gt, type LimitationRule as gu, type RequiredIndicatorProperties as gv, type SubmitSettings as gw, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gx, type ThankYouMessageOptions as gy, type RedirectOptions as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DownloadSubmissionRequest as h$, type IdentificationDataIdOneOf as h0, type UpsertContactFromSubmissionRequest as h1, type SubmitContactResponse as h2, type CreateSubmissionRequest as h3, type CreateSubmissionResponse as h4, type SubmissionValidationErrorsDetails as h5, type ValidationError as h6, type CreateSubmissionForMigrationRequest as h7, type CreateSubmissionForMigrationResponse as h8, type CreateSubmissionBySubmitterRequest as h9, type CursorPagingMetadata as hA, type Cursors as hB, type GetDeletedSubmissionRequest as hC, type QuerySubmissionRequest as hD, type CursorQueryPagingMethodOneOf as hE, type Sorting as hF, type SearchSubmissionsByNamespaceRequest as hG, type CursorSearch as hH, type CursorSearchPagingMethodOneOf as hI, type SearchDetails as hJ, type SearchSubmissionsByNamespaceForExportRequest as hK, type SearchSubmissionsByNamespaceForExportResponse as hL, type QuerySubmissionsByNamespaceRequest as hM, type QuerySubmissionsByNamespaceResponse as hN, type QuerySubmissionsByNamespaceForExportRequest as hO, type QuerySubmissionsByNamespaceForExportResponse as hP, type CountSubmissionsByFilterRequest as hQ, type FormSubmissionsCount as hR, type CountSubmissionsRequest as hS, type CountDeletedSubmissionsRequest as hT, type FormDeletedSubmissionsCount as hU, type GetMediaUploadURLRequest as hV, type BulkMarkSubmissionsAsSeenRequest as hW, type GetSubmissionDownloadUrlRequest as hX, type SubmissionDocument as hY, type SubmissionDocumentDocumentOneOf as hZ, type DocumentReady as h_, type CreateSubmissionBySubmitterResponse as ha, type BulkCreateSubmissionBySubmitterRequest as hb, type BulkCreateSubmissionBySubmitterData as hc, type BulkCreateSubmissionBySubmitterResponse as hd, type BulkSubmissionResult as he, type ItemMetadata as hf, type ApplicationError as hg, type BulkActionMetadata as hh, type GetSubmissionRequest as hi, type GetSubmissionResponse as hj, type GetSubmissionByCheckoutIdRequest as hk, type GetSubmissionByCheckoutIdResponse as hl, type UpdateSubmissionRequest as hm, type UpdateSubmissionResponse as hn, type ConfirmSubmissionRequest as ho, type DeleteSubmissionRequest as hp, type DeleteSubmissionResponse as hq, type BulkDeleteSubmissionRequest as hr, type BulkDeleteSubmissionResult as hs, type RestoreSubmissionFromTrashBinRequest as ht, type RemoveSubmissionFromTrashBinRequest as hu, type RemoveSubmissionFromTrashBinResponse as hv, type BulkRemoveSubmissionFromTrashBinRequest as hw, type BulkRemoveSubmissionFromTrashBinResult as hx, type ListDeletedSubmissionsRequest as hy, type CursorPaging as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type InitialExpandedItemsWithLiterals as i$, type HeadersEntry as i0, type GetFormattedSubmissionRequest as i1, type FormattedSubmission as i2, type ListFormattedSubmissionsRequest as i3, type ListFormattedSubmissionsResponse as i4, type FormattedFormSubmission as i5, type UpdateExtendedFieldsRequest as i6, type BulkUpdateFormSubmissionTagsRequest as i7, type BulkUpdateFormSubmissionTagsResult as i8, type BulkUpdateFormSubmissionTagsByFilterRequest 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 ValidateFormSubmissionRequest as ia, type FieldViolation as ib, type FieldViolationErrorDataOneOf as ic, type SubmissionValidationErrors as id, type SubmissionValidationError as ie, type SubmissionValidationErrorErrorMessageOneOf as ig, type BaseEventMetadata as ih, type EventMetadata as ii, type FormSubmissionSearchSpec as ij, type SubmissionsQueryResult 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, bulkUpdateFormSubmissionTags as kA, bulkUpdateFormSubmissionTagsByFilter as kB, validateFormSubmission as kC, 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 };
|
|
7458
|
+
export { OptInLevel as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type QuerySubmissionsByNamespaceOptions as X, typedQuerySubmissionsByNamespace as Y, type SubmissionsQueryBuilder as Z, SubmissionStatus as _, type UpsertContactFromSubmissionResponse as a, ObjectArrayComponentType as a$, StringTypeFormatEnumFormat as a0, ValidationFormat as a1, ProductType as a2, PriceType as a3, FieldType as a4, FormatEnumFormat as a5, StringComponentType as a6, NodeType as a7, WidthType as a8, PluginContainerDataAlignment as a9, CardStylesType as aA, CardStylesAlignment as aB, Layout as aC, AppType as aD, InitialExpandedItems as aE, Direction as aF, VerticalAlignment as aG, NullValue as aH, Scaling as aI, LayoutDataImagePosition as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, ImagePosition as aM, Alignment as aN, ImageFit as aO, NumberOfColumns as aP, FirstDayOfWeek as aQ, NumberComponentType as aR, BooleanComponentType as aS, ItemType as aT, PropertiesTypeEnum as aU, ArrayComponentType as aV, WixFileComponentType as aW, UploadFileFormat as aX, PaymentComponentType as aY, ComponentType as aZ, Type as a_, ButtonDataType as aa, LinkTarget as ab, TextAlignment as ac, LineStyle as ad, Width as ae, DividerDataAlignment as af, ViewMode as ag, LayoutType as ah, Orientation as ai, Crop as aj, ThumbnailsAlignment as ak, GIFType as al, Source as am, StylesPosition as an, MapType as ao, ViewRole as ap, VoteRole as aq, PollLayoutType as ar, PollLayoutDirection as as, BackgroundType as at, DecorationType as au, FontType as av, Position as aw, AspectRatio as ax, Resizing as ay, Placement as az, type CreateSubmissionApplicationErrors as b, type ArrayTypeArrayItemsItemsOneOf as b$, SchedulingComponentType as b0, Format as b1, InputType as b2, EmailInfoTag as b3, PhoneInfoTag as b4, Tag as b5, ConfirmationLevel as b6, ContactField as b7, DisplayFieldType as b8, OverrideEntityType as b9, type TagList as bA, type FormSubmissionStatusUpdatedEvent as bB, type RemovedSubmissionFromTrash as bC, type SubmissionContactMapped as bD, type MarketingSubscriptionDetails as bE, type SubmissionContactMappingSkipped as bF, type CreateCheckoutFromSubmissionRequest as bG, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bH, type Form as bI, type FormField as bJ, type FormFieldStringType as bK, type FormFieldStringTypeFormatOptionsOneOf as bL, type StringErrorMessages as bM, type StringTypeDateTimeConstraints as bN, type StringTypePhoneConstraints as bO, type StringTypeValidationMessages as bP, type FormFieldNumberType as bQ, type NumberErrorMessages as bR, type IntegerType as bS, type FormFieldBooleanType as bT, type BooleanErrorMessages as bU, type FormFieldArrayType as bV, type FormFieldObjectType as bW, type ObjectTypePropertiesType as bX, type ObjectTypePropertiesTypePropertiesTypeOneOf as bY, type ObjectErrorMessages as bZ, type ArrayTypeArrayItems as b_, Kind as ba, FormFieldContactInfoEmailInfoTag as bb, FormFieldContactInfoPhoneInfoTag as bc, AddressInfoTag as bd, SubscriptionInfoOptInLevel as be, FormFieldContactInfoContactField as bf, SpamFilterProtectionLevel as bg, RequiredIndicator as bh, RequiredIndicatorPlacement as bi, Target as bj, SubmitSuccessAction as bk, ChangeableProperty as bl, OverrideEntityTypeEnumOverrideEntityType as bm, Operator as bn, WebhookIdentityType as bo, IdentityType as bp, ErrorType as bq, SortOrder as br, Mode as bs, Status as bt, SubmissionErrorType as bu, type Submitter as bv, type SubmitterSubmitterOneOf as bw, type ExtendedFields as bx, type OrderDetails as by, type PublicTags as bz, type CreateSubmissionValidationErrors as c, type HeadingData as c$, type ArrayErrorMessages as c0, type PredefinedValidation as c1, type PredefinedValidationFormatOptionsOneOf as c2, type PaymentType as c3, type QuantityLimit as c4, type FixedPriceOptions as c5, type DynamicPriceOptions as c6, type Product as c7, type ProductPriceOptionsOneOf as c8, type MultilineAddressValidation as c9, type PluginContainerDataWidth as cA, type PluginContainerDataWidthDataOneOf as cB, type Spoiler as cC, type Height as cD, type Styles as cE, type Link as cF, type LinkDataOneOf as cG, type Rel as cH, type CodeBlockData as cI, type TextStyle as cJ, type DividerData as cK, type FileData as cL, type FileSource as cM, type FileSourceDataOneOf as cN, type PDFSettings as cO, type GalleryData as cP, type Media as cQ, type Image as cR, type Video as cS, type Item as cT, type ItemDataOneOf as cU, type GalleryOptions as cV, type GalleryOptionsLayout as cW, type ItemStyle as cX, type Thumbnails as cY, type GIFData as cZ, type GIF as c_, type FieldOverrides as ca, type FieldsOverrides as cb, type ObjectArrayType as cc, type NestedFormFieldOverrides as cd, type Validation as ce, type ValidationValidationOneOf as cf, type DataExtensionsDetails as cg, type NestedFormOverrides as ch, type Field as ci, type FieldFieldTypeOptionsOneOf as cj, type InputField as ck, type InputFieldInputTypeOptionsOneOf as cl, type StringType as cm, type StringTypeFormatOptionsOneOf as cn, type DateTimeConstraints as co, type PhoneConstraints as cp, type ValidationMessages as cq, type TextInput as cr, type RichContent as cs, type Node as ct, type NodeDataOneOf as cu, type NodeStyle as cv, type ButtonData as cw, type Border as cx, type Colors as cy, type PluginContainerData as cz, type UpdateSubmission as d, type DocumentStyle as d$, type HTMLData as d0, type HTMLDataDataOneOf as d1, type ImageData as d2, type StylesBorder as d3, type ImageDataStyles as d4, type LinkPreviewData as d5, type LinkPreviewDataStyles as d6, type MapData as d7, type MapSettings as d8, type ParagraphData as d9, type BookingData as dA, type EventData as dB, type ButtonStyles as dC, type ImageStyles as dD, type RibbonStyles as dE, type CardStyles as dF, type PricingData as dG, type VideoData as dH, type PlaybackOptions as dI, type EmbedData as dJ, type Oembed as dK, type CollapsibleListData as dL, type TableData as dM, type Dimensions as dN, type TableCellData as dO, type CellStyle as dP, type BorderColors as dQ, type ListValue as dR, type AudioData as dS, type OrderedListData as dT, type BulletedListData as dU, type BlockquoteData as dV, type CaptionData as dW, type LayoutData as dX, type BackgroundImage as dY, type LayoutCellData as dZ, type Metadata as d_, type PollData as da, type Permissions as db, type PollOption as dc, type Settings as dd, type PollLayout as de, type OptionLayout as df, type Gradient as dg, type Background as dh, type BackgroundBackgroundOneOf as di, type PollDesign as dj, type OptionDesign as dk, type Poll as dl, type PollDataLayout as dm, type Design as dn, type TextData as dp, type Decoration as dq, type DecorationDataOneOf as dr, type AnchorData as ds, type ColorData as dt, type LinkData as du, type MentionData as dv, type FontSizeData as dw, type SpoilerData as dx, type AppEmbedData as dy, type AppEmbedDataAppDataOneOf as dz, type UpdateSubmissionValidationErrors as e, type EmailInfo as e$, type TextNodeStyle as e0, type MediaItem as e1, type MediaItemMediaOneOf as e2, type MediaSettings as e3, type RadioGroup as e4, type RadioGroupOption as e5, type CustomOption as e6, type Dropdown as e7, type DropdownOption as e8, type DateTimeInput as e9, type ProductCheckboxGroupOption as eA, type DonationInput as eB, type DonationInputOption as eC, type PaymentInput as eD, type FixedPayment as eE, type MultilineAddress as eF, type AddressLine2 as eG, type DefaultCountryConfig as eH, type DefaultCountryConfigOptionsOneOf as eI, type FieldsSettings as eJ, type Repeater as eK, type FormLayout as eL, type BreakPoint as eM, type ItemLayout as eN, type ItemLayoutItemOneOf as eO, type Group as eP, type Margin as eQ, type Section as eR, type Appointment as eS, type AppointmentFormatInfoOneOf as eT, type Location as eU, type LocationLocationInfoOneOf as eV, type InPersonOptions as eW, type VideoConferenceOptions as eX, type PhoneOptions as eY, type FormFieldContactInfo as eZ, type FormFieldContactInfoAdditionalInfoOneOf as e_, type PhoneInput as ea, type DateInput as eb, type TimeInput as ec, type DatePicker as ed, type ServicesDropdown as ee, type ServiceOption as ef, type NumberType as eg, type NumberInput as eh, type RatingInput as ei, type BooleanType as ej, type Checkbox as ek, type ArrayType as el, type ObjectType as em, type PropertiesType as en, type PropertiesTypePropertiesTypeOptionsOneOf as eo, type ArrayItems as ep, type ArrayItemsItemTypeOptionsOneOf as eq, type CheckboxGroup as er, type Option as es, type Tags as et, type TagsOption as eu, type ServicesCheckboxGroup as ev, type FileType as ew, type FileUpload as ex, type Signature as ey, type ProductCheckboxGroup as ez, type ConfirmSubmissionResponse as f, type IsFormSubmittableRequest as f$, type PhoneInfo as f0, type AddressInfo as f1, type CustomFieldInfo as f2, type SubscriptionInfo as f3, type _String as f4, type _StringComponentTypeOptionsOneOf as f5, type _Number as f6, type _NumberComponentTypeOptionsOneOf as f7, type _Boolean as f8, type _BooleanComponentTypeOptionsOneOf as f9, type FormFieldContactInfoPhoneInfo as fA, type FormFieldContactInfoAddressInfo as fB, type FormFieldContactInfoCustomFieldInfo as fC, type FormFieldContactInfoSubscriptionInfo as fD, type NestedForm as fE, type LimitationRule as fF, type RequiredIndicatorProperties as fG, type SubmitSettings as fH, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fI, type ThankYouMessageOptions as fJ, type RedirectOptions as fK, type FieldGroup as fL, type Rule as fM, type RequiredOptions as fN, type HiddenOptions as fO, type AllowedValuesOptions as fP, type FieldOverride as fQ, type FieldOverridePropertyTypeOptionsOneOf as fR, type ConditionNode as fS, type ConditionNodeNodeOneOf as fT, type AndCondition as fU, type OrCondition as fV, type Condition as fW, type RuleFormOverride as fX, type RuleFormOverrideEntityTypeOptionsOneOf as fY, type CreateCheckoutFromSubmissionResponse as fZ, type Checkout as f_, type _Array as fa, type _ArrayComponentTypeOptionsOneOf as fb, type _Object as fc, type WixFile as fd, type WixFileComponentTypeOptionsOneOf as fe, type Payment as ff, type PaymentComponentTypeOptionsOneOf as fg, type Scheduling as fh, type SchedulingComponentTypeOptionsOneOf as fi, type Address as fj, type AddressComponentTypeOptionsOneOf as fk, type ObjectArray as fl, type ObjectArrayComponentTypeOptionsOneOf as fm, type DisplayField as fn, type DisplayFieldDisplayFieldTypeOptionsOneOf as fo, type RichContentOptions as fp, type PageNavigationOptions as fq, type Step as fr, type FormRule as fs, type FormOverride as ft, type FormProperties as fu, type PostSubmissionTriggers as fv, type UpsertContact as fw, type V4FormFieldContactInfo as fx, type V4FormFieldContactInfoAdditionalInfoOneOf as fy, type FormFieldContactInfoEmailInfo as fz, type BulkDeleteSubmissionResponse as g, type CountSubmissionsByFilterRequest as g$, type IsFormSubmittableResponse as g0, type DomainEvent as g1, type DomainEventBodyOneOf as g2, type EntityCreatedEvent as g3, type RestoreInfo as g4, type EntityUpdatedEvent as g5, type EntityDeletedEvent as g6, type ActionEvent as g7, type Empty as g8, type MessageEnvelope as g9, type DeleteSubmissionRequest as gA, type DeleteSubmissionResponse as gB, type BulkDeleteSubmissionRequest as gC, type BulkDeleteSubmissionResult as gD, type RestoreSubmissionFromTrashBinRequest as gE, type RemoveSubmissionFromTrashBinRequest as gF, type RemoveSubmissionFromTrashBinResponse as gG, type BulkRemoveSubmissionFromTrashBinRequest as gH, type BulkRemoveSubmissionFromTrashBinResult as gI, type ListDeletedSubmissionsRequest as gJ, type CursorPaging as gK, type CursorPagingMetadata as gL, type Cursors as gM, type GetDeletedSubmissionRequest as gN, type QuerySubmissionRequest as gO, type CursorQueryPagingMethodOneOf as gP, type Sorting as gQ, type SearchSubmissionsByNamespaceRequest as gR, type CursorSearch as gS, type CursorSearchPagingMethodOneOf as gT, type SearchDetails as gU, type SearchSubmissionsByNamespaceForExportRequest as gV, type SearchSubmissionsByNamespaceForExportResponse as gW, type QuerySubmissionsByNamespaceRequest as gX, type QuerySubmissionsByNamespaceResponse as gY, type QuerySubmissionsByNamespaceForExportRequest as gZ, type QuerySubmissionsByNamespaceForExportResponse as g_, type IdentificationData as ga, type IdentificationDataIdOneOf as gb, type UpsertContactFromSubmissionRequest as gc, type SubmitContactResponse as gd, type CreateSubmissionRequest as ge, type CreateSubmissionResponse as gf, type SubmissionValidationErrorsDetails as gg, type ValidationError as gh, type CreateSubmissionForMigrationRequest as gi, type CreateSubmissionForMigrationResponse as gj, type CreateSubmissionBySubmitterRequest as gk, type CreateSubmissionBySubmitterResponse as gl, type BulkCreateSubmissionBySubmitterRequest as gm, type BulkCreateSubmissionBySubmitterData as gn, type BulkCreateSubmissionBySubmitterResponse as go, type BulkSubmissionResult as gp, type ItemMetadata as gq, type ApplicationError as gr, type BulkActionMetadata as gs, type GetSubmissionRequest as gt, type GetSubmissionResponse as gu, type GetSubmissionByCheckoutIdRequest as gv, type GetSubmissionByCheckoutIdResponse as gw, type UpdateSubmissionRequest as gx, type UpdateSubmissionResponse as gy, type ConfirmSubmissionRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DecorationTypeWithLiterals as h$, type FormSubmissionsCount as h0, type CountSubmissionsRequest as h1, type CountDeletedSubmissionsRequest as h2, type FormDeletedSubmissionsCount as h3, type GetMediaUploadURLRequest as h4, type BulkMarkSubmissionsAsSeenRequest as h5, type GetSubmissionDownloadUrlRequest as h6, type SubmissionDocument as h7, type SubmissionDocumentDocumentOneOf as h8, type DocumentReady 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 DownloadSubmissionRequest as ha, type HeadersEntry as hb, type GetFormattedSubmissionRequest as hc, type FormattedSubmission as hd, type ListFormattedSubmissionsRequest as he, type ListFormattedSubmissionsResponse as hf, type FormattedFormSubmission as hg, type UpdateExtendedFieldsRequest as hh, type BulkUpdateFormSubmissionTagsRequest as hi, type BulkUpdateFormSubmissionTagsResult as hj, type BulkUpdateFormSubmissionTagsByFilterRequest as hk, type ValidateFormSubmissionRequest as hl, type FieldViolation as hm, type FieldViolationErrorDataOneOf as hn, type SubmissionValidationErrors as ho, type SubmissionValidationError as hp, type SubmissionValidationErrorErrorMessageOneOf as hq, type BaseEventMetadata as hr, type EventMetadata as hs, type FormSubmissionSearchSpec as ht, type SubmissionsQueryResult 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, bulkUpdateFormSubmissionTags as jx, bulkUpdateFormSubmissionTagsByFilter as jy, validateFormSubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|