@wix/forms 1.0.172 → 1.0.174
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.174",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"service-plugins"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@wix/forms_form-spam-submission-reports": "1.0.
|
|
25
|
+
"@wix/forms_form-spam-submission-reports": "1.0.24",
|
|
26
26
|
"@wix/forms_form-submissions": "1.0.31",
|
|
27
|
-
"@wix/forms_forms": "1.0.
|
|
28
|
-
"@wix/forms_submissions": "1.0.
|
|
27
|
+
"@wix/forms_forms": "1.0.43",
|
|
28
|
+
"@wix/forms_submissions": "1.0.77"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"glob": "^10.4.1",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": ""
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "20cb573220151b302887d80d6b3d33e5b6f0d1e3de799e2689cb9e01"
|
|
54
54
|
}
|
|
@@ -4099,6 +4099,67 @@ interface ActionEvent$2 {
|
|
|
4099
4099
|
}
|
|
4100
4100
|
interface Empty$2 {
|
|
4101
4101
|
}
|
|
4102
|
+
interface GetFormSummaryRequest {
|
|
4103
|
+
/** Id of the form to retrieve. */
|
|
4104
|
+
formId?: string;
|
|
4105
|
+
}
|
|
4106
|
+
interface GetFormSummaryResponse {
|
|
4107
|
+
/** The retrieved form field summary. */
|
|
4108
|
+
formSummary?: FormSummary;
|
|
4109
|
+
}
|
|
4110
|
+
interface FormSummary {
|
|
4111
|
+
/** Form ID. */
|
|
4112
|
+
_id?: string;
|
|
4113
|
+
/** Summarized form fields. */
|
|
4114
|
+
fields?: Field[];
|
|
4115
|
+
}
|
|
4116
|
+
declare enum FieldInputType {
|
|
4117
|
+
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
4118
|
+
STRING = "STRING",
|
|
4119
|
+
NUMBER = "NUMBER",
|
|
4120
|
+
RATING = "RATING",
|
|
4121
|
+
BOOLEAN = "BOOLEAN",
|
|
4122
|
+
ARRAY = "ARRAY",
|
|
4123
|
+
OBJECT = "OBJECT",
|
|
4124
|
+
WIX_FILE = "WIX_FILE",
|
|
4125
|
+
SIGNATURE = "SIGNATURE",
|
|
4126
|
+
PAYMENT = "PAYMENT",
|
|
4127
|
+
MULTILINE_ADDRESS = "MULTILINE_ADDRESS",
|
|
4128
|
+
DATE = "DATE",
|
|
4129
|
+
TIME = "TIME",
|
|
4130
|
+
DATE_TIME = "DATE_TIME",
|
|
4131
|
+
EMAIL = "EMAIL",
|
|
4132
|
+
URL = "URL",
|
|
4133
|
+
UUID = "UUID",
|
|
4134
|
+
PHONE = "PHONE",
|
|
4135
|
+
URI = "URI",
|
|
4136
|
+
HOSTNAME = "HOSTNAME",
|
|
4137
|
+
COLOR_HEX = "COLOR_HEX",
|
|
4138
|
+
CURRENCY = "CURRENCY",
|
|
4139
|
+
LANGUAGE = "LANGUAGE",
|
|
4140
|
+
DATE_OPTIONAL_TIME = "DATE_OPTIONAL_TIME"
|
|
4141
|
+
}
|
|
4142
|
+
interface FieldOption {
|
|
4143
|
+
/** Selectable option label */
|
|
4144
|
+
label?: string | null;
|
|
4145
|
+
/** Selectable option value, which is saved to DB. */
|
|
4146
|
+
value?: string | null;
|
|
4147
|
+
}
|
|
4148
|
+
interface Field {
|
|
4149
|
+
/** Definition of a target where the value of field belongs. */
|
|
4150
|
+
target?: string | null;
|
|
4151
|
+
/** Label of the field */
|
|
4152
|
+
label?: string | null;
|
|
4153
|
+
/** Input type of the field */
|
|
4154
|
+
type?: FieldInputType;
|
|
4155
|
+
/** List of options to select from */
|
|
4156
|
+
options?: FieldOption[];
|
|
4157
|
+
/**
|
|
4158
|
+
* Flag indicating whether field is deleted.
|
|
4159
|
+
* Default: false.
|
|
4160
|
+
*/
|
|
4161
|
+
deleted?: boolean;
|
|
4162
|
+
}
|
|
4102
4163
|
interface MessageEnvelope$2 {
|
|
4103
4164
|
/** App instance ID. */
|
|
4104
4165
|
instanceId?: string | null;
|
|
@@ -5295,7 +5356,11 @@ type context$2_CreateFormResponseNonNullableFields = CreateFormResponseNonNullab
|
|
|
5295
5356
|
type context$2_DeleteFormOptions = DeleteFormOptions;
|
|
5296
5357
|
type context$2_DeleteFormRequest = DeleteFormRequest;
|
|
5297
5358
|
type context$2_DeleteFormResponse = DeleteFormResponse;
|
|
5359
|
+
type context$2_Field = Field;
|
|
5298
5360
|
type context$2_FieldIdBasedErrorDetails = FieldIdBasedErrorDetails;
|
|
5361
|
+
type context$2_FieldInputType = FieldInputType;
|
|
5362
|
+
declare const context$2_FieldInputType: typeof FieldInputType;
|
|
5363
|
+
type context$2_FieldOption = FieldOption;
|
|
5299
5364
|
type context$2_Fieldset = Fieldset;
|
|
5300
5365
|
declare const context$2_Fieldset: typeof Fieldset;
|
|
5301
5366
|
type context$2_FormChanged = FormChanged;
|
|
@@ -5303,6 +5368,7 @@ type context$2_FormDeleted = FormDeleted;
|
|
|
5303
5368
|
type context$2_FormFieldV2ApiValidationErrorDetails = FormFieldV2ApiValidationErrorDetails;
|
|
5304
5369
|
type context$2_FormNonNullableFields = FormNonNullableFields;
|
|
5305
5370
|
type context$2_FormProviderRestrictions = FormProviderRestrictions;
|
|
5371
|
+
type context$2_FormSummary = FormSummary;
|
|
5306
5372
|
type context$2_FormsQueryBuilder = FormsQueryBuilder;
|
|
5307
5373
|
type context$2_FormsQueryResult = FormsQueryResult;
|
|
5308
5374
|
type context$2_FormsSchemaProvidersConfig = FormsSchemaProvidersConfig;
|
|
@@ -5313,6 +5379,8 @@ type context$2_GetFormOptions = GetFormOptions;
|
|
|
5313
5379
|
type context$2_GetFormRequest = GetFormRequest;
|
|
5314
5380
|
type context$2_GetFormResponse = GetFormResponse;
|
|
5315
5381
|
type context$2_GetFormResponseNonNullableFields = GetFormResponseNonNullableFields;
|
|
5382
|
+
type context$2_GetFormSummaryRequest = GetFormSummaryRequest;
|
|
5383
|
+
type context$2_GetFormSummaryResponse = GetFormSummaryResponse;
|
|
5316
5384
|
type context$2_ListDeletedFormsOptions = ListDeletedFormsOptions;
|
|
5317
5385
|
type context$2_ListDeletedFormsOrder = ListDeletedFormsOrder;
|
|
5318
5386
|
declare const context$2_ListDeletedFormsOrder: typeof ListDeletedFormsOrder;
|
|
@@ -5369,7 +5437,7 @@ declare const context$2_removeFormFromTrashBin: typeof removeFormFromTrashBin;
|
|
|
5369
5437
|
declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
5370
5438
|
declare const context$2_updateForm: typeof updateForm;
|
|
5371
5439
|
declare namespace context$2 {
|
|
5372
|
-
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DatePicker$1 as DatePicker, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type context$2_FieldIdBasedErrorDetails as FieldIdBasedErrorDetails, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, context$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPayment$1 as FixedPayment, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type context$2_FormFieldV2ApiValidationErrorDetails as FormFieldV2ApiValidationErrorDetails, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type context$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, ImageFit$1 as ImageFit, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsProvidersConfigsRequest as ListFormsProvidersConfigsRequest, type context$2_ListFormsProvidersConfigsResponse as ListFormsProvidersConfigsResponse, type context$2_ListFormsProvidersConfigsResponseNonNullableFields as ListFormsProvidersConfigsResponseNonNullableFields, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type context$2_NestedFormFieldsMissingErrorDetails as NestedFormFieldsMissingErrorDetails, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type context$2_NonExistingNestedFormsErrorDetails as NonExistingNestedFormsErrorDetails, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$1 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentInput$1 as PaymentInput, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type context$2_ProductIdBasedErrorDetails as ProductIdBasedErrorDetails, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichText$1 as RichText, type context$2_RuleIdBasedErrorDetails as RuleIdBasedErrorDetails, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, type context$2_StepIdBasedErrorDetails as StepIdBasedErrorDetails, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, type Tags$1 as Tags, type TagsOption$1 as TagsOption, Target$1 as Target, type context$2_TargetBasedErrorDetails as TargetBasedErrorDetails, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, Type$1 as Type, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_listFormsProvidersConfigs as listFormsProvidersConfigs, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$2 as updateExtendedFields, context$2_updateForm as updateForm };
|
|
5440
|
+
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DatePicker$1 as DatePicker, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type context$2_Field as Field, type FieldGroup$1 as FieldGroup, type context$2_FieldIdBasedErrorDetails as FieldIdBasedErrorDetails, context$2_FieldInputType as FieldInputType, type context$2_FieldOption as FieldOption, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, context$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPayment$1 as FixedPayment, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type context$2_FormFieldV2ApiValidationErrorDetails as FormFieldV2ApiValidationErrorDetails, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type context$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, type context$2_FormSummary as FormSummary, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type context$2_GetFormSummaryRequest as GetFormSummaryRequest, type context$2_GetFormSummaryResponse as GetFormSummaryResponse, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, ImageFit$1 as ImageFit, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsProvidersConfigsRequest as ListFormsProvidersConfigsRequest, type context$2_ListFormsProvidersConfigsResponse as ListFormsProvidersConfigsResponse, type context$2_ListFormsProvidersConfigsResponseNonNullableFields as ListFormsProvidersConfigsResponseNonNullableFields, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type context$2_NestedFormFieldsMissingErrorDetails as NestedFormFieldsMissingErrorDetails, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type context$2_NonExistingNestedFormsErrorDetails as NonExistingNestedFormsErrorDetails, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$1 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentInput$1 as PaymentInput, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type context$2_ProductIdBasedErrorDetails as ProductIdBasedErrorDetails, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichText$1 as RichText, type context$2_RuleIdBasedErrorDetails as RuleIdBasedErrorDetails, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, type context$2_StepIdBasedErrorDetails as StepIdBasedErrorDetails, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, type Tags$1 as Tags, type TagsOption$1 as TagsOption, Target$1 as Target, type context$2_TargetBasedErrorDetails as TargetBasedErrorDetails, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, Type$1 as Type, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_listFormsProvidersConfigs as listFormsProvidersConfigs, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$2 as updateExtendedFields, context$2_updateForm as updateForm };
|
|
5373
5441
|
}
|
|
5374
5442
|
|
|
5375
5443
|
/**
|
|
@@ -5471,9 +5539,13 @@ interface ExtendedFields$1 {
|
|
|
5471
5539
|
}
|
|
5472
5540
|
declare enum SubmissionStatus$1 {
|
|
5473
5541
|
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
5542
|
+
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
5474
5543
|
PENDING = "PENDING",
|
|
5544
|
+
/** A submission is recorded in the Wix Forms collection. */
|
|
5475
5545
|
CONFIRMED = "CONFIRMED",
|
|
5546
|
+
/** A form submission requiring payment is created. */
|
|
5476
5547
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
5548
|
+
/** An order of a form submission is canceled. */
|
|
5477
5549
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
5478
5550
|
}
|
|
5479
5551
|
interface OrderDetails$1 {
|
|
@@ -5501,13 +5573,7 @@ interface FormSubmission$1 {
|
|
|
5501
5573
|
* @readonly
|
|
5502
5574
|
*/
|
|
5503
5575
|
namespace?: string;
|
|
5504
|
-
/**
|
|
5505
|
-
* Status of the submission.
|
|
5506
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
5507
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
5508
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
5509
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
5510
|
-
*/
|
|
5576
|
+
/** Status of the submission. */
|
|
5511
5577
|
status?: SubmissionStatus$1;
|
|
5512
5578
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
5513
5579
|
submissions?: Record<string, any>;
|
|
@@ -6349,13 +6415,7 @@ interface FormSubmission {
|
|
|
6349
6415
|
* @readonly
|
|
6350
6416
|
*/
|
|
6351
6417
|
namespace?: string;
|
|
6352
|
-
/**
|
|
6353
|
-
* Status of the submission.
|
|
6354
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
6355
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
6356
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
6357
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
6358
|
-
*/
|
|
6418
|
+
/** Status of the submission. */
|
|
6359
6419
|
status?: SubmissionStatus;
|
|
6360
6420
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
6361
6421
|
submissions?: Record<string, any>;
|
|
@@ -6390,9 +6450,13 @@ interface FormSubmission {
|
|
|
6390
6450
|
}
|
|
6391
6451
|
declare enum SubmissionStatus {
|
|
6392
6452
|
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
6453
|
+
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
6393
6454
|
PENDING = "PENDING",
|
|
6455
|
+
/** A submission is recorded in the Wix Forms collection. */
|
|
6394
6456
|
CONFIRMED = "CONFIRMED",
|
|
6457
|
+
/** A form submission requiring payment is created. */
|
|
6395
6458
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
6459
|
+
/** An order of a form submission is canceled. */
|
|
6396
6460
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
6397
6461
|
}
|
|
6398
6462
|
interface Submitter extends SubmitterSubmitterOneOf {
|
|
@@ -6492,7 +6556,9 @@ interface MarketingSubscriptionDetails {
|
|
|
6492
6556
|
optInLevel?: OptInLevel;
|
|
6493
6557
|
}
|
|
6494
6558
|
declare enum OptInLevel {
|
|
6559
|
+
/** Single confirmation. */
|
|
6495
6560
|
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
6561
|
+
/** Double confirmation. */
|
|
6496
6562
|
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
6497
6563
|
}
|
|
6498
6564
|
interface SubmissionContactMappingSkipped {
|
|
@@ -10514,13 +10580,7 @@ interface UpdateSubmission {
|
|
|
10514
10580
|
* @readonly
|
|
10515
10581
|
*/
|
|
10516
10582
|
namespace?: string;
|
|
10517
|
-
/**
|
|
10518
|
-
* Status of the submission.
|
|
10519
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
10520
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
10521
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
10522
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
10523
|
-
*/
|
|
10583
|
+
/** Status of the submission. */
|
|
10524
10584
|
status?: SubmissionStatus;
|
|
10525
10585
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
10526
10586
|
submissions?: Record<string, any>;
|
|
@@ -4099,6 +4099,67 @@ interface ActionEvent$2 {
|
|
|
4099
4099
|
}
|
|
4100
4100
|
interface Empty$2 {
|
|
4101
4101
|
}
|
|
4102
|
+
interface GetFormSummaryRequest {
|
|
4103
|
+
/** Id of the form to retrieve. */
|
|
4104
|
+
formId?: string;
|
|
4105
|
+
}
|
|
4106
|
+
interface GetFormSummaryResponse {
|
|
4107
|
+
/** The retrieved form field summary. */
|
|
4108
|
+
formSummary?: FormSummary;
|
|
4109
|
+
}
|
|
4110
|
+
interface FormSummary {
|
|
4111
|
+
/** Form ID. */
|
|
4112
|
+
_id?: string;
|
|
4113
|
+
/** Summarized form fields. */
|
|
4114
|
+
fields?: Field[];
|
|
4115
|
+
}
|
|
4116
|
+
declare enum FieldInputType {
|
|
4117
|
+
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
4118
|
+
STRING = "STRING",
|
|
4119
|
+
NUMBER = "NUMBER",
|
|
4120
|
+
RATING = "RATING",
|
|
4121
|
+
BOOLEAN = "BOOLEAN",
|
|
4122
|
+
ARRAY = "ARRAY",
|
|
4123
|
+
OBJECT = "OBJECT",
|
|
4124
|
+
WIX_FILE = "WIX_FILE",
|
|
4125
|
+
SIGNATURE = "SIGNATURE",
|
|
4126
|
+
PAYMENT = "PAYMENT",
|
|
4127
|
+
MULTILINE_ADDRESS = "MULTILINE_ADDRESS",
|
|
4128
|
+
DATE = "DATE",
|
|
4129
|
+
TIME = "TIME",
|
|
4130
|
+
DATE_TIME = "DATE_TIME",
|
|
4131
|
+
EMAIL = "EMAIL",
|
|
4132
|
+
URL = "URL",
|
|
4133
|
+
UUID = "UUID",
|
|
4134
|
+
PHONE = "PHONE",
|
|
4135
|
+
URI = "URI",
|
|
4136
|
+
HOSTNAME = "HOSTNAME",
|
|
4137
|
+
COLOR_HEX = "COLOR_HEX",
|
|
4138
|
+
CURRENCY = "CURRENCY",
|
|
4139
|
+
LANGUAGE = "LANGUAGE",
|
|
4140
|
+
DATE_OPTIONAL_TIME = "DATE_OPTIONAL_TIME"
|
|
4141
|
+
}
|
|
4142
|
+
interface FieldOption {
|
|
4143
|
+
/** Selectable option label */
|
|
4144
|
+
label?: string | null;
|
|
4145
|
+
/** Selectable option value, which is saved to DB. */
|
|
4146
|
+
value?: string | null;
|
|
4147
|
+
}
|
|
4148
|
+
interface Field {
|
|
4149
|
+
/** Definition of a target where the value of field belongs. */
|
|
4150
|
+
target?: string | null;
|
|
4151
|
+
/** Label of the field */
|
|
4152
|
+
label?: string | null;
|
|
4153
|
+
/** Input type of the field */
|
|
4154
|
+
type?: FieldInputType;
|
|
4155
|
+
/** List of options to select from */
|
|
4156
|
+
options?: FieldOption[];
|
|
4157
|
+
/**
|
|
4158
|
+
* Flag indicating whether field is deleted.
|
|
4159
|
+
* Default: false.
|
|
4160
|
+
*/
|
|
4161
|
+
deleted?: boolean;
|
|
4162
|
+
}
|
|
4102
4163
|
interface MessageEnvelope$2 {
|
|
4103
4164
|
/** App instance ID. */
|
|
4104
4165
|
instanceId?: string | null;
|
|
@@ -5295,7 +5356,11 @@ type index_d$2_CreateFormResponseNonNullableFields = CreateFormResponseNonNullab
|
|
|
5295
5356
|
type index_d$2_DeleteFormOptions = DeleteFormOptions;
|
|
5296
5357
|
type index_d$2_DeleteFormRequest = DeleteFormRequest;
|
|
5297
5358
|
type index_d$2_DeleteFormResponse = DeleteFormResponse;
|
|
5359
|
+
type index_d$2_Field = Field;
|
|
5298
5360
|
type index_d$2_FieldIdBasedErrorDetails = FieldIdBasedErrorDetails;
|
|
5361
|
+
type index_d$2_FieldInputType = FieldInputType;
|
|
5362
|
+
declare const index_d$2_FieldInputType: typeof FieldInputType;
|
|
5363
|
+
type index_d$2_FieldOption = FieldOption;
|
|
5299
5364
|
type index_d$2_Fieldset = Fieldset;
|
|
5300
5365
|
declare const index_d$2_Fieldset: typeof Fieldset;
|
|
5301
5366
|
type index_d$2_FormChanged = FormChanged;
|
|
@@ -5303,6 +5368,7 @@ type index_d$2_FormDeleted = FormDeleted;
|
|
|
5303
5368
|
type index_d$2_FormFieldV2ApiValidationErrorDetails = FormFieldV2ApiValidationErrorDetails;
|
|
5304
5369
|
type index_d$2_FormNonNullableFields = FormNonNullableFields;
|
|
5305
5370
|
type index_d$2_FormProviderRestrictions = FormProviderRestrictions;
|
|
5371
|
+
type index_d$2_FormSummary = FormSummary;
|
|
5306
5372
|
type index_d$2_FormsQueryBuilder = FormsQueryBuilder;
|
|
5307
5373
|
type index_d$2_FormsQueryResult = FormsQueryResult;
|
|
5308
5374
|
type index_d$2_FormsSchemaProvidersConfig = FormsSchemaProvidersConfig;
|
|
@@ -5313,6 +5379,8 @@ type index_d$2_GetFormOptions = GetFormOptions;
|
|
|
5313
5379
|
type index_d$2_GetFormRequest = GetFormRequest;
|
|
5314
5380
|
type index_d$2_GetFormResponse = GetFormResponse;
|
|
5315
5381
|
type index_d$2_GetFormResponseNonNullableFields = GetFormResponseNonNullableFields;
|
|
5382
|
+
type index_d$2_GetFormSummaryRequest = GetFormSummaryRequest;
|
|
5383
|
+
type index_d$2_GetFormSummaryResponse = GetFormSummaryResponse;
|
|
5316
5384
|
type index_d$2_ListDeletedFormsOptions = ListDeletedFormsOptions;
|
|
5317
5385
|
type index_d$2_ListDeletedFormsOrder = ListDeletedFormsOrder;
|
|
5318
5386
|
declare const index_d$2_ListDeletedFormsOrder: typeof ListDeletedFormsOrder;
|
|
@@ -5369,7 +5437,7 @@ declare const index_d$2_removeFormFromTrashBin: typeof removeFormFromTrashBin;
|
|
|
5369
5437
|
declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
5370
5438
|
declare const index_d$2_updateForm: typeof updateForm;
|
|
5371
5439
|
declare namespace index_d$2 {
|
|
5372
|
-
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DatePicker$1 as DatePicker, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type index_d$2_FieldIdBasedErrorDetails as FieldIdBasedErrorDetails, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, index_d$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPayment$1 as FixedPayment, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type index_d$2_FormFieldV2ApiValidationErrorDetails as FormFieldV2ApiValidationErrorDetails, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type index_d$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, ImageFit$1 as ImageFit, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsProvidersConfigsRequest as ListFormsProvidersConfigsRequest, type index_d$2_ListFormsProvidersConfigsResponse as ListFormsProvidersConfigsResponse, type index_d$2_ListFormsProvidersConfigsResponseNonNullableFields as ListFormsProvidersConfigsResponseNonNullableFields, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type index_d$2_NestedFormFieldsMissingErrorDetails as NestedFormFieldsMissingErrorDetails, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type index_d$2_NonExistingNestedFormsErrorDetails as NonExistingNestedFormsErrorDetails, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$1 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentInput$1 as PaymentInput, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type index_d$2_ProductIdBasedErrorDetails as ProductIdBasedErrorDetails, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichText$1 as RichText, type index_d$2_RuleIdBasedErrorDetails as RuleIdBasedErrorDetails, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, type index_d$2_StepIdBasedErrorDetails as StepIdBasedErrorDetails, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, type Tags$1 as Tags, type TagsOption$1 as TagsOption, Target$1 as Target, type index_d$2_TargetBasedErrorDetails as TargetBasedErrorDetails, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, Type$1 as Type, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_listFormsProvidersConfigs as listFormsProvidersConfigs, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$2 as updateExtendedFields, index_d$2_updateForm as updateForm };
|
|
5440
|
+
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DatePicker$1 as DatePicker, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type index_d$2_Field as Field, type FieldGroup$1 as FieldGroup, type index_d$2_FieldIdBasedErrorDetails as FieldIdBasedErrorDetails, index_d$2_FieldInputType as FieldInputType, type index_d$2_FieldOption as FieldOption, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, index_d$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPayment$1 as FixedPayment, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type index_d$2_FormFieldV2ApiValidationErrorDetails as FormFieldV2ApiValidationErrorDetails, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type index_d$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, type index_d$2_FormSummary as FormSummary, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type 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_GetFormSummaryRequest as GetFormSummaryRequest, type index_d$2_GetFormSummaryResponse as GetFormSummaryResponse, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, ImageFit$1 as ImageFit, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsProvidersConfigsRequest as ListFormsProvidersConfigsRequest, type index_d$2_ListFormsProvidersConfigsResponse as ListFormsProvidersConfigsResponse, type index_d$2_ListFormsProvidersConfigsResponseNonNullableFields as ListFormsProvidersConfigsResponseNonNullableFields, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type index_d$2_NestedFormFieldsMissingErrorDetails as NestedFormFieldsMissingErrorDetails, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type index_d$2_NonExistingNestedFormsErrorDetails as NonExistingNestedFormsErrorDetails, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$1 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentInput$1 as PaymentInput, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type index_d$2_ProductIdBasedErrorDetails as ProductIdBasedErrorDetails, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichText$1 as RichText, type index_d$2_RuleIdBasedErrorDetails as RuleIdBasedErrorDetails, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, type index_d$2_StepIdBasedErrorDetails as StepIdBasedErrorDetails, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, type Tags$1 as Tags, type TagsOption$1 as TagsOption, Target$1 as Target, type index_d$2_TargetBasedErrorDetails as TargetBasedErrorDetails, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, Type$1 as Type, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_listFormsProvidersConfigs as listFormsProvidersConfigs, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$2 as updateExtendedFields, index_d$2_updateForm as updateForm };
|
|
5373
5441
|
}
|
|
5374
5442
|
|
|
5375
5443
|
/**
|
|
@@ -5471,9 +5539,13 @@ interface ExtendedFields$1 {
|
|
|
5471
5539
|
}
|
|
5472
5540
|
declare enum SubmissionStatus$1 {
|
|
5473
5541
|
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
5542
|
+
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
5474
5543
|
PENDING = "PENDING",
|
|
5544
|
+
/** A submission is recorded in the Wix Forms collection. */
|
|
5475
5545
|
CONFIRMED = "CONFIRMED",
|
|
5546
|
+
/** A form submission requiring payment is created. */
|
|
5476
5547
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
5548
|
+
/** An order of a form submission is canceled. */
|
|
5477
5549
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
5478
5550
|
}
|
|
5479
5551
|
interface OrderDetails$1 {
|
|
@@ -5501,13 +5573,7 @@ interface FormSubmission$1 {
|
|
|
5501
5573
|
* @readonly
|
|
5502
5574
|
*/
|
|
5503
5575
|
namespace?: string;
|
|
5504
|
-
/**
|
|
5505
|
-
* Status of the submission.
|
|
5506
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
5507
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
5508
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
5509
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
5510
|
-
*/
|
|
5576
|
+
/** Status of the submission. */
|
|
5511
5577
|
status?: SubmissionStatus$1;
|
|
5512
5578
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
5513
5579
|
submissions?: Record<string, any>;
|
|
@@ -6349,13 +6415,7 @@ interface FormSubmission {
|
|
|
6349
6415
|
* @readonly
|
|
6350
6416
|
*/
|
|
6351
6417
|
namespace?: string;
|
|
6352
|
-
/**
|
|
6353
|
-
* Status of the submission.
|
|
6354
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
6355
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
6356
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
6357
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
6358
|
-
*/
|
|
6418
|
+
/** Status of the submission. */
|
|
6359
6419
|
status?: SubmissionStatus;
|
|
6360
6420
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
6361
6421
|
submissions?: Record<string, any>;
|
|
@@ -6390,9 +6450,13 @@ interface FormSubmission {
|
|
|
6390
6450
|
}
|
|
6391
6451
|
declare enum SubmissionStatus {
|
|
6392
6452
|
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
6453
|
+
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
6393
6454
|
PENDING = "PENDING",
|
|
6455
|
+
/** A submission is recorded in the Wix Forms collection. */
|
|
6394
6456
|
CONFIRMED = "CONFIRMED",
|
|
6457
|
+
/** A form submission requiring payment is created. */
|
|
6395
6458
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
6459
|
+
/** An order of a form submission is canceled. */
|
|
6396
6460
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
6397
6461
|
}
|
|
6398
6462
|
interface Submitter extends SubmitterSubmitterOneOf {
|
|
@@ -6492,7 +6556,9 @@ interface MarketingSubscriptionDetails {
|
|
|
6492
6556
|
optInLevel?: OptInLevel;
|
|
6493
6557
|
}
|
|
6494
6558
|
declare enum OptInLevel {
|
|
6559
|
+
/** Single confirmation. */
|
|
6495
6560
|
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
6561
|
+
/** Double confirmation. */
|
|
6496
6562
|
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
6497
6563
|
}
|
|
6498
6564
|
interface SubmissionContactMappingSkipped {
|
|
@@ -10514,13 +10580,7 @@ interface UpdateSubmission {
|
|
|
10514
10580
|
* @readonly
|
|
10515
10581
|
*/
|
|
10516
10582
|
namespace?: string;
|
|
10517
|
-
/**
|
|
10518
|
-
* Status of the submission.
|
|
10519
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
10520
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
10521
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
10522
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
10523
|
-
*/
|
|
10583
|
+
/** Status of the submission. */
|
|
10524
10584
|
status?: SubmissionStatus;
|
|
10525
10585
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
10526
10586
|
submissions?: Record<string, any>;
|
|
@@ -8560,9 +8560,13 @@ interface ExtendedFields$3 {
|
|
|
8560
8560
|
}
|
|
8561
8561
|
declare enum SubmissionStatus$3 {
|
|
8562
8562
|
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
8563
|
+
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
8563
8564
|
PENDING = "PENDING",
|
|
8565
|
+
/** A submission is recorded in the Wix Forms collection. */
|
|
8564
8566
|
CONFIRMED = "CONFIRMED",
|
|
8567
|
+
/** A form submission requiring payment is created. */
|
|
8565
8568
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
8569
|
+
/** An order of a form submission is canceled. */
|
|
8566
8570
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
8567
8571
|
}
|
|
8568
8572
|
interface OrderDetails$3 {
|
|
@@ -8590,13 +8594,7 @@ interface FormSubmission$3 {
|
|
|
8590
8594
|
* @readonly
|
|
8591
8595
|
*/
|
|
8592
8596
|
namespace?: string;
|
|
8593
|
-
/**
|
|
8594
|
-
* Status of the submission.
|
|
8595
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
8596
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
8597
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
8598
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
8599
|
-
*/
|
|
8597
|
+
/** Status of the submission. */
|
|
8600
8598
|
status?: SubmissionStatus$3;
|
|
8601
8599
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
8602
8600
|
submissions?: Record<string, any>;
|
|
@@ -9079,9 +9077,13 @@ interface ExtendedFields$2 {
|
|
|
9079
9077
|
}
|
|
9080
9078
|
declare enum SubmissionStatus$2 {
|
|
9081
9079
|
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
9080
|
+
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
9082
9081
|
PENDING = "PENDING",
|
|
9082
|
+
/** A submission is recorded in the Wix Forms collection. */
|
|
9083
9083
|
CONFIRMED = "CONFIRMED",
|
|
9084
|
+
/** A form submission requiring payment is created. */
|
|
9084
9085
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
9086
|
+
/** An order of a form submission is canceled. */
|
|
9085
9087
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
9086
9088
|
}
|
|
9087
9089
|
interface OrderDetails$2 {
|
|
@@ -9109,13 +9111,7 @@ interface FormSubmission$2 {
|
|
|
9109
9111
|
* @readonly
|
|
9110
9112
|
*/
|
|
9111
9113
|
namespace?: string;
|
|
9112
|
-
/**
|
|
9113
|
-
* Status of the submission.
|
|
9114
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
9115
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
9116
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
9117
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
9118
|
-
*/
|
|
9114
|
+
/** Status of the submission. */
|
|
9119
9115
|
status?: SubmissionStatus$2;
|
|
9120
9116
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
9121
9117
|
submissions?: Record<string, any>;
|
|
@@ -9560,13 +9556,7 @@ interface FormSubmission$1 {
|
|
|
9560
9556
|
* @readonly
|
|
9561
9557
|
*/
|
|
9562
9558
|
namespace?: string;
|
|
9563
|
-
/**
|
|
9564
|
-
* Status of the submission.
|
|
9565
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
9566
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
9567
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
9568
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
9569
|
-
*/
|
|
9559
|
+
/** Status of the submission. */
|
|
9570
9560
|
status?: SubmissionStatus$1;
|
|
9571
9561
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
9572
9562
|
submissions?: Record<string, any>;
|
|
@@ -9601,9 +9591,13 @@ interface FormSubmission$1 {
|
|
|
9601
9591
|
}
|
|
9602
9592
|
declare enum SubmissionStatus$1 {
|
|
9603
9593
|
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
9594
|
+
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
9604
9595
|
PENDING = "PENDING",
|
|
9596
|
+
/** A submission is recorded in the Wix Forms collection. */
|
|
9605
9597
|
CONFIRMED = "CONFIRMED",
|
|
9598
|
+
/** A form submission requiring payment is created. */
|
|
9606
9599
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
9600
|
+
/** An order of a form submission is canceled. */
|
|
9607
9601
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
9608
9602
|
}
|
|
9609
9603
|
interface Submitter$1 extends SubmitterSubmitterOneOf$1 {
|
|
@@ -10288,13 +10282,7 @@ interface FormSubmission {
|
|
|
10288
10282
|
* @readonly
|
|
10289
10283
|
*/
|
|
10290
10284
|
namespace?: string;
|
|
10291
|
-
/**
|
|
10292
|
-
* Status of the submission.
|
|
10293
|
-
* - `PENDING`: A submission is created, but has not yet been recorded in the Wix Forms collection.
|
|
10294
|
-
* - `PAYMENT_WAITING`: A form submission requiring payment is created.
|
|
10295
|
-
* - `PAYMENT_CANCELED`: An order of a form submission is canceled.
|
|
10296
|
-
* - `CONFIRMED`: A submission is recorded in the Wix Forms collection.
|
|
10297
|
-
*/
|
|
10285
|
+
/** Status of the submission. */
|
|
10298
10286
|
status?: SubmissionStatus;
|
|
10299
10287
|
/** Submission values where `key` is the form field and `value` is the data submitted for the given field. */
|
|
10300
10288
|
submissions?: Record<string, any>;
|
|
@@ -10329,9 +10317,13 @@ interface FormSubmission {
|
|
|
10329
10317
|
}
|
|
10330
10318
|
declare enum SubmissionStatus {
|
|
10331
10319
|
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
10320
|
+
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
10332
10321
|
PENDING = "PENDING",
|
|
10322
|
+
/** A submission is recorded in the Wix Forms collection. */
|
|
10333
10323
|
CONFIRMED = "CONFIRMED",
|
|
10324
|
+
/** A form submission requiring payment is created. */
|
|
10334
10325
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
10326
|
+
/** An order of a form submission is canceled. */
|
|
10335
10327
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
10336
10328
|
}
|
|
10337
10329
|
interface Submitter extends SubmitterSubmitterOneOf {
|