@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.
Files changed (41) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-8MFuPNM3.d.ts → forms-v4-submission-submissions.universal-Bcjvsrv_.d.ts} +577 -1207
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +102 -244
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +102 -244
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +578 -1208
  9. package/build/cjs/meta.js +102 -244
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-8MFuPNM3.d.mts → forms-v4-submission-submissions.universal-Bcjvsrv_.d.mts} +577 -1207
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +102 -230
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +102 -230
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +578 -1208
  19. package/build/es/meta.mjs +102 -230
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-EPX5eZ7e.d.ts → forms-v4-submission-submissions.universal-DJs1f2hq.d.ts} +577 -1207
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +102 -244
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +102 -244
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +578 -1208
  29. package/build/internal/cjs/meta.js +102 -244
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-EPX5eZ7e.d.mts → forms-v4-submission-submissions.universal-DJs1f2hq.d.mts} +577 -1207
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +102 -230
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +102 -230
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +578 -1208
  39. package/build/internal/es/meta.mjs +102 -230
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -318,12 +318,6 @@ interface Form {
318
318
  * @readonly
319
319
  */
320
320
  deletedFields?: FormField[];
321
- /**
322
- * List of form fields that represent input elements.
323
- * @maxSize 150
324
- * @readonly
325
- */
326
- deletedFieldsV2?: FormFieldV2[];
327
321
  /**
328
322
  * Form fields that were soft deleted.
329
323
  * @maxSize 150
@@ -902,141 +896,282 @@ interface NestedFormOverrides {
902
896
  /** Field overrides by field ID */
903
897
  fieldOverrides?: Record<string, NestedFormFieldOverrides>;
904
898
  }
