@wix/forms 1.0.124 → 1.0.126

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.
@@ -117,6 +117,8 @@ interface StringType$1 extends StringTypeFormatOptionsOneOf$1 {
117
117
  timeOptions?: DateTimeConstraints$1;
118
118
  /** DATE_OPTIONAL_TIME format options */
119
119
  dateOptionalTimeOptions?: DateTimeConstraints$1;
120
+ /** PHONE format options */
121
+ phoneOptions?: PhoneConstraints$1;
120
122
  /** Minimum length. */
121
123
  minLength?: number | null;
122
124
  /** Maximum length. */
@@ -140,6 +142,8 @@ interface StringTypeFormatOptionsOneOf$1 {
140
142
  timeOptions?: DateTimeConstraints$1;
141
143
  /** DATE_OPTIONAL_TIME format options */
142
144
  dateOptionalTimeOptions?: DateTimeConstraints$1;
145
+ /** PHONE format options */
146
+ phoneOptions?: PhoneConstraints$1;
143
147
  }
144
148
  declare enum Format$1 {
145
149
  UNDEFINED = "UNDEFINED",
@@ -177,6 +181,10 @@ interface DateTimeConstraints$1 {
177
181
  */
178
182
  maximum?: string | null;
179
183
  }
184
+ interface PhoneConstraints$1 {
185
+ /** Country codes for phone number that are allowed */
186
+ allowedCountryCodes?: string[];
187
+ }
180
188
  interface NumberType$1 {
181
189
  /** Inclusive maximum value. */
182
190
  maximum?: number | null;
@@ -494,6 +502,8 @@ interface InputFieldStringType$1 extends InputFieldStringTypeFormatOptionsOneOf$
494
502
  timeOptions?: StringTypeDateTimeConstraints$1;
495
503
  /** DATE_OPTIONAL_TIME format options */
496
504
  dateOptionalTimeOptions?: StringTypeDateTimeConstraints$1;
505
+ /** PHONE format options */
506
+ phoneOptions?: StringTypePhoneConstraints$1;
497
507
  /** Minimum length. */
498
508
  minLength?: number | null;
499
509
  /** Maximum length. */
@@ -517,6 +527,8 @@ interface InputFieldStringTypeFormatOptionsOneOf$1 {
517
527
  timeOptions?: StringTypeDateTimeConstraints$1;
518
528
  /** DATE_OPTIONAL_TIME format options */
519
529
  dateOptionalTimeOptions?: StringTypeDateTimeConstraints$1;
530
+ /** PHONE format options */
531
+ phoneOptions?: StringTypePhoneConstraints$1;
520
532
  }
521
533
  declare enum FormatEnumFormat$1 {
522
534
  UNDEFINED = "UNDEFINED",
@@ -554,6 +566,10 @@ interface StringTypeDateTimeConstraints$1 {
554
566
  */
555
567
  maximum?: string | null;
556
568
  }
569
+ interface StringTypePhoneConstraints$1 {
570
+ /** Country codes for phone number that are allowed */
571
+ allowedCountryCodes?: string[];
572
+ }
557
573
  declare enum StringComponentType$1 {
558
574
  UNKNOWN = "UNKNOWN",
559
575
  TEXT_INPUT = "TEXT_INPUT",
@@ -3427,7 +3443,11 @@ declare enum WebhookIdentityType$2 {
3427
3443
  WIX_USER = "WIX_USER",
3428
3444
  APP = "APP"
3429
3445
  }
3446
+ interface PhoneConstraintsNonNullableFields {
3447
+ allowedCountryCodes: string[];
3448
+ }
3430
3449
  interface StringTypeNonNullableFields {
3450
+ phoneOptions?: PhoneConstraintsNonNullableFields;
3431
3451
  format: Format$1;
3432
3452
  }
3433
3453
  interface BooleanTypeNonNullableFields {
@@ -3781,7 +3801,11 @@ interface DateTimeInputNonNullableFields {
3781
3801
  interface PhoneInputNonNullableFields {
3782
3802
  description?: RichContentNonNullableFields;
3783
3803
  }
3804
+ interface StringTypePhoneConstraintsNonNullableFields {
3805
+ allowedCountryCodes: string[];
3806
+ }
3784
3807
  interface InputFieldStringTypeNonNullableFields {
3808
+ phoneOptions?: StringTypePhoneConstraintsNonNullableFields;
3785
3809
  format: FormatEnumFormat$1;
3786
3810
  }
3787
3811
  interface _StringNonNullableFields {
@@ -4375,24 +4399,57 @@ declare global {
4375
4399
  }
4376
4400
  }
4377
4401
 
4402
+ declare function createForm$1(httpClient: HttpClient): (form: Form$1) => Promise<Form$1 & FormNonNullableFields>;
4403
+ declare function bulkCreateForm$1(httpClient: HttpClient): (options?: BulkCreateFormOptions) => Promise<BulkCreateFormResponse & BulkCreateFormResponseNonNullableFields>;
4404
+ declare function cloneForm$1(httpClient: HttpClient): (formId: string) => Promise<CloneFormResponse & CloneFormResponseNonNullableFields>;
4405
+ declare function getForm$1(httpClient: HttpClient): (formId: string, options?: GetFormOptions) => Promise<Form$1 & FormNonNullableFields>;
4406
+ declare function updateForm$1(httpClient: HttpClient): (_id: string | null, form: UpdateForm) => Promise<Form$1 & FormNonNullableFields>;
4407
+ declare function removeFormFromTrashBin$1(httpClient: HttpClient): (formId: string) => Promise<void>;
4408
+ declare function deleteForm$1(httpClient: HttpClient): (formId: string, options?: DeleteFormOptions) => Promise<void>;
4409
+ declare function restoreFromTrashBin$1(httpClient: HttpClient): (formId: string) => Promise<RestoreFromTrashBinResponse & RestoreFromTrashBinResponseNonNullableFields>;
4410
+ declare function queryForms$1(httpClient: HttpClient): (options?: QueryFormsOptions) => FormsQueryBuilder;
4411
+ declare function countForms$1(httpClient: HttpClient): (namespace: string, options?: CountFormsOptions) => Promise<CountFormsResponse & CountFormsResponseNonNullableFields>;
4412
+ declare function listForms$1(httpClient: HttpClient): (namespace: string, options?: ListFormsOptions) => Promise<ListFormsResponse & ListFormsResponseNonNullableFields>;
4413
+ declare function getDeletedForm$1(httpClient: HttpClient): (formId: string) => Promise<GetDeletedFormResponse & GetDeletedFormResponseNonNullableFields>;
4414
+ declare function queryDeletedForms$1(httpClient: HttpClient): (query: CursorQuery$2) => Promise<QueryDeletedFormsResponse & QueryDeletedFormsResponseNonNullableFields>;
4415
+ declare function listDeletedForms$1(httpClient: HttpClient): (namespace: string, options?: ListDeletedFormsOptions) => Promise<ListDeletedFormsResponse & ListDeletedFormsResponseNonNullableFields>;
4416
+ declare function bulkRemoveDeletedField$1(httpClient: HttpClient): (formId: string, options?: BulkRemoveDeletedFieldOptions) => Promise<BulkRemoveDeletedFieldResponse & BulkRemoveDeletedFieldResponseNonNullableFields>;
4417
+ declare function updateExtendedFields$1(httpClient: HttpClient): (_id: string, namespace: string, options: UpdateExtendedFieldsOptions) => Promise<UpdateExtendedFieldsResponse & UpdateExtendedFieldsResponseNonNullableFields>;
4418
+
4378
4419
  declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
4379
4420
 
4380
- declare const createForm: ReturnType<typeof createRESTModule$2<typeof publicCreateForm>>;
4381
- declare const bulkCreateForm: ReturnType<typeof createRESTModule$2<typeof publicBulkCreateForm>>;
4382
- declare const cloneForm: ReturnType<typeof createRESTModule$2<typeof publicCloneForm>>;
4383
- declare const getForm: ReturnType<typeof createRESTModule$2<typeof publicGetForm>>;
4384
- declare const updateForm: ReturnType<typeof createRESTModule$2<typeof publicUpdateForm>>;
4385
- declare const removeFormFromTrashBin: ReturnType<typeof createRESTModule$2<typeof publicRemoveFormFromTrashBin>>;
4386
- declare const deleteForm: ReturnType<typeof createRESTModule$2<typeof publicDeleteForm>>;
4387
- declare const restoreFromTrashBin: ReturnType<typeof createRESTModule$2<typeof publicRestoreFromTrashBin>>;
4388
- declare const queryForms: ReturnType<typeof createRESTModule$2<typeof publicQueryForms>>;
4389
- declare const countForms: ReturnType<typeof createRESTModule$2<typeof publicCountForms>>;
4390
- declare const listForms: ReturnType<typeof createRESTModule$2<typeof publicListForms>>;
4391
- declare const getDeletedForm: ReturnType<typeof createRESTModule$2<typeof publicGetDeletedForm>>;
4392
- declare const queryDeletedForms: ReturnType<typeof createRESTModule$2<typeof publicQueryDeletedForms>>;
4393
- declare const listDeletedForms: ReturnType<typeof createRESTModule$2<typeof publicListDeletedForms>>;
4394
- declare const bulkRemoveDeletedField: ReturnType<typeof createRESTModule$2<typeof publicBulkRemoveDeletedField>>;
4395
- declare const updateExtendedFields: ReturnType<typeof createRESTModule$2<typeof publicUpdateExtendedFields>>;
4421
+ type _publicCreateFormType = typeof createForm$1;
4422
+ declare const createForm: ReturnType<typeof createRESTModule$2<_publicCreateFormType>>;
4423
+ type _publicBulkCreateFormType = typeof bulkCreateForm$1;
4424
+ declare const bulkCreateForm: ReturnType<typeof createRESTModule$2<_publicBulkCreateFormType>>;
4425
+ type _publicCloneFormType = typeof cloneForm$1;
4426
+ declare const cloneForm: ReturnType<typeof createRESTModule$2<_publicCloneFormType>>;
4427
+ type _publicGetFormType = typeof getForm$1;
4428
+ declare const getForm: ReturnType<typeof createRESTModule$2<_publicGetFormType>>;
4429
+ type _publicUpdateFormType = typeof updateForm$1;
4430
+ declare const updateForm: ReturnType<typeof createRESTModule$2<_publicUpdateFormType>>;
4431
+ type _publicRemoveFormFromTrashBinType = typeof removeFormFromTrashBin$1;
4432
+ declare const removeFormFromTrashBin: ReturnType<typeof createRESTModule$2<_publicRemoveFormFromTrashBinType>>;
4433
+ type _publicDeleteFormType = typeof deleteForm$1;
4434
+ declare const deleteForm: ReturnType<typeof createRESTModule$2<_publicDeleteFormType>>;
4435
+ type _publicRestoreFromTrashBinType = typeof restoreFromTrashBin$1;
4436
+ declare const restoreFromTrashBin: ReturnType<typeof createRESTModule$2<_publicRestoreFromTrashBinType>>;
4437
+ type _publicQueryFormsType = typeof queryForms$1;
4438
+ declare const queryForms: ReturnType<typeof createRESTModule$2<_publicQueryFormsType>>;
4439
+ type _publicCountFormsType = typeof countForms$1;
4440
+ declare const countForms: ReturnType<typeof createRESTModule$2<_publicCountFormsType>>;
4441
+ type _publicListFormsType = typeof listForms$1;
4442
+ declare const listForms: ReturnType<typeof createRESTModule$2<_publicListFormsType>>;
4443
+ type _publicGetDeletedFormType = typeof getDeletedForm$1;
4444
+ declare const getDeletedForm: ReturnType<typeof createRESTModule$2<_publicGetDeletedFormType>>;
4445
+ type _publicQueryDeletedFormsType = typeof queryDeletedForms$1;
4446
+ declare const queryDeletedForms: ReturnType<typeof createRESTModule$2<_publicQueryDeletedFormsType>>;
4447
+ type _publicListDeletedFormsType = typeof listDeletedForms$1;
4448
+ declare const listDeletedForms: ReturnType<typeof createRESTModule$2<_publicListDeletedFormsType>>;
4449
+ type _publicBulkRemoveDeletedFieldType = typeof bulkRemoveDeletedField$1;
4450
+ declare const bulkRemoveDeletedField: ReturnType<typeof createRESTModule$2<_publicBulkRemoveDeletedFieldType>>;
4451
+ type _publicUpdateExtendedFieldsType = typeof updateExtendedFields$1;
4452
+ declare const updateExtendedFields: ReturnType<typeof createRESTModule$2<_publicUpdateExtendedFieldsType>>;
4396
4453
 
4397
4454
  type index_d$2_BulkCreateFormOptions = BulkCreateFormOptions;
4398
4455
  type index_d$2_BulkCreateFormRequest = BulkCreateFormRequest;
@@ -4466,6 +4523,22 @@ type index_d$2_UpdateForm = UpdateForm;
4466
4523
  type index_d$2_UpdateFormRequest = UpdateFormRequest;
4467
4524
  type index_d$2_UpdateFormResponse = UpdateFormResponse;
4468
4525
  type index_d$2_UpdateFormResponseNonNullableFields = UpdateFormResponseNonNullableFields;
4526
+ type index_d$2__publicBulkCreateFormType = _publicBulkCreateFormType;
4527
+ type index_d$2__publicBulkRemoveDeletedFieldType = _publicBulkRemoveDeletedFieldType;
4528
+ type index_d$2__publicCloneFormType = _publicCloneFormType;
4529
+ type index_d$2__publicCountFormsType = _publicCountFormsType;
4530
+ type index_d$2__publicCreateFormType = _publicCreateFormType;
4531
+ type index_d$2__publicDeleteFormType = _publicDeleteFormType;
4532
+ type index_d$2__publicGetDeletedFormType = _publicGetDeletedFormType;
4533
+ type index_d$2__publicGetFormType = _publicGetFormType;
4534
+ type index_d$2__publicListDeletedFormsType = _publicListDeletedFormsType;
4535
+ type index_d$2__publicListFormsType = _publicListFormsType;
4536
+ type index_d$2__publicQueryDeletedFormsType = _publicQueryDeletedFormsType;
4537
+ type index_d$2__publicQueryFormsType = _publicQueryFormsType;
4538
+ type index_d$2__publicRemoveFormFromTrashBinType = _publicRemoveFormFromTrashBinType;
4539
+ type index_d$2__publicRestoreFromTrashBinType = _publicRestoreFromTrashBinType;
4540
+ type index_d$2__publicUpdateExtendedFieldsType = _publicUpdateExtendedFieldsType;
4541
+ type index_d$2__publicUpdateFormType = _publicUpdateFormType;
4469
4542
  declare const index_d$2_bulkCreateForm: typeof bulkCreateForm;
4470
4543
  declare const index_d$2_bulkRemoveDeletedField: typeof bulkRemoveDeletedField;
4471
4544
  declare const index_d$2_cloneForm: typeof cloneForm;
@@ -4483,7 +4556,7 @@ declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
4483
4556
  declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
4484
4557
  declare const index_d$2_updateForm: typeof updateForm;
4485
4558
  declare namespace index_d$2 {
4486
- export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type 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 BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, 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, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, DateFormatPart$1 as DateFormatPart, type DateOptions$1 as DateOptions, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, index_d$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type FormRule$1 as FormRule, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type 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 Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type 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 ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$2 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypePropertiesType$1 as PropertiesTypePropertiesType, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 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 RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 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 RichContent$1 as RichContent, type RichText$1 as RichText, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type Styles$1 as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeOptions$1 as TimeOptions, Type$1 as Type, type 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, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, 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 };
4559
+ export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type 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 BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, 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, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, DateFormatPart$1 as DateFormatPart, type DateOptions$1 as DateOptions, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, index_d$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type FormRule$1 as FormRule, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type 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 Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type 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 ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$2 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypePropertiesType$1 as PropertiesTypePropertiesType, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 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 RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 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 RichContent$1 as RichContent, type RichText$1 as RichText, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeOptions$1 as TimeOptions, Type$1 as Type, type 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, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, type index_d$2__publicBulkCreateFormType as _publicBulkCreateFormType, type index_d$2__publicBulkRemoveDeletedFieldType as _publicBulkRemoveDeletedFieldType, type index_d$2__publicCloneFormType as _publicCloneFormType, type index_d$2__publicCountFormsType as _publicCountFormsType, type index_d$2__publicCreateFormType as _publicCreateFormType, type index_d$2__publicDeleteFormType as _publicDeleteFormType, type index_d$2__publicGetDeletedFormType as _publicGetDeletedFormType, type index_d$2__publicGetFormType as _publicGetFormType, type index_d$2__publicListDeletedFormsType as _publicListDeletedFormsType, type index_d$2__publicListFormsType as _publicListFormsType, type index_d$2__publicQueryDeletedFormsType as _publicQueryDeletedFormsType, type index_d$2__publicQueryFormsType as _publicQueryFormsType, type index_d$2__publicRemoveFormFromTrashBinType as _publicRemoveFormFromTrashBinType, type index_d$2__publicRestoreFromTrashBinType as _publicRestoreFromTrashBinType, type index_d$2__publicUpdateExtendedFieldsType as _publicUpdateExtendedFieldsType, type index_d$2__publicUpdateFormType as _publicUpdateFormType, 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 };
4487
4560
  }
4488
4561
 
4489
4562
  /**
@@ -5248,20 +5321,45 @@ interface FormSpamSubmissionReportsQueryBuilder {
5248
5321
  find: () => Promise<FormSpamSubmissionReportsQueryResult>;
5249
5322
  }
5250
5323
 
5324
+ declare function checkForSpam$1(httpClient: HttpClient): (submission: FormSubmission$1) => Promise<CheckForSpamResponse & CheckForSpamResponseNonNullableFields>;
5325
+ declare function createFormSpamSubmissionReport$1(httpClient: HttpClient): (formSpamSubmissionReport: FormSpamSubmissionReport) => Promise<FormSpamSubmissionReport & FormSpamSubmissionReportNonNullableFields>;
5326
+ declare function getFormSpamSubmissionReport$1(httpClient: HttpClient): (formSpamSubmissionReportId: string) => Promise<FormSpamSubmissionReport & FormSpamSubmissionReportNonNullableFields>;
5327
+ declare function deleteFormSpamSubmissionReport$1(httpClient: HttpClient): (formSpamSubmissionReportId: string) => Promise<void>;
5328
+ declare function bulkDeleteFormSpamSubmissionReport$1(httpClient: HttpClient): (formId: string, options?: BulkDeleteFormSpamSubmissionReportOptions) => Promise<BulkDeleteFormSpamSubmissionReportResponse & BulkDeleteFormSpamSubmissionReportResponseNonNullableFields>;
5329
+ declare function bulkDeleteFormSpamSubmissionReportByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null) => Promise<BulkDeleteFormSpamSubmissionReportByFilterResponse & BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields>;
5330
+ declare function reportNotSpamSubmission$1(httpClient: HttpClient): (formSpamSubmissionReportId: string) => Promise<ReportNotSpamSubmissionResponse & ReportNotSpamSubmissionResponseNonNullableFields>;
5331
+ declare function bulkReportNotSpamSubmission$1(httpClient: HttpClient): (formId: string, options?: BulkReportNotSpamSubmissionOptions) => Promise<BulkReportNotSpamSubmissionResponse & BulkReportNotSpamSubmissionResponseNonNullableFields>;
5332
+ declare function reportSpamSubmission$1(httpClient: HttpClient): (submissionId: string, reportReason: ReportReason) => Promise<ReportSpamSubmissionResponse & ReportSpamSubmissionResponseNonNullableFields>;
5333
+ declare function bulkReportSpamSubmission$1(httpClient: HttpClient): (formId: string, options?: BulkReportSpamSubmissionOptions) => Promise<BulkReportSpamSubmissionResponse & BulkReportSpamSubmissionResponseNonNullableFields>;
5334
+ declare function queryFormSpamSubmissionReportsByNamespace$1(httpClient: HttpClient): () => FormSpamSubmissionReportsQueryBuilder;
5335
+ declare function countFormSpamSubmissionReports$1(httpClient: HttpClient): (formIds: string[], namespace: string) => Promise<CountFormSpamSubmissionReportsResponse & CountFormSpamSubmissionReportsResponseNonNullableFields>;
5336
+
5251
5337
  declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
5252
5338
 
5253
- declare const checkForSpam: ReturnType<typeof createRESTModule$1<typeof publicCheckForSpam>>;
5254
- declare const createFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicCreateFormSpamSubmissionReport>>;
5255
- declare const getFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicGetFormSpamSubmissionReport>>;
5256
- declare const deleteFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicDeleteFormSpamSubmissionReport>>;
5257
- declare const bulkDeleteFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicBulkDeleteFormSpamSubmissionReport>>;
5258
- declare const bulkDeleteFormSpamSubmissionReportByFilter: ReturnType<typeof createRESTModule$1<typeof publicBulkDeleteFormSpamSubmissionReportByFilter>>;
5259
- declare const reportNotSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicReportNotSpamSubmission>>;
5260
- declare const bulkReportNotSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicBulkReportNotSpamSubmission>>;
5261
- declare const reportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicReportSpamSubmission>>;
5262
- declare const bulkReportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicBulkReportSpamSubmission>>;
5263
- declare const queryFormSpamSubmissionReportsByNamespace: ReturnType<typeof createRESTModule$1<typeof publicQueryFormSpamSubmissionReportsByNamespace>>;
5264
- declare const countFormSpamSubmissionReports: ReturnType<typeof createRESTModule$1<typeof publicCountFormSpamSubmissionReports>>;
5339
+ type _publicCheckForSpamType = typeof checkForSpam$1;
5340
+ declare const checkForSpam: ReturnType<typeof createRESTModule$1<_publicCheckForSpamType>>;
5341
+ type _publicCreateFormSpamSubmissionReportType = typeof createFormSpamSubmissionReport$1;
5342
+ declare const createFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<_publicCreateFormSpamSubmissionReportType>>;
5343
+ type _publicGetFormSpamSubmissionReportType = typeof getFormSpamSubmissionReport$1;
5344
+ declare const getFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<_publicGetFormSpamSubmissionReportType>>;
5345
+ type _publicDeleteFormSpamSubmissionReportType = typeof deleteFormSpamSubmissionReport$1;
5346
+ declare const deleteFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<_publicDeleteFormSpamSubmissionReportType>>;
5347
+ type _publicBulkDeleteFormSpamSubmissionReportType = typeof bulkDeleteFormSpamSubmissionReport$1;
5348
+ declare const bulkDeleteFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<_publicBulkDeleteFormSpamSubmissionReportType>>;
5349
+ type _publicBulkDeleteFormSpamSubmissionReportByFilterType = typeof bulkDeleteFormSpamSubmissionReportByFilter$1;
5350
+ declare const bulkDeleteFormSpamSubmissionReportByFilter: ReturnType<typeof createRESTModule$1<_publicBulkDeleteFormSpamSubmissionReportByFilterType>>;
5351
+ type _publicReportNotSpamSubmissionType = typeof reportNotSpamSubmission$1;
5352
+ declare const reportNotSpamSubmission: ReturnType<typeof createRESTModule$1<_publicReportNotSpamSubmissionType>>;
5353
+ type _publicBulkReportNotSpamSubmissionType = typeof bulkReportNotSpamSubmission$1;
5354
+ declare const bulkReportNotSpamSubmission: ReturnType<typeof createRESTModule$1<_publicBulkReportNotSpamSubmissionType>>;
5355
+ type _publicReportSpamSubmissionType = typeof reportSpamSubmission$1;
5356
+ declare const reportSpamSubmission: ReturnType<typeof createRESTModule$1<_publicReportSpamSubmissionType>>;
5357
+ type _publicBulkReportSpamSubmissionType = typeof bulkReportSpamSubmission$1;
5358
+ declare const bulkReportSpamSubmission: ReturnType<typeof createRESTModule$1<_publicBulkReportSpamSubmissionType>>;
5359
+ type _publicQueryFormSpamSubmissionReportsByNamespaceType = typeof queryFormSpamSubmissionReportsByNamespace$1;
5360
+ declare const queryFormSpamSubmissionReportsByNamespace: ReturnType<typeof createRESTModule$1<_publicQueryFormSpamSubmissionReportsByNamespaceType>>;
5361
+ type _publicCountFormSpamSubmissionReportsType = typeof countFormSpamSubmissionReports$1;
5362
+ declare const countFormSpamSubmissionReports: ReturnType<typeof createRESTModule$1<_publicCountFormSpamSubmissionReportsType>>;
5265
5363
 
5266
5364
  type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest = BulkDeleteFormSpamSubmissionReportByFilterRequest;
5267
5365
  type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse = BulkDeleteFormSpamSubmissionReportByFilterResponse;
@@ -5313,6 +5411,18 @@ type index_d$1_ReportSpamSubmissionRequest = ReportSpamSubmissionRequest;
5313
5411
  type index_d$1_ReportSpamSubmissionResponse = ReportSpamSubmissionResponse;
5314
5412
  type index_d$1_ReportSpamSubmissionResponseNonNullableFields = ReportSpamSubmissionResponseNonNullableFields;
5315
5413
  type index_d$1_SpamReport = SpamReport;
5414
+ type index_d$1__publicBulkDeleteFormSpamSubmissionReportByFilterType = _publicBulkDeleteFormSpamSubmissionReportByFilterType;
5415
+ type index_d$1__publicBulkDeleteFormSpamSubmissionReportType = _publicBulkDeleteFormSpamSubmissionReportType;
5416
+ type index_d$1__publicBulkReportNotSpamSubmissionType = _publicBulkReportNotSpamSubmissionType;
5417
+ type index_d$1__publicBulkReportSpamSubmissionType = _publicBulkReportSpamSubmissionType;
5418
+ type index_d$1__publicCheckForSpamType = _publicCheckForSpamType;
5419
+ type index_d$1__publicCountFormSpamSubmissionReportsType = _publicCountFormSpamSubmissionReportsType;
5420
+ type index_d$1__publicCreateFormSpamSubmissionReportType = _publicCreateFormSpamSubmissionReportType;
5421
+ type index_d$1__publicDeleteFormSpamSubmissionReportType = _publicDeleteFormSpamSubmissionReportType;
5422
+ type index_d$1__publicGetFormSpamSubmissionReportType = _publicGetFormSpamSubmissionReportType;
5423
+ type index_d$1__publicQueryFormSpamSubmissionReportsByNamespaceType = _publicQueryFormSpamSubmissionReportsByNamespaceType;
5424
+ type index_d$1__publicReportNotSpamSubmissionType = _publicReportNotSpamSubmissionType;
5425
+ type index_d$1__publicReportSpamSubmissionType = _publicReportSpamSubmissionType;
5316
5426
  declare const index_d$1_bulkDeleteFormSpamSubmissionReport: typeof bulkDeleteFormSpamSubmissionReport;
5317
5427
  declare const index_d$1_bulkDeleteFormSpamSubmissionReportByFilter: typeof bulkDeleteFormSpamSubmissionReportByFilter;
5318
5428
  declare const index_d$1_bulkReportNotSpamSubmission: typeof bulkReportNotSpamSubmission;
@@ -5326,7 +5436,7 @@ declare const index_d$1_queryFormSpamSubmissionReportsByNamespace: typeof queryF
5326
5436
  declare const index_d$1_reportNotSpamSubmission: typeof reportNotSpamSubmission;
5327
5437
  declare const index_d$1_reportSpamSubmission: typeof reportSpamSubmission;
5328
5438
  declare namespace index_d$1 {
5329
- export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest as BulkDeleteFormSpamSubmissionReportByFilterRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse as BulkDeleteFormSpamSubmissionReportByFilterResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportOptions as BulkDeleteFormSpamSubmissionReportOptions, type index_d$1_BulkDeleteFormSpamSubmissionReportRequest as BulkDeleteFormSpamSubmissionReportRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportResponse as BulkDeleteFormSpamSubmissionReportResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportResult as BulkDeleteFormSpamSubmissionReportResult, type index_d$1_BulkReportNotSpamSubmissionOptions as BulkReportNotSpamSubmissionOptions, type index_d$1_BulkReportNotSpamSubmissionRequest as BulkReportNotSpamSubmissionRequest, type index_d$1_BulkReportNotSpamSubmissionResponse as BulkReportNotSpamSubmissionResponse, type index_d$1_BulkReportNotSpamSubmissionResponseNonNullableFields as BulkReportNotSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportNotSpamSubmissionResult as BulkReportNotSpamSubmissionResult, type index_d$1_BulkReportSpamSubmissionOptions as BulkReportSpamSubmissionOptions, type index_d$1_BulkReportSpamSubmissionRequest as BulkReportSpamSubmissionRequest, type index_d$1_BulkReportSpamSubmissionResponse as BulkReportSpamSubmissionResponse, type index_d$1_BulkReportSpamSubmissionResponseNonNullableFields as BulkReportSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportSpamSubmissionResult as BulkReportSpamSubmissionResult, type index_d$1_CheckForSpamRequest as CheckForSpamRequest, type index_d$1_CheckForSpamResponse as CheckForSpamResponse, type index_d$1_CheckForSpamResponseNonNullableFields as CheckForSpamResponseNonNullableFields, type index_d$1_CountFormSpamSubmissionReportsRequest as CountFormSpamSubmissionReportsRequest, type index_d$1_CountFormSpamSubmissionReportsResponse as CountFormSpamSubmissionReportsResponse, type index_d$1_CountFormSpamSubmissionReportsResponseNonNullableFields as CountFormSpamSubmissionReportsResponseNonNullableFields, type index_d$1_CreateFormSpamSubmissionReportRequest as CreateFormSpamSubmissionReportRequest, type index_d$1_CreateFormSpamSubmissionReportResponse as CreateFormSpamSubmissionReportResponse, type index_d$1_CreateFormSpamSubmissionReportResponseNonNullableFields as CreateFormSpamSubmissionReportResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DeleteFormSpamSubmissionReportRequest as DeleteFormSpamSubmissionReportRequest, type index_d$1_DeleteFormSpamSubmissionReportResponse as DeleteFormSpamSubmissionReportResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type ExtendedFields$1 as ExtendedFields, type index_d$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type index_d$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type index_d$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type index_d$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type index_d$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type index_d$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type FormSubmissionStatusUpdatedEvent$1 as FormSubmissionStatusUpdatedEvent, type index_d$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type index_d$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type index_d$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MarketingSubscriptionDetails$1 as MarketingSubscriptionDetails, type MessageEnvelope$1 as MessageEnvelope, OptInLevel$1 as OptInLevel, type OrderDetails$1 as OrderDetails, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type RemovedSubmissionFromTrash$1 as RemovedSubmissionFromTrash, type index_d$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type index_d$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type index_d$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, index_d$1_ReportReason as ReportReason, type index_d$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type index_d$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type index_d$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$1_SpamReport as SpamReport, type SubmissionContactMapped$1 as SubmissionContactMapped, type SubmissionContactMappingSkipped$1 as SubmissionContactMappingSkipped, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, index_d$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, index_d$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, index_d$1_bulkReportSpamSubmission as bulkReportSpamSubmission, index_d$1_checkForSpam as checkForSpam, index_d$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, index_d$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, index_d$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, index_d$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, index_d$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, index_d$1_reportNotSpamSubmission as reportNotSpamSubmission, index_d$1_reportSpamSubmission as reportSpamSubmission };
5439
+ export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest as BulkDeleteFormSpamSubmissionReportByFilterRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse as BulkDeleteFormSpamSubmissionReportByFilterResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportOptions as BulkDeleteFormSpamSubmissionReportOptions, type index_d$1_BulkDeleteFormSpamSubmissionReportRequest as BulkDeleteFormSpamSubmissionReportRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportResponse as BulkDeleteFormSpamSubmissionReportResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportResult as BulkDeleteFormSpamSubmissionReportResult, type index_d$1_BulkReportNotSpamSubmissionOptions as BulkReportNotSpamSubmissionOptions, type index_d$1_BulkReportNotSpamSubmissionRequest as BulkReportNotSpamSubmissionRequest, type index_d$1_BulkReportNotSpamSubmissionResponse as BulkReportNotSpamSubmissionResponse, type index_d$1_BulkReportNotSpamSubmissionResponseNonNullableFields as BulkReportNotSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportNotSpamSubmissionResult as BulkReportNotSpamSubmissionResult, type index_d$1_BulkReportSpamSubmissionOptions as BulkReportSpamSubmissionOptions, type index_d$1_BulkReportSpamSubmissionRequest as BulkReportSpamSubmissionRequest, type index_d$1_BulkReportSpamSubmissionResponse as BulkReportSpamSubmissionResponse, type index_d$1_BulkReportSpamSubmissionResponseNonNullableFields as BulkReportSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportSpamSubmissionResult as BulkReportSpamSubmissionResult, type index_d$1_CheckForSpamRequest as CheckForSpamRequest, type index_d$1_CheckForSpamResponse as CheckForSpamResponse, type index_d$1_CheckForSpamResponseNonNullableFields as CheckForSpamResponseNonNullableFields, type index_d$1_CountFormSpamSubmissionReportsRequest as CountFormSpamSubmissionReportsRequest, type index_d$1_CountFormSpamSubmissionReportsResponse as CountFormSpamSubmissionReportsResponse, type index_d$1_CountFormSpamSubmissionReportsResponseNonNullableFields as CountFormSpamSubmissionReportsResponseNonNullableFields, type index_d$1_CreateFormSpamSubmissionReportRequest as CreateFormSpamSubmissionReportRequest, type index_d$1_CreateFormSpamSubmissionReportResponse as CreateFormSpamSubmissionReportResponse, type index_d$1_CreateFormSpamSubmissionReportResponseNonNullableFields as CreateFormSpamSubmissionReportResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DeleteFormSpamSubmissionReportRequest as DeleteFormSpamSubmissionReportRequest, type index_d$1_DeleteFormSpamSubmissionReportResponse as DeleteFormSpamSubmissionReportResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type ExtendedFields$1 as ExtendedFields, type index_d$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type index_d$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type index_d$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type index_d$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type index_d$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type index_d$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type FormSubmissionStatusUpdatedEvent$1 as FormSubmissionStatusUpdatedEvent, type index_d$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type index_d$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type index_d$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MarketingSubscriptionDetails$1 as MarketingSubscriptionDetails, type MessageEnvelope$1 as MessageEnvelope, OptInLevel$1 as OptInLevel, type OrderDetails$1 as OrderDetails, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type RemovedSubmissionFromTrash$1 as RemovedSubmissionFromTrash, type index_d$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type index_d$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type index_d$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, index_d$1_ReportReason as ReportReason, type index_d$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type index_d$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type index_d$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$1_SpamReport as SpamReport, type SubmissionContactMapped$1 as SubmissionContactMapped, type SubmissionContactMappingSkipped$1 as SubmissionContactMappingSkipped, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__publicBulkDeleteFormSpamSubmissionReportByFilterType as _publicBulkDeleteFormSpamSubmissionReportByFilterType, type index_d$1__publicBulkDeleteFormSpamSubmissionReportType as _publicBulkDeleteFormSpamSubmissionReportType, type index_d$1__publicBulkReportNotSpamSubmissionType as _publicBulkReportNotSpamSubmissionType, type index_d$1__publicBulkReportSpamSubmissionType as _publicBulkReportSpamSubmissionType, type index_d$1__publicCheckForSpamType as _publicCheckForSpamType, type index_d$1__publicCountFormSpamSubmissionReportsType as _publicCountFormSpamSubmissionReportsType, type index_d$1__publicCreateFormSpamSubmissionReportType as _publicCreateFormSpamSubmissionReportType, type index_d$1__publicDeleteFormSpamSubmissionReportType as _publicDeleteFormSpamSubmissionReportType, type index_d$1__publicGetFormSpamSubmissionReportType as _publicGetFormSpamSubmissionReportType, type index_d$1__publicQueryFormSpamSubmissionReportsByNamespaceType as _publicQueryFormSpamSubmissionReportsByNamespaceType, type index_d$1__publicReportNotSpamSubmissionType as _publicReportNotSpamSubmissionType, type index_d$1__publicReportSpamSubmissionType as _publicReportSpamSubmissionType, index_d$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, index_d$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, index_d$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, index_d$1_bulkReportSpamSubmission as bulkReportSpamSubmission, index_d$1_checkForSpam as checkForSpam, index_d$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, index_d$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, index_d$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, index_d$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, index_d$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, index_d$1_reportNotSpamSubmission as reportNotSpamSubmission, index_d$1_reportSpamSubmission as reportSpamSubmission };
5330
5440
  }
5331
5441
 
5332
5442
  /** Form submission that was created or retrieved. */
@@ -5628,6 +5738,8 @@ interface StringType extends StringTypeFormatOptionsOneOf {
5628
5738
  timeOptions?: DateTimeConstraints;
5629
5739
  /** DATE_OPTIONAL_TIME format options */
5630
5740
  dateOptionalTimeOptions?: DateTimeConstraints;
5741
+ /** PHONE format options */
5742
+ phoneOptions?: PhoneConstraints;
5631
5743
  /** Minimum length. */
5632
5744
  minLength?: number | null;
5633
5745
  /** Maximum length. */
@@ -5651,6 +5763,8 @@ interface StringTypeFormatOptionsOneOf {
5651
5763
  timeOptions?: DateTimeConstraints;
5652
5764
  /** DATE_OPTIONAL_TIME format options */
5653
5765
  dateOptionalTimeOptions?: DateTimeConstraints;
5766
+ /** PHONE format options */
5767
+ phoneOptions?: PhoneConstraints;
5654
5768
  }
5655
5769
  declare enum Format {
5656
5770
  UNDEFINED = "UNDEFINED",
@@ -5688,6 +5802,10 @@ interface DateTimeConstraints {
5688
5802
  */
5689
5803
  maximum?: string | null;
5690
5804
  }
5805
+ interface PhoneConstraints {
5806
+ /** Country codes for phone number that are allowed */
5807
+ allowedCountryCodes?: string[];
5808
+ }
5691
5809
  interface NumberType {
5692
5810
  /** Inclusive maximum value. */
5693
5811
  maximum?: number | null;
@@ -6005,6 +6123,8 @@ interface InputFieldStringType extends InputFieldStringTypeFormatOptionsOneOf {
6005
6123
  timeOptions?: StringTypeDateTimeConstraints;
6006
6124
  /** DATE_OPTIONAL_TIME format options */
6007
6125
  dateOptionalTimeOptions?: StringTypeDateTimeConstraints;
6126
+ /** PHONE format options */
6127
+ phoneOptions?: StringTypePhoneConstraints;
6008
6128
  /** Minimum length. */
6009
6129
  minLength?: number | null;
6010
6130
  /** Maximum length. */
@@ -6028,6 +6148,8 @@ interface InputFieldStringTypeFormatOptionsOneOf {
6028
6148
  timeOptions?: StringTypeDateTimeConstraints;
6029
6149
  /** DATE_OPTIONAL_TIME format options */
6030
6150
  dateOptionalTimeOptions?: StringTypeDateTimeConstraints;
6151
+ /** PHONE format options */
6152
+ phoneOptions?: StringTypePhoneConstraints;
6031
6153
  }
6032
6154
  declare enum FormatEnumFormat {
6033
6155
  UNDEFINED = "UNDEFINED",
@@ -6065,6 +6187,10 @@ interface StringTypeDateTimeConstraints {
6065
6187
  */
6066
6188
  maximum?: string | null;
6067
6189
  }
6190
+ interface StringTypePhoneConstraints {
6191
+ /** Country codes for phone number that are allowed */
6192
+ allowedCountryCodes?: string[];
6193
+ }
6068
6194
  declare enum StringComponentType {
6069
6195
  UNKNOWN = "UNKNOWN",
6070
6196
  TEXT_INPUT = "TEXT_INPUT",
@@ -9368,30 +9494,75 @@ interface UpsertContactFromSubmissionOptions {
9368
9494
  emailVerified?: boolean;
9369
9495
  }
9370
9496
 
9497
+ declare function isFormSubmittable$1(httpClient: HttpClient): () => Promise<void>;
9498
+ declare function createSubmission$1(httpClient: HttpClient): (submission: FormSubmission, options?: CreateSubmissionOptions) => Promise<CreateSubmissionResponse & CreateSubmissionResponseNonNullableFields>;
9499
+ declare function bulkCreateSubmissionBySubmitter$1(httpClient: HttpClient): (formId: string, options?: BulkCreateSubmissionBySubmitterOptions) => Promise<BulkCreateSubmissionBySubmitterResponse & BulkCreateSubmissionBySubmitterResponseNonNullableFields>;
9500
+ declare function getSubmission$1(httpClient: HttpClient): (submissionId: string) => Promise<GetSubmissionResponse & GetSubmissionResponseNonNullableFields>;
9501
+ declare function updateSubmission$1(httpClient: HttpClient): (_id: string | null, submission: UpdateSubmission) => Promise<FormSubmission & FormSubmissionNonNullableFields>;
9502
+ declare function confirmSubmission$1(httpClient: HttpClient): (submissionId: string) => Promise<ConfirmSubmissionResponse & ConfirmSubmissionResponseNonNullableFields>;
9503
+ declare function deleteSubmission$1(httpClient: HttpClient): (submissionId: string, options?: DeleteSubmissionOptions) => Promise<void>;
9504
+ declare function bulkDeleteSubmission$1(httpClient: HttpClient): (formId: string, options?: BulkDeleteSubmissionOptions) => Promise<BulkDeleteSubmissionResponse & BulkDeleteSubmissionResponseNonNullableFields>;
9505
+ declare function restoreSubmissionFromTrashBin$1(httpClient: HttpClient): (submissionId: string) => Promise<RestoreSubmissionFromTrashBinResponse & RestoreSubmissionFromTrashBinResponseNonNullableFields>;
9506
+ declare function removeSubmissionFromTrashBin$1(httpClient: HttpClient): (submissionId: string) => Promise<void>;
9507
+ declare function bulkRemoveSubmissionFromTrashBin$1(httpClient: HttpClient): (formId: string, options?: BulkRemoveSubmissionFromTrashBinOptions) => Promise<BulkRemoveSubmissionFromTrashBinResponse & BulkRemoveSubmissionFromTrashBinResponseNonNullableFields>;
9508
+ declare function listDeletedSubmissions$1(httpClient: HttpClient): (formId: string, options?: ListDeletedSubmissionsOptions) => Promise<ListDeletedSubmissionsResponse & ListDeletedSubmissionsResponseNonNullableFields>;
9509
+ declare function getDeletedSubmission$1(httpClient: HttpClient): (submissionId: string) => Promise<GetDeletedSubmissionResponse & GetDeletedSubmissionResponseNonNullableFields>;
9510
+ declare function querySubmission$1(httpClient: HttpClient): (query: CursorQuery, options?: QuerySubmissionOptions) => Promise<QuerySubmissionResponse & QuerySubmissionResponseNonNullableFields>;
9511
+ declare function searchSubmissionsByNamespace$1(httpClient: HttpClient): (search: CursorSearch) => Promise<SearchSubmissionsByNamespaceResponse & SearchSubmissionsByNamespaceResponseNonNullableFields>;
9512
+ declare function querySubmissionsByNamespace$1(httpClient: HttpClient): (options?: QuerySubmissionsByNamespaceOptions) => SubmissionsQueryBuilder;
9513
+ declare function countSubmissionsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CountSubmissionsByFilterOptions) => Promise<CountSubmissionsByFilterResponse & CountSubmissionsByFilterResponseNonNullableFields>;
9514
+ declare function countSubmissions$1(httpClient: HttpClient): (formIds: string[], namespace: string, options?: CountSubmissionsOptions) => Promise<CountSubmissionsResponse & CountSubmissionsResponseNonNullableFields>;
9515
+ declare function countDeletedSubmissions$1(httpClient: HttpClient): (formIds: string[], namespace: string, options?: CountDeletedSubmissionsOptions) => Promise<CountDeletedSubmissionsResponse & CountDeletedSubmissionsResponseNonNullableFields>;
9516
+ declare function getMediaUploadUrl$1(httpClient: HttpClient): (formId: string, filename: string, mimeType: string) => Promise<GetMediaUploadURLResponse & GetMediaUploadURLResponseNonNullableFields>;
9517
+ declare function bulkMarkSubmissionsAsSeen$1(httpClient: HttpClient): (ids: string[], formId: string) => Promise<void>;
9518
+ declare function upsertContactFromSubmission$1(httpClient: HttpClient): (submissionId: string, options?: UpsertContactFromSubmissionOptions) => Promise<UpsertContactFromSubmissionResponse & UpsertContactFromSubmissionResponseNonNullableFields>;
9519
+
9371
9520
  declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
9372
9521
 
9373
- declare const isFormSubmittable: ReturnType<typeof createRESTModule<typeof publicIsFormSubmittable>>;
9374
- declare const createSubmission: ReturnType<typeof createRESTModule<typeof publicCreateSubmission>>;
9375
- declare const bulkCreateSubmissionBySubmitter: ReturnType<typeof createRESTModule<typeof publicBulkCreateSubmissionBySubmitter>>;
9376
- declare const getSubmission: ReturnType<typeof createRESTModule<typeof publicGetSubmission>>;
9377
- declare const updateSubmission: ReturnType<typeof createRESTModule<typeof publicUpdateSubmission>>;
9378
- declare const confirmSubmission: ReturnType<typeof createRESTModule<typeof publicConfirmSubmission>>;
9379
- declare const deleteSubmission: ReturnType<typeof createRESTModule<typeof publicDeleteSubmission>>;
9380
- declare const bulkDeleteSubmission: ReturnType<typeof createRESTModule<typeof publicBulkDeleteSubmission>>;
9381
- declare const restoreSubmissionFromTrashBin: ReturnType<typeof createRESTModule<typeof publicRestoreSubmissionFromTrashBin>>;
9382
- declare const removeSubmissionFromTrashBin: ReturnType<typeof createRESTModule<typeof publicRemoveSubmissionFromTrashBin>>;
9383
- declare const bulkRemoveSubmissionFromTrashBin: ReturnType<typeof createRESTModule<typeof publicBulkRemoveSubmissionFromTrashBin>>;
9384
- declare const listDeletedSubmissions: ReturnType<typeof createRESTModule<typeof publicListDeletedSubmissions>>;
9385
- declare const getDeletedSubmission: ReturnType<typeof createRESTModule<typeof publicGetDeletedSubmission>>;
9386
- declare const querySubmission: ReturnType<typeof createRESTModule<typeof publicQuerySubmission>>;
9387
- declare const searchSubmissionsByNamespace: ReturnType<typeof createRESTModule<typeof publicSearchSubmissionsByNamespace>>;
9388
- declare const querySubmissionsByNamespace: ReturnType<typeof createRESTModule<typeof publicQuerySubmissionsByNamespace>>;
9389
- declare const countSubmissionsByFilter: ReturnType<typeof createRESTModule<typeof publicCountSubmissionsByFilter>>;
9390
- declare const countSubmissions: ReturnType<typeof createRESTModule<typeof publicCountSubmissions>>;
9391
- declare const countDeletedSubmissions: ReturnType<typeof createRESTModule<typeof publicCountDeletedSubmissions>>;
9392
- declare const getMediaUploadUrl: ReturnType<typeof createRESTModule<typeof publicGetMediaUploadUrl>>;
9393
- declare const bulkMarkSubmissionsAsSeen: ReturnType<typeof createRESTModule<typeof publicBulkMarkSubmissionsAsSeen>>;
9394
- declare const upsertContactFromSubmission: ReturnType<typeof createRESTModule<typeof publicUpsertContactFromSubmission>>;
9522
+ type _publicIsFormSubmittableType = typeof isFormSubmittable$1;
9523
+ declare const isFormSubmittable: ReturnType<typeof createRESTModule<_publicIsFormSubmittableType>>;
9524
+ type _publicCreateSubmissionType = typeof createSubmission$1;
9525
+ declare const createSubmission: ReturnType<typeof createRESTModule<_publicCreateSubmissionType>>;
9526
+ type _publicBulkCreateSubmissionBySubmitterType = typeof bulkCreateSubmissionBySubmitter$1;
9527
+ declare const bulkCreateSubmissionBySubmitter: ReturnType<typeof createRESTModule<_publicBulkCreateSubmissionBySubmitterType>>;
9528
+ type _publicGetSubmissionType = typeof getSubmission$1;
9529
+ declare const getSubmission: ReturnType<typeof createRESTModule<_publicGetSubmissionType>>;
9530
+ type _publicUpdateSubmissionType = typeof updateSubmission$1;
9531
+ declare const updateSubmission: ReturnType<typeof createRESTModule<_publicUpdateSubmissionType>>;
9532
+ type _publicConfirmSubmissionType = typeof confirmSubmission$1;
9533
+ declare const confirmSubmission: ReturnType<typeof createRESTModule<_publicConfirmSubmissionType>>;
9534
+ type _publicDeleteSubmissionType = typeof deleteSubmission$1;
9535
+ declare const deleteSubmission: ReturnType<typeof createRESTModule<_publicDeleteSubmissionType>>;
9536
+ type _publicBulkDeleteSubmissionType = typeof bulkDeleteSubmission$1;
9537
+ declare const bulkDeleteSubmission: ReturnType<typeof createRESTModule<_publicBulkDeleteSubmissionType>>;
9538
+ type _publicRestoreSubmissionFromTrashBinType = typeof restoreSubmissionFromTrashBin$1;
9539
+ declare const restoreSubmissionFromTrashBin: ReturnType<typeof createRESTModule<_publicRestoreSubmissionFromTrashBinType>>;
9540
+ type _publicRemoveSubmissionFromTrashBinType = typeof removeSubmissionFromTrashBin$1;
9541
+ declare const removeSubmissionFromTrashBin: ReturnType<typeof createRESTModule<_publicRemoveSubmissionFromTrashBinType>>;
9542
+ type _publicBulkRemoveSubmissionFromTrashBinType = typeof bulkRemoveSubmissionFromTrashBin$1;
9543
+ declare const bulkRemoveSubmissionFromTrashBin: ReturnType<typeof createRESTModule<_publicBulkRemoveSubmissionFromTrashBinType>>;
9544
+ type _publicListDeletedSubmissionsType = typeof listDeletedSubmissions$1;
9545
+ declare const listDeletedSubmissions: ReturnType<typeof createRESTModule<_publicListDeletedSubmissionsType>>;
9546
+ type _publicGetDeletedSubmissionType = typeof getDeletedSubmission$1;
9547
+ declare const getDeletedSubmission: ReturnType<typeof createRESTModule<_publicGetDeletedSubmissionType>>;
9548
+ type _publicQuerySubmissionType = typeof querySubmission$1;
9549
+ declare const querySubmission: ReturnType<typeof createRESTModule<_publicQuerySubmissionType>>;
9550
+ type _publicSearchSubmissionsByNamespaceType = typeof searchSubmissionsByNamespace$1;
9551
+ declare const searchSubmissionsByNamespace: ReturnType<typeof createRESTModule<_publicSearchSubmissionsByNamespaceType>>;
9552
+ type _publicQuerySubmissionsByNamespaceType = typeof querySubmissionsByNamespace$1;
9553
+ declare const querySubmissionsByNamespace: ReturnType<typeof createRESTModule<_publicQuerySubmissionsByNamespaceType>>;
9554
+ type _publicCountSubmissionsByFilterType = typeof countSubmissionsByFilter$1;
9555
+ declare const countSubmissionsByFilter: ReturnType<typeof createRESTModule<_publicCountSubmissionsByFilterType>>;
9556
+ type _publicCountSubmissionsType = typeof countSubmissions$1;
9557
+ declare const countSubmissions: ReturnType<typeof createRESTModule<_publicCountSubmissionsType>>;
9558
+ type _publicCountDeletedSubmissionsType = typeof countDeletedSubmissions$1;
9559
+ declare const countDeletedSubmissions: ReturnType<typeof createRESTModule<_publicCountDeletedSubmissionsType>>;
9560
+ type _publicGetMediaUploadUrlType = typeof getMediaUploadUrl$1;
9561
+ declare const getMediaUploadUrl: ReturnType<typeof createRESTModule<_publicGetMediaUploadUrlType>>;
9562
+ type _publicBulkMarkSubmissionsAsSeenType = typeof bulkMarkSubmissionsAsSeen$1;
9563
+ declare const bulkMarkSubmissionsAsSeen: ReturnType<typeof createRESTModule<_publicBulkMarkSubmissionsAsSeenType>>;
9564
+ type _publicUpsertContactFromSubmissionType = typeof upsertContactFromSubmission$1;
9565
+ declare const upsertContactFromSubmission: ReturnType<typeof createRESTModule<_publicUpsertContactFromSubmissionType>>;
9395
9566
 
9396
9567
  type index_d_ActionEvent = ActionEvent;
9397
9568
  type index_d_AddressInfo = AddressInfo;
@@ -9713,6 +9884,7 @@ declare const index_d_PaymentComponentType: typeof PaymentComponentType;
9713
9884
  type index_d_PaymentComponentTypeOptionsOneOf = PaymentComponentTypeOptionsOneOf;
9714
9885
  type index_d_PaymentType = PaymentType;
9715
9886
  type index_d_Permissions = Permissions;
9887
+ type index_d_PhoneConstraints = PhoneConstraints;
9716
9888
  type index_d_PhoneInfo = PhoneInfo;
9717
9889
  type index_d_PhoneInfoTag = PhoneInfoTag;
9718
9890
  declare const index_d_PhoneInfoTag: typeof PhoneInfoTag;
@@ -9805,6 +9977,7 @@ type index_d_StringErrorMessages = StringErrorMessages;
9805
9977
  type index_d_StringType = StringType;
9806
9978
  type index_d_StringTypeDateTimeConstraints = StringTypeDateTimeConstraints;
9807
9979
  type index_d_StringTypeFormatOptionsOneOf = StringTypeFormatOptionsOneOf;
9980
+ type index_d_StringTypePhoneConstraints = StringTypePhoneConstraints;
9808
9981
  type index_d_Styles = Styles;
9809
9982
  type index_d_SubmissionContactMapped = SubmissionContactMapped;
9810
9983
  type index_d_SubmissionContactMappingSkipped = SubmissionContactMappingSkipped;
@@ -9891,6 +10064,28 @@ type index_d__Object = _Object;
9891
10064
  type index_d__ObjectValidationOneOf = _ObjectValidationOneOf;
9892
10065
  type index_d__String = _String;
9893
10066
  type index_d__StringComponentTypeOptionsOneOf = _StringComponentTypeOptionsOneOf;
10067
+ type index_d__publicBulkCreateSubmissionBySubmitterType = _publicBulkCreateSubmissionBySubmitterType;
10068
+ type index_d__publicBulkDeleteSubmissionType = _publicBulkDeleteSubmissionType;
10069
+ type index_d__publicBulkMarkSubmissionsAsSeenType = _publicBulkMarkSubmissionsAsSeenType;
10070
+ type index_d__publicBulkRemoveSubmissionFromTrashBinType = _publicBulkRemoveSubmissionFromTrashBinType;
10071
+ type index_d__publicConfirmSubmissionType = _publicConfirmSubmissionType;
10072
+ type index_d__publicCountDeletedSubmissionsType = _publicCountDeletedSubmissionsType;
10073
+ type index_d__publicCountSubmissionsByFilterType = _publicCountSubmissionsByFilterType;
10074
+ type index_d__publicCountSubmissionsType = _publicCountSubmissionsType;
10075
+ type index_d__publicCreateSubmissionType = _publicCreateSubmissionType;
10076
+ type index_d__publicDeleteSubmissionType = _publicDeleteSubmissionType;
10077
+ type index_d__publicGetDeletedSubmissionType = _publicGetDeletedSubmissionType;
10078
+ type index_d__publicGetMediaUploadUrlType = _publicGetMediaUploadUrlType;
10079
+ type index_d__publicGetSubmissionType = _publicGetSubmissionType;
10080
+ type index_d__publicIsFormSubmittableType = _publicIsFormSubmittableType;
10081
+ type index_d__publicListDeletedSubmissionsType = _publicListDeletedSubmissionsType;
10082
+ type index_d__publicQuerySubmissionType = _publicQuerySubmissionType;
10083
+ type index_d__publicQuerySubmissionsByNamespaceType = _publicQuerySubmissionsByNamespaceType;
10084
+ type index_d__publicRemoveSubmissionFromTrashBinType = _publicRemoveSubmissionFromTrashBinType;
10085
+ type index_d__publicRestoreSubmissionFromTrashBinType = _publicRestoreSubmissionFromTrashBinType;
10086
+ type index_d__publicSearchSubmissionsByNamespaceType = _publicSearchSubmissionsByNamespaceType;
10087
+ type index_d__publicUpdateSubmissionType = _publicUpdateSubmissionType;
10088
+ type index_d__publicUpsertContactFromSubmissionType = _publicUpsertContactFromSubmissionType;
9894
10089
  declare const index_d_bulkCreateSubmissionBySubmitter: typeof bulkCreateSubmissionBySubmitter;
9895
10090
  declare const index_d_bulkDeleteSubmission: typeof bulkDeleteSubmission;
9896
10091
  declare const index_d_bulkMarkSubmissionsAsSeen: typeof bulkMarkSubmissionsAsSeen;
@@ -9914,7 +10109,7 @@ declare const index_d_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
9914
10109
  declare const index_d_updateSubmission: typeof updateSubmission;
9915
10110
  declare const index_d_upsertContactFromSubmission: typeof upsertContactFromSubmission;
9916
10111
  declare namespace index_d {
9917
- export { type index_d_ActionEvent as ActionEvent, type index_d_AddressInfo as AddressInfo, type index_d_AddressLine2 as AddressLine2, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_ArrayErrorMessages as ArrayErrorMessages, type index_d_ArrayItems as ArrayItems, type index_d_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d_ArrayType as ArrayType, type index_d_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, index_d_BooleanComponentType as BooleanComponentType, type index_d_BooleanErrorMessages as BooleanErrorMessages, type index_d_BooleanType as BooleanType, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreakPoint as BreakPoint, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, index_d_ButtonDataType as ButtonDataType, type index_d_CellStyle as CellStyle, type index_d_Checkbox as Checkbox, type index_d_CheckboxGroup as CheckboxGroup, type index_d_Checkout as Checkout, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCustomOption as CommonCustomOption, index_d_ComponentType as ComponentType, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, index_d_ContactField as ContactField, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type index_d_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type index_d_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomFieldInfo as CustomFieldInfo, type index_d_CustomOption as CustomOption, type index_d_DataExtensionsDetails as DataExtensionsDetails, index_d_DateFormatPart as DateFormatPart, type index_d_DateOptions as DateOptions, type index_d_DatePickerOptions as DatePickerOptions, type index_d_DateTimeConstraints as DateTimeConstraints, type index_d_DateTimeInput as DateTimeInput, type index_d_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d_DateTimeInputType as DateTimeInputType, type index_d_DateTimeOptions as DateTimeOptions, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DefaultCountryConfig as DefaultCountryConfig, type index_d_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DisplayField as DisplayField, type index_d_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DonationInput as DonationInput, type index_d_DonationInputOption as DonationInputOption, type index_d_Dropdown as Dropdown, type index_d_DropdownCustomOption as DropdownCustomOption, type index_d_DropdownOption as DropdownOption, type index_d_DynamicPriceOptions as DynamicPriceOptions, type index_d_EmailInfo as EmailInfo, index_d_EmailInfoTag as EmailInfoTag, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_ExtendedFields as ExtendedFields, type index_d_FieldGroup as FieldGroup, type index_d_FieldOverrides as FieldOverrides, index_d_FieldType as FieldType, type index_d_FieldsOverrides as FieldsOverrides, type index_d_FieldsSettings as FieldsSettings, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FileUpload as FileUpload, index_d_FirstDayOfWeek as FirstDayOfWeek, type index_d_FixedPriceOptions as FixedPriceOptions, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_Form as Form, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormField as FormField, type index_d_FormFieldContactInfo as FormFieldContactInfo, type index_d_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d_FormFieldV2 as FormFieldV2, type index_d_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d_FormLayout as FormLayout, type index_d_FormOverride as FormOverride, type index_d_FormProperties as FormProperties, type index_d_FormRule as FormRule, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, index_d_Format as Format, index_d_FormatEnumFormat as FormatEnumFormat, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_Group as Group, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_Header as Header, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_Image as Image, type index_d_ImageData as ImageData, index_d_InitialExpandedItems as InitialExpandedItems, type index_d_InputField as InputField, type index_d_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d_InputFieldArrayType as InputFieldArrayType, type index_d_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d_InputFieldBooleanType as InputFieldBooleanType, type index_d_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d_InputFieldIntegerType as InputFieldIntegerType, type index_d_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d_InputFieldNumberType as InputFieldNumberType, type index_d_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d_InputFieldObjectType as InputFieldObjectType, type index_d_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d_InputFieldStringType as InputFieldStringType, type index_d_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d_InputType as InputType, type index_d_IntegerType as IntegerType, type index_d_IsFormSubmittableRequest as IsFormSubmittableRequest, type index_d_IsFormSubmittableResponse as IsFormSubmittableResponse, type index_d_Item as Item, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemLayout as ItemLayout, type index_d_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemStyle as ItemStyle, index_d_ItemType as ItemType, index_d_Kind as Kind, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, type index_d_LimitationRule as LimitationRule, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, index_d_LinkTarget as LinkTarget, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_Margin as Margin, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_Mode as Mode, type index_d_MultilineAddress as MultilineAddress, index_d_MultilineAddressComponentType as MultilineAddressComponentType, type index_d_MultilineAddressValidation as MultilineAddressValidation, type index_d_NestedForm as NestedForm, type index_d_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d_NestedFormOverrides as NestedFormOverrides, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, index_d_NumberComponentType as NumberComponentType, type index_d_NumberErrorMessages as NumberErrorMessages, type index_d_NumberInput as NumberInput, index_d_NumberOfColumns as NumberOfColumns, type index_d_NumberType as NumberType, type index_d_ObjectErrorMessages as ObjectErrorMessages, type index_d_ObjectType as ObjectType, type index_d_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d_Oembed as Oembed, index_d_OptInLevel as OptInLevel, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderDetails as OrderDetails, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, index_d_OverrideEntityType as OverrideEntityType, type index_d_PDFSettings as PDFSettings, type index_d_ParagraphData as ParagraphData, type index_d_Payment as Payment, index_d_PaymentComponentType as PaymentComponentType, type index_d_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d_PaymentType as PaymentType, type index_d_Permissions as Permissions, type index_d_PhoneInfo as PhoneInfo, index_d_PhoneInfoTag as PhoneInfoTag, type index_d_PhoneInput as PhoneInput, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollOption as PollOption, type index_d_PostSubmissionTriggers as PostSubmissionTriggers, type index_d_PredefinedValidation as PredefinedValidation, type index_d_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d_PriceType as PriceType, type index_d_Product as Product, type index_d_ProductCheckboxGroup as ProductCheckboxGroup, type index_d_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d_ProductType as ProductType, type index_d_PropertiesType as PropertiesType, index_d_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d_QuantityLimit as QuantityLimit, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RadioGroup as RadioGroup, type index_d_RadioGroupCustomOption as RadioGroupCustomOption, type index_d_RadioGroupOption as RadioGroupOption, type index_d_RatingInput as RatingInput, type index_d_Redirect as Redirect, type index_d_RedirectOptions as RedirectOptions, type index_d_Rel as Rel, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, index_d_RequiredIndicator as RequiredIndicator, index_d_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_RichContent as RichContent, type index_d_RichText as RichText, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type index_d_Section as Section, type index_d_Settings as Settings, type index_d_Signature as Signature, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Source as Source, index_d_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Step as Step, index_d_StringComponentType as StringComponentType, type index_d_StringErrorMessages as StringErrorMessages, type index_d_StringType as StringType, type index_d_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d_Styles as Styles, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitButton as SubmitButton, type index_d_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_SubmitSettings as SubmitSettings, type index_d_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d_SubmitSuccessAction as SubmitSuccessAction, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_SubscriptionInfo as SubscriptionInfo, index_d_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextInput as TextInput, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_ThankYouMessage as ThankYouMessage, type index_d_ThankYouMessageOptions as ThankYouMessageOptions, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TimeOptions as TimeOptions, index_d_Type as Type, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, index_d_UploadFileFormat as UploadFileFormat, type index_d_UpsertContact as UpsertContact, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d_Validation as Validation, index_d_ValidationFormat as ValidationFormat, type index_d_ValidationValidationOneOf as ValidationValidationOneOf, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, type index_d_WixFile as WixFile, index_d_WixFileComponentType as WixFileComponentType, type index_d_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d__Array as _Array, type index_d__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d__Boolean as _Boolean, type index_d__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d__Number as _Number, type index_d__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d__Object as _Object, type index_d__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d__String as _String, type index_d__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_isFormSubmittable as isFormSubmittable, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
10112
+ export { type index_d_ActionEvent as ActionEvent, type index_d_AddressInfo as AddressInfo, type index_d_AddressLine2 as AddressLine2, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_ArrayErrorMessages as ArrayErrorMessages, type index_d_ArrayItems as ArrayItems, type index_d_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d_ArrayType as ArrayType, type index_d_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, index_d_BooleanComponentType as BooleanComponentType, type index_d_BooleanErrorMessages as BooleanErrorMessages, type index_d_BooleanType as BooleanType, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreakPoint as BreakPoint, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, index_d_ButtonDataType as ButtonDataType, type index_d_CellStyle as CellStyle, type index_d_Checkbox as Checkbox, type index_d_CheckboxGroup as CheckboxGroup, type index_d_Checkout as Checkout, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCustomOption as CommonCustomOption, index_d_ComponentType as ComponentType, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, index_d_ContactField as ContactField, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type index_d_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type index_d_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomFieldInfo as CustomFieldInfo, type index_d_CustomOption as CustomOption, type index_d_DataExtensionsDetails as DataExtensionsDetails, index_d_DateFormatPart as DateFormatPart, type index_d_DateOptions as DateOptions, type index_d_DatePickerOptions as DatePickerOptions, type index_d_DateTimeConstraints as DateTimeConstraints, type index_d_DateTimeInput as DateTimeInput, type index_d_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d_DateTimeInputType as DateTimeInputType, type index_d_DateTimeOptions as DateTimeOptions, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DefaultCountryConfig as DefaultCountryConfig, type index_d_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DisplayField as DisplayField, type index_d_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DonationInput as DonationInput, type index_d_DonationInputOption as DonationInputOption, type index_d_Dropdown as Dropdown, type index_d_DropdownCustomOption as DropdownCustomOption, type index_d_DropdownOption as DropdownOption, type index_d_DynamicPriceOptions as DynamicPriceOptions, type index_d_EmailInfo as EmailInfo, index_d_EmailInfoTag as EmailInfoTag, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_ExtendedFields as ExtendedFields, type index_d_FieldGroup as FieldGroup, type index_d_FieldOverrides as FieldOverrides, index_d_FieldType as FieldType, type index_d_FieldsOverrides as FieldsOverrides, type index_d_FieldsSettings as FieldsSettings, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FileUpload as FileUpload, index_d_FirstDayOfWeek as FirstDayOfWeek, type index_d_FixedPriceOptions as FixedPriceOptions, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_Form as Form, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormField as FormField, type index_d_FormFieldContactInfo as FormFieldContactInfo, type index_d_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d_FormFieldV2 as FormFieldV2, type index_d_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d_FormLayout as FormLayout, type index_d_FormOverride as FormOverride, type index_d_FormProperties as FormProperties, type index_d_FormRule as FormRule, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, index_d_Format as Format, index_d_FormatEnumFormat as FormatEnumFormat, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_Group as Group, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_Header as Header, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_Image as Image, type index_d_ImageData as ImageData, index_d_InitialExpandedItems as InitialExpandedItems, type index_d_InputField as InputField, type index_d_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d_InputFieldArrayType as InputFieldArrayType, type index_d_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d_InputFieldBooleanType as InputFieldBooleanType, type index_d_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d_InputFieldIntegerType as InputFieldIntegerType, type index_d_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d_InputFieldNumberType as InputFieldNumberType, type index_d_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d_InputFieldObjectType as InputFieldObjectType, type index_d_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d_InputFieldStringType as InputFieldStringType, type index_d_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d_InputType as InputType, type index_d_IntegerType as IntegerType, type index_d_IsFormSubmittableRequest as IsFormSubmittableRequest, type index_d_IsFormSubmittableResponse as IsFormSubmittableResponse, type index_d_Item as Item, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemLayout as ItemLayout, type index_d_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemStyle as ItemStyle, index_d_ItemType as ItemType, index_d_Kind as Kind, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, type index_d_LimitationRule as LimitationRule, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, index_d_LinkTarget as LinkTarget, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_Margin as Margin, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_Mode as Mode, type index_d_MultilineAddress as MultilineAddress, index_d_MultilineAddressComponentType as MultilineAddressComponentType, type index_d_MultilineAddressValidation as MultilineAddressValidation, type index_d_NestedForm as NestedForm, type index_d_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d_NestedFormOverrides as NestedFormOverrides, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, index_d_NumberComponentType as NumberComponentType, type index_d_NumberErrorMessages as NumberErrorMessages, type index_d_NumberInput as NumberInput, index_d_NumberOfColumns as NumberOfColumns, type index_d_NumberType as NumberType, type index_d_ObjectErrorMessages as ObjectErrorMessages, type index_d_ObjectType as ObjectType, type index_d_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d_Oembed as Oembed, index_d_OptInLevel as OptInLevel, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderDetails as OrderDetails, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, index_d_OverrideEntityType as OverrideEntityType, type index_d_PDFSettings as PDFSettings, type index_d_ParagraphData as ParagraphData, type index_d_Payment as Payment, index_d_PaymentComponentType as PaymentComponentType, type index_d_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d_PaymentType as PaymentType, type index_d_Permissions as Permissions, type index_d_PhoneConstraints as PhoneConstraints, type index_d_PhoneInfo as PhoneInfo, index_d_PhoneInfoTag as PhoneInfoTag, type index_d_PhoneInput as PhoneInput, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollOption as PollOption, type index_d_PostSubmissionTriggers as PostSubmissionTriggers, type index_d_PredefinedValidation as PredefinedValidation, type index_d_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d_PriceType as PriceType, type index_d_Product as Product, type index_d_ProductCheckboxGroup as ProductCheckboxGroup, type index_d_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d_ProductType as ProductType, type index_d_PropertiesType as PropertiesType, index_d_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d_QuantityLimit as QuantityLimit, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RadioGroup as RadioGroup, type index_d_RadioGroupCustomOption as RadioGroupCustomOption, type index_d_RadioGroupOption as RadioGroupOption, type index_d_RatingInput as RatingInput, type index_d_Redirect as Redirect, type index_d_RedirectOptions as RedirectOptions, type index_d_Rel as Rel, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, index_d_RequiredIndicator as RequiredIndicator, index_d_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_RichContent as RichContent, type index_d_RichText as RichText, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type index_d_Section as Section, type index_d_Settings as Settings, type index_d_Signature as Signature, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Source as Source, index_d_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Step as Step, index_d_StringComponentType as StringComponentType, type index_d_StringErrorMessages as StringErrorMessages, type index_d_StringType as StringType, type index_d_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d_StringTypePhoneConstraints as StringTypePhoneConstraints, type index_d_Styles as Styles, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitButton as SubmitButton, type index_d_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_SubmitSettings as SubmitSettings, type index_d_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d_SubmitSuccessAction as SubmitSuccessAction, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_SubscriptionInfo as SubscriptionInfo, index_d_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextInput as TextInput, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_ThankYouMessage as ThankYouMessage, type index_d_ThankYouMessageOptions as ThankYouMessageOptions, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TimeOptions as TimeOptions, index_d_Type as Type, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, index_d_UploadFileFormat as UploadFileFormat, type index_d_UpsertContact as UpsertContact, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d_Validation as Validation, index_d_ValidationFormat as ValidationFormat, type index_d_ValidationValidationOneOf as ValidationValidationOneOf, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, type index_d_WixFile as WixFile, index_d_WixFileComponentType as WixFileComponentType, type index_d_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d__Array as _Array, type index_d__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d__Boolean as _Boolean, type index_d__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d__Number as _Number, type index_d__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d__Object as _Object, type index_d__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d__String as _String, type index_d__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, type index_d__publicBulkCreateSubmissionBySubmitterType as _publicBulkCreateSubmissionBySubmitterType, type index_d__publicBulkDeleteSubmissionType as _publicBulkDeleteSubmissionType, type index_d__publicBulkMarkSubmissionsAsSeenType as _publicBulkMarkSubmissionsAsSeenType, type index_d__publicBulkRemoveSubmissionFromTrashBinType as _publicBulkRemoveSubmissionFromTrashBinType, type index_d__publicConfirmSubmissionType as _publicConfirmSubmissionType, type index_d__publicCountDeletedSubmissionsType as _publicCountDeletedSubmissionsType, type index_d__publicCountSubmissionsByFilterType as _publicCountSubmissionsByFilterType, type index_d__publicCountSubmissionsType as _publicCountSubmissionsType, type index_d__publicCreateSubmissionType as _publicCreateSubmissionType, type index_d__publicDeleteSubmissionType as _publicDeleteSubmissionType, type index_d__publicGetDeletedSubmissionType as _publicGetDeletedSubmissionType, type index_d__publicGetMediaUploadUrlType as _publicGetMediaUploadUrlType, type index_d__publicGetSubmissionType as _publicGetSubmissionType, type index_d__publicIsFormSubmittableType as _publicIsFormSubmittableType, type index_d__publicListDeletedSubmissionsType as _publicListDeletedSubmissionsType, type index_d__publicQuerySubmissionType as _publicQuerySubmissionType, type index_d__publicQuerySubmissionsByNamespaceType as _publicQuerySubmissionsByNamespaceType, type index_d__publicRemoveSubmissionFromTrashBinType as _publicRemoveSubmissionFromTrashBinType, type index_d__publicRestoreSubmissionFromTrashBinType as _publicRestoreSubmissionFromTrashBinType, type index_d__publicSearchSubmissionsByNamespaceType as _publicSearchSubmissionsByNamespaceType, type index_d__publicUpdateSubmissionType as _publicUpdateSubmissionType, type index_d__publicUpsertContactFromSubmissionType as _publicUpsertContactFromSubmissionType, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_isFormSubmittable as isFormSubmittable, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
9918
10113
  }
9919
10114
 
9920
10115
  export { index_d$1 as formSpamSubmissionReports, index_d$2 as forms, index_d as submissions };