@wix/forms 1.0.151 → 1.0.153
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 +5 -5
- package/type-bundles/context.bundle.d.ts +148 -10
- package/type-bundles/index.bundle.d.ts +148 -10
- package/type-bundles/meta.bundle.d.ts +158 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.153",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"service-plugins"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@wix/forms_form-spam-submission-reports": "1.0.
|
|
22
|
+
"@wix/forms_form-spam-submission-reports": "1.0.19",
|
|
23
23
|
"@wix/forms_form-submissions": "1.0.27",
|
|
24
|
-
"@wix/forms_forms": "1.0.
|
|
25
|
-
"@wix/forms_submissions": "1.0.
|
|
24
|
+
"@wix/forms_forms": "1.0.30",
|
|
25
|
+
"@wix/forms_submissions": "1.0.64"
|
|
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": "12fc49f16a5a9bfcca719babe5c4c787baea64b83d107db5e58b92c0"
|
|
51
51
|
}
|
|
@@ -2652,7 +2652,8 @@ interface InputFieldArrayErrorMessages$1 {
|
|
|
2652
2652
|
}
|
|
2653
2653
|
declare enum ComponentType$1 {
|
|
2654
2654
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2655
|
-
CHECKBOX_GROUP = "CHECKBOX_GROUP"
|
|
2655
|
+
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
2656
|
+
TAGS = "TAGS"
|
|
2656
2657
|
}
|
|
2657
2658
|
interface CheckboxGroup$1 {
|
|
2658
2659
|
/** Label of the field */
|
|
@@ -2701,6 +2702,44 @@ interface CustomOption$1 {
|
|
|
2701
2702
|
/** Placeholder of custom option input */
|
|
2702
2703
|
placeholder?: string | null;
|
|
2703
2704
|
}
|
|
2705
|
+
interface Tags$1 {
|
|
2706
|
+
/** Label of the field */
|
|
2707
|
+
label?: string | null;
|
|
2708
|
+
/** Description of the field */
|
|
2709
|
+
description?: RichContent$1;
|
|
2710
|
+
/** List of options to select from */
|
|
2711
|
+
options?: TagsOption$1[];
|
|
2712
|
+
/**
|
|
2713
|
+
* Flag identifying to hide or not label
|
|
2714
|
+
* Default: true
|
|
2715
|
+
*/
|
|
2716
|
+
showLabel?: boolean | null;
|
|
2717
|
+
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
2718
|
+
customOption?: CommonCustomOption$1;
|
|
2719
|
+
/**
|
|
2720
|
+
* Specifies the number of columns used to display the selections within the component.
|
|
2721
|
+
* Default: ONE
|
|
2722
|
+
*/
|
|
2723
|
+
numberOfColumns?: NumberOfColumns$1;
|
|
2724
|
+
}
|
|
2725
|
+
interface TagsOption$1 {
|
|
2726
|
+
/** Selectable option label */
|
|
2727
|
+
label?: string | null;
|
|
2728
|
+
/** Selectable option value, which is saved to DB. */
|
|
2729
|
+
value?: any;
|
|
2730
|
+
/** Flag identifying that option should be selected by default */
|
|
2731
|
+
default?: boolean;
|
|
2732
|
+
/** Option id. Used as binding for translations */
|
|
2733
|
+
_id?: string;
|
|
2734
|
+
/** Media item. Media, associated with option, like image. */
|
|
2735
|
+
media?: MediaItem$1;
|
|
2736
|
+
}
|
|
2737
|
+
interface CommonCustomOption$1 {
|
|
2738
|
+
/** Label of custom option input */
|
|
2739
|
+
label?: string | null;
|
|
2740
|
+
/** Placeholder of custom option input */
|
|
2741
|
+
placeholder?: string | null;
|
|
2742
|
+
}
|
|
2704
2743
|
declare enum WixFileComponentType$1 {
|
|
2705
2744
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2706
2745
|
FILE_UPLOAD = "FILE_UPLOAD",
|
|
@@ -2754,7 +2793,8 @@ interface Signature$1 {
|
|
|
2754
2793
|
declare enum PaymentComponentType$1 {
|
|
2755
2794
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
2756
2795
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
2757
|
-
DONATION_INPUT = "DONATION_INPUT"
|
|
2796
|
+
DONATION_INPUT = "DONATION_INPUT",
|
|
2797
|
+
PAYMENT_INPUT = "PAYMENT_INPUT"
|
|
2758
2798
|
}
|
|
2759
2799
|
interface ProductCheckboxGroup$1 {
|
|
2760
2800
|
/** Label of the field. */
|
|
@@ -2817,11 +2857,23 @@ interface DonationInputOption$1 {
|
|
|
2817
2857
|
/** Flag identifying that option should be selected by default */
|
|
2818
2858
|
default?: boolean;
|
|
2819
2859
|
}
|
|
2820
|
-
interface
|
|
2821
|
-
/** Label of
|
|
2860
|
+
interface PaymentInput$1 {
|
|
2861
|
+
/** Label of the field. */
|
|
2822
2862
|
label?: string | null;
|
|
2863
|
+
/** Description of the field. */
|
|
2864
|
+
description?: RichContent$1;
|
|
2865
|
+
/**
|
|
2866
|
+
* Flag identifying to hide or not label
|
|
2867
|
+
* Default: true
|
|
2868
|
+
*/
|
|
2869
|
+
showLabel?: boolean | null;
|
|
2823
2870
|
/** Placeholder of custom option input */
|
|
2824
2871
|
placeholder?: string | null;
|
|
2872
|
+
/**
|
|
2873
|
+
* Flag identifying if the payment input is fixed price
|
|
2874
|
+
* Default: true
|
|
2875
|
+
*/
|
|
2876
|
+
fixedPrice?: boolean | null;
|
|
2825
2877
|
}
|
|
2826
2878
|
declare enum MultilineAddressComponentType$1 {
|
|
2827
2879
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -3042,6 +3094,8 @@ interface _BooleanComponentTypeOptionsOneOf$1 {
|
|
|
3042
3094
|
interface _Array$1 extends _ArrayComponentTypeOptionsOneOf$1 {
|
|
3043
3095
|
/** Checkbox group input field */
|
|
3044
3096
|
checkboxGroupOptions?: CheckboxGroup$1;
|
|
3097
|
+
/** Tags input field */
|
|
3098
|
+
tagsOptions?: Tags$1;
|
|
3045
3099
|
/** Validation of array type. */
|
|
3046
3100
|
validation?: InputFieldArrayType$1;
|
|
3047
3101
|
/**
|
|
@@ -3054,6 +3108,8 @@ interface _Array$1 extends _ArrayComponentTypeOptionsOneOf$1 {
|
|
|
3054
3108
|
interface _ArrayComponentTypeOptionsOneOf$1 {
|
|
3055
3109
|
/** Checkbox group input field */
|
|
3056
3110
|
checkboxGroupOptions?: CheckboxGroup$1;
|
|
3111
|
+
/** Tags input field */
|
|
3112
|
+
tagsOptions?: Tags$1;
|
|
3057
3113
|
}
|
|
3058
3114
|
interface _Object$1 extends _ObjectValidationOneOf$1 {
|
|
3059
3115
|
/** Validation of object type. */
|
|
@@ -3087,6 +3143,8 @@ interface Payment$1 extends PaymentComponentTypeOptionsOneOf$1 {
|
|
|
3087
3143
|
checkboxGroupOptions?: ProductCheckboxGroup$1;
|
|
3088
3144
|
/** Donation input field. */
|
|
3089
3145
|
donationInputOptions?: DonationInput$1;
|
|
3146
|
+
/** Payment input field. */
|
|
3147
|
+
paymentInputOptions?: PaymentInput$1;
|
|
3090
3148
|
/**
|
|
3091
3149
|
* Component type of the payment input field.
|
|
3092
3150
|
* @readonly
|
|
@@ -3101,6 +3159,8 @@ interface PaymentComponentTypeOptionsOneOf$1 {
|
|
|
3101
3159
|
checkboxGroupOptions?: ProductCheckboxGroup$1;
|
|
3102
3160
|
/** Donation input field. */
|
|
3103
3161
|
donationInputOptions?: DonationInput$1;
|
|
3162
|
+
/** Payment input field. */
|
|
3163
|
+
paymentInputOptions?: PaymentInput$1;
|
|
3104
3164
|
}
|
|
3105
3165
|
interface InputFieldMultilineAddress$1 extends InputFieldMultilineAddressComponentTypeOptionsOneOf$1 {
|
|
3106
3166
|
/** Multiline address input field. */
|
|
@@ -4398,6 +4458,16 @@ interface CheckboxGroupNonNullableFields {
|
|
|
4398
4458
|
options: OptionNonNullableFields[];
|
|
4399
4459
|
numberOfColumns: NumberOfColumns$1;
|
|
4400
4460
|
}
|
|
4461
|
+
interface TagsOptionNonNullableFields {
|
|
4462
|
+
default: boolean;
|
|
4463
|
+
_id: string;
|
|
4464
|
+
media?: MediaItemNonNullableFields;
|
|
4465
|
+
}
|
|
4466
|
+
interface TagsNonNullableFields {
|
|
4467
|
+
description?: RichContentNonNullableFields;
|
|
4468
|
+
options: TagsOptionNonNullableFields[];
|
|
4469
|
+
numberOfColumns: NumberOfColumns$1;
|
|
4470
|
+
}
|
|
4401
4471
|
interface ArrayTypeArrayItemsNonNullableFields {
|
|
4402
4472
|
stringOptions?: InputFieldStringTypeNonNullableFields;
|
|
4403
4473
|
booleanOptions?: InputFieldBooleanTypeNonNullableFields;
|
|
@@ -4408,6 +4478,7 @@ interface InputFieldArrayTypeNonNullableFields {
|
|
|
4408
4478
|
}
|
|
4409
4479
|
interface _ArrayNonNullableFields {
|
|
4410
4480
|
checkboxGroupOptions?: CheckboxGroupNonNullableFields;
|
|
4481
|
+
tagsOptions?: TagsNonNullableFields;
|
|
4411
4482
|
validation?: InputFieldArrayTypeNonNullableFields;
|
|
4412
4483
|
componentType: ComponentType$1;
|
|
4413
4484
|
}
|
|
@@ -4443,9 +4514,13 @@ interface DonationInputNonNullableFields {
|
|
|
4443
4514
|
options: DonationInputOptionNonNullableFields[];
|
|
4444
4515
|
numberOfColumns: NumberOfColumns$1;
|
|
4445
4516
|
}
|
|
4517
|
+
interface PaymentInputNonNullableFields {
|
|
4518
|
+
description?: RichContentNonNullableFields;
|
|
4519
|
+
}
|
|
4446
4520
|
interface PaymentNonNullableFields {
|
|
4447
4521
|
checkboxGroupOptions?: ProductCheckboxGroupNonNullableFields;
|
|
4448
4522
|
donationInputOptions?: DonationInputNonNullableFields;
|
|
4523
|
+
paymentInputOptions?: PaymentInputNonNullableFields;
|
|
4449
4524
|
componentType: PaymentComponentType$1;
|
|
4450
4525
|
validation?: PaymentTypeNonNullableFields;
|
|
4451
4526
|
}
|
|
@@ -5184,7 +5259,7 @@ declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
5184
5259
|
declare const context$2_updateExtendedFields: typeof updateExtendedFields;
|
|
5185
5260
|
declare const context$2_updateForm: typeof updateForm;
|
|
5186
5261
|
declare namespace context$2 {
|
|
5187
|
-
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 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 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 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 NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$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 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 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 Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type 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, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type 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 };
|
|
5262
|
+
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 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 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 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 NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$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 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 Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type 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, 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 };
|
|
5188
5263
|
}
|
|
5189
5264
|
|
|
5190
5265
|
/**
|
|
@@ -8509,7 +8584,8 @@ interface InputFieldArrayErrorMessages {
|
|
|
8509
8584
|
}
|
|
8510
8585
|
declare enum ComponentType {
|
|
8511
8586
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
8512
|
-
CHECKBOX_GROUP = "CHECKBOX_GROUP"
|
|
8587
|
+
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
8588
|
+
TAGS = "TAGS"
|
|
8513
8589
|
}
|
|
8514
8590
|
interface CheckboxGroup {
|
|
8515
8591
|
/** Label of the field */
|
|
@@ -8558,6 +8634,44 @@ interface CustomOption {
|
|
|
8558
8634
|
/** Placeholder of custom option input */
|
|
8559
8635
|
placeholder?: string | null;
|
|
8560
8636
|
}
|
|
8637
|
+
interface Tags {
|
|
8638
|
+
/** Label of the field */
|
|
8639
|
+
label?: string | null;
|
|
8640
|
+
/** Description of the field */
|
|
8641
|
+
description?: RichContent;
|
|
8642
|
+
/** List of options to select from */
|
|
8643
|
+
options?: TagsOption[];
|
|
8644
|
+
/**
|
|
8645
|
+
* Flag identifying to hide or not label
|
|
8646
|
+
* Default: true
|
|
8647
|
+
*/
|
|
8648
|
+
showLabel?: boolean | null;
|
|
8649
|
+
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
8650
|
+
customOption?: CommonCustomOption;
|
|
8651
|
+
/**
|
|
8652
|
+
* Specifies the number of columns used to display the selections within the component.
|
|
8653
|
+
* Default: ONE
|
|
8654
|
+
*/
|
|
8655
|
+
numberOfColumns?: NumberOfColumns;
|
|
8656
|
+
}
|
|
8657
|
+
interface TagsOption {
|
|
8658
|
+
/** Selectable option label */
|
|
8659
|
+
label?: string | null;
|
|
8660
|
+
/** Selectable option value, which is saved to DB. */
|
|
8661
|
+
value?: any;
|
|
8662
|
+
/** Flag identifying that option should be selected by default */
|
|
8663
|
+
default?: boolean;
|
|
8664
|
+
/** Option id. Used as binding for translations */
|
|
8665
|
+
_id?: string;
|
|
8666
|
+
/** Media item. Media, associated with option, like image. */
|
|
8667
|
+
media?: MediaItem;
|
|
8668
|
+
}
|
|
8669
|
+
interface CommonCustomOption {
|
|
8670
|
+
/** Label of custom option input */
|
|
8671
|
+
label?: string | null;
|
|
8672
|
+
/** Placeholder of custom option input */
|
|
8673
|
+
placeholder?: string | null;
|
|
8674
|
+
}
|
|
8561
8675
|
declare enum WixFileComponentType {
|
|
8562
8676
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
8563
8677
|
FILE_UPLOAD = "FILE_UPLOAD",
|
|
@@ -8611,7 +8725,8 @@ interface Signature {
|
|
|
8611
8725
|
declare enum PaymentComponentType {
|
|
8612
8726
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
8613
8727
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
8614
|
-
DONATION_INPUT = "DONATION_INPUT"
|
|
8728
|
+
DONATION_INPUT = "DONATION_INPUT",
|
|
8729
|
+
PAYMENT_INPUT = "PAYMENT_INPUT"
|
|
8615
8730
|
}
|
|
8616
8731
|
interface ProductCheckboxGroup {
|
|
8617
8732
|
/** Label of the field. */
|
|
@@ -8674,11 +8789,23 @@ interface DonationInputOption {
|
|
|
8674
8789
|
/** Flag identifying that option should be selected by default */
|
|
8675
8790
|
default?: boolean;
|
|
8676
8791
|
}
|
|
8677
|
-
interface
|
|
8678
|
-
/** Label of
|
|
8792
|
+
interface PaymentInput {
|
|
8793
|
+
/** Label of the field. */
|
|
8679
8794
|
label?: string | null;
|
|
8795
|
+
/** Description of the field. */
|
|
8796
|
+
description?: RichContent;
|
|
8797
|
+
/**
|
|
8798
|
+
* Flag identifying to hide or not label
|
|
8799
|
+
* Default: true
|
|
8800
|
+
*/
|
|
8801
|
+
showLabel?: boolean | null;
|
|
8680
8802
|
/** Placeholder of custom option input */
|
|
8681
8803
|
placeholder?: string | null;
|
|
8804
|
+
/**
|
|
8805
|
+
* Flag identifying if the payment input is fixed price
|
|
8806
|
+
* Default: true
|
|
8807
|
+
*/
|
|
8808
|
+
fixedPrice?: boolean | null;
|
|
8682
8809
|
}
|
|
8683
8810
|
declare enum MultilineAddressComponentType {
|
|
8684
8811
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -8899,6 +9026,8 @@ interface _BooleanComponentTypeOptionsOneOf {
|
|
|
8899
9026
|
interface _Array extends _ArrayComponentTypeOptionsOneOf {
|
|
8900
9027
|
/** Checkbox group input field */
|
|
8901
9028
|
checkboxGroupOptions?: CheckboxGroup;
|
|
9029
|
+
/** Tags input field */
|
|
9030
|
+
tagsOptions?: Tags;
|
|
8902
9031
|
/** Validation of array type. */
|
|
8903
9032
|
validation?: InputFieldArrayType;
|
|
8904
9033
|
/**
|
|
@@ -8911,6 +9040,8 @@ interface _Array extends _ArrayComponentTypeOptionsOneOf {
|
|
|
8911
9040
|
interface _ArrayComponentTypeOptionsOneOf {
|
|
8912
9041
|
/** Checkbox group input field */
|
|
8913
9042
|
checkboxGroupOptions?: CheckboxGroup;
|
|
9043
|
+
/** Tags input field */
|
|
9044
|
+
tagsOptions?: Tags;
|
|
8914
9045
|
}
|
|
8915
9046
|
interface _Object extends _ObjectValidationOneOf {
|
|
8916
9047
|
/** Validation of object type. */
|
|
@@ -8944,6 +9075,8 @@ interface Payment extends PaymentComponentTypeOptionsOneOf {
|
|
|
8944
9075
|
checkboxGroupOptions?: ProductCheckboxGroup;
|
|
8945
9076
|
/** Donation input field. */
|
|
8946
9077
|
donationInputOptions?: DonationInput;
|
|
9078
|
+
/** Payment input field. */
|
|
9079
|
+
paymentInputOptions?: PaymentInput;
|
|
8947
9080
|
/**
|
|
8948
9081
|
* Component type of the payment input field.
|
|
8949
9082
|
* @readonly
|
|
@@ -8958,6 +9091,8 @@ interface PaymentComponentTypeOptionsOneOf {
|
|
|
8958
9091
|
checkboxGroupOptions?: ProductCheckboxGroup;
|
|
8959
9092
|
/** Donation input field. */
|
|
8960
9093
|
donationInputOptions?: DonationInput;
|
|
9094
|
+
/** Payment input field. */
|
|
9095
|
+
paymentInputOptions?: PaymentInput;
|
|
8961
9096
|
}
|
|
8962
9097
|
interface InputFieldMultilineAddress extends InputFieldMultilineAddressComponentTypeOptionsOneOf {
|
|
8963
9098
|
/** Multiline address input field. */
|
|
@@ -10869,6 +11004,7 @@ type context_Payment = Payment;
|
|
|
10869
11004
|
type context_PaymentComponentType = PaymentComponentType;
|
|
10870
11005
|
declare const context_PaymentComponentType: typeof PaymentComponentType;
|
|
10871
11006
|
type context_PaymentComponentTypeOptionsOneOf = PaymentComponentTypeOptionsOneOf;
|
|
11007
|
+
type context_PaymentInput = PaymentInput;
|
|
10872
11008
|
type context_PaymentType = PaymentType;
|
|
10873
11009
|
type context_Permissions = Permissions;
|
|
10874
11010
|
type context_PhoneConstraints = PhoneConstraints;
|
|
@@ -10992,6 +11128,8 @@ type context_TableCellData = TableCellData;
|
|
|
10992
11128
|
type context_TableData = TableData;
|
|
10993
11129
|
type context_Tag = Tag;
|
|
10994
11130
|
declare const context_Tag: typeof Tag;
|
|
11131
|
+
type context_Tags = Tags;
|
|
11132
|
+
type context_TagsOption = TagsOption;
|
|
10995
11133
|
type context_Target = Target;
|
|
10996
11134
|
declare const context_Target: typeof Target;
|
|
10997
11135
|
type context_TextAlignment = TextAlignment;
|
|
@@ -11079,7 +11217,7 @@ declare const context_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
11079
11217
|
declare const context_updateSubmission: typeof updateSubmission;
|
|
11080
11218
|
declare const context_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
11081
11219
|
declare namespace context {
|
|
11082
|
-
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_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_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, 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 };
|
|
11220
|
+
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_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 };
|
|
11083
11221
|
}
|
|
11084
11222
|
|
|
11085
11223
|
export { context$1 as formSpamSubmissionReports, context$2 as forms, context as submissions };
|