@wix/forms 1.0.185 → 1.0.186
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.186",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@wix/forms_form-spam-submission-reports": "1.0.24",
|
|
26
26
|
"@wix/forms_form-submissions": "1.0.31",
|
|
27
|
-
"@wix/forms_forms": "1.0.
|
|
27
|
+
"@wix/forms_forms": "1.0.53",
|
|
28
28
|
"@wix/forms_submissions": "1.0.83"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": ""
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "699c83110f439e7c207434a1bf99e5697e0cbb0eaded8024cf2af280"
|
|
54
54
|
}
|
|
@@ -4220,7 +4220,7 @@ interface Empty$2 {
|
|
|
4220
4220
|
}
|
|
4221
4221
|
interface GetFormSummaryRequest {
|
|
4222
4222
|
/** Id of the form to retrieve. */
|
|
4223
|
-
formId
|
|
4223
|
+
formId: string;
|
|
4224
4224
|
}
|
|
4225
4225
|
interface GetFormSummaryResponse {
|
|
4226
4226
|
/** The retrieved form field summary. */
|
|
@@ -5055,6 +5055,17 @@ interface FormsSchemaProvidersConfigNonNullableFields {
|
|
|
5055
5055
|
interface ListFormsProvidersConfigsResponseNonNullableFields {
|
|
5056
5056
|
configs: FormsSchemaProvidersConfigNonNullableFields[];
|
|
5057
5057
|
}
|
|
5058
|
+
interface FieldNonNullableFields {
|
|
5059
|
+
type: FieldInputType;
|
|
5060
|
+
deleted: boolean;
|
|
5061
|
+
}
|
|
5062
|
+
interface FormSummaryNonNullableFields {
|
|
5063
|
+
_id: string;
|
|
5064
|
+
fields: FieldNonNullableFields[];
|
|
5065
|
+
}
|
|
5066
|
+
interface GetFormSummaryResponseNonNullableFields {
|
|
5067
|
+
formSummary?: FormSummaryNonNullableFields;
|
|
5068
|
+
}
|
|
5058
5069
|
interface BulkCreateFormOptions {
|
|
5059
5070
|
/** Forms to be created. */
|
|
5060
5071
|
forms?: Form$1[];
|
|
@@ -5488,6 +5499,14 @@ interface ListFormsProvidersConfigsSignature {
|
|
|
5488
5499
|
*/
|
|
5489
5500
|
(): Promise<ListFormsProvidersConfigsResponse & ListFormsProvidersConfigsResponseNonNullableFields>;
|
|
5490
5501
|
}
|
|
5502
|
+
declare function getFormSummary$1(httpClient: HttpClient): GetFormSummarySignature;
|
|
5503
|
+
interface GetFormSummarySignature {
|
|
5504
|
+
/**
|
|
5505
|
+
* Gets a summary of a form by id.
|
|
5506
|
+
* @param - Id of the form to retrieve.
|
|
5507
|
+
*/
|
|
5508
|
+
(formId: string): Promise<GetFormSummaryResponse & GetFormSummaryResponseNonNullableFields>;
|
|
5509
|
+
}
|
|
5491
5510
|
|
|
5492
5511
|
declare const createForm: MaybeContext<BuildRESTFunction<typeof createForm$1> & typeof createForm$1>;
|
|
5493
5512
|
declare const bulkCreateForm: MaybeContext<BuildRESTFunction<typeof bulkCreateForm$1> & typeof bulkCreateForm$1>;
|
|
@@ -5507,6 +5526,7 @@ declare const listDeletedForms: MaybeContext<BuildRESTFunction<typeof listDelete
|
|
|
5507
5526
|
declare const bulkRemoveDeletedField: MaybeContext<BuildRESTFunction<typeof bulkRemoveDeletedField$1> & typeof bulkRemoveDeletedField$1>;
|
|
5508
5527
|
declare const updateExtendedFields$2: MaybeContext<BuildRESTFunction<typeof updateExtendedFields$3> & typeof updateExtendedFields$3>;
|
|
5509
5528
|
declare const listFormsProvidersConfigs: MaybeContext<BuildRESTFunction<typeof listFormsProvidersConfigs$1> & typeof listFormsProvidersConfigs$1>;
|
|
5529
|
+
declare const getFormSummary: MaybeContext<BuildRESTFunction<typeof getFormSummary$1> & typeof getFormSummary$1>;
|
|
5510
5530
|
|
|
5511
5531
|
type context$2_BulkCreateFormOptions = BulkCreateFormOptions;
|
|
5512
5532
|
type context$2_BulkCreateFormRequest = BulkCreateFormRequest;
|
|
@@ -5561,6 +5581,7 @@ type context$2_GetFormResponse = GetFormResponse;
|
|
|
5561
5581
|
type context$2_GetFormResponseNonNullableFields = GetFormResponseNonNullableFields;
|
|
5562
5582
|
type context$2_GetFormSummaryRequest = GetFormSummaryRequest;
|
|
5563
5583
|
type context$2_GetFormSummaryResponse = GetFormSummaryResponse;
|
|
5584
|
+
type context$2_GetFormSummaryResponseNonNullableFields = GetFormSummaryResponseNonNullableFields;
|
|
5564
5585
|
type context$2_ListDeletedFormsOptions = ListDeletedFormsOptions;
|
|
5565
5586
|
type context$2_ListDeletedFormsOrder = ListDeletedFormsOrder;
|
|
5566
5587
|
declare const context$2_ListDeletedFormsOrder: typeof ListDeletedFormsOrder;
|
|
@@ -5615,6 +5636,7 @@ declare const context$2_createForm: typeof createForm;
|
|
|
5615
5636
|
declare const context$2_deleteForm: typeof deleteForm;
|
|
5616
5637
|
declare const context$2_getDeletedForm: typeof getDeletedForm;
|
|
5617
5638
|
declare const context$2_getForm: typeof getForm;
|
|
5639
|
+
declare const context$2_getFormSummary: typeof getFormSummary;
|
|
5618
5640
|
declare const context$2_listDeletedForms: typeof listDeletedForms;
|
|
5619
5641
|
declare const context$2_listForms: typeof listForms;
|
|
5620
5642
|
declare const context$2_listFormsProvidersConfigs: typeof listFormsProvidersConfigs;
|
|
@@ -5625,7 +5647,7 @@ declare const context$2_removeFormFromTrashBin: typeof removeFormFromTrashBin;
|
|
|
5625
5647
|
declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
5626
5648
|
declare const context$2_updateForm: typeof updateForm;
|
|
5627
5649
|
declare namespace context$2 {
|
|
5628
|
-
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type context$2_CloneFormFromTemplateRequest as CloneFormFromTemplateRequest, type context$2_CloneFormFromTemplateResponse as CloneFormFromTemplateResponse, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DatePicker$1 as DatePicker, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DisplayFieldDisplayFieldTypeOptionsOneOf$1 as DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType$1 as DisplayFieldType, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type context$2_Field as Field, type FieldGroup$1 as FieldGroup, type context$2_FieldIdBasedErrorDetails as FieldIdBasedErrorDetails, context$2_FieldInputType as FieldInputType, type context$2_FieldOption as FieldOption, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, context$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, context$2_FilterType as FilterType, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPayment$1 as FixedPayment, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type context$2_FormFieldV2ApiValidationErrorDetails as FormFieldV2ApiValidationErrorDetails, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type context$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, type context$2_FormSummary as FormSummary, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type context$2_GetFormSummaryRequest as GetFormSummaryRequest, type context$2_GetFormSummaryResponse as GetFormSummaryResponse, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, ImageFit$1 as ImageFit, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsProvidersConfigsRequest as ListFormsProvidersConfigsRequest, type context$2_ListFormsProvidersConfigsResponse as ListFormsProvidersConfigsResponse, type context$2_ListFormsProvidersConfigsResponseNonNullableFields as ListFormsProvidersConfigsResponseNonNullableFields, type context$2_ListFormsRequest as ListFormsRequest, context$2_ListFormsRequestListFormsOrder as ListFormsRequestListFormsOrder, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type context$2_ListTemplateExtensionsOptions as ListTemplateExtensionsOptions, type context$2_ListTemplateExtensionsRequest as ListTemplateExtensionsRequest, type context$2_ListTemplateExtensionsResponse as ListTemplateExtensionsResponse, type context$2_ListTemplateExtensionsResponseNonNullableFields as ListTemplateExtensionsResponseNonNullableFields, 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 context$2_NameFilter as NameFilter, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type context$2_NestedFormFieldsMissingErrorDetails as NestedFormFieldsMissingErrorDetails, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type context$2_NonExistingNestedFormsErrorDetails as NonExistingNestedFormsErrorDetails, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$1 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type PageNavigationOptions$1 as PageNavigationOptions, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentInput$1 as PaymentInput, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type context$2_ProductIdBasedErrorDetails as ProductIdBasedErrorDetails, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichContentOptions$1 as RichContentOptions, type RichText$1 as RichText, type context$2_RuleIdBasedErrorDetails as RuleIdBasedErrorDetails, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, type context$2_StepIdBasedErrorDetails as StepIdBasedErrorDetails, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, type Tags$1 as Tags, type TagsOption$1 as TagsOption, Target$1 as Target, type context$2_TargetBasedErrorDetails as TargetBasedErrorDetails, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, Type$1 as Type, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_listFormsProvidersConfigs as listFormsProvidersConfigs, context$2_listTemplateExtensions as listTemplateExtensions, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$2 as updateExtendedFields, context$2_updateForm as updateForm };
|
|
5650
|
+
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type context$2_CloneFormFromTemplateRequest as CloneFormFromTemplateRequest, type context$2_CloneFormFromTemplateResponse as CloneFormFromTemplateResponse, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DatePicker$1 as DatePicker, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DisplayFieldDisplayFieldTypeOptionsOneOf$1 as DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType$1 as DisplayFieldType, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type context$2_Field as Field, type FieldGroup$1 as FieldGroup, type context$2_FieldIdBasedErrorDetails as FieldIdBasedErrorDetails, context$2_FieldInputType as FieldInputType, type context$2_FieldOption as FieldOption, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, context$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, context$2_FilterType as FilterType, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPayment$1 as FixedPayment, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type context$2_FormFieldV2ApiValidationErrorDetails as FormFieldV2ApiValidationErrorDetails, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type context$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, type context$2_FormSummary as FormSummary, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type context$2_GetFormSummaryRequest as GetFormSummaryRequest, type context$2_GetFormSummaryResponse as GetFormSummaryResponse, type context$2_GetFormSummaryResponseNonNullableFields as GetFormSummaryResponseNonNullableFields, 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, context$2_ListFormsRequestListFormsOrder as ListFormsRequestListFormsOrder, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type context$2_ListTemplateExtensionsOptions as ListTemplateExtensionsOptions, type context$2_ListTemplateExtensionsRequest as ListTemplateExtensionsRequest, type context$2_ListTemplateExtensionsResponse as ListTemplateExtensionsResponse, type context$2_ListTemplateExtensionsResponseNonNullableFields as ListTemplateExtensionsResponseNonNullableFields, 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 context$2_NameFilter as NameFilter, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type context$2_NestedFormFieldsMissingErrorDetails as NestedFormFieldsMissingErrorDetails, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type context$2_NonExistingNestedFormsErrorDetails as NonExistingNestedFormsErrorDetails, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$1 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type PageNavigationOptions$1 as PageNavigationOptions, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentInput$1 as PaymentInput, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type context$2_ProductIdBasedErrorDetails as ProductIdBasedErrorDetails, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichContentOptions$1 as RichContentOptions, type RichText$1 as RichText, type context$2_RuleIdBasedErrorDetails as RuleIdBasedErrorDetails, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, type context$2_StepIdBasedErrorDetails as StepIdBasedErrorDetails, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, type Tags$1 as Tags, type TagsOption$1 as TagsOption, Target$1 as Target, type context$2_TargetBasedErrorDetails as TargetBasedErrorDetails, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, Type$1 as Type, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_getFormSummary as getFormSummary, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_listFormsProvidersConfigs as listFormsProvidersConfigs, context$2_listTemplateExtensions as listTemplateExtensions, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$2 as updateExtendedFields, context$2_updateForm as updateForm };
|
|
5629
5651
|
}
|
|
5630
5652
|
|
|
5631
5653
|
/**
|
|
@@ -4220,7 +4220,7 @@ interface Empty$2 {
|
|
|
4220
4220
|
}
|
|
4221
4221
|
interface GetFormSummaryRequest {
|
|
4222
4222
|
/** Id of the form to retrieve. */
|
|
4223
|
-
formId
|
|
4223
|
+
formId: string;
|
|
4224
4224
|
}
|
|
4225
4225
|
interface GetFormSummaryResponse {
|
|
4226
4226
|
/** The retrieved form field summary. */
|
|
@@ -5055,6 +5055,17 @@ interface FormsSchemaProvidersConfigNonNullableFields {
|
|
|
5055
5055
|
interface ListFormsProvidersConfigsResponseNonNullableFields {
|
|
5056
5056
|
configs: FormsSchemaProvidersConfigNonNullableFields[];
|
|
5057
5057
|
}
|
|
5058
|
+
interface FieldNonNullableFields {
|
|
5059
|
+
type: FieldInputType;
|
|
5060
|
+
deleted: boolean;
|
|
5061
|
+
}
|
|
5062
|
+
interface FormSummaryNonNullableFields {
|
|
5063
|
+
_id: string;
|
|
5064
|
+
fields: FieldNonNullableFields[];
|
|
5065
|
+
}
|
|
5066
|
+
interface GetFormSummaryResponseNonNullableFields {
|
|
5067
|
+
formSummary?: FormSummaryNonNullableFields;
|
|
5068
|
+
}
|
|
5058
5069
|
interface BulkCreateFormOptions {
|
|
5059
5070
|
/** Forms to be created. */
|
|
5060
5071
|
forms?: Form$1[];
|
|
@@ -5488,6 +5499,14 @@ interface ListFormsProvidersConfigsSignature {
|
|
|
5488
5499
|
*/
|
|
5489
5500
|
(): Promise<ListFormsProvidersConfigsResponse & ListFormsProvidersConfigsResponseNonNullableFields>;
|
|
5490
5501
|
}
|
|
5502
|
+
declare function getFormSummary$1(httpClient: HttpClient): GetFormSummarySignature;
|
|
5503
|
+
interface GetFormSummarySignature {
|
|
5504
|
+
/**
|
|
5505
|
+
* Gets a summary of a form by id.
|
|
5506
|
+
* @param - Id of the form to retrieve.
|
|
5507
|
+
*/
|
|
5508
|
+
(formId: string): Promise<GetFormSummaryResponse & GetFormSummaryResponseNonNullableFields>;
|
|
5509
|
+
}
|
|
5491
5510
|
|
|
5492
5511
|
declare const createForm: MaybeContext<BuildRESTFunction<typeof createForm$1> & typeof createForm$1>;
|
|
5493
5512
|
declare const bulkCreateForm: MaybeContext<BuildRESTFunction<typeof bulkCreateForm$1> & typeof bulkCreateForm$1>;
|
|
@@ -5507,6 +5526,7 @@ declare const listDeletedForms: MaybeContext<BuildRESTFunction<typeof listDelete
|
|
|
5507
5526
|
declare const bulkRemoveDeletedField: MaybeContext<BuildRESTFunction<typeof bulkRemoveDeletedField$1> & typeof bulkRemoveDeletedField$1>;
|
|
5508
5527
|
declare const updateExtendedFields$2: MaybeContext<BuildRESTFunction<typeof updateExtendedFields$3> & typeof updateExtendedFields$3>;
|
|
5509
5528
|
declare const listFormsProvidersConfigs: MaybeContext<BuildRESTFunction<typeof listFormsProvidersConfigs$1> & typeof listFormsProvidersConfigs$1>;
|
|
5529
|
+
declare const getFormSummary: MaybeContext<BuildRESTFunction<typeof getFormSummary$1> & typeof getFormSummary$1>;
|
|
5510
5530
|
|
|
5511
5531
|
type index_d$2_BulkCreateFormOptions = BulkCreateFormOptions;
|
|
5512
5532
|
type index_d$2_BulkCreateFormRequest = BulkCreateFormRequest;
|
|
@@ -5561,6 +5581,7 @@ type index_d$2_GetFormResponse = GetFormResponse;
|
|
|
5561
5581
|
type index_d$2_GetFormResponseNonNullableFields = GetFormResponseNonNullableFields;
|
|
5562
5582
|
type index_d$2_GetFormSummaryRequest = GetFormSummaryRequest;
|
|
5563
5583
|
type index_d$2_GetFormSummaryResponse = GetFormSummaryResponse;
|
|
5584
|
+
type index_d$2_GetFormSummaryResponseNonNullableFields = GetFormSummaryResponseNonNullableFields;
|
|
5564
5585
|
type index_d$2_ListDeletedFormsOptions = ListDeletedFormsOptions;
|
|
5565
5586
|
type index_d$2_ListDeletedFormsOrder = ListDeletedFormsOrder;
|
|
5566
5587
|
declare const index_d$2_ListDeletedFormsOrder: typeof ListDeletedFormsOrder;
|
|
@@ -5615,6 +5636,7 @@ declare const index_d$2_createForm: typeof createForm;
|
|
|
5615
5636
|
declare const index_d$2_deleteForm: typeof deleteForm;
|
|
5616
5637
|
declare const index_d$2_getDeletedForm: typeof getDeletedForm;
|
|
5617
5638
|
declare const index_d$2_getForm: typeof getForm;
|
|
5639
|
+
declare const index_d$2_getFormSummary: typeof getFormSummary;
|
|
5618
5640
|
declare const index_d$2_listDeletedForms: typeof listDeletedForms;
|
|
5619
5641
|
declare const index_d$2_listForms: typeof listForms;
|
|
5620
5642
|
declare const index_d$2_listFormsProvidersConfigs: typeof listFormsProvidersConfigs;
|
|
@@ -5625,7 +5647,7 @@ declare const index_d$2_removeFormFromTrashBin: typeof removeFormFromTrashBin;
|
|
|
5625
5647
|
declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
5626
5648
|
declare const index_d$2_updateForm: typeof updateForm;
|
|
5627
5649
|
declare namespace index_d$2 {
|
|
5628
|
-
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type index_d$2_CloneFormFromTemplateRequest as CloneFormFromTemplateRequest, type index_d$2_CloneFormFromTemplateResponse as CloneFormFromTemplateResponse, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DatePicker$1 as DatePicker, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DisplayFieldDisplayFieldTypeOptionsOneOf$1 as DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType$1 as DisplayFieldType, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type index_d$2_Field as Field, type FieldGroup$1 as FieldGroup, type index_d$2_FieldIdBasedErrorDetails as FieldIdBasedErrorDetails, index_d$2_FieldInputType as FieldInputType, type index_d$2_FieldOption as FieldOption, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, index_d$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, index_d$2_FilterType as FilterType, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPayment$1 as FixedPayment, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type index_d$2_FormFieldV2ApiValidationErrorDetails as FormFieldV2ApiValidationErrorDetails, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type index_d$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, type index_d$2_FormSummary as FormSummary, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type index_d$2_GetFormSummaryRequest as GetFormSummaryRequest, type index_d$2_GetFormSummaryResponse as GetFormSummaryResponse, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, ImageFit$1 as ImageFit, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsProvidersConfigsRequest as ListFormsProvidersConfigsRequest, type index_d$2_ListFormsProvidersConfigsResponse as ListFormsProvidersConfigsResponse, type index_d$2_ListFormsProvidersConfigsResponseNonNullableFields as ListFormsProvidersConfigsResponseNonNullableFields, type index_d$2_ListFormsRequest as ListFormsRequest, index_d$2_ListFormsRequestListFormsOrder as ListFormsRequestListFormsOrder, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type index_d$2_ListTemplateExtensionsOptions as ListTemplateExtensionsOptions, type index_d$2_ListTemplateExtensionsRequest as ListTemplateExtensionsRequest, type index_d$2_ListTemplateExtensionsResponse as ListTemplateExtensionsResponse, type index_d$2_ListTemplateExtensionsResponseNonNullableFields as ListTemplateExtensionsResponseNonNullableFields, 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 index_d$2_NameFilter as NameFilter, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type index_d$2_NestedFormFieldsMissingErrorDetails as NestedFormFieldsMissingErrorDetails, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type index_d$2_NonExistingNestedFormsErrorDetails as NonExistingNestedFormsErrorDetails, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$1 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type PageNavigationOptions$1 as PageNavigationOptions, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentInput$1 as PaymentInput, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type index_d$2_ProductIdBasedErrorDetails as ProductIdBasedErrorDetails, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichContentOptions$1 as RichContentOptions, type RichText$1 as RichText, type index_d$2_RuleIdBasedErrorDetails as RuleIdBasedErrorDetails, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, type index_d$2_StepIdBasedErrorDetails as StepIdBasedErrorDetails, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, type Tags$1 as Tags, type TagsOption$1 as TagsOption, Target$1 as Target, type index_d$2_TargetBasedErrorDetails as TargetBasedErrorDetails, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, Type$1 as Type, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_listFormsProvidersConfigs as listFormsProvidersConfigs, index_d$2_listTemplateExtensions as listTemplateExtensions, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$2 as updateExtendedFields, index_d$2_updateForm as updateForm };
|
|
5650
|
+
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type index_d$2_CloneFormFromTemplateRequest as CloneFormFromTemplateRequest, type index_d$2_CloneFormFromTemplateResponse as CloneFormFromTemplateResponse, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, type DateInput$1 as DateInput, type DatePicker$1 as DatePicker, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DisplayFieldDisplayFieldTypeOptionsOneOf$1 as DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType$1 as DisplayFieldType, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type index_d$2_Field as Field, type FieldGroup$1 as FieldGroup, type index_d$2_FieldIdBasedErrorDetails as FieldIdBasedErrorDetails, index_d$2_FieldInputType as FieldInputType, type index_d$2_FieldOption as FieldOption, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, index_d$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, index_d$2_FilterType as FilterType, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPayment$1 as FixedPayment, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type index_d$2_FormFieldV2ApiValidationErrorDetails as FormFieldV2ApiValidationErrorDetails, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type index_d$2_FormProviderRestrictions as FormProviderRestrictions, type FormRule$1 as FormRule, type index_d$2_FormSummary as FormSummary, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_FormsSchemaProvidersConfig as FormsSchemaProvidersConfig, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type index_d$2_GetFormSummaryRequest as GetFormSummaryRequest, type index_d$2_GetFormSummaryResponse as GetFormSummaryResponse, type index_d$2_GetFormSummaryResponseNonNullableFields as GetFormSummaryResponseNonNullableFields, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, ImageFit$1 as ImageFit, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsProvidersConfigsRequest as ListFormsProvidersConfigsRequest, type index_d$2_ListFormsProvidersConfigsResponse as ListFormsProvidersConfigsResponse, type index_d$2_ListFormsProvidersConfigsResponseNonNullableFields as ListFormsProvidersConfigsResponseNonNullableFields, type index_d$2_ListFormsRequest as ListFormsRequest, index_d$2_ListFormsRequestListFormsOrder as ListFormsRequestListFormsOrder, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type index_d$2_ListTemplateExtensionsOptions as ListTemplateExtensionsOptions, type index_d$2_ListTemplateExtensionsRequest as ListTemplateExtensionsRequest, type index_d$2_ListTemplateExtensionsResponse as ListTemplateExtensionsResponse, type index_d$2_ListTemplateExtensionsResponseNonNullableFields as ListTemplateExtensionsResponseNonNullableFields, 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 index_d$2_NameFilter as NameFilter, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type index_d$2_NestedFormFieldsMissingErrorDetails as NestedFormFieldsMissingErrorDetails, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type index_d$2_NonExistingNestedFormsErrorDetails as NonExistingNestedFormsErrorDetails, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$1 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type PageNavigationOptions$1 as PageNavigationOptions, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentInput$1 as PaymentInput, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type index_d$2_ProductIdBasedErrorDetails as ProductIdBasedErrorDetails, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypeEnum$1 as PropertiesTypeEnum, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichContentOptions$1 as RichContentOptions, type RichText$1 as RichText, type index_d$2_RuleIdBasedErrorDetails as RuleIdBasedErrorDetails, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, type index_d$2_StepIdBasedErrorDetails as StepIdBasedErrorDetails, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, type Tags$1 as Tags, type TagsOption$1 as TagsOption, Target$1 as Target, type index_d$2_TargetBasedErrorDetails as TargetBasedErrorDetails, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeInput$1 as TimeInput, Type$1 as Type, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_getFormSummary as getFormSummary, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_listFormsProvidersConfigs as listFormsProvidersConfigs, index_d$2_listTemplateExtensions as listTemplateExtensions, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$2 as updateExtendedFields, index_d$2_updateForm as updateForm };
|
|
5629
5651
|
}
|
|
5630
5652
|
|
|
5631
5653
|
/**
|
|
@@ -3583,6 +3583,67 @@ interface FormProviderRestrictions$1 {
|
|
|
3583
3583
|
/** Maximum amount of deleted forms allowed per namespace. */
|
|
3584
3584
|
maxDeletedFormsAmount?: number | null;
|
|
3585
3585
|
}
|
|
3586
|
+
interface GetFormSummaryRequest$1 {
|
|
3587
|
+
/** Id of the form to retrieve. */
|
|
3588
|
+
formId: string;
|
|
3589
|
+
}
|
|
3590
|
+
interface GetFormSummaryResponse$1 {
|
|
3591
|
+
/** The retrieved form field summary. */
|
|
3592
|
+
formSummary?: FormSummary$1;
|
|
3593
|
+
}
|
|
3594
|
+
interface FormSummary$1 {
|
|
3595
|
+
/** Form ID. */
|
|
3596
|
+
id?: string;
|
|
3597
|
+
/** Summarized form fields. */
|
|
3598
|
+
fields?: Field$1[];
|
|
3599
|
+
}
|
|
3600
|
+
declare enum FieldInputType$1 {
|
|
3601
|
+
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
3602
|
+
STRING = "STRING",
|
|
3603
|
+
NUMBER = "NUMBER",
|
|
3604
|
+
RATING = "RATING",
|
|
3605
|
+
BOOLEAN = "BOOLEAN",
|
|
3606
|
+
ARRAY = "ARRAY",
|
|
3607
|
+
OBJECT = "OBJECT",
|
|
3608
|
+
WIX_FILE = "WIX_FILE",
|
|
3609
|
+
SIGNATURE = "SIGNATURE",
|
|
3610
|
+
PAYMENT = "PAYMENT",
|
|
3611
|
+
MULTILINE_ADDRESS = "MULTILINE_ADDRESS",
|
|
3612
|
+
DATE = "DATE",
|
|
3613
|
+
TIME = "TIME",
|
|
3614
|
+
DATE_TIME = "DATE_TIME",
|
|
3615
|
+
EMAIL = "EMAIL",
|
|
3616
|
+
URL = "URL",
|
|
3617
|
+
UUID = "UUID",
|
|
3618
|
+
PHONE = "PHONE",
|
|
3619
|
+
URI = "URI",
|
|
3620
|
+
HOSTNAME = "HOSTNAME",
|
|
3621
|
+
COLOR_HEX = "COLOR_HEX",
|
|
3622
|
+
CURRENCY = "CURRENCY",
|
|
3623
|
+
LANGUAGE = "LANGUAGE",
|
|
3624
|
+
DATE_OPTIONAL_TIME = "DATE_OPTIONAL_TIME"
|
|
3625
|
+
}
|
|
3626
|
+
interface FieldOption$1 {
|
|
3627
|
+
/** Selectable option label */
|
|
3628
|
+
label?: string | null;
|
|
3629
|
+
/** Selectable option value, which is saved to DB. */
|
|
3630
|
+
value?: string | null;
|
|
3631
|
+
}
|
|
3632
|
+
interface Field$1 {
|
|
3633
|
+
/** Definition of a target where the value of field belongs. */
|
|
3634
|
+
target?: string | null;
|
|
3635
|
+
/** Label of the field */
|
|
3636
|
+
label?: string | null;
|
|
3637
|
+
/** Input type of the field */
|
|
3638
|
+
type?: FieldInputType$1;
|
|
3639
|
+
/** List of options to select from */
|
|
3640
|
+
options?: FieldOption$1[];
|
|
3641
|
+
/**
|
|
3642
|
+
* Flag indicating whether field is deleted.
|
|
3643
|
+
* Default: false.
|
|
3644
|
+
*/
|
|
3645
|
+
deleted?: boolean;
|
|
3646
|
+
}
|
|
3586
3647
|
interface PhoneConstraintsNonNullableFields$1 {
|
|
3587
3648
|
allowedCountryCodes: string[];
|
|
3588
3649
|
}
|
|
@@ -4325,6 +4386,17 @@ interface FormsSchemaProvidersConfigNonNullableFields$1 {
|
|
|
4325
4386
|
interface ListFormsProvidersConfigsResponseNonNullableFields$1 {
|
|
4326
4387
|
configs: FormsSchemaProvidersConfigNonNullableFields$1[];
|
|
4327
4388
|
}
|
|
4389
|
+
interface FieldNonNullableFields$1 {
|
|
4390
|
+
type: FieldInputType$1;
|
|
4391
|
+
deleted: boolean;
|
|
4392
|
+
}
|
|
4393
|
+
interface FormSummaryNonNullableFields$1 {
|
|
4394
|
+
id: string;
|
|
4395
|
+
fields: FieldNonNullableFields$1[];
|
|
4396
|
+
}
|
|
4397
|
+
interface GetFormSummaryResponseNonNullableFields$1 {
|
|
4398
|
+
formSummary?: FormSummaryNonNullableFields$1;
|
|
4399
|
+
}
|
|
4328
4400
|
|
|
4329
4401
|
interface Form {
|
|
4330
4402
|
/**
|
|
@@ -7888,6 +7960,67 @@ interface FormProviderRestrictions {
|
|
|
7888
7960
|
/** Maximum amount of deleted forms allowed per namespace. */
|
|
7889
7961
|
maxDeletedFormsAmount?: number | null;
|
|
7890
7962
|
}
|
|
7963
|
+
interface GetFormSummaryRequest {
|
|
7964
|
+
/** Id of the form to retrieve. */
|
|
7965
|
+
formId: string;
|
|
7966
|
+
}
|
|
7967
|
+
interface GetFormSummaryResponse {
|
|
7968
|
+
/** The retrieved form field summary. */
|
|
7969
|
+
formSummary?: FormSummary;
|
|
7970
|
+
}
|
|
7971
|
+
interface FormSummary {
|
|
7972
|
+
/** Form ID. */
|
|
7973
|
+
_id?: string;
|
|
7974
|
+
/** Summarized form fields. */
|
|
7975
|
+
fields?: Field[];
|
|
7976
|
+
}
|
|
7977
|
+
declare enum FieldInputType {
|
|
7978
|
+
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
7979
|
+
STRING = "STRING",
|
|
7980
|
+
NUMBER = "NUMBER",
|
|
7981
|
+
RATING = "RATING",
|
|
7982
|
+
BOOLEAN = "BOOLEAN",
|
|
7983
|
+
ARRAY = "ARRAY",
|
|
7984
|
+
OBJECT = "OBJECT",
|
|
7985
|
+
WIX_FILE = "WIX_FILE",
|
|
7986
|
+
SIGNATURE = "SIGNATURE",
|
|
7987
|
+
PAYMENT = "PAYMENT",
|
|
7988
|
+
MULTILINE_ADDRESS = "MULTILINE_ADDRESS",
|
|
7989
|
+
DATE = "DATE",
|
|
7990
|
+
TIME = "TIME",
|
|
7991
|
+
DATE_TIME = "DATE_TIME",
|
|
7992
|
+
EMAIL = "EMAIL",
|
|
7993
|
+
URL = "URL",
|
|
7994
|
+
UUID = "UUID",
|
|
7995
|
+
PHONE = "PHONE",
|
|
7996
|
+
URI = "URI",
|
|
7997
|
+
HOSTNAME = "HOSTNAME",
|
|
7998
|
+
COLOR_HEX = "COLOR_HEX",
|
|
7999
|
+
CURRENCY = "CURRENCY",
|
|
8000
|
+
LANGUAGE = "LANGUAGE",
|
|
8001
|
+
DATE_OPTIONAL_TIME = "DATE_OPTIONAL_TIME"
|
|
8002
|
+
}
|
|
8003
|
+
interface FieldOption {
|
|
8004
|
+
/** Selectable option label */
|
|
8005
|
+
label?: string | null;
|
|
8006
|
+
/** Selectable option value, which is saved to DB. */
|
|
8007
|
+
value?: string | null;
|
|
8008
|
+
}
|
|
8009
|
+
interface Field {
|
|
8010
|
+
/** Definition of a target where the value of field belongs. */
|
|
8011
|
+
target?: string | null;
|
|
8012
|
+
/** Label of the field */
|
|
8013
|
+
label?: string | null;
|
|
8014
|
+
/** Input type of the field */
|
|
8015
|
+
type?: FieldInputType;
|
|
8016
|
+
/** List of options to select from */
|
|
8017
|
+
options?: FieldOption[];
|
|
8018
|
+
/**
|
|
8019
|
+
* Flag indicating whether field is deleted.
|
|
8020
|
+
* Default: false.
|
|
8021
|
+
*/
|
|
8022
|
+
deleted?: boolean;
|
|
8023
|
+
}
|
|
7891
8024
|
interface PhoneConstraintsNonNullableFields {
|
|
7892
8025
|
allowedCountryCodes: string[];
|
|
7893
8026
|
}
|
|
@@ -8624,6 +8757,17 @@ interface FormsSchemaProvidersConfigNonNullableFields {
|
|
|
8624
8757
|
interface ListFormsProvidersConfigsResponseNonNullableFields {
|
|
8625
8758
|
configs: FormsSchemaProvidersConfigNonNullableFields[];
|
|
8626
8759
|
}
|
|
8760
|
+
interface FieldNonNullableFields {
|
|
8761
|
+
type: FieldInputType;
|
|
8762
|
+
deleted: boolean;
|
|
8763
|
+
}
|
|
8764
|
+
interface FormSummaryNonNullableFields {
|
|
8765
|
+
_id: string;
|
|
8766
|
+
fields: FieldNonNullableFields[];
|
|
8767
|
+
}
|
|
8768
|
+
interface GetFormSummaryResponseNonNullableFields {
|
|
8769
|
+
formSummary?: FormSummaryNonNullableFields;
|
|
8770
|
+
}
|
|
8627
8771
|
|
|
8628
8772
|
type __PublicMethodMetaInfo$2<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
8629
8773
|
getUrl: (context: any) => string;
|
|
@@ -8669,6 +8813,9 @@ declare function updateExtendedFields$1(): __PublicMethodMetaInfo$2<'POST', {
|
|
|
8669
8813
|
id: string;
|
|
8670
8814
|
}, UpdateExtendedFieldsRequest$2, UpdateExtendedFieldsRequest$3, UpdateExtendedFieldsResponse$2 & UpdateExtendedFieldsResponseNonNullableFields$2, UpdateExtendedFieldsResponse$3 & UpdateExtendedFieldsResponseNonNullableFields$3>;
|
|
8671
8815
|
declare function listFormsProvidersConfigs(): __PublicMethodMetaInfo$2<'GET', {}, ListFormsProvidersConfigsRequest, ListFormsProvidersConfigsRequest$1, ListFormsProvidersConfigsResponse & ListFormsProvidersConfigsResponseNonNullableFields, ListFormsProvidersConfigsResponse$1 & ListFormsProvidersConfigsResponseNonNullableFields$1>;
|
|
8816
|
+
declare function getFormSummary(): __PublicMethodMetaInfo$2<'GET', {
|
|
8817
|
+
formId: string;
|
|
8818
|
+
}, GetFormSummaryRequest, GetFormSummaryRequest$1, GetFormSummaryResponse & GetFormSummaryResponseNonNullableFields, GetFormSummaryResponse$1 & GetFormSummaryResponseNonNullableFields$1>;
|
|
8672
8819
|
|
|
8673
8820
|
declare const meta$2_bulkCreateForm: typeof bulkCreateForm;
|
|
8674
8821
|
declare const meta$2_bulkRemoveDeletedField: typeof bulkRemoveDeletedField;
|
|
@@ -8678,6 +8825,7 @@ declare const meta$2_createForm: typeof createForm;
|
|
|
8678
8825
|
declare const meta$2_deleteForm: typeof deleteForm;
|
|
8679
8826
|
declare const meta$2_getDeletedForm: typeof getDeletedForm;
|
|
8680
8827
|
declare const meta$2_getForm: typeof getForm;
|
|
8828
|
+
declare const meta$2_getFormSummary: typeof getFormSummary;
|
|
8681
8829
|
declare const meta$2_listDeletedForms: typeof listDeletedForms;
|
|
8682
8830
|
declare const meta$2_listForms: typeof listForms;
|
|
8683
8831
|
declare const meta$2_listFormsProvidersConfigs: typeof listFormsProvidersConfigs;
|
|
@@ -8688,7 +8836,7 @@ declare const meta$2_removeFormFromTrashBin: typeof removeFormFromTrashBin;
|
|
|
8688
8836
|
declare const meta$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
8689
8837
|
declare const meta$2_updateForm: typeof updateForm;
|
|
8690
8838
|
declare namespace meta$2 {
|
|
8691
|
-
export { type __PublicMethodMetaInfo$2 as __PublicMethodMetaInfo, meta$2_bulkCreateForm as bulkCreateForm, meta$2_bulkRemoveDeletedField as bulkRemoveDeletedField, meta$2_cloneForm as cloneForm, meta$2_countForms as countForms, meta$2_createForm as createForm, meta$2_deleteForm as deleteForm, meta$2_getDeletedForm as getDeletedForm, meta$2_getForm as getForm, meta$2_listDeletedForms as listDeletedForms, meta$2_listForms as listForms, meta$2_listFormsProvidersConfigs as listFormsProvidersConfigs, meta$2_listTemplateExtensions as listTemplateExtensions, meta$2_queryDeletedForms as queryDeletedForms, meta$2_queryForms as queryForms, meta$2_removeFormFromTrashBin as removeFormFromTrashBin, meta$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$1 as updateExtendedFields, meta$2_updateForm as updateForm };
|
|
8839
|
+
export { type __PublicMethodMetaInfo$2 as __PublicMethodMetaInfo, meta$2_bulkCreateForm as bulkCreateForm, meta$2_bulkRemoveDeletedField as bulkRemoveDeletedField, meta$2_cloneForm as cloneForm, meta$2_countForms as countForms, meta$2_createForm as createForm, meta$2_deleteForm as deleteForm, meta$2_getDeletedForm as getDeletedForm, meta$2_getForm as getForm, meta$2_getFormSummary as getFormSummary, meta$2_listDeletedForms as listDeletedForms, meta$2_listForms as listForms, meta$2_listFormsProvidersConfigs as listFormsProvidersConfigs, meta$2_listTemplateExtensions as listTemplateExtensions, meta$2_queryDeletedForms as queryDeletedForms, meta$2_queryForms as queryForms, meta$2_removeFormFromTrashBin as removeFormFromTrashBin, meta$2_restoreFromTrashBin as restoreFromTrashBin, updateExtendedFields$1 as updateExtendedFields, meta$2_updateForm as updateForm };
|
|
8692
8840
|
}
|
|
8693
8841
|
|
|
8694
8842
|
/**
|