@wix/auto_sdk_forms_submissions 1.0.68 → 1.0.70
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-Bcjvsrv_.d.ts} +577 -1207
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +102 -244
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +102 -244
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +578 -1208
- package/build/cjs/meta.js +102 -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-Bcjvsrv_.d.mts} +577 -1207
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +102 -230
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +102 -230
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +578 -1208
- package/build/es/meta.mjs +102 -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-DJs1f2hq.d.ts} +577 -1207
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +102 -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 +102 -244
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +578 -1208
- package/build/internal/cjs/meta.js +102 -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-DJs1f2hq.d.mts} +577 -1207
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +102 -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 +102 -230
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +578 -1208
- package/build/internal/es/meta.mjs +102 -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.
|
|
@@ -2171,6 +2306,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
2171
2306
|
superscriptData?: boolean | null;
|
|
2172
2307
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2173
2308
|
subscriptData?: boolean | null;
|
|
2309
|
+
/** Data for a font family decoration. */
|
|
2310
|
+
fontFamilyData?: FontFamilyData;
|
|
2174
2311
|
/** The type of decoration to apply. */
|
|
2175
2312
|
type?: DecorationTypeWithLiterals;
|
|
2176
2313
|
}
|
|
@@ -2200,6 +2337,8 @@ interface DecorationDataOneOf {
|
|
|
2200
2337
|
superscriptData?: boolean | null;
|
|
2201
2338
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2202
2339
|
subscriptData?: boolean | null;
|
|
2340
|
+
/** Data for a font family decoration. */
|
|
2341
|
+
fontFamilyData?: FontFamilyData;
|
|
2203
2342
|
}
|
|
2204
2343
|
declare enum DecorationType {
|
|
2205
2344
|
BOLD = "BOLD",
|
|
@@ -2214,10 +2353,11 @@ declare enum DecorationType {
|
|
|
2214
2353
|
EXTERNAL = "EXTERNAL",
|
|
2215
2354
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2216
2355
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
2217
|
-
SUBSCRIPT = "SUBSCRIPT"
|
|
2356
|
+
SUBSCRIPT = "SUBSCRIPT",
|
|
2357
|
+
FONT_FAMILY = "FONT_FAMILY"
|
|
2218
2358
|
}
|
|
2219
2359
|
/** @enumType */
|
|
2220
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
|
|
2360
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
2221
2361
|
interface AnchorData {
|
|
2222
2362
|
/** The target node's ID. */
|
|
2223
2363
|
anchor?: string;
|
|
@@ -2256,6 +2396,10 @@ interface SpoilerData {
|
|
|
2256
2396
|
/** Spoiler ID. */
|
|
2257
2397
|
id?: string | null;
|
|
2258
2398
|
}
|
|
2399
|
+
interface FontFamilyData {
|
|
2400
|
+
/** @maxLength 1000 */
|
|
2401
|
+
value?: string | null;
|
|
2402
|
+
}
|
|
2259
2403
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
2260
2404
|
/** Data for embedded Wix Bookings content. */
|
|
2261
2405
|
bookingData?: BookingData;
|
|
@@ -2640,6 +2784,13 @@ interface TableData {
|
|
|
2640
2784
|
rowHeader?: boolean | null;
|
|
2641
2785
|
/** Sets whether the table's first column is a header. Defaults to `false`. */
|
|
2642
2786
|
columnHeader?: boolean | null;
|
|
2787
|
+
/** The spacing between cells in pixels. Defaults to `0`. */
|
|
2788
|
+
cellSpacing?: number | null;
|
|
2789
|
+
/**
|
|
2790
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left.
|
|
2791
|
+
* @maxSize 4
|
|
2792
|
+
*/
|
|
2793
|
+
cellPadding?: number[];
|
|
2643
2794
|
}
|
|
2644
2795
|
interface Dimensions {
|
|
2645
2796
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2654,6 +2805,12 @@ interface TableCellData {
|
|
|
2654
2805
|
cellStyle?: CellStyle;
|
|
2655
2806
|
/** The cell's border colors. */
|
|
2656
2807
|
borderColors?: BorderColors;
|
|
2808
|
+
/** Defines how many columns the cell spans. Default: 1. */
|
|
2809
|
+
colspan?: number | null;
|
|
2810
|
+
/** Defines how many rows the cell spans. Default: 1. */
|
|
2811
|
+
rowspan?: number | null;
|
|
2812
|
+
/** The cell's border widths. */
|
|
2813
|
+
borderWidths?: BorderWidths;
|
|
2657
2814
|
}
|
|
2658
2815
|
declare enum VerticalAlignment {
|
|
2659
2816
|
/** Top alignment */
|
|
@@ -2696,6 +2853,16 @@ interface BorderColors {
|
|
|
2696
2853
|
*/
|
|
2697
2854
|
bottom?: string | null;
|
|
2698
2855
|
}
|
|
2856
|
+
interface BorderWidths {
|
|
2857
|
+
/** Left border width in pixels. */
|
|
2858
|
+
left?: number | null;
|
|
2859
|
+
/** Right border width in pixels. */
|
|
2860
|
+
right?: number | null;
|
|
2861
|
+
/** Top border width in pixels. */
|
|
2862
|
+
top?: number | null;
|
|
2863
|
+
/** Bottom border width in pixels. */
|
|
2864
|
+
bottom?: number | null;
|
|
2865
|
+
}
|
|
2699
2866
|
/**
|
|
2700
2867
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
2701
2868
|
* `Value` type union.
|
|
@@ -2795,6 +2962,8 @@ interface LayoutData {
|
|
|
2795
2962
|
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
2796
2963
|
/** Size in pixels when responsiveness_behaviour applies */
|
|
2797
2964
|
responsivenessBreakpoint?: number | null;
|
|
2965
|
+
/** Styling for the layout's container. */
|
|
2966
|
+
containerData?: PluginContainerData;
|
|
2798
2967
|
}
|
|
2799
2968
|
declare enum Scaling {
|
|
2800
2969
|
/** Auto image scaling */
|
|
@@ -3322,12 +3491,12 @@ interface ServiceOption {
|
|
|
3322
3491
|
*/
|
|
3323
3492
|
value?: string | null;
|
|
3324
3493
|
}
|
|
3325
|
-
interface
|
|
3326
|
-
/**
|
|
3494
|
+
interface NumberType {
|
|
3495
|
+
/** The maximum value of the number. Inclusive. */
|
|
3327
3496
|
maximum?: number | null;
|
|
3328
|
-
/**
|
|
3497
|
+
/** The minimum value of the number. Inclusive. */
|
|
3329
3498
|
minimum?: number | null;
|
|
3330
|
-
/**
|
|
3499
|
+
/** A number that the value must be a multiple of. */
|
|
3331
3500
|
multipleOf?: number | null;
|
|
3332
3501
|
/**
|
|
3333
3502
|
* List of allowed values.
|
|
@@ -3335,13 +3504,16 @@ interface InputFieldNumberType {
|
|
|
3335
3504
|
*/
|
|
3336
3505
|
enum?: number[] | null;
|
|
3337
3506
|
}
|
|
3338
|
-
declare enum
|
|
3507
|
+
declare enum NumberComponentType {
|
|
3508
|
+
/** Unknown component type. */
|
|
3339
3509
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
3510
|
+
/** Numeric input component. */
|
|
3340
3511
|
NUMBER_INPUT = "NUMBER_INPUT",
|
|
3512
|
+
/** Rating input component. */
|
|
3341
3513
|
RATING_INPUT = "RATING_INPUT"
|
|
3342
3514
|
}
|
|
3343
3515
|
/** @enumType */
|
|
3344
|
-
type
|
|
3516
|
+
type NumberComponentTypeWithLiterals = NumberComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'NUMBER_INPUT' | 'RATING_INPUT';
|
|
3345
3517
|
interface NumberInput {
|
|
3346
3518
|
/**
|
|
3347
3519
|
* Field label.
|
|
@@ -3393,19 +3565,21 @@ interface RatingInput {
|
|
|
3393
3565
|
/** Configuration for the media content. */
|
|
3394
3566
|
mediaSettings?: MediaSettings;
|
|
3395
3567
|
}
|
|
3396
|
-
interface
|
|
3568
|
+
interface BooleanType {
|
|
3397
3569
|
/**
|
|
3398
3570
|
* List of allowed values.
|
|
3399
3571
|
* @maxSize 2
|
|
3400
3572
|
*/
|
|
3401
3573
|
enum?: boolean[];
|
|
3402
3574
|
}
|
|
3403
|
-
declare enum
|
|
3575
|
+
declare enum BooleanComponentType {
|
|
3576
|
+
/** Unknown component type. */
|
|
3404
3577
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
3578
|
+
/** Checkbox component. */
|
|
3405
3579
|
CHECKBOX = "CHECKBOX"
|
|
3406
3580
|
}
|
|
3407
3581
|
/** @enumType */
|
|
3408
|
-
type
|
|
3582
|
+
type BooleanComponentTypeWithLiterals = BooleanComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX';
|
|
3409
3583
|
interface Checkbox {
|
|
3410
3584
|
/** Field label. */
|
|
3411
3585
|
label?: RichContent;
|
|
@@ -3416,127 +3590,111 @@ interface Checkbox {
|
|
|
3416
3590
|
*/
|
|
3417
3591
|
checked?: boolean;
|
|
3418
3592
|
}
|
|
3419
|
-
interface
|
|
3593
|
+
interface ArrayType {
|
|
3420
3594
|
/**
|
|
3421
|
-
* Maximum
|
|
3595
|
+
* Maximum number of elements allowed in the array.
|
|
3422
3596
|
* @max 1000
|
|
3423
3597
|
*/
|
|
3424
3598
|
maxItems?: number | null;
|
|
3425
3599
|
/**
|
|
3426
|
-
* Minimum
|
|
3600
|
+
* Minimum number of elements required in the array.
|
|
3427
3601
|
* @max 1000
|
|
3428
3602
|
*/
|
|
3429
3603
|
minItems?: number | null;
|
|
3430
|
-
/** Type of items allowed in array. */
|
|
3431
|
-
items?:
|
|
3604
|
+
/** Type of items allowed in the array. */
|
|
3605
|
+
items?: ArrayItems;
|
|
3432
3606
|
}
|
|
3433
|
-
declare enum
|
|
3607
|
+
declare enum ItemType {
|
|
3608
|
+
/** Unknown item type. */
|
|
3434
3609
|
UNKNOWN_ITEM_TYPE = "UNKNOWN_ITEM_TYPE",
|
|
3610
|
+
/** Array can contain string values. */
|
|
3435
3611
|
STRING = "STRING",
|
|
3612
|
+
/** Array can contain numeric values. */
|
|
3436
3613
|
NUMBER = "NUMBER",
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
OBJECT = "OBJECT"
|
|
3614
|
+
/** Array can contain boolean values. */
|
|
3615
|
+
BOOLEAN = "BOOLEAN"
|
|
3440
3616
|
}
|
|
3441
3617
|
/** @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>;
|
|
3618
|
+
type ItemTypeWithLiterals = ItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN';
|
|
3619
|
+
interface ObjectType {
|
|
3620
|
+
/** Definition of object properties and their validation rules. */
|
|
3621
|
+
properties?: Record<string, PropertiesType>;
|
|
3459
3622
|
}
|
|
3460
|
-
declare enum
|
|
3461
|
-
|
|
3623
|
+
declare enum PropertiesTypeEnum {
|
|
3624
|
+
/** Unknown property type. */
|
|
3625
|
+
UNKNOWN_PROPERTY_TYPE = "UNKNOWN_PROPERTY_TYPE",
|
|
3626
|
+
/** Property must contain a string value. */
|
|
3462
3627
|
STRING = "STRING",
|
|
3628
|
+
/** Property must contain a numeric value. */
|
|
3463
3629
|
NUMBER = "NUMBER",
|
|
3630
|
+
/** Property must contain a boolean value. */
|
|
3464
3631
|
BOOLEAN = "BOOLEAN",
|
|
3465
|
-
|
|
3632
|
+
/** Property must contain an array. */
|
|
3466
3633
|
ARRAY = "ARRAY"
|
|
3467
3634
|
}
|
|
3468
3635
|
/** @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;
|
|
3636
|
+
type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | 'UNKNOWN_PROPERTY_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY';
|
|
3637
|
+
interface PropertiesType extends PropertiesTypePropertiesTypeOptionsOneOf {
|
|
3638
|
+
/** Validation rules for string properties. */
|
|
3639
|
+
stringOptions?: StringType;
|
|
3640
|
+
/** Validation rules for numeric properties. */
|
|
3641
|
+
numberOptions?: NumberType;
|
|
3642
|
+
/** Validation rules for boolean properties. */
|
|
3643
|
+
booleanOptions?: BooleanType;
|
|
3644
|
+
/** Validation rules for array properties. */
|
|
3645
|
+
arrayOptions?: ArrayType;
|
|
3481
3646
|
/**
|
|
3482
|
-
*
|
|
3647
|
+
* Data type of the object property.
|
|
3483
3648
|
* @readonly
|
|
3484
3649
|
*/
|
|
3485
|
-
propertiesType?:
|
|
3486
|
-
/** Whether the property is required. */
|
|
3650
|
+
propertiesType?: PropertiesTypeEnumWithLiterals;
|
|
3651
|
+
/** Whether the object property is required for validation. */
|
|
3487
3652
|
required?: boolean;
|
|
3488
3653
|
}
|
|
3489
3654
|
/** @oneof */
|
|
3490
|
-
interface
|
|
3491
|
-
/**
|
|
3492
|
-
stringOptions?:
|
|
3493
|
-
/**
|
|
3494
|
-
numberOptions?:
|
|
3495
|
-
/**
|
|
3496
|
-
booleanOptions?:
|
|
3497
|
-
/**
|
|
3498
|
-
|
|
3499
|
-
/** Array type validation for property. */
|
|
3500
|
-
arrayOptions?: InputFieldArrayType;
|
|
3655
|
+
interface PropertiesTypePropertiesTypeOptionsOneOf {
|
|
3656
|
+
/** Validation rules for string properties. */
|
|
3657
|
+
stringOptions?: StringType;
|
|
3658
|
+
/** Validation rules for numeric properties. */
|
|
3659
|
+
numberOptions?: NumberType;
|
|
3660
|
+
/** Validation rules for boolean properties. */
|
|
3661
|
+
booleanOptions?: BooleanType;
|
|
3662
|
+
/** Validation rules for array properties. */
|
|
3663
|
+
arrayOptions?: ArrayType;
|
|
3501
3664
|
}
|
|
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;
|
|
3665
|
+
interface ArrayItems extends ArrayItemsItemTypeOptionsOneOf {
|
|
3666
|
+
/** Validation rules for string array elements. */
|
|
3667
|
+
stringOptions?: StringType;
|
|
3668
|
+
/** Validation rules for numeric array elements. */
|
|
3669
|
+
numberOptions?: NumberType;
|
|
3670
|
+
/** Validation rules for boolean array elements. */
|
|
3671
|
+
booleanOptions?: BooleanType;
|
|
3513
3672
|
/**
|
|
3514
|
-
*
|
|
3673
|
+
* Allowed item type.
|
|
3515
3674
|
* @readonly
|
|
3516
3675
|
*/
|
|
3517
|
-
itemType?:
|
|
3676
|
+
itemType?: ItemTypeWithLiterals;
|
|
3518
3677
|
}
|
|
3519
3678
|
/** @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;
|
|
3679
|
+
interface ArrayItemsItemTypeOptionsOneOf {
|
|
3680
|
+
/** Validation rules for string array elements. */
|
|
3681
|
+
stringOptions?: StringType;
|
|
3682
|
+
/** Validation rules for numeric array elements. */
|
|
3683
|
+
numberOptions?: NumberType;
|
|
3684
|
+
/** Validation rules for boolean array elements. */
|
|
3685
|
+
booleanOptions?: BooleanType;
|
|
3531
3686
|
}
|
|
3532
|
-
declare enum
|
|
3687
|
+
declare enum ArrayComponentType {
|
|
3688
|
+
/** Unknown component type. */
|
|
3533
3689
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
3690
|
+
/** Checkbox group component. */
|
|
3534
3691
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
3692
|
+
/** Tags component. */
|
|
3535
3693
|
TAGS = "TAGS",
|
|
3536
3694
|
SERVICES_CHECKBOX_GROUP = "SERVICES_CHECKBOX_GROUP"
|
|
3537
3695
|
}
|
|
3538
3696
|
/** @enumType */
|
|
3539
|
-
type
|
|
3697
|
+
type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
|
|
3540
3698
|
interface CheckboxGroup {
|
|
3541
3699
|
/**
|
|
3542
3700
|
* Field label.
|
|
@@ -3665,13 +3823,16 @@ interface ServicesCheckboxGroup {
|
|
|
3665
3823
|
*/
|
|
3666
3824
|
numberOfColumns?: NumberOfColumnsWithLiterals;
|
|
3667
3825
|
}
|
|
3668
|
-
declare enum
|
|
3826
|
+
declare enum WixFileComponentType {
|
|
3827
|
+
/** Unknown component type. */
|
|
3669
3828
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
3829
|
+
/** File upload component. */
|
|
3670
3830
|
FILE_UPLOAD = "FILE_UPLOAD",
|
|
3831
|
+
/** Signature component. */
|
|
3671
3832
|
SIGNATURE = "SIGNATURE"
|
|
3672
3833
|
}
|
|
3673
3834
|
/** @enumType */
|
|
3674
|
-
type
|
|
3835
|
+
type WixFileComponentTypeWithLiterals = WixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
|
|
3675
3836
|
interface FileType {
|
|
3676
3837
|
/**
|
|
3677
3838
|
* Maximum number of files that can be uploaded.
|
|
@@ -3751,15 +3912,20 @@ interface Signature {
|
|
|
3751
3912
|
/** Configuration for the media item. */
|
|
3752
3913
|
mediaSettings?: MediaSettings;
|
|
3753
3914
|
}
|
|
3754
|
-
declare enum
|
|
3915
|
+
declare enum PaymentComponentType {
|
|
3916
|
+
/** Unknown component type. */
|
|
3755
3917
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
3918
|
+
/** Checkbox group component. */
|
|
3756
3919
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
3920
|
+
/** Donation input component. */
|
|
3757
3921
|
DONATION_INPUT = "DONATION_INPUT",
|
|
3922
|
+
/** Payment input component. */
|
|
3758
3923
|
PAYMENT_INPUT = "PAYMENT_INPUT",
|
|
3924
|
+
/** Fixed payment component. */
|
|
3759
3925
|
FIXED_PAYMENT = "FIXED_PAYMENT"
|
|
3760
3926
|
}
|
|
3761
3927
|
/** @enumType */
|
|
3762
|
-
type
|
|
3928
|
+
type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
|
|
3763
3929
|
interface ProductCheckboxGroup {
|
|
3764
3930
|
/**
|
|
3765
3931
|
* Field label.
|
|
@@ -3895,128 +4061,14 @@ interface FixedPayment {
|
|
|
3895
4061
|
/** Configuration for the media content. */
|
|
3896
4062
|
mediaSettings?: MediaSettings;
|
|
3897
4063
|
}
|
|
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 {
|
|
4064
|
+
declare enum ComponentType {
|
|
4065
|
+
/** Unknown component type. */
|
|
4015
4066
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
4067
|
+
/** Multiline address component. */
|
|
4016
4068
|
MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
|
|
4017
4069
|
}
|
|
4018
4070
|
/** @enumType */
|
|
4019
|
-
type
|
|
4071
|
+
type ComponentTypeWithLiterals = ComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
|
|
4020
4072
|
interface MultilineAddress {
|
|
4021
4073
|
/**
|
|
4022
4074
|
* Field label.
|
|
@@ -4060,933 +4112,25 @@ interface AddressLine2 {
|
|
|
4060
4112
|
}
|
|
4061
4113
|
interface DefaultCountryConfig extends DefaultCountryConfigOptionsOneOf {
|
|
4062
4114
|
/**
|
|
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"
|
|
4115
|
+
* Country code for the pre-selected default country. Two-letter country code in ISO-3166 alpha-2 format.
|
|
4116
|
+
* @format COUNTRY
|
|
4117
|
+
*/
|
|
4118
|
+
countryOptions?: string;
|
|
4119
|
+
/** Default country type. */
|
|
4120
|
+
type?: TypeWithLiterals;
|
|
4979
4121
|
}
|
|
4980
|
-
/** @
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4122
|
+
/** @oneof */
|
|
4123
|
+
interface DefaultCountryConfigOptionsOneOf {
|
|
4124
|
+
/**
|
|
4125
|
+
* Country code for the pre-selected default country. Two-letter country code in ISO-3166 alpha-2 format.
|
|
4126
|
+
* @format COUNTRY
|
|
4127
|
+
*/
|
|
4128
|
+
countryOptions?: string;
|
|
4129
|
+
}
|
|
4130
|
+
interface FieldsSettings {
|
|
4131
|
+
/** Configuration for the address line 2 field. */
|
|
4132
|
+
addressLine2?: AddressLine2;
|
|
4987
4133
|
}
|
|
4988
|
-
/** @enumType */
|
|
4989
|
-
type ComponentTypeWithLiterals = ComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
|
|
4990
4134
|
declare enum ObjectArrayComponentType {
|
|
4991
4135
|
/** Unknown component type. */
|
|
4992
4136
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -5112,6 +4256,116 @@ declare enum SchedulingComponentType {
|
|
|
5112
4256
|
}
|
|
5113
4257
|
/** @enumType */
|
|
5114
4258
|
type SchedulingComponentTypeWithLiterals = SchedulingComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'APPOINTMENT';
|
|
4259
|
+
interface Appointment extends AppointmentFormatInfoOneOf {
|
|
4260
|
+
/** Configuration for in-person appointments. */
|
|
4261
|
+
inPersonOptions?: InPersonOptions;
|
|
4262
|
+
/** Configuration for video conference appointments. */
|
|
4263
|
+
videoConferenceOptions?: VideoConferenceOptions;
|
|
4264
|
+
/** Configuration for phone appointments. */
|
|
4265
|
+
phoneOptions?: PhoneOptions;
|
|
4266
|
+
/**
|
|
4267
|
+
* Field label.
|
|
4268
|
+
* @maxLength 255
|
|
4269
|
+
*/
|
|
4270
|
+
label?: string | null;
|
|
4271
|
+
/**
|
|
4272
|
+
* Appointment name.
|
|
4273
|
+
* @minLength 1
|
|
4274
|
+
* @maxLength 400
|
|
4275
|
+
*/
|
|
4276
|
+
name?: string | null;
|
|
4277
|
+
/**
|
|
4278
|
+
* Duration of the appointment in minutes.
|
|
4279
|
+
* @min 1
|
|
4280
|
+
* @max 44639
|
|
4281
|
+
*/
|
|
4282
|
+
durationInMinutes?: number | null;
|
|
4283
|
+
/** Whether appointments require manual approval before confirmation. */
|
|
4284
|
+
manualApprovalRequired?: boolean | null;
|
|
4285
|
+
/**
|
|
4286
|
+
* IDs of staff members who provide this service.
|
|
4287
|
+
* @maxSize 220
|
|
4288
|
+
* @format GUID
|
|
4289
|
+
*/
|
|
4290
|
+
staffIds?: string[] | null;
|
|
4291
|
+
/** Appointment format. */
|
|
4292
|
+
format?: FormatWithLiterals;
|
|
4293
|
+
/** Additional description or instructions for the field. */
|
|
4294
|
+
description?: RichContent;
|
|
4295
|
+
/**
|
|
4296
|
+
* Whether to display the field label.
|
|
4297
|
+
*
|
|
4298
|
+
* Default: `true`
|
|
4299
|
+
*/
|
|
4300
|
+
showLabel?: boolean | null;
|
|
4301
|
+
}
|
|
4302
|
+
/** @oneof */
|
|
4303
|
+
interface AppointmentFormatInfoOneOf {
|
|
4304
|
+
/** Configuration for in-person appointments. */
|
|
4305
|
+
inPersonOptions?: InPersonOptions;
|
|
4306
|
+
/** Configuration for video conference appointments. */
|
|
4307
|
+
videoConferenceOptions?: VideoConferenceOptions;
|
|
4308
|
+
/** Configuration for phone appointments. */
|
|
4309
|
+
phoneOptions?: PhoneOptions;
|
|
4310
|
+
}
|
|
4311
|
+
interface Location extends LocationLocationInfoOneOf {
|
|
4312
|
+
/**
|
|
4313
|
+
* Custom address specified as a text string.
|
|
4314
|
+
* @maxLength 512
|
|
4315
|
+
*/
|
|
4316
|
+
customAddress?: string | null;
|
|
4317
|
+
/**
|
|
4318
|
+
* ID of a predefined business [location](https://dev.wix.com/docs/rest/crm/members-contacts/locations/locations/introduction).
|
|
4319
|
+
* @format GUID
|
|
4320
|
+
*/
|
|
4321
|
+
businessLocationId?: string | null;
|
|
4322
|
+
}
|
|
4323
|
+
/** @oneof */
|
|
4324
|
+
interface LocationLocationInfoOneOf {
|
|
4325
|
+
/**
|
|
4326
|
+
* Custom address specified as a text string.
|
|
4327
|
+
* @maxLength 512
|
|
4328
|
+
*/
|
|
4329
|
+
customAddress?: string | null;
|
|
4330
|
+
/**
|
|
4331
|
+
* ID of a predefined business [location](https://dev.wix.com/docs/rest/crm/members-contacts/locations/locations/introduction).
|
|
4332
|
+
* @format GUID
|
|
4333
|
+
*/
|
|
4334
|
+
businessLocationId?: string | null;
|
|
4335
|
+
}
|
|
4336
|
+
declare enum Format {
|
|
4337
|
+
UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
|
|
4338
|
+
/** Face-to-face meeting at a physical location. */
|
|
4339
|
+
IN_PERSON = "IN_PERSON",
|
|
4340
|
+
/** Online meeting via video conference. */
|
|
4341
|
+
VIDEO_CONFERENCE = "VIDEO_CONFERENCE",
|
|
4342
|
+
/** Appointment conducted over the phone. */
|
|
4343
|
+
PHONE = "PHONE"
|
|
4344
|
+
}
|
|
4345
|
+
/** @enumType */
|
|
4346
|
+
type FormatWithLiterals = Format | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
|
|
4347
|
+
interface InPersonOptions {
|
|
4348
|
+
/**
|
|
4349
|
+
* Physical locations where the appointment can take place.
|
|
4350
|
+
* @minSize 1
|
|
4351
|
+
* @maxSize 1
|
|
4352
|
+
*/
|
|
4353
|
+
locations?: Location[];
|
|
4354
|
+
}
|
|
4355
|
+
interface VideoConferenceOptions {
|
|
4356
|
+
/**
|
|
4357
|
+
* Description or instructions for video conference appointments.
|
|
4358
|
+
* @maxLength 512
|
|
4359
|
+
*/
|
|
4360
|
+
description?: string | null;
|
|
4361
|
+
}
|
|
4362
|
+
interface PhoneOptions {
|
|
4363
|
+
/**
|
|
4364
|
+
* Description or instructions for phone appointments.
|
|
4365
|
+
* @maxLength 512
|
|
4366
|
+
*/
|
|
4367
|
+
description?: string | null;
|
|
4368
|
+
}
|
|
5115
4369
|
declare enum InputType {
|
|
5116
4370
|
/** Unknown input type. */
|
|
5117
4371
|
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
@@ -5457,22 +4711,22 @@ interface ObjectArrayComponentTypeOptionsOneOf {
|
|
|
5457
4711
|
/** Repeater component settings. */
|
|
5458
4712
|
repeaterOptions?: Repeater;
|
|
5459
4713
|
}
|
|
5460
|
-
interface
|
|
4714
|
+
interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {
|
|
5461
4715
|
/** Configuration for rich content display fields. */
|
|
5462
4716
|
richContentOptions?: RichContentOptions;
|
|
5463
4717
|
/** Configuration for page navigation display fields such as navigation or submit buttons. */
|
|
5464
4718
|
pageNavigationOptions?: PageNavigationOptions;
|
|
5465
4719
|
/** Type of display field that determines its appearance and behavior. */
|
|
5466
|
-
displayFieldType?:
|
|
4720
|
+
displayFieldType?: DisplayFieldTypeWithLiterals;
|
|
5467
4721
|
}
|
|
5468
4722
|
/** @oneof */
|
|
5469
|
-
interface
|
|
4723
|
+
interface DisplayFieldDisplayFieldTypeOptionsOneOf {
|
|
5470
4724
|
/** Configuration for rich content display fields. */
|
|
5471
4725
|
richContentOptions?: RichContentOptions;
|
|
5472
4726
|
/** Configuration for page navigation display fields such as navigation or submit buttons. */
|
|
5473
4727
|
pageNavigationOptions?: PageNavigationOptions;
|
|
5474
4728
|
}
|
|
5475
|
-
declare enum
|
|
4729
|
+
declare enum DisplayFieldType {
|
|
5476
4730
|
/** Unknown field type. */
|
|
5477
4731
|
UNKNOWN_FIELD_TYPE = "UNKNOWN_FIELD_TYPE",
|
|
5478
4732
|
/** Rich content display field. */
|
|
@@ -5483,7 +4737,7 @@ declare enum DisplayFieldDisplayFieldType {
|
|
|
5483
4737
|
LOGIN_BAR = "LOGIN_BAR"
|
|
5484
4738
|
}
|
|
5485
4739
|
/** @enumType */
|
|
5486
|
-
type
|
|
4740
|
+
type DisplayFieldTypeWithLiterals = DisplayFieldType | 'UNKNOWN_FIELD_TYPE' | 'RICH_CONTENT' | 'PAGE_NAVIGATION' | 'LOGIN_BAR';
|
|
5487
4741
|
interface RichContentOptions {
|
|
5488
4742
|
/** Rich content to display in the field. */
|
|
5489
4743
|
richContent?: RichContent;
|
|
@@ -5629,6 +4883,122 @@ interface UpsertContact {
|
|
|
5629
4883
|
*/
|
|
5630
4884
|
labels?: string[];
|
|
5631
4885
|
}
|
|
4886
|
+
interface V4FormFieldContactInfo extends V4FormFieldContactInfoAdditionalInfoOneOf {
|
|
4887
|
+
/** Email info. */
|
|
4888
|
+
emailInfo?: FormFieldContactInfoEmailInfo;
|
|
4889
|
+
/** Phone info. */
|
|
4890
|
+
phoneInfo?: FormFieldContactInfoPhoneInfo;
|
|
4891
|
+
/** Address info. */
|
|
4892
|
+
addressInfo?: FormFieldContactInfoAddressInfo;
|
|
4893
|
+
/** Custom field info. */
|
|
4894
|
+
customFieldInfo?: FormFieldContactInfoCustomFieldInfo;
|
|
4895
|
+
/** Subscription info. */
|
|
4896
|
+
subscriptionInfo?: FormFieldContactInfoSubscriptionInfo;
|
|
4897
|
+
/** The contact field that the form field maps to. */
|
|
4898
|
+
contactField?: FormFieldContactInfoContactFieldWithLiterals;
|
|
4899
|
+
}
|
|
4900
|
+
/** @oneof */
|
|
4901
|
+
interface V4FormFieldContactInfoAdditionalInfoOneOf {
|
|
4902
|
+
/** Email info. */
|
|
4903
|
+
emailInfo?: FormFieldContactInfoEmailInfo;
|
|
4904
|
+
/** Phone info. */
|
|
4905
|
+
phoneInfo?: FormFieldContactInfoPhoneInfo;
|
|
4906
|
+
/** Address info. */
|
|
4907
|
+
addressInfo?: FormFieldContactInfoAddressInfo;
|
|
4908
|
+
/** Custom field info. */
|
|
4909
|
+
customFieldInfo?: FormFieldContactInfoCustomFieldInfo;
|
|
4910
|
+
/** Subscription info. */
|
|
4911
|
+
subscriptionInfo?: FormFieldContactInfoSubscriptionInfo;
|
|
4912
|
+
}
|
|
4913
|
+
declare enum FormFieldContactInfoEmailInfoTag {
|
|
4914
|
+
/** Email without a specific tag. */
|
|
4915
|
+
UNTAGGED = "UNTAGGED",
|
|
4916
|
+
/** Primary email address for the contact. */
|
|
4917
|
+
MAIN = "MAIN"
|
|
4918
|
+
}
|
|
4919
|
+
/** @enumType */
|
|
4920
|
+
type FormFieldContactInfoEmailInfoTagWithLiterals = FormFieldContactInfoEmailInfoTag | 'UNTAGGED' | 'MAIN';
|
|
4921
|
+
declare enum FormFieldContactInfoPhoneInfoTag {
|
|
4922
|
+
/** Phone number without a specific tag. */
|
|
4923
|
+
UNTAGGED = "UNTAGGED",
|
|
4924
|
+
/** Primary phone number for the contact. */
|
|
4925
|
+
MAIN = "MAIN"
|
|
4926
|
+
}
|
|
4927
|
+
/** @enumType */
|
|
4928
|
+
type FormFieldContactInfoPhoneInfoTagWithLiterals = FormFieldContactInfoPhoneInfoTag | 'UNTAGGED' | 'MAIN';
|
|
4929
|
+
declare enum AddressInfoTag {
|
|
4930
|
+
/** Address without a specific tag. */
|
|
4931
|
+
UNTAGGED = "UNTAGGED",
|
|
4932
|
+
/** Home address for the contact. */
|
|
4933
|
+
HOME = "HOME"
|
|
4934
|
+
}
|
|
4935
|
+
/** @enumType */
|
|
4936
|
+
type AddressInfoTagWithLiterals = AddressInfoTag | 'UNTAGGED' | 'HOME';
|
|
4937
|
+
declare enum SubscriptionInfoOptInLevel {
|
|
4938
|
+
/** Unknown opt-in level. */
|
|
4939
|
+
UNKNOWN = "UNKNOWN",
|
|
4940
|
+
/** Single confirmation opt-in. The contact is subscribed immediately. */
|
|
4941
|
+
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
4942
|
+
/** Double confirmation opt-in. The contact must confirm their subscription via email. */
|
|
4943
|
+
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
4944
|
+
}
|
|
4945
|
+
/** @enumType */
|
|
4946
|
+
type SubscriptionInfoOptInLevelWithLiterals = SubscriptionInfoOptInLevel | 'UNKNOWN' | 'SINGLE_CONFIRMATION' | 'DOUBLE_CONFIRMATION';
|
|
4947
|
+
declare enum FormFieldContactInfoContactField {
|
|
4948
|
+
/** Unknown contact field. */
|
|
4949
|
+
UNDEFINED = "UNDEFINED",
|
|
4950
|
+
/** First name. */
|
|
4951
|
+
FIRST_NAME = "FIRST_NAME",
|
|
4952
|
+
/** CLast name. */
|
|
4953
|
+
LAST_NAME = "LAST_NAME",
|
|
4954
|
+
/** Company name. */
|
|
4955
|
+
COMPANY = "COMPANY",
|
|
4956
|
+
/** Job position or title. */
|
|
4957
|
+
POSITION = "POSITION",
|
|
4958
|
+
/** Email address. */
|
|
4959
|
+
EMAIL = "EMAIL",
|
|
4960
|
+
/** Phone number. */
|
|
4961
|
+
PHONE = "PHONE",
|
|
4962
|
+
/** Physical address. */
|
|
4963
|
+
ADDRESS = "ADDRESS",
|
|
4964
|
+
/** Birth date. */
|
|
4965
|
+
BIRTHDATE = "BIRTHDATE",
|
|
4966
|
+
/** Custom field. */
|
|
4967
|
+
CUSTOM_FIELD = "CUSTOM_FIELD",
|
|
4968
|
+
/** Subscription status. */
|
|
4969
|
+
SUBSCRIPTION = "SUBSCRIPTION",
|
|
4970
|
+
/** VAT identification number. */
|
|
4971
|
+
VAT_ID = "VAT_ID"
|
|
4972
|
+
}
|
|
4973
|
+
/** @enumType */
|
|
4974
|
+
type FormFieldContactInfoContactFieldWithLiterals = FormFieldContactInfoContactField | 'UNDEFINED' | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
|
|
4975
|
+
interface FormFieldContactInfoEmailInfo {
|
|
4976
|
+
/** Email tag. */
|
|
4977
|
+
tag?: FormFieldContactInfoEmailInfoTagWithLiterals;
|
|
4978
|
+
}
|
|
4979
|
+
interface FormFieldContactInfoPhoneInfo {
|
|
4980
|
+
/** Phone tag. */
|
|
4981
|
+
tag?: FormFieldContactInfoPhoneInfoTagWithLiterals;
|
|
4982
|
+
}
|
|
4983
|
+
interface FormFieldContactInfoAddressInfo {
|
|
4984
|
+
/** Address tag. */
|
|
4985
|
+
tag?: AddressInfoTagWithLiterals;
|
|
4986
|
+
}
|
|
4987
|
+
interface FormFieldContactInfoCustomFieldInfo {
|
|
4988
|
+
/**
|
|
4989
|
+
* Custom field key.
|
|
4990
|
+
* @minLength 1
|
|
4991
|
+
* @maxLength 500
|
|
4992
|
+
*/
|
|
4993
|
+
key?: string;
|
|
4994
|
+
}
|
|
4995
|
+
interface FormFieldContactInfoSubscriptionInfo {
|
|
4996
|
+
/**
|
|
4997
|
+
* Subscription consent opt-in level.
|
|
4998
|
+
* Default: `SINGLE_CONFIRMATION`
|
|
4999
|
+
*/
|
|
5000
|
+
optInLevel?: SubscriptionInfoOptInLevelWithLiterals;
|
|
5001
|
+
}
|
|
5632
5002
|
interface NestedForm {
|
|
5633
5003
|
/**
|
|
5634
5004
|
* Targets which have this form.
|
|
@@ -8119,4 +7489,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
8119
7489
|
fieldsToValidate?: string[];
|
|
8120
7490
|
}
|
|
8121
7491
|
|
|
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 };
|
|
7492
|
+
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 LayoutCellData 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 AppEmbedDataAppDataOneOf as dA, type BookingData as dB, type EventData as dC, type ButtonStyles as dD, type ImageStyles as dE, type RibbonStyles as dF, type CardStyles as dG, type PricingData as dH, type VideoData as dI, type PlaybackOptions as dJ, type EmbedData as dK, type Oembed as dL, type CollapsibleListData as dM, type TableData as dN, type Dimensions as dO, type TableCellData as dP, type CellStyle as dQ, type BorderColors as dR, type BorderWidths as dS, type ListValue as dT, type AudioData as dU, type OrderedListData as dV, type BulletedListData as dW, type BlockquoteData as dX, type CaptionData as dY, type LayoutData as dZ, type BackgroundImage 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 FontFamilyData as dy, type AppEmbedData as dz, type UpdateSubmissionValidationErrors as e, type FormFieldContactInfo as e$, type Metadata as e0, type DocumentStyle as e1, type TextNodeStyle as e2, type MediaItem as e3, type MediaItemMediaOneOf as e4, type MediaSettings as e5, type RadioGroup as e6, type RadioGroupOption as e7, type CustomOption as e8, type Dropdown as e9, type Signature as eA, type ProductCheckboxGroup as eB, type ProductCheckboxGroupOption as eC, type DonationInput as eD, type DonationInputOption as eE, type PaymentInput as eF, type FixedPayment as eG, type MultilineAddress as eH, type AddressLine2 as eI, type DefaultCountryConfig as eJ, type DefaultCountryConfigOptionsOneOf as eK, type FieldsSettings as eL, type Repeater as eM, type FormLayout as eN, type BreakPoint as eO, type ItemLayout as eP, type ItemLayoutItemOneOf as eQ, type Group as eR, type Margin as eS, type Section as eT, type Appointment as eU, type AppointmentFormatInfoOneOf as eV, type Location as eW, type LocationLocationInfoOneOf as eX, type InPersonOptions as eY, type VideoConferenceOptions as eZ, type PhoneOptions as e_, type DropdownOption as ea, type DateTimeInput as eb, type PhoneInput as ec, type DateInput as ed, type TimeInput as ee, type DatePicker as ef, type ServicesDropdown as eg, type ServiceOption as eh, type NumberType as ei, type NumberInput as ej, type RatingInput as ek, type BooleanType as el, type Checkbox as em, type ArrayType as en, type ObjectType as eo, type PropertiesType as ep, type PropertiesTypePropertiesTypeOptionsOneOf as eq, type ArrayItems as er, type ArrayItemsItemTypeOptionsOneOf as es, type CheckboxGroup as et, type Option as eu, type Tags as ev, type TagsOption as ew, type ServicesCheckboxGroup as ex, type FileType as ey, type FileUpload as ez, type ConfirmSubmissionResponse as f, type CreateCheckoutFromSubmissionResponse as f$, type FormFieldContactInfoAdditionalInfoOneOf as f0, type EmailInfo as f1, type PhoneInfo as f2, type AddressInfo as f3, type CustomFieldInfo as f4, type SubscriptionInfo as f5, type _String as f6, type _StringComponentTypeOptionsOneOf as f7, type _Number as f8, type _NumberComponentTypeOptionsOneOf as f9, type V4FormFieldContactInfoAdditionalInfoOneOf as fA, type FormFieldContactInfoEmailInfo as fB, type FormFieldContactInfoPhoneInfo as fC, type FormFieldContactInfoAddressInfo as fD, type FormFieldContactInfoCustomFieldInfo as fE, type FormFieldContactInfoSubscriptionInfo as fF, type NestedForm as fG, type LimitationRule as fH, type RequiredIndicatorProperties as fI, type SubmitSettings as fJ, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fK, type ThankYouMessageOptions as fL, type RedirectOptions as fM, type FieldGroup as fN, type Rule as fO, type RequiredOptions as fP, type HiddenOptions as fQ, type AllowedValuesOptions as fR, type FieldOverride as fS, type FieldOverridePropertyTypeOptionsOneOf as fT, type ConditionNode as fU, type ConditionNodeNodeOneOf as fV, type AndCondition as fW, type OrCondition as fX, type Condition as fY, type RuleFormOverride as fZ, type RuleFormOverrideEntityTypeOptionsOneOf as f_, type _Boolean as fa, type _BooleanComponentTypeOptionsOneOf as fb, type _Array as fc, type _ArrayComponentTypeOptionsOneOf as fd, type _Object as fe, type WixFile as ff, type WixFileComponentTypeOptionsOneOf as fg, type Payment as fh, type PaymentComponentTypeOptionsOneOf as fi, type Scheduling as fj, type SchedulingComponentTypeOptionsOneOf as fk, type Address as fl, type AddressComponentTypeOptionsOneOf as fm, type ObjectArray as fn, type ObjectArrayComponentTypeOptionsOneOf as fo, type DisplayField as fp, type DisplayFieldDisplayFieldTypeOptionsOneOf as fq, type RichContentOptions as fr, type PageNavigationOptions as fs, type Step as ft, type FormRule as fu, type FormOverride as fv, type FormProperties as fw, type PostSubmissionTriggers as fx, type UpsertContact as fy, type V4FormFieldContactInfo as fz, type BulkDeleteSubmissionResponse as g, type QuerySubmissionsByNamespaceForExportRequest as g$, type Checkout as g0, type IsFormSubmittableRequest as g1, type IsFormSubmittableResponse as g2, type DomainEvent as g3, type DomainEventBodyOneOf as g4, type EntityCreatedEvent as g5, type RestoreInfo as g6, type EntityUpdatedEvent as g7, type EntityDeletedEvent as g8, type ActionEvent as g9, type UpdateSubmissionResponse as gA, type ConfirmSubmissionRequest as gB, type DeleteSubmissionRequest as gC, type DeleteSubmissionResponse as gD, type BulkDeleteSubmissionRequest as gE, type BulkDeleteSubmissionResult as gF, type RestoreSubmissionFromTrashBinRequest as gG, type RemoveSubmissionFromTrashBinRequest as gH, type RemoveSubmissionFromTrashBinResponse as gI, type BulkRemoveSubmissionFromTrashBinRequest as gJ, type BulkRemoveSubmissionFromTrashBinResult as gK, type ListDeletedSubmissionsRequest as gL, type CursorPaging as gM, type CursorPagingMetadata as gN, type Cursors as gO, type GetDeletedSubmissionRequest as gP, type QuerySubmissionRequest as gQ, type CursorQueryPagingMethodOneOf as gR, type Sorting as gS, type SearchSubmissionsByNamespaceRequest as gT, type CursorSearch as gU, type CursorSearchPagingMethodOneOf as gV, type SearchDetails as gW, type SearchSubmissionsByNamespaceForExportRequest as gX, type SearchSubmissionsByNamespaceForExportResponse as gY, type QuerySubmissionsByNamespaceRequest as gZ, type QuerySubmissionsByNamespaceResponse as g_, type Empty as ga, type MessageEnvelope as gb, type IdentificationData as gc, type IdentificationDataIdOneOf as gd, type UpsertContactFromSubmissionRequest as ge, type SubmitContactResponse as gf, type CreateSubmissionRequest as gg, type CreateSubmissionResponse as gh, type SubmissionValidationErrorsDetails as gi, type ValidationError as gj, type CreateSubmissionForMigrationRequest as gk, type CreateSubmissionForMigrationResponse as gl, type CreateSubmissionBySubmitterRequest as gm, type CreateSubmissionBySubmitterResponse as gn, type BulkCreateSubmissionBySubmitterRequest as go, type BulkCreateSubmissionBySubmitterData as gp, type BulkCreateSubmissionBySubmitterResponse as gq, type BulkSubmissionResult as gr, type ItemMetadata as gs, type ApplicationError as gt, type BulkActionMetadata as gu, type GetSubmissionRequest as gv, type GetSubmissionResponse as gw, type GetSubmissionByCheckoutIdRequest as gx, type GetSubmissionByCheckoutIdResponse as gy, type UpdateSubmissionRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type PollLayoutDirectionWithLiterals as h$, type QuerySubmissionsByNamespaceForExportResponse as h0, type CountSubmissionsByFilterRequest as h1, type FormSubmissionsCount as h2, type CountSubmissionsRequest as h3, type CountDeletedSubmissionsRequest as h4, type FormDeletedSubmissionsCount as h5, type GetMediaUploadURLRequest as h6, type BulkMarkSubmissionsAsSeenRequest as h7, type GetSubmissionDownloadUrlRequest as h8, type SubmissionDocument as h9, type ValidationFormatWithLiterals as hA, type ProductTypeWithLiterals as hB, type PriceTypeWithLiterals as hC, type FieldTypeWithLiterals as hD, type FormatEnumFormatWithLiterals as hE, type StringComponentTypeWithLiterals as hF, type NodeTypeWithLiterals as hG, type WidthTypeWithLiterals as hH, type PluginContainerDataAlignmentWithLiterals as hI, type ButtonDataTypeWithLiterals as hJ, type LinkTargetWithLiterals as hK, type TextAlignmentWithLiterals as hL, type LineStyleWithLiterals as hM, type WidthWithLiterals as hN, type DividerDataAlignmentWithLiterals as hO, type ViewModeWithLiterals as hP, type LayoutTypeWithLiterals as hQ, type OrientationWithLiterals as hR, type CropWithLiterals as hS, type ThumbnailsAlignmentWithLiterals as hT, type GIFTypeWithLiterals as hU, type SourceWithLiterals as hV, type StylesPositionWithLiterals as hW, type MapTypeWithLiterals as hX, type ViewRoleWithLiterals as hY, type VoteRoleWithLiterals as hZ, type PollLayoutTypeWithLiterals as h_, type SubmissionDocumentDocumentOneOf as ha, type DocumentReady as hb, type DownloadSubmissionRequest as hc, type HeadersEntry as hd, type GetFormattedSubmissionRequest as he, type FormattedSubmission as hf, type ListFormattedSubmissionsRequest as hg, type ListFormattedSubmissionsResponse as hh, type FormattedFormSubmission as hi, type UpdateExtendedFieldsRequest as hj, type BulkUpdateFormSubmissionTagsRequest as hk, type BulkUpdateFormSubmissionTagsResult as hl, type BulkUpdateFormSubmissionTagsByFilterRequest as hm, type ValidateFormSubmissionRequest as hn, type FieldViolation as ho, type FieldViolationErrorDataOneOf as hp, type SubmissionValidationErrors as hq, type SubmissionValidationError as hr, type SubmissionValidationErrorErrorMessageOneOf as hs, type BaseEventMetadata as ht, type EventMetadata as hu, type FormSubmissionSearchSpec as hv, type SubmissionsQueryResult as hw, type SubmissionStatusWithLiterals as hx, type OptInLevelWithLiterals as hy, type StringTypeFormatEnumFormatWithLiterals as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type ErrorTypeWithLiterals as i$, type BackgroundTypeWithLiterals as i0, type DecorationTypeWithLiterals as i1, type FontTypeWithLiterals as i2, type PositionWithLiterals as i3, type AspectRatioWithLiterals as i4, type ResizingWithLiterals as i5, type PlacementWithLiterals as i6, type CardStylesTypeWithLiterals as i7, type CardStylesAlignmentWithLiterals as i8, type LayoutWithLiterals as i9, type ObjectArrayComponentTypeWithLiterals as iA, type SchedulingComponentTypeWithLiterals as iB, type FormatWithLiterals as iC, type InputTypeWithLiterals as iD, type EmailInfoTagWithLiterals as iE, type PhoneInfoTagWithLiterals as iF, type TagWithLiterals as iG, type ConfirmationLevelWithLiterals as iH, type ContactFieldWithLiterals as iI, type DisplayFieldTypeWithLiterals as iJ, type OverrideEntityTypeWithLiterals as iK, type KindWithLiterals as iL, type FormFieldContactInfoEmailInfoTagWithLiterals as iM, type FormFieldContactInfoPhoneInfoTagWithLiterals as iN, type AddressInfoTagWithLiterals as iO, type SubscriptionInfoOptInLevelWithLiterals as iP, type FormFieldContactInfoContactFieldWithLiterals as iQ, type SpamFilterProtectionLevelWithLiterals as iR, type RequiredIndicatorWithLiterals as iS, type RequiredIndicatorPlacementWithLiterals as iT, type TargetWithLiterals as iU, type SubmitSuccessActionWithLiterals as iV, type ChangeablePropertyWithLiterals as iW, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as iX, type OperatorWithLiterals as iY, type WebhookIdentityTypeWithLiterals as iZ, type IdentityTypeWithLiterals as i_, type AppTypeWithLiterals as ia, type InitialExpandedItemsWithLiterals as ib, type DirectionWithLiterals as ic, type VerticalAlignmentWithLiterals as id, type NullValueWithLiterals as ie, type ScalingWithLiterals as ig, type LayoutDataImagePositionWithLiterals as ih, type VerticalAlignmentAlignmentWithLiterals as ii, type ResponsivenessBehaviourWithLiterals as ij, type ImagePositionWithLiterals as ik, type AlignmentWithLiterals as il, type ImageFitWithLiterals as im, type NumberOfColumnsWithLiterals as io, type FirstDayOfWeekWithLiterals as ip, type NumberComponentTypeWithLiterals as iq, type BooleanComponentTypeWithLiterals as ir, type ItemTypeWithLiterals as is, type PropertiesTypeEnumWithLiterals as it, type ArrayComponentTypeWithLiterals as iu, type WixFileComponentTypeWithLiterals as iv, type UploadFileFormatWithLiterals as iw, type PaymentComponentTypeWithLiterals as ix, type ComponentTypeWithLiterals as iy, type TypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type SortOrderWithLiterals as j0, type ModeWithLiterals as j1, type StatusWithLiterals as j2, type SubmissionErrorTypeWithLiterals as j3, type CommonSearchWithEntityContext as j4, onSubmissionCreated as j5, onSubmissionDeleted as j6, onSubmissionRemovedSubmissionFromTrash as j7, onSubmissionStatusUpdated as j8, onSubmissionContactMapped as j9, bulkUpdateFormSubmissionTagsByFilter as jA, validateFormSubmission as jB, onSubmissionContactMappingSkipped as ja, onSubmissionUpdated as jb, upsertContactFromSubmission as jc, createSubmission as jd, getSubmission as je, updateSubmission as jf, confirmSubmission as jg, deleteSubmission as jh, bulkDeleteSubmission as ji, restoreSubmissionFromTrashBin as jj, removeSubmissionFromTrashBin as jk, bulkRemoveSubmissionFromTrashBin as jl, listDeletedSubmissions as jm, getDeletedSubmission as jn, querySubmission as jo, querySubmissionsByNamespace as jp, countSubmissionsByFilter as jq, countSubmissions as jr, countDeletedSubmissions as js, getMediaUploadUrl as jt, bulkMarkSubmissionsAsSeen as ju, getSubmissionDownloadUrl as jv, downloadSubmission as jw, getFormattedSubmission as jx, updateExtendedFields as jy, bulkUpdateFormSubmissionTags 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 };
|