905
- interface FormFieldV2 extends FormFieldV2FieldTypeOptionsOneOf {
906
- /** Field accept input of data */
907
- inputOptions?: FormFieldV2InputField;
908
- /** Field for displaying information such as header or text paragraph */
899
+ interface Field extends FieldFieldTypeOptionsOneOf {
900
+ /** Configuration for input fields that collect user data. */
901
+ inputOptions?: InputField;
902
+ /** Configuration for display fields that show information without collecting input. */
909
903
  displayOptions?: DisplayField;
910
904
  /**
911
- * Field id.
905
+ * Field ID.
912
906
  * @format GUID
913
907
  * @immutable
914
908
  */
915
909
  _id?: string;
916
910
  /**
917
- * Whether the field is hidden.
918
- * Default: false
911
+ * Whether the field is hidden from submitters.
912
+ *
913
+ * Default: `false`
919
914
  */
920
915
  hidden?: boolean;
921
916
  /**
922
- * Type of the field
917
+ * Custom identification for the field. This is intended as a way for you to identify certain fields that you want to apply special behavior to in your own logic.
918
+ * @maxLength 50
919
+ */
920
+ identifier?: string | null;
921
+ /**
922
+ * Field type.
923
923
  * @readonly
924
924
  */
925
- fieldType?: FormFieldV2FieldTypeWithLiterals;
925
+ fieldType?: FieldTypeWithLiterals;
926
926
  }
927
927
  /** @oneof */
928
- interface FormFieldV2FieldTypeOptionsOneOf {
929
- /** Field accept input of data */
930
- inputOptions?: FormFieldV2InputField;
931
- /** Field for displaying information such as header or text paragraph */
928
+ interface FieldFieldTypeOptionsOneOf {
929
+ /** Configuration for input fields that collect user data. */
930
+ inputOptions?: InputField;
931
+ /** Configuration for display fields that show information without collecting input. */
932
932
  displayOptions?: DisplayField;
933
933
  }
934
- interface InputFieldStringType extends InputFieldStringTypeFormatOptionsOneOf {
935
- /** DATE format options */
936
- dateOptions?: InputFieldStringTypeDateTimeConstraints;
937
- /** DATE_TIME format options */
938
- dateTimeOptions?: InputFieldStringTypeDateTimeConstraints;
939
- /** TIME format options */
940
- timeOptions?: InputFieldStringTypeDateTimeConstraints;
941
- /** DATE_OPTIONAL_TIME format options */
942
- dateOptionalTimeOptions?: InputFieldStringTypeDateTimeConstraints;
943
- /** PHONE format options */
944
- phoneOptions?: InputFieldStringTypePhoneConstraints;
934
+ declare enum FieldType {
935
+ /** Unknown field type. */
936
+ UNKNOWN_FIELD_TYPE = "UNKNOWN_FIELD_TYPE",
937
+ /** Input field that collects data from users. */
938
+ INPUT = "INPUT",
939
+ /** Display field that shows information without collecting input. */
940
+ DISPLAY = "DISPLAY"
941
+ }
942
+ /** @enumType */
943
+ type FieldTypeWithLiterals = FieldType | 'UNKNOWN_FIELD_TYPE' | 'INPUT' | 'DISPLAY';
944
+ interface InputField extends InputFieldInputTypeOptionsOneOf {
945
+ /** String input field settings. */
946
+ stringOptions?: _String;
947
+ /** Number input field settings. */
948
+ numberOptions?: _Number;
949
+ /** Boolean input field settings. */
950
+ booleanOptions?: _Boolean;
951
+ /** Array input field settings. */
952
+ arrayOptions?: _Array;
953
+ /** Object input field settings. */
954
+ objectOptions?: _Object;
955
+ /** File input field settings. Files are uploaded to the [Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager). */
956
+ wixFileOptions?: WixFile;
957
+ /** Payment input field settings. */
958
+ paymentOptions?: Payment;
959
+ /** Scheduling input field settings. */
960
+ schedulingOptions?: Scheduling;
961
+ /** Address input field settings. */
962
+ addressOptions?: Address;
945
963
  /**
946
- * Minimum length.
964
+ * Human readable identifier used to reference a field. For example, `"address"`.
965
+ *
966
+ * Can be set once.
967
+ * @minLength 1
968
+ * @maxLength 200
969
+ * @immutable
970
+ */
971
+ target?: string;
972
+ /**
973
+ * Whether this field contains Personally Identifiable Information (PII).
974
+ *
975
+ * PII fields are automatically encrypted when stored.
976
+ *
977
+ * Default: `false`
978
+ */
979
+ pii?: boolean;
980
+ /**
981
+ * Whether the field is required for form submission.
982
+ *
983
+ * Default: `false`
984
+ */
985
+ required?: boolean;
986
+ /**
987
+ * Type of the input field that determines what kind of data it collects.
988
+ * @readonly
989
+ */
990
+ inputType?: InputTypeWithLiterals;
991
+ /**
992
+ * Mapping configuration for automatically saving field values to contact properties.
993
+ *
994
+ * When specified, form submissions automatically create or update contacts with the field data.
995
+ */
996
+ contactMapping?: FormFieldContactInfo;
997
+ /**
998
+ * Whether the field is read-only.
999
+ *
1000
+ * Default: `false`
1001
+ */
1002
+ readOnly?: boolean;
1003
+ }
1004
+ /** @oneof */
1005
+ interface InputFieldInputTypeOptionsOneOf {
1006
+ /** String input field settings. */
1007
+ stringOptions?: _String;
1008
+ /** Number input field settings. */
1009
+ numberOptions?: _Number;
1010
+ /** Boolean input field settings. */
1011
+ booleanOptions?: _Boolean;
1012
+ /** Array input field settings. */
1013
+ arrayOptions?: _Array;
1014
+ /** Object input field settings. */
1015
+ objectOptions?: _Object;
1016
+ /** File input field settings. Files are uploaded to the [Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager). */
1017
+ wixFileOptions?: WixFile;
1018
+ /** Payment input field settings. */
1019
+ paymentOptions?: Payment;
1020
+ /** Scheduling input field settings. */
1021
+ schedulingOptions?: Scheduling;
1022
+ /** Address input field settings. */
1023
+ addressOptions?: Address;
1024
+ }
1025
+ interface StringType extends StringTypeFormatOptionsOneOf {
1026
+ /** Validation rules for strings with date format. */
1027
+ dateOptions?: DateTimeConstraints;
1028
+ /** Validation rules for strings with date and time format. */
1029
+ dateTimeOptions?: DateTimeConstraints;
1030
+ /** Validation rules for strings with time format. */
1031
+ timeOptions?: DateTimeConstraints;
1032
+ /** Validation rules for string with date and time format, where time is optional. */
1033
+ dateOptionalTimeOptions?: DateTimeConstraints;
1034
+ /** Validation rules for strings with phone number format. */
1035
+ phoneOptions?: PhoneConstraints;
1036
+ /**
1037
+ * Minimum required length for the string value.
947
1038
  * @max 20000
948
1039
  */
949
1040
  minLength?: number | null;
950
1041
  /**
951
- * Maximum length.
1042
+ * Maximum allowed length for the string value.
952
1043
  * @max 20000
953
1044
  */
954
1045
  maxLength?: number | null;
955
1046
  /**
956
- * Pattern for a regular expression match.
1047
+ * Regular expression pattern that the string value must match.
957
1048
  * @maxLength 500
958
1049
  */
959
1050
  pattern?: string | null;
960
- /** Format of a string. */
961
- format?: InputFieldStringTypeFormatEnumFormatWithLiterals;
1051
+ /** Expected format of the string value. */
1052
+ format?: FormatEnumFormatWithLiterals;
962
1053
  /**
963
- * List of allowed values.
1054
+ * List of specific values that are allowed for this field.
1055
+ * When specified, the input must match one of these predefined values.
964
1056
  * @maxSize 500
965
1057
  * @maxLength 20000
966
1058
  */
967
1059
  enum?: string[] | null;
1060
+ /** Custom error messages displayed when validation fails. */
1061
+ validationMessages?: ValidationMessages;
968
1062
  }
969
1063
  /** @oneof */
970
- interface InputFieldStringTypeFormatOptionsOneOf {
971
- /** DATE format options */
972
- dateOptions?: InputFieldStringTypeDateTimeConstraints;
973
- /** DATE_TIME format options */
974
- dateTimeOptions?: InputFieldStringTypeDateTimeConstraints;
975
- /** TIME format options */
976
- timeOptions?: InputFieldStringTypeDateTimeConstraints;
977
- /** DATE_OPTIONAL_TIME format options */
978
- dateOptionalTimeOptions?: InputFieldStringTypeDateTimeConstraints;
979
- /** PHONE format options */
980
- phoneOptions?: InputFieldStringTypePhoneConstraints;
1064
+ interface StringTypeFormatOptionsOneOf {
1065
+ /** Validation rules for strings with date format. */
1066
+ dateOptions?: DateTimeConstraints;
1067
+ /** Validation rules for strings with date and time format. */
1068
+ dateTimeOptions?: DateTimeConstraints;
1069
+ /** Validation rules for strings with time format. */
1070
+ timeOptions?: DateTimeConstraints;
1071
+ /** Validation rules for string with date and time format, where time is optional. */
1072
+ dateOptionalTimeOptions?: DateTimeConstraints;
1073
+ /** Validation rules for strings with phone number format. */
1074
+ phoneOptions?: PhoneConstraints;
981
1075
  }
982
- declare enum InputFieldStringTypeFormatEnumFormat {
1076
+ declare enum FormatEnumFormat {
1077
+ /** Unknown format. */
983
1078
  UNKNOWN_FORMAT = "UNKNOWN_FORMAT",
1079
+ /** Date format. */
984
1080
  DATE = "DATE",
1081
+ /** Time format. */
985
1082
  TIME = "TIME",
1083
+ /** Date and time format. */
986
1084
  DATE_TIME = "DATE_TIME",
1085
+ /** Email format. */
987
1086
  EMAIL = "EMAIL",
1087
+ /** URL format. */
988
1088
  URL = "URL",
1089
+ /** UUID format. */
989
1090
  UUID = "UUID",
1091
+ /** Phone number format. */
990
1092
  PHONE = "PHONE",
1093
+ /** URI format. */
991
1094
  URI = "URI",
1095
+ /** Hostname format. */
992
1096
  HOSTNAME = "HOSTNAME",
1097
+ /** Hexadecimal color code format. */
993
1098
  COLOR_HEX = "COLOR_HEX",
1099
+ /** Currency format. */
994
1100
  CURRENCY = "CURRENCY",
1101
+ /** Language code format. */
995
1102
  LANGUAGE = "LANGUAGE",
1103
+ /** Date with optional time format. */
996
1104
  DATE_OPTIONAL_TIME = "DATE_OPTIONAL_TIME"
997
1105
  }
998
1106
  /** @enumType */
999
- type InputFieldStringTypeFormatEnumFormatWithLiterals = InputFieldStringTypeFormatEnumFormat | 'UNKNOWN_FORMAT' | 'DATE' | 'TIME' | 'DATE_TIME' | 'EMAIL' | 'URL' | 'UUID' | 'PHONE' | 'URI' | 'HOSTNAME' | 'COLOR_HEX' | 'CURRENCY' | 'LANGUAGE' | 'DATE_OPTIONAL_TIME';
1000
- interface InputFieldStringTypeDateTimeConstraints {
1107
+ type FormatEnumFormatWithLiterals = FormatEnumFormat | 'UNKNOWN_FORMAT' | 'DATE' | 'TIME' | 'DATE_TIME' | 'EMAIL' | 'URL' | 'UUID' | 'PHONE' | 'URI' | 'HOSTNAME' | 'COLOR_HEX' | 'CURRENCY' | 'LANGUAGE' | 'DATE_OPTIONAL_TIME';
1108
+ interface DateTimeConstraints {
1001
1109
  /**
1002
- * Support static constrains defined as ISO date/time format, as well as
1003
- * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
1004
- * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
1005
- * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
1110
+ * Minimum allowed datetime value.
1111
+ *
1112
+ * Supports ISO datetime format or dynamic calculations using "$now" keyword.
1113
+ * The dynamic calculation supports times in the future and past.
1114
+ * The pattern for dynamic calculations: $now([+-]\d{1,2})([yMdmh]).
1115
+ *
1116
+ * Examples: `"2023-01-01"`, `"$now-1d"` (1 day ago), `"$now+2h"` (2 hours from now).
1006
1117
  * @maxLength 50
1007
1118
  */
1008
1119
  minimum?: string | null;
1009
1120
  /**
1010
- * Support static constrains defined as ISO date/time format, as well as
1011
- * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
1012
- * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
1013
- * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
1121
+ * Maximum allowed datetime value.
1122
+ *
1123
+ * Supports ISO datetime format or dynamic calculations using "$now" keyword.
1124
+ * The dynamic calculation supports times in the future and past.
1125
+ * The pattern for dynamic calculations: $now([+-]\d{1,2})([yMdmh]).
1126
+ *
1127
+ * Examples: `"2023-01-01"`, `"$now-1d"` (1 day ago), `"$now+2h"` (2 hours from now).
1014
1128
  * @maxLength 50
1015
1129
  */
1016
1130
  maximum?: string | null;
1017
1131
  }
1018
- interface InputFieldStringTypePhoneConstraints {
1132
+ interface PhoneConstraints {
1019
1133
  /**
1020
- * Country codes for phone number that are allowed
1134
+ * Country codes that are allowed for phone number validation.
1135
+ *
1136
+ * Use ISO 3166-1 alpha-2 country codes. For example, `"US"`, `"GB"`, `"CA"`.
1021
1137
  * @maxSize 250
1022
1138
  * @maxLength 2
1023
1139
  */
1024
1140
  allowedCountryCodes?: string[];
1025
1141
  }
1026
- declare enum InputFieldStringComponentType {
1142
+ interface ValidationMessages {
1143
+ /**
1144
+ * Error message shown when the pattern validation fails.
1145
+ *
1146
+ * This message is displayed to users when their input doesn't match the specified regex pattern.
1147
+ * @maxLength 200
1148
+ */
1149
+ pattern?: string | null;
1150
+ }
1151
+ declare enum StringComponentType {
1152
+ /** Unknown component type. */
1027
1153
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
1154
+ /** Text input component. */
1028
1155
  TEXT_INPUT = "TEXT_INPUT",
1156
+ /** Radio group component. */
1029
1157
  RADIO_GROUP = "RADIO_GROUP",
1158
+ /** Dropdown component. */
1030
1159
  DROPDOWN = "DROPDOWN",
1160
+ /** Date and time component. */
1031
1161
  DATE_TIME = "DATE_TIME",
1162
+ /** Phone number component. */
1032
1163
  PHONE_INPUT = "PHONE_INPUT",
1164
+ /** Date selection component. */
1033
1165
  DATE_INPUT = "DATE_INPUT",
1166
+ /** Time selection component. */
1034
1167
  TIME_INPUT = "TIME_INPUT",
1168
+ /** Calendar-style date picker component. */
1035
1169
  DATE_PICKER = "DATE_PICKER",
1170
+ /** Dropdown component for selecting available services. */
1036
1171
  SERVICES_DROPDOWN = "SERVICES_DROPDOWN"
1037
1172
  }
1038
1173
  /** @enumType */
1039
- type InputFieldStringComponentTypeWithLiterals = InputFieldStringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
1174
+ type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
1040
1175
  interface TextInput {
1041
1176
  /**
1042
1177
  * Field label.
@@ -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 InputFieldNumberType {
3326
- /** Inclusive maximum value. */
3494
+ interface NumberType {
3495
+ /** The maximum value of the number. Inclusive. */
3327
3496
  maximum?: number | null;
3328
- /** Inclusive minimum value. */
3497
+ /** The minimum value of the number. Inclusive. */
3329
3498
  minimum?: number | null;
3330
- /** Multiple of value. */
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 InputFieldNumberComponentType {
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 InputFieldNumberComponentTypeWithLiterals = InputFieldNumberComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'NUMBER_INPUT' | 'RATING_INPUT';
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 InputFieldBooleanType {
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 InputFieldBooleanComponentType {
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 InputFieldBooleanComponentTypeWithLiterals = InputFieldBooleanComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX';
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 InputFieldArrayType {
3593
+ interface ArrayType {
3420
3594
  /**
3421
- * Maximum amount of array elements.
3595
+ * Maximum number of elements allowed in the array.
3422
3596
  * @max 1000
3423
3597
  */
3424
3598
  maxItems?: number | null;
3425
3599
  /**
3426
- * Minimum amount of array elements.
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?: InputFieldArrayTypeArrayItems;
3604
+ /** Type of items allowed in the array. */
3605
+ items?: ArrayItems;
3432
3606
  }
3433
- declare enum ArrayItemsItemType {
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
- BOOLEAN = "BOOLEAN",
3438
- INTEGER = "INTEGER",
3439
- OBJECT = "OBJECT"
3614
+ /** Array can contain boolean values. */
3615
+ BOOLEAN = "BOOLEAN"
3440
3616
  }
3441
3617
  /** @enumType */
3442
- type ArrayItemsItemTypeWithLiterals = ArrayItemsItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'INTEGER' | 'OBJECT';
3443
- interface InputFieldIntegerType {
3444
- /** Maximum value. */
3445
- maximum?: number | null;
3446
- /** Minimum value. */
3447
- minimum?: number | null;
3448
- /** Multiple of value. */
3449
- multipleOf?: number | null;
3450
- /**
3451
- * List of allowed values.
3452
- * @maxSize 500
3453
- */
3454
- enum?: number[] | null;
3455
- }
3456
- interface InputFieldObjectType {
3457
- /** Description of object properties. */
3458
- properties?: Record<string, InputFieldObjectTypePropertiesType>;
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 PropertiesTypePropertiesTypeEnum {
3461
- UNKNOWN_PROPERTIES_TYPE = "UNKNOWN_PROPERTIES_TYPE",
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
- INTEGER = "INTEGER",
3632
+ /** Property must contain an array. */
3466
3633
  ARRAY = "ARRAY"
3467
3634
  }
3468
3635
  /** @enumType */
3469
- type PropertiesTypePropertiesTypeEnumWithLiterals = PropertiesTypePropertiesTypeEnum | 'UNKNOWN_PROPERTIES_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'INTEGER' | 'ARRAY';
3470
- interface InputFieldObjectTypePropertiesType extends InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf {
3471
- /** String type validation for property. */
3472
- stringOptions?: InputFieldStringType;
3473
- /** Number type validation for property. */
3474
- numberOptions?: InputFieldNumberType;
3475
- /** Boolean type validation for property. */
3476
- booleanOptions?: InputFieldBooleanType;
3477
- /** Integer type validation for property. */
3478
- integerOptions?: InputFieldIntegerType;
3479
- /** Array type validation for property. */
3480
- arrayOptions?: InputFieldArrayType;
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
- * Type of object properties
3647
+ * Data type of the object property.
3483
3648
  * @readonly
3484
3649
  */
3485
- propertiesType?: PropertiesTypePropertiesTypeEnumWithLiterals;
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 InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf {
3491
- /** String type validation for property. */
3492
- stringOptions?: InputFieldStringType;
3493
- /** Number type validation for property. */
3494
- numberOptions?: InputFieldNumberType;
3495
- /** Boolean type validation for property. */
3496
- booleanOptions?: InputFieldBooleanType;
3497
- /** Integer type validation for property. */
3498
- integerOptions?: InputFieldIntegerType;
3499
- /** Array type validation for property. */
3500
- arrayOptions?: InputFieldArrayType;
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 InputFieldArrayTypeArrayItems extends InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf {
3503
- /** String type validation for items. */
3504
- stringOptions?: InputFieldStringType;
3505
- /** Number type validation for items. */
3506
- numberOptions?: InputFieldNumberType;
3507
- /** Boolean type validation for items. */
3508
- booleanOptions?: InputFieldBooleanType;
3509
- /** Integer type validation for items. */
3510
- integerOptions?: InputFieldIntegerType;
3511
- /** Object type validation for items */
3512
- objectOptions?: InputFieldObjectType;
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
- * Type of array items
3673
+ * Allowed item type.
3515
3674
  * @readonly
3516
3675
  */
3517
- itemType?: ArrayItemsItemTypeWithLiterals;
3676
+ itemType?: ItemTypeWithLiterals;
3518
3677
  }
3519
3678
  /** @oneof */
3520
- interface InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf {
3521
- /** String type validation for items. */
3522
- stringOptions?: InputFieldStringType;
3523
- /** Number type validation for items. */
3524
- numberOptions?: InputFieldNumberType;
3525
- /** Boolean type validation for items. */
3526
- booleanOptions?: InputFieldBooleanType;
3527
- /** Integer type validation for items. */
3528
- integerOptions?: InputFieldIntegerType;
3529
- /** Object type validation for items */
3530
- objectOptions?: InputFieldObjectType;
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 InputFieldArrayComponentType {
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 InputFieldArrayComponentTypeWithLiterals = InputFieldArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
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 InputFieldWixFileComponentType {
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 InputFieldWixFileComponentTypeWithLiterals = InputFieldWixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
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 InputFieldPaymentComponentType {
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 InputFieldPaymentComponentTypeWithLiterals = InputFieldPaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
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 InputFieldSchedulingComponentType {
3899
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
3900
- APPOINTMENT = "APPOINTMENT"
3901
- }
3902
- /** @enumType */
3903
- type InputFieldSchedulingComponentTypeWithLiterals = InputFieldSchedulingComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'APPOINTMENT';
3904
- interface Appointment extends AppointmentFormatInfoOneOf {
3905
- /** Configuration for in-person appointments. */
3906
- inPersonOptions?: InPersonOptions;
3907
- /** Configuration for video conference appointments. */
3908
- videoConferenceOptions?: VideoConferenceOptions;
3909
- /** Configuration for phone appointments. */
3910
- phoneOptions?: PhoneOptions;
3911
- /**
3912
- * Field label.
3913
- * @maxLength 255
3914
- */
3915
- label?: string | null;
3916
- /**
3917
- * Appointment name.
3918
- * @minLength 1
3919
- * @maxLength 400
3920
- */
3921
- name?: string | null;
3922
- /**
3923
- * Duration of the appointment in minutes.
3924
- * @min 1
3925
- * @max 44639
3926
- */
3927
- durationInMinutes?: number | null;
3928
- /** Whether appointments require manual approval before confirmation. */
3929
- manualApprovalRequired?: boolean | null;
3930
- /**
3931
- * IDs of staff members who provide this service.
3932
- * @maxSize 220
3933
- * @format GUID
3934
- */
3935
- staffIds?: string[] | null;
3936
- /** Appointment format. */
3937
- format?: FormatWithLiterals;
3938
- /** Additional description or instructions for the field. */
3939
- description?: RichContent;
3940
- /**
3941
- * Whether to display the field label.
3942
- *
3943
- * Default: `true`
3944
- */
3945
- showLabel?: boolean | null;
3946
- }
3947
- /** @oneof */
3948
- interface AppointmentFormatInfoOneOf {
3949
- /** Configuration for in-person appointments. */
3950
- inPersonOptions?: InPersonOptions;
3951
- /** Configuration for video conference appointments. */
3952
- videoConferenceOptions?: VideoConferenceOptions;
3953
- /** Configuration for phone appointments. */
3954
- phoneOptions?: PhoneOptions;
3955
- }
3956
- interface Location extends LocationLocationInfoOneOf {
3957
- /**
3958
- * Custom address specified as a text string.
3959
- * @maxLength 512
3960
- */
3961
- customAddress?: string | null;
3962
- /**
3963
- * ID of a predefined business [location](https://dev.wix.com/docs/rest/crm/members-contacts/locations/locations/introduction).
3964
- * @format GUID
3965
- */
3966
- businessLocationId?: string | null;
3967
- }
3968
- /** @oneof */
3969
- interface LocationLocationInfoOneOf {
3970
- /**
3971
- * Custom address specified as a text string.
3972
- * @maxLength 512
3973
- */
3974
- customAddress?: string | null;
3975
- /**
3976
- * ID of a predefined business [location](https://dev.wix.com/docs/rest/crm/members-contacts/locations/locations/introduction).
3977
- * @format GUID
3978
- */
3979
- businessLocationId?: string | null;
3980
- }
3981
- declare enum Format {
3982
- UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
3983
- /** Face-to-face meeting at a physical location. */
3984
- IN_PERSON = "IN_PERSON",
3985
- /** Online meeting via video conference. */
3986
- VIDEO_CONFERENCE = "VIDEO_CONFERENCE",
3987
- /** Appointment conducted over the phone. */
3988
- PHONE = "PHONE"
3989
- }
3990
- /** @enumType */
3991
- type FormatWithLiterals = Format | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
3992
- interface InPersonOptions {
3993
- /**
3994
- * Physical locations where the appointment can take place.
3995
- * @minSize 1
3996
- * @maxSize 1
3997
- */
3998
- locations?: Location[];
3999
- }
4000
- interface VideoConferenceOptions {
4001
- /**
4002
- * Description or instructions for video conference appointments.
4003
- * @maxLength 512
4004
- */
4005
- description?: string | null;
4006
- }
4007
- interface PhoneOptions {
4008
- /**
4009
- * Description or instructions for phone appointments.
4010
- * @maxLength 512
4011
- */
4012
- description?: string | null;
4013
- }
4014
- declare enum MultilineAddressComponentType {
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 MultilineAddressComponentTypeWithLiterals = MultilineAddressComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
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
- /** @enumType */
4981
- type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
4982
- declare enum ComponentType {
4983
- /** Unknown component type. */
4984
- UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4985
- /** Multiline address component. */
4986
- MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
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 FieldsDisplayField extends FieldsDisplayFieldDisplayFieldTypeOptionsOneOf {
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?: DisplayFieldDisplayFieldTypeWithLiterals;
4720
+ displayFieldType?: DisplayFieldTypeWithLiterals;
5467
4721
  }
5468
4722
  /** @oneof */
5469
- interface FieldsDisplayFieldDisplayFieldTypeOptionsOneOf {
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 DisplayFieldDisplayFieldType {
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 DisplayFieldDisplayFieldTypeWithLiterals = DisplayFieldDisplayFieldType | 'UNKNOWN_FIELD_TYPE' | 'RICH_CONTENT' | 'PAGE_NAVIGATION' | 'LOGIN_BAR';
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.
@@ -8087,4 +7457,4 @@ interface ValidateFormSubmissionOptions {
8087
7457
  fieldsToValidate?: string[];
8088
7458
  }
8089
7459
 
8090
- export { PriceType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type QuerySubmissionsByNamespaceOptions as O, typedQuerySubmissionsByNamespace as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionsQueryBuilder as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, SubmissionStatus as W, OptInLevel as X, StringTypeFormatEnumFormat as Y, ValidationFormat as Z, ProductType as _, type UpsertContactFromSubmissionResponse as a, AddressInfoTag as a$, InputFieldStringTypeFormatEnumFormat as a0, InputFieldStringComponentType as a1, NodeType as a2, WidthType as a3, PluginContainerDataAlignment as a4, ButtonDataType as a5, LinkTarget as a6, TextAlignment as a7, LineStyle as a8, Width as a9, Direction as aA, VerticalAlignment as aB, NullValue as aC, Scaling as aD, LayoutDataImagePosition as aE, VerticalAlignmentAlignment as aF, ResponsivenessBehaviour as aG, ImagePosition as aH, Alignment as aI, ImageFit as aJ, NumberOfColumns as aK, FirstDayOfWeek as aL, InputFieldNumberComponentType as aM, InputFieldBooleanComponentType as aN, ArrayItemsItemType as aO, PropertiesTypePropertiesTypeEnum as aP, InputFieldArrayComponentType as aQ, InputFieldWixFileComponentType as aR, UploadFileFormat as aS, InputFieldPaymentComponentType as aT, InputFieldSchedulingComponentType as aU, Format as aV, MultilineAddressComponentType as aW, Type as aX, InputFieldInputType as aY, FormFieldContactInfoEmailInfoTag as aZ, FormFieldContactInfoPhoneInfoTag as a_, DividerDataAlignment as aa, ViewMode as ab, LayoutType as ac, Orientation as ad, Crop as ae, ThumbnailsAlignment as af, GIFType as ag, Source as ah, StylesPosition as ai, MapType as aj, ViewRole as ak, VoteRole as al, PollLayoutType as am, PollLayoutDirection as an, BackgroundType as ao, DecorationType as ap, FontType as aq, Position as ar, AspectRatio as as, Resizing as at, Placement as au, CardStylesType as av, CardStylesAlignment as aw, Layout as ax, AppType as ay, InitialExpandedItems as az, type CreateSubmissionApplicationErrors as b, type NumberErrorMessages as b$, SubscriptionInfoOptInLevel as b0, FormFieldContactInfoContactField as b1, FormFieldV2FieldType as b2, DisplayFieldType as b3, FieldType as b4, FormatEnumFormat as b5, StringComponentType as b6, NumberComponentType as b7, BooleanComponentType as b8, ItemType as b9, ErrorType as bA, SortOrder as bB, Mode as bC, Status as bD, SubmissionErrorType as bE, type Submitter as bF, type SubmitterSubmitterOneOf as bG, type ExtendedFields as bH, type OrderDetails as bI, type PublicTags as bJ, type TagList as bK, type FormSubmissionStatusUpdatedEvent as bL, type RemovedSubmissionFromTrash as bM, type SubmissionContactMapped as bN, type MarketingSubscriptionDetails as bO, type SubmissionContactMappingSkipped as bP, type CreateCheckoutFromSubmissionRequest as bQ, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bR, type Form as bS, type FormField as bT, type FormFieldStringType as bU, type FormFieldStringTypeFormatOptionsOneOf as bV, type StringErrorMessages as bW, type StringTypeDateTimeConstraints as bX, type StringTypePhoneConstraints as bY, type StringTypeValidationMessages as bZ, type FormFieldNumberType as b_, PropertiesTypeEnum as ba, ArrayComponentType as bb, WixFileComponentType as bc, PaymentComponentType as bd, ComponentType as be, ObjectArrayComponentType as bf, SchedulingComponentType as bg, InputType as bh, EmailInfoTag as bi, PhoneInfoTag as bj, Tag as bk, ConfirmationLevel as bl, ContactField as bm, DisplayFieldDisplayFieldType as bn, OverrideEntityType as bo, Kind as bp, SpamFilterProtectionLevel as bq, RequiredIndicator as br, RequiredIndicatorPlacement as bs, Target as bt, SubmitSuccessAction as bu, ChangeableProperty as bv, OverrideEntityTypeEnumOverrideEntityType as bw, Operator as bx, WebhookIdentityType as by, IdentityType as bz, type CreateSubmissionValidationErrors as c, type ItemDataOneOf as c$, type IntegerType as c0, type FormFieldBooleanType as c1, type BooleanErrorMessages as c2, type FormFieldArrayType as c3, type FormFieldObjectType as c4, type ObjectTypePropertiesType as c5, type ObjectTypePropertiesTypePropertiesTypeOneOf as c6, type ObjectErrorMessages as c7, type ArrayTypeArrayItems as c8, type ArrayTypeArrayItemsItemsOneOf as c9, type Node as cA, type NodeDataOneOf as cB, type NodeStyle as cC, type ButtonData as cD, type Border as cE, type Colors as cF, type PluginContainerData as cG, type PluginContainerDataWidth as cH, type PluginContainerDataWidthDataOneOf as cI, type Spoiler as cJ, type Height as cK, type Styles as cL, type Link as cM, type LinkDataOneOf as cN, type Rel as cO, type CodeBlockData as cP, type TextStyle as cQ, type DividerData as cR, type FileData as cS, type FileSource as cT, type FileSourceDataOneOf as cU, type PDFSettings as cV, type GalleryData as cW, type Media as cX, type Image as cY, type Video as cZ, type Item as c_, type ArrayErrorMessages as ca, type PredefinedValidation as cb, type PredefinedValidationFormatOptionsOneOf as cc, type PaymentType as cd, type QuantityLimit as ce, type FixedPriceOptions as cf, type DynamicPriceOptions as cg, type Product as ch, type ProductPriceOptionsOneOf as ci, type MultilineAddressValidation as cj, type FieldOverrides as ck, type FieldsOverrides as cl, type ObjectArrayType as cm, type NestedFormFieldOverrides as cn, type Validation as co, type ValidationValidationOneOf as cp, type DataExtensionsDetails as cq, type NestedFormOverrides as cr, type FormFieldV2 as cs, type FormFieldV2FieldTypeOptionsOneOf as ct, type InputFieldStringType as cu, type InputFieldStringTypeFormatOptionsOneOf as cv, type InputFieldStringTypeDateTimeConstraints as cw, type InputFieldStringTypePhoneConstraints as cx, type TextInput as cy, type RichContent as cz, type UpdateSubmission as d, type BulletedListData as d$, type GalleryOptions as d0, type GalleryOptionsLayout as d1, type ItemStyle as d2, type Thumbnails as d3, type GIFData as d4, type GIF as d5, type HeadingData as d6, type HTMLData as d7, type HTMLDataDataOneOf as d8, type ImageData as d9, type ColorData as dA, type LinkData as dB, type MentionData as dC, type FontSizeData as dD, type SpoilerData as dE, type AppEmbedData as dF, type AppEmbedDataAppDataOneOf as dG, type BookingData as dH, type EventData as dI, type ButtonStyles as dJ, type ImageStyles as dK, type RibbonStyles as dL, type CardStyles as dM, type PricingData as dN, type VideoData as dO, type PlaybackOptions as dP, type EmbedData as dQ, type Oembed as dR, type CollapsibleListData as dS, type TableData as dT, type Dimensions as dU, type TableCellData as dV, type CellStyle as dW, type BorderColors as dX, type ListValue as dY, type AudioData as dZ, type OrderedListData as d_, type StylesBorder as da, type ImageDataStyles as db, type LinkPreviewData as dc, type LinkPreviewDataStyles as dd, type MapData as de, type MapSettings as df, type ParagraphData as dg, type PollData as dh, type Permissions as di, type PollOption as dj, type Settings as dk, type PollLayout as dl, type OptionLayout as dm, type Gradient as dn, type Background as dp, type BackgroundBackgroundOneOf as dq, type PollDesign as dr, type OptionDesign as ds, type Poll as dt, type PollDataLayout as du, type Design as dv, type TextData as dw, type Decoration as dx, type DecorationDataOneOf as dy, type AnchorData as dz, type UpdateSubmissionValidationErrors as e, type FormFieldContactInfoEmailInfo as e$, type BlockquoteData as e0, type CaptionData as e1, type LayoutData as e2, type BackgroundImage as e3, type LayoutCellData as e4, type Metadata as e5, type DocumentStyle as e6, type TextNodeStyle as e7, type MediaItem as e8, type MediaItemMediaOneOf as e9, type Option as eA, type Tags as eB, type TagsOption as eC, type ServicesCheckboxGroup as eD, type FileType as eE, type FileUpload as eF, type Signature as eG, type ProductCheckboxGroup as eH, type ProductCheckboxGroupOption as eI, type DonationInput as eJ, type DonationInputOption as eK, type PaymentInput as eL, type FixedPayment as eM, type Appointment as eN, type AppointmentFormatInfoOneOf as eO, type Location as eP, type LocationLocationInfoOneOf as eQ, type InPersonOptions as eR, type VideoConferenceOptions as eS, type PhoneOptions as eT, type MultilineAddress as eU, type AddressLine2 as eV, type DefaultCountryConfig as eW, type DefaultCountryConfigOptionsOneOf as eX, type FieldsSettings as eY, type V4FormFieldContactInfo as eZ, type V4FormFieldContactInfoAdditionalInfoOneOf as e_, type MediaSettings as ea, type RadioGroup as eb, type RadioGroupOption as ec, type CustomOption as ed, type Dropdown as ee, type DropdownOption as ef, type DateTimeInput as eg, type PhoneInput as eh, type DateInput as ei, type TimeInput as ej, type DatePicker as ek, type ServicesDropdown as el, type ServiceOption as em, type InputFieldNumberType as en, type NumberInput as eo, type RatingInput as ep, type InputFieldBooleanType as eq, type Checkbox as er, type InputFieldArrayType as es, type InputFieldIntegerType as et, type InputFieldObjectType as eu, type InputFieldObjectTypePropertiesType as ev, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ew, type InputFieldArrayTypeArrayItems as ex, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as ey, type CheckboxGroup as ez, type ConfirmSubmissionResponse as f, type _NumberComponentTypeOptionsOneOf as f$, type FormFieldContactInfoPhoneInfo as f0, type FormFieldContactInfoAddressInfo as f1, type FormFieldContactInfoCustomFieldInfo as f2, type FormFieldContactInfoSubscriptionInfo as f3, type InputField_String as f4, type InputField_StringComponentTypeOptionsOneOf as f5, type InputField_Number as f6, type InputField_NumberComponentTypeOptionsOneOf as f7, type InputField_Boolean as f8, type InputField_BooleanComponentTypeOptionsOneOf as f9, type ValidationMessages as fA, type NumberType as fB, type BooleanType as fC, type ArrayType as fD, type ObjectType as fE, type PropertiesType as fF, type PropertiesTypePropertiesTypeOptionsOneOf as fG, type ArrayItems as fH, type ArrayItemsItemTypeOptionsOneOf as fI, type Repeater as fJ, type FormLayout as fK, type BreakPoint as fL, type ItemLayout as fM, type ItemLayoutItemOneOf as fN, type Group as fO, type Margin as fP, type Section as fQ, type FormFieldContactInfo as fR, type FormFieldContactInfoAdditionalInfoOneOf as fS, type EmailInfo as fT, type PhoneInfo as fU, type AddressInfo as fV, type CustomFieldInfo as fW, type SubscriptionInfo as fX, type _String as fY, type _StringComponentTypeOptionsOneOf as fZ, type _Number as f_, type InputField_Array as fa, type InputField_ArrayComponentTypeOptionsOneOf as fb, type InputField_Object as fc, type InputField_ObjectValidationOneOf as fd, type InputFieldWixFile as fe, type InputFieldWixFileComponentTypeOptionsOneOf as ff, type InputFieldPayment as fg, type InputFieldPaymentComponentTypeOptionsOneOf as fh, type InputFieldMultilineAddress as fi, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fj, type InputFieldScheduling as fk, type InputFieldSchedulingComponentTypeOptionsOneOf as fl, type FormFieldV2InputField as fm, type FormFieldV2InputFieldInputTypeOptionsOneOf as fn, type DisplayField as fo, type DisplayFieldDisplayFieldTypeOptionsOneOf as fp, type V4RichContentOptions as fq, type V4PageNavigationOptions as fr, type Field as fs, type FieldFieldTypeOptionsOneOf as ft, type InputField as fu, type InputFieldInputTypeOptionsOneOf as fv, type StringType as fw, type StringTypeFormatOptionsOneOf as fx, type DateTimeConstraints as fy, type PhoneConstraints as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionRequest as g$, type _Boolean as g0, type _BooleanComponentTypeOptionsOneOf as g1, type _Array as g2, type _ArrayComponentTypeOptionsOneOf as g3, type _Object as g4, type WixFile as g5, type WixFileComponentTypeOptionsOneOf as g6, type Payment as g7, type PaymentComponentTypeOptionsOneOf as g8, type Scheduling as g9, type AllowedValuesOptions as gA, type FieldOverride as gB, type FieldOverridePropertyTypeOptionsOneOf as gC, type ConditionNode as gD, type ConditionNodeNodeOneOf as gE, type AndCondition as gF, type OrCondition as gG, type Condition as gH, type RuleFormOverride as gI, type RuleFormOverrideEntityTypeOptionsOneOf as gJ, type CreateCheckoutFromSubmissionResponse as gK, type Checkout as gL, type IsFormSubmittableRequest as gM, type IsFormSubmittableResponse as gN, type DomainEvent as gO, type DomainEventBodyOneOf as gP, type EntityCreatedEvent as gQ, type RestoreInfo as gR, type EntityUpdatedEvent as gS, type EntityDeletedEvent as gT, type ActionEvent as gU, type Empty as gV, type MessageEnvelope as gW, type IdentificationData as gX, type IdentificationDataIdOneOf as gY, type UpsertContactFromSubmissionRequest as gZ, type SubmitContactResponse as g_, type SchedulingComponentTypeOptionsOneOf as ga, type Address as gb, type AddressComponentTypeOptionsOneOf as gc, type ObjectArray as gd, type ObjectArrayComponentTypeOptionsOneOf as ge, type FieldsDisplayField as gf, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as gg, type RichContentOptions as gh, type PageNavigationOptions as gi, type Step as gj, type FormRule as gk, type FormOverride as gl, type FormProperties as gm, type PostSubmissionTriggers as gn, type UpsertContact as go, type NestedForm as gp, type LimitationRule as gq, type RequiredIndicatorProperties as gr, type SubmitSettings as gs, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gt, type ThankYouMessageOptions as gu, type RedirectOptions as gv, type FieldGroup as gw, type Rule as gx, type RequiredOptions as gy, type HiddenOptions as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ListFormattedSubmissionsRequest as h$, type CreateSubmissionResponse as h0, type SubmissionValidationErrorsDetails as h1, type ValidationError as h2, type CreateSubmissionForMigrationRequest as h3, type CreateSubmissionForMigrationResponse as h4, type CreateSubmissionBySubmitterRequest as h5, type CreateSubmissionBySubmitterResponse as h6, type BulkCreateSubmissionBySubmitterRequest as h7, type BulkCreateSubmissionBySubmitterData as h8, type BulkCreateSubmissionBySubmitterResponse as h9, type CursorQueryPagingMethodOneOf as hA, type Sorting as hB, type SearchSubmissionsByNamespaceRequest as hC, type CursorSearch as hD, type CursorSearchPagingMethodOneOf as hE, type SearchDetails as hF, type SearchSubmissionsByNamespaceForExportRequest as hG, type SearchSubmissionsByNamespaceForExportResponse as hH, type QuerySubmissionsByNamespaceRequest as hI, type QuerySubmissionsByNamespaceResponse as hJ, type QuerySubmissionsByNamespaceForExportRequest as hK, type QuerySubmissionsByNamespaceForExportResponse as hL, type CountSubmissionsByFilterRequest as hM, type FormSubmissionsCount as hN, type CountSubmissionsRequest as hO, type CountDeletedSubmissionsRequest as hP, type FormDeletedSubmissionsCount as hQ, type GetMediaUploadURLRequest as hR, type BulkMarkSubmissionsAsSeenRequest as hS, type GetSubmissionDownloadUrlRequest as hT, type SubmissionDocument as hU, type SubmissionDocumentDocumentOneOf as hV, type DocumentReady as hW, type DownloadSubmissionRequest as hX, type HeadersEntry as hY, type GetFormattedSubmissionRequest as hZ, type FormattedSubmission as h_, type BulkSubmissionResult as ha, type ItemMetadata as hb, type ApplicationError as hc, type BulkActionMetadata as hd, type GetSubmissionRequest as he, type GetSubmissionResponse as hf, type GetSubmissionByCheckoutIdRequest as hg, type GetSubmissionByCheckoutIdResponse as hh, type UpdateSubmissionRequest as hi, type UpdateSubmissionResponse as hj, type ConfirmSubmissionRequest as hk, type DeleteSubmissionRequest as hl, type DeleteSubmissionResponse as hm, type BulkDeleteSubmissionRequest as hn, type BulkDeleteSubmissionResult as ho, type RestoreSubmissionFromTrashBinRequest as hp, type RemoveSubmissionFromTrashBinRequest as hq, type RemoveSubmissionFromTrashBinResponse as hr, type BulkRemoveSubmissionFromTrashBinRequest as hs, type BulkRemoveSubmissionFromTrashBinResult as ht, type ListDeletedSubmissionsRequest as hu, type CursorPaging as hv, type CursorPagingMetadata as hw, type Cursors as hx, type GetDeletedSubmissionRequest as hy, type QuerySubmissionRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type InitialExpandedItemsWithLiterals as i$, type ListFormattedSubmissionsResponse as i0, type FormattedFormSubmission as i1, type UpdateExtendedFieldsRequest as i2, type BulkUpdateFormSubmissionTagsRequest as i3, type BulkUpdateFormSubmissionTagsResponse as i4, type BulkUpdateFormSubmissionTagsResult as i5, type BulkUpdateFormSubmissionTagsByFilterRequest as i6, type BulkUpdateFormSubmissionTagsByFilterResponse as i7, type ValidateFormSubmissionRequest as i8, type FieldViolation as i9, type LineStyleWithLiterals as iA, type WidthWithLiterals as iB, type DividerDataAlignmentWithLiterals as iC, type ViewModeWithLiterals as iD, type LayoutTypeWithLiterals as iE, type OrientationWithLiterals as iF, type CropWithLiterals as iG, type ThumbnailsAlignmentWithLiterals as iH, type GIFTypeWithLiterals as iI, type SourceWithLiterals as iJ, type StylesPositionWithLiterals as iK, type MapTypeWithLiterals as iL, type ViewRoleWithLiterals as iM, type VoteRoleWithLiterals as iN, type PollLayoutTypeWithLiterals as iO, type PollLayoutDirectionWithLiterals as iP, type BackgroundTypeWithLiterals as iQ, type DecorationTypeWithLiterals as iR, type FontTypeWithLiterals as iS, type PositionWithLiterals as iT, type AspectRatioWithLiterals as iU, type ResizingWithLiterals as iV, type PlacementWithLiterals as iW, type CardStylesTypeWithLiterals as iX, type CardStylesAlignmentWithLiterals as iY, type LayoutWithLiterals as iZ, type AppTypeWithLiterals as i_, type FieldViolationErrorDataOneOf as ia, type SubmissionValidationErrors as ib, type SubmissionValidationError as ic, type SubmissionValidationErrorErrorMessageOneOf as id, type BaseEventMetadata as ie, type EventMetadata as ig, type FormSubmissionSearchSpec as ih, type SubmissionsQueryResult as ii, type BulkUpdateFormSubmissionTagsOptions as ij, type BulkUpdateFormSubmissionTagsByFilterOptions as ik, type SubmissionStatusWithLiterals as il, type OptInLevelWithLiterals as im, type StringTypeFormatEnumFormatWithLiterals as io, type ValidationFormatWithLiterals as ip, type ProductTypeWithLiterals as iq, type PriceTypeWithLiterals as ir, type InputFieldStringTypeFormatEnumFormatWithLiterals as is, type InputFieldStringComponentTypeWithLiterals as it, type NodeTypeWithLiterals as iu, type WidthTypeWithLiterals as iv, type PluginContainerDataAlignmentWithLiterals as iw, type ButtonDataTypeWithLiterals as ix, type LinkTargetWithLiterals as iy, type TextAlignmentWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type IdentityTypeWithLiterals as j$, type DirectionWithLiterals as j0, type VerticalAlignmentWithLiterals as j1, type NullValueWithLiterals as j2, type ScalingWithLiterals as j3, type LayoutDataImagePositionWithLiterals as j4, type VerticalAlignmentAlignmentWithLiterals as j5, type ResponsivenessBehaviourWithLiterals as j6, type ImagePositionWithLiterals as j7, type AlignmentWithLiterals as j8, type ImageFitWithLiterals as j9, type BooleanComponentTypeWithLiterals as jA, type ItemTypeWithLiterals as jB, type PropertiesTypeEnumWithLiterals as jC, type ArrayComponentTypeWithLiterals as jD, type WixFileComponentTypeWithLiterals as jE, type PaymentComponentTypeWithLiterals as jF, type ComponentTypeWithLiterals as jG, type ObjectArrayComponentTypeWithLiterals as jH, type SchedulingComponentTypeWithLiterals as jI, type InputTypeWithLiterals as jJ, type EmailInfoTagWithLiterals as jK, type PhoneInfoTagWithLiterals as jL, type TagWithLiterals as jM, type ConfirmationLevelWithLiterals as jN, type ContactFieldWithLiterals as jO, type DisplayFieldDisplayFieldTypeWithLiterals as jP, type OverrideEntityTypeWithLiterals as jQ, type KindWithLiterals as jR, type SpamFilterProtectionLevelWithLiterals as jS, type RequiredIndicatorWithLiterals as jT, type RequiredIndicatorPlacementWithLiterals as jU, type TargetWithLiterals as jV, type SubmitSuccessActionWithLiterals as jW, type ChangeablePropertyWithLiterals as jX, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jY, type OperatorWithLiterals as jZ, type WebhookIdentityTypeWithLiterals as j_, type NumberOfColumnsWithLiterals as ja, type FirstDayOfWeekWithLiterals as jb, type InputFieldNumberComponentTypeWithLiterals as jc, type InputFieldBooleanComponentTypeWithLiterals as jd, type ArrayItemsItemTypeWithLiterals as je, type PropertiesTypePropertiesTypeEnumWithLiterals as jf, type InputFieldArrayComponentTypeWithLiterals as jg, type InputFieldWixFileComponentTypeWithLiterals as jh, type UploadFileFormatWithLiterals as ji, type InputFieldPaymentComponentTypeWithLiterals as jj, type InputFieldSchedulingComponentTypeWithLiterals as jk, type FormatWithLiterals as jl, type MultilineAddressComponentTypeWithLiterals as jm, type TypeWithLiterals as jn, type InputFieldInputTypeWithLiterals as jo, type FormFieldContactInfoEmailInfoTagWithLiterals as jp, type FormFieldContactInfoPhoneInfoTagWithLiterals as jq, type AddressInfoTagWithLiterals as jr, type SubscriptionInfoOptInLevelWithLiterals as js, type FormFieldContactInfoContactFieldWithLiterals as jt, type FormFieldV2FieldTypeWithLiterals as ju, type DisplayFieldTypeWithLiterals as jv, type FieldTypeWithLiterals as jw, type FormatEnumFormatWithLiterals as jx, type StringComponentTypeWithLiterals as jy, type NumberComponentTypeWithLiterals as jz, type CursorQuery as k, type ErrorTypeWithLiterals as k0, type SortOrderWithLiterals as k1, type ModeWithLiterals as k2, type StatusWithLiterals as k3, type SubmissionErrorTypeWithLiterals as k4, type CommonSearchWithEntityContext as k5, onSubmissionCreated as k6, onSubmissionDeleted as k7, onSubmissionRemovedSubmissionFromTrash as k8, onSubmissionStatusUpdated as k9, validateFormSubmission as kA, onSubmissionContactMapped as ka, onSubmissionContactMappingSkipped as kb, onSubmissionUpdated as kc, upsertContactFromSubmission as kd, createSubmission as ke, getSubmission as kf, updateSubmission as kg, confirmSubmission as kh, deleteSubmission as ki, bulkDeleteSubmission as kj, restoreSubmissionFromTrashBin as kk, removeSubmissionFromTrashBin as kl, bulkRemoveSubmissionFromTrashBin as km, listDeletedSubmissions as kn, getDeletedSubmission as ko, querySubmission as kp, querySubmissionsByNamespace as kq, countSubmissionsByFilter as kr, countSubmissions as ks, countDeletedSubmissions as kt, getMediaUploadUrl as ku, bulkMarkSubmissionsAsSeen as kv, getSubmissionDownloadUrl as kw, downloadSubmission as kx, getFormattedSubmission as ky, updateExtendedFields as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
7460
+ export { PriceType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type QuerySubmissionsByNamespaceOptions as O, typedQuerySubmissionsByNamespace as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionsQueryBuilder as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, SubmissionStatus as W, OptInLevel as X, StringTypeFormatEnumFormat as Y, ValidationFormat as Z, ProductType as _, type UpsertContactFromSubmissionResponse as a, EmailInfoTag as a$, FieldType as a0, FormatEnumFormat as a1, StringComponentType as a2, NodeType as a3, WidthType as a4, PluginContainerDataAlignment as a5, ButtonDataType as a6, LinkTarget as a7, TextAlignment as a8, LineStyle as a9, InitialExpandedItems as aA, Direction as aB, VerticalAlignment as aC, NullValue as aD, Scaling as aE, LayoutDataImagePosition as aF, VerticalAlignmentAlignment as aG, ResponsivenessBehaviour as aH, ImagePosition as aI, Alignment as aJ, ImageFit as aK, NumberOfColumns as aL, FirstDayOfWeek as aM, NumberComponentType as aN, BooleanComponentType as aO, ItemType as aP, PropertiesTypeEnum as aQ, ArrayComponentType as aR, WixFileComponentType as aS, UploadFileFormat as aT, PaymentComponentType as aU, ComponentType as aV, Type as aW, ObjectArrayComponentType as aX, SchedulingComponentType as aY, Format as aZ, InputType as a_, Width as aa, DividerDataAlignment as ab, ViewMode as ac, LayoutType as ad, Orientation as ae, Crop as af, ThumbnailsAlignment as ag, GIFType as ah, Source as ai, StylesPosition as aj, MapType as ak, ViewRole as al, VoteRole as am, PollLayoutType as an, PollLayoutDirection as ao, BackgroundType as ap, DecorationType as aq, FontType as ar, Position as as, AspectRatio as at, Resizing as au, Placement as av, CardStylesType as aw, CardStylesAlignment as ax, Layout as ay, AppType as az, type CreateSubmissionApplicationErrors as b, type PaymentType as b$, PhoneInfoTag as b0, Tag as b1, ConfirmationLevel as b2, ContactField as b3, DisplayFieldType as b4, OverrideEntityType as b5, Kind as b6, FormFieldContactInfoEmailInfoTag as b7, FormFieldContactInfoPhoneInfoTag as b8, AddressInfoTag as b9, type MarketingSubscriptionDetails as bA, type SubmissionContactMappingSkipped as bB, type CreateCheckoutFromSubmissionRequest as bC, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bD, type Form as bE, type FormField as bF, type FormFieldStringType as bG, type FormFieldStringTypeFormatOptionsOneOf as bH, type StringErrorMessages as bI, type StringTypeDateTimeConstraints as bJ, type StringTypePhoneConstraints as bK, type StringTypeValidationMessages as bL, type FormFieldNumberType as bM, type NumberErrorMessages as bN, type IntegerType as bO, type FormFieldBooleanType as bP, type BooleanErrorMessages as bQ, type FormFieldArrayType as bR, type FormFieldObjectType as bS, type ObjectTypePropertiesType as bT, type ObjectTypePropertiesTypePropertiesTypeOneOf as bU, type ObjectErrorMessages as bV, type ArrayTypeArrayItems as bW, type ArrayTypeArrayItemsItemsOneOf as bX, type ArrayErrorMessages as bY, type PredefinedValidation as bZ, type PredefinedValidationFormatOptionsOneOf as b_, SubscriptionInfoOptInLevel as ba, FormFieldContactInfoContactField as bb, SpamFilterProtectionLevel as bc, RequiredIndicator as bd, RequiredIndicatorPlacement as be, Target as bf, SubmitSuccessAction as bg, ChangeableProperty as bh, OverrideEntityTypeEnumOverrideEntityType as bi, Operator as bj, WebhookIdentityType as bk, IdentityType as bl, ErrorType as bm, SortOrder as bn, Mode as bo, Status as bp, SubmissionErrorType as bq, type Submitter as br, type SubmitterSubmitterOneOf as bs, type ExtendedFields as bt, type OrderDetails as bu, type PublicTags as bv, type TagList as bw, type FormSubmissionStatusUpdatedEvent as bx, type RemovedSubmissionFromTrash as by, type SubmissionContactMapped as bz, type CreateSubmissionValidationErrors as c, type StylesBorder as c$, type QuantityLimit as c0, type FixedPriceOptions as c1, type DynamicPriceOptions as c2, type Product as c3, type ProductPriceOptionsOneOf as c4, type MultilineAddressValidation as c5, type FieldOverrides as c6, type FieldsOverrides as c7, type ObjectArrayType as c8, type NestedFormFieldOverrides as c9, type Styles as cA, type Link as cB, type LinkDataOneOf as cC, type Rel as cD, type CodeBlockData as cE, type TextStyle as cF, type DividerData as cG, type FileData as cH, type FileSource as cI, type FileSourceDataOneOf as cJ, type PDFSettings as cK, type GalleryData as cL, type Media as cM, type Image as cN, type Video as cO, type Item as cP, type ItemDataOneOf as cQ, type GalleryOptions as cR, type GalleryOptionsLayout as cS, type ItemStyle as cT, type Thumbnails as cU, type GIFData as cV, type GIF as cW, type HeadingData as cX, type HTMLData as cY, type HTMLDataDataOneOf as cZ, type ImageData as c_, type Validation as ca, type ValidationValidationOneOf as cb, type DataExtensionsDetails as cc, type NestedFormOverrides as cd, type Field as ce, type FieldFieldTypeOptionsOneOf as cf, type InputField as cg, type InputFieldInputTypeOptionsOneOf as ch, type StringType as ci, type StringTypeFormatOptionsOneOf as cj, type DateTimeConstraints as ck, type PhoneConstraints as cl, type ValidationMessages as cm, type TextInput as cn, type RichContent as co, type Node as cp, type NodeDataOneOf as cq, type NodeStyle as cr, type ButtonData as cs, type Border as ct, type Colors as cu, type PluginContainerData as cv, type PluginContainerDataWidth as cw, type PluginContainerDataWidthDataOneOf as cx, type Spoiler as cy, type Height as cz, type UpdateSubmission as d, type MediaItem as d$, type ImageDataStyles as d0, type LinkPreviewData as d1, type LinkPreviewDataStyles as d2, type MapData as d3, type MapSettings as d4, type ParagraphData as d5, type PollData as d6, type Permissions as d7, type PollOption as d8, type Settings as d9, type ImageStyles as dA, type RibbonStyles as dB, type CardStyles as dC, type PricingData as dD, type VideoData as dE, type PlaybackOptions as dF, type EmbedData as dG, type Oembed as dH, type CollapsibleListData as dI, type TableData as dJ, type Dimensions as dK, type TableCellData as dL, type CellStyle as dM, type BorderColors as dN, type BorderWidths as dO, type ListValue as dP, type AudioData as dQ, type OrderedListData as dR, type BulletedListData as dS, type BlockquoteData as dT, type CaptionData as dU, type LayoutData as dV, type BackgroundImage as dW, type LayoutCellData as dX, type Metadata as dY, type DocumentStyle as dZ, type TextNodeStyle as d_, type PollLayout as da, type OptionLayout as db, type Gradient as dc, type Background as dd, type BackgroundBackgroundOneOf as de, type PollDesign as df, type OptionDesign as dg, type Poll as dh, type PollDataLayout as di, type Design as dj, type TextData as dk, type Decoration as dl, type DecorationDataOneOf as dm, type AnchorData as dn, type ColorData as dp, type LinkData as dq, type MentionData as dr, type FontSizeData as ds, type SpoilerData as dt, type FontFamilyData as du, type AppEmbedData as dv, type AppEmbedDataAppDataOneOf as dw, type BookingData as dx, type EventData as dy, type ButtonStyles as dz, type UpdateSubmissionValidationErrors as e, type AddressInfo as e$, type MediaItemMediaOneOf as e0, type MediaSettings as e1, type RadioGroup as e2, type RadioGroupOption as e3, type CustomOption as e4, type Dropdown as e5, type DropdownOption as e6, type DateTimeInput as e7, type PhoneInput as e8, type DateInput as e9, type DonationInputOption as eA, type PaymentInput as eB, type FixedPayment as eC, type MultilineAddress as eD, type AddressLine2 as eE, type DefaultCountryConfig as eF, type DefaultCountryConfigOptionsOneOf as eG, type FieldsSettings as eH, type Repeater as eI, type FormLayout as eJ, type BreakPoint as eK, type ItemLayout as eL, type ItemLayoutItemOneOf as eM, type Group as eN, type Margin as eO, type Section as eP, type Appointment as eQ, type AppointmentFormatInfoOneOf as eR, type Location as eS, type LocationLocationInfoOneOf as eT, type InPersonOptions as eU, type VideoConferenceOptions as eV, type PhoneOptions as eW, type FormFieldContactInfo as eX, type FormFieldContactInfoAdditionalInfoOneOf as eY, type EmailInfo as eZ, type PhoneInfo as e_, type TimeInput as ea, type DatePicker as eb, type ServicesDropdown as ec, type ServiceOption as ed, type NumberType as ee, type NumberInput as ef, type RatingInput as eg, type BooleanType as eh, type Checkbox as ei, type ArrayType as ej, type ObjectType as ek, type PropertiesType as el, type PropertiesTypePropertiesTypeOptionsOneOf as em, type ArrayItems as en, type ArrayItemsItemTypeOptionsOneOf as eo, type CheckboxGroup as ep, type Option as eq, type Tags as er, type TagsOption as es, type ServicesCheckboxGroup as et, type FileType as eu, type FileUpload as ev, type Signature as ew, type ProductCheckboxGroup as ex, type ProductCheckboxGroupOption as ey, type DonationInput as ez, type ConfirmSubmissionResponse as f, type DomainEvent as f$, type CustomFieldInfo as f0, type SubscriptionInfo as f1, type _String as f2, type _StringComponentTypeOptionsOneOf as f3, type _Number as f4, type _NumberComponentTypeOptionsOneOf as f5, type _Boolean as f6, type _BooleanComponentTypeOptionsOneOf as f7, type _Array as f8, type _ArrayComponentTypeOptionsOneOf as f9, type FormFieldContactInfoCustomFieldInfo as fA, type FormFieldContactInfoSubscriptionInfo as fB, type NestedForm as fC, type LimitationRule as fD, type RequiredIndicatorProperties as fE, type SubmitSettings as fF, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fG, type ThankYouMessageOptions as fH, type RedirectOptions as fI, type FieldGroup as fJ, type Rule as fK, type RequiredOptions as fL, type HiddenOptions as fM, type AllowedValuesOptions as fN, type FieldOverride as fO, type FieldOverridePropertyTypeOptionsOneOf as fP, type ConditionNode as fQ, type ConditionNodeNodeOneOf as fR, type AndCondition as fS, type OrCondition as fT, type Condition as fU, type RuleFormOverride as fV, type RuleFormOverrideEntityTypeOptionsOneOf as fW, type CreateCheckoutFromSubmissionResponse as fX, type Checkout as fY, type IsFormSubmittableRequest as fZ, type IsFormSubmittableResponse as f_, type _Object as fa, type WixFile as fb, type WixFileComponentTypeOptionsOneOf as fc, type Payment as fd, type PaymentComponentTypeOptionsOneOf as fe, type Scheduling as ff, type SchedulingComponentTypeOptionsOneOf as fg, type Address as fh, type AddressComponentTypeOptionsOneOf as fi, type ObjectArray as fj, type ObjectArrayComponentTypeOptionsOneOf as fk, type DisplayField as fl, type DisplayFieldDisplayFieldTypeOptionsOneOf as fm, type RichContentOptions as fn, type PageNavigationOptions as fo, type Step as fp, type FormRule as fq, type FormOverride as fr, type FormProperties as fs, type PostSubmissionTriggers as ft, type UpsertContact as fu, type V4FormFieldContactInfo as fv, type V4FormFieldContactInfoAdditionalInfoOneOf as fw, type FormFieldContactInfoEmailInfo as fx, type FormFieldContactInfoPhoneInfo as fy, type FormFieldContactInfoAddressInfo as fz, type BulkDeleteSubmissionResponse as g, type CountSubmissionsRequest as g$, type DomainEventBodyOneOf as g0, type EntityCreatedEvent as g1, type RestoreInfo as g2, type EntityUpdatedEvent as g3, type EntityDeletedEvent as g4, type ActionEvent as g5, type Empty as g6, type MessageEnvelope as g7, type IdentificationData as g8, type IdentificationDataIdOneOf as g9, type BulkDeleteSubmissionRequest as gA, type BulkDeleteSubmissionResult as gB, type RestoreSubmissionFromTrashBinRequest as gC, type RemoveSubmissionFromTrashBinRequest as gD, type RemoveSubmissionFromTrashBinResponse as gE, type BulkRemoveSubmissionFromTrashBinRequest as gF, type BulkRemoveSubmissionFromTrashBinResult as gG, type ListDeletedSubmissionsRequest as gH, type CursorPaging as gI, type CursorPagingMetadata as gJ, type Cursors as gK, type GetDeletedSubmissionRequest as gL, type QuerySubmissionRequest as gM, type CursorQueryPagingMethodOneOf as gN, type Sorting as gO, type SearchSubmissionsByNamespaceRequest as gP, type CursorSearch as gQ, type CursorSearchPagingMethodOneOf as gR, type SearchDetails as gS, type SearchSubmissionsByNamespaceForExportRequest as gT, type SearchSubmissionsByNamespaceForExportResponse as gU, type QuerySubmissionsByNamespaceRequest as gV, type QuerySubmissionsByNamespaceResponse as gW, type QuerySubmissionsByNamespaceForExportRequest as gX, type QuerySubmissionsByNamespaceForExportResponse as gY, type CountSubmissionsByFilterRequest as gZ, type FormSubmissionsCount as g_, type UpsertContactFromSubmissionRequest as ga, type SubmitContactResponse as gb, type CreateSubmissionRequest as gc, type CreateSubmissionResponse as gd, type SubmissionValidationErrorsDetails as ge, type ValidationError as gf, type CreateSubmissionForMigrationRequest as gg, type CreateSubmissionForMigrationResponse as gh, type CreateSubmissionBySubmitterRequest as gi, type CreateSubmissionBySubmitterResponse as gj, type BulkCreateSubmissionBySubmitterRequest as gk, type BulkCreateSubmissionBySubmitterData as gl, type BulkCreateSubmissionBySubmitterResponse as gm, type BulkSubmissionResult as gn, type ItemMetadata as go, type ApplicationError as gp, type BulkActionMetadata as gq, type GetSubmissionRequest as gr, type GetSubmissionResponse as gs, type GetSubmissionByCheckoutIdRequest as gt, type GetSubmissionByCheckoutIdResponse as gu, type UpdateSubmissionRequest as gv, type UpdateSubmissionResponse as gw, type ConfirmSubmissionRequest as gx, type DeleteSubmissionRequest as gy, type DeleteSubmissionResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type PollLayoutDirectionWithLiterals as h$, type CountDeletedSubmissionsRequest as h0, type FormDeletedSubmissionsCount as h1, type GetMediaUploadURLRequest as h2, type BulkMarkSubmissionsAsSeenRequest as h3, type GetSubmissionDownloadUrlRequest as h4, type SubmissionDocument as h5, type SubmissionDocumentDocumentOneOf as h6, type DocumentReady as h7, type DownloadSubmissionRequest as h8, type HeadersEntry 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 GetFormattedSubmissionRequest as ha, type FormattedSubmission as hb, type ListFormattedSubmissionsRequest as hc, type ListFormattedSubmissionsResponse as hd, type FormattedFormSubmission as he, type UpdateExtendedFieldsRequest as hf, type BulkUpdateFormSubmissionTagsRequest as hg, type BulkUpdateFormSubmissionTagsResponse as hh, type BulkUpdateFormSubmissionTagsResult as hi, type BulkUpdateFormSubmissionTagsByFilterRequest as hj, type BulkUpdateFormSubmissionTagsByFilterResponse as hk, type ValidateFormSubmissionRequest as hl, type FieldViolation as hm, type FieldViolationErrorDataOneOf as hn, type SubmissionValidationErrors as ho, type SubmissionValidationError as hp, type SubmissionValidationErrorErrorMessageOneOf as hq, type BaseEventMetadata as hr, type EventMetadata as hs, type FormSubmissionSearchSpec as ht, type SubmissionsQueryResult as hu, type BulkUpdateFormSubmissionTagsOptions as hv, type BulkUpdateFormSubmissionTagsByFilterOptions 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, 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, validateFormSubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };