@wix/forms 1.0.113 → 1.0.115

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.113",
3
+ "version": "1.0.115",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -19,10 +19,10 @@
19
19
  "service-plugins"
20
20
  ],
21
21
  "dependencies": {
22
- "@wix/forms_form-spam-submission-reports": "1.0.5",
23
- "@wix/forms_form-submissions": "1.0.8",
24
- "@wix/forms_forms": "1.0.8",
25
- "@wix/forms_submissions": "1.0.40"
22
+ "@wix/forms_form-spam-submission-reports": "1.0.6",
23
+ "@wix/forms_form-submissions": "1.0.10",
24
+ "@wix/forms_forms": "1.0.9",
25
+ "@wix/forms_submissions": "1.0.41"
26
26
  },
27
27
  "devDependencies": {
28
28
  "glob": "^10.4.1",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "scripts": {
34
34
  "build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles",
35
- "build:dts-bundles": "test -f config/rollup-config.js && rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
35
+ "build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
36
36
  "test": ":"
37
37
  },
38
38
  "wix": {
@@ -46,5 +46,5 @@
46
46
  "fqdn": ""
47
47
  }
48
48
  },
49
- "falconPackageHash": "e91a59de844fcf767d20d1d8989489578921f8c1dc656cf28fd1eb80"
49
+ "falconPackageHash": "e355fcace7c0bcb120b1be61bfad05cf6aa8d754d20b094a9f2c0feb"
50
50
  }
@@ -71,6 +71,8 @@ interface Form {
71
71
  spamFilterProtectionLevel?: SpamFilterProtectionLevel;
72
72
  /** Required indicator properties. */
73
73
  requiredIndicatorProperties?: RequiredIndicatorProperties;
74
+ /** Settings for actions to be taken after form submission. */
75
+ submitSettings?: SubmitSettings;
74
76
  }
