@wix/forms 1.0.118 → 1.0.120

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/forms",
3
- "version": "1.0.118",
3
+ "version": "1.0.120",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@wix/forms_form-spam-submission-reports": "1.0.6",
23
23
  "@wix/forms_form-submissions": "1.0.13",
24
- "@wix/forms_forms": "1.0.9",
24
+ "@wix/forms_forms": "1.0.11",
25
25
  "@wix/forms_submissions": "1.0.41"
26
26
  },
27
27
  "devDependencies": {
@@ -46,5 +46,5 @@
46
46
  "fqdn": ""
47
47
  }
48
48
  },
49
- "falconPackageHash": "97e822fc9ff8f37a64d9c021de20d2d435c63128bc65c73325fd5425"
49
+ "falconPackageHash": "e5a745c3a76d5719d4cffa906fb715c65e3c682bd9ad1ae20986469b"
50
50
  }
@@ -73,6 +73,8 @@ interface Form {
73
73
  requiredIndicatorProperties?: RequiredIndicatorProperties;
74
74
  /** Settings for actions to be taken after form submission. */
75
75
  submitSettings?: SubmitSettings;
76
+ /** Settings for field groups */
77
+ fieldGroups?: FieldGroup[];
76
78
  }
77
79
  declare enum RequiredIndicator {
78
80
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -2768,9 +2770,11 @@ interface BreakPoint {
2768
2770
  /** Sections of the layout, which allow manage fields */
2769
2771
  sections?: Section[];
2770
2772
  }
2771
- interface ItemLayout {
2773
+ interface ItemLayout extends ItemLayoutItemOneOf {
2772
2774
  /** Form field reference id. */
2773
2775
  fieldId?: string;
2776
+ /** Group info, defining that this item is a group of multiple fields */
2777
+ group?: Group;
2774
2778
  /** Horizontal coordinate in the grid. */
2775
2779
  row?: number | null;
2776
2780
  /** Vertical coordinate in the grid. */
@@ -2780,6 +2784,19 @@ interface ItemLayout {
2780
2784
  /** Width. */
2781
2785
  height?: number | null;
2782
2786
  }
2787
+ /** @oneof */
2788
+ interface ItemLayoutItemOneOf {
2789
+ /** Form field reference id. */
2790
+ fieldId?: string;
2791
+ /** Group info, defining that this item is a group of multiple fields */
2792
+ group?: Group;
2793
+ }
2794
+ interface Group {
2795
+ /** Field group reference id. */
2796
+ groupId?: string;
2797
+ /** Description of layouts for items. */
2798
+ items?: ItemLayout[];
2799
+ }
2783
2800
  interface Margin {
2784
2801
  /** Horizontal value. */
2785
2802
  horizontal?: number | null;
@@ -2921,10 +2938,10 @@ declare enum SubmitSuccessAction {
2921
2938
  REDIRECT = "REDIRECT"
2922
2939
  }
2923
2940
  interface ThankYouMessageOptions {
2924
- /** The message shown after form submission. */
2925
- messageContent?: RichContent;
2926
2941
  /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */
2927
2942
  durationInSeconds?: number | null;
2943
+ /** The message shown after form submission. */
2944
+ richContent?: RichContent;
2928
2945
  }
2929
2946
  interface RedirectOptions {
2930
2947
  /** The URL to which the user should be redirected after a successful form submission. */
@@ -2932,6 +2949,12 @@ interface RedirectOptions {
2932
2949
  /** How the URL should be opened. */
2933
2950
  target?: UrlTargetEnumTarget;
2934
2951
  }
2952
+ interface FieldGroup {
2953
+ /** Id of group, on layout */
2954
+ _id?: string;
2955
+ /** Label of group */
2956
+ label?: string | null;
2957
+ }
2935
2958
  interface PiiFieldsUpdated {
2936
2959
  /** Collection of fields which are marked as PII */
2937
2960
  piiFields?: string[];
@@ -3940,8 +3963,13 @@ interface FormFieldV2NonNullableFields {
3940
3963
  hidden: boolean;
3941
3964
  fieldType: FieldType;
3942
3965
  }
3966
+ interface GroupNonNullableFields {
3967
+ groupId: string;
3968
+ items: ItemLayoutNonNullableFields[];
3969
+ }
3943
3970
  interface ItemLayoutNonNullableFields {
3944
3971
  fieldId: string;
3972
+ group?: GroupNonNullableFields;
3945
3973
  }
3946
3974
  interface SectionNonNullableFields {
3947
3975
  _id: string;
@@ -3986,7 +4014,7 @@ interface RequiredIndicatorPropertiesNonNullableFields {
3986
4014
  requiredIndicatorPlacement: RequiredIndicatorPlacement;
3987
4015
  }
3988
4016
  interface ThankYouMessageOptionsNonNullableFields {
3989
- messageContent?: RichContentNonNullableFields;
4017
+ richContent?: RichContentNonNullableFields;
3990
4018
  }
3991
4019
  interface RedirectOptionsNonNullableFields {
3992
4020
  target: UrlTargetEnumTarget;
@@ -3996,6 +4024,9 @@ interface SubmitSettingsNonNullableFields {
3996
4024
  redirectOptions?: RedirectOptionsNonNullableFields;
3997
4025
  submitSuccessAction: SubmitSuccessAction;
3998
4026
  }
4027
+ interface FieldGroupNonNullableFields {
4028
+ _id: string;
4029
+ }
3999
4030
  interface FormNonNullableFields {
4000
4031
  fields: FormFieldNonNullableFields[];
4001
4032
  fieldsV2: FormFieldV2NonNullableFields[];
@@ -4011,6 +4042,7 @@ interface FormNonNullableFields {
4011
4042
  spamFilterProtectionLevel: SpamFilterProtectionLevel;
4012
4043
  requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
4013
4044
  submitSettings?: SubmitSettingsNonNullableFields;
4045
+ fieldGroups: FieldGroupNonNullableFields[];
4014
4046
  }
4015
4047
  interface CreateFormResponseNonNullableFields {
4016
4048
  form?: FormNonNullableFields;
@@ -4162,6 +4194,8 @@ interface UpdateForm {
4162
4194
  requiredIndicatorProperties?: RequiredIndicatorProperties;
4163
4195
  /** Settings for actions to be taken after form submission. */
4164
4196
  submitSettings?: SubmitSettings;
4197
+ /** Settings for field groups */
4198
+ fieldGroups?: FieldGroup[];
4165
4199
  }
4166
4200
  interface DeleteFormOptions {
4167
4201
  /**
@@ -4469,6 +4503,7 @@ type context$2_EmailInfoTag = EmailInfoTag;
4469
4503
  declare const context$2_EmailInfoTag: typeof EmailInfoTag;
4470
4504
  type context$2_EmbedData = EmbedData;
4471
4505
  type context$2_EventData = EventData;
4506
+ type context$2_FieldGroup = FieldGroup;
4472
4507
  type context$2_FieldOverrides = FieldOverrides;
4473
4508
  type context$2_FieldType = FieldType;
4474
4509
  declare const context$2_FieldType: typeof FieldType;
@@ -4517,6 +4552,7 @@ type context$2_GetFormRequest = GetFormRequest;
4517
4552
  type context$2_GetFormResponse = GetFormResponse;
4518
4553
  type context$2_GetFormResponseNonNullableFields = GetFormResponseNonNullableFields;
4519
4554
  type context$2_Gradient = Gradient;
4555
+ type context$2_Group = Group;
4520
4556
  type context$2_HTMLData = HTMLData;
4521
4557
  type context$2_HTMLDataDataOneOf = HTMLDataDataOneOf;
4522
4558
  type context$2_Header = Header;
@@ -4548,6 +4584,7 @@ type context$2_IntegerType = IntegerType;
4548
4584
  type context$2_Item = Item;
4549
4585
  type context$2_ItemDataOneOf = ItemDataOneOf;
4550
4586
  type context$2_ItemLayout = ItemLayout;
4587
+ type context$2_ItemLayoutItemOneOf = ItemLayoutItemOneOf;
4551
4588
  type context$2_ItemStyle = ItemStyle;
4552
4589
  type context$2_ItemType = ItemType;
4553
4590
  declare const context$2_ItemType: typeof ItemType;
@@ -4800,7 +4837,7 @@ declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
4800
4837
  declare const context$2_updateExtendedFields: typeof updateExtendedFields;
4801
4838
  declare const context$2_updateForm: typeof updateForm;
4802
4839
  declare namespace context$2 {
4803
- export { type ActionEvent$2 as ActionEvent, type context$2_AddressInfo as AddressInfo, type context$2_AddressLine2 as AddressLine2, context$2_Alignment as Alignment, type context$2_AnchorData as AnchorData, type context$2_AppEmbedData as AppEmbedData, type context$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type context$2_ArrayErrorMessages as ArrayErrorMessages, type context$2_ArrayItems as ArrayItems, type context$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context$2_ArrayType as ArrayType, type context$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type context$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context$2_AudioData as AudioData, type context$2_Background as Background, type context$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$2_BackgroundType as BackgroundType, type context$2_BlockquoteData as BlockquoteData, type context$2_BookingData as BookingData, context$2_BooleanComponentType as BooleanComponentType, type context$2_BooleanErrorMessages as BooleanErrorMessages, type context$2_BooleanType as BooleanType, type context$2_Border as Border, type context$2_BorderColors as BorderColors, type context$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type context$2_BulletedListData as BulletedListData, type context$2_ButtonData as ButtonData, context$2_ButtonDataType as ButtonDataType, type context$2_CellStyle as CellStyle, type context$2_Checkbox as Checkbox, type context$2_CheckboxGroup as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type context$2_CodeBlockData as CodeBlockData, type context$2_CollapsibleListData as CollapsibleListData, type context$2_ColorData as ColorData, type context$2_Colors as Colors, type context$2_CommonCustomOption as CommonCustomOption, context$2_ComponentType as ComponentType, context$2_ContactField as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, context$2_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type context$2_CustomFieldInfo as CustomFieldInfo, type context$2_CustomOption as CustomOption, type context$2_DataExtensionsDetails as DataExtensionsDetails, context$2_DateFormatPart as DateFormatPart, type context$2_DateOptions as DateOptions, type context$2_DatePickerOptions as DatePickerOptions, type context$2_DateTimeConstraints as DateTimeConstraints, type context$2_DateTimeInput as DateTimeInput, type context$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context$2_DateTimeInputType as DateTimeInputType, type context$2_DateTimeOptions as DateTimeOptions, type context$2_Decoration as Decoration, type context$2_DecorationDataOneOf as DecorationDataOneOf, context$2_DecorationType as DecorationType, type context$2_DefaultCountryConfig as DefaultCountryConfig, type context$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type context$2_Design as Design, type context$2_Dimensions as Dimensions, context$2_Direction as Direction, type context$2_DisplayField as DisplayField, type context$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context$2_DividerData as DividerData, type context$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$2_DonationInput as DonationInput, type context$2_DonationInputOption as DonationInputOption, type context$2_Dropdown as Dropdown, type context$2_DropdownCustomOption as DropdownCustomOption, type context$2_DropdownOption as DropdownOption, type context$2_DynamicPriceOptions as DynamicPriceOptions, type context$2_EmailInfo as EmailInfo, context$2_EmailInfoTag as EmailInfoTag, type context$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type context$2_FieldOverrides as FieldOverrides, context$2_FieldType as FieldType, type context$2_FieldsOverrides as FieldsOverrides, type context$2_FieldsSettings as FieldsSettings, context$2_Fieldset as Fieldset, type context$2_FileData as FileData, type context$2_FileSource as FileSource, type context$2_FileSourceDataOneOf as FileSourceDataOneOf, type context$2_FileUpload as FileUpload, context$2_FirstDayOfWeek as FirstDayOfWeek, type context$2_FixedPriceOptions as FixedPriceOptions, type context$2_FontSizeData as FontSizeData, context$2_FontType as FontType, type context$2_Form as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type context$2_FormField as FormField, type context$2_FormFieldContactInfo as FormFieldContactInfo, type context$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context$2_FormFieldV2 as FormFieldV2, type context$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context$2_FormLayout as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type context$2_FormOverride as FormOverride, type context$2_FormProperties as FormProperties, type context$2_FormRule as FormRule, context$2_Format as Format, context$2_FormatEnumFormat as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_GIF as GIF, type context$2_GIFData as GIFData, type context$2_GalleryData as GalleryData, type context$2_GalleryOptions as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type context$2_Gradient as Gradient, type context$2_HTMLData as HTMLData, type context$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$2_Header as Header, type context$2_HeadingData as HeadingData, type context$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$2_Image as Image, type context$2_ImageData as ImageData, context$2_InitialExpandedItems as InitialExpandedItems, type context$2_InputField as InputField, type context$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context$2_InputFieldArrayType as InputFieldArrayType, type context$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context$2_InputFieldBooleanType as InputFieldBooleanType, type context$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context$2_InputFieldIntegerType as InputFieldIntegerType, type context$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type context$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context$2_InputFieldNumberType as InputFieldNumberType, type context$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context$2_InputFieldObjectType as InputFieldObjectType, type context$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context$2_InputFieldStringType as InputFieldStringType, type context$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context$2_InputType as InputType, type context$2_IntegerType as IntegerType, type context$2_Item as Item, type context$2_ItemDataOneOf as ItemDataOneOf, type context$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type context$2_ItemStyle as ItemStyle, context$2_ItemType as ItemType, context$2_Kind as Kind, type context$2_Layout as Layout, context$2_LayoutType as LayoutType, type context$2_LimitationRule as LimitationRule, context$2_LineStyle as LineStyle, type context$2_Link as Link, type context$2_LinkData as LinkData, type context$2_LinkDataOneOf as LinkDataOneOf, type context$2_LinkPreviewData as LinkPreviewData, context$2_LinkTarget as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type context$2_ListValue as ListValue, type context$2_MapData as MapData, type context$2_MapSettings as MapSettings, context$2_MapType as MapType, type context$2_Margin as Margin, type context$2_Media as Media, type context$2_MediaItem as MediaItem, type context$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type context$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type context$2_Metadata as Metadata, type context$2_MultilineAddress as MultilineAddress, context$2_MultilineAddressComponentType as MultilineAddressComponentType, type context$2_MultilineAddressValidation as MultilineAddressValidation, type context$2_NestedForm as NestedForm, type context$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type context$2_NestedFormOverrides as NestedFormOverrides, type context$2_Node as Node, type context$2_NodeDataOneOf as NodeDataOneOf, type context$2_NodeStyle as NodeStyle, context$2_NodeType as NodeType, context$2_NullValue as NullValue, context$2_NumberComponentType as NumberComponentType, type context$2_NumberErrorMessages as NumberErrorMessages, type context$2_NumberInput as NumberInput, context$2_NumberOfColumns as NumberOfColumns, type context$2_NumberType as NumberType, type context$2_ObjectErrorMessages as ObjectErrorMessages, type context$2_ObjectType as ObjectType, type context$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type context$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context$2_Oembed as Oembed, OptInLevel$2 as OptInLevel, type context$2_Option as Option, type context$2_OptionDesign as OptionDesign, type context$2_OptionLayout as OptionLayout, type context$2_OrderedListData as OrderedListData, context$2_Orientation as Orientation, context$2_OverrideEntityType as OverrideEntityType, type context$2_PDFSettings as PDFSettings, type context$2_ParagraphData as ParagraphData, type context$2_Payment as Payment, context$2_PaymentComponentType as PaymentComponentType, type context$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context$2_PaymentType as PaymentType, type context$2_Permissions as Permissions, type context$2_PhoneInfo as PhoneInfo, context$2_PhoneInfoTag as PhoneInfoTag, type context$2_PhoneInput as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type context$2_PlaybackOptions as PlaybackOptions, type context$2_PluginContainerData as PluginContainerData, context$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$2_PluginContainerDataWidth as PluginContainerDataWidth, type context$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$2_Poll as Poll, type context$2_PollData as PollData, type context$2_PollDataLayout as PollDataLayout, type context$2_PollDesign as PollDesign, type context$2_PollLayout as PollLayout, context$2_PollLayoutDirection as PollLayoutDirection, context$2_PollLayoutType as PollLayoutType, type context$2_PollOption as PollOption, type context$2_PostSubmissionTriggers as PostSubmissionTriggers, type context$2_PredefinedValidation as PredefinedValidation, type context$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context$2_PriceType as PriceType, type context$2_Product as Product, type context$2_ProductCheckboxGroup as ProductCheckboxGroup, type context$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context$2_ProductType as ProductType, type context$2_PropertiesType as PropertiesType, context$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context$2_QuantityLimit as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type context$2_RadioGroup as RadioGroup, type context$2_RadioGroupCustomOption as RadioGroupCustomOption, type context$2_RadioGroupOption as RadioGroupOption, type context$2_RatingInput as RatingInput, type context$2_Redirect as Redirect, type context$2_RedirectOptions as RedirectOptions, type context$2_Rel as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, context$2_RequiredIndicator as RequiredIndicator, context$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type context$2_RichContent as RichContent, type context$2_RichText as RichText, type context$2_Section as Section, type context$2_Settings as Settings, type context$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, context$2_Source as Source, context$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context$2_Spoiler as Spoiler, type context$2_SpoilerData as SpoilerData, type context$2_Step as Step, context$2_StringComponentType as StringComponentType, type context$2_StringErrorMessages as StringErrorMessages, type context$2_StringType as StringType, type context$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context$2_Styles as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type context$2_SubmitButton as SubmitButton, type context$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context$2_SubmitSettings as SubmitSettings, type context$2_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context$2_SubmitSuccessAction as SubmitSuccessAction, type context$2_SubscriptionInfo as SubscriptionInfo, type context$2_TableCellData as TableCellData, type context$2_TableData as TableData, context$2_Tag as Tag, context$2_Target as Target, context$2_TextAlignment as TextAlignment, type context$2_TextData as TextData, type context$2_TextInput as TextInput, type context$2_TextNodeStyle as TextNodeStyle, type context$2_TextStyle as TextStyle, type context$2_ThankYouMessage as ThankYouMessage, type context$2_ThankYouMessageOptions as ThankYouMessageOptions, type context$2_Thumbnails as Thumbnails, context$2_ThumbnailsAlignment as ThumbnailsAlignment, type context$2_TimeOptions as TimeOptions, context$2_Type as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, context$2_UploadFileFormat as UploadFileFormat, type context$2_UpsertContact as UpsertContact, context$2_UrlTargetEnumTarget as UrlTargetEnumTarget, type context$2_Validation as Validation, context$2_ValidationFormat as ValidationFormat, type context$2_ValidationValidationOneOf as ValidationValidationOneOf, context$2_VerticalAlignment as VerticalAlignment, type context$2_Video as Video, type context$2_VideoData as VideoData, context$2_ViewMode as ViewMode, context$2_ViewRole as ViewRole, context$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, context$2_Width as Width, context$2_WidthType as WidthType, type context$2_WixFile as WixFile, context$2_WixFileComponentType as WixFileComponentType, type context$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context$2__Array as _Array, type context$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context$2__Boolean as _Boolean, type context$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context$2__Number as _Number, type context$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context$2__Object as _Object, type context$2__ObjectValidationOneOf as _ObjectValidationOneOf, type context$2__String as _String, type context$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
4840
+ export { type ActionEvent$2 as ActionEvent, type context$2_AddressInfo as AddressInfo, type context$2_AddressLine2 as AddressLine2, context$2_Alignment as Alignment, type context$2_AnchorData as AnchorData, type context$2_AppEmbedData as AppEmbedData, type context$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type context$2_ArrayErrorMessages as ArrayErrorMessages, type context$2_ArrayItems as ArrayItems, type context$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context$2_ArrayType as ArrayType, type context$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type context$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context$2_AudioData as AudioData, type context$2_Background as Background, type context$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$2_BackgroundType as BackgroundType, type context$2_BlockquoteData as BlockquoteData, type context$2_BookingData as BookingData, context$2_BooleanComponentType as BooleanComponentType, type context$2_BooleanErrorMessages as BooleanErrorMessages, type context$2_BooleanType as BooleanType, type context$2_Border as Border, type context$2_BorderColors as BorderColors, type context$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type context$2_BulletedListData as BulletedListData, type context$2_ButtonData as ButtonData, context$2_ButtonDataType as ButtonDataType, type context$2_CellStyle as CellStyle, type context$2_Checkbox as Checkbox, type context$2_CheckboxGroup as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type context$2_CodeBlockData as CodeBlockData, type context$2_CollapsibleListData as CollapsibleListData, type context$2_ColorData as ColorData, type context$2_Colors as Colors, type context$2_CommonCustomOption as CommonCustomOption, context$2_ComponentType as ComponentType, context$2_ContactField as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, context$2_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type context$2_CustomFieldInfo as CustomFieldInfo, type context$2_CustomOption as CustomOption, type context$2_DataExtensionsDetails as DataExtensionsDetails, context$2_DateFormatPart as DateFormatPart, type context$2_DateOptions as DateOptions, type context$2_DatePickerOptions as DatePickerOptions, type context$2_DateTimeConstraints as DateTimeConstraints, type context$2_DateTimeInput as DateTimeInput, type context$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context$2_DateTimeInputType as DateTimeInputType, type context$2_DateTimeOptions as DateTimeOptions, type context$2_Decoration as Decoration, type context$2_DecorationDataOneOf as DecorationDataOneOf, context$2_DecorationType as DecorationType, type context$2_DefaultCountryConfig as DefaultCountryConfig, type context$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type context$2_Design as Design, type context$2_Dimensions as Dimensions, context$2_Direction as Direction, type context$2_DisplayField as DisplayField, type context$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context$2_DividerData as DividerData, type context$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$2_DonationInput as DonationInput, type context$2_DonationInputOption as DonationInputOption, type context$2_Dropdown as Dropdown, type context$2_DropdownCustomOption as DropdownCustomOption, type context$2_DropdownOption as DropdownOption, type context$2_DynamicPriceOptions as DynamicPriceOptions, type context$2_EmailInfo as EmailInfo, context$2_EmailInfoTag as EmailInfoTag, type context$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type context$2_FieldGroup as FieldGroup, type context$2_FieldOverrides as FieldOverrides, context$2_FieldType as FieldType, type context$2_FieldsOverrides as FieldsOverrides, type context$2_FieldsSettings as FieldsSettings, context$2_Fieldset as Fieldset, type context$2_FileData as FileData, type context$2_FileSource as FileSource, type context$2_FileSourceDataOneOf as FileSourceDataOneOf, type context$2_FileUpload as FileUpload, context$2_FirstDayOfWeek as FirstDayOfWeek, type context$2_FixedPriceOptions as FixedPriceOptions, type context$2_FontSizeData as FontSizeData, context$2_FontType as FontType, type context$2_Form as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type context$2_FormField as FormField, type context$2_FormFieldContactInfo as FormFieldContactInfo, type context$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context$2_FormFieldV2 as FormFieldV2, type context$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context$2_FormLayout as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type context$2_FormOverride as FormOverride, type context$2_FormProperties as FormProperties, type context$2_FormRule as FormRule, context$2_Format as Format, context$2_FormatEnumFormat as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_GIF as GIF, type context$2_GIFData as GIFData, type context$2_GalleryData as GalleryData, type context$2_GalleryOptions as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type context$2_Gradient as Gradient, type context$2_Group as Group, type context$2_HTMLData as HTMLData, type context$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$2_Header as Header, type context$2_HeadingData as HeadingData, type context$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$2_Image as Image, type context$2_ImageData as ImageData, context$2_InitialExpandedItems as InitialExpandedItems, type context$2_InputField as InputField, type context$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context$2_InputFieldArrayType as InputFieldArrayType, type context$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context$2_InputFieldBooleanType as InputFieldBooleanType, type context$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context$2_InputFieldIntegerType as InputFieldIntegerType, type context$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type context$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context$2_InputFieldNumberType as InputFieldNumberType, type context$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context$2_InputFieldObjectType as InputFieldObjectType, type context$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context$2_InputFieldStringType as InputFieldStringType, type context$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context$2_InputType as InputType, type context$2_IntegerType as IntegerType, type context$2_Item as Item, type context$2_ItemDataOneOf as ItemDataOneOf, type context$2_ItemLayout as ItemLayout, type context$2_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type context$2_ItemStyle as ItemStyle, context$2_ItemType as ItemType, context$2_Kind as Kind, type context$2_Layout as Layout, context$2_LayoutType as LayoutType, type context$2_LimitationRule as LimitationRule, context$2_LineStyle as LineStyle, type context$2_Link as Link, type context$2_LinkData as LinkData, type context$2_LinkDataOneOf as LinkDataOneOf, type context$2_LinkPreviewData as LinkPreviewData, context$2_LinkTarget as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type context$2_ListValue as ListValue, type context$2_MapData as MapData, type context$2_MapSettings as MapSettings, context$2_MapType as MapType, type context$2_Margin as Margin, type context$2_Media as Media, type context$2_MediaItem as MediaItem, type context$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type context$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type context$2_Metadata as Metadata, type context$2_MultilineAddress as MultilineAddress, context$2_MultilineAddressComponentType as MultilineAddressComponentType, type context$2_MultilineAddressValidation as MultilineAddressValidation, type context$2_NestedForm as NestedForm, type context$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type context$2_NestedFormOverrides as NestedFormOverrides, type context$2_Node as Node, type context$2_NodeDataOneOf as NodeDataOneOf, type context$2_NodeStyle as NodeStyle, context$2_NodeType as NodeType, context$2_NullValue as NullValue, context$2_NumberComponentType as NumberComponentType, type context$2_NumberErrorMessages as NumberErrorMessages, type context$2_NumberInput as NumberInput, context$2_NumberOfColumns as NumberOfColumns, type context$2_NumberType as NumberType, type context$2_ObjectErrorMessages as ObjectErrorMessages, type context$2_ObjectType as ObjectType, type context$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type context$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context$2_Oembed as Oembed, OptInLevel$2 as OptInLevel, type context$2_Option as Option, type context$2_OptionDesign as OptionDesign, type context$2_OptionLayout as OptionLayout, type context$2_OrderedListData as OrderedListData, context$2_Orientation as Orientation, context$2_OverrideEntityType as OverrideEntityType, type context$2_PDFSettings as PDFSettings, type context$2_ParagraphData as ParagraphData, type context$2_Payment as Payment, context$2_PaymentComponentType as PaymentComponentType, type context$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context$2_PaymentType as PaymentType, type context$2_Permissions as Permissions, type context$2_PhoneInfo as PhoneInfo, context$2_PhoneInfoTag as PhoneInfoTag, type context$2_PhoneInput as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type context$2_PlaybackOptions as PlaybackOptions, type context$2_PluginContainerData as PluginContainerData, context$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$2_PluginContainerDataWidth as PluginContainerDataWidth, type context$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$2_Poll as Poll, type context$2_PollData as PollData, type context$2_PollDataLayout as PollDataLayout, type context$2_PollDesign as PollDesign, type context$2_PollLayout as PollLayout, context$2_PollLayoutDirection as PollLayoutDirection, context$2_PollLayoutType as PollLayoutType, type context$2_PollOption as PollOption, type context$2_PostSubmissionTriggers as PostSubmissionTriggers, type context$2_PredefinedValidation as PredefinedValidation, type context$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context$2_PriceType as PriceType, type context$2_Product as Product, type context$2_ProductCheckboxGroup as ProductCheckboxGroup, type context$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context$2_ProductType as ProductType, type context$2_PropertiesType as PropertiesType, context$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context$2_QuantityLimit as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type context$2_RadioGroup as RadioGroup, type context$2_RadioGroupCustomOption as RadioGroupCustomOption, type context$2_RadioGroupOption as RadioGroupOption, type context$2_RatingInput as RatingInput, type context$2_Redirect as Redirect, type context$2_RedirectOptions as RedirectOptions, type context$2_Rel as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, context$2_RequiredIndicator as RequiredIndicator, context$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type context$2_RichContent as RichContent, type context$2_RichText as RichText, type context$2_Section as Section, type context$2_Settings as Settings, type context$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, context$2_Source as Source, context$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context$2_Spoiler as Spoiler, type context$2_SpoilerData as SpoilerData, type context$2_Step as Step, context$2_StringComponentType as StringComponentType, type context$2_StringErrorMessages as StringErrorMessages, type context$2_StringType as StringType, type context$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context$2_Styles as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type context$2_SubmitButton as SubmitButton, type context$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context$2_SubmitSettings as SubmitSettings, type context$2_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context$2_SubmitSuccessAction as SubmitSuccessAction, type context$2_SubscriptionInfo as SubscriptionInfo, type context$2_TableCellData as TableCellData, type context$2_TableData as TableData, context$2_Tag as Tag, context$2_Target as Target, context$2_TextAlignment as TextAlignment, type context$2_TextData as TextData, type context$2_TextInput as TextInput, type context$2_TextNodeStyle as TextNodeStyle, type context$2_TextStyle as TextStyle, type context$2_ThankYouMessage as ThankYouMessage, type context$2_ThankYouMessageOptions as ThankYouMessageOptions, type context$2_Thumbnails as Thumbnails, context$2_ThumbnailsAlignment as ThumbnailsAlignment, type context$2_TimeOptions as TimeOptions, context$2_Type as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, context$2_UploadFileFormat as UploadFileFormat, type context$2_UpsertContact as UpsertContact, context$2_UrlTargetEnumTarget as UrlTargetEnumTarget, type context$2_Validation as Validation, context$2_ValidationFormat as ValidationFormat, type context$2_ValidationValidationOneOf as ValidationValidationOneOf, context$2_VerticalAlignment as VerticalAlignment, type context$2_Video as Video, type context$2_VideoData as VideoData, context$2_ViewMode as ViewMode, context$2_ViewRole as ViewRole, context$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, context$2_Width as Width, context$2_WidthType as WidthType, type context$2_WixFile as WixFile, context$2_WixFileComponentType as WixFileComponentType, type context$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context$2__Array as _Array, type context$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context$2__Boolean as _Boolean, type context$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context$2__Number as _Number, type context$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context$2__Object as _Object, type context$2__ObjectValidationOneOf as _ObjectValidationOneOf, type context$2__String as _String, type context$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
4804
4841
  }
4805
4842
 
4806
4843
  /**
@@ -73,6 +73,8 @@ interface Form {
73
73
  requiredIndicatorProperties?: RequiredIndicatorProperties;
74
74
  /** Settings for actions to be taken after form submission. */
75
75
  submitSettings?: SubmitSettings;
76
+ /** Settings for field groups */
77
+ fieldGroups?: FieldGroup[];
76
78
  }
77
79
  declare enum RequiredIndicator {
78
80
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -2768,9 +2770,11 @@ interface BreakPoint {
2768
2770
  /** Sections of the layout, which allow manage fields */
2769
2771
  sections?: Section[];
2770
2772
  }
2771
- interface ItemLayout {
2773
+ interface ItemLayout extends ItemLayoutItemOneOf {
2772
2774
  /** Form field reference id. */
2773
2775
  fieldId?: string;
2776
+ /** Group info, defining that this item is a group of multiple fields */
2777
+ group?: Group;
2774
2778
  /** Horizontal coordinate in the grid. */
2775
2779
  row?: number | null;
2776
2780
  /** Vertical coordinate in the grid. */
@@ -2780,6 +2784,19 @@ interface ItemLayout {
2780
2784
  /** Width. */
2781
2785
  height?: number | null;
2782
2786
  }
2787
+ /** @oneof */
2788
+ interface ItemLayoutItemOneOf {
2789
+ /** Form field reference id. */
2790
+ fieldId?: string;
2791
+ /** Group info, defining that this item is a group of multiple fields */
2792
+ group?: Group;
2793
+ }
2794
+ interface Group {
2795
+ /** Field group reference id. */
2796
+ groupId?: string;
2797
+ /** Description of layouts for items. */
2798
+ items?: ItemLayout[];
2799
+ }
2783
2800
  interface Margin {
2784
2801
  /** Horizontal value. */
2785
2802
  horizontal?: number | null;
@@ -2921,10 +2938,10 @@ declare enum SubmitSuccessAction {
2921
2938
  REDIRECT = "REDIRECT"
2922
2939
  }
2923
2940
  interface ThankYouMessageOptions {
2924
- /** The message shown after form submission. */
2925
- messageContent?: RichContent;
2926
2941
  /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */
2927
2942
  durationInSeconds?: number | null;
2943
+ /** The message shown after form submission. */
2944
+ richContent?: RichContent;
2928
2945
  }
2929
2946
  interface RedirectOptions {
2930
2947
  /** The URL to which the user should be redirected after a successful form submission. */
@@ -2932,6 +2949,12 @@ interface RedirectOptions {
2932
2949
  /** How the URL should be opened. */
2933
2950
  target?: UrlTargetEnumTarget;
2934
2951
  }
2952
+ interface FieldGroup {
2953
+ /** Id of group, on layout */
2954
+ _id?: string;
2955
+ /** Label of group */
2956
+ label?: string | null;
2957
+ }
2935
2958
  interface PiiFieldsUpdated {
2936
2959
  /** Collection of fields which are marked as PII */
2937
2960
  piiFields?: string[];
@@ -3940,8 +3963,13 @@ interface FormFieldV2NonNullableFields {
3940
3963
  hidden: boolean;
3941
3964
  fieldType: FieldType;
3942
3965
  }
3966
+ interface GroupNonNullableFields {
3967
+ groupId: string;
3968
+ items: ItemLayoutNonNullableFields[];
3969
+ }
3943
3970
  interface ItemLayoutNonNullableFields {
3944
3971
  fieldId: string;
3972
+ group?: GroupNonNullableFields;
3945
3973
  }
3946
3974
  interface SectionNonNullableFields {
3947
3975
  _id: string;
@@ -3986,7 +4014,7 @@ interface RequiredIndicatorPropertiesNonNullableFields {
3986
4014
  requiredIndicatorPlacement: RequiredIndicatorPlacement;
3987
4015
  }
3988
4016
  interface ThankYouMessageOptionsNonNullableFields {
3989
- messageContent?: RichContentNonNullableFields;
4017
+ richContent?: RichContentNonNullableFields;
3990
4018
  }
3991
4019
  interface RedirectOptionsNonNullableFields {
3992
4020
  target: UrlTargetEnumTarget;
@@ -3996,6 +4024,9 @@ interface SubmitSettingsNonNullableFields {
3996
4024
  redirectOptions?: RedirectOptionsNonNullableFields;
3997
4025
  submitSuccessAction: SubmitSuccessAction;
3998
4026
  }
4027
+ interface FieldGroupNonNullableFields {
4028
+ _id: string;
4029
+ }
3999
4030
  interface FormNonNullableFields {
4000
4031
  fields: FormFieldNonNullableFields[];
4001
4032
  fieldsV2: FormFieldV2NonNullableFields[];
@@ -4011,6 +4042,7 @@ interface FormNonNullableFields {
4011
4042
  spamFilterProtectionLevel: SpamFilterProtectionLevel;
4012
4043
  requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
4013
4044
  submitSettings?: SubmitSettingsNonNullableFields;
4045
+ fieldGroups: FieldGroupNonNullableFields[];
4014
4046
  }
4015
4047
  interface CreateFormResponseNonNullableFields {
4016
4048
  form?: FormNonNullableFields;
@@ -4162,6 +4194,8 @@ interface UpdateForm {
4162
4194
  requiredIndicatorProperties?: RequiredIndicatorProperties;
4163
4195
  /** Settings for actions to be taken after form submission. */
4164
4196
  submitSettings?: SubmitSettings;
4197
+ /** Settings for field groups */
4198
+ fieldGroups?: FieldGroup[];
4165
4199
  }
4166
4200
  interface DeleteFormOptions {
4167
4201
  /**
@@ -4469,6 +4503,7 @@ type index_d$2_EmailInfoTag = EmailInfoTag;
4469
4503
  declare const index_d$2_EmailInfoTag: typeof EmailInfoTag;
4470
4504
  type index_d$2_EmbedData = EmbedData;
4471
4505
  type index_d$2_EventData = EventData;
4506
+ type index_d$2_FieldGroup = FieldGroup;
4472
4507
  type index_d$2_FieldOverrides = FieldOverrides;
4473
4508
  type index_d$2_FieldType = FieldType;
4474
4509
  declare const index_d$2_FieldType: typeof FieldType;
@@ -4517,6 +4552,7 @@ type index_d$2_GetFormRequest = GetFormRequest;
4517
4552
  type index_d$2_GetFormResponse = GetFormResponse;
4518
4553
  type index_d$2_GetFormResponseNonNullableFields = GetFormResponseNonNullableFields;
4519
4554
  type index_d$2_Gradient = Gradient;
4555
+ type index_d$2_Group = Group;
4520
4556
  type index_d$2_HTMLData = HTMLData;
4521
4557
  type index_d$2_HTMLDataDataOneOf = HTMLDataDataOneOf;
4522
4558
  type index_d$2_Header = Header;
@@ -4548,6 +4584,7 @@ type index_d$2_IntegerType = IntegerType;
4548
4584
  type index_d$2_Item = Item;
4549
4585
  type index_d$2_ItemDataOneOf = ItemDataOneOf;
4550
4586
  type index_d$2_ItemLayout = ItemLayout;
4587
+ type index_d$2_ItemLayoutItemOneOf = ItemLayoutItemOneOf;
4551
4588
  type index_d$2_ItemStyle = ItemStyle;
4552
4589
  type index_d$2_ItemType = ItemType;
4553
4590
  declare const index_d$2_ItemType: typeof ItemType;
@@ -4800,7 +4837,7 @@ declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
4800
4837
  declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
4801
4838
  declare const index_d$2_updateForm: typeof updateForm;
4802
4839
  declare namespace index_d$2 {
4803
- export { type ActionEvent$2 as ActionEvent, type index_d$2_AddressInfo as AddressInfo, type index_d$2_AddressLine2 as AddressLine2, index_d$2_Alignment as Alignment, type index_d$2_AnchorData as AnchorData, type index_d$2_AppEmbedData as AppEmbedData, type index_d$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type index_d$2_ArrayErrorMessages as ArrayErrorMessages, type index_d$2_ArrayItems as ArrayItems, type index_d$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d$2_ArrayType as ArrayType, type index_d$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d$2_AudioData as AudioData, type index_d$2_Background as Background, type index_d$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$2_BackgroundType as BackgroundType, type index_d$2_BlockquoteData as BlockquoteData, type index_d$2_BookingData as BookingData, index_d$2_BooleanComponentType as BooleanComponentType, type index_d$2_BooleanErrorMessages as BooleanErrorMessages, type index_d$2_BooleanType as BooleanType, type index_d$2_Border as Border, type index_d$2_BorderColors as BorderColors, type index_d$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type index_d$2_BulletedListData as BulletedListData, type index_d$2_ButtonData as ButtonData, index_d$2_ButtonDataType as ButtonDataType, type index_d$2_CellStyle as CellStyle, type index_d$2_Checkbox as Checkbox, type index_d$2_CheckboxGroup as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type index_d$2_CodeBlockData as CodeBlockData, type index_d$2_CollapsibleListData as CollapsibleListData, type index_d$2_ColorData as ColorData, type index_d$2_Colors as Colors, type index_d$2_CommonCustomOption as CommonCustomOption, index_d$2_ComponentType as ComponentType, index_d$2_ContactField as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, index_d$2_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$2_CustomFieldInfo as CustomFieldInfo, type index_d$2_CustomOption as CustomOption, type index_d$2_DataExtensionsDetails as DataExtensionsDetails, index_d$2_DateFormatPart as DateFormatPart, type index_d$2_DateOptions as DateOptions, type index_d$2_DatePickerOptions as DatePickerOptions, type index_d$2_DateTimeConstraints as DateTimeConstraints, type index_d$2_DateTimeInput as DateTimeInput, type index_d$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d$2_DateTimeInputType as DateTimeInputType, type index_d$2_DateTimeOptions as DateTimeOptions, type index_d$2_Decoration as Decoration, type index_d$2_DecorationDataOneOf as DecorationDataOneOf, index_d$2_DecorationType as DecorationType, type index_d$2_DefaultCountryConfig as DefaultCountryConfig, type index_d$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type index_d$2_Design as Design, type index_d$2_Dimensions as Dimensions, index_d$2_Direction as Direction, type index_d$2_DisplayField as DisplayField, type index_d$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d$2_DividerData as DividerData, type index_d$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_DonationInput as DonationInput, type index_d$2_DonationInputOption as DonationInputOption, type index_d$2_Dropdown as Dropdown, type index_d$2_DropdownCustomOption as DropdownCustomOption, type index_d$2_DropdownOption as DropdownOption, type index_d$2_DynamicPriceOptions as DynamicPriceOptions, type index_d$2_EmailInfo as EmailInfo, index_d$2_EmailInfoTag as EmailInfoTag, type index_d$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type index_d$2_FieldOverrides as FieldOverrides, index_d$2_FieldType as FieldType, type index_d$2_FieldsOverrides as FieldsOverrides, type index_d$2_FieldsSettings as FieldsSettings, index_d$2_Fieldset as Fieldset, type index_d$2_FileData as FileData, type index_d$2_FileSource as FileSource, type index_d$2_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$2_FileUpload as FileUpload, index_d$2_FirstDayOfWeek as FirstDayOfWeek, type index_d$2_FixedPriceOptions as FixedPriceOptions, type index_d$2_FontSizeData as FontSizeData, index_d$2_FontType as FontType, type index_d$2_Form as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type index_d$2_FormField as FormField, type index_d$2_FormFieldContactInfo as FormFieldContactInfo, type index_d$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d$2_FormFieldV2 as FormFieldV2, type index_d$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d$2_FormLayout as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type index_d$2_FormOverride as FormOverride, type index_d$2_FormProperties as FormProperties, type index_d$2_FormRule as FormRule, index_d$2_Format as Format, index_d$2_FormatEnumFormat as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_GIF as GIF, type index_d$2_GIFData as GIFData, type index_d$2_GalleryData as GalleryData, type index_d$2_GalleryOptions as GalleryOptions, type index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type index_d$2_Gradient as Gradient, type index_d$2_HTMLData as HTMLData, type index_d$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$2_Header as Header, type index_d$2_HeadingData as HeadingData, type index_d$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$2_Image as Image, type index_d$2_ImageData as ImageData, index_d$2_InitialExpandedItems as InitialExpandedItems, type index_d$2_InputField as InputField, type index_d$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d$2_InputFieldArrayType as InputFieldArrayType, type index_d$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d$2_InputFieldBooleanType as InputFieldBooleanType, type index_d$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d$2_InputFieldIntegerType as InputFieldIntegerType, type index_d$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d$2_InputFieldNumberType as InputFieldNumberType, type index_d$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d$2_InputFieldObjectType as InputFieldObjectType, type index_d$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d$2_InputFieldStringType as InputFieldStringType, type index_d$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d$2_InputType as InputType, type index_d$2_IntegerType as IntegerType, type index_d$2_Item as Item, type index_d$2_ItemDataOneOf as ItemDataOneOf, type index_d$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type index_d$2_ItemStyle as ItemStyle, index_d$2_ItemType as ItemType, index_d$2_Kind as Kind, type index_d$2_Layout as Layout, index_d$2_LayoutType as LayoutType, type index_d$2_LimitationRule as LimitationRule, index_d$2_LineStyle as LineStyle, type index_d$2_Link as Link, type index_d$2_LinkData as LinkData, type index_d$2_LinkDataOneOf as LinkDataOneOf, type index_d$2_LinkPreviewData as LinkPreviewData, index_d$2_LinkTarget as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type index_d$2_ListValue as ListValue, type index_d$2_MapData as MapData, type index_d$2_MapSettings as MapSettings, index_d$2_MapType as MapType, type index_d$2_Margin as Margin, type index_d$2_Media as Media, type index_d$2_MediaItem as MediaItem, type index_d$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type index_d$2_Metadata as Metadata, type index_d$2_MultilineAddress as MultilineAddress, index_d$2_MultilineAddressComponentType as MultilineAddressComponentType, type index_d$2_MultilineAddressValidation as MultilineAddressValidation, type index_d$2_NestedForm as NestedForm, type index_d$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d$2_NestedFormOverrides as NestedFormOverrides, type index_d$2_Node as Node, type index_d$2_NodeDataOneOf as NodeDataOneOf, type index_d$2_NodeStyle as NodeStyle, index_d$2_NodeType as NodeType, index_d$2_NullValue as NullValue, index_d$2_NumberComponentType as NumberComponentType, type index_d$2_NumberErrorMessages as NumberErrorMessages, type index_d$2_NumberInput as NumberInput, index_d$2_NumberOfColumns as NumberOfColumns, type index_d$2_NumberType as NumberType, type index_d$2_ObjectErrorMessages as ObjectErrorMessages, type index_d$2_ObjectType as ObjectType, type index_d$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d$2_Oembed as Oembed, OptInLevel$2 as OptInLevel, type index_d$2_Option as Option, type index_d$2_OptionDesign as OptionDesign, type index_d$2_OptionLayout as OptionLayout, type index_d$2_OrderedListData as OrderedListData, index_d$2_Orientation as Orientation, index_d$2_OverrideEntityType as OverrideEntityType, type index_d$2_PDFSettings as PDFSettings, type index_d$2_ParagraphData as ParagraphData, type index_d$2_Payment as Payment, index_d$2_PaymentComponentType as PaymentComponentType, type index_d$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d$2_PaymentType as PaymentType, type index_d$2_Permissions as Permissions, type index_d$2_PhoneInfo as PhoneInfo, index_d$2_PhoneInfoTag as PhoneInfoTag, type index_d$2_PhoneInput as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type index_d$2_PlaybackOptions as PlaybackOptions, type index_d$2_PluginContainerData as PluginContainerData, index_d$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$2_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$2_Poll as Poll, type index_d$2_PollData as PollData, type index_d$2_PollDataLayout as PollDataLayout, type index_d$2_PollDesign as PollDesign, type index_d$2_PollLayout as PollLayout, index_d$2_PollLayoutDirection as PollLayoutDirection, index_d$2_PollLayoutType as PollLayoutType, type index_d$2_PollOption as PollOption, type index_d$2_PostSubmissionTriggers as PostSubmissionTriggers, type index_d$2_PredefinedValidation as PredefinedValidation, type index_d$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d$2_PriceType as PriceType, type index_d$2_Product as Product, type index_d$2_ProductCheckboxGroup as ProductCheckboxGroup, type index_d$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d$2_ProductType as ProductType, type index_d$2_PropertiesType as PropertiesType, index_d$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d$2_QuantityLimit as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type index_d$2_RadioGroup as RadioGroup, type index_d$2_RadioGroupCustomOption as RadioGroupCustomOption, type index_d$2_RadioGroupOption as RadioGroupOption, type index_d$2_RatingInput as RatingInput, type index_d$2_Redirect as Redirect, type index_d$2_RedirectOptions as RedirectOptions, type index_d$2_Rel as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, index_d$2_RequiredIndicator as RequiredIndicator, index_d$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type index_d$2_RichContent as RichContent, type index_d$2_RichText as RichText, type index_d$2_Section as Section, type index_d$2_Settings as Settings, type index_d$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$2_Source as Source, index_d$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d$2_Spoiler as Spoiler, type index_d$2_SpoilerData as SpoilerData, type index_d$2_Step as Step, index_d$2_StringComponentType as StringComponentType, type index_d$2_StringErrorMessages as StringErrorMessages, type index_d$2_StringType as StringType, type index_d$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d$2_Styles as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type index_d$2_SubmitButton as SubmitButton, type index_d$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d$2_SubmitSettings as SubmitSettings, type index_d$2_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d$2_SubmitSuccessAction as SubmitSuccessAction, type index_d$2_SubscriptionInfo as SubscriptionInfo, type index_d$2_TableCellData as TableCellData, type index_d$2_TableData as TableData, index_d$2_Tag as Tag, index_d$2_Target as Target, index_d$2_TextAlignment as TextAlignment, type index_d$2_TextData as TextData, type index_d$2_TextInput as TextInput, type index_d$2_TextNodeStyle as TextNodeStyle, type index_d$2_TextStyle as TextStyle, type index_d$2_ThankYouMessage as ThankYouMessage, type index_d$2_ThankYouMessageOptions as ThankYouMessageOptions, type index_d$2_Thumbnails as Thumbnails, index_d$2_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$2_TimeOptions as TimeOptions, index_d$2_Type as Type, type index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, index_d$2_UploadFileFormat as UploadFileFormat, type index_d$2_UpsertContact as UpsertContact, index_d$2_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d$2_Validation as Validation, index_d$2_ValidationFormat as ValidationFormat, type index_d$2_ValidationValidationOneOf as ValidationValidationOneOf, index_d$2_VerticalAlignment as VerticalAlignment, type index_d$2_Video as Video, type index_d$2_VideoData as VideoData, index_d$2_ViewMode as ViewMode, index_d$2_ViewRole as ViewRole, index_d$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, index_d$2_Width as Width, index_d$2_WidthType as WidthType, type index_d$2_WixFile as WixFile, index_d$2_WixFileComponentType as WixFileComponentType, type index_d$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d$2__Array as _Array, type index_d$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d$2__Boolean as _Boolean, type index_d$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d$2__Number as _Number, type index_d$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d$2__Object as _Object, type index_d$2__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d$2__String as _String, type index_d$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, index_d$2_updateExtendedFields as updateExtendedFields, index_d$2_updateForm as updateForm };
4840
+ export { type ActionEvent$2 as ActionEvent, type index_d$2_AddressInfo as AddressInfo, type index_d$2_AddressLine2 as AddressLine2, index_d$2_Alignment as Alignment, type index_d$2_AnchorData as AnchorData, type index_d$2_AppEmbedData as AppEmbedData, type index_d$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type index_d$2_ArrayErrorMessages as ArrayErrorMessages, type index_d$2_ArrayItems as ArrayItems, type index_d$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d$2_ArrayType as ArrayType, type index_d$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d$2_AudioData as AudioData, type index_d$2_Background as Background, type index_d$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$2_BackgroundType as BackgroundType, type index_d$2_BlockquoteData as BlockquoteData, type index_d$2_BookingData as BookingData, index_d$2_BooleanComponentType as BooleanComponentType, type index_d$2_BooleanErrorMessages as BooleanErrorMessages, type index_d$2_BooleanType as BooleanType, type index_d$2_Border as Border, type index_d$2_BorderColors as BorderColors, type index_d$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type index_d$2_BulletedListData as BulletedListData, type index_d$2_ButtonData as ButtonData, index_d$2_ButtonDataType as ButtonDataType, type index_d$2_CellStyle as CellStyle, type index_d$2_Checkbox as Checkbox, type index_d$2_CheckboxGroup as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type index_d$2_CodeBlockData as CodeBlockData, type index_d$2_CollapsibleListData as CollapsibleListData, type index_d$2_ColorData as ColorData, type index_d$2_Colors as Colors, type index_d$2_CommonCustomOption as CommonCustomOption, index_d$2_ComponentType as ComponentType, index_d$2_ContactField as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, index_d$2_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$2_CustomFieldInfo as CustomFieldInfo, type index_d$2_CustomOption as CustomOption, type index_d$2_DataExtensionsDetails as DataExtensionsDetails, index_d$2_DateFormatPart as DateFormatPart, type index_d$2_DateOptions as DateOptions, type index_d$2_DatePickerOptions as DatePickerOptions, type index_d$2_DateTimeConstraints as DateTimeConstraints, type index_d$2_DateTimeInput as DateTimeInput, type index_d$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d$2_DateTimeInputType as DateTimeInputType, type index_d$2_DateTimeOptions as DateTimeOptions, type index_d$2_Decoration as Decoration, type index_d$2_DecorationDataOneOf as DecorationDataOneOf, index_d$2_DecorationType as DecorationType, type index_d$2_DefaultCountryConfig as DefaultCountryConfig, type index_d$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type index_d$2_Design as Design, type index_d$2_Dimensions as Dimensions, index_d$2_Direction as Direction, type index_d$2_DisplayField as DisplayField, type index_d$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d$2_DividerData as DividerData, type index_d$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_DonationInput as DonationInput, type index_d$2_DonationInputOption as DonationInputOption, type index_d$2_Dropdown as Dropdown, type index_d$2_DropdownCustomOption as DropdownCustomOption, type index_d$2_DropdownOption as DropdownOption, type index_d$2_DynamicPriceOptions as DynamicPriceOptions, type index_d$2_EmailInfo as EmailInfo, index_d$2_EmailInfoTag as EmailInfoTag, type index_d$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type index_d$2_FieldGroup as FieldGroup, type index_d$2_FieldOverrides as FieldOverrides, index_d$2_FieldType as FieldType, type index_d$2_FieldsOverrides as FieldsOverrides, type index_d$2_FieldsSettings as FieldsSettings, index_d$2_Fieldset as Fieldset, type index_d$2_FileData as FileData, type index_d$2_FileSource as FileSource, type index_d$2_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$2_FileUpload as FileUpload, index_d$2_FirstDayOfWeek as FirstDayOfWeek, type index_d$2_FixedPriceOptions as FixedPriceOptions, type index_d$2_FontSizeData as FontSizeData, index_d$2_FontType as FontType, type index_d$2_Form as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type index_d$2_FormField as FormField, type index_d$2_FormFieldContactInfo as FormFieldContactInfo, type index_d$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d$2_FormFieldV2 as FormFieldV2, type index_d$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d$2_FormLayout as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type index_d$2_FormOverride as FormOverride, type index_d$2_FormProperties as FormProperties, type index_d$2_FormRule as FormRule, index_d$2_Format as Format, index_d$2_FormatEnumFormat as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_GIF as GIF, type index_d$2_GIFData as GIFData, type index_d$2_GalleryData as GalleryData, type index_d$2_GalleryOptions as GalleryOptions, type index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type index_d$2_Gradient as Gradient, type index_d$2_Group as Group, type index_d$2_HTMLData as HTMLData, type index_d$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$2_Header as Header, type index_d$2_HeadingData as HeadingData, type index_d$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$2_Image as Image, type index_d$2_ImageData as ImageData, index_d$2_InitialExpandedItems as InitialExpandedItems, type index_d$2_InputField as InputField, type index_d$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d$2_InputFieldArrayType as InputFieldArrayType, type index_d$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d$2_InputFieldBooleanType as InputFieldBooleanType, type index_d$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d$2_InputFieldIntegerType as InputFieldIntegerType, type index_d$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d$2_InputFieldNumberType as InputFieldNumberType, type index_d$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d$2_InputFieldObjectType as InputFieldObjectType, type index_d$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d$2_InputFieldStringType as InputFieldStringType, type index_d$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d$2_InputType as InputType, type index_d$2_IntegerType as IntegerType, type index_d$2_Item as Item, type index_d$2_ItemDataOneOf as ItemDataOneOf, type index_d$2_ItemLayout as ItemLayout, type index_d$2_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type index_d$2_ItemStyle as ItemStyle, index_d$2_ItemType as ItemType, index_d$2_Kind as Kind, type index_d$2_Layout as Layout, index_d$2_LayoutType as LayoutType, type index_d$2_LimitationRule as LimitationRule, index_d$2_LineStyle as LineStyle, type index_d$2_Link as Link, type index_d$2_LinkData as LinkData, type index_d$2_LinkDataOneOf as LinkDataOneOf, type index_d$2_LinkPreviewData as LinkPreviewData, index_d$2_LinkTarget as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type index_d$2_ListValue as ListValue, type index_d$2_MapData as MapData, type index_d$2_MapSettings as MapSettings, index_d$2_MapType as MapType, type index_d$2_Margin as Margin, type index_d$2_Media as Media, type index_d$2_MediaItem as MediaItem, type index_d$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type index_d$2_Metadata as Metadata, type index_d$2_MultilineAddress as MultilineAddress, index_d$2_MultilineAddressComponentType as MultilineAddressComponentType, type index_d$2_MultilineAddressValidation as MultilineAddressValidation, type index_d$2_NestedForm as NestedForm, type index_d$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d$2_NestedFormOverrides as NestedFormOverrides, type index_d$2_Node as Node, type index_d$2_NodeDataOneOf as NodeDataOneOf, type index_d$2_NodeStyle as NodeStyle, index_d$2_NodeType as NodeType, index_d$2_NullValue as NullValue, index_d$2_NumberComponentType as NumberComponentType, type index_d$2_NumberErrorMessages as NumberErrorMessages, type index_d$2_NumberInput as NumberInput, index_d$2_NumberOfColumns as NumberOfColumns, type index_d$2_NumberType as NumberType, type index_d$2_ObjectErrorMessages as ObjectErrorMessages, type index_d$2_ObjectType as ObjectType, type index_d$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d$2_Oembed as Oembed, OptInLevel$2 as OptInLevel, type index_d$2_Option as Option, type index_d$2_OptionDesign as OptionDesign, type index_d$2_OptionLayout as OptionLayout, type index_d$2_OrderedListData as OrderedListData, index_d$2_Orientation as Orientation, index_d$2_OverrideEntityType as OverrideEntityType, type index_d$2_PDFSettings as PDFSettings, type index_d$2_ParagraphData as ParagraphData, type index_d$2_Payment as Payment, index_d$2_PaymentComponentType as PaymentComponentType, type index_d$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d$2_PaymentType as PaymentType, type index_d$2_Permissions as Permissions, type index_d$2_PhoneInfo as PhoneInfo, index_d$2_PhoneInfoTag as PhoneInfoTag, type index_d$2_PhoneInput as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type index_d$2_PlaybackOptions as PlaybackOptions, type index_d$2_PluginContainerData as PluginContainerData, index_d$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$2_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$2_Poll as Poll, type index_d$2_PollData as PollData, type index_d$2_PollDataLayout as PollDataLayout, type index_d$2_PollDesign as PollDesign, type index_d$2_PollLayout as PollLayout, index_d$2_PollLayoutDirection as PollLayoutDirection, index_d$2_PollLayoutType as PollLayoutType, type index_d$2_PollOption as PollOption, type index_d$2_PostSubmissionTriggers as PostSubmissionTriggers, type index_d$2_PredefinedValidation as PredefinedValidation, type index_d$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d$2_PriceType as PriceType, type index_d$2_Product as Product, type index_d$2_ProductCheckboxGroup as ProductCheckboxGroup, type index_d$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d$2_ProductType as ProductType, type index_d$2_PropertiesType as PropertiesType, index_d$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d$2_QuantityLimit as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type index_d$2_RadioGroup as RadioGroup, type index_d$2_RadioGroupCustomOption as RadioGroupCustomOption, type index_d$2_RadioGroupOption as RadioGroupOption, type index_d$2_RatingInput as RatingInput, type index_d$2_Redirect as Redirect, type index_d$2_RedirectOptions as RedirectOptions, type index_d$2_Rel as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, index_d$2_RequiredIndicator as RequiredIndicator, index_d$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type index_d$2_RichContent as RichContent, type index_d$2_RichText as RichText, type index_d$2_Section as Section, type index_d$2_Settings as Settings, type index_d$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$2_Source as Source, index_d$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d$2_Spoiler as Spoiler, type index_d$2_SpoilerData as SpoilerData, type index_d$2_Step as Step, index_d$2_StringComponentType as StringComponentType, type index_d$2_StringErrorMessages as StringErrorMessages, type index_d$2_StringType as StringType, type index_d$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d$2_Styles as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type index_d$2_SubmitButton as SubmitButton, type index_d$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d$2_SubmitSettings as SubmitSettings, type index_d$2_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d$2_SubmitSuccessAction as SubmitSuccessAction, type index_d$2_SubscriptionInfo as SubscriptionInfo, type index_d$2_TableCellData as TableCellData, type index_d$2_TableData as TableData, index_d$2_Tag as Tag, index_d$2_Target as Target, index_d$2_TextAlignment as TextAlignment, type index_d$2_TextData as TextData, type index_d$2_TextInput as TextInput, type index_d$2_TextNodeStyle as TextNodeStyle, type index_d$2_TextStyle as TextStyle, type index_d$2_ThankYouMessage as ThankYouMessage, type index_d$2_ThankYouMessageOptions as ThankYouMessageOptions, type index_d$2_Thumbnails as Thumbnails, index_d$2_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$2_TimeOptions as TimeOptions, index_d$2_Type as Type, type index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, index_d$2_UploadFileFormat as UploadFileFormat, type index_d$2_UpsertContact as UpsertContact, index_d$2_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d$2_Validation as Validation, index_d$2_ValidationFormat as ValidationFormat, type index_d$2_ValidationValidationOneOf as ValidationValidationOneOf, index_d$2_VerticalAlignment as VerticalAlignment, type index_d$2_Video as Video, type index_d$2_VideoData as VideoData, index_d$2_ViewMode as ViewMode, index_d$2_ViewRole as ViewRole, index_d$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, index_d$2_Width as Width, index_d$2_WidthType as WidthType, type index_d$2_WixFile as WixFile, index_d$2_WixFileComponentType as WixFileComponentType, type index_d$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d$2__Array as _Array, type index_d$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d$2__Boolean as _Boolean, type index_d$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d$2__Number as _Number, type index_d$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d$2__Object as _Object, type index_d$2__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d$2__String as _String, type index_d$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, index_d$2_updateExtendedFields as updateExtendedFields, index_d$2_updateForm as updateForm };
4804
4841
  }
4805
4842
 
4806
4843
  /**
@@ -73,6 +73,8 @@ interface Form$1 {
73
73
  requiredIndicatorProperties?: RequiredIndicatorProperties$1;
74
74
  /** Settings for actions to be taken after form submission. */
75
75
  submitSettings?: SubmitSettings$1;
76
+ /** Settings for field groups */
77
+ fieldGroups?: FieldGroup$1[];
76
78
  }
77
79
  declare enum RequiredIndicator$1 {
78
80
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -2762,9 +2764,11 @@ interface BreakPoint$1 {
2762
2764
  /** Sections of the layout, which allow manage fields */
2763
2765
  sections?: Section$1[];
2764
2766
  }
2765
- interface ItemLayout$1 {
2767
+ interface ItemLayout$1 extends ItemLayoutItemOneOf$1 {
2766
2768
  /** Form field reference id. */
2767
2769
  fieldId?: string;
2770
+ /** Group info, defining that this item is a group of multiple fields */
2771
+ group?: Group$1;
2768
2772
  /** Horizontal coordinate in the grid. */
2769
2773
  row?: number | null;
2770
2774
  /** Vertical coordinate in the grid. */
@@ -2774,6 +2778,19 @@ interface ItemLayout$1 {
2774
2778
  /** Width. */
2775
2779
  height?: number | null;
2776
2780
  }
2781
+ /** @oneof */
2782
+ interface ItemLayoutItemOneOf$1 {
2783
+ /** Form field reference id. */
2784
+ fieldId?: string;
2785
+ /** Group info, defining that this item is a group of multiple fields */
2786
+ group?: Group$1;
2787
+ }
2788
+ interface Group$1 {
2789
+ /** Field group reference id. */
2790
+ groupId?: string;
2791
+ /** Description of layouts for items. */
2792
+ items?: ItemLayout$1[];
2793
+ }
2777
2794
  interface Margin$1 {
2778
2795
  /** Horizontal value. */
2779
2796
  horizontal?: number | null;
@@ -2909,10 +2926,10 @@ declare enum SubmitSuccessAction$1 {
2909
2926
  REDIRECT = "REDIRECT"
2910
2927
  }
2911
2928
  interface ThankYouMessageOptions$1 {
2912
- /** The message shown after form submission. */
2913
- messageContent?: RichContent$1;
2914
2929
  /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */
2915
2930
  durationInSeconds?: number | null;
2931
+ /** The message shown after form submission. */
2932
+ richContent?: RichContent$1;
2916
2933
  }
2917
2934
  interface RedirectOptions$1 {
2918
2935
  /** The URL to which the user should be redirected after a successful form submission. */
@@ -2920,6 +2937,12 @@ interface RedirectOptions$1 {
2920
2937
  /** How the URL should be opened. */
2921
2938
  target?: UrlTargetEnumTarget$1;
2922
2939
  }
2940
+ interface FieldGroup$1 {
2941
+ /** Id of group, on layout */
2942
+ id?: string;
2943
+ /** Label of group */
2944
+ label?: string | null;
2945
+ }
2923
2946
  interface CreateFormRequest$1 {
2924
2947
  /** Form to be created. */
2925
2948
  form: Form$1;
@@ -3798,8 +3821,13 @@ interface FormFieldV2NonNullableFields$1 {
3798
3821
  hidden: boolean;
3799
3822
  fieldType: FieldType$1;
3800
3823
  }
3824
+ interface GroupNonNullableFields$1 {
3825
+ groupId: string;
3826
+ items: ItemLayoutNonNullableFields$1[];
3827
+ }
3801
3828
  interface ItemLayoutNonNullableFields$1 {
3802
3829
  fieldId: string;
3830
+ group?: GroupNonNullableFields$1;
3803
3831
  }
3804
3832
  interface SectionNonNullableFields$1 {
3805
3833
  id: string;
@@ -3844,7 +3872,7 @@ interface RequiredIndicatorPropertiesNonNullableFields$1 {
3844
3872
  requiredIndicatorPlacement: RequiredIndicatorPlacement$1;
3845
3873
  }
3846
3874
  interface ThankYouMessageOptionsNonNullableFields$1 {
3847
- messageContent?: RichContentNonNullableFields$1;
3875
+ richContent?: RichContentNonNullableFields$1;
3848
3876
  }
3849
3877
  interface RedirectOptionsNonNullableFields$1 {
3850
3878
  target: UrlTargetEnumTarget$1;
@@ -3854,6 +3882,9 @@ interface SubmitSettingsNonNullableFields$1 {
3854
3882
  redirectOptions?: RedirectOptionsNonNullableFields$1;
3855
3883
  submitSuccessAction: SubmitSuccessAction$1;
3856
3884
  }
3885
+ interface FieldGroupNonNullableFields$1 {
3886
+ id: string;
3887
+ }
3857
3888
  interface FormNonNullableFields$1 {
3858
3889
  fields: FormFieldNonNullableFields$1[];
3859
3890
  fieldsV2: FormFieldV2NonNullableFields$1[];
@@ -3869,6 +3900,7 @@ interface FormNonNullableFields$1 {
3869
3900
  spamFilterProtectionLevel: SpamFilterProtectionLevel$1;
3870
3901
  requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields$1;
3871
3902
  submitSettings?: SubmitSettingsNonNullableFields$1;
3903
+ fieldGroups: FieldGroupNonNullableFields$1[];
3872
3904
  }
3873
3905
  interface CreateFormResponseNonNullableFields$1 {
3874
3906
  form?: FormNonNullableFields$1;
@@ -4007,6 +4039,8 @@ interface Form {
4007
4039
  requiredIndicatorProperties?: RequiredIndicatorProperties;
4008
4040
  /** Settings for actions to be taken after form submission. */
4009
4041
  submitSettings?: SubmitSettings;
4042
+ /** Settings for field groups */
4043
+ fieldGroups?: FieldGroup[];
4010
4044
  }
4011
4045
  declare enum RequiredIndicator {
4012
4046
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -6673,9 +6707,11 @@ interface BreakPoint {
6673
6707
  /** Sections of the layout, which allow manage fields */
6674
6708
  sections?: Section[];
6675
6709
  }
6676
- interface ItemLayout {
6710
+ interface ItemLayout extends ItemLayoutItemOneOf {
6677
6711
  /** Form field reference id. */
6678
6712
  fieldId?: string;
6713
+ /** Group info, defining that this item is a group of multiple fields */
6714
+ group?: Group;
6679
6715
  /** Horizontal coordinate in the grid. */
6680
6716
  row?: number | null;
6681
6717
  /** Vertical coordinate in the grid. */
@@ -6685,6 +6721,19 @@ interface ItemLayout {
6685
6721
  /** Width. */
6686
6722
  height?: number | null;
6687
6723
  }
6724
+ /** @oneof */
6725
+ interface ItemLayoutItemOneOf {
6726
+ /** Form field reference id. */
6727
+ fieldId?: string;
6728
+ /** Group info, defining that this item is a group of multiple fields */
6729
+ group?: Group;
6730
+ }
6731
+ interface Group {
6732
+ /** Field group reference id. */
6733
+ groupId?: string;
6734
+ /** Description of layouts for items. */
6735
+ items?: ItemLayout[];
6736
+ }
6688
6737
  interface Margin {
6689
6738
  /** Horizontal value. */
6690
6739
  horizontal?: number | null;
@@ -6820,10 +6869,10 @@ declare enum SubmitSuccessAction {
6820
6869
  REDIRECT = "REDIRECT"
6821
6870
  }
6822
6871
  interface ThankYouMessageOptions {
6823
- /** The message shown after form submission. */
6824
- messageContent?: RichContent;
6825
6872
  /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */
6826
6873
  durationInSeconds?: number | null;
6874
+ /** The message shown after form submission. */
6875
+ richContent?: RichContent;
6827
6876
  }
6828
6877
  interface RedirectOptions {
6829
6878
  /** The URL to which the user should be redirected after a successful form submission. */
@@ -6831,6 +6880,12 @@ interface RedirectOptions {
6831
6880
  /** How the URL should be opened. */
6832
6881
  target?: UrlTargetEnumTarget;
6833
6882
  }
6883
+ interface FieldGroup {
6884
+ /** Id of group, on layout */
6885
+ _id?: string;
6886
+ /** Label of group */
6887
+ label?: string | null;
6888
+ }
6834
6889
  interface CreateFormRequest {
6835
6890
  /** Form to be created. */
6836
6891
  form: Form;
@@ -7703,8 +7758,13 @@ interface FormFieldV2NonNullableFields {
7703
7758
  hidden: boolean;
7704
7759
  fieldType: FieldType;
7705
7760
  }
7761
+ interface GroupNonNullableFields {
7762
+ groupId: string;
7763
+ items: ItemLayoutNonNullableFields[];
7764
+ }
7706
7765
  interface ItemLayoutNonNullableFields {
7707
7766
  fieldId: string;
7767
+ group?: GroupNonNullableFields;
7708
7768
  }
7709
7769
  interface SectionNonNullableFields {
7710
7770
  _id: string;
@@ -7749,7 +7809,7 @@ interface RequiredIndicatorPropertiesNonNullableFields {
7749
7809
  requiredIndicatorPlacement: RequiredIndicatorPlacement;
7750
7810
  }
7751
7811
  interface ThankYouMessageOptionsNonNullableFields {
7752
- messageContent?: RichContentNonNullableFields;
7812
+ richContent?: RichContentNonNullableFields;
7753
7813
  }
7754
7814
  interface RedirectOptionsNonNullableFields {
7755
7815
  target: UrlTargetEnumTarget;
@@ -7759,6 +7819,9 @@ interface SubmitSettingsNonNullableFields {
7759
7819
  redirectOptions?: RedirectOptionsNonNullableFields;
7760
7820
  submitSuccessAction: SubmitSuccessAction;
7761
7821
  }
7822
+ interface FieldGroupNonNullableFields {
7823
+ _id: string;
7824
+ }
7762
7825
  interface FormNonNullableFields {
7763
7826
  fields: FormFieldNonNullableFields[];
7764
7827
  fieldsV2: FormFieldV2NonNullableFields[];
@@ -7774,6 +7837,7 @@ interface FormNonNullableFields {
7774
7837
  spamFilterProtectionLevel: SpamFilterProtectionLevel;
7775
7838
  requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
7776
7839
  submitSettings?: SubmitSettingsNonNullableFields;
7840
+ fieldGroups: FieldGroupNonNullableFields[];
7777
7841
  }
7778
7842
  interface CreateFormResponseNonNullableFields {
7779
7843
  form?: FormNonNullableFields;