@wix/forms 1.0.160 → 1.0.161
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.161",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@wix/forms_form-spam-submission-reports": "1.0.20",
|
|
23
23
|
"@wix/forms_form-submissions": "1.0.28",
|
|
24
|
-
"@wix/forms_forms": "1.0.
|
|
25
|
-
"@wix/forms_submissions": "1.0.
|
|
24
|
+
"@wix/forms_forms": "1.0.35",
|
|
25
|
+
"@wix/forms_submissions": "1.0.67"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"glob": "^10.4.1",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"fqdn": ""
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "217e4df0bbe7e75a6f1a09d3e4f95e9e124e40d26c9e7dc0ae583444"
|
|
51
51
|
}
|
|
@@ -2874,7 +2874,8 @@ declare enum PaymentComponentType$1 {
|
|
|
2874
2874
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2875
2875
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
2876
2876
|
DONATION_INPUT = "DONATION_INPUT",
|
|
2877
|
-
PAYMENT_INPUT = "PAYMENT_INPUT"
|
|
2877
|
+
PAYMENT_INPUT = "PAYMENT_INPUT",
|
|
2878
|
+
FIXED_PAYMENT = "FIXED_PAYMENT"
|
|
2878
2879
|
}
|
|
2879
2880
|
interface ProductCheckboxGroup$1 {
|
|
2880
2881
|
/** Label of the field. */
|
|
@@ -2949,11 +2950,17 @@ interface PaymentInput$1 {
|
|
|
2949
2950
|
showLabel?: boolean | null;
|
|
2950
2951
|
/** Placeholder of custom option input */
|
|
2951
2952
|
placeholder?: string | null;
|
|
2953
|
+
}
|
|
2954
|
+
interface FixedPayment$1 {
|
|
2955
|
+
/** Label of the field. */
|
|
2956
|
+
label?: string | null;
|
|
2957
|
+
/** Description of the field. */
|
|
2958
|
+
description?: RichContent$1;
|
|
2952
2959
|
/**
|
|
2953
|
-
* Flag identifying
|
|
2960
|
+
* Flag identifying to hide or not label
|
|
2954
2961
|
* Default: true
|
|
2955
2962
|
*/
|
|
2956
|
-
|
|
2963
|
+
showLabel?: boolean | null;
|
|
2957
2964
|
}
|
|
2958
2965
|
declare enum MultilineAddressComponentType$1 {
|
|
2959
2966
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -3225,6 +3232,8 @@ interface Payment$1 extends PaymentComponentTypeOptionsOneOf$1 {
|
|
|
3225
3232
|
donationInputOptions?: DonationInput$1;
|
|
3226
3233
|
/** Payment input field. */
|
|
3227
3234
|
paymentInputOptions?: PaymentInput$1;
|
|
3235
|
+
/** Fixed payment field. */
|
|
3236
|
+
fixedPaymentOptions?: FixedPayment$1;
|
|
3228
3237
|
/**
|
|
3229
3238
|
* Component type of the payment input field.
|
|
3230
3239
|
* @readonly
|
|
@@ -3241,6 +3250,8 @@ interface PaymentComponentTypeOptionsOneOf$1 {
|
|
|
3241
3250
|
donationInputOptions?: DonationInput$1;
|
|
3242
3251
|
/** Payment input field. */
|
|
3243
3252
|
paymentInputOptions?: PaymentInput$1;
|
|
3253
|
+
/** Fixed payment field. */
|
|
3254
|
+
fixedPaymentOptions?: FixedPayment$1;
|
|
3244
3255
|
}
|
|
3245
3256
|
interface InputFieldMultilineAddress$1 extends InputFieldMultilineAddressComponentTypeOptionsOneOf$1 {
|
|
3246
3257
|
/** Multiline address input field. */
|
|
@@ -4633,10 +4644,14 @@ interface DonationInputNonNullableFields {
|
|
|
4633
4644
|
interface PaymentInputNonNullableFields {
|
|
4634
4645
|
description?: RichContentNonNullableFields;
|
|
4635
4646
|
}
|
|
4647
|
+
interface FixedPaymentNonNullableFields {
|
|
4648
|
+
description?: RichContentNonNullableFields;
|
|
4649
|
+
}
|
|
4636
4650
|
interface PaymentNonNullableFields {
|
|
4637
4651
|
checkboxGroupOptions?: ProductCheckboxGroupNonNullableFields;
|
|
4638
4652
|
donationInputOptions?: DonationInputNonNullableFields;
|
|
4639
4653
|
paymentInputOptions?: PaymentInputNonNullableFields;
|
|
4654
|
+
fixedPaymentOptions?: FixedPaymentNonNullableFields;
|
|
4640
4655
|
componentType: PaymentComponentType$1;
|
|
4641
4656
|
validation?: PaymentTypeNonNullableFields;
|
|
4642
4657
|
}
|
|
@@ -5383,7 +5398,7 @@ declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
5383
5398
|
declare const context$2_updateExtendedFields: typeof updateExtendedFields;
|
|
5384
5399
|
declare const context$2_updateForm: typeof updateForm;
|
|
5385
5400
|
declare namespace context$2 {
|
|
5386
|
-
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 DateOptions$1 as DateOptions, type DatePicker$1 as DatePicker, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type 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, FirstDayOfWeekEnumFirstDayOfWeek$1 as FirstDayOfWeekEnumFirstDayOfWeek, 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 TimeOptions$1 as TimeOptions, Type$1 as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, 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, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
|
|
5401
|
+
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 DateOptions$1 as DateOptions, type DatePicker$1 as DatePicker, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type 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, FirstDayOfWeekEnumFirstDayOfWeek$1 as FirstDayOfWeekEnumFirstDayOfWeek, 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 TimeOptions$1 as TimeOptions, Type$1 as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, 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, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
|
|
5387
5402
|
}
|
|
5388
5403
|
|
|
5389
5404
|
/**
|
|
@@ -8862,7 +8877,8 @@ declare enum PaymentComponentType {
|
|
|
8862
8877
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
8863
8878
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
8864
8879
|
DONATION_INPUT = "DONATION_INPUT",
|
|
8865
|
-
PAYMENT_INPUT = "PAYMENT_INPUT"
|
|
8880
|
+
PAYMENT_INPUT = "PAYMENT_INPUT",
|
|
8881
|
+
FIXED_PAYMENT = "FIXED_PAYMENT"
|
|
8866
8882
|
}
|
|
8867
8883
|
interface ProductCheckboxGroup {
|
|
8868
8884
|
/** Label of the field. */
|
|
@@ -8937,11 +8953,17 @@ interface PaymentInput {
|
|
|
8937
8953
|
showLabel?: boolean | null;
|
|
8938
8954
|
/** Placeholder of custom option input */
|
|
8939
8955
|
placeholder?: string | null;
|
|
8956
|
+
}
|
|
8957
|
+
interface FixedPayment {
|
|
8958
|
+
/** Label of the field. */
|
|
8959
|
+
label?: string | null;
|
|
8960
|
+
/** Description of the field. */
|
|
8961
|
+
description?: RichContent;
|
|
8940
8962
|
/**
|
|
8941
|
-
* Flag identifying
|
|
8963
|
+
* Flag identifying to hide or not label
|
|
8942
8964
|
* Default: true
|
|
8943
8965
|
*/
|
|
8944
|
-
|
|
8966
|
+
showLabel?: boolean | null;
|
|
8945
8967
|
}
|
|
8946
8968
|
declare enum MultilineAddressComponentType {
|
|
8947
8969
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -9213,6 +9235,8 @@ interface Payment extends PaymentComponentTypeOptionsOneOf {
|
|
|
9213
9235
|
donationInputOptions?: DonationInput;
|
|
9214
9236
|
/** Payment input field. */
|
|
9215
9237
|
paymentInputOptions?: PaymentInput;
|
|
9238
|
+
/** Fixed payment field. */
|
|
9239
|
+
fixedPaymentOptions?: FixedPayment;
|
|
9216
9240
|
/**
|
|
9217
9241
|
* Component type of the payment input field.
|
|
9218
9242
|
* @readonly
|
|
@@ -9229,6 +9253,8 @@ interface PaymentComponentTypeOptionsOneOf {
|
|
|
9229
9253
|
donationInputOptions?: DonationInput;
|
|
9230
9254
|
/** Payment input field. */
|
|
9231
9255
|
paymentInputOptions?: PaymentInput;
|
|
9256
|
+
/** Fixed payment field. */
|
|
9257
|
+
fixedPaymentOptions?: FixedPayment;
|
|
9232
9258
|
}
|
|
9233
9259
|
interface InputFieldMultilineAddress extends InputFieldMultilineAddressComponentTypeOptionsOneOf {
|
|
9234
9260
|
/** Multiline address input field. */
|
|
@@ -10976,6 +11002,7 @@ type context_FirstDayOfWeek = FirstDayOfWeek;
|
|
|
10976
11002
|
declare const context_FirstDayOfWeek: typeof FirstDayOfWeek;
|
|
10977
11003
|
type context_FirstDayOfWeekEnumFirstDayOfWeek = FirstDayOfWeekEnumFirstDayOfWeek;
|
|
10978
11004
|
declare const context_FirstDayOfWeekEnumFirstDayOfWeek: typeof FirstDayOfWeekEnumFirstDayOfWeek;
|
|
11005
|
+
type context_FixedPayment = FixedPayment;
|
|
10979
11006
|
type context_FixedPriceOptions = FixedPriceOptions;
|
|
10980
11007
|
type context_FontSizeData = FontSizeData;
|
|
10981
11008
|
type context_FontType = FontType;
|
|
@@ -11352,7 +11379,7 @@ declare const context_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
11352
11379
|
declare const context_updateSubmission: typeof updateSubmission;
|
|
11353
11380
|
declare const context_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
11354
11381
|
declare namespace context {
|
|
11355
|
-
export { type context_ActionEvent as ActionEvent, type context_AddressInfo as AddressInfo, type context_AddressLine2 as AddressLine2, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_ArrayErrorMessages as ArrayErrorMessages, type context_ArrayItems as ArrayItems, type context_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context_ArrayType as ArrayType, type context_ArrayTypeArrayItems as ArrayTypeArrayItems, type context_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, context_BooleanComponentType as BooleanComponentType, type context_BooleanErrorMessages as BooleanErrorMessages, type context_BooleanType as BooleanType, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreakPoint as BreakPoint, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, context_ButtonDataType as ButtonDataType, type context_CaptionData as CaptionData, type context_CellStyle as CellStyle, type context_Checkbox as Checkbox, type context_CheckboxGroup as CheckboxGroup, type context_Checkout as Checkout, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCustomOption as CommonCustomOption, context_ComponentType as ComponentType, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, context_ContactField as ContactField, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type context_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type context_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomFieldInfo as CustomFieldInfo, type context_CustomOption as CustomOption, type context_DataExtensionsDetails as DataExtensionsDetails, type context_DateInput as DateInput, type context_DateOptions as DateOptions, type context_DatePicker as DatePicker, type context_DatePickerOptions as DatePickerOptions, type context_DateTimeConstraints as DateTimeConstraints, type context_DateTimeInput as DateTimeInput, type context_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context_DateTimeInputType as DateTimeInputType, type context_DateTimeOptions as DateTimeOptions, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DefaultCountryConfig as DefaultCountryConfig, type context_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DisplayField as DisplayField, type context_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context_DividerData as DividerData, type context_DocumentReady as DocumentReady, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DonationInput as DonationInput, type context_DonationInputOption as DonationInputOption, type context_Dropdown as Dropdown, type context_DropdownCustomOption as DropdownCustomOption, type context_DropdownOption as DropdownOption, type context_DynamicPriceOptions as DynamicPriceOptions, type context_EmailInfo as EmailInfo, context_EmailInfoTag as EmailInfoTag, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_ExtendedFields as ExtendedFields, type context_FieldGroup as FieldGroup, type context_FieldOverrides as FieldOverrides, context_FieldType as FieldType, type context_FieldsOverrides as FieldsOverrides, type context_FieldsSettings as FieldsSettings, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FileUpload as FileUpload, context_FirstDayOfWeek as FirstDayOfWeek, context_FirstDayOfWeekEnumFirstDayOfWeek as FirstDayOfWeekEnumFirstDayOfWeek, type context_FixedPriceOptions as FixedPriceOptions, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_Form as Form, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormField as FormField, type context_FormFieldContactInfo as FormFieldContactInfo, type context_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context_FormFieldV2 as FormFieldV2, type context_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context_FormLayout as FormLayout, type context_FormOverride as FormOverride, type context_FormProperties as FormProperties, type context_FormRule as FormRule, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, context_Format as Format, context_FormatEnumFormat as FormatEnumFormat, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionDocumentRequest as GetSubmissionDocumentRequest, type context_GetSubmissionDocumentResponse as GetSubmissionDocumentResponse, type context_GetSubmissionDocumentResponseNonNullableFields as GetSubmissionDocumentResponseNonNullableFields, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_Gradient as Gradient, type context_Group as Group, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_Header as Header, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Image as Image, type context_ImageData as ImageData, context_ImageFit as ImageFit, context_InitialExpandedItems as InitialExpandedItems, type context_InputField as InputField, type context_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context_InputFieldArrayType as InputFieldArrayType, type context_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context_InputFieldBooleanType as InputFieldBooleanType, type context_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context_InputFieldIntegerType as InputFieldIntegerType, type context_InputFieldMultilineAddress as InputFieldMultilineAddress, type context_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context_InputFieldNumberType as InputFieldNumberType, type context_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context_InputFieldObjectType as InputFieldObjectType, type context_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context_InputFieldStringType as InputFieldStringType, type context_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context_InputType as InputType, type context_IntegerType as IntegerType, type context_IsFormSubmittableRequest as IsFormSubmittableRequest, type context_IsFormSubmittableResponse as IsFormSubmittableResponse, type context_Item as Item, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemLayout as ItemLayout, type context_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemStyle as ItemStyle, context_ItemType as ItemType, context_Kind as Kind, type context_Layout as Layout, context_LayoutType as LayoutType, type context_LimitationRule as LimitationRule, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, context_LinkTarget as LinkTarget, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_Margin as Margin, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemMediaOneOf as MediaItemMediaOneOf, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_Mode as Mode, type context_MultilineAddress as MultilineAddress, context_MultilineAddressComponentType as MultilineAddressComponentType, type context_MultilineAddressValidation as MultilineAddressValidation, type context_NestedForm as NestedForm, type context_NestedFormFieldOverrides as NestedFormFieldOverrides, type context_NestedFormOverrides as NestedFormOverrides, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, context_NumberComponentType as NumberComponentType, type context_NumberErrorMessages as NumberErrorMessages, type context_NumberInput as NumberInput, context_NumberOfColumns as NumberOfColumns, type context_NumberType as NumberType, type context_ObjectErrorMessages as ObjectErrorMessages, type context_ObjectType as ObjectType, type context_ObjectTypePropertiesType as ObjectTypePropertiesType, type context_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context_Oembed as Oembed, context_OptInLevel as OptInLevel, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderDetails as OrderDetails, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, context_OverrideEntityType as OverrideEntityType, type context_PDFSettings as PDFSettings, type context_ParagraphData as ParagraphData, type context_Payment as Payment, context_PaymentComponentType as PaymentComponentType, type context_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context_PaymentInput as PaymentInput, type context_PaymentType as PaymentType, type context_Permissions as Permissions, type context_PhoneConstraints as PhoneConstraints, type context_PhoneInfo as PhoneInfo, context_PhoneInfoTag as PhoneInfoTag, type context_PhoneInput as PhoneInput, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollOption as PollOption, type context_PostSubmissionTriggers as PostSubmissionTriggers, type context_PredefinedValidation as PredefinedValidation, type context_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context_PriceType as PriceType, type context_Product as Product, type context_ProductCheckboxGroup as ProductCheckboxGroup, type context_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context_ProductType as ProductType, type context_PropertiesType as PropertiesType, context_PropertiesTypeEnum as PropertiesTypeEnum, type context_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context_QuantityLimit as QuantityLimit, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RadioGroup as RadioGroup, type context_RadioGroupCustomOption as RadioGroupCustomOption, type context_RadioGroupOption as RadioGroupOption, type context_RatingInput as RatingInput, type context_Redirect as Redirect, type context_RedirectOptions as RedirectOptions, type context_Rel as Rel, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, context_RequiredIndicator as RequiredIndicator, context_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context_RequiredIndicatorProperties as RequiredIndicatorProperties, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_RichContent as RichContent, type context_RichText as RichText, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type context_Section as Section, type context_Settings as Settings, type context_Signature as Signature, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Source as Source, context_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, context_Status as Status, type context_Step as Step, context_StringComponentType as StringComponentType, type context_StringErrorMessages as StringErrorMessages, type context_StringType as StringType, type context_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context_StringTypePhoneConstraints as StringTypePhoneConstraints, type context_Styles as Styles, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, type context_SubmissionDocument as SubmissionDocument, type context_SubmissionDocumentDocumentOneOf as SubmissionDocumentDocumentOneOf, context_SubmissionStatus as SubmissionStatus, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitButton as SubmitButton, type context_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context_SubmitContactResponse as SubmitContactResponse, type context_SubmitSettings as SubmitSettings, type context_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context_SubmitSuccessAction as SubmitSuccessAction, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_SubscriptionInfo as SubscriptionInfo, context_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type context_TableCellData as TableCellData, type context_TableData as TableData, context_Tag as Tag, type context_Tags as Tags, type context_TagsOption as TagsOption, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextInput as TextInput, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_ThankYouMessage as ThankYouMessage, type context_ThankYouMessageOptions as ThankYouMessageOptions, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TimeInput as TimeInput, type context_TimeOptions as TimeOptions, context_Type as Type, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, context_UploadFileFormat as UploadFileFormat, type context_UpsertContact as UpsertContact, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_UrlTargetEnumTarget as UrlTargetEnumTarget, type context_Validation as Validation, context_ValidationFormat as ValidationFormat, type context_ValidationValidationOneOf as ValidationValidationOneOf, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, type context_WixFile as WixFile, context_WixFileComponentType as WixFileComponentType, type context_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context__Array as _Array, type context__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context__Boolean as _Boolean, type context__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context__Number as _Number, type context__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context__Object as _Object, type context__ObjectValidationOneOf as _ObjectValidationOneOf, type context__String as _String, type context__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_getSubmissionDocument as getSubmissionDocument, context_listDeletedSubmissions as listDeletedSubmissions, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
11382
|
+
export { type context_ActionEvent as ActionEvent, type context_AddressInfo as AddressInfo, type context_AddressLine2 as AddressLine2, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_ArrayErrorMessages as ArrayErrorMessages, type context_ArrayItems as ArrayItems, type context_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context_ArrayType as ArrayType, type context_ArrayTypeArrayItems as ArrayTypeArrayItems, type context_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, context_BooleanComponentType as BooleanComponentType, type context_BooleanErrorMessages as BooleanErrorMessages, type context_BooleanType as BooleanType, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreakPoint as BreakPoint, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, context_ButtonDataType as ButtonDataType, type context_CaptionData as CaptionData, type context_CellStyle as CellStyle, type context_Checkbox as Checkbox, type context_CheckboxGroup as CheckboxGroup, type context_Checkout as Checkout, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCustomOption as CommonCustomOption, context_ComponentType as ComponentType, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, context_ContactField as ContactField, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type context_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type context_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomFieldInfo as CustomFieldInfo, type context_CustomOption as CustomOption, type context_DataExtensionsDetails as DataExtensionsDetails, type context_DateInput as DateInput, type context_DateOptions as DateOptions, type context_DatePicker as DatePicker, type context_DatePickerOptions as DatePickerOptions, type context_DateTimeConstraints as DateTimeConstraints, type context_DateTimeInput as DateTimeInput, type context_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context_DateTimeInputType as DateTimeInputType, type context_DateTimeOptions as DateTimeOptions, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DefaultCountryConfig as DefaultCountryConfig, type context_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DisplayField as DisplayField, type context_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context_DividerData as DividerData, type context_DocumentReady as DocumentReady, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DonationInput as DonationInput, type context_DonationInputOption as DonationInputOption, type context_Dropdown as Dropdown, type context_DropdownCustomOption as DropdownCustomOption, type context_DropdownOption as DropdownOption, type context_DynamicPriceOptions as DynamicPriceOptions, type context_EmailInfo as EmailInfo, context_EmailInfoTag as EmailInfoTag, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_ExtendedFields as ExtendedFields, type context_FieldGroup as FieldGroup, type context_FieldOverrides as FieldOverrides, context_FieldType as FieldType, type context_FieldsOverrides as FieldsOverrides, type context_FieldsSettings as FieldsSettings, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FileUpload as FileUpload, context_FirstDayOfWeek as FirstDayOfWeek, context_FirstDayOfWeekEnumFirstDayOfWeek as FirstDayOfWeekEnumFirstDayOfWeek, type context_FixedPayment as FixedPayment, type context_FixedPriceOptions as FixedPriceOptions, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_Form as Form, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormField as FormField, type context_FormFieldContactInfo as FormFieldContactInfo, type context_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context_FormFieldV2 as FormFieldV2, type context_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context_FormLayout as FormLayout, type context_FormOverride as FormOverride, type context_FormProperties as FormProperties, type context_FormRule as FormRule, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, context_Format as Format, context_FormatEnumFormat as FormatEnumFormat, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionDocumentRequest as GetSubmissionDocumentRequest, type context_GetSubmissionDocumentResponse as GetSubmissionDocumentResponse, type context_GetSubmissionDocumentResponseNonNullableFields as GetSubmissionDocumentResponseNonNullableFields, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_Gradient as Gradient, type context_Group as Group, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_Header as Header, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Image as Image, type context_ImageData as ImageData, context_ImageFit as ImageFit, context_InitialExpandedItems as InitialExpandedItems, type context_InputField as InputField, type context_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context_InputFieldArrayType as InputFieldArrayType, type context_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context_InputFieldBooleanType as InputFieldBooleanType, type context_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context_InputFieldIntegerType as InputFieldIntegerType, type context_InputFieldMultilineAddress as InputFieldMultilineAddress, type context_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context_InputFieldNumberType as InputFieldNumberType, type context_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context_InputFieldObjectType as InputFieldObjectType, type context_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context_InputFieldStringType as InputFieldStringType, type context_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context_InputType as InputType, type context_IntegerType as IntegerType, type context_IsFormSubmittableRequest as IsFormSubmittableRequest, type context_IsFormSubmittableResponse as IsFormSubmittableResponse, type context_Item as Item, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemLayout as ItemLayout, type context_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemStyle as ItemStyle, context_ItemType as ItemType, context_Kind as Kind, type context_Layout as Layout, context_LayoutType as LayoutType, type context_LimitationRule as LimitationRule, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, context_LinkTarget as LinkTarget, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_Margin as Margin, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemMediaOneOf as MediaItemMediaOneOf, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_Mode as Mode, type context_MultilineAddress as MultilineAddress, context_MultilineAddressComponentType as MultilineAddressComponentType, type context_MultilineAddressValidation as MultilineAddressValidation, type context_NestedForm as NestedForm, type context_NestedFormFieldOverrides as NestedFormFieldOverrides, type context_NestedFormOverrides as NestedFormOverrides, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, context_NumberComponentType as NumberComponentType, type context_NumberErrorMessages as NumberErrorMessages, type context_NumberInput as NumberInput, context_NumberOfColumns as NumberOfColumns, type context_NumberType as NumberType, type context_ObjectErrorMessages as ObjectErrorMessages, type context_ObjectType as ObjectType, type context_ObjectTypePropertiesType as ObjectTypePropertiesType, type context_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context_Oembed as Oembed, context_OptInLevel as OptInLevel, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderDetails as OrderDetails, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, context_OverrideEntityType as OverrideEntityType, type context_PDFSettings as PDFSettings, type context_ParagraphData as ParagraphData, type context_Payment as Payment, context_PaymentComponentType as PaymentComponentType, type context_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context_PaymentInput as PaymentInput, type context_PaymentType as PaymentType, type context_Permissions as Permissions, type context_PhoneConstraints as PhoneConstraints, type context_PhoneInfo as PhoneInfo, context_PhoneInfoTag as PhoneInfoTag, type context_PhoneInput as PhoneInput, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollOption as PollOption, type context_PostSubmissionTriggers as PostSubmissionTriggers, type context_PredefinedValidation as PredefinedValidation, type context_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context_PriceType as PriceType, type context_Product as Product, type context_ProductCheckboxGroup as ProductCheckboxGroup, type context_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context_ProductType as ProductType, type context_PropertiesType as PropertiesType, context_PropertiesTypeEnum as PropertiesTypeEnum, type context_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context_QuantityLimit as QuantityLimit, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RadioGroup as RadioGroup, type context_RadioGroupCustomOption as RadioGroupCustomOption, type context_RadioGroupOption as RadioGroupOption, type context_RatingInput as RatingInput, type context_Redirect as Redirect, type context_RedirectOptions as RedirectOptions, type context_Rel as Rel, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, context_RequiredIndicator as RequiredIndicator, context_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context_RequiredIndicatorProperties as RequiredIndicatorProperties, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_RichContent as RichContent, type context_RichText as RichText, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type context_Section as Section, type context_Settings as Settings, type context_Signature as Signature, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Source as Source, context_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, context_Status as Status, type context_Step as Step, context_StringComponentType as StringComponentType, type context_StringErrorMessages as StringErrorMessages, type context_StringType as StringType, type context_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context_StringTypePhoneConstraints as StringTypePhoneConstraints, type context_Styles as Styles, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, type context_SubmissionDocument as SubmissionDocument, type context_SubmissionDocumentDocumentOneOf as SubmissionDocumentDocumentOneOf, context_SubmissionStatus as SubmissionStatus, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitButton as SubmitButton, type context_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context_SubmitContactResponse as SubmitContactResponse, type context_SubmitSettings as SubmitSettings, type context_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context_SubmitSuccessAction as SubmitSuccessAction, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_SubscriptionInfo as SubscriptionInfo, context_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type context_TableCellData as TableCellData, type context_TableData as TableData, context_Tag as Tag, type context_Tags as Tags, type context_TagsOption as TagsOption, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextInput as TextInput, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_ThankYouMessage as ThankYouMessage, type context_ThankYouMessageOptions as ThankYouMessageOptions, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TimeInput as TimeInput, type context_TimeOptions as TimeOptions, context_Type as Type, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, context_UploadFileFormat as UploadFileFormat, type context_UpsertContact as UpsertContact, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_UrlTargetEnumTarget as UrlTargetEnumTarget, type context_Validation as Validation, context_ValidationFormat as ValidationFormat, type context_ValidationValidationOneOf as ValidationValidationOneOf, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, type context_WixFile as WixFile, context_WixFileComponentType as WixFileComponentType, type context_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context__Array as _Array, type context__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context__Boolean as _Boolean, type context__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context__Number as _Number, type context__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context__Object as _Object, type context__ObjectValidationOneOf as _ObjectValidationOneOf, type context__String as _String, type context__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_getSubmissionDocument as getSubmissionDocument, context_listDeletedSubmissions as listDeletedSubmissions, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
11356
11383
|
}
|
|
11357
11384
|
|
|
11358
11385
|
export { context$1 as formSpamSubmissionReports, context$2 as forms, context as submissions };
|
|
@@ -2874,7 +2874,8 @@ declare enum PaymentComponentType$1 {
|
|
|
2874
2874
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2875
2875
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
2876
2876
|
DONATION_INPUT = "DONATION_INPUT",
|
|
2877
|
-
PAYMENT_INPUT = "PAYMENT_INPUT"
|
|
2877
|
+
PAYMENT_INPUT = "PAYMENT_INPUT",
|
|
2878
|
+
FIXED_PAYMENT = "FIXED_PAYMENT"
|
|
2878
2879
|
}
|
|
2879
2880
|
interface ProductCheckboxGroup$1 {
|
|
2880
2881
|
/** Label of the field. */
|
|
@@ -2949,11 +2950,17 @@ interface PaymentInput$1 {
|
|
|
2949
2950
|
showLabel?: boolean | null;
|
|
2950
2951
|
/** Placeholder of custom option input */
|
|
2951
2952
|
placeholder?: string | null;
|
|
2953
|
+
}
|
|
2954
|
+
interface FixedPayment$1 {
|
|
2955
|
+
/** Label of the field. */
|
|
2956
|
+
label?: string | null;
|
|
2957
|
+
/** Description of the field. */
|
|
2958
|
+
description?: RichContent$1;
|
|
2952
2959
|
/**
|
|
2953
|
-
* Flag identifying
|
|
2960
|
+
* Flag identifying to hide or not label
|
|
2954
2961
|
* Default: true
|
|
2955
2962
|
*/
|
|
2956
|
-
|
|
2963
|
+
showLabel?: boolean | null;
|
|
2957
2964
|
}
|
|
2958
2965
|
declare enum MultilineAddressComponentType$1 {
|
|
2959
2966
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -3225,6 +3232,8 @@ interface Payment$1 extends PaymentComponentTypeOptionsOneOf$1 {
|
|
|
3225
3232
|
donationInputOptions?: DonationInput$1;
|
|
3226
3233
|
/** Payment input field. */
|
|
3227
3234
|
paymentInputOptions?: PaymentInput$1;
|
|
3235
|
+
/** Fixed payment field. */
|
|
3236
|
+
fixedPaymentOptions?: FixedPayment$1;
|
|
3228
3237
|
/**
|
|
3229
3238
|
* Component type of the payment input field.
|
|
3230
3239
|
* @readonly
|
|
@@ -3241,6 +3250,8 @@ interface PaymentComponentTypeOptionsOneOf$1 {
|
|
|
3241
3250
|
donationInputOptions?: DonationInput$1;
|
|
3242
3251
|
/** Payment input field. */
|
|
3243
3252
|
paymentInputOptions?: PaymentInput$1;
|
|
3253
|
+
/** Fixed payment field. */
|
|
3254
|
+
fixedPaymentOptions?: FixedPayment$1;
|
|
3244
3255
|
}
|
|
3245
3256
|
interface InputFieldMultilineAddress$1 extends InputFieldMultilineAddressComponentTypeOptionsOneOf$1 {
|
|
3246
3257
|
/** Multiline address input field. */
|
|
@@ -4633,10 +4644,14 @@ interface DonationInputNonNullableFields {
|
|
|
4633
4644
|
interface PaymentInputNonNullableFields {
|
|
4634
4645
|
description?: RichContentNonNullableFields;
|
|
4635
4646
|
}
|
|
4647
|
+
interface FixedPaymentNonNullableFields {
|
|
4648
|
+
description?: RichContentNonNullableFields;
|
|
4649
|
+
}
|
|
4636
4650
|
interface PaymentNonNullableFields {
|
|
4637
4651
|
checkboxGroupOptions?: ProductCheckboxGroupNonNullableFields;
|
|
4638
4652
|
donationInputOptions?: DonationInputNonNullableFields;
|
|
4639
4653
|
paymentInputOptions?: PaymentInputNonNullableFields;
|
|
4654
|
+
fixedPaymentOptions?: FixedPaymentNonNullableFields;
|
|
4640
4655
|
componentType: PaymentComponentType$1;
|
|
4641
4656
|
validation?: PaymentTypeNonNullableFields;
|
|
4642
4657
|
}
|
|
@@ -5383,7 +5398,7 @@ declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
5383
5398
|
declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
|
|
5384
5399
|
declare const index_d$2_updateForm: typeof updateForm;
|
|
5385
5400
|
declare namespace index_d$2 {
|
|
5386
|
-
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 DateOptions$1 as DateOptions, type DatePicker$1 as DatePicker, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type 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, FirstDayOfWeekEnumFirstDayOfWeek$1 as FirstDayOfWeekEnumFirstDayOfWeek, 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 TimeOptions$1 as TimeOptions, Type$1 as Type, type index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_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, index_d$2_updateExtendedFields as updateExtendedFields, index_d$2_updateForm as updateForm };
|
|
5401
|
+
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 DateOptions$1 as DateOptions, type DatePicker$1 as DatePicker, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type 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, FirstDayOfWeekEnumFirstDayOfWeek$1 as FirstDayOfWeekEnumFirstDayOfWeek, 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 TimeOptions$1 as TimeOptions, Type$1 as Type, type index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_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, index_d$2_updateExtendedFields as updateExtendedFields, index_d$2_updateForm as updateForm };
|
|
5387
5402
|
}
|
|
5388
5403
|
|
|
5389
5404
|
/**
|
|
@@ -8862,7 +8877,8 @@ declare enum PaymentComponentType {
|
|
|
8862
8877
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
8863
8878
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
8864
8879
|
DONATION_INPUT = "DONATION_INPUT",
|
|
8865
|
-
PAYMENT_INPUT = "PAYMENT_INPUT"
|
|
8880
|
+
PAYMENT_INPUT = "PAYMENT_INPUT",
|
|
8881
|
+
FIXED_PAYMENT = "FIXED_PAYMENT"
|
|
8866
8882
|
}
|
|
8867
8883
|
interface ProductCheckboxGroup {
|
|
8868
8884
|
/** Label of the field. */
|
|
@@ -8937,11 +8953,17 @@ interface PaymentInput {
|
|
|
8937
8953
|
showLabel?: boolean | null;
|
|
8938
8954
|
/** Placeholder of custom option input */
|
|
8939
8955
|
placeholder?: string | null;
|
|
8956
|
+
}
|
|
8957
|
+
interface FixedPayment {
|
|
8958
|
+
/** Label of the field. */
|
|
8959
|
+
label?: string | null;
|
|
8960
|
+
/** Description of the field. */
|
|
8961
|
+
description?: RichContent;
|
|
8940
8962
|
/**
|
|
8941
|
-
* Flag identifying
|
|
8963
|
+
* Flag identifying to hide or not label
|
|
8942
8964
|
* Default: true
|
|
8943
8965
|
*/
|
|
8944
|
-
|
|
8966
|
+
showLabel?: boolean | null;
|
|
8945
8967
|
}
|
|
8946
8968
|
declare enum MultilineAddressComponentType {
|
|
8947
8969
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -9213,6 +9235,8 @@ interface Payment extends PaymentComponentTypeOptionsOneOf {
|
|
|
9213
9235
|
donationInputOptions?: DonationInput;
|
|
9214
9236
|
/** Payment input field. */
|
|
9215
9237
|
paymentInputOptions?: PaymentInput;
|
|
9238
|
+
/** Fixed payment field. */
|
|
9239
|
+
fixedPaymentOptions?: FixedPayment;
|
|
9216
9240
|
/**
|
|
9217
9241
|
* Component type of the payment input field.
|
|
9218
9242
|
* @readonly
|
|
@@ -9229,6 +9253,8 @@ interface PaymentComponentTypeOptionsOneOf {
|
|
|
9229
9253
|
donationInputOptions?: DonationInput;
|
|
9230
9254
|
/** Payment input field. */
|
|
9231
9255
|
paymentInputOptions?: PaymentInput;
|
|
9256
|
+
/** Fixed payment field. */
|
|
9257
|
+
fixedPaymentOptions?: FixedPayment;
|
|
9232
9258
|
}
|
|
9233
9259
|
interface InputFieldMultilineAddress extends InputFieldMultilineAddressComponentTypeOptionsOneOf {
|
|
9234
9260
|
/** Multiline address input field. */
|
|
@@ -10976,6 +11002,7 @@ type index_d_FirstDayOfWeek = FirstDayOfWeek;
|
|
|
10976
11002
|
declare const index_d_FirstDayOfWeek: typeof FirstDayOfWeek;
|
|
10977
11003
|
type index_d_FirstDayOfWeekEnumFirstDayOfWeek = FirstDayOfWeekEnumFirstDayOfWeek;
|
|
10978
11004
|
declare const index_d_FirstDayOfWeekEnumFirstDayOfWeek: typeof FirstDayOfWeekEnumFirstDayOfWeek;
|
|
11005
|
+
type index_d_FixedPayment = FixedPayment;
|
|
10979
11006
|
type index_d_FixedPriceOptions = FixedPriceOptions;
|
|
10980
11007
|
type index_d_FontSizeData = FontSizeData;
|
|
10981
11008
|
type index_d_FontType = FontType;
|
|
@@ -11352,7 +11379,7 @@ declare const index_d_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
11352
11379
|
declare const index_d_updateSubmission: typeof updateSubmission;
|
|
11353
11380
|
declare const index_d_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
11354
11381
|
declare namespace index_d {
|
|
11355
|
-
export { type index_d_ActionEvent as ActionEvent, type index_d_AddressInfo as AddressInfo, type index_d_AddressLine2 as AddressLine2, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_ArrayErrorMessages as ArrayErrorMessages, type index_d_ArrayItems as ArrayItems, type index_d_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d_ArrayType as ArrayType, type index_d_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, index_d_BooleanComponentType as BooleanComponentType, type index_d_BooleanErrorMessages as BooleanErrorMessages, type index_d_BooleanType as BooleanType, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreakPoint as BreakPoint, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, index_d_ButtonDataType as ButtonDataType, type index_d_CaptionData as CaptionData, type index_d_CellStyle as CellStyle, type index_d_Checkbox as Checkbox, type index_d_CheckboxGroup as CheckboxGroup, type index_d_Checkout as Checkout, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCustomOption as CommonCustomOption, index_d_ComponentType as ComponentType, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, index_d_ContactField as ContactField, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type index_d_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type index_d_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomFieldInfo as CustomFieldInfo, type index_d_CustomOption as CustomOption, type index_d_DataExtensionsDetails as DataExtensionsDetails, type index_d_DateInput as DateInput, type index_d_DateOptions as DateOptions, type index_d_DatePicker as DatePicker, type index_d_DatePickerOptions as DatePickerOptions, type index_d_DateTimeConstraints as DateTimeConstraints, type index_d_DateTimeInput as DateTimeInput, type index_d_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d_DateTimeInputType as DateTimeInputType, type index_d_DateTimeOptions as DateTimeOptions, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DefaultCountryConfig as DefaultCountryConfig, type index_d_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DisplayField as DisplayField, type index_d_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d_DividerData as DividerData, type index_d_DocumentReady as DocumentReady, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DonationInput as DonationInput, type index_d_DonationInputOption as DonationInputOption, type index_d_Dropdown as Dropdown, type index_d_DropdownCustomOption as DropdownCustomOption, type index_d_DropdownOption as DropdownOption, type index_d_DynamicPriceOptions as DynamicPriceOptions, type index_d_EmailInfo as EmailInfo, index_d_EmailInfoTag as EmailInfoTag, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_ExtendedFields as ExtendedFields, type index_d_FieldGroup as FieldGroup, type index_d_FieldOverrides as FieldOverrides, index_d_FieldType as FieldType, type index_d_FieldsOverrides as FieldsOverrides, type index_d_FieldsSettings as FieldsSettings, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FileUpload as FileUpload, index_d_FirstDayOfWeek as FirstDayOfWeek, index_d_FirstDayOfWeekEnumFirstDayOfWeek as FirstDayOfWeekEnumFirstDayOfWeek, type index_d_FixedPriceOptions as FixedPriceOptions, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_Form as Form, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormField as FormField, type index_d_FormFieldContactInfo as FormFieldContactInfo, type index_d_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d_FormFieldV2 as FormFieldV2, type index_d_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d_FormLayout as FormLayout, type index_d_FormOverride as FormOverride, type index_d_FormProperties as FormProperties, type index_d_FormRule as FormRule, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, index_d_Format as Format, index_d_FormatEnumFormat as FormatEnumFormat, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionDocumentRequest as GetSubmissionDocumentRequest, type index_d_GetSubmissionDocumentResponse as GetSubmissionDocumentResponse, type index_d_GetSubmissionDocumentResponseNonNullableFields as GetSubmissionDocumentResponseNonNullableFields, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_Group as Group, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_Header as Header, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_Image as Image, type index_d_ImageData as ImageData, index_d_ImageFit as ImageFit, index_d_InitialExpandedItems as InitialExpandedItems, type index_d_InputField as InputField, type index_d_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d_InputFieldArrayType as InputFieldArrayType, type index_d_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d_InputFieldBooleanType as InputFieldBooleanType, type index_d_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d_InputFieldIntegerType as InputFieldIntegerType, type index_d_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d_InputFieldNumberType as InputFieldNumberType, type index_d_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d_InputFieldObjectType as InputFieldObjectType, type index_d_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d_InputFieldStringType as InputFieldStringType, type index_d_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d_InputType as InputType, type index_d_IntegerType as IntegerType, type index_d_IsFormSubmittableRequest as IsFormSubmittableRequest, type index_d_IsFormSubmittableResponse as IsFormSubmittableResponse, type index_d_Item as Item, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemLayout as ItemLayout, type index_d_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemStyle as ItemStyle, index_d_ItemType as ItemType, index_d_Kind as Kind, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, type index_d_LimitationRule as LimitationRule, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, index_d_LinkTarget as LinkTarget, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_Margin as Margin, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_Mode as Mode, type index_d_MultilineAddress as MultilineAddress, index_d_MultilineAddressComponentType as MultilineAddressComponentType, type index_d_MultilineAddressValidation as MultilineAddressValidation, type index_d_NestedForm as NestedForm, type index_d_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d_NestedFormOverrides as NestedFormOverrides, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, index_d_NumberComponentType as NumberComponentType, type index_d_NumberErrorMessages as NumberErrorMessages, type index_d_NumberInput as NumberInput, index_d_NumberOfColumns as NumberOfColumns, type index_d_NumberType as NumberType, type index_d_ObjectErrorMessages as ObjectErrorMessages, type index_d_ObjectType as ObjectType, type index_d_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d_Oembed as Oembed, index_d_OptInLevel as OptInLevel, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderDetails as OrderDetails, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, index_d_OverrideEntityType as OverrideEntityType, type index_d_PDFSettings as PDFSettings, type index_d_ParagraphData as ParagraphData, type index_d_Payment as Payment, index_d_PaymentComponentType as PaymentComponentType, type index_d_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d_PaymentInput as PaymentInput, type index_d_PaymentType as PaymentType, type index_d_Permissions as Permissions, type index_d_PhoneConstraints as PhoneConstraints, type index_d_PhoneInfo as PhoneInfo, index_d_PhoneInfoTag as PhoneInfoTag, type index_d_PhoneInput as PhoneInput, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollOption as PollOption, type index_d_PostSubmissionTriggers as PostSubmissionTriggers, type index_d_PredefinedValidation as PredefinedValidation, type index_d_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d_PriceType as PriceType, type index_d_Product as Product, type index_d_ProductCheckboxGroup as ProductCheckboxGroup, type index_d_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d_ProductType as ProductType, type index_d_PropertiesType as PropertiesType, index_d_PropertiesTypeEnum as PropertiesTypeEnum, type index_d_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d_QuantityLimit as QuantityLimit, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RadioGroup as RadioGroup, type index_d_RadioGroupCustomOption as RadioGroupCustomOption, type index_d_RadioGroupOption as RadioGroupOption, type index_d_RatingInput as RatingInput, type index_d_Redirect as Redirect, type index_d_RedirectOptions as RedirectOptions, type index_d_Rel as Rel, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, index_d_RequiredIndicator as RequiredIndicator, index_d_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_RichContent as RichContent, type index_d_RichText as RichText, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type index_d_Section as Section, type index_d_Settings as Settings, type index_d_Signature as Signature, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Source as Source, index_d_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, index_d_Status as Status, type index_d_Step as Step, index_d_StringComponentType as StringComponentType, type index_d_StringErrorMessages as StringErrorMessages, type index_d_StringType as StringType, type index_d_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d_StringTypePhoneConstraints as StringTypePhoneConstraints, type index_d_Styles as Styles, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, type index_d_SubmissionDocument as SubmissionDocument, type index_d_SubmissionDocumentDocumentOneOf as SubmissionDocumentDocumentOneOf, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitButton as SubmitButton, type index_d_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_SubmitSettings as SubmitSettings, type index_d_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d_SubmitSuccessAction as SubmitSuccessAction, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_SubscriptionInfo as SubscriptionInfo, index_d_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, index_d_Tag as Tag, type index_d_Tags as Tags, type index_d_TagsOption as TagsOption, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextInput as TextInput, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_ThankYouMessage as ThankYouMessage, type index_d_ThankYouMessageOptions as ThankYouMessageOptions, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TimeInput as TimeInput, type index_d_TimeOptions as TimeOptions, index_d_Type as Type, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, index_d_UploadFileFormat as UploadFileFormat, type index_d_UpsertContact as UpsertContact, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d_Validation as Validation, index_d_ValidationFormat as ValidationFormat, type index_d_ValidationValidationOneOf as ValidationValidationOneOf, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, type index_d_WixFile as WixFile, index_d_WixFileComponentType as WixFileComponentType, type index_d_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d__Array as _Array, type index_d__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d__Boolean as _Boolean, type index_d__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d__Number as _Number, type index_d__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d__Object as _Object, type index_d__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d__String as _String, type index_d__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_getSubmissionDocument as getSubmissionDocument, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
11382
|
+
export { type index_d_ActionEvent as ActionEvent, type index_d_AddressInfo as AddressInfo, type index_d_AddressLine2 as AddressLine2, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_ArrayErrorMessages as ArrayErrorMessages, type index_d_ArrayItems as ArrayItems, type index_d_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d_ArrayType as ArrayType, type index_d_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, index_d_BooleanComponentType as BooleanComponentType, type index_d_BooleanErrorMessages as BooleanErrorMessages, type index_d_BooleanType as BooleanType, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreakPoint as BreakPoint, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, index_d_ButtonDataType as ButtonDataType, type index_d_CaptionData as CaptionData, type index_d_CellStyle as CellStyle, type index_d_Checkbox as Checkbox, type index_d_CheckboxGroup as CheckboxGroup, type index_d_Checkout as Checkout, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCustomOption as CommonCustomOption, index_d_ComponentType as ComponentType, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, index_d_ContactField as ContactField, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type index_d_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type index_d_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomFieldInfo as CustomFieldInfo, type index_d_CustomOption as CustomOption, type index_d_DataExtensionsDetails as DataExtensionsDetails, type index_d_DateInput as DateInput, type index_d_DateOptions as DateOptions, type index_d_DatePicker as DatePicker, type index_d_DatePickerOptions as DatePickerOptions, type index_d_DateTimeConstraints as DateTimeConstraints, type index_d_DateTimeInput as DateTimeInput, type index_d_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d_DateTimeInputType as DateTimeInputType, type index_d_DateTimeOptions as DateTimeOptions, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DefaultCountryConfig as DefaultCountryConfig, type index_d_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DisplayField as DisplayField, type index_d_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d_DividerData as DividerData, type index_d_DocumentReady as DocumentReady, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DonationInput as DonationInput, type index_d_DonationInputOption as DonationInputOption, type index_d_Dropdown as Dropdown, type index_d_DropdownCustomOption as DropdownCustomOption, type index_d_DropdownOption as DropdownOption, type index_d_DynamicPriceOptions as DynamicPriceOptions, type index_d_EmailInfo as EmailInfo, index_d_EmailInfoTag as EmailInfoTag, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_ExtendedFields as ExtendedFields, type index_d_FieldGroup as FieldGroup, type index_d_FieldOverrides as FieldOverrides, index_d_FieldType as FieldType, type index_d_FieldsOverrides as FieldsOverrides, type index_d_FieldsSettings as FieldsSettings, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FileUpload as FileUpload, index_d_FirstDayOfWeek as FirstDayOfWeek, index_d_FirstDayOfWeekEnumFirstDayOfWeek as FirstDayOfWeekEnumFirstDayOfWeek, type index_d_FixedPayment as FixedPayment, type index_d_FixedPriceOptions as FixedPriceOptions, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_Form as Form, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormField as FormField, type index_d_FormFieldContactInfo as FormFieldContactInfo, type index_d_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d_FormFieldV2 as FormFieldV2, type index_d_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d_FormLayout as FormLayout, type index_d_FormOverride as FormOverride, type index_d_FormProperties as FormProperties, type index_d_FormRule as FormRule, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, index_d_Format as Format, index_d_FormatEnumFormat as FormatEnumFormat, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionDocumentRequest as GetSubmissionDocumentRequest, type index_d_GetSubmissionDocumentResponse as GetSubmissionDocumentResponse, type index_d_GetSubmissionDocumentResponseNonNullableFields as GetSubmissionDocumentResponseNonNullableFields, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_Group as Group, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_Header as Header, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_Image as Image, type index_d_ImageData as ImageData, index_d_ImageFit as ImageFit, index_d_InitialExpandedItems as InitialExpandedItems, type index_d_InputField as InputField, type index_d_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d_InputFieldArrayType as InputFieldArrayType, type index_d_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d_InputFieldBooleanType as InputFieldBooleanType, type index_d_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d_InputFieldIntegerType as InputFieldIntegerType, type index_d_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d_InputFieldNumberType as InputFieldNumberType, type index_d_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d_InputFieldObjectType as InputFieldObjectType, type index_d_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d_InputFieldStringType as InputFieldStringType, type index_d_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d_InputType as InputType, type index_d_IntegerType as IntegerType, type index_d_IsFormSubmittableRequest as IsFormSubmittableRequest, type index_d_IsFormSubmittableResponse as IsFormSubmittableResponse, type index_d_Item as Item, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemLayout as ItemLayout, type index_d_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemStyle as ItemStyle, index_d_ItemType as ItemType, index_d_Kind as Kind, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, type index_d_LimitationRule as LimitationRule, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, index_d_LinkTarget as LinkTarget, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_Margin as Margin, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_Mode as Mode, type index_d_MultilineAddress as MultilineAddress, index_d_MultilineAddressComponentType as MultilineAddressComponentType, type index_d_MultilineAddressValidation as MultilineAddressValidation, type index_d_NestedForm as NestedForm, type index_d_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d_NestedFormOverrides as NestedFormOverrides, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, index_d_NumberComponentType as NumberComponentType, type index_d_NumberErrorMessages as NumberErrorMessages, type index_d_NumberInput as NumberInput, index_d_NumberOfColumns as NumberOfColumns, type index_d_NumberType as NumberType, type index_d_ObjectErrorMessages as ObjectErrorMessages, type index_d_ObjectType as ObjectType, type index_d_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d_Oembed as Oembed, index_d_OptInLevel as OptInLevel, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderDetails as OrderDetails, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, index_d_OverrideEntityType as OverrideEntityType, type index_d_PDFSettings as PDFSettings, type index_d_ParagraphData as ParagraphData, type index_d_Payment as Payment, index_d_PaymentComponentType as PaymentComponentType, type index_d_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d_PaymentInput as PaymentInput, type index_d_PaymentType as PaymentType, type index_d_Permissions as Permissions, type index_d_PhoneConstraints as PhoneConstraints, type index_d_PhoneInfo as PhoneInfo, index_d_PhoneInfoTag as PhoneInfoTag, type index_d_PhoneInput as PhoneInput, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollOption as PollOption, type index_d_PostSubmissionTriggers as PostSubmissionTriggers, type index_d_PredefinedValidation as PredefinedValidation, type index_d_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d_PriceType as PriceType, type index_d_Product as Product, type index_d_ProductCheckboxGroup as ProductCheckboxGroup, type index_d_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d_ProductType as ProductType, type index_d_PropertiesType as PropertiesType, index_d_PropertiesTypeEnum as PropertiesTypeEnum, type index_d_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d_QuantityLimit as QuantityLimit, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RadioGroup as RadioGroup, type index_d_RadioGroupCustomOption as RadioGroupCustomOption, type index_d_RadioGroupOption as RadioGroupOption, type index_d_RatingInput as RatingInput, type index_d_Redirect as Redirect, type index_d_RedirectOptions as RedirectOptions, type index_d_Rel as Rel, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, index_d_RequiredIndicator as RequiredIndicator, index_d_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_RichContent as RichContent, type index_d_RichText as RichText, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type index_d_Section as Section, type index_d_Settings as Settings, type index_d_Signature as Signature, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Source as Source, index_d_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, index_d_Status as Status, type index_d_Step as Step, index_d_StringComponentType as StringComponentType, type index_d_StringErrorMessages as StringErrorMessages, type index_d_StringType as StringType, type index_d_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d_StringTypePhoneConstraints as StringTypePhoneConstraints, type index_d_Styles as Styles, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, type index_d_SubmissionDocument as SubmissionDocument, type index_d_SubmissionDocumentDocumentOneOf as SubmissionDocumentDocumentOneOf, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitButton as SubmitButton, type index_d_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_SubmitSettings as SubmitSettings, type index_d_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d_SubmitSuccessAction as SubmitSuccessAction, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_SubscriptionInfo as SubscriptionInfo, index_d_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, index_d_Tag as Tag, type index_d_Tags as Tags, type index_d_TagsOption as TagsOption, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextInput as TextInput, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_ThankYouMessage as ThankYouMessage, type index_d_ThankYouMessageOptions as ThankYouMessageOptions, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TimeInput as TimeInput, type index_d_TimeOptions as TimeOptions, index_d_Type as Type, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, index_d_UploadFileFormat as UploadFileFormat, type index_d_UpsertContact as UpsertContact, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d_Validation as Validation, index_d_ValidationFormat as ValidationFormat, type index_d_ValidationValidationOneOf as ValidationValidationOneOf, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, type index_d_WixFile as WixFile, index_d_WixFileComponentType as WixFileComponentType, type index_d_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d__Array as _Array, type index_d__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d__Boolean as _Boolean, type index_d__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d__Number as _Number, type index_d__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d__Object as _Object, type index_d__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d__String as _String, type index_d__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_getSubmissionDocument as getSubmissionDocument, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
11356
11383
|
}
|
|
11357
11384
|
|
|
11358
11385
|
export { index_d$1 as formSpamSubmissionReports, index_d$2 as forms, index_d as submissions };
|
|
@@ -2390,7 +2390,8 @@ declare enum PaymentComponentType$1 {
|
|
|
2390
2390
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2391
2391
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
2392
2392
|
DONATION_INPUT = "DONATION_INPUT",
|
|
2393
|
-
PAYMENT_INPUT = "PAYMENT_INPUT"
|
|
2393
|
+
PAYMENT_INPUT = "PAYMENT_INPUT",
|
|
2394
|
+
FIXED_PAYMENT = "FIXED_PAYMENT"
|
|
2394
2395
|
}
|
|
2395
2396
|
interface ProductCheckboxGroup$1 {
|
|
2396
2397
|
/** Label of the field. */
|
|
@@ -2465,11 +2466,17 @@ interface PaymentInput$1 {
|
|
|
2465
2466
|
showLabel?: boolean | null;
|
|
2466
2467
|
/** Placeholder of custom option input */
|
|
2467
2468
|
placeholder?: string | null;
|
|
2469
|
+
}
|
|
2470
|
+
interface FixedPayment$1 {
|
|
2471
|
+
/** Label of the field. */
|
|
2472
|
+
label?: string | null;
|
|
2473
|
+
/** Description of the field. */
|
|
2474
|
+
description?: RichContent$1;
|
|
2468
2475
|
/**
|
|
2469
|
-
* Flag identifying
|
|
2476
|
+
* Flag identifying to hide or not label
|
|
2470
2477
|
* Default: true
|
|
2471
2478
|
*/
|
|
2472
|
-
|
|
2479
|
+
showLabel?: boolean | null;
|
|
2473
2480
|
}
|
|
2474
2481
|
declare enum MultilineAddressComponentType$1 {
|
|
2475
2482
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -2741,6 +2748,8 @@ interface Payment$1 extends PaymentComponentTypeOptionsOneOf$1 {
|
|
|
2741
2748
|
donationInputOptions?: DonationInput$1;
|
|
2742
2749
|
/** Payment input field. */
|
|
2743
2750
|
paymentInputOptions?: PaymentInput$1;
|
|
2751
|
+
/** Fixed payment field. */
|
|
2752
|
+
fixedPaymentOptions?: FixedPayment$1;
|
|
2744
2753
|
/**
|
|
2745
2754
|
* Component type of the payment input field.
|
|
2746
2755
|
* @readonly
|
|
@@ -2757,6 +2766,8 @@ interface PaymentComponentTypeOptionsOneOf$1 {
|
|
|
2757
2766
|
donationInputOptions?: DonationInput$1;
|
|
2758
2767
|
/** Payment input field. */
|
|
2759
2768
|
paymentInputOptions?: PaymentInput$1;
|
|
2769
|
+
/** Fixed payment field. */
|
|
2770
|
+
fixedPaymentOptions?: FixedPayment$1;
|
|
2760
2771
|
}
|
|
2761
2772
|
interface InputFieldMultilineAddress$1 extends InputFieldMultilineAddressComponentTypeOptionsOneOf$1 {
|
|
2762
2773
|
/** Multiline address input field. */
|
|
@@ -3979,10 +3990,14 @@ interface DonationInputNonNullableFields$1 {
|
|
|
3979
3990
|
interface PaymentInputNonNullableFields$1 {
|
|
3980
3991
|
description?: RichContentNonNullableFields$1;
|
|
3981
3992
|
}
|
|
3993
|
+
interface FixedPaymentNonNullableFields$1 {
|
|
3994
|
+
description?: RichContentNonNullableFields$1;
|
|
3995
|
+
}
|
|
3982
3996
|
interface PaymentNonNullableFields$1 {
|
|
3983
3997
|
checkboxGroupOptions?: ProductCheckboxGroupNonNullableFields$1;
|
|
3984
3998
|
donationInputOptions?: DonationInputNonNullableFields$1;
|
|
3985
3999
|
paymentInputOptions?: PaymentInputNonNullableFields$1;
|
|
4000
|
+
fixedPaymentOptions?: FixedPaymentNonNullableFields$1;
|
|
3986
4001
|
componentType: PaymentComponentType$1;
|
|
3987
4002
|
validation?: PaymentTypeNonNullableFields$1;
|
|
3988
4003
|
}
|
|
@@ -6596,7 +6611,8 @@ declare enum PaymentComponentType {
|
|
|
6596
6611
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
6597
6612
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
6598
6613
|
DONATION_INPUT = "DONATION_INPUT",
|
|
6599
|
-
PAYMENT_INPUT = "PAYMENT_INPUT"
|
|
6614
|
+
PAYMENT_INPUT = "PAYMENT_INPUT",
|
|
6615
|
+
FIXED_PAYMENT = "FIXED_PAYMENT"
|
|
6600
6616
|
}
|
|
6601
6617
|
interface ProductCheckboxGroup {
|
|
6602
6618
|
/** Label of the field. */
|
|
@@ -6671,11 +6687,17 @@ interface PaymentInput {
|
|
|
6671
6687
|
showLabel?: boolean | null;
|
|
6672
6688
|
/** Placeholder of custom option input */
|
|
6673
6689
|
placeholder?: string | null;
|
|
6690
|
+
}
|
|
6691
|
+
interface FixedPayment {
|
|
6692
|
+
/** Label of the field. */
|
|
6693
|
+
label?: string | null;
|
|
6694
|
+
/** Description of the field. */
|
|
6695
|
+
description?: RichContent;
|
|
6674
6696
|
/**
|
|
6675
|
-
* Flag identifying
|
|
6697
|
+
* Flag identifying to hide or not label
|
|
6676
6698
|
* Default: true
|
|
6677
6699
|
*/
|
|
6678
|
-
|
|
6700
|
+
showLabel?: boolean | null;
|
|
6679
6701
|
}
|
|
6680
6702
|
declare enum MultilineAddressComponentType {
|
|
6681
6703
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -6947,6 +6969,8 @@ interface Payment extends PaymentComponentTypeOptionsOneOf {
|
|
|
6947
6969
|
donationInputOptions?: DonationInput;
|
|
6948
6970
|
/** Payment input field. */
|
|
6949
6971
|
paymentInputOptions?: PaymentInput;
|
|
6972
|
+
/** Fixed payment field. */
|
|
6973
|
+
fixedPaymentOptions?: FixedPayment;
|
|
6950
6974
|
/**
|
|
6951
6975
|
* Component type of the payment input field.
|
|
6952
6976
|
* @readonly
|
|
@@ -6963,6 +6987,8 @@ interface PaymentComponentTypeOptionsOneOf {
|
|
|
6963
6987
|
donationInputOptions?: DonationInput;
|
|
6964
6988
|
/** Payment input field. */
|
|
6965
6989
|
paymentInputOptions?: PaymentInput;
|
|
6990
|
+
/** Fixed payment field. */
|
|
6991
|
+
fixedPaymentOptions?: FixedPayment;
|
|
6966
6992
|
}
|
|
6967
6993
|
interface InputFieldMultilineAddress extends InputFieldMultilineAddressComponentTypeOptionsOneOf {
|
|
6968
6994
|
/** Multiline address input field. */
|
|
@@ -8179,10 +8205,14 @@ interface DonationInputNonNullableFields {
|
|
|
8179
8205
|
interface PaymentInputNonNullableFields {
|
|
8180
8206
|
description?: RichContentNonNullableFields;
|
|
8181
8207
|
}
|
|
8208
|
+
interface FixedPaymentNonNullableFields {
|
|
8209
|
+
description?: RichContentNonNullableFields;
|
|
8210
|
+
}
|
|
8182
8211
|
interface PaymentNonNullableFields {
|
|
8183
8212
|
checkboxGroupOptions?: ProductCheckboxGroupNonNullableFields;
|
|
8184
8213
|
donationInputOptions?: DonationInputNonNullableFields;
|
|
8185
8214
|
paymentInputOptions?: PaymentInputNonNullableFields;
|
|
8215
|
+
fixedPaymentOptions?: FixedPaymentNonNullableFields;
|
|
8186
8216
|
componentType: PaymentComponentType;
|
|
8187
8217
|
validation?: PaymentTypeNonNullableFields;
|
|
8188
8218
|
}
|