75
77
  declare enum RequiredIndicator {
76
78
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -2696,9 +2698,19 @@ interface DisplayFieldComponentTypeOneOf {
2696
2698
  richText?: RichText;
2697
2699
  }
2698
2700
  interface SubmitButton extends SubmitButtonSubmitActionOneOf {
2699
- /** Submit action effect is to show message */
2701
+ /**
2702
+ * Submit action effect is to show message
2703
+ * @deprecated Submit action effect is to show message
2704
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
2705
+ * @targetRemovalDate 2025-01-06
2706
+ */
2700
2707
  thankYouMessage?: ThankYouMessage;
2701
- /** Submit action effect is to redirect to */
2708
+ /**
2709
+ * Submit action effect is to redirect to
2710
+ * @deprecated Submit action effect is to redirect to
2711
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
2712
+ * @targetRemovalDate 2025-01-06
2713
+ */
2702
2714
  redirect?: Redirect;
2703
2715
  /** When button is not on last page it behaves as switch between pages page, text of label to go to next page. */
2704
2716
  nextText?: string | null;
@@ -2709,9 +2721,19 @@ interface SubmitButton extends SubmitButtonSubmitActionOneOf {
2709
2721
  }
2710
2722
  /** @oneof */
2711
2723
  interface SubmitButtonSubmitActionOneOf {
2712
- /** Submit action effect is to show message */
2724
+ /**
2725
+ * Submit action effect is to show message
2726
+ * @deprecated Submit action effect is to show message
2727
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
2728
+ * @targetRemovalDate 2025-01-06
2729
+ */
2713
2730
  thankYouMessage?: ThankYouMessage;
2714
- /** Submit action effect is to redirect to */
2731
+ /**
2732
+ * Submit action effect is to redirect to
2733
+ * @deprecated Submit action effect is to redirect to
2734
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
2735
+ * @targetRemovalDate 2025-01-06
2736
+ */
2715
2737
  redirect?: Redirect;
2716
2738
  }
2717
2739
  interface Step {
@@ -2867,6 +2889,49 @@ interface RequiredIndicatorProperties {
2867
2889
  /** Required indicator placement. */
2868
2890
  requiredIndicatorPlacement?: RequiredIndicatorPlacement;
2869
2891
  }
2892
+ interface SubmitSettings extends SubmitSettingsSubmitSuccessActionOptionsOneOf {
2893
+ /** Options for showing a thank you message after submission. */
2894
+ thankYouMessageOptions?: ThankYouMessageOptions;
2895
+ /** Options for redirecting to a URL after submission. */
2896
+ redirectOptions?: RedirectOptions;
2897
+ /** Action that is triggered after a successful form submission. */
2898
+ submitSuccessAction?: SubmitSuccessAction;
2899
+ }
2900
+ /** @oneof */
2901
+ interface SubmitSettingsSubmitSuccessActionOptionsOneOf {
2902
+ /** Options for showing a thank you message after submission. */
2903
+ thankYouMessageOptions?: ThankYouMessageOptions;
2904
+ /** Options for redirecting to a URL after submission. */
2905
+ redirectOptions?: RedirectOptions;
2906
+ }
2907
+ declare enum UrlTargetEnumTarget {
2908
+ UNKNOWN_TARGET = "UNKNOWN_TARGET",
2909
+ /** Open in the same browser tab. */
2910
+ SELF = "SELF",
2911
+ /** Open in a new browser tab. */
2912
+ BLANK = "BLANK"
2913
+ }
2914
+ declare enum SubmitSuccessAction {
2915
+ UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
2916
+ /** No action will be taken after submission. */
2917
+ NO_ACTION = "NO_ACTION",
2918
+ /** A thank you message will be shown after submission. */
2919
+ THANK_YOU_MESSAGE = "THANK_YOU_MESSAGE",
2920
+ /** The user will be redirected to a URL after submission. */
2921
+ REDIRECT = "REDIRECT"
2922
+ }
2923
+ interface ThankYouMessageOptions {
2924
+ /** The message shown after form submission. */
2925
+ messageContent?: RichContent;
2926
+ /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */
2927
+ durationInSeconds?: number | null;
2928
+ }
2929
+ interface RedirectOptions {
2930
+ /** The URL to which the user should be redirected after a successful form submission. */
2931
+ redirectUrl?: string | null;
2932
+ /** How the URL should be opened. */
2933
+ target?: UrlTargetEnumTarget;
2934
+ }
2870
2935
  interface PiiFieldsUpdated {
2871
2936
  /** Collection of fields which are marked as PII */
2872
2937
  piiFields?: string[];
@@ -3920,6 +3985,17 @@ interface RequiredIndicatorPropertiesNonNullableFields {
3920
3985
  requiredIndicator: RequiredIndicator;
3921
3986
  requiredIndicatorPlacement: RequiredIndicatorPlacement;
3922
3987
  }
3988
+ interface ThankYouMessageOptionsNonNullableFields {
3989
+ messageContent?: RichContentNonNullableFields;
3990
+ }
3991
+ interface RedirectOptionsNonNullableFields {
3992
+ target: UrlTargetEnumTarget;
3993
+ }
3994
+ interface SubmitSettingsNonNullableFields {
3995
+ thankYouMessageOptions?: ThankYouMessageOptionsNonNullableFields;
3996
+ redirectOptions?: RedirectOptionsNonNullableFields;
3997
+ submitSuccessAction: SubmitSuccessAction;
3998
+ }
3923
3999
  interface FormNonNullableFields {
3924
4000
  fields: FormFieldNonNullableFields[];
3925
4001
  fieldsV2: FormFieldV2NonNullableFields[];
@@ -3934,6 +4010,7 @@ interface FormNonNullableFields {
3934
4010
  nestedForms: NestedFormNonNullableFields[];
3935
4011
  spamFilterProtectionLevel: SpamFilterProtectionLevel;
3936
4012
  requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
4013
+ submitSettings?: SubmitSettingsNonNullableFields;
3937
4014
  }
3938
4015
  interface CreateFormResponseNonNullableFields {
3939
4016
  form?: FormNonNullableFields;
@@ -4083,6 +4160,8 @@ interface UpdateForm {
4083
4160
  spamFilterProtectionLevel?: SpamFilterProtectionLevel;
4084
4161
  /** Required indicator properties. */
4085
4162
  requiredIndicatorProperties?: RequiredIndicatorProperties;
4163
+ /** Settings for actions to be taken after form submission. */
4164
+ submitSettings?: SubmitSettings;
4086
4165
  }
4087
4166
  interface DeleteFormOptions {
4088
4167
  /**
@@ -4600,6 +4679,7 @@ type context$2_RadioGroupCustomOption = RadioGroupCustomOption;
4600
4679
  type context$2_RadioGroupOption = RadioGroupOption;
4601
4680
  type context$2_RatingInput = RatingInput;
4602
4681
  type context$2_Redirect = Redirect;
4682
+ type context$2_RedirectOptions = RedirectOptions;
4603
4683
  type context$2_Rel = Rel;
4604
4684
  type context$2_RemoveFormFromTrashBinRequest = RemoveFormFromTrashBinRequest;
4605
4685
  type context$2_RemoveFormFromTrashBinResponse = RemoveFormFromTrashBinResponse;
@@ -4633,6 +4713,10 @@ type context$2_Styles = Styles;
4633
4713
  type context$2_SubmissionKeysPermanentlyDeleted = SubmissionKeysPermanentlyDeleted;
4634
4714
  type context$2_SubmitButton = SubmitButton;
4635
4715
  type context$2_SubmitButtonSubmitActionOneOf = SubmitButtonSubmitActionOneOf;
4716
+ type context$2_SubmitSettings = SubmitSettings;
4717
+ type context$2_SubmitSettingsSubmitSuccessActionOptionsOneOf = SubmitSettingsSubmitSuccessActionOptionsOneOf;
4718
+ type context$2_SubmitSuccessAction = SubmitSuccessAction;
4719
+ declare const context$2_SubmitSuccessAction: typeof SubmitSuccessAction;
4636
4720
  type context$2_SubscriptionInfo = SubscriptionInfo;
4637
4721
  type context$2_TableCellData = TableCellData;
4638
4722
  type context$2_TableData = TableData;
@@ -4647,6 +4731,7 @@ type context$2_TextInput = TextInput;
4647
4731
  type context$2_TextNodeStyle = TextNodeStyle;
4648
4732
  type context$2_TextStyle = TextStyle;
4649
4733
  type context$2_ThankYouMessage = ThankYouMessage;
4734
+ type context$2_ThankYouMessageOptions = ThankYouMessageOptions;
4650
4735
  type context$2_Thumbnails = Thumbnails;
4651
4736
  type context$2_ThumbnailsAlignment = ThumbnailsAlignment;
4652
4737
  declare const context$2_ThumbnailsAlignment: typeof ThumbnailsAlignment;
@@ -4664,6 +4749,8 @@ type context$2_UpdateFormResponseNonNullableFields = UpdateFormResponseNonNullab
4664
4749
  type context$2_UploadFileFormat = UploadFileFormat;
4665
4750
  declare const context$2_UploadFileFormat: typeof UploadFileFormat;
4666
4751
  type context$2_UpsertContact = UpsertContact;
4752
+ type context$2_UrlTargetEnumTarget = UrlTargetEnumTarget;
4753
+ declare const context$2_UrlTargetEnumTarget: typeof UrlTargetEnumTarget;
4667
4754
  type context$2_Validation = Validation;
4668
4755
  type context$2_ValidationFormat = ValidationFormat;
4669
4756
  declare const context$2_ValidationFormat: typeof ValidationFormat;
@@ -4713,7 +4800,7 @@ declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
4713
4800
  declare const context$2_updateExtendedFields: typeof updateExtendedFields;
4714
4801
  declare const context$2_updateForm: typeof updateForm;
4715
4802
  declare namespace context$2 {
4716
- 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_Rel as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, context$2_RequiredIndicator as RequiredIndicator, context$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type context$2_RichContent as RichContent, type context$2_RichText as RichText, type context$2_Section as Section, type context$2_Settings as Settings, type context$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, context$2_Source as Source, context$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context$2_Spoiler as Spoiler, type context$2_SpoilerData as SpoilerData, type context$2_Step as Step, context$2_StringComponentType as StringComponentType, type context$2_StringErrorMessages as StringErrorMessages, type context$2_StringType as StringType, type context$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context$2_Styles as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type context$2_SubmitButton as SubmitButton, type context$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context$2_SubscriptionInfo as SubscriptionInfo, type context$2_TableCellData as TableCellData, type context$2_TableData as TableData, context$2_Tag as Tag, context$2_Target as Target, context$2_TextAlignment as TextAlignment, type context$2_TextData as TextData, type context$2_TextInput as TextInput, type context$2_TextNodeStyle as TextNodeStyle, type context$2_TextStyle as TextStyle, type context$2_ThankYouMessage as ThankYouMessage, type context$2_Thumbnails as Thumbnails, context$2_ThumbnailsAlignment as ThumbnailsAlignment, type context$2_TimeOptions as TimeOptions, context$2_Type as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, context$2_UploadFileFormat as UploadFileFormat, type context$2_UpsertContact as UpsertContact, type context$2_Validation as Validation, context$2_ValidationFormat as ValidationFormat, type context$2_ValidationValidationOneOf as ValidationValidationOneOf, context$2_VerticalAlignment as VerticalAlignment, type context$2_Video as Video, type context$2_VideoData as VideoData, context$2_ViewMode as ViewMode, context$2_ViewRole as ViewRole, context$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, context$2_Width as Width, context$2_WidthType as WidthType, type context$2_WixFile as WixFile, context$2_WixFileComponentType as WixFileComponentType, type context$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context$2__Array as _Array, type context$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context$2__Boolean as _Boolean, type context$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context$2__Number as _Number, type context$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context$2__Object as _Object, type context$2__ObjectValidationOneOf as _ObjectValidationOneOf, type context$2__String as _String, type context$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
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 };
4717
4804
  }
4718
4805
 
4719
4806
  /**
@@ -71,6 +71,8 @@ interface Form {
71
71
  spamFilterProtectionLevel?: SpamFilterProtectionLevel;
72
72
  /** Required indicator properties. */
73
73
  requiredIndicatorProperties?: RequiredIndicatorProperties;
74
+ /** Settings for actions to be taken after form submission. */
75
+ submitSettings?: SubmitSettings;
74
76
  }
75
77
  declare enum RequiredIndicator {
76
78
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -2696,9 +2698,19 @@ interface DisplayFieldComponentTypeOneOf {
2696
2698
  richText?: RichText;
2697
2699
  }
2698
2700
  interface SubmitButton extends SubmitButtonSubmitActionOneOf {
2699
- /** Submit action effect is to show message */
2701
+ /**
2702
+ * Submit action effect is to show message
2703
+ * @deprecated Submit action effect is to show message
2704
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
2705
+ * @targetRemovalDate 2025-01-06
2706
+ */
2700
2707
  thankYouMessage?: ThankYouMessage;
2701
- /** Submit action effect is to redirect to */
2708
+ /**
2709
+ * Submit action effect is to redirect to
2710
+ * @deprecated Submit action effect is to redirect to
2711
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
2712
+ * @targetRemovalDate 2025-01-06
2713
+ */
2702
2714
  redirect?: Redirect;
2703
2715
  /** When button is not on last page it behaves as switch between pages page, text of label to go to next page. */
2704
2716
  nextText?: string | null;
@@ -2709,9 +2721,19 @@ interface SubmitButton extends SubmitButtonSubmitActionOneOf {
2709
2721
  }
2710
2722
  /** @oneof */
2711
2723
  interface SubmitButtonSubmitActionOneOf {
2712
- /** Submit action effect is to show message */
2724
+ /**
2725
+ * Submit action effect is to show message
2726
+ * @deprecated Submit action effect is to show message
2727
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
2728
+ * @targetRemovalDate 2025-01-06
2729
+ */
2713
2730
  thankYouMessage?: ThankYouMessage;
2714
- /** Submit action effect is to redirect to */
2731
+ /**
2732
+ * Submit action effect is to redirect to
2733
+ * @deprecated Submit action effect is to redirect to
2734
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
2735
+ * @targetRemovalDate 2025-01-06
2736
+ */
2715
2737
  redirect?: Redirect;
2716
2738
  }
2717
2739
  interface Step {
@@ -2867,6 +2889,49 @@ interface RequiredIndicatorProperties {
2867
2889
  /** Required indicator placement. */
2868
2890
  requiredIndicatorPlacement?: RequiredIndicatorPlacement;
2869
2891
  }
2892
+ interface SubmitSettings extends SubmitSettingsSubmitSuccessActionOptionsOneOf {
2893
+ /** Options for showing a thank you message after submission. */
2894
+ thankYouMessageOptions?: ThankYouMessageOptions;
2895
+ /** Options for redirecting to a URL after submission. */
2896
+ redirectOptions?: RedirectOptions;
2897
+ /** Action that is triggered after a successful form submission. */
2898
+ submitSuccessAction?: SubmitSuccessAction;
2899
+ }
2900
+ /** @oneof */
2901
+ interface SubmitSettingsSubmitSuccessActionOptionsOneOf {
2902
+ /** Options for showing a thank you message after submission. */
2903
+ thankYouMessageOptions?: ThankYouMessageOptions;
2904
+ /** Options for redirecting to a URL after submission. */
2905
+ redirectOptions?: RedirectOptions;
2906
+ }
2907
+ declare enum UrlTargetEnumTarget {
2908
+ UNKNOWN_TARGET = "UNKNOWN_TARGET",
2909
+ /** Open in the same browser tab. */
2910
+ SELF = "SELF",
2911
+ /** Open in a new browser tab. */
2912
+ BLANK = "BLANK"
2913
+ }
2914
+ declare enum SubmitSuccessAction {
2915
+ UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
2916
+ /** No action will be taken after submission. */
2917
+ NO_ACTION = "NO_ACTION",
2918
+ /** A thank you message will be shown after submission. */
2919
+ THANK_YOU_MESSAGE = "THANK_YOU_MESSAGE",
2920
+ /** The user will be redirected to a URL after submission. */
2921
+ REDIRECT = "REDIRECT"
2922
+ }
2923
+ interface ThankYouMessageOptions {
2924
+ /** The message shown after form submission. */
2925
+ messageContent?: RichContent;
2926
+ /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */
2927
+ durationInSeconds?: number | null;
2928
+ }
2929
+ interface RedirectOptions {
2930
+ /** The URL to which the user should be redirected after a successful form submission. */
2931
+ redirectUrl?: string | null;
2932
+ /** How the URL should be opened. */
2933
+ target?: UrlTargetEnumTarget;
2934
+ }
2870
2935
  interface PiiFieldsUpdated {
2871
2936
  /** Collection of fields which are marked as PII */
2872
2937
  piiFields?: string[];
@@ -3920,6 +3985,17 @@ interface RequiredIndicatorPropertiesNonNullableFields {
3920
3985
  requiredIndicator: RequiredIndicator;
3921
3986
  requiredIndicatorPlacement: RequiredIndicatorPlacement;
3922
3987
  }
3988
+ interface ThankYouMessageOptionsNonNullableFields {
3989
+ messageContent?: RichContentNonNullableFields;
3990
+ }
3991
+ interface RedirectOptionsNonNullableFields {
3992
+ target: UrlTargetEnumTarget;
3993
+ }
3994
+ interface SubmitSettingsNonNullableFields {
3995
+ thankYouMessageOptions?: ThankYouMessageOptionsNonNullableFields;
3996
+ redirectOptions?: RedirectOptionsNonNullableFields;
3997
+ submitSuccessAction: SubmitSuccessAction;
3998
+ }
3923
3999
  interface FormNonNullableFields {
3924
4000
  fields: FormFieldNonNullableFields[];
3925
4001
  fieldsV2: FormFieldV2NonNullableFields[];
@@ -3934,6 +4010,7 @@ interface FormNonNullableFields {
3934
4010
  nestedForms: NestedFormNonNullableFields[];
3935
4011
  spamFilterProtectionLevel: SpamFilterProtectionLevel;
3936
4012
  requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
4013
+ submitSettings?: SubmitSettingsNonNullableFields;
3937
4014
  }
3938
4015
  interface CreateFormResponseNonNullableFields {
3939
4016
  form?: FormNonNullableFields;
@@ -4083,6 +4160,8 @@ interface UpdateForm {
4083
4160
  spamFilterProtectionLevel?: SpamFilterProtectionLevel;
4084
4161
  /** Required indicator properties. */
4085
4162
  requiredIndicatorProperties?: RequiredIndicatorProperties;
4163
+ /** Settings for actions to be taken after form submission. */
4164
+ submitSettings?: SubmitSettings;
4086
4165
  }
4087
4166
  interface DeleteFormOptions {
4088
4167
  /**
@@ -4600,6 +4679,7 @@ type index_d$2_RadioGroupCustomOption = RadioGroupCustomOption;
4600
4679
  type index_d$2_RadioGroupOption = RadioGroupOption;
4601
4680
  type index_d$2_RatingInput = RatingInput;
4602
4681
  type index_d$2_Redirect = Redirect;
4682
+ type index_d$2_RedirectOptions = RedirectOptions;
4603
4683
  type index_d$2_Rel = Rel;
4604
4684
  type index_d$2_RemoveFormFromTrashBinRequest = RemoveFormFromTrashBinRequest;
4605
4685
  type index_d$2_RemoveFormFromTrashBinResponse = RemoveFormFromTrashBinResponse;
@@ -4633,6 +4713,10 @@ type index_d$2_Styles = Styles;
4633
4713
  type index_d$2_SubmissionKeysPermanentlyDeleted = SubmissionKeysPermanentlyDeleted;
4634
4714
  type index_d$2_SubmitButton = SubmitButton;
4635
4715
  type index_d$2_SubmitButtonSubmitActionOneOf = SubmitButtonSubmitActionOneOf;
4716
+ type index_d$2_SubmitSettings = SubmitSettings;
4717
+ type index_d$2_SubmitSettingsSubmitSuccessActionOptionsOneOf = SubmitSettingsSubmitSuccessActionOptionsOneOf;
4718
+ type index_d$2_SubmitSuccessAction = SubmitSuccessAction;
4719
+ declare const index_d$2_SubmitSuccessAction: typeof SubmitSuccessAction;
4636
4720
  type index_d$2_SubscriptionInfo = SubscriptionInfo;
4637
4721
  type index_d$2_TableCellData = TableCellData;
4638
4722
  type index_d$2_TableData = TableData;
@@ -4647,6 +4731,7 @@ type index_d$2_TextInput = TextInput;
4647
4731
  type index_d$2_TextNodeStyle = TextNodeStyle;
4648
4732
  type index_d$2_TextStyle = TextStyle;
4649
4733
  type index_d$2_ThankYouMessage = ThankYouMessage;
4734
+ type index_d$2_ThankYouMessageOptions = ThankYouMessageOptions;
4650
4735
  type index_d$2_Thumbnails = Thumbnails;
4651
4736
  type index_d$2_ThumbnailsAlignment = ThumbnailsAlignment;
4652
4737
  declare const index_d$2_ThumbnailsAlignment: typeof ThumbnailsAlignment;
@@ -4664,6 +4749,8 @@ type index_d$2_UpdateFormResponseNonNullableFields = UpdateFormResponseNonNullab
4664
4749
  type index_d$2_UploadFileFormat = UploadFileFormat;
4665
4750
  declare const index_d$2_UploadFileFormat: typeof UploadFileFormat;
4666
4751
  type index_d$2_UpsertContact = UpsertContact;
4752
+ type index_d$2_UrlTargetEnumTarget = UrlTargetEnumTarget;
4753
+ declare const index_d$2_UrlTargetEnumTarget: typeof UrlTargetEnumTarget;
4667
4754
  type index_d$2_Validation = Validation;
4668
4755
  type index_d$2_ValidationFormat = ValidationFormat;
4669
4756
  declare const index_d$2_ValidationFormat: typeof ValidationFormat;
@@ -4713,7 +4800,7 @@ declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
4713
4800
  declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
4714
4801
  declare const index_d$2_updateForm: typeof updateForm;
4715
4802
  declare namespace index_d$2 {
4716
- 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_Rel as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, index_d$2_RequiredIndicator as RequiredIndicator, index_d$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type index_d$2_RichContent as RichContent, type index_d$2_RichText as RichText, type index_d$2_Section as Section, type index_d$2_Settings as Settings, type index_d$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$2_Source as Source, index_d$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d$2_Spoiler as Spoiler, type index_d$2_SpoilerData as SpoilerData, type index_d$2_Step as Step, index_d$2_StringComponentType as StringComponentType, type index_d$2_StringErrorMessages as StringErrorMessages, type index_d$2_StringType as StringType, type index_d$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d$2_Styles as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type index_d$2_SubmitButton as SubmitButton, type index_d$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d$2_SubscriptionInfo as SubscriptionInfo, type index_d$2_TableCellData as TableCellData, type index_d$2_TableData as TableData, index_d$2_Tag as Tag, index_d$2_Target as Target, index_d$2_TextAlignment as TextAlignment, type index_d$2_TextData as TextData, type index_d$2_TextInput as TextInput, type index_d$2_TextNodeStyle as TextNodeStyle, type index_d$2_TextStyle as TextStyle, type index_d$2_ThankYouMessage as ThankYouMessage, type index_d$2_Thumbnails as Thumbnails, index_d$2_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$2_TimeOptions as TimeOptions, index_d$2_Type as Type, type index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, index_d$2_UploadFileFormat as UploadFileFormat, type index_d$2_UpsertContact as UpsertContact, type index_d$2_Validation as Validation, index_d$2_ValidationFormat as ValidationFormat, type index_d$2_ValidationValidationOneOf as ValidationValidationOneOf, index_d$2_VerticalAlignment as VerticalAlignment, type index_d$2_Video as Video, type index_d$2_VideoData as VideoData, index_d$2_ViewMode as ViewMode, index_d$2_ViewRole as ViewRole, index_d$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, index_d$2_Width as Width, index_d$2_WidthType as WidthType, type index_d$2_WixFile as WixFile, index_d$2_WixFileComponentType as WixFileComponentType, type index_d$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d$2__Array as _Array, type index_d$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d$2__Boolean as _Boolean, type index_d$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d$2__Number as _Number, type index_d$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d$2__Object as _Object, type index_d$2__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d$2__String as _String, type index_d$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, index_d$2_updateExtendedFields as updateExtendedFields, index_d$2_updateForm as updateForm };
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 };
4717
4804
  }
4718
4805
 
4719
4806
  /**
@@ -71,6 +71,8 @@ interface Form$1 {
71
71
  spamFilterProtectionLevel?: SpamFilterProtectionLevel$1;
72
72
  /** Required indicator properties. */
73
73
  requiredIndicatorProperties?: RequiredIndicatorProperties$1;
74
+ /** Settings for actions to be taken after form submission. */
75
+ submitSettings?: SubmitSettings$1;
74
76
  }
75
77
  declare enum RequiredIndicator$1 {
76
78
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -2690,9 +2692,19 @@ interface DisplayFieldComponentTypeOneOf$1 {
2690
2692
  richText?: RichText$1;
2691
2693
  }
2692
2694
  interface SubmitButton$1 extends SubmitButtonSubmitActionOneOf$1 {
2693
- /** Submit action effect is to show message */
2695
+ /**
2696
+ * Submit action effect is to show message
2697
+ * @deprecated Submit action effect is to show message
2698
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
2699
+ * @targetRemovalDate 2025-01-06
2700
+ */
2694
2701
  thankYouMessage?: ThankYouMessage$1;
2695
- /** Submit action effect is to redirect to */
2702
+ /**
2703
+ * Submit action effect is to redirect to
2704
+ * @deprecated Submit action effect is to redirect to
2705
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
2706
+ * @targetRemovalDate 2025-01-06
2707
+ */
2696
2708
  redirect?: Redirect$1;
2697
2709
  /** When button is not on last page it behaves as switch between pages page, text of label to go to next page. */
2698
2710
  nextText?: string | null;
@@ -2703,9 +2715,19 @@ interface SubmitButton$1 extends SubmitButtonSubmitActionOneOf$1 {
2703
2715
  }
2704
2716
  /** @oneof */
2705
2717
  interface SubmitButtonSubmitActionOneOf$1 {
2706
- /** Submit action effect is to show message */
2718
+ /**
2719
+ * Submit action effect is to show message
2720
+ * @deprecated Submit action effect is to show message
2721
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
2722
+ * @targetRemovalDate 2025-01-06
2723
+ */
2707
2724
  thankYouMessage?: ThankYouMessage$1;
2708
- /** Submit action effect is to redirect to */
2725
+ /**
2726
+ * Submit action effect is to redirect to
2727
+ * @deprecated Submit action effect is to redirect to
2728
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
2729
+ * @targetRemovalDate 2025-01-06
2730
+ */
2709
2731
  redirect?: Redirect$1;
2710
2732
  }
2711
2733
  interface Step$1 {
@@ -2855,6 +2877,49 @@ interface RequiredIndicatorProperties$1 {
2855
2877
  /** Required indicator placement. */
2856
2878
  requiredIndicatorPlacement?: RequiredIndicatorPlacement$1;
2857
2879
  }
2880
+ interface SubmitSettings$1 extends SubmitSettingsSubmitSuccessActionOptionsOneOf$1 {
2881
+ /** Options for showing a thank you message after submission. */
2882
+ thankYouMessageOptions?: ThankYouMessageOptions$1;
2883
+ /** Options for redirecting to a URL after submission. */
2884
+ redirectOptions?: RedirectOptions$1;
2885
+ /** Action that is triggered after a successful form submission. */
2886
+ submitSuccessAction?: SubmitSuccessAction$1;
2887
+ }
2888
+ /** @oneof */
2889
+ interface SubmitSettingsSubmitSuccessActionOptionsOneOf$1 {
2890
+ /** Options for showing a thank you message after submission. */
2891
+ thankYouMessageOptions?: ThankYouMessageOptions$1;
2892
+ /** Options for redirecting to a URL after submission. */
2893
+ redirectOptions?: RedirectOptions$1;
2894
+ }
2895
+ declare enum UrlTargetEnumTarget$1 {
2896
+ UNKNOWN_TARGET = "UNKNOWN_TARGET",
2897
+ /** Open in the same browser tab. */
2898
+ SELF = "SELF",
2899
+ /** Open in a new browser tab. */
2900
+ BLANK = "BLANK"
2901
+ }
2902
+ declare enum SubmitSuccessAction$1 {
2903
+ UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
2904
+ /** No action will be taken after submission. */
2905
+ NO_ACTION = "NO_ACTION",
2906
+ /** A thank you message will be shown after submission. */
2907
+ THANK_YOU_MESSAGE = "THANK_YOU_MESSAGE",
2908
+ /** The user will be redirected to a URL after submission. */
2909
+ REDIRECT = "REDIRECT"
2910
+ }
2911
+ interface ThankYouMessageOptions$1 {
2912
+ /** The message shown after form submission. */
2913
+ messageContent?: RichContent$1;
2914
+ /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */
2915
+ durationInSeconds?: number | null;
2916
+ }
2917
+ interface RedirectOptions$1 {
2918
+ /** The URL to which the user should be redirected after a successful form submission. */
2919
+ redirectUrl?: string | null;
2920
+ /** How the URL should be opened. */
2921
+ target?: UrlTargetEnumTarget$1;
2922
+ }
2858
2923
  interface CreateFormRequest$1 {
2859
2924
  /** Form to be created. */
2860
2925
  form: Form$1;
@@ -3778,6 +3843,17 @@ interface RequiredIndicatorPropertiesNonNullableFields$1 {
3778
3843
  requiredIndicator: RequiredIndicator$1;
3779
3844
  requiredIndicatorPlacement: RequiredIndicatorPlacement$1;
3780
3845
  }
3846
+ interface ThankYouMessageOptionsNonNullableFields$1 {
3847
+ messageContent?: RichContentNonNullableFields$1;
3848
+ }
3849
+ interface RedirectOptionsNonNullableFields$1 {
3850
+ target: UrlTargetEnumTarget$1;
3851
+ }
3852
+ interface SubmitSettingsNonNullableFields$1 {
3853
+ thankYouMessageOptions?: ThankYouMessageOptionsNonNullableFields$1;
3854
+ redirectOptions?: RedirectOptionsNonNullableFields$1;
3855
+ submitSuccessAction: SubmitSuccessAction$1;
3856
+ }
3781
3857
  interface FormNonNullableFields$1 {
3782
3858
  fields: FormFieldNonNullableFields$1[];
3783
3859
  fieldsV2: FormFieldV2NonNullableFields$1[];
@@ -3792,6 +3868,7 @@ interface FormNonNullableFields$1 {
3792
3868
  nestedForms: NestedFormNonNullableFields$1[];
3793
3869
  spamFilterProtectionLevel: SpamFilterProtectionLevel$1;
3794
3870
  requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields$1;
3871
+ submitSettings?: SubmitSettingsNonNullableFields$1;
3795
3872
  }
3796
3873
  interface CreateFormResponseNonNullableFields$1 {
3797
3874
  form?: FormNonNullableFields$1;
@@ -3928,6 +4005,8 @@ interface Form {
3928
4005
  spamFilterProtectionLevel?: SpamFilterProtectionLevel;
3929
4006
  /** Required indicator properties. */
3930
4007
  requiredIndicatorProperties?: RequiredIndicatorProperties;
4008
+ /** Settings for actions to be taken after form submission. */
4009
+ submitSettings?: SubmitSettings;
3931
4010
  }
3932
4011
  declare enum RequiredIndicator {
3933
4012
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -6524,9 +6603,19 @@ interface DisplayFieldComponentTypeOneOf {
6524
6603
  richText?: RichText;
6525
6604
  }
6526
6605
  interface SubmitButton extends SubmitButtonSubmitActionOneOf {
6527
- /** Submit action effect is to show message */
6606
+ /**
6607
+ * Submit action effect is to show message
6608
+ * @deprecated Submit action effect is to show message
6609
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
6610
+ * @targetRemovalDate 2025-01-06
6611
+ */
6528
6612
  thankYouMessage?: ThankYouMessage;
6529
- /** Submit action effect is to redirect to */
6613
+ /**
6614
+ * Submit action effect is to redirect to
6615
+ * @deprecated Submit action effect is to redirect to
6616
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
6617
+ * @targetRemovalDate 2025-01-06
6618
+ */
6530
6619
  redirect?: Redirect;
6531
6620
  /** When button is not on last page it behaves as switch between pages page, text of label to go to next page. */
6532
6621
  nextText?: string | null;
@@ -6537,9 +6626,19 @@ interface SubmitButton extends SubmitButtonSubmitActionOneOf {
6537
6626
  }
6538
6627
  /** @oneof */
6539
6628
  interface SubmitButtonSubmitActionOneOf {
6540
- /** Submit action effect is to show message */
6629
+ /**
6630
+ * Submit action effect is to show message
6631
+ * @deprecated Submit action effect is to show message
6632
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
6633
+ * @targetRemovalDate 2025-01-06
6634
+ */
6541
6635
  thankYouMessage?: ThankYouMessage;
6542
- /** Submit action effect is to redirect to */
6636
+ /**
6637
+ * Submit action effect is to redirect to
6638
+ * @deprecated Submit action effect is to redirect to
6639
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
6640
+ * @targetRemovalDate 2025-01-06
6641
+ */
6543
6642
  redirect?: Redirect;
6544
6643
  }
6545
6644
  interface Step {
@@ -6689,6 +6788,49 @@ interface RequiredIndicatorProperties {
6689
6788
  /** Required indicator placement. */
6690
6789
  requiredIndicatorPlacement?: RequiredIndicatorPlacement;
6691
6790
  }
6791
+ interface SubmitSettings extends SubmitSettingsSubmitSuccessActionOptionsOneOf {
6792
+ /** Options for showing a thank you message after submission. */
6793
+ thankYouMessageOptions?: ThankYouMessageOptions;
6794
+ /** Options for redirecting to a URL after submission. */
6795
+ redirectOptions?: RedirectOptions;
6796
+ /** Action that is triggered after a successful form submission. */
6797
+ submitSuccessAction?: SubmitSuccessAction;
6798
+ }
6799
+ /** @oneof */
6800
+ interface SubmitSettingsSubmitSuccessActionOptionsOneOf {
6801
+ /** Options for showing a thank you message after submission. */
6802
+ thankYouMessageOptions?: ThankYouMessageOptions;
6803
+ /** Options for redirecting to a URL after submission. */
6804
+ redirectOptions?: RedirectOptions;
6805
+ }
6806
+ declare enum UrlTargetEnumTarget {
6807
+ UNKNOWN_TARGET = "UNKNOWN_TARGET",
6808
+ /** Open in the same browser tab. */
6809
+ SELF = "SELF",
6810
+ /** Open in a new browser tab. */
6811
+ BLANK = "BLANK"
6812
+ }
6813
+ declare enum SubmitSuccessAction {
6814
+ UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
6815
+ /** No action will be taken after submission. */
6816
+ NO_ACTION = "NO_ACTION",
6817
+ /** A thank you message will be shown after submission. */
6818
+ THANK_YOU_MESSAGE = "THANK_YOU_MESSAGE",
6819
+ /** The user will be redirected to a URL after submission. */
6820
+ REDIRECT = "REDIRECT"
6821
+ }
6822
+ interface ThankYouMessageOptions {
6823
+ /** The message shown after form submission. */
6824
+ messageContent?: RichContent;
6825
+ /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */
6826
+ durationInSeconds?: number | null;
6827
+ }
6828
+ interface RedirectOptions {
6829
+ /** The URL to which the user should be redirected after a successful form submission. */
6830
+ redirectUrl?: string | null;
6831
+ /** How the URL should be opened. */
6832
+ target?: UrlTargetEnumTarget;
6833
+ }
6692
6834
  interface CreateFormRequest {
6693
6835
  /** Form to be created. */
6694
6836
  form: Form;
@@ -7606,6 +7748,17 @@ interface RequiredIndicatorPropertiesNonNullableFields {
7606
7748
  requiredIndicator: RequiredIndicator;
7607
7749
  requiredIndicatorPlacement: RequiredIndicatorPlacement;
7608
7750
  }
7751
+ interface ThankYouMessageOptionsNonNullableFields {
7752
+ messageContent?: RichContentNonNullableFields;
7753
+ }
7754
+ interface RedirectOptionsNonNullableFields {
7755
+ target: UrlTargetEnumTarget;
7756
+ }
7757
+ interface SubmitSettingsNonNullableFields {
7758
+ thankYouMessageOptions?: ThankYouMessageOptionsNonNullableFields;
7759
+ redirectOptions?: RedirectOptionsNonNullableFields;
7760
+ submitSuccessAction: SubmitSuccessAction;
7761
+ }
7609
7762
  interface FormNonNullableFields {
7610
7763
  fields: FormFieldNonNullableFields[];
7611
7764
  fieldsV2: FormFieldV2NonNullableFields[];
@@ -7620,6 +7773,7 @@ interface FormNonNullableFields {
7620
7773
  nestedForms: NestedFormNonNullableFields[];
7621
7774
  spamFilterProtectionLevel: SpamFilterProtectionLevel;
7622
7775
  requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
7776
+ submitSettings?: SubmitSettingsNonNullableFields;
7623
7777
  }
7624
7778
  interface CreateFormResponseNonNullableFields {
7625
7779
  form?: FormNonNullableFields;