@wix/forms 1.0.107 → 1.0.108
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.108",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"service-plugins"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@wix/forms_form-spam-submission-reports": "1.0.
|
|
22
|
+
"@wix/forms_form-spam-submission-reports": "1.0.4",
|
|
23
23
|
"@wix/forms_form-submissions": "1.0.6",
|
|
24
|
-
"@wix/forms_forms": "1.0.
|
|
25
|
-
"@wix/forms_submissions": "1.0.
|
|
24
|
+
"@wix/forms_forms": "1.0.5",
|
|
25
|
+
"@wix/forms_submissions": "1.0.39"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"glob": "^10.4.1",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"fqdn": ""
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "5da8dd5907f55218ef773997de22a5bee68dbc8296a0e77fa05c9986"
|
|
50
50
|
}
|
|
@@ -2862,6 +2862,30 @@ interface RequiredIndicatorProperties {
|
|
|
2862
2862
|
/** Required indicator placement. */
|
|
2863
2863
|
requiredIndicatorPlacement?: RequiredIndicatorPlacement;
|
|
2864
2864
|
}
|
|
2865
|
+
interface PiiFieldsUpdated {
|
|
2866
|
+
/** Collection of fields which are marked as PII */
|
|
2867
|
+
piiFields?: string[];
|
|
2868
|
+
/** Collection of fields which are non PII */
|
|
2869
|
+
nonPiiFields?: string[];
|
|
2870
|
+
}
|
|
2871
|
+
interface FormChanged {
|
|
2872
|
+
/** Form namespace */
|
|
2873
|
+
namespace?: string;
|
|
2874
|
+
/** Form after update */
|
|
2875
|
+
form?: Form;
|
|
2876
|
+
/** Form before update */
|
|
2877
|
+
formBeforeUpdate?: Form;
|
|
2878
|
+
}
|
|
2879
|
+
interface FormDeleted {
|
|
2880
|
+
/** Form namespace */
|
|
2881
|
+
namespace?: string;
|
|
2882
|
+
/** Form state on delete moment */
|
|
2883
|
+
form?: Form;
|
|
2884
|
+
}
|
|
2885
|
+
interface SubmissionKeysPermanentlyDeleted {
|
|
2886
|
+
/** Keys which should be deleted */
|
|
2887
|
+
keys?: string[] | null;
|
|
2888
|
+
}
|
|
2865
2889
|
interface CreateFormRequest {
|
|
2866
2890
|
/** Form to be created. */
|
|
2867
2891
|
form: Form;
|
|
@@ -2949,20 +2973,6 @@ interface UpdateFormResponse {
|
|
|
2949
2973
|
/** The updated form. */
|
|
2950
2974
|
form?: Form;
|
|
2951
2975
|
}
|
|
2952
|
-
interface PiiFieldsUpdated {
|
|
2953
|
-
/** Collection of fields which are marked as PII */
|
|
2954
|
-
piiFields?: string[];
|
|
2955
|
-
/** Collection of fields which are non PII */
|
|
2956
|
-
nonPiiFields?: string[];
|
|
2957
|
-
}
|
|
2958
|
-
interface FormChanged {
|
|
2959
|
-
/** Form namespace */
|
|
2960
|
-
namespace?: string;
|
|
2961
|
-
/** Form after update */
|
|
2962
|
-
form?: Form;
|
|
2963
|
-
/** Form before update */
|
|
2964
|
-
formBeforeUpdate?: Form;
|
|
2965
|
-
}
|
|
2966
2976
|
interface RemoveFormFromTrashBinRequest {
|
|
2967
2977
|
/** Id of the form to delete. */
|
|
2968
2978
|
formId: string;
|
|
@@ -2982,12 +2992,6 @@ interface DeleteFormRequest {
|
|
|
2982
2992
|
}
|
|
2983
2993
|
interface DeleteFormResponse {
|
|
2984
2994
|
}
|
|
2985
|
-
interface FormDeleted {
|
|
2986
|
-
/** Form namespace */
|
|
2987
|
-
namespace?: string;
|
|
2988
|
-
/** Form state on delete moment */
|
|
2989
|
-
form?: Form;
|
|
2990
|
-
}
|
|
2991
2995
|
interface RestoreFromTrashBinRequest {
|
|
2992
2996
|
/** Id of the form to restore. */
|
|
2993
2997
|
formId: string;
|
|
@@ -3206,10 +3210,6 @@ interface BulkRemoveDeletedFieldResponse {
|
|
|
3206
3210
|
/** Form with the deleted fields. */
|
|
3207
3211
|
form?: Form;
|
|
3208
3212
|
}
|
|
3209
|
-
interface SubmissionKeysPermanentlyDeleted {
|
|
3210
|
-
/** Keys which should be deleted */
|
|
3211
|
-
keys?: string[] | null;
|
|
3212
|
-
}
|
|
3213
3213
|
interface UpdateExtendedFieldsRequest {
|
|
3214
3214
|
/** ID of the entity to update. */
|
|
3215
3215
|
_id: string;
|
|
@@ -3993,64 +3993,6 @@ interface BulkRemoveDeletedFieldResponseNonNullableFields {
|
|
|
3993
3993
|
interface UpdateExtendedFieldsResponseNonNullableFields {
|
|
3994
3994
|
namespace: string;
|
|
3995
3995
|
}
|
|
3996
|
-
interface BaseEventMetadata$2 {
|
|
3997
|
-
/** App instance ID. */
|
|
3998
|
-
instanceId?: string | null;
|
|
3999
|
-
/** Event type. */
|
|
4000
|
-
eventType?: string;
|
|
4001
|
-
/** The identification type and identity data. */
|
|
4002
|
-
identity?: IdentificationData$2;
|
|
4003
|
-
}
|
|
4004
|
-
interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
4005
|
-
/**
|
|
4006
|
-
* Unique event ID.
|
|
4007
|
-
* Allows clients to ignore duplicate webhooks.
|
|
4008
|
-
*/
|
|
4009
|
-
_id?: string;
|
|
4010
|
-
/**
|
|
4011
|
-
* Assumes actions are also always typed to an entity_type
|
|
4012
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
4013
|
-
*/
|
|
4014
|
-
entityFqdn?: string;
|
|
4015
|
-
/**
|
|
4016
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
4017
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
4018
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
4019
|
-
*/
|
|
4020
|
-
slug?: string;
|
|
4021
|
-
/** ID of the entity associated with the event. */
|
|
4022
|
-
entityId?: string;
|
|
4023
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
4024
|
-
eventTime?: Date;
|
|
4025
|
-
/**
|
|
4026
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
4027
|
-
* (for example, GDPR).
|
|
4028
|
-
*/
|
|
4029
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
4030
|
-
/** If present, indicates the action that triggered the event. */
|
|
4031
|
-
originatedFrom?: string | null;
|
|
4032
|
-
/**
|
|
4033
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
4034
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
4035
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
4036
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
4037
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
4038
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
4039
|
-
*/
|
|
4040
|
-
entityEventSequence?: string | null;
|
|
4041
|
-
}
|
|
4042
|
-
interface FormCreatedEnvelope {
|
|
4043
|
-
entity: Form;
|
|
4044
|
-
metadata: EventMetadata$2;
|
|
4045
|
-
}
|
|
4046
|
-
interface FormUpdatedEnvelope {
|
|
4047
|
-
entity: Form;
|
|
4048
|
-
metadata: EventMetadata$2;
|
|
4049
|
-
}
|
|
4050
|
-
interface FormSubmissionKeysPermanentlyDeletedEnvelope {
|
|
4051
|
-
data: SubmissionKeysPermanentlyDeleted;
|
|
4052
|
-
metadata: EventMetadata$2;
|
|
4053
|
-
}
|
|
4054
3996
|
interface BulkCreateFormOptions {
|
|
4055
3997
|
/** Forms to be created. */
|
|
4056
3998
|
forms?: Form[];
|
|
@@ -4331,8 +4273,6 @@ declare global {
|
|
|
4331
4273
|
|
|
4332
4274
|
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4333
4275
|
|
|
4334
|
-
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4335
|
-
|
|
4336
4276
|
declare const createForm: ReturnType<typeof createRESTModule$2<typeof publicCreateForm>>;
|
|
4337
4277
|
declare const bulkCreateForm: ReturnType<typeof createRESTModule$2<typeof publicBulkCreateForm>>;
|
|
4338
4278
|
declare const cloneForm: ReturnType<typeof createRESTModule$2<typeof publicCloneForm>>;
|
|
@@ -4349,9 +4289,6 @@ declare const queryDeletedForms: ReturnType<typeof createRESTModule$2<typeof pub
|
|
|
4349
4289
|
declare const listDeletedForms: ReturnType<typeof createRESTModule$2<typeof publicListDeletedForms>>;
|
|
4350
4290
|
declare const bulkRemoveDeletedField: ReturnType<typeof createRESTModule$2<typeof publicBulkRemoveDeletedField>>;
|
|
4351
4291
|
declare const updateExtendedFields: ReturnType<typeof createRESTModule$2<typeof publicUpdateExtendedFields>>;
|
|
4352
|
-
declare const onFormCreated: ReturnType<typeof createEventModule$2<typeof publicOnFormCreated>>;
|
|
4353
|
-
declare const onFormUpdated: ReturnType<typeof createEventModule$2<typeof publicOnFormUpdated>>;
|
|
4354
|
-
declare const onFormSubmissionKeysPermanentlyDeleted: ReturnType<typeof createEventModule$2<typeof publicOnFormSubmissionKeysPermanentlyDeleted>>;
|
|
4355
4292
|
|
|
4356
4293
|
type context$2_AddressInfo = AddressInfo;
|
|
4357
4294
|
type context$2_AddressLine2 = AddressLine2;
|
|
@@ -4481,7 +4418,6 @@ type context$2_FontType = FontType;
|
|
|
4481
4418
|
declare const context$2_FontType: typeof FontType;
|
|
4482
4419
|
type context$2_Form = Form;
|
|
4483
4420
|
type context$2_FormChanged = FormChanged;
|
|
4484
|
-
type context$2_FormCreatedEnvelope = FormCreatedEnvelope;
|
|
4485
4421
|
type context$2_FormDeleted = FormDeleted;
|
|
4486
4422
|
type context$2_FormField = FormField;
|
|
4487
4423
|
type context$2_FormFieldContactInfo = FormFieldContactInfo;
|
|
@@ -4493,8 +4429,6 @@ type context$2_FormNonNullableFields = FormNonNullableFields;
|
|
|
4493
4429
|
type context$2_FormOverride = FormOverride;
|
|
4494
4430
|
type context$2_FormProperties = FormProperties;
|
|
4495
4431
|
type context$2_FormRule = FormRule;
|
|
4496
|
-
type context$2_FormSubmissionKeysPermanentlyDeletedEnvelope = FormSubmissionKeysPermanentlyDeletedEnvelope;
|
|
4497
|
-
type context$2_FormUpdatedEnvelope = FormUpdatedEnvelope;
|
|
4498
4432
|
type context$2_Format = Format;
|
|
4499
4433
|
declare const context$2_Format: typeof Format;
|
|
4500
4434
|
type context$2_FormatEnumFormat = FormatEnumFormat;
|
|
@@ -4781,9 +4715,6 @@ declare const context$2_getDeletedForm: typeof getDeletedForm;
|
|
|
4781
4715
|
declare const context$2_getForm: typeof getForm;
|
|
4782
4716
|
declare const context$2_listDeletedForms: typeof listDeletedForms;
|
|
4783
4717
|
declare const context$2_listForms: typeof listForms;
|
|
4784
|
-
declare const context$2_onFormCreated: typeof onFormCreated;
|
|
4785
|
-
declare const context$2_onFormSubmissionKeysPermanentlyDeleted: typeof onFormSubmissionKeysPermanentlyDeleted;
|
|
4786
|
-
declare const context$2_onFormUpdated: typeof onFormUpdated;
|
|
4787
4718
|
declare const context$2_queryDeletedForms: typeof queryDeletedForms;
|
|
4788
4719
|
declare const context$2_queryForms: typeof queryForms;
|
|
4789
4720
|
declare const context$2_removeFormFromTrashBin: typeof removeFormFromTrashBin;
|
|
@@ -4791,7 +4722,7 @@ declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4791
4722
|
declare const context$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4792
4723
|
declare const context$2_updateForm: typeof updateForm;
|
|
4793
4724
|
declare namespace context$2 {
|
|
4794
|
-
export { type ActionEvent$2 as ActionEvent, type context$2_AddressInfo as AddressInfo, type context$2_AddressLine2 as AddressLine2, context$2_Alignment as Alignment, type context$2_AnchorData as AnchorData, type context$2_AppEmbedData as AppEmbedData, type context$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type context$2_ArrayErrorMessages as ArrayErrorMessages, type context$2_ArrayItems as ArrayItems, type context$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context$2_ArrayType as ArrayType, type context$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type context$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context$2_AudioData as AudioData, type context$2_Background as Background, type context$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$2_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$2_BlockquoteData as BlockquoteData, type context$2_BookingData as BookingData, context$2_BooleanComponentType as BooleanComponentType, type context$2_BooleanErrorMessages as BooleanErrorMessages, type context$2_BooleanType as BooleanType, type context$2_Border as Border, type context$2_BorderColors as BorderColors, type context$2_BreakPoint 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 context$2_BulletedListData as BulletedListData, type context$2_ButtonData as ButtonData, context$2_ButtonDataType as ButtonDataType, type context$2_CellStyle as CellStyle, type context$2_Checkbox as Checkbox, type context$2_CheckboxGroup as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type context$2_CodeBlockData as CodeBlockData, type context$2_CollapsibleListData as CollapsibleListData, type context$2_ColorData as ColorData, type context$2_Colors as Colors, type context$2_CommonCustomOption as CommonCustomOption, context$2_ComponentType as ComponentType, context$2_ContactField 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, context$2_Crop 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 context$2_CustomFieldInfo as CustomFieldInfo, type context$2_CustomOption as CustomOption, type context$2_DataExtensionsDetails as DataExtensionsDetails, context$2_DateFormatPart as DateFormatPart, type context$2_DateOptions as DateOptions, type context$2_DatePickerOptions as DatePickerOptions, type context$2_DateTimeConstraints as DateTimeConstraints, type context$2_DateTimeInput as DateTimeInput, type context$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context$2_DateTimeInputType as DateTimeInputType, type context$2_DateTimeOptions as DateTimeOptions, type context$2_Decoration as Decoration, type context$2_DecorationDataOneOf as DecorationDataOneOf, context$2_DecorationType as DecorationType, type context$2_DefaultCountryConfig as DefaultCountryConfig, type context$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type context$2_Design as Design, type context$2_Dimensions as Dimensions, context$2_Direction as Direction, type context$2_DisplayField as DisplayField, type context$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context$2_DividerData as DividerData, type context$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$2_DonationInput as DonationInput, type context$2_DonationInputOption as DonationInputOption, type context$2_Dropdown as Dropdown, type context$2_DropdownCustomOption as DropdownCustomOption, type context$2_DropdownOption as DropdownOption, type context$2_DynamicPriceOptions as DynamicPriceOptions, type context$2_EmailInfo as EmailInfo, context$2_EmailInfoTag as EmailInfoTag, type context$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$2_EventData as EventData, type EventMetadata$2 as EventMetadata, type ExtendedFields$2 as ExtendedFields, type context$2_FieldOverrides as FieldOverrides, context$2_FieldType as FieldType, type context$2_FieldsOverrides as FieldsOverrides, type context$2_FieldsSettings as FieldsSettings, context$2_Fieldset as Fieldset, type context$2_FileData as FileData, type context$2_FileSource as FileSource, type context$2_FileSourceDataOneOf as FileSourceDataOneOf, type context$2_FileUpload as FileUpload, context$2_FirstDayOfWeek as FirstDayOfWeek, type context$2_FixedPriceOptions as FixedPriceOptions, type context$2_FontSizeData as FontSizeData, context$2_FontType as FontType, type context$2_Form as Form, type context$2_FormChanged as FormChanged, type context$2_FormCreatedEnvelope as FormCreatedEnvelope, type context$2_FormDeleted as FormDeleted, type context$2_FormField as FormField, type context$2_FormFieldContactInfo as FormFieldContactInfo, type context$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context$2_FormFieldV2 as FormFieldV2, type context$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context$2_FormLayout as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type context$2_FormOverride as FormOverride, type context$2_FormProperties as FormProperties, type context$2_FormRule as FormRule, type context$2_FormSubmissionKeysPermanentlyDeletedEnvelope as FormSubmissionKeysPermanentlyDeletedEnvelope, type context$2_FormUpdatedEnvelope as FormUpdatedEnvelope, context$2_Format as Format, context$2_FormatEnumFormat as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_GIF as GIF, type context$2_GIFData as GIFData, type context$2_GalleryData as GalleryData, type context$2_GalleryOptions 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 context$2_Gradient as Gradient, type context$2_HTMLData as HTMLData, type context$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$2_Header as Header, type context$2_HeadingData as HeadingData, type context$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$2_Image as Image, type context$2_ImageData as ImageData, context$2_InitialExpandedItems as InitialExpandedItems, type context$2_InputField as InputField, type context$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context$2_InputFieldArrayType as InputFieldArrayType, type context$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context$2_InputFieldBooleanType as InputFieldBooleanType, type context$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context$2_InputFieldIntegerType as InputFieldIntegerType, type context$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type context$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context$2_InputFieldNumberType as InputFieldNumberType, type context$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context$2_InputFieldObjectType as InputFieldObjectType, type context$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context$2_InputFieldStringType as InputFieldStringType, type context$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context$2_InputType as InputType, type context$2_IntegerType as IntegerType, type context$2_Item as Item, type context$2_ItemDataOneOf as ItemDataOneOf, type context$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type context$2_ItemStyle as ItemStyle, context$2_ItemType as ItemType, context$2_Kind as Kind, type context$2_Layout as Layout, context$2_LayoutType as LayoutType, type context$2_LimitationRule as LimitationRule, context$2_LineStyle as LineStyle, type context$2_Link as Link, type context$2_LinkData as LinkData, type context$2_LinkDataOneOf as LinkDataOneOf, type context$2_LinkPreviewData as LinkPreviewData, context$2_LinkTarget 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 context$2_ListValue as ListValue, type context$2_MapData as MapData, type context$2_MapSettings as MapSettings, context$2_MapType as MapType, type context$2_Margin as Margin, type context$2_Media as Media, type context$2_MediaItem as MediaItem, type context$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type context$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type context$2_Metadata as Metadata, type context$2_MultilineAddress as MultilineAddress, context$2_MultilineAddressComponentType as MultilineAddressComponentType, type context$2_MultilineAddressValidation as MultilineAddressValidation, type context$2_NestedForm as NestedForm, type context$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type context$2_NestedFormOverrides as NestedFormOverrides, type context$2_Node as Node, type context$2_NodeDataOneOf as NodeDataOneOf, type context$2_NodeStyle as NodeStyle, context$2_NodeType as NodeType, context$2_NullValue as NullValue, context$2_NumberComponentType as NumberComponentType, type context$2_NumberErrorMessages as NumberErrorMessages, type context$2_NumberInput as NumberInput, context$2_NumberOfColumns as NumberOfColumns, type context$2_NumberType as NumberType, type context$2_ObjectErrorMessages as ObjectErrorMessages, type context$2_ObjectType as ObjectType, type context$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type context$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context$2_Oembed as Oembed, OptInLevel$1 as OptInLevel, type context$2_Option as Option, type context$2_OptionDesign as OptionDesign, type context$2_OptionLayout as OptionLayout, type context$2_OrderedListData as OrderedListData, context$2_Orientation as Orientation, context$2_OverrideEntityType as OverrideEntityType, type context$2_PDFSettings as PDFSettings, type context$2_ParagraphData as ParagraphData, type context$2_Payment as Payment, context$2_PaymentComponentType as PaymentComponentType, type context$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context$2_PaymentType as PaymentType, type context$2_Permissions as Permissions, type context$2_PhoneInfo as PhoneInfo, context$2_PhoneInfoTag as PhoneInfoTag, type context$2_PhoneInput as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type context$2_PlaybackOptions as PlaybackOptions, type context$2_PluginContainerData as PluginContainerData, context$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$2_PluginContainerDataWidth as PluginContainerDataWidth, type context$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$2_Poll as Poll, type context$2_PollData as PollData, type context$2_PollDataLayout as PollDataLayout, type context$2_PollDesign as PollDesign, type context$2_PollLayout as PollLayout, context$2_PollLayoutDirection as PollLayoutDirection, context$2_PollLayoutType as PollLayoutType, type context$2_PollOption as PollOption, type context$2_PostSubmissionTriggers as PostSubmissionTriggers, type context$2_PredefinedValidation as PredefinedValidation, type context$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context$2_PriceType as PriceType, type context$2_Product as Product, type context$2_ProductCheckboxGroup as ProductCheckboxGroup, type context$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context$2_ProductType as ProductType, type context$2_PropertiesType as PropertiesType, context$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context$2_QuantityLimit 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 context$2_RadioGroup as RadioGroup, type context$2_RadioGroupCustomOption as RadioGroupCustomOption, type context$2_RadioGroupOption as RadioGroupOption, type context$2_RatingInput as RatingInput, type context$2_Redirect as Redirect, type context$2_Rel as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, context$2_RequiredIndicator as RequiredIndicator, context$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context$2_RequiredIndicatorProperties 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 context$2_RichContent as RichContent, type context$2_RichText as RichText, type context$2_Section as Section, type context$2_Settings as Settings, type context$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, context$2_Source as Source, context$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context$2_Spoiler as Spoiler, type context$2_SpoilerData as SpoilerData, type context$2_Step as Step, context$2_StringComponentType as StringComponentType, type context$2_StringErrorMessages as StringErrorMessages, type context$2_StringType as StringType, type context$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context$2_Styles as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type context$2_SubmitButton as SubmitButton, type context$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context$2_SubscriptionInfo as SubscriptionInfo, type context$2_TableCellData as TableCellData, type context$2_TableData as TableData, context$2_Tag as Tag, context$2_Target as Target, context$2_TextAlignment as TextAlignment, type context$2_TextData as TextData, type context$2_TextInput as TextInput, type context$2_TextNodeStyle as TextNodeStyle, type context$2_TextStyle as TextStyle, type context$2_ThankYouMessage as ThankYouMessage, type context$2_Thumbnails as Thumbnails, context$2_ThumbnailsAlignment as ThumbnailsAlignment, type context$2_TimeOptions as TimeOptions, context$2_Type 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, context$2_UploadFileFormat as UploadFileFormat, type context$2_UpsertContact as UpsertContact, type context$2_Validation as Validation, context$2_ValidationFormat as ValidationFormat, type context$2_ValidationValidationOneOf as ValidationValidationOneOf, context$2_VerticalAlignment as VerticalAlignment, type context$2_Video as Video, type context$2_VideoData as VideoData, context$2_ViewMode as ViewMode, context$2_ViewRole as ViewRole, context$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, context$2_Width as Width, context$2_WidthType as WidthType, type context$2_WixFile as WixFile, context$2_WixFileComponentType as WixFileComponentType, type context$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context$2__Array as _Array, type context$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context$2__Boolean as _Boolean, type context$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context$2__Number as _Number, type context$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context$2__Object as _Object, type context$2__ObjectValidationOneOf as _ObjectValidationOneOf, type context$2__String as _String, type context$2__StringComponentTypeOptionsOneOf 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_onFormCreated as onFormCreated, context$2_onFormSubmissionKeysPermanentlyDeleted as onFormSubmissionKeysPermanentlyDeleted, context$2_onFormUpdated as onFormUpdated, 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 };
|
|
4725
|
+
export { type ActionEvent$2 as ActionEvent, type context$2_AddressInfo as AddressInfo, type context$2_AddressLine2 as AddressLine2, context$2_Alignment as Alignment, type context$2_AnchorData as AnchorData, type context$2_AppEmbedData as AppEmbedData, type context$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type context$2_ArrayErrorMessages as ArrayErrorMessages, type context$2_ArrayItems as ArrayItems, type context$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context$2_ArrayType as ArrayType, type context$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type context$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context$2_AudioData as AudioData, type context$2_Background as Background, type context$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$2_BackgroundType as BackgroundType, type context$2_BlockquoteData as BlockquoteData, type context$2_BookingData as BookingData, context$2_BooleanComponentType as BooleanComponentType, type context$2_BooleanErrorMessages as BooleanErrorMessages, type context$2_BooleanType as BooleanType, type context$2_Border as Border, type context$2_BorderColors as BorderColors, type context$2_BreakPoint 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 context$2_BulletedListData as BulletedListData, type context$2_ButtonData as ButtonData, context$2_ButtonDataType as ButtonDataType, type context$2_CellStyle as CellStyle, type context$2_Checkbox as Checkbox, type context$2_CheckboxGroup as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type context$2_CodeBlockData as CodeBlockData, type context$2_CollapsibleListData as CollapsibleListData, type context$2_ColorData as ColorData, type context$2_Colors as Colors, type context$2_CommonCustomOption as CommonCustomOption, context$2_ComponentType as ComponentType, context$2_ContactField 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, context$2_Crop 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 context$2_CustomFieldInfo as CustomFieldInfo, type context$2_CustomOption as CustomOption, type context$2_DataExtensionsDetails as DataExtensionsDetails, context$2_DateFormatPart as DateFormatPart, type context$2_DateOptions as DateOptions, type context$2_DatePickerOptions as DatePickerOptions, type context$2_DateTimeConstraints as DateTimeConstraints, type context$2_DateTimeInput as DateTimeInput, type context$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context$2_DateTimeInputType as DateTimeInputType, type context$2_DateTimeOptions as DateTimeOptions, type context$2_Decoration as Decoration, type context$2_DecorationDataOneOf as DecorationDataOneOf, context$2_DecorationType as DecorationType, type context$2_DefaultCountryConfig as DefaultCountryConfig, type context$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type context$2_Design as Design, type context$2_Dimensions as Dimensions, context$2_Direction as Direction, type context$2_DisplayField as DisplayField, type context$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context$2_DividerData as DividerData, type context$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$2_DonationInput as DonationInput, type context$2_DonationInputOption as DonationInputOption, type context$2_Dropdown as Dropdown, type context$2_DropdownCustomOption as DropdownCustomOption, type context$2_DropdownOption as DropdownOption, type context$2_DynamicPriceOptions as DynamicPriceOptions, type context$2_EmailInfo as EmailInfo, context$2_EmailInfoTag as EmailInfoTag, type context$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type context$2_FieldOverrides as FieldOverrides, context$2_FieldType as FieldType, type context$2_FieldsOverrides as FieldsOverrides, type context$2_FieldsSettings as FieldsSettings, context$2_Fieldset as Fieldset, type context$2_FileData as FileData, type context$2_FileSource as FileSource, type context$2_FileSourceDataOneOf as FileSourceDataOneOf, type context$2_FileUpload as FileUpload, context$2_FirstDayOfWeek as FirstDayOfWeek, type context$2_FixedPriceOptions as FixedPriceOptions, type context$2_FontSizeData as FontSizeData, context$2_FontType as FontType, type context$2_Form as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type context$2_FormField as FormField, type context$2_FormFieldContactInfo as FormFieldContactInfo, type context$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context$2_FormFieldV2 as FormFieldV2, type context$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context$2_FormLayout as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type context$2_FormOverride as FormOverride, type context$2_FormProperties as FormProperties, type context$2_FormRule as FormRule, context$2_Format as Format, context$2_FormatEnumFormat as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_GIF as GIF, type context$2_GIFData as GIFData, type context$2_GalleryData as GalleryData, type context$2_GalleryOptions 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 context$2_Gradient as Gradient, type context$2_HTMLData as HTMLData, type context$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$2_Header as Header, type context$2_HeadingData as HeadingData, type context$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$2_Image as Image, type context$2_ImageData as ImageData, context$2_InitialExpandedItems as InitialExpandedItems, type context$2_InputField as InputField, type context$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context$2_InputFieldArrayType as InputFieldArrayType, type context$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context$2_InputFieldBooleanType as InputFieldBooleanType, type context$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context$2_InputFieldIntegerType as InputFieldIntegerType, type context$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type context$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context$2_InputFieldNumberType as InputFieldNumberType, type context$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context$2_InputFieldObjectType as InputFieldObjectType, type context$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context$2_InputFieldStringType as InputFieldStringType, type context$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context$2_InputType as InputType, type context$2_IntegerType as IntegerType, type context$2_Item as Item, type context$2_ItemDataOneOf as ItemDataOneOf, type context$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type context$2_ItemStyle as ItemStyle, context$2_ItemType as ItemType, context$2_Kind as Kind, type context$2_Layout as Layout, context$2_LayoutType as LayoutType, type context$2_LimitationRule as LimitationRule, context$2_LineStyle as LineStyle, type context$2_Link as Link, type context$2_LinkData as LinkData, type context$2_LinkDataOneOf as LinkDataOneOf, type context$2_LinkPreviewData as LinkPreviewData, context$2_LinkTarget 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 context$2_ListValue as ListValue, type context$2_MapData as MapData, type context$2_MapSettings as MapSettings, context$2_MapType as MapType, type context$2_Margin as Margin, type context$2_Media as Media, type context$2_MediaItem as MediaItem, type context$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type context$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type context$2_Metadata as Metadata, type context$2_MultilineAddress as MultilineAddress, context$2_MultilineAddressComponentType as MultilineAddressComponentType, type context$2_MultilineAddressValidation as MultilineAddressValidation, type context$2_NestedForm as NestedForm, type context$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type context$2_NestedFormOverrides as NestedFormOverrides, type context$2_Node as Node, type context$2_NodeDataOneOf as NodeDataOneOf, type context$2_NodeStyle as NodeStyle, context$2_NodeType as NodeType, context$2_NullValue as NullValue, context$2_NumberComponentType as NumberComponentType, type context$2_NumberErrorMessages as NumberErrorMessages, type context$2_NumberInput as NumberInput, context$2_NumberOfColumns as NumberOfColumns, type context$2_NumberType as NumberType, type context$2_ObjectErrorMessages as ObjectErrorMessages, type context$2_ObjectType as ObjectType, type context$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type context$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context$2_Oembed as Oembed, OptInLevel$1 as OptInLevel, type context$2_Option as Option, type context$2_OptionDesign as OptionDesign, type context$2_OptionLayout as OptionLayout, type context$2_OrderedListData as OrderedListData, context$2_Orientation as Orientation, context$2_OverrideEntityType as OverrideEntityType, type context$2_PDFSettings as PDFSettings, type context$2_ParagraphData as ParagraphData, type context$2_Payment as Payment, context$2_PaymentComponentType as PaymentComponentType, type context$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context$2_PaymentType as PaymentType, type context$2_Permissions as Permissions, type context$2_PhoneInfo as PhoneInfo, context$2_PhoneInfoTag as PhoneInfoTag, type context$2_PhoneInput as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type context$2_PlaybackOptions as PlaybackOptions, type context$2_PluginContainerData as PluginContainerData, context$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$2_PluginContainerDataWidth as PluginContainerDataWidth, type context$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$2_Poll as Poll, type context$2_PollData as PollData, type context$2_PollDataLayout as PollDataLayout, type context$2_PollDesign as PollDesign, type context$2_PollLayout as PollLayout, context$2_PollLayoutDirection as PollLayoutDirection, context$2_PollLayoutType as PollLayoutType, type context$2_PollOption as PollOption, type context$2_PostSubmissionTriggers as PostSubmissionTriggers, type context$2_PredefinedValidation as PredefinedValidation, type context$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context$2_PriceType as PriceType, type context$2_Product as Product, type context$2_ProductCheckboxGroup as ProductCheckboxGroup, type context$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context$2_ProductType as ProductType, type context$2_PropertiesType as PropertiesType, context$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context$2_QuantityLimit 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 context$2_RadioGroup as RadioGroup, type context$2_RadioGroupCustomOption as RadioGroupCustomOption, type context$2_RadioGroupOption as RadioGroupOption, type context$2_RatingInput as RatingInput, type context$2_Redirect as Redirect, type context$2_Rel as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, context$2_RequiredIndicator as RequiredIndicator, context$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context$2_RequiredIndicatorProperties 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 context$2_RichContent as RichContent, type context$2_RichText as RichText, type context$2_Section as Section, type context$2_Settings as Settings, type context$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, context$2_Source as Source, context$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context$2_Spoiler as Spoiler, type context$2_SpoilerData as SpoilerData, type context$2_Step as Step, context$2_StringComponentType as StringComponentType, type context$2_StringErrorMessages as StringErrorMessages, type context$2_StringType as StringType, type context$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context$2_Styles as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type context$2_SubmitButton as SubmitButton, type context$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context$2_SubscriptionInfo as SubscriptionInfo, type context$2_TableCellData as TableCellData, type context$2_TableData as TableData, context$2_Tag as Tag, context$2_Target as Target, context$2_TextAlignment as TextAlignment, type context$2_TextData as TextData, type context$2_TextInput as TextInput, type context$2_TextNodeStyle as TextNodeStyle, type context$2_TextStyle as TextStyle, type context$2_ThankYouMessage as ThankYouMessage, type context$2_Thumbnails as Thumbnails, context$2_ThumbnailsAlignment as ThumbnailsAlignment, type context$2_TimeOptions as TimeOptions, context$2_Type 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, context$2_UploadFileFormat as UploadFileFormat, type context$2_UpsertContact as UpsertContact, type context$2_Validation as Validation, context$2_ValidationFormat as ValidationFormat, type context$2_ValidationValidationOneOf as ValidationValidationOneOf, context$2_VerticalAlignment as VerticalAlignment, type context$2_Video as Video, type context$2_VideoData as VideoData, context$2_ViewMode as ViewMode, context$2_ViewRole as ViewRole, context$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, context$2_Width as Width, context$2_WidthType as WidthType, type context$2_WixFile as WixFile, context$2_WixFileComponentType as WixFileComponentType, type context$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context$2__Array as _Array, type context$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context$2__Boolean as _Boolean, type context$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context$2__Number as _Number, type context$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context$2__Object as _Object, type context$2__ObjectValidationOneOf as _ObjectValidationOneOf, type context$2__String as _String, type context$2__StringComponentTypeOptionsOneOf 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 };
|
|
4795
4726
|
}
|
|
4796
4727
|
|
|
4797
4728
|
/**
|
|
@@ -2862,6 +2862,30 @@ interface RequiredIndicatorProperties {
|
|
|
2862
2862
|
/** Required indicator placement. */
|
|
2863
2863
|
requiredIndicatorPlacement?: RequiredIndicatorPlacement;
|
|
2864
2864
|
}
|
|
2865
|
+
interface PiiFieldsUpdated {
|
|
2866
|
+
/** Collection of fields which are marked as PII */
|
|
2867
|
+
piiFields?: string[];
|
|
2868
|
+
/** Collection of fields which are non PII */
|
|
2869
|
+
nonPiiFields?: string[];
|
|
2870
|
+
}
|
|
2871
|
+
interface FormChanged {
|
|
2872
|
+
/** Form namespace */
|
|
2873
|
+
namespace?: string;
|
|
2874
|
+
/** Form after update */
|
|
2875
|
+
form?: Form;
|
|
2876
|
+
/** Form before update */
|
|
2877
|
+
formBeforeUpdate?: Form;
|
|
2878
|
+
}
|
|
2879
|
+
interface FormDeleted {
|
|
2880
|
+
/** Form namespace */
|
|
2881
|
+
namespace?: string;
|
|
2882
|
+
/** Form state on delete moment */
|
|
2883
|
+
form?: Form;
|
|
2884
|
+
}
|
|
2885
|
+
interface SubmissionKeysPermanentlyDeleted {
|
|
2886
|
+
/** Keys which should be deleted */
|
|
2887
|
+
keys?: string[] | null;
|
|
2888
|
+
}
|
|
2865
2889
|
interface CreateFormRequest {
|
|
2866
2890
|
/** Form to be created. */
|
|
2867
2891
|
form: Form;
|
|
@@ -2949,20 +2973,6 @@ interface UpdateFormResponse {
|
|
|
2949
2973
|
/** The updated form. */
|
|
2950
2974
|
form?: Form;
|
|
2951
2975
|
}
|
|
2952
|
-
interface PiiFieldsUpdated {
|
|
2953
|
-
/** Collection of fields which are marked as PII */
|
|
2954
|
-
piiFields?: string[];
|
|
2955
|
-
/** Collection of fields which are non PII */
|
|
2956
|
-
nonPiiFields?: string[];
|
|
2957
|
-
}
|
|
2958
|
-
interface FormChanged {
|
|
2959
|
-
/** Form namespace */
|
|
2960
|
-
namespace?: string;
|
|
2961
|
-
/** Form after update */
|
|
2962
|
-
form?: Form;
|
|
2963
|
-
/** Form before update */
|
|
2964
|
-
formBeforeUpdate?: Form;
|
|
2965
|
-
}
|
|
2966
2976
|
interface RemoveFormFromTrashBinRequest {
|
|
2967
2977
|
/** Id of the form to delete. */
|
|
2968
2978
|
formId: string;
|
|
@@ -2982,12 +2992,6 @@ interface DeleteFormRequest {
|
|
|
2982
2992
|
}
|
|
2983
2993
|
interface DeleteFormResponse {
|
|
2984
2994
|
}
|
|
2985
|
-
interface FormDeleted {
|
|
2986
|
-
/** Form namespace */
|
|
2987
|
-
namespace?: string;
|
|
2988
|
-
/** Form state on delete moment */
|
|
2989
|
-
form?: Form;
|
|
2990
|
-
}
|
|
2991
2995
|
interface RestoreFromTrashBinRequest {
|
|
2992
2996
|
/** Id of the form to restore. */
|
|
2993
2997
|
formId: string;
|
|
@@ -3206,10 +3210,6 @@ interface BulkRemoveDeletedFieldResponse {
|
|
|
3206
3210
|
/** Form with the deleted fields. */
|
|
3207
3211
|
form?: Form;
|
|
3208
3212
|
}
|
|
3209
|
-
interface SubmissionKeysPermanentlyDeleted {
|
|
3210
|
-
/** Keys which should be deleted */
|
|
3211
|
-
keys?: string[] | null;
|
|
3212
|
-
}
|
|
3213
3213
|
interface UpdateExtendedFieldsRequest {
|
|
3214
3214
|
/** ID of the entity to update. */
|
|
3215
3215
|
_id: string;
|
|
@@ -3993,64 +3993,6 @@ interface BulkRemoveDeletedFieldResponseNonNullableFields {
|
|
|
3993
3993
|
interface UpdateExtendedFieldsResponseNonNullableFields {
|
|
3994
3994
|
namespace: string;
|
|
3995
3995
|
}
|
|
3996
|
-
interface BaseEventMetadata$2 {
|
|
3997
|
-
/** App instance ID. */
|
|
3998
|
-
instanceId?: string | null;
|
|
3999
|
-
/** Event type. */
|
|
4000
|
-
eventType?: string;
|
|
4001
|
-
/** The identification type and identity data. */
|
|
4002
|
-
identity?: IdentificationData$2;
|
|
4003
|
-
}
|
|
4004
|
-
interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
4005
|
-
/**
|
|
4006
|
-
* Unique event ID.
|
|
4007
|
-
* Allows clients to ignore duplicate webhooks.
|
|
4008
|
-
*/
|
|
4009
|
-
_id?: string;
|
|
4010
|
-
/**
|
|
4011
|
-
* Assumes actions are also always typed to an entity_type
|
|
4012
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
4013
|
-
*/
|
|
4014
|
-
entityFqdn?: string;
|
|
4015
|
-
/**
|
|
4016
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
4017
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
4018
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
4019
|
-
*/
|
|
4020
|
-
slug?: string;
|
|
4021
|
-
/** ID of the entity associated with the event. */
|
|
4022
|
-
entityId?: string;
|
|
4023
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
4024
|
-
eventTime?: Date;
|
|
4025
|
-
/**
|
|
4026
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
4027
|
-
* (for example, GDPR).
|
|
4028
|
-
*/
|
|
4029
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
4030
|
-
/** If present, indicates the action that triggered the event. */
|
|
4031
|
-
originatedFrom?: string | null;
|
|
4032
|
-
/**
|
|
4033
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
4034
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
4035
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
4036
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
4037
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
4038
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
4039
|
-
*/
|
|
4040
|
-
entityEventSequence?: string | null;
|
|
4041
|
-
}
|
|
4042
|
-
interface FormCreatedEnvelope {
|
|
4043
|
-
entity: Form;
|
|
4044
|
-
metadata: EventMetadata$2;
|
|
4045
|
-
}
|
|
4046
|
-
interface FormUpdatedEnvelope {
|
|
4047
|
-
entity: Form;
|
|
4048
|
-
metadata: EventMetadata$2;
|
|
4049
|
-
}
|
|
4050
|
-
interface FormSubmissionKeysPermanentlyDeletedEnvelope {
|
|
4051
|
-
data: SubmissionKeysPermanentlyDeleted;
|
|
4052
|
-
metadata: EventMetadata$2;
|
|
4053
|
-
}
|
|
4054
3996
|
interface BulkCreateFormOptions {
|
|
4055
3997
|
/** Forms to be created. */
|
|
4056
3998
|
forms?: Form[];
|
|
@@ -4331,8 +4273,6 @@ declare global {
|
|
|
4331
4273
|
|
|
4332
4274
|
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4333
4275
|
|
|
4334
|
-
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4335
|
-
|
|
4336
4276
|
declare const createForm: ReturnType<typeof createRESTModule$2<typeof publicCreateForm>>;
|
|
4337
4277
|
declare const bulkCreateForm: ReturnType<typeof createRESTModule$2<typeof publicBulkCreateForm>>;
|
|
4338
4278
|
declare const cloneForm: ReturnType<typeof createRESTModule$2<typeof publicCloneForm>>;
|
|
@@ -4349,9 +4289,6 @@ declare const queryDeletedForms: ReturnType<typeof createRESTModule$2<typeof pub
|
|
|
4349
4289
|
declare const listDeletedForms: ReturnType<typeof createRESTModule$2<typeof publicListDeletedForms>>;
|
|
4350
4290
|
declare const bulkRemoveDeletedField: ReturnType<typeof createRESTModule$2<typeof publicBulkRemoveDeletedField>>;
|
|
4351
4291
|
declare const updateExtendedFields: ReturnType<typeof createRESTModule$2<typeof publicUpdateExtendedFields>>;
|
|
4352
|
-
declare const onFormCreated: ReturnType<typeof createEventModule$2<typeof publicOnFormCreated>>;
|
|
4353
|
-
declare const onFormUpdated: ReturnType<typeof createEventModule$2<typeof publicOnFormUpdated>>;
|
|
4354
|
-
declare const onFormSubmissionKeysPermanentlyDeleted: ReturnType<typeof createEventModule$2<typeof publicOnFormSubmissionKeysPermanentlyDeleted>>;
|
|
4355
4292
|
|
|
4356
4293
|
type index_d$2_AddressInfo = AddressInfo;
|
|
4357
4294
|
type index_d$2_AddressLine2 = AddressLine2;
|
|
@@ -4481,7 +4418,6 @@ type index_d$2_FontType = FontType;
|
|
|
4481
4418
|
declare const index_d$2_FontType: typeof FontType;
|
|
4482
4419
|
type index_d$2_Form = Form;
|
|
4483
4420
|
type index_d$2_FormChanged = FormChanged;
|
|
4484
|
-
type index_d$2_FormCreatedEnvelope = FormCreatedEnvelope;
|
|
4485
4421
|
type index_d$2_FormDeleted = FormDeleted;
|
|
4486
4422
|
type index_d$2_FormField = FormField;
|
|
4487
4423
|
type index_d$2_FormFieldContactInfo = FormFieldContactInfo;
|
|
@@ -4493,8 +4429,6 @@ type index_d$2_FormNonNullableFields = FormNonNullableFields;
|
|
|
4493
4429
|
type index_d$2_FormOverride = FormOverride;
|
|
4494
4430
|
type index_d$2_FormProperties = FormProperties;
|
|
4495
4431
|
type index_d$2_FormRule = FormRule;
|
|
4496
|
-
type index_d$2_FormSubmissionKeysPermanentlyDeletedEnvelope = FormSubmissionKeysPermanentlyDeletedEnvelope;
|
|
4497
|
-
type index_d$2_FormUpdatedEnvelope = FormUpdatedEnvelope;
|
|
4498
4432
|
type index_d$2_Format = Format;
|
|
4499
4433
|
declare const index_d$2_Format: typeof Format;
|
|
4500
4434
|
type index_d$2_FormatEnumFormat = FormatEnumFormat;
|
|
@@ -4781,9 +4715,6 @@ declare const index_d$2_getDeletedForm: typeof getDeletedForm;
|
|
|
4781
4715
|
declare const index_d$2_getForm: typeof getForm;
|
|
4782
4716
|
declare const index_d$2_listDeletedForms: typeof listDeletedForms;
|
|
4783
4717
|
declare const index_d$2_listForms: typeof listForms;
|
|
4784
|
-
declare const index_d$2_onFormCreated: typeof onFormCreated;
|
|
4785
|
-
declare const index_d$2_onFormSubmissionKeysPermanentlyDeleted: typeof onFormSubmissionKeysPermanentlyDeleted;
|
|
4786
|
-
declare const index_d$2_onFormUpdated: typeof onFormUpdated;
|
|
4787
4718
|
declare const index_d$2_queryDeletedForms: typeof queryDeletedForms;
|
|
4788
4719
|
declare const index_d$2_queryForms: typeof queryForms;
|
|
4789
4720
|
declare const index_d$2_removeFormFromTrashBin: typeof removeFormFromTrashBin;
|
|
@@ -4791,7 +4722,7 @@ declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4791
4722
|
declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4792
4723
|
declare const index_d$2_updateForm: typeof updateForm;
|
|
4793
4724
|
declare namespace index_d$2 {
|
|
4794
|
-
export { type ActionEvent$2 as ActionEvent, type index_d$2_AddressInfo as AddressInfo, type index_d$2_AddressLine2 as AddressLine2, index_d$2_Alignment as Alignment, type index_d$2_AnchorData as AnchorData, type index_d$2_AppEmbedData as AppEmbedData, type index_d$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type index_d$2_ArrayErrorMessages as ArrayErrorMessages, type index_d$2_ArrayItems as ArrayItems, type index_d$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d$2_ArrayType as ArrayType, type index_d$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d$2_AudioData as AudioData, type index_d$2_Background as Background, type index_d$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$2_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$2_BlockquoteData as BlockquoteData, type index_d$2_BookingData as BookingData, index_d$2_BooleanComponentType as BooleanComponentType, type index_d$2_BooleanErrorMessages as BooleanErrorMessages, type index_d$2_BooleanType as BooleanType, type index_d$2_Border as Border, type index_d$2_BorderColors as BorderColors, type index_d$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type index_d$2_BulletedListData as BulletedListData, type index_d$2_ButtonData as ButtonData, index_d$2_ButtonDataType as ButtonDataType, type index_d$2_CellStyle as CellStyle, type index_d$2_Checkbox as Checkbox, type index_d$2_CheckboxGroup as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type index_d$2_CodeBlockData as CodeBlockData, type index_d$2_CollapsibleListData as CollapsibleListData, type index_d$2_ColorData as ColorData, type index_d$2_Colors as Colors, type index_d$2_CommonCustomOption as CommonCustomOption, index_d$2_ComponentType as ComponentType, index_d$2_ContactField as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, index_d$2_Crop 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 index_d$2_CustomFieldInfo as CustomFieldInfo, type index_d$2_CustomOption as CustomOption, type index_d$2_DataExtensionsDetails as DataExtensionsDetails, index_d$2_DateFormatPart as DateFormatPart, type index_d$2_DateOptions as DateOptions, type index_d$2_DatePickerOptions as DatePickerOptions, type index_d$2_DateTimeConstraints as DateTimeConstraints, type index_d$2_DateTimeInput as DateTimeInput, type index_d$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d$2_DateTimeInputType as DateTimeInputType, type index_d$2_DateTimeOptions as DateTimeOptions, type index_d$2_Decoration as Decoration, type index_d$2_DecorationDataOneOf as DecorationDataOneOf, index_d$2_DecorationType as DecorationType, type index_d$2_DefaultCountryConfig as DefaultCountryConfig, type index_d$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type index_d$2_Design as Design, type index_d$2_Dimensions as Dimensions, index_d$2_Direction as Direction, type index_d$2_DisplayField as DisplayField, type index_d$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d$2_DividerData as DividerData, type index_d$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_DonationInput as DonationInput, type index_d$2_DonationInputOption as DonationInputOption, type index_d$2_Dropdown as Dropdown, type index_d$2_DropdownCustomOption as DropdownCustomOption, type index_d$2_DropdownOption as DropdownOption, type index_d$2_DynamicPriceOptions as DynamicPriceOptions, type index_d$2_EmailInfo as EmailInfo, index_d$2_EmailInfoTag as EmailInfoTag, type index_d$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$2_EventData as EventData, type EventMetadata$2 as EventMetadata, type ExtendedFields$2 as ExtendedFields, type index_d$2_FieldOverrides as FieldOverrides, index_d$2_FieldType as FieldType, type index_d$2_FieldsOverrides as FieldsOverrides, type index_d$2_FieldsSettings as FieldsSettings, index_d$2_Fieldset as Fieldset, type index_d$2_FileData as FileData, type index_d$2_FileSource as FileSource, type index_d$2_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$2_FileUpload as FileUpload, index_d$2_FirstDayOfWeek as FirstDayOfWeek, type index_d$2_FixedPriceOptions as FixedPriceOptions, type index_d$2_FontSizeData as FontSizeData, index_d$2_FontType as FontType, type index_d$2_Form as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormCreatedEnvelope as FormCreatedEnvelope, type index_d$2_FormDeleted as FormDeleted, type index_d$2_FormField as FormField, type index_d$2_FormFieldContactInfo as FormFieldContactInfo, type index_d$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d$2_FormFieldV2 as FormFieldV2, type index_d$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d$2_FormLayout as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type index_d$2_FormOverride as FormOverride, type index_d$2_FormProperties as FormProperties, type index_d$2_FormRule as FormRule, type index_d$2_FormSubmissionKeysPermanentlyDeletedEnvelope as FormSubmissionKeysPermanentlyDeletedEnvelope, type index_d$2_FormUpdatedEnvelope as FormUpdatedEnvelope, index_d$2_Format as Format, index_d$2_FormatEnumFormat as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_GIF as GIF, type index_d$2_GIFData as GIFData, type index_d$2_GalleryData as GalleryData, type index_d$2_GalleryOptions as GalleryOptions, type index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type index_d$2_Gradient as Gradient, type index_d$2_HTMLData as HTMLData, type index_d$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$2_Header as Header, type index_d$2_HeadingData as HeadingData, type index_d$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$2_Image as Image, type index_d$2_ImageData as ImageData, index_d$2_InitialExpandedItems as InitialExpandedItems, type index_d$2_InputField as InputField, type index_d$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d$2_InputFieldArrayType as InputFieldArrayType, type index_d$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d$2_InputFieldBooleanType as InputFieldBooleanType, type index_d$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d$2_InputFieldIntegerType as InputFieldIntegerType, type index_d$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d$2_InputFieldNumberType as InputFieldNumberType, type index_d$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d$2_InputFieldObjectType as InputFieldObjectType, type index_d$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d$2_InputFieldStringType as InputFieldStringType, type index_d$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d$2_InputType as InputType, type index_d$2_IntegerType as IntegerType, type index_d$2_Item as Item, type index_d$2_ItemDataOneOf as ItemDataOneOf, type index_d$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type index_d$2_ItemStyle as ItemStyle, index_d$2_ItemType as ItemType, index_d$2_Kind as Kind, type index_d$2_Layout as Layout, index_d$2_LayoutType as LayoutType, type index_d$2_LimitationRule as LimitationRule, index_d$2_LineStyle as LineStyle, type index_d$2_Link as Link, type index_d$2_LinkData as LinkData, type index_d$2_LinkDataOneOf as LinkDataOneOf, type index_d$2_LinkPreviewData as LinkPreviewData, index_d$2_LinkTarget as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type index_d$2_ListValue as ListValue, type index_d$2_MapData as MapData, type index_d$2_MapSettings as MapSettings, index_d$2_MapType as MapType, type index_d$2_Margin as Margin, type index_d$2_Media as Media, type index_d$2_MediaItem as MediaItem, type index_d$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type index_d$2_Metadata as Metadata, type index_d$2_MultilineAddress as MultilineAddress, index_d$2_MultilineAddressComponentType as MultilineAddressComponentType, type index_d$2_MultilineAddressValidation as MultilineAddressValidation, type index_d$2_NestedForm as NestedForm, type index_d$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d$2_NestedFormOverrides as NestedFormOverrides, type index_d$2_Node as Node, type index_d$2_NodeDataOneOf as NodeDataOneOf, type index_d$2_NodeStyle as NodeStyle, index_d$2_NodeType as NodeType, index_d$2_NullValue as NullValue, index_d$2_NumberComponentType as NumberComponentType, type index_d$2_NumberErrorMessages as NumberErrorMessages, type index_d$2_NumberInput as NumberInput, index_d$2_NumberOfColumns as NumberOfColumns, type index_d$2_NumberType as NumberType, type index_d$2_ObjectErrorMessages as ObjectErrorMessages, type index_d$2_ObjectType as ObjectType, type index_d$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d$2_Oembed as Oembed, OptInLevel$1 as OptInLevel, type index_d$2_Option as Option, type index_d$2_OptionDesign as OptionDesign, type index_d$2_OptionLayout as OptionLayout, type index_d$2_OrderedListData as OrderedListData, index_d$2_Orientation as Orientation, index_d$2_OverrideEntityType as OverrideEntityType, type index_d$2_PDFSettings as PDFSettings, type index_d$2_ParagraphData as ParagraphData, type index_d$2_Payment as Payment, index_d$2_PaymentComponentType as PaymentComponentType, type index_d$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d$2_PaymentType as PaymentType, type index_d$2_Permissions as Permissions, type index_d$2_PhoneInfo as PhoneInfo, index_d$2_PhoneInfoTag as PhoneInfoTag, type index_d$2_PhoneInput as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type index_d$2_PlaybackOptions as PlaybackOptions, type index_d$2_PluginContainerData as PluginContainerData, index_d$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$2_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$2_Poll as Poll, type index_d$2_PollData as PollData, type index_d$2_PollDataLayout as PollDataLayout, type index_d$2_PollDesign as PollDesign, type index_d$2_PollLayout as PollLayout, index_d$2_PollLayoutDirection as PollLayoutDirection, index_d$2_PollLayoutType as PollLayoutType, type index_d$2_PollOption as PollOption, type index_d$2_PostSubmissionTriggers as PostSubmissionTriggers, type index_d$2_PredefinedValidation as PredefinedValidation, type index_d$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d$2_PriceType as PriceType, type index_d$2_Product as Product, type index_d$2_ProductCheckboxGroup as ProductCheckboxGroup, type index_d$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d$2_ProductType as ProductType, type index_d$2_PropertiesType as PropertiesType, index_d$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d$2_QuantityLimit as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type index_d$2_RadioGroup as RadioGroup, type index_d$2_RadioGroupCustomOption as RadioGroupCustomOption, type index_d$2_RadioGroupOption as RadioGroupOption, type index_d$2_RatingInput as RatingInput, type index_d$2_Redirect as Redirect, type index_d$2_Rel as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, index_d$2_RequiredIndicator as RequiredIndicator, index_d$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type index_d$2_RichContent as RichContent, type index_d$2_RichText as RichText, type index_d$2_Section as Section, type index_d$2_Settings as Settings, type index_d$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$2_Source as Source, index_d$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d$2_Spoiler as Spoiler, type index_d$2_SpoilerData as SpoilerData, type index_d$2_Step as Step, index_d$2_StringComponentType as StringComponentType, type index_d$2_StringErrorMessages as StringErrorMessages, type index_d$2_StringType as StringType, type index_d$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d$2_Styles as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type index_d$2_SubmitButton as SubmitButton, type index_d$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d$2_SubscriptionInfo as SubscriptionInfo, type index_d$2_TableCellData as TableCellData, type index_d$2_TableData as TableData, index_d$2_Tag as Tag, index_d$2_Target as Target, index_d$2_TextAlignment as TextAlignment, type index_d$2_TextData as TextData, type index_d$2_TextInput as TextInput, type index_d$2_TextNodeStyle as TextNodeStyle, type index_d$2_TextStyle as TextStyle, type index_d$2_ThankYouMessage as ThankYouMessage, type index_d$2_Thumbnails as Thumbnails, index_d$2_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$2_TimeOptions as TimeOptions, index_d$2_Type as Type, type index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, index_d$2_UploadFileFormat as UploadFileFormat, type index_d$2_UpsertContact as UpsertContact, type index_d$2_Validation as Validation, index_d$2_ValidationFormat as ValidationFormat, type index_d$2_ValidationValidationOneOf as ValidationValidationOneOf, index_d$2_VerticalAlignment as VerticalAlignment, type index_d$2_Video as Video, type index_d$2_VideoData as VideoData, index_d$2_ViewMode as ViewMode, index_d$2_ViewRole as ViewRole, index_d$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, index_d$2_Width as Width, index_d$2_WidthType as WidthType, type index_d$2_WixFile as WixFile, index_d$2_WixFileComponentType as WixFileComponentType, type index_d$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d$2__Array as _Array, type index_d$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d$2__Boolean as _Boolean, type index_d$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d$2__Number as _Number, type index_d$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d$2__Object as _Object, type index_d$2__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d$2__String as _String, type index_d$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_onFormCreated as onFormCreated, index_d$2_onFormSubmissionKeysPermanentlyDeleted as onFormSubmissionKeysPermanentlyDeleted, index_d$2_onFormUpdated as onFormUpdated, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, index_d$2_updateExtendedFields as updateExtendedFields, index_d$2_updateForm as updateForm };
|
|
4725
|
+
export { type ActionEvent$2 as ActionEvent, type index_d$2_AddressInfo as AddressInfo, type index_d$2_AddressLine2 as AddressLine2, index_d$2_Alignment as Alignment, type index_d$2_AnchorData as AnchorData, type index_d$2_AppEmbedData as AppEmbedData, type index_d$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type index_d$2_ArrayErrorMessages as ArrayErrorMessages, type index_d$2_ArrayItems as ArrayItems, type index_d$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d$2_ArrayType as ArrayType, type index_d$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d$2_AudioData as AudioData, type index_d$2_Background as Background, type index_d$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$2_BackgroundType as BackgroundType, type index_d$2_BlockquoteData as BlockquoteData, type index_d$2_BookingData as BookingData, index_d$2_BooleanComponentType as BooleanComponentType, type index_d$2_BooleanErrorMessages as BooleanErrorMessages, type index_d$2_BooleanType as BooleanType, type index_d$2_Border as Border, type index_d$2_BorderColors as BorderColors, type index_d$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type index_d$2_BulletedListData as BulletedListData, type index_d$2_ButtonData as ButtonData, index_d$2_ButtonDataType as ButtonDataType, type index_d$2_CellStyle as CellStyle, type index_d$2_Checkbox as Checkbox, type index_d$2_CheckboxGroup as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type index_d$2_CodeBlockData as CodeBlockData, type index_d$2_CollapsibleListData as CollapsibleListData, type index_d$2_ColorData as ColorData, type index_d$2_Colors as Colors, type index_d$2_CommonCustomOption as CommonCustomOption, index_d$2_ComponentType as ComponentType, index_d$2_ContactField as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, index_d$2_Crop 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 index_d$2_CustomFieldInfo as CustomFieldInfo, type index_d$2_CustomOption as CustomOption, type index_d$2_DataExtensionsDetails as DataExtensionsDetails, index_d$2_DateFormatPart as DateFormatPart, type index_d$2_DateOptions as DateOptions, type index_d$2_DatePickerOptions as DatePickerOptions, type index_d$2_DateTimeConstraints as DateTimeConstraints, type index_d$2_DateTimeInput as DateTimeInput, type index_d$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d$2_DateTimeInputType as DateTimeInputType, type index_d$2_DateTimeOptions as DateTimeOptions, type index_d$2_Decoration as Decoration, type index_d$2_DecorationDataOneOf as DecorationDataOneOf, index_d$2_DecorationType as DecorationType, type index_d$2_DefaultCountryConfig as DefaultCountryConfig, type index_d$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type index_d$2_Design as Design, type index_d$2_Dimensions as Dimensions, index_d$2_Direction as Direction, type index_d$2_DisplayField as DisplayField, type index_d$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d$2_DividerData as DividerData, type index_d$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_DonationInput as DonationInput, type index_d$2_DonationInputOption as DonationInputOption, type index_d$2_Dropdown as Dropdown, type index_d$2_DropdownCustomOption as DropdownCustomOption, type index_d$2_DropdownOption as DropdownOption, type index_d$2_DynamicPriceOptions as DynamicPriceOptions, type index_d$2_EmailInfo as EmailInfo, index_d$2_EmailInfoTag as EmailInfoTag, type index_d$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type index_d$2_FieldOverrides as FieldOverrides, index_d$2_FieldType as FieldType, type index_d$2_FieldsOverrides as FieldsOverrides, type index_d$2_FieldsSettings as FieldsSettings, index_d$2_Fieldset as Fieldset, type index_d$2_FileData as FileData, type index_d$2_FileSource as FileSource, type index_d$2_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$2_FileUpload as FileUpload, index_d$2_FirstDayOfWeek as FirstDayOfWeek, type index_d$2_FixedPriceOptions as FixedPriceOptions, type index_d$2_FontSizeData as FontSizeData, index_d$2_FontType as FontType, type index_d$2_Form as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type index_d$2_FormField as FormField, type index_d$2_FormFieldContactInfo as FormFieldContactInfo, type index_d$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d$2_FormFieldV2 as FormFieldV2, type index_d$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d$2_FormLayout as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type index_d$2_FormOverride as FormOverride, type index_d$2_FormProperties as FormProperties, type index_d$2_FormRule as FormRule, index_d$2_Format as Format, index_d$2_FormatEnumFormat as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_GIF as GIF, type index_d$2_GIFData as GIFData, type index_d$2_GalleryData as GalleryData, type index_d$2_GalleryOptions as GalleryOptions, type index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type index_d$2_Gradient as Gradient, type index_d$2_HTMLData as HTMLData, type index_d$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$2_Header as Header, type index_d$2_HeadingData as HeadingData, type index_d$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$2_Image as Image, type index_d$2_ImageData as ImageData, index_d$2_InitialExpandedItems as InitialExpandedItems, type index_d$2_InputField as InputField, type index_d$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d$2_InputFieldArrayType as InputFieldArrayType, type index_d$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d$2_InputFieldBooleanType as InputFieldBooleanType, type index_d$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d$2_InputFieldIntegerType as InputFieldIntegerType, type index_d$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d$2_InputFieldNumberType as InputFieldNumberType, type index_d$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d$2_InputFieldObjectType as InputFieldObjectType, type index_d$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d$2_InputFieldStringType as InputFieldStringType, type index_d$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d$2_InputType as InputType, type index_d$2_IntegerType as IntegerType, type index_d$2_Item as Item, type index_d$2_ItemDataOneOf as ItemDataOneOf, type index_d$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type index_d$2_ItemStyle as ItemStyle, index_d$2_ItemType as ItemType, index_d$2_Kind as Kind, type index_d$2_Layout as Layout, index_d$2_LayoutType as LayoutType, type index_d$2_LimitationRule as LimitationRule, index_d$2_LineStyle as LineStyle, type index_d$2_Link as Link, type index_d$2_LinkData as LinkData, type index_d$2_LinkDataOneOf as LinkDataOneOf, type index_d$2_LinkPreviewData as LinkPreviewData, index_d$2_LinkTarget as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type index_d$2_ListValue as ListValue, type index_d$2_MapData as MapData, type index_d$2_MapSettings as MapSettings, index_d$2_MapType as MapType, type index_d$2_Margin as Margin, type index_d$2_Media as Media, type index_d$2_MediaItem as MediaItem, type index_d$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type index_d$2_Metadata as Metadata, type index_d$2_MultilineAddress as MultilineAddress, index_d$2_MultilineAddressComponentType as MultilineAddressComponentType, type index_d$2_MultilineAddressValidation as MultilineAddressValidation, type index_d$2_NestedForm as NestedForm, type index_d$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d$2_NestedFormOverrides as NestedFormOverrides, type index_d$2_Node as Node, type index_d$2_NodeDataOneOf as NodeDataOneOf, type index_d$2_NodeStyle as NodeStyle, index_d$2_NodeType as NodeType, index_d$2_NullValue as NullValue, index_d$2_NumberComponentType as NumberComponentType, type index_d$2_NumberErrorMessages as NumberErrorMessages, type index_d$2_NumberInput as NumberInput, index_d$2_NumberOfColumns as NumberOfColumns, type index_d$2_NumberType as NumberType, type index_d$2_ObjectErrorMessages as ObjectErrorMessages, type index_d$2_ObjectType as ObjectType, type index_d$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d$2_Oembed as Oembed, OptInLevel$1 as OptInLevel, type index_d$2_Option as Option, type index_d$2_OptionDesign as OptionDesign, type index_d$2_OptionLayout as OptionLayout, type index_d$2_OrderedListData as OrderedListData, index_d$2_Orientation as Orientation, index_d$2_OverrideEntityType as OverrideEntityType, type index_d$2_PDFSettings as PDFSettings, type index_d$2_ParagraphData as ParagraphData, type index_d$2_Payment as Payment, index_d$2_PaymentComponentType as PaymentComponentType, type index_d$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d$2_PaymentType as PaymentType, type index_d$2_Permissions as Permissions, type index_d$2_PhoneInfo as PhoneInfo, index_d$2_PhoneInfoTag as PhoneInfoTag, type index_d$2_PhoneInput as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type index_d$2_PlaybackOptions as PlaybackOptions, type index_d$2_PluginContainerData as PluginContainerData, index_d$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$2_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$2_Poll as Poll, type index_d$2_PollData as PollData, type index_d$2_PollDataLayout as PollDataLayout, type index_d$2_PollDesign as PollDesign, type index_d$2_PollLayout as PollLayout, index_d$2_PollLayoutDirection as PollLayoutDirection, index_d$2_PollLayoutType as PollLayoutType, type index_d$2_PollOption as PollOption, type index_d$2_PostSubmissionTriggers as PostSubmissionTriggers, type index_d$2_PredefinedValidation as PredefinedValidation, type index_d$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d$2_PriceType as PriceType, type index_d$2_Product as Product, type index_d$2_ProductCheckboxGroup as ProductCheckboxGroup, type index_d$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d$2_ProductType as ProductType, type index_d$2_PropertiesType as PropertiesType, index_d$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d$2_QuantityLimit as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type index_d$2_RadioGroup as RadioGroup, type index_d$2_RadioGroupCustomOption as RadioGroupCustomOption, type index_d$2_RadioGroupOption as RadioGroupOption, type index_d$2_RatingInput as RatingInput, type index_d$2_Redirect as Redirect, type index_d$2_Rel as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, index_d$2_RequiredIndicator as RequiredIndicator, index_d$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type index_d$2_RichContent as RichContent, type index_d$2_RichText as RichText, type index_d$2_Section as Section, type index_d$2_Settings as Settings, type index_d$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$2_Source as Source, index_d$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d$2_Spoiler as Spoiler, type index_d$2_SpoilerData as SpoilerData, type index_d$2_Step as Step, index_d$2_StringComponentType as StringComponentType, type index_d$2_StringErrorMessages as StringErrorMessages, type index_d$2_StringType as StringType, type index_d$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d$2_Styles as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type index_d$2_SubmitButton as SubmitButton, type index_d$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d$2_SubscriptionInfo as SubscriptionInfo, type index_d$2_TableCellData as TableCellData, type index_d$2_TableData as TableData, index_d$2_Tag as Tag, index_d$2_Target as Target, index_d$2_TextAlignment as TextAlignment, type index_d$2_TextData as TextData, type index_d$2_TextInput as TextInput, type index_d$2_TextNodeStyle as TextNodeStyle, type index_d$2_TextStyle as TextStyle, type index_d$2_ThankYouMessage as ThankYouMessage, type index_d$2_Thumbnails as Thumbnails, index_d$2_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$2_TimeOptions as TimeOptions, index_d$2_Type as Type, type index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, index_d$2_UploadFileFormat as UploadFileFormat, type index_d$2_UpsertContact as UpsertContact, type index_d$2_Validation as Validation, index_d$2_ValidationFormat as ValidationFormat, type index_d$2_ValidationValidationOneOf as ValidationValidationOneOf, index_d$2_VerticalAlignment as VerticalAlignment, type index_d$2_Video as Video, type index_d$2_VideoData as VideoData, index_d$2_ViewMode as ViewMode, index_d$2_ViewRole as ViewRole, index_d$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, index_d$2_Width as Width, index_d$2_WidthType as WidthType, type index_d$2_WixFile as WixFile, index_d$2_WixFileComponentType as WixFileComponentType, type index_d$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d$2__Array as _Array, type index_d$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d$2__Boolean as _Boolean, type index_d$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d$2__Number as _Number, type index_d$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d$2__Object as _Object, type index_d$2__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d$2__String as _String, type index_d$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, index_d$2_updateExtendedFields as updateExtendedFields, index_d$2_updateForm as updateForm };
|
|
4795
4726
|
}
|
|
4796
4727
|
|
|
4797
4728
|
/**
|