@wix/forms 1.0.135 → 1.0.137
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/type-bundles/context.bundle.d.ts +236 -27
- package/type-bundles/index.bundle.d.ts +236 -27
- package/type-bundles/meta.bundle.d.ts +267 -27
|
@@ -605,12 +605,15 @@ interface StringTypePhoneConstraints$1 {
|
|
|
605
605
|
allowedCountryCodes?: string[];
|
|
606
606
|
}
|
|
607
607
|
declare enum StringComponentType$1 {
|
|
608
|
-
|
|
608
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
609
609
|
TEXT_INPUT = "TEXT_INPUT",
|
|
610
610
|
RADIO_GROUP = "RADIO_GROUP",
|
|
611
611
|
DROPDOWN = "DROPDOWN",
|
|
612
612
|
DATE_TIME = "DATE_TIME",
|
|
613
|
-
PHONE_INPUT = "PHONE_INPUT"
|
|
613
|
+
PHONE_INPUT = "PHONE_INPUT",
|
|
614
|
+
DATE_INPUT = "DATE_INPUT",
|
|
615
|
+
TIME_INPUT = "TIME_INPUT",
|
|
616
|
+
DATE_PICKER = "DATE_PICKER"
|
|
614
617
|
}
|
|
615
618
|
interface TextInput$1 {
|
|
616
619
|
/** Label of the field */
|
|
@@ -1974,7 +1977,7 @@ interface DateTimeInputDateTimeInputTypeOptionsOneOf$1 {
|
|
|
1974
1977
|
/** Options specific to date picker type. */
|
|
1975
1978
|
datePickerOptions?: DatePickerOptions$1;
|
|
1976
1979
|
}
|
|
1977
|
-
declare enum
|
|
1980
|
+
declare enum FirstDayOfWeekEnumFirstDayOfWeek$1 {
|
|
1978
1981
|
MONDAY = "MONDAY",
|
|
1979
1982
|
SUNDAY = "SUNDAY"
|
|
1980
1983
|
}
|
|
@@ -2007,7 +2010,7 @@ interface TimeOptions$1 {
|
|
|
2007
2010
|
}
|
|
2008
2011
|
interface DatePickerOptions$1 {
|
|
2009
2012
|
/** First day of the week displayed on date picker. */
|
|
2010
|
-
firstDayOfWeek?:
|
|
2013
|
+
firstDayOfWeek?: FirstDayOfWeekEnumFirstDayOfWeek$1;
|
|
2011
2014
|
}
|
|
2012
2015
|
interface PhoneInput$1 {
|
|
2013
2016
|
/** Label of the field */
|
|
@@ -2024,6 +2027,62 @@ interface PhoneInput$1 {
|
|
|
2024
2027
|
/** Default value of the country code */
|
|
2025
2028
|
defaultCountryCode?: string | null;
|
|
2026
2029
|
}
|
|
2030
|
+
interface DateInput$1 {
|
|
2031
|
+
/** Label of the field. Displayed text for the date/time input. */
|
|
2032
|
+
label?: string | null;
|
|
2033
|
+
/** Description of the field. Additional information about the date/time input. */
|
|
2034
|
+
description?: RichContent$1;
|
|
2035
|
+
/**
|
|
2036
|
+
* Flag identifying whether to show or hide the label.
|
|
2037
|
+
* Default: true
|
|
2038
|
+
*/
|
|
2039
|
+
showLabel?: boolean | null;
|
|
2040
|
+
/**
|
|
2041
|
+
* Flag identifying whether to show or hide the placeholder.
|
|
2042
|
+
* Default: true
|
|
2043
|
+
*/
|
|
2044
|
+
showPlaceholder?: boolean | null;
|
|
2045
|
+
}
|
|
2046
|
+
interface TimeInput$1 {
|
|
2047
|
+
/** Label of the field. Displayed text for the date/time input. */
|
|
2048
|
+
label?: string | null;
|
|
2049
|
+
/** Description of the field. Additional information about the date/time input. */
|
|
2050
|
+
description?: RichContent$1;
|
|
2051
|
+
/**
|
|
2052
|
+
* Flag identifying whether to show or hide the label.
|
|
2053
|
+
* Default: true
|
|
2054
|
+
*/
|
|
2055
|
+
showLabel?: boolean | null;
|
|
2056
|
+
/**
|
|
2057
|
+
* Flag identifying whether to show or hide the placeholder.
|
|
2058
|
+
* Default: true
|
|
2059
|
+
*/
|
|
2060
|
+
showPlaceholder?: boolean | null;
|
|
2061
|
+
/**
|
|
2062
|
+
* Flag indicating whether to use the 24-hour time format.
|
|
2063
|
+
* Default: false.
|
|
2064
|
+
*/
|
|
2065
|
+
use24HourFormat?: boolean;
|
|
2066
|
+
}
|
|
2067
|
+
interface DatePicker$1 {
|
|
2068
|
+
/** Label of the field. Displayed text for the date/time input. */
|
|
2069
|
+
label?: string | null;
|
|
2070
|
+
/** Description of the field. Additional information about the date/time input. */
|
|
2071
|
+
description?: RichContent$1;
|
|
2072
|
+
/**
|
|
2073
|
+
* Flag identifying whether to show or hide the label.
|
|
2074
|
+
* Default: true
|
|
2075
|
+
*/
|
|
2076
|
+
showLabel?: boolean | null;
|
|
2077
|
+
/** Placeholder of date picker input */
|
|
2078
|
+
placeholder?: string | null;
|
|
2079
|
+
/** First day of the week displayed on date picker. */
|
|
2080
|
+
firstDayOfWeek?: FirstDayOfWeek$1;
|
|
2081
|
+
}
|
|
2082
|
+
declare enum FirstDayOfWeek$1 {
|
|
2083
|
+
MONDAY = "MONDAY",
|
|
2084
|
+
SUNDAY = "SUNDAY"
|
|
2085
|
+
}
|
|
2027
2086
|
interface InputFieldNumberType$1 {
|
|
2028
2087
|
/** Inclusive maximum value. */
|
|
2029
2088
|
maximum?: number | null;
|
|
@@ -2041,7 +2100,7 @@ interface InputFieldNumberErrorMessages$1 {
|
|
|
2041
2100
|
default?: string | null;
|
|
2042
2101
|
}
|
|
2043
2102
|
declare enum NumberComponentType$1 {
|
|
2044
|
-
|
|
2103
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2045
2104
|
NUMBER_INPUT = "NUMBER_INPUT",
|
|
2046
2105
|
RATING_INPUT = "RATING_INPUT"
|
|
2047
2106
|
}
|
|
@@ -2082,7 +2141,7 @@ interface InputFieldBooleanErrorMessages$1 {
|
|
|
2082
2141
|
default?: string | null;
|
|
2083
2142
|
}
|
|
2084
2143
|
declare enum BooleanComponentType$1 {
|
|
2085
|
-
|
|
2144
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2086
2145
|
CHECKBOX = "CHECKBOX"
|
|
2087
2146
|
}
|
|
2088
2147
|
interface Checkbox$1 {
|
|
@@ -2105,7 +2164,7 @@ interface InputFieldArrayType$1 {
|
|
|
2105
2164
|
errorMessages?: InputFieldArrayErrorMessages$1;
|
|
2106
2165
|
}
|
|
2107
2166
|
declare enum ItemType$1 {
|
|
2108
|
-
|
|
2167
|
+
UNKNOWN_ITEM_TYPE = "UNKNOWN_ITEM_TYPE",
|
|
2109
2168
|
STRING = "STRING",
|
|
2110
2169
|
NUMBER = "NUMBER",
|
|
2111
2170
|
BOOLEAN = "BOOLEAN",
|
|
@@ -2209,7 +2268,7 @@ interface InputFieldArrayErrorMessages$1 {
|
|
|
2209
2268
|
default?: string | null;
|
|
2210
2269
|
}
|
|
2211
2270
|
declare enum ComponentType$1 {
|
|
2212
|
-
|
|
2271
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2213
2272
|
CHECKBOX_GROUP = "CHECKBOX_GROUP"
|
|
2214
2273
|
}
|
|
2215
2274
|
interface CheckboxGroup$1 {
|
|
@@ -2260,7 +2319,7 @@ interface CustomOption$1 {
|
|
|
2260
2319
|
placeholder?: string | null;
|
|
2261
2320
|
}
|
|
2262
2321
|
declare enum WixFileComponentType$1 {
|
|
2263
|
-
|
|
2322
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2264
2323
|
FILE_UPLOAD = "FILE_UPLOAD",
|
|
2265
2324
|
SIGNATURE = "SIGNATURE"
|
|
2266
2325
|
}
|
|
@@ -2310,7 +2369,7 @@ interface Signature$1 {
|
|
|
2310
2369
|
imageUploadEnabled?: boolean;
|
|
2311
2370
|
}
|
|
2312
2371
|
declare enum PaymentComponentType$1 {
|
|
2313
|
-
|
|
2372
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2314
2373
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
2315
2374
|
DONATION_INPUT = "DONATION_INPUT"
|
|
2316
2375
|
}
|
|
@@ -2370,7 +2429,7 @@ interface CommonCustomOption$1 {
|
|
|
2370
2429
|
placeholder?: string | null;
|
|
2371
2430
|
}
|
|
2372
2431
|
declare enum MultilineAddressComponentType$1 {
|
|
2373
|
-
|
|
2432
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2374
2433
|
MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
|
|
2375
2434
|
}
|
|
2376
2435
|
interface MultilineAddress$1 {
|
|
@@ -2414,7 +2473,7 @@ interface FieldsSettings$1 {
|
|
|
2414
2473
|
addressLine2?: AddressLine2$1;
|
|
2415
2474
|
}
|
|
2416
2475
|
declare enum InputType$1 {
|
|
2417
|
-
|
|
2476
|
+
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
2418
2477
|
STRING = "STRING",
|
|
2419
2478
|
NUMBER = "NUMBER",
|
|
2420
2479
|
BOOLEAN = "BOOLEAN",
|
|
@@ -2516,6 +2575,12 @@ interface _String$1 extends _StringComponentTypeOptionsOneOf$1 {
|
|
|
2516
2575
|
dateTimeOptions?: DateTimeInput$1;
|
|
2517
2576
|
/** Phone input field */
|
|
2518
2577
|
phoneInputOptions?: PhoneInput$1;
|
|
2578
|
+
/** Dropdown based component for selecting date */
|
|
2579
|
+
dateInputOptions?: DateInput$1;
|
|
2580
|
+
/** Field for selecting time */
|
|
2581
|
+
timeInputOptions?: TimeInput$1;
|
|
2582
|
+
/** Calendar type component for selecting date */
|
|
2583
|
+
datePickerOptions?: DatePicker$1;
|
|
2519
2584
|
/** Validation of field output value. */
|
|
2520
2585
|
validation?: InputFieldStringType$1;
|
|
2521
2586
|
/**
|
|
@@ -2536,6 +2601,12 @@ interface _StringComponentTypeOptionsOneOf$1 {
|
|
|
2536
2601
|
dateTimeOptions?: DateTimeInput$1;
|
|
2537
2602
|
/** Phone input field */
|
|
2538
2603
|
phoneInputOptions?: PhoneInput$1;
|
|
2604
|
+
/** Dropdown based component for selecting date */
|
|
2605
|
+
dateInputOptions?: DateInput$1;
|
|
2606
|
+
/** Field for selecting time */
|
|
2607
|
+
timeInputOptions?: TimeInput$1;
|
|
2608
|
+
/** Calendar type component for selecting date */
|
|
2609
|
+
datePickerOptions?: DatePicker$1;
|
|
2539
2610
|
}
|
|
2540
2611
|
interface _Number$1 extends _NumberComponentTypeOptionsOneOf$1 {
|
|
2541
2612
|
/** Number value input field */
|
|
@@ -3373,6 +3444,28 @@ interface UpdateExtendedFieldsResponse {
|
|
|
3373
3444
|
/** only data from UpdateExtendedFieldsRequest namespace_data */
|
|
3374
3445
|
namespaceData?: Record<string, any> | null;
|
|
3375
3446
|
}
|
|
3447
|
+
interface ListFormsProvidersConfigsRequest {
|
|
3448
|
+
}
|
|
3449
|
+
interface ListFormsProvidersConfigsResponse {
|
|
3450
|
+
/** List of configs set by form providers */
|
|
3451
|
+
configs?: FormsSchemaProvidersConfig[];
|
|
3452
|
+
}
|
|
3453
|
+
interface FormsSchemaProvidersConfig {
|
|
3454
|
+
/** Namespace which can be used to create form */
|
|
3455
|
+
namespace?: string;
|
|
3456
|
+
/** Id of app which provides this config. */
|
|
3457
|
+
appId?: string;
|
|
3458
|
+
/** Restrictions associated with this namespace. */
|
|
3459
|
+
restrictions?: FormProviderRestrictions;
|
|
3460
|
+
}
|
|
3461
|
+
interface FormProviderRestrictions {
|
|
3462
|
+
/** Maximum amount of forms allowed per namespace. */
|
|
3463
|
+
maxFormsAmount?: number;
|
|
3464
|
+
/** Maximum amount of fields allowed per form. */
|
|
3465
|
+
maxFieldsAmount?: number;
|
|
3466
|
+
/** Maximum amount of deleted forms allowed per namespace. */
|
|
3467
|
+
maxDeletedFormsAmount?: number | null;
|
|
3468
|
+
}
|
|
3376
3469
|
interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
3377
3470
|
createdEvent?: EntityCreatedEvent$2;
|
|
3378
3471
|
updatedEvent?: EntityUpdatedEvent$2;
|
|
@@ -3827,7 +3920,7 @@ interface TimeOptionsNonNullableFields {
|
|
|
3827
3920
|
use24HourFormat: boolean;
|
|
3828
3921
|
}
|
|
3829
3922
|
interface DatePickerOptionsNonNullableFields {
|
|
3830
|
-
firstDayOfWeek:
|
|
3923
|
+
firstDayOfWeek: FirstDayOfWeekEnumFirstDayOfWeek$1;
|
|
3831
3924
|
}
|
|
3832
3925
|
interface DateTimeInputNonNullableFields {
|
|
3833
3926
|
dateTimeOptions?: DateTimeOptionsNonNullableFields;
|
|
@@ -3839,6 +3932,17 @@ interface DateTimeInputNonNullableFields {
|
|
|
3839
3932
|
interface PhoneInputNonNullableFields {
|
|
3840
3933
|
description?: RichContentNonNullableFields;
|
|
3841
3934
|
}
|
|
3935
|
+
interface DateInputNonNullableFields {
|
|
3936
|
+
description?: RichContentNonNullableFields;
|
|
3937
|
+
}
|
|
3938
|
+
interface TimeInputNonNullableFields {
|
|
3939
|
+
description?: RichContentNonNullableFields;
|
|
3940
|
+
use24HourFormat: boolean;
|
|
3941
|
+
}
|
|
3942
|
+
interface DatePickerNonNullableFields {
|
|
3943
|
+
description?: RichContentNonNullableFields;
|
|
3944
|
+
firstDayOfWeek: FirstDayOfWeek$1;
|
|
3945
|
+
}
|
|
3842
3946
|
interface StringTypePhoneConstraintsNonNullableFields {
|
|
3843
3947
|
allowedCountryCodes: string[];
|
|
3844
3948
|
}
|
|
@@ -3852,6 +3956,9 @@ interface _StringNonNullableFields {
|
|
|
3852
3956
|
dropdownOptions?: DropdownNonNullableFields;
|
|
3853
3957
|
dateTimeOptions?: DateTimeInputNonNullableFields;
|
|
3854
3958
|
phoneInputOptions?: PhoneInputNonNullableFields;
|
|
3959
|
+
dateInputOptions?: DateInputNonNullableFields;
|
|
3960
|
+
timeInputOptions?: TimeInputNonNullableFields;
|
|
3961
|
+
datePickerOptions?: DatePickerNonNullableFields;
|
|
3855
3962
|
validation?: InputFieldStringTypeNonNullableFields;
|
|
3856
3963
|
componentType: StringComponentType$1;
|
|
3857
3964
|
}
|
|
@@ -4169,6 +4276,18 @@ interface BulkRemoveDeletedFieldResponseNonNullableFields {
|
|
|
4169
4276
|
interface UpdateExtendedFieldsResponseNonNullableFields {
|
|
4170
4277
|
namespace: string;
|
|
4171
4278
|
}
|
|
4279
|
+
interface FormProviderRestrictionsNonNullableFields {
|
|
4280
|
+
maxFormsAmount: number;
|
|
4281
|
+
maxFieldsAmount: number;
|
|
4282
|
+
}
|
|
4283
|
+
interface FormsSchemaProvidersConfigNonNullableFields {
|
|
4284
|
+
namespace: string;
|
|
4285
|
+
appId: string;
|
|
4286
|
+
restrictions?: FormProviderRestrictionsNonNullableFields;
|
|
4287
|
+
}
|
|
4288
|
+
interface ListFormsProvidersConfigsResponseNonNullableFields {
|
|
4289
|
+
configs: FormsSchemaProvidersConfigNonNullableFields[];
|
|
4290
|
+
}
|
|
4172
4291
|
interface BulkCreateFormOptions {
|
|
4173
4292
|
/** Forms to be created. */
|
|
4174
4293
|
forms?: Form$1[];
|
|
@@ -4539,6 +4658,13 @@ interface UpdateExtendedFieldsSignature {
|
|
|
4539
4658
|
*/
|
|
4540
4659
|
(_id: string, namespace: string, options: UpdateExtendedFieldsOptions): Promise<UpdateExtendedFieldsResponse & UpdateExtendedFieldsResponseNonNullableFields>;
|
|
4541
4660
|
}
|
|
4661
|
+
declare function listFormsProvidersConfigs$1(httpClient: HttpClient): ListFormsProvidersConfigsSignature;
|
|
4662
|
+
interface ListFormsProvidersConfigsSignature {
|
|
4663
|
+
/**
|
|
4664
|
+
* List configurations set by apps providing ability to create forms under their domain.
|
|
4665
|
+
*/
|
|
4666
|
+
(): Promise<ListFormsProvidersConfigsResponse & ListFormsProvidersConfigsResponseNonNullableFields>;
|
|
4667
|
+
}
|
|
4542
4668
|
|
|
4543
4669
|
declare const createForm: BuildRESTFunction<typeof createForm$1> & typeof createForm$1;
|
|
4544
4670
|
declare const bulkCreateForm: BuildRESTFunction<typeof bulkCreateForm$1> & typeof bulkCreateForm$1;
|
|
@@ -4556,6 +4682,7 @@ declare const queryDeletedForms: BuildRESTFunction<typeof queryDeletedForms$1> &
|
|
|
4556
4682
|
declare const listDeletedForms: BuildRESTFunction<typeof listDeletedForms$1> & typeof listDeletedForms$1;
|
|
4557
4683
|
declare const bulkRemoveDeletedField: BuildRESTFunction<typeof bulkRemoveDeletedField$1> & typeof bulkRemoveDeletedField$1;
|
|
4558
4684
|
declare const updateExtendedFields: BuildRESTFunction<typeof updateExtendedFields$1> & typeof updateExtendedFields$1;
|
|
4685
|
+
declare const listFormsProvidersConfigs: BuildRESTFunction<typeof listFormsProvidersConfigs$1> & typeof listFormsProvidersConfigs$1;
|
|
4559
4686
|
|
|
4560
4687
|
type context$2_BulkCreateFormOptions = BulkCreateFormOptions;
|
|
4561
4688
|
type context$2_BulkCreateFormRequest = BulkCreateFormRequest;
|
|
@@ -4586,8 +4713,10 @@ declare const context$2_Fieldset: typeof Fieldset;
|
|
|
4586
4713
|
type context$2_FormChanged = FormChanged;
|
|
4587
4714
|
type context$2_FormDeleted = FormDeleted;
|
|
4588
4715
|
type context$2_FormNonNullableFields = FormNonNullableFields;
|
|
4716
|
+
type context$2_FormProviderRestrictions = FormProviderRestrictions;
|
|
4589
4717
|
type context$2_FormsQueryBuilder = FormsQueryBuilder;
|
|
4590
4718
|
type context$2_FormsQueryResult = FormsQueryResult;
|
|
4719
|
+
type context$2_FormsSchemaProvidersConfig = FormsSchemaProvidersConfig;
|
|
4591
4720
|
type context$2_GetDeletedFormRequest = GetDeletedFormRequest;
|
|
4592
4721
|
type context$2_GetDeletedFormResponse = GetDeletedFormResponse;
|
|
4593
4722
|
type context$2_GetDeletedFormResponseNonNullableFields = GetDeletedFormResponseNonNullableFields;
|
|
@@ -4604,6 +4733,9 @@ type context$2_ListDeletedFormsResponseNonNullableFields = ListDeletedFormsRespo
|
|
|
4604
4733
|
type context$2_ListFormsOptions = ListFormsOptions;
|
|
4605
4734
|
type context$2_ListFormsOrder = ListFormsOrder;
|
|
4606
4735
|
declare const context$2_ListFormsOrder: typeof ListFormsOrder;
|
|
4736
|
+
type context$2_ListFormsProvidersConfigsRequest = ListFormsProvidersConfigsRequest;
|
|
4737
|
+
type context$2_ListFormsProvidersConfigsResponse = ListFormsProvidersConfigsResponse;
|
|
4738
|
+
type context$2_ListFormsProvidersConfigsResponseNonNullableFields = ListFormsProvidersConfigsResponseNonNullableFields;
|
|
4607
4739
|
type context$2_ListFormsRequest = ListFormsRequest;
|
|
4608
4740
|
type context$2_ListFormsResponse = ListFormsResponse;
|
|
4609
4741
|
type context$2_ListFormsResponseNonNullableFields = ListFormsResponseNonNullableFields;
|
|
@@ -4639,6 +4771,7 @@ declare const context$2_getDeletedForm: typeof getDeletedForm;
|
|
|
4639
4771
|
declare const context$2_getForm: typeof getForm;
|
|
4640
4772
|
declare const context$2_listDeletedForms: typeof listDeletedForms;
|
|
4641
4773
|
declare const context$2_listForms: typeof listForms;
|
|
4774
|
+
declare const context$2_listFormsProvidersConfigs: typeof listFormsProvidersConfigs;
|
|
4642
4775
|
declare const context$2_queryDeletedForms: typeof queryDeletedForms;
|
|
4643
4776
|
declare const context$2_queryForms: typeof queryForms;
|
|
4644
4777
|
declare const context$2_removeFormFromTrashBin: typeof removeFormFromTrashBin;
|
|
@@ -4646,7 +4779,7 @@ declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4646
4779
|
declare const context$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4647
4780
|
declare const context$2_updateForm: typeof updateForm;
|
|
4648
4781
|
declare namespace context$2 {
|
|
4649
|
-
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateOptions$1 as DateOptions, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, context$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type FormRule$1 as FormRule, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$2 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichText$1 as RichText, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeOptions$1 as TimeOptions, Type$1 as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
|
|
4782
|
+
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DateOptions$1 as DateOptions, type DatePicker$1 as DatePicker, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, context$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, FirstDayOfWeekEnumFirstDayOfWeek$1 as FirstDayOfWeekEnumFirstDayOfWeek, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type context$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsProvidersConfigsRequest as ListFormsProvidersConfigsRequest, type context$2_ListFormsProvidersConfigsResponse as ListFormsProvidersConfigsResponse, type context$2_ListFormsProvidersConfigsResponseNonNullableFields as ListFormsProvidersConfigsResponseNonNullableFields, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$2 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichText$1 as RichText, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, type TimeOptions$1 as TimeOptions, Type$1 as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_listFormsProvidersConfigs as listFormsProvidersConfigs, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
|
|
4650
4783
|
}
|
|
4651
4784
|
|
|
4652
4785
|
/**
|
|
@@ -6358,12 +6491,15 @@ interface StringTypePhoneConstraints {
|
|
|
6358
6491
|
allowedCountryCodes?: string[];
|
|
6359
6492
|
}
|
|
6360
6493
|
declare enum StringComponentType {
|
|
6361
|
-
|
|
6494
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
6362
6495
|
TEXT_INPUT = "TEXT_INPUT",
|
|
6363
6496
|
RADIO_GROUP = "RADIO_GROUP",
|
|
6364
6497
|
DROPDOWN = "DROPDOWN",
|
|
6365
6498
|
DATE_TIME = "DATE_TIME",
|
|
6366
|
-
PHONE_INPUT = "PHONE_INPUT"
|
|
6499
|
+
PHONE_INPUT = "PHONE_INPUT",
|
|
6500
|
+
DATE_INPUT = "DATE_INPUT",
|
|
6501
|
+
TIME_INPUT = "TIME_INPUT",
|
|
6502
|
+
DATE_PICKER = "DATE_PICKER"
|
|
6367
6503
|
}
|
|
6368
6504
|
interface TextInput {
|
|
6369
6505
|
/** Label of the field */
|
|
@@ -7727,7 +7863,7 @@ interface DateTimeInputDateTimeInputTypeOptionsOneOf {
|
|
|
7727
7863
|
/** Options specific to date picker type. */
|
|
7728
7864
|
datePickerOptions?: DatePickerOptions;
|
|
7729
7865
|
}
|
|
7730
|
-
declare enum
|
|
7866
|
+
declare enum FirstDayOfWeekEnumFirstDayOfWeek {
|
|
7731
7867
|
MONDAY = "MONDAY",
|
|
7732
7868
|
SUNDAY = "SUNDAY"
|
|
7733
7869
|
}
|
|
@@ -7760,7 +7896,7 @@ interface TimeOptions {
|
|
|
7760
7896
|
}
|
|
7761
7897
|
interface DatePickerOptions {
|
|
7762
7898
|
/** First day of the week displayed on date picker. */
|
|
7763
|
-
firstDayOfWeek?:
|
|
7899
|
+
firstDayOfWeek?: FirstDayOfWeekEnumFirstDayOfWeek;
|
|
7764
7900
|
}
|
|
7765
7901
|
interface PhoneInput {
|
|
7766
7902
|
/** Label of the field */
|
|
@@ -7777,6 +7913,62 @@ interface PhoneInput {
|
|
|
7777
7913
|
/** Default value of the country code */
|
|
7778
7914
|
defaultCountryCode?: string | null;
|
|
7779
7915
|
}
|
|
7916
|
+
interface DateInput {
|
|
7917
|
+
/** Label of the field. Displayed text for the date/time input. */
|
|
7918
|
+
label?: string | null;
|
|
7919
|
+
/** Description of the field. Additional information about the date/time input. */
|
|
7920
|
+
description?: RichContent;
|
|
7921
|
+
/**
|
|
7922
|
+
* Flag identifying whether to show or hide the label.
|
|
7923
|
+
* Default: true
|
|
7924
|
+
*/
|
|
7925
|
+
showLabel?: boolean | null;
|
|
7926
|
+
/**
|
|
7927
|
+
* Flag identifying whether to show or hide the placeholder.
|
|
7928
|
+
* Default: true
|
|
7929
|
+
*/
|
|
7930
|
+
showPlaceholder?: boolean | null;
|
|
7931
|
+
}
|
|
7932
|
+
interface TimeInput {
|
|
7933
|
+
/** Label of the field. Displayed text for the date/time input. */
|
|
7934
|
+
label?: string | null;
|
|
7935
|
+
/** Description of the field. Additional information about the date/time input. */
|
|
7936
|
+
description?: RichContent;
|
|
7937
|
+
/**
|
|
7938
|
+
* Flag identifying whether to show or hide the label.
|
|
7939
|
+
* Default: true
|
|
7940
|
+
*/
|
|
7941
|
+
showLabel?: boolean | null;
|
|
7942
|
+
/**
|
|
7943
|
+
* Flag identifying whether to show or hide the placeholder.
|
|
7944
|
+
* Default: true
|
|
7945
|
+
*/
|
|
7946
|
+
showPlaceholder?: boolean | null;
|
|
7947
|
+
/**
|
|
7948
|
+
* Flag indicating whether to use the 24-hour time format.
|
|
7949
|
+
* Default: false.
|
|
7950
|
+
*/
|
|
7951
|
+
use24HourFormat?: boolean;
|
|
7952
|
+
}
|
|
7953
|
+
interface DatePicker {
|
|
7954
|
+
/** Label of the field. Displayed text for the date/time input. */
|
|
7955
|
+
label?: string | null;
|
|
7956
|
+
/** Description of the field. Additional information about the date/time input. */
|
|
7957
|
+
description?: RichContent;
|
|
7958
|
+
/**
|
|
7959
|
+
* Flag identifying whether to show or hide the label.
|
|
7960
|
+
* Default: true
|
|
7961
|
+
*/
|
|
7962
|
+
showLabel?: boolean | null;
|
|
7963
|
+
/** Placeholder of date picker input */
|
|
7964
|
+
placeholder?: string | null;
|
|
7965
|
+
/** First day of the week displayed on date picker. */
|
|
7966
|
+
firstDayOfWeek?: FirstDayOfWeek;
|
|
7967
|
+
}
|
|
7968
|
+
declare enum FirstDayOfWeek {
|
|
7969
|
+
MONDAY = "MONDAY",
|
|
7970
|
+
SUNDAY = "SUNDAY"
|
|
7971
|
+
}
|
|
7780
7972
|
interface InputFieldNumberType {
|
|
7781
7973
|
/** Inclusive maximum value. */
|
|
7782
7974
|
maximum?: number | null;
|
|
@@ -7794,7 +7986,7 @@ interface InputFieldNumberErrorMessages {
|
|
|
7794
7986
|
default?: string | null;
|
|
7795
7987
|
}
|
|
7796
7988
|
declare enum NumberComponentType {
|
|
7797
|
-
|
|
7989
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
7798
7990
|
NUMBER_INPUT = "NUMBER_INPUT",
|
|
7799
7991
|
RATING_INPUT = "RATING_INPUT"
|
|
7800
7992
|
}
|
|
@@ -7835,7 +8027,7 @@ interface InputFieldBooleanErrorMessages {
|
|
|
7835
8027
|
default?: string | null;
|
|
7836
8028
|
}
|
|
7837
8029
|
declare enum BooleanComponentType {
|
|
7838
|
-
|
|
8030
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
7839
8031
|
CHECKBOX = "CHECKBOX"
|
|
7840
8032
|
}
|
|
7841
8033
|
interface Checkbox {
|
|
@@ -7858,7 +8050,7 @@ interface InputFieldArrayType {
|
|
|
7858
8050
|
errorMessages?: InputFieldArrayErrorMessages;
|
|
7859
8051
|
}
|
|
7860
8052
|
declare enum ItemType {
|
|
7861
|
-
|
|
8053
|
+
UNKNOWN_ITEM_TYPE = "UNKNOWN_ITEM_TYPE",
|
|
7862
8054
|
STRING = "STRING",
|
|
7863
8055
|
NUMBER = "NUMBER",
|
|
7864
8056
|
BOOLEAN = "BOOLEAN",
|
|
@@ -7962,7 +8154,7 @@ interface InputFieldArrayErrorMessages {
|
|
|
7962
8154
|
default?: string | null;
|
|
7963
8155
|
}
|
|
7964
8156
|
declare enum ComponentType {
|
|
7965
|
-
|
|
8157
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
7966
8158
|
CHECKBOX_GROUP = "CHECKBOX_GROUP"
|
|
7967
8159
|
}
|
|
7968
8160
|
interface CheckboxGroup {
|
|
@@ -8013,7 +8205,7 @@ interface CustomOption {
|
|
|
8013
8205
|
placeholder?: string | null;
|
|
8014
8206
|
}
|
|
8015
8207
|
declare enum WixFileComponentType {
|
|
8016
|
-
|
|
8208
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
8017
8209
|
FILE_UPLOAD = "FILE_UPLOAD",
|
|
8018
8210
|
SIGNATURE = "SIGNATURE"
|
|
8019
8211
|
}
|
|
@@ -8063,7 +8255,7 @@ interface Signature {
|
|
|
8063
8255
|
imageUploadEnabled?: boolean;
|
|
8064
8256
|
}
|
|
8065
8257
|
declare enum PaymentComponentType {
|
|
8066
|
-
|
|
8258
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
8067
8259
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
8068
8260
|
DONATION_INPUT = "DONATION_INPUT"
|
|
8069
8261
|
}
|
|
@@ -8123,7 +8315,7 @@ interface CommonCustomOption {
|
|
|
8123
8315
|
placeholder?: string | null;
|
|
8124
8316
|
}
|
|
8125
8317
|
declare enum MultilineAddressComponentType {
|
|
8126
|
-
|
|
8318
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
8127
8319
|
MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
|
|
8128
8320
|
}
|
|
8129
8321
|
interface MultilineAddress {
|
|
@@ -8167,7 +8359,7 @@ interface FieldsSettings {
|
|
|
8167
8359
|
addressLine2?: AddressLine2;
|
|
8168
8360
|
}
|
|
8169
8361
|
declare enum InputType {
|
|
8170
|
-
|
|
8362
|
+
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
8171
8363
|
STRING = "STRING",
|
|
8172
8364
|
NUMBER = "NUMBER",
|
|
8173
8365
|
BOOLEAN = "BOOLEAN",
|
|
@@ -8269,6 +8461,12 @@ interface _String extends _StringComponentTypeOptionsOneOf {
|
|
|
8269
8461
|
dateTimeOptions?: DateTimeInput;
|
|
8270
8462
|
/** Phone input field */
|
|
8271
8463
|
phoneInputOptions?: PhoneInput;
|
|
8464
|
+
/** Dropdown based component for selecting date */
|
|
8465
|
+
dateInputOptions?: DateInput;
|
|
8466
|
+
/** Field for selecting time */
|
|
8467
|
+
timeInputOptions?: TimeInput;
|
|
8468
|
+
/** Calendar type component for selecting date */
|
|
8469
|
+
datePickerOptions?: DatePicker;
|
|
8272
8470
|
/** Validation of field output value. */
|
|
8273
8471
|
validation?: InputFieldStringType;
|
|
8274
8472
|
/**
|
|
@@ -8289,6 +8487,12 @@ interface _StringComponentTypeOptionsOneOf {
|
|
|
8289
8487
|
dateTimeOptions?: DateTimeInput;
|
|
8290
8488
|
/** Phone input field */
|
|
8291
8489
|
phoneInputOptions?: PhoneInput;
|
|
8490
|
+
/** Dropdown based component for selecting date */
|
|
8491
|
+
dateInputOptions?: DateInput;
|
|
8492
|
+
/** Field for selecting time */
|
|
8493
|
+
timeInputOptions?: TimeInput;
|
|
8494
|
+
/** Calendar type component for selecting date */
|
|
8495
|
+
datePickerOptions?: DatePicker;
|
|
8292
8496
|
}
|
|
8293
8497
|
interface _Number extends _NumberComponentTypeOptionsOneOf {
|
|
8294
8498
|
/** Number value input field */
|
|
@@ -10023,7 +10227,9 @@ type context_Cursors = Cursors;
|
|
|
10023
10227
|
type context_CustomFieldInfo = CustomFieldInfo;
|
|
10024
10228
|
type context_CustomOption = CustomOption;
|
|
10025
10229
|
type context_DataExtensionsDetails = DataExtensionsDetails;
|
|
10230
|
+
type context_DateInput = DateInput;
|
|
10026
10231
|
type context_DateOptions = DateOptions;
|
|
10232
|
+
type context_DatePicker = DatePicker;
|
|
10027
10233
|
type context_DatePickerOptions = DatePickerOptions;
|
|
10028
10234
|
type context_DateTimeConstraints = DateTimeConstraints;
|
|
10029
10235
|
type context_DateTimeInput = DateTimeInput;
|
|
@@ -10078,6 +10284,8 @@ type context_FileSourceDataOneOf = FileSourceDataOneOf;
|
|
|
10078
10284
|
type context_FileUpload = FileUpload;
|
|
10079
10285
|
type context_FirstDayOfWeek = FirstDayOfWeek;
|
|
10080
10286
|
declare const context_FirstDayOfWeek: typeof FirstDayOfWeek;
|
|
10287
|
+
type context_FirstDayOfWeekEnumFirstDayOfWeek = FirstDayOfWeekEnumFirstDayOfWeek;
|
|
10288
|
+
declare const context_FirstDayOfWeekEnumFirstDayOfWeek: typeof FirstDayOfWeekEnumFirstDayOfWeek;
|
|
10081
10289
|
type context_FixedPriceOptions = FixedPriceOptions;
|
|
10082
10290
|
type context_FontSizeData = FontSizeData;
|
|
10083
10291
|
type context_FontType = FontType;
|
|
@@ -10368,6 +10576,7 @@ type context_ThankYouMessageOptions = ThankYouMessageOptions;
|
|
|
10368
10576
|
type context_Thumbnails = Thumbnails;
|
|
10369
10577
|
type context_ThumbnailsAlignment = ThumbnailsAlignment;
|
|
10370
10578
|
declare const context_ThumbnailsAlignment: typeof ThumbnailsAlignment;
|
|
10579
|
+
type context_TimeInput = TimeInput;
|
|
10371
10580
|
type context_TimeOptions = TimeOptions;
|
|
10372
10581
|
type context_Type = Type;
|
|
10373
10582
|
declare const context_Type: typeof Type;
|
|
@@ -10440,7 +10649,7 @@ declare const context_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
10440
10649
|
declare const context_updateSubmission: typeof updateSubmission;
|
|
10441
10650
|
declare const context_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
10442
10651
|
declare namespace context {
|
|
10443
|
-
export { type context_ActionEvent as ActionEvent, type context_AddressInfo as AddressInfo, type context_AddressLine2 as AddressLine2, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_ArrayErrorMessages as ArrayErrorMessages, type context_ArrayItems as ArrayItems, type context_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context_ArrayType as ArrayType, type context_ArrayTypeArrayItems as ArrayTypeArrayItems, type context_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, context_BooleanComponentType as BooleanComponentType, type context_BooleanErrorMessages as BooleanErrorMessages, type context_BooleanType as BooleanType, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreakPoint as BreakPoint, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, context_ButtonDataType as ButtonDataType, type context_CellStyle as CellStyle, type context_Checkbox as Checkbox, type context_CheckboxGroup as CheckboxGroup, type context_Checkout as Checkout, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCustomOption as CommonCustomOption, context_ComponentType as ComponentType, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, context_ContactField as ContactField, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type context_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type context_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomFieldInfo as CustomFieldInfo, type context_CustomOption as CustomOption, type context_DataExtensionsDetails as DataExtensionsDetails, type context_DateOptions as DateOptions, type context_DatePickerOptions as DatePickerOptions, type context_DateTimeConstraints as DateTimeConstraints, type context_DateTimeInput as DateTimeInput, type context_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context_DateTimeInputType as DateTimeInputType, type context_DateTimeOptions as DateTimeOptions, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DefaultCountryConfig as DefaultCountryConfig, type context_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DisplayField as DisplayField, type context_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DonationInput as DonationInput, type context_DonationInputOption as DonationInputOption, type context_Dropdown as Dropdown, type context_DropdownCustomOption as DropdownCustomOption, type context_DropdownOption as DropdownOption, type context_DynamicPriceOptions as DynamicPriceOptions, type context_EmailInfo as EmailInfo, context_EmailInfoTag as EmailInfoTag, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_ExtendedFields as ExtendedFields, type context_FieldGroup as FieldGroup, type context_FieldOverrides as FieldOverrides, context_FieldType as FieldType, type context_FieldsOverrides as FieldsOverrides, type context_FieldsSettings as FieldsSettings, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FileUpload as FileUpload, context_FirstDayOfWeek as FirstDayOfWeek, type context_FixedPriceOptions as FixedPriceOptions, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_Form as Form, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormField as FormField, type context_FormFieldContactInfo as FormFieldContactInfo, type context_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context_FormFieldV2 as FormFieldV2, type context_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context_FormLayout as FormLayout, type context_FormOverride as FormOverride, type context_FormProperties as FormProperties, type context_FormRule as FormRule, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, context_Format as Format, context_FormatEnumFormat as FormatEnumFormat, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_Gradient as Gradient, type context_Group as Group, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_Header as Header, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Image as Image, type context_ImageData as ImageData, context_InitialExpandedItems as InitialExpandedItems, type context_InputField as InputField, type context_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context_InputFieldArrayType as InputFieldArrayType, type context_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context_InputFieldBooleanType as InputFieldBooleanType, type context_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context_InputFieldIntegerType as InputFieldIntegerType, type context_InputFieldMultilineAddress as InputFieldMultilineAddress, type context_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context_InputFieldNumberType as InputFieldNumberType, type context_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context_InputFieldObjectType as InputFieldObjectType, type context_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context_InputFieldStringType as InputFieldStringType, type context_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context_InputType as InputType, type context_IntegerType as IntegerType, type context_IsFormSubmittableRequest as IsFormSubmittableRequest, type context_IsFormSubmittableResponse as IsFormSubmittableResponse, type context_Item as Item, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemLayout as ItemLayout, type context_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemStyle as ItemStyle, context_ItemType as ItemType, context_Kind as Kind, type context_Layout as Layout, context_LayoutType as LayoutType, type context_LimitationRule as LimitationRule, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, context_LinkTarget as LinkTarget, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_Margin as Margin, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemMediaOneOf as MediaItemMediaOneOf, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_Mode as Mode, type context_MultilineAddress as MultilineAddress, context_MultilineAddressComponentType as MultilineAddressComponentType, type context_MultilineAddressValidation as MultilineAddressValidation, type context_NestedForm as NestedForm, type context_NestedFormFieldOverrides as NestedFormFieldOverrides, type context_NestedFormOverrides as NestedFormOverrides, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, context_NumberComponentType as NumberComponentType, type context_NumberErrorMessages as NumberErrorMessages, type context_NumberInput as NumberInput, context_NumberOfColumns as NumberOfColumns, type context_NumberType as NumberType, type context_ObjectErrorMessages as ObjectErrorMessages, type context_ObjectType as ObjectType, type context_ObjectTypePropertiesType as ObjectTypePropertiesType, type context_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context_Oembed as Oembed, context_OptInLevel as OptInLevel, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderDetails as OrderDetails, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, context_OverrideEntityType as OverrideEntityType, type context_PDFSettings as PDFSettings, type context_ParagraphData as ParagraphData, type context_Payment as Payment, context_PaymentComponentType as PaymentComponentType, type context_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context_PaymentType as PaymentType, type context_Permissions as Permissions, type context_PhoneConstraints as PhoneConstraints, type context_PhoneInfo as PhoneInfo, context_PhoneInfoTag as PhoneInfoTag, type context_PhoneInput as PhoneInput, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollOption as PollOption, type context_PostSubmissionTriggers as PostSubmissionTriggers, type context_PredefinedValidation as PredefinedValidation, type context_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context_PriceType as PriceType, type context_Product as Product, type context_ProductCheckboxGroup as ProductCheckboxGroup, type context_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context_ProductType as ProductType, type context_PropertiesType as PropertiesType, context_PropertiesTypeEnum as PropertiesTypeEnum, type context_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context_QuantityLimit as QuantityLimit, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RadioGroup as RadioGroup, type context_RadioGroupCustomOption as RadioGroupCustomOption, type context_RadioGroupOption as RadioGroupOption, type context_RatingInput as RatingInput, type context_Redirect as Redirect, type context_RedirectOptions as RedirectOptions, type context_Rel as Rel, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, context_RequiredIndicator as RequiredIndicator, context_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context_RequiredIndicatorProperties as RequiredIndicatorProperties, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_RichContent as RichContent, type context_RichText as RichText, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type context_Section as Section, type context_Settings as Settings, type context_Signature as Signature, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Source as Source, context_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Step as Step, context_StringComponentType as StringComponentType, type context_StringErrorMessages as StringErrorMessages, type context_StringType as StringType, type context_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context_StringTypePhoneConstraints as StringTypePhoneConstraints, type context_Styles as Styles, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, context_SubmissionStatus as SubmissionStatus, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitButton as SubmitButton, type context_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context_SubmitContactResponse as SubmitContactResponse, type context_SubmitSettings as SubmitSettings, type context_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context_SubmitSuccessAction as SubmitSuccessAction, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_SubscriptionInfo as SubscriptionInfo, context_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type context_TableCellData as TableCellData, type context_TableData as TableData, context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextInput as TextInput, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_ThankYouMessage as ThankYouMessage, type context_ThankYouMessageOptions as ThankYouMessageOptions, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TimeOptions as TimeOptions, context_Type as Type, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, context_UploadFileFormat as UploadFileFormat, type context_UpsertContact as UpsertContact, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_UrlTargetEnumTarget as UrlTargetEnumTarget, type context_Validation as Validation, context_ValidationFormat as ValidationFormat, type context_ValidationValidationOneOf as ValidationValidationOneOf, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, type context_WixFile as WixFile, context_WixFileComponentType as WixFileComponentType, type context_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context__Array as _Array, type context__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context__Boolean as _Boolean, type context__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context__Number as _Number, type context__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context__Object as _Object, type context__ObjectValidationOneOf as _ObjectValidationOneOf, type context__String as _String, type context__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_listDeletedSubmissions as listDeletedSubmissions, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
10652
|
+
export { type context_ActionEvent as ActionEvent, type context_AddressInfo as AddressInfo, type context_AddressLine2 as AddressLine2, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_ArrayErrorMessages as ArrayErrorMessages, type context_ArrayItems as ArrayItems, type context_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context_ArrayType as ArrayType, type context_ArrayTypeArrayItems as ArrayTypeArrayItems, type context_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, context_BooleanComponentType as BooleanComponentType, type context_BooleanErrorMessages as BooleanErrorMessages, type context_BooleanType as BooleanType, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreakPoint as BreakPoint, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, context_ButtonDataType as ButtonDataType, type context_CellStyle as CellStyle, type context_Checkbox as Checkbox, type context_CheckboxGroup as CheckboxGroup, type context_Checkout as Checkout, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCustomOption as CommonCustomOption, context_ComponentType as ComponentType, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, context_ContactField as ContactField, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type context_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type context_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomFieldInfo as CustomFieldInfo, type context_CustomOption as CustomOption, type context_DataExtensionsDetails as DataExtensionsDetails, type context_DateInput as DateInput, type context_DateOptions as DateOptions, type context_DatePicker as DatePicker, type context_DatePickerOptions as DatePickerOptions, type context_DateTimeConstraints as DateTimeConstraints, type context_DateTimeInput as DateTimeInput, type context_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context_DateTimeInputType as DateTimeInputType, type context_DateTimeOptions as DateTimeOptions, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DefaultCountryConfig as DefaultCountryConfig, type context_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DisplayField as DisplayField, type context_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DonationInput as DonationInput, type context_DonationInputOption as DonationInputOption, type context_Dropdown as Dropdown, type context_DropdownCustomOption as DropdownCustomOption, type context_DropdownOption as DropdownOption, type context_DynamicPriceOptions as DynamicPriceOptions, type context_EmailInfo as EmailInfo, context_EmailInfoTag as EmailInfoTag, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_ExtendedFields as ExtendedFields, type context_FieldGroup as FieldGroup, type context_FieldOverrides as FieldOverrides, context_FieldType as FieldType, type context_FieldsOverrides as FieldsOverrides, type context_FieldsSettings as FieldsSettings, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FileUpload as FileUpload, context_FirstDayOfWeek as FirstDayOfWeek, context_FirstDayOfWeekEnumFirstDayOfWeek as FirstDayOfWeekEnumFirstDayOfWeek, type context_FixedPriceOptions as FixedPriceOptions, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_Form as Form, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormField as FormField, type context_FormFieldContactInfo as FormFieldContactInfo, type context_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context_FormFieldV2 as FormFieldV2, type context_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context_FormLayout as FormLayout, type context_FormOverride as FormOverride, type context_FormProperties as FormProperties, type context_FormRule as FormRule, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, context_Format as Format, context_FormatEnumFormat as FormatEnumFormat, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_Gradient as Gradient, type context_Group as Group, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_Header as Header, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Image as Image, type context_ImageData as ImageData, context_InitialExpandedItems as InitialExpandedItems, type context_InputField as InputField, type context_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context_InputFieldArrayType as InputFieldArrayType, type context_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context_InputFieldBooleanType as InputFieldBooleanType, type context_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context_InputFieldIntegerType as InputFieldIntegerType, type context_InputFieldMultilineAddress as InputFieldMultilineAddress, type context_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context_InputFieldNumberType as InputFieldNumberType, type context_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context_InputFieldObjectType as InputFieldObjectType, type context_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context_InputFieldStringType as InputFieldStringType, type context_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context_InputType as InputType, type context_IntegerType as IntegerType, type context_IsFormSubmittableRequest as IsFormSubmittableRequest, type context_IsFormSubmittableResponse as IsFormSubmittableResponse, type context_Item as Item, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemLayout as ItemLayout, type context_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemStyle as ItemStyle, context_ItemType as ItemType, context_Kind as Kind, type context_Layout as Layout, context_LayoutType as LayoutType, type context_LimitationRule as LimitationRule, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, context_LinkTarget as LinkTarget, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_Margin as Margin, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemMediaOneOf as MediaItemMediaOneOf, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_Mode as Mode, type context_MultilineAddress as MultilineAddress, context_MultilineAddressComponentType as MultilineAddressComponentType, type context_MultilineAddressValidation as MultilineAddressValidation, type context_NestedForm as NestedForm, type context_NestedFormFieldOverrides as NestedFormFieldOverrides, type context_NestedFormOverrides as NestedFormOverrides, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, context_NumberComponentType as NumberComponentType, type context_NumberErrorMessages as NumberErrorMessages, type context_NumberInput as NumberInput, context_NumberOfColumns as NumberOfColumns, type context_NumberType as NumberType, type context_ObjectErrorMessages as ObjectErrorMessages, type context_ObjectType as ObjectType, type context_ObjectTypePropertiesType as ObjectTypePropertiesType, type context_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context_Oembed as Oembed, context_OptInLevel as OptInLevel, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderDetails as OrderDetails, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, context_OverrideEntityType as OverrideEntityType, type context_PDFSettings as PDFSettings, type context_ParagraphData as ParagraphData, type context_Payment as Payment, context_PaymentComponentType as PaymentComponentType, type context_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context_PaymentType as PaymentType, type context_Permissions as Permissions, type context_PhoneConstraints as PhoneConstraints, type context_PhoneInfo as PhoneInfo, context_PhoneInfoTag as PhoneInfoTag, type context_PhoneInput as PhoneInput, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollOption as PollOption, type context_PostSubmissionTriggers as PostSubmissionTriggers, type context_PredefinedValidation as PredefinedValidation, type context_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context_PriceType as PriceType, type context_Product as Product, type context_ProductCheckboxGroup as ProductCheckboxGroup, type context_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context_ProductType as ProductType, type context_PropertiesType as PropertiesType, context_PropertiesTypeEnum as PropertiesTypeEnum, type context_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context_QuantityLimit as QuantityLimit, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RadioGroup as RadioGroup, type context_RadioGroupCustomOption as RadioGroupCustomOption, type context_RadioGroupOption as RadioGroupOption, type context_RatingInput as RatingInput, type context_Redirect as Redirect, type context_RedirectOptions as RedirectOptions, type context_Rel as Rel, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, context_RequiredIndicator as RequiredIndicator, context_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context_RequiredIndicatorProperties as RequiredIndicatorProperties, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_RichContent as RichContent, type context_RichText as RichText, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type context_Section as Section, type context_Settings as Settings, type context_Signature as Signature, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Source as Source, context_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Step as Step, context_StringComponentType as StringComponentType, type context_StringErrorMessages as StringErrorMessages, type context_StringType as StringType, type context_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context_StringTypePhoneConstraints as StringTypePhoneConstraints, type context_Styles as Styles, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, context_SubmissionStatus as SubmissionStatus, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitButton as SubmitButton, type context_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context_SubmitContactResponse as SubmitContactResponse, type context_SubmitSettings as SubmitSettings, type context_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context_SubmitSuccessAction as SubmitSuccessAction, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_SubscriptionInfo as SubscriptionInfo, context_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type context_TableCellData as TableCellData, type context_TableData as TableData, context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextInput as TextInput, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_ThankYouMessage as ThankYouMessage, type context_ThankYouMessageOptions as ThankYouMessageOptions, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TimeInput as TimeInput, type context_TimeOptions as TimeOptions, context_Type as Type, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, context_UploadFileFormat as UploadFileFormat, type context_UpsertContact as UpsertContact, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_UrlTargetEnumTarget as UrlTargetEnumTarget, type context_Validation as Validation, context_ValidationFormat as ValidationFormat, type context_ValidationValidationOneOf as ValidationValidationOneOf, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, type context_WixFile as WixFile, context_WixFileComponentType as WixFileComponentType, type context_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context__Array as _Array, type context__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context__Boolean as _Boolean, type context__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context__Number as _Number, type context__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context__Object as _Object, type context__ObjectValidationOneOf as _ObjectValidationOneOf, type context__String as _String, type context__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_listDeletedSubmissions as listDeletedSubmissions, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
10444
10653
|
}
|
|
10445
10654
|
|
|
10446
10655
|
export { context$1 as formSpamSubmissionReports, context$2 as forms, context as submissions };
|