@wix/auto_sdk_forms_submissions 1.0.95 → 1.0.97
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/build/cjs/{forms-v4-submission-submissions.universal-BhLZFFos.d.ts → forms-v4-submission-submissions.universal-CG5mgBXv.d.ts} +19 -4
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +20 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-BhLZFFos.d.mts → forms-v4-submission-submissions.universal-CG5mgBXv.d.mts} +19 -4
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +20 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-j32T0u1k.d.ts → forms-v4-submission-submissions.universal-CioD21SQ.d.ts} +19 -4
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +20 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-j32T0u1k.d.mts → forms-v4-submission-submissions.universal-CioD21SQ.d.mts} +19 -4
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +20 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -5622,13 +5622,18 @@ interface TagsTagList {
|
|
|
5622
5622
|
*/
|
|
5623
5623
|
tagIds?: string[];
|
|
5624
5624
|
}
|
|
5625
|
-
interface QuizSettings extends QuizSettingsResultsDisplayOptionsOneOf {
|
|
5625
|
+
interface QuizSettings extends QuizSettingsPassingCriteriaOneOf, QuizSettingsResultsDisplayOptionsOneOf {
|
|
5626
|
+
/** Score required to pass the quiz (in points). */
|
|
5627
|
+
passingScorePoints?: number;
|
|
5628
|
+
/**
|
|
5629
|
+
* Score required to pass the quiz as a percentage (0-100).
|
|
5630
|
+
* @max 100
|
|
5631
|
+
*/
|
|
5632
|
+
passingScorePercentage?: number;
|
|
5626
5633
|
/** Configuration for displaying only the pass/fail message. */
|
|
5627
5634
|
passingStatusOptions?: PassFailMessages;
|
|
5628
5635
|
/** Configuration for displaying both the score and pass/fail message. */
|
|
5629
5636
|
scoreAndPassingStatusOptions?: PassFailMessages;
|
|
5630
|
-
/** Score required to pass the quiz. */
|
|
5631
|
-
passingScore?: number;
|
|
5632
5637
|
/** Confirmation message text. */
|
|
5633
5638
|
message?: RichContent;
|
|
5634
5639
|
/**
|
|
@@ -5638,6 +5643,16 @@ interface QuizSettings extends QuizSettingsResultsDisplayOptionsOneOf {
|
|
|
5638
5643
|
resultsDisplay?: ResultsDisplayWithLiterals;
|
|
5639
5644
|
}
|
|
5640
5645
|
/** @oneof */
|
|
5646
|
+
interface QuizSettingsPassingCriteriaOneOf {
|
|
5647
|
+
/** Score required to pass the quiz (in points). */
|
|
5648
|
+
passingScorePoints?: number;
|
|
5649
|
+
/**
|
|
5650
|
+
* Score required to pass the quiz as a percentage (0-100).
|
|
5651
|
+
* @max 100
|
|
5652
|
+
*/
|
|
5653
|
+
passingScorePercentage?: number;
|
|
5654
|
+
}
|
|
5655
|
+
/** @oneof */
|
|
5641
5656
|
interface QuizSettingsResultsDisplayOptionsOneOf {
|
|
5642
5657
|
/** Configuration for displaying only the pass/fail message. */
|
|
5643
5658
|
passingStatusOptions?: PassFailMessages;
|
|
@@ -7783,4 +7798,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7783
7798
|
fieldsToValidate?: string[];
|
|
7784
7799
|
}
|
|
7785
7800
|
|
|
7786
|
-
export { ValidationFormat as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, SchedulingComponentType as a$, ProductType as a0, PriceType as a1, FieldType as a2, FormatEnumFormat as a3, StringComponentType as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, LinkTarget as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, Scaling as aG, LayoutDataImagePosition as aH, VerticalAlignmentAlignment as aI, ResponsivenessBehaviour as aJ, DesignTarget as aK, ImagePosition as aL, Alignment as aM, ImageFit as aN, NumberOfColumns as aO, FirstDayOfWeek as aP, NumberComponentType as aQ, BooleanComponentType as aR, ItemType as aS, PropertiesTypeEnum as aT, ArrayComponentType as aU, WixFileComponentType as aV, UploadFileFormat as aW, PaymentComponentType as aX, ComponentType as aY, Type as aZ, ObjectArrayComponentType as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, Position as au, AspectRatio as av, Resizing as aw, Placement as ax, CardStylesType as ay, CardStylesAlignment as az, type CreateSubmissionApplicationErrors as b, type NumberErrorMessages as b$, Format as b0, InputType as b1, EmailInfoTag as b2, PhoneInfoTag as b3, Tag as b4, ConfirmationLevel as b5, ContactField as b6, DisplayFieldType as b7, OverrideEntityType as b8, Kind as b9, type FormSubmissionStatusUpdatedEvent as bA, type RemovedSubmissionFromTrash as bB, type SubmissionContactMapped as bC, type MarketingSubscriptionDetails as bD, type SubmissionContactMappingSkipped as bE, type DomainEvent as bF, type DomainEventBodyOneOf as bG, type EntityCreatedEvent as bH, type RestoreInfo as bI, type EntityUpdatedEvent as bJ, type EntityDeletedEvent as bK, type ActionEvent as bL, type MessageEnvelope as bM, type IdentificationData as bN, type IdentificationDataIdOneOf as bO, type AccountInfo as bP, type CreateCheckoutFromSubmissionRequest as bQ, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bR, type Form as bS, type FormField as bT, type FormFieldStringType as bU, type FormFieldStringTypeFormatOptionsOneOf as bV, type StringErrorMessages as bW, type StringTypeDateTimeConstraints as bX, type StringTypePhoneConstraints as bY, type StringTypeValidationMessages as bZ, type FormFieldNumberType as b_, FormFieldContactInfoEmailInfoTag as ba, FormFieldContactInfoPhoneInfoTag as bb, AddressInfoTag as bc, SubscriptionInfoOptInLevel as bd, FormFieldContactInfoContactField as be, SpamFilterProtectionLevel as bf, RequiredIndicator as bg, RequiredIndicatorPlacement as bh, Target as bi, SubmitSuccessAction as bj, ChangeableProperty as bk, OverrideEntityTypeEnumOverrideEntityType as bl, Operator as bm, ResultsDisplay as bn, IdentityType as bo, ErrorType as bp, SortOrder as bq, Mode as br, Status as bs, SubmissionErrorType as bt, type Submitter as bu, type SubmitterSubmitterOneOf as bv, type ExtendedFields as bw, type OrderDetails as bx, type PublicTags as by, type TagList as bz, type CreateSubmissionValidationErrors as c, type GalleryData as c$, type IntegerType as c0, type FormFieldBooleanType as c1, type BooleanErrorMessages as c2, type FormFieldArrayType as c3, type FormFieldObjectType as c4, type ObjectTypePropertiesType as c5, type ObjectTypePropertiesTypePropertiesTypeOneOf as c6, type ObjectErrorMessages as c7, type ArrayTypeArrayItems as c8, type ArrayTypeArrayItemsItemsOneOf as c9, type PhoneConstraints as cA, type ValidationMessages as cB, type StringQuizFieldSettings as cC, type TextInput as cD, type RichContent as cE, type Node as cF, type NodeDataOneOf as cG, type NodeStyle as cH, type ButtonData as cI, type Border as cJ, type Colors as cK, type PluginContainerData as cL, type PluginContainerDataWidth as cM, type PluginContainerDataWidthDataOneOf as cN, type Spoiler as cO, type Height as cP, type Styles as cQ, type Link as cR, type LinkDataOneOf as cS, type Rel as cT, type CodeBlockData as cU, type TextStyle as cV, type DividerData as cW, type FileData as cX, type FileSource as cY, type FileSourceDataOneOf as cZ, type PDFSettings as c_, type ArrayErrorMessages as ca, type PredefinedValidation as cb, type PredefinedValidationFormatOptionsOneOf as cc, type PaymentType as cd, type QuantityLimit as ce, type FixedPriceOptions as cf, type DynamicPriceOptions as cg, type Product as ch, type ProductPriceOptionsOneOf as ci, type MultilineAddressValidation as cj, type FieldOverrides as ck, type FieldsOverrides as cl, type ObjectArrayType as cm, type NestedFormFieldOverrides as cn, type Validation as co, type ValidationValidationOneOf as cp, type DataExtensionsDetails as cq, type NestedFormOverrides as cr, type Field as cs, type FieldFieldTypeOptionsOneOf as ct, type InputField as cu, type InputFieldInputTypeOptionsOneOf as cv, type StringCorrectAnswersList as cw, type StringType as cx, type StringTypeFormatOptionsOneOf as cy, type DateTimeConstraints as cz, type UpdateSubmission as d, type TableCellData as d$, type Media as d0, type Image as d1, type Video as d2, type Item as d3, type ItemDataOneOf as d4, type GalleryOptions as d5, type GalleryOptionsLayout as d6, type ItemStyle as d7, type Thumbnails as d8, type GIFData as d9, type Design as dA, type TextData as dB, type Decoration as dC, type DecorationDataOneOf as dD, type AnchorData as dE, type ColorData as dF, type LinkData as dG, type MentionData as dH, type FontSizeData as dI, type SpoilerData as dJ, type FontFamilyData as dK, type AppEmbedData as dL, type AppEmbedDataAppDataOneOf as dM, type BookingData as dN, type EventData as dO, type ButtonStyles as dP, type ImageStyles as dQ, type RibbonStyles as dR, type CardStyles as dS, type PricingData as dT, type VideoData as dU, type PlaybackOptions as dV, type EmbedData as dW, type Oembed as dX, type CollapsibleListData as dY, type TableData as dZ, type Dimensions as d_, type GIF as da, type HeadingData as db, type HTMLData as dc, type HTMLDataDataOneOf as dd, type ImageData as de, type StylesBorder as df, type ImageDataStyles as dg, type LinkPreviewData as dh, type LinkPreviewDataStyles as di, type MapData as dj, type MapSettings as dk, type ParagraphData as dl, type PollData as dm, type Permissions as dn, type PollOption as dp, type Settings as dq, type PollLayout as dr, type OptionLayout as ds, type Gradient as dt, type Background as du, type BackgroundBackgroundOneOf as dv, type PollDesign as dw, type OptionDesign as dx, type Poll as dy, type PollDataLayout as dz, type UpdateSubmissionValidationErrors as e, type AddressLine2 as e$, type CellStyle as e0, type BorderColors as e1, type BorderWidths as e2, type ListValue as e3, type AudioData as e4, type OrderedListData as e5, type BulletedListData as e6, type BlockquoteData as e7, type CaptionData as e8, type LayoutData as e9, type NumberInput as eA, type RatingInput as eB, type BooleanType as eC, type Checkbox as eD, type CorrectAnswersList as eE, type ArrayType as eF, type ObjectType as eG, type PropertiesType as eH, type PropertiesTypePropertiesTypeOptionsOneOf as eI, type ArrayItems as eJ, type ArrayItemsItemTypeOptionsOneOf as eK, type QuizFieldSettings as eL, type CheckboxGroup as eM, type Option as eN, type ComponentsTags as eO, type TagsOption as eP, type ServicesCheckboxGroup as eQ, type FileType as eR, type FileUpload as eS, type Signature as eT, type ProductCheckboxGroup as eU, type ProductCheckboxGroupOption as eV, type DonationInput as eW, type DonationInputOption as eX, type PaymentInput as eY, type FixedPayment as eZ, type MultilineAddress as e_, type BackgroundImage as ea, type LayoutCellData as eb, type ShapeData as ec, type ShapeDataStyles as ed, type Metadata as ee, type DocumentStyle as ef, type TextNodeStyle as eg, type MediaItem as eh, type MediaItemMediaOneOf as ei, type MediaSettings as ej, type RadioGroup as ek, type RadioGroupOption as el, type CustomOption as em, type Dropdown as en, type DropdownOption as eo, type DateTimeInput as ep, type PhoneInput as eq, type DateInput as er, type TimeInput as es, type DatePicker as et, type ServicesDropdown as eu, type ServiceOption as ev, type Password as ew, type NumberCorrectAnswersList as ex, type NumberType as ey, type NumberQuizFieldSettings as ez, type ConfirmSubmissionResponse as f, type RequiredIndicatorProperties as f$, type DefaultCountryConfig as f0, type DefaultCountryConfigOptionsOneOf as f1, type FieldsSettings as f2, type Repeater as f3, type FormLayout as f4, type BreakPoint as f5, type ItemLayout as f6, type ItemLayoutItemOneOf as f7, type Group as f8, type Margin as f9, type Payment as fA, type PaymentComponentTypeOptionsOneOf as fB, type Scheduling as fC, type SchedulingComponentTypeOptionsOneOf as fD, type Address as fE, type AddressComponentTypeOptionsOneOf as fF, type ObjectArray as fG, type ObjectArrayComponentTypeOptionsOneOf as fH, type DisplayField as fI, type DisplayFieldDisplayFieldTypeOptionsOneOf as fJ, type RichContentOptions as fK, type PageNavigationOptions as fL, type Step as fM, type FormRule as fN, type FormOverride as fO, type FormProperties as fP, type PostSubmissionTriggers as fQ, type UpsertContact as fR, type V4FormFieldContactInfo as fS, type V4FormFieldContactInfoAdditionalInfoOneOf as fT, type FormFieldContactInfoEmailInfo as fU, type FormFieldContactInfoPhoneInfo as fV, type FormFieldContactInfoAddressInfo as fW, type FormFieldContactInfoCustomFieldInfo as fX, type FormFieldContactInfoSubscriptionInfo as fY, type NestedForm as fZ, type LimitationRule as f_, type Section as fa, type Appointment as fb, type AppointmentFormatInfoOneOf as fc, type Location as fd, type LocationLocationInfoOneOf as fe, type InPersonOptions as ff, type VideoConferenceOptions as fg, type PhoneOptions as fh, type FormFieldContactInfo as fi, type FormFieldContactInfoAdditionalInfoOneOf as fj, type EmailInfo as fk, type PhoneInfo as fl, type AddressInfo as fm, type CustomFieldInfo as fn, type SubscriptionInfo as fo, type _String as fp, type _StringComponentTypeOptionsOneOf as fq, type _Number as fr, type _NumberComponentTypeOptionsOneOf as fs, type _Boolean as ft, type _BooleanComponentTypeOptionsOneOf as fu, type _Array as fv, type _ArrayComponentTypeOptionsOneOf as fw, type _Object as fx, type WixFile as fy, type WixFileComponentTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type GetDeletedSubmissionRequest as g$, type SubmitSettings as g0, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g1, type ThankYouMessageOptions as g2, type RedirectOptions as g3, type FieldGroup as g4, type Rule as g5, type RequiredOptions as g6, type HiddenOptions as g7, type AllowedValuesOptions as g8, type FieldOverride as g9, type BulkCreateSubmissionBySubmitterRequest as gA, type BulkCreateSubmissionBySubmitterData as gB, type BulkCreateSubmissionBySubmitterResponse as gC, type BulkSubmissionResult as gD, type ItemMetadata as gE, type ApplicationError as gF, type BulkActionMetadata as gG, type GetSubmissionRequest as gH, type GetSubmissionResponse as gI, type GetSubmissionByCheckoutIdRequest as gJ, type GetSubmissionByCheckoutIdResponse as gK, type UpdateSubmissionRequest as gL, type UpdateSubmissionResponse as gM, type ConfirmSubmissionRequest as gN, type DeleteSubmissionRequest as gO, type DeleteSubmissionResponse as gP, type BulkDeleteSubmissionRequest as gQ, type BulkDeleteSubmissionResult as gR, type RestoreSubmissionFromTrashBinRequest as gS, type RemoveSubmissionFromTrashBinRequest as gT, type RemoveSubmissionFromTrashBinResponse as gU, type BulkRemoveSubmissionFromTrashBinRequest as gV, type BulkRemoveSubmissionFromTrashBinResult as gW, type ListDeletedSubmissionsRequest as gX, type CursorPaging as gY, type CursorPagingMetadata as gZ, type Cursors as g_, type FieldOverridePropertyTypeOptionsOneOf as ga, type ConditionNode as gb, type ConditionNodeNodeOneOf as gc, type AndCondition as gd, type OrCondition as ge, type Condition as gf, type RuleFormOverride as gg, type RuleFormOverrideEntityTypeOptionsOneOf as gh, type Tags as gi, type TagsTagList as gj, type QuizSettings as gk, type QuizSettingsResultsDisplayOptionsOneOf as gl, type PassFailMessages as gm, type CreateCheckoutFromSubmissionResponse as gn, type Checkout as go, type IsFormSubmittableRequest as gp, type IsFormSubmittableResponse as gq, type Empty as gr, type UpsertContactFromSubmissionRequest as gs, type SubmitContactResponse as gt, type CreateSubmissionRequest as gu, type CreateSubmissionResponse as gv, type SubmissionValidationErrorsDetails as gw, type ValidationError as gx, type CreateSubmissionBySubmitterRequest as gy, type CreateSubmissionBySubmitterResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type WidthTypeWithLiterals as h$, type QuerySubmissionRequest as h0, type CursorQueryPagingMethodOneOf as h1, type Sorting as h2, type SearchSubmissionsByNamespaceRequest as h3, type CursorSearch as h4, type CursorSearchPagingMethodOneOf as h5, type SearchDetails as h6, type SearchSubmissionsByNamespaceForExportRequest as h7, type SearchSubmissionsByNamespaceForExportResponse as h8, type QuerySubmissionsByNamespaceRequest as h9, type BulkUpdateFormSubmissionTagsByFilterResponse as hA, type ValidateFormSubmissionRequest as hB, type FieldViolation as hC, type FieldViolationErrorDataOneOf as hD, type SubmissionValidationErrors as hE, type SubmissionValidationError as hF, type SubmissionValidationErrorErrorMessageOneOf as hG, type BaseEventMetadata as hH, type EventMetadata as hI, type AccountInfoMetadata as hJ, type FormSubmissionSearchSpec as hK, type SubmissionsQueryResult as hL, type FormSubmissionQuerySpec as hM, type BulkUpdateFormSubmissionTagsOptions as hN, type BulkUpdateFormSubmissionTagsByFilterOptions as hO, utils as hP, type SubmissionStatusWithLiterals as hQ, type OptInLevelWithLiterals as hR, type WebhookIdentityTypeWithLiterals as hS, type StringTypeFormatEnumFormatWithLiterals as hT, type ValidationFormatWithLiterals as hU, type ProductTypeWithLiterals as hV, type PriceTypeWithLiterals as hW, type FieldTypeWithLiterals as hX, type FormatEnumFormatWithLiterals as hY, type StringComponentTypeWithLiterals as hZ, type NodeTypeWithLiterals as h_, type QuerySubmissionsByNamespaceResponse as ha, type QuerySubmissionsByNamespaceForExportRequest as hb, type QuerySubmissionsByNamespaceForExportResponse as hc, type CountSubmissionsByFilterRequest as hd, type FormSubmissionsCount as he, type CountSubmissionsRequest as hf, type CountDeletedSubmissionsRequest as hg, type FormDeletedSubmissionsCount as hh, type GetMediaUploadURLRequest as hi, type BulkMarkSubmissionsAsSeenRequest as hj, type GetSubmissionDownloadUrlRequest as hk, type SubmissionDocument as hl, type SubmissionDocumentDocumentOneOf as hm, type DocumentReady as hn, type DownloadSubmissionRequest as ho, type HeadersEntry as hp, type GetFormattedSubmissionRequest as hq, type FormattedSubmission as hr, type ListFormattedSubmissionsRequest as hs, type ListFormattedSubmissionsResponse as ht, type FormattedFormSubmission as hu, type UpdateExtendedFieldsRequest as hv, type BulkUpdateFormSubmissionTagsRequest as hw, type BulkUpdateFormSubmissionTagsResponse as hx, type BulkUpdateFormSubmissionTagsResult as hy, type BulkUpdateFormSubmissionTagsByFilterRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type TagWithLiterals as i$, type PluginContainerDataAlignmentWithLiterals as i0, type ButtonDataTypeWithLiterals as i1, type LinkTargetWithLiterals as i2, type TextAlignmentWithLiterals as i3, type LineStyleWithLiterals as i4, type WidthWithLiterals as i5, type DividerDataAlignmentWithLiterals as i6, type ViewModeWithLiterals as i7, type LayoutTypeWithLiterals as i8, type OrientationWithLiterals as i9, type NullValueWithLiterals as iA, type ScalingWithLiterals as iB, type LayoutDataImagePositionWithLiterals as iC, type VerticalAlignmentAlignmentWithLiterals as iD, type ResponsivenessBehaviourWithLiterals as iE, type DesignTargetWithLiterals as iF, type ImagePositionWithLiterals as iG, type AlignmentWithLiterals as iH, type ImageFitWithLiterals as iI, type NumberOfColumnsWithLiterals as iJ, type FirstDayOfWeekWithLiterals as iK, type NumberComponentTypeWithLiterals as iL, type BooleanComponentTypeWithLiterals as iM, type ItemTypeWithLiterals as iN, type PropertiesTypeEnumWithLiterals as iO, type ArrayComponentTypeWithLiterals as iP, type WixFileComponentTypeWithLiterals as iQ, type UploadFileFormatWithLiterals as iR, type PaymentComponentTypeWithLiterals as iS, type ComponentTypeWithLiterals as iT, type TypeWithLiterals as iU, type ObjectArrayComponentTypeWithLiterals as iV, type SchedulingComponentTypeWithLiterals as iW, type FormatWithLiterals as iX, type InputTypeWithLiterals as iY, type EmailInfoTagWithLiterals as iZ, type PhoneInfoTagWithLiterals as i_, type CropWithLiterals as ia, type ThumbnailsAlignmentWithLiterals as ib, type GIFTypeWithLiterals as ic, type SourceWithLiterals as id, type StylesPositionWithLiterals as ie, type MapTypeWithLiterals as ig, type ViewRoleWithLiterals as ih, type VoteRoleWithLiterals as ii, type PollLayoutTypeWithLiterals as ij, type PollLayoutDirectionWithLiterals as ik, type BackgroundTypeWithLiterals as il, type DecorationTypeWithLiterals as im, type FontTypeWithLiterals as io, type PositionWithLiterals as ip, type AspectRatioWithLiterals as iq, type ResizingWithLiterals as ir, type PlacementWithLiterals as is, type CardStylesTypeWithLiterals as it, type CardStylesAlignmentWithLiterals as iu, type LayoutWithLiterals as iv, type AppTypeWithLiterals as iw, type InitialExpandedItemsWithLiterals as ix, type DirectionWithLiterals as iy, type VerticalAlignmentWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ConfirmationLevelWithLiterals as j0, type ContactFieldWithLiterals as j1, type DisplayFieldTypeWithLiterals as j2, type OverrideEntityTypeWithLiterals as j3, type KindWithLiterals as j4, type FormFieldContactInfoEmailInfoTagWithLiterals as j5, type FormFieldContactInfoPhoneInfoTagWithLiterals as j6, type AddressInfoTagWithLiterals as j7, type SubscriptionInfoOptInLevelWithLiterals as j8, type FormFieldContactInfoContactFieldWithLiterals as j9, getSubmission as jA, updateSubmission as jB, confirmSubmission as jC, deleteSubmission as jD, bulkDeleteSubmission as jE, restoreSubmissionFromTrashBin as jF, removeSubmissionFromTrashBin as jG, bulkRemoveSubmissionFromTrashBin as jH, listDeletedSubmissions as jI, getDeletedSubmission as jJ, querySubmission as jK, querySubmissionsByNamespace as jL, countSubmissionsByFilter as jM, countSubmissions as jN, countDeletedSubmissions as jO, getMediaUploadUrl as jP, bulkMarkSubmissionsAsSeen as jQ, getSubmissionDownloadUrl as jR, downloadSubmission as jS, getFormattedSubmission as jT, updateExtendedFields as jU, validateFormSubmission as jV, type SpamFilterProtectionLevelWithLiterals as ja, type RequiredIndicatorWithLiterals as jb, type RequiredIndicatorPlacementWithLiterals as jc, type TargetWithLiterals as jd, type SubmitSuccessActionWithLiterals as je, type ChangeablePropertyWithLiterals as jf, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jg, type OperatorWithLiterals as jh, type ResultsDisplayWithLiterals as ji, type IdentityTypeWithLiterals as jj, type ErrorTypeWithLiterals as jk, type SortOrderWithLiterals as jl, type ModeWithLiterals as jm, type StatusWithLiterals as jn, type SubmissionErrorTypeWithLiterals as jo, type CommonSearchWithEntityContext as jp, type CommonQueryWithEntityContext as jq, onSubmissionCreated as jr, onSubmissionDeleted as js, onSubmissionRemovedSubmissionFromTrash as jt, onSubmissionStatusUpdated as ju, onSubmissionContactMapped as jv, onSubmissionContactMappingSkipped as jw, onSubmissionUpdated as jx, upsertContactFromSubmission as jy, createSubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
7801
|
+
export { ValidationFormat as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, SchedulingComponentType as a$, ProductType as a0, PriceType as a1, FieldType as a2, FormatEnumFormat as a3, StringComponentType as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, LinkTarget as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, Scaling as aG, LayoutDataImagePosition as aH, VerticalAlignmentAlignment as aI, ResponsivenessBehaviour as aJ, DesignTarget as aK, ImagePosition as aL, Alignment as aM, ImageFit as aN, NumberOfColumns as aO, FirstDayOfWeek as aP, NumberComponentType as aQ, BooleanComponentType as aR, ItemType as aS, PropertiesTypeEnum as aT, ArrayComponentType as aU, WixFileComponentType as aV, UploadFileFormat as aW, PaymentComponentType as aX, ComponentType as aY, Type as aZ, ObjectArrayComponentType as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, Position as au, AspectRatio as av, Resizing as aw, Placement as ax, CardStylesType as ay, CardStylesAlignment as az, type CreateSubmissionApplicationErrors as b, type NumberErrorMessages as b$, Format as b0, InputType as b1, EmailInfoTag as b2, PhoneInfoTag as b3, Tag as b4, ConfirmationLevel as b5, ContactField as b6, DisplayFieldType as b7, OverrideEntityType as b8, Kind as b9, type FormSubmissionStatusUpdatedEvent as bA, type RemovedSubmissionFromTrash as bB, type SubmissionContactMapped as bC, type MarketingSubscriptionDetails as bD, type SubmissionContactMappingSkipped as bE, type DomainEvent as bF, type DomainEventBodyOneOf as bG, type EntityCreatedEvent as bH, type RestoreInfo as bI, type EntityUpdatedEvent as bJ, type EntityDeletedEvent as bK, type ActionEvent as bL, type MessageEnvelope as bM, type IdentificationData as bN, type IdentificationDataIdOneOf as bO, type AccountInfo as bP, type CreateCheckoutFromSubmissionRequest as bQ, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bR, type Form as bS, type FormField as bT, type FormFieldStringType as bU, type FormFieldStringTypeFormatOptionsOneOf as bV, type StringErrorMessages as bW, type StringTypeDateTimeConstraints as bX, type StringTypePhoneConstraints as bY, type StringTypeValidationMessages as bZ, type FormFieldNumberType as b_, FormFieldContactInfoEmailInfoTag as ba, FormFieldContactInfoPhoneInfoTag as bb, AddressInfoTag as bc, SubscriptionInfoOptInLevel as bd, FormFieldContactInfoContactField as be, SpamFilterProtectionLevel as bf, RequiredIndicator as bg, RequiredIndicatorPlacement as bh, Target as bi, SubmitSuccessAction as bj, ChangeableProperty as bk, OverrideEntityTypeEnumOverrideEntityType as bl, Operator as bm, ResultsDisplay as bn, IdentityType as bo, ErrorType as bp, SortOrder as bq, Mode as br, Status as bs, SubmissionErrorType as bt, type Submitter as bu, type SubmitterSubmitterOneOf as bv, type ExtendedFields as bw, type OrderDetails as bx, type PublicTags as by, type TagList as bz, type CreateSubmissionValidationErrors as c, type GalleryData as c$, type IntegerType as c0, type FormFieldBooleanType as c1, type BooleanErrorMessages as c2, type FormFieldArrayType as c3, type FormFieldObjectType as c4, type ObjectTypePropertiesType as c5, type ObjectTypePropertiesTypePropertiesTypeOneOf as c6, type ObjectErrorMessages as c7, type ArrayTypeArrayItems as c8, type ArrayTypeArrayItemsItemsOneOf as c9, type PhoneConstraints as cA, type ValidationMessages as cB, type StringQuizFieldSettings as cC, type TextInput as cD, type RichContent as cE, type Node as cF, type NodeDataOneOf as cG, type NodeStyle as cH, type ButtonData as cI, type Border as cJ, type Colors as cK, type PluginContainerData as cL, type PluginContainerDataWidth as cM, type PluginContainerDataWidthDataOneOf as cN, type Spoiler as cO, type Height as cP, type Styles as cQ, type Link as cR, type LinkDataOneOf as cS, type Rel as cT, type CodeBlockData as cU, type TextStyle as cV, type DividerData as cW, type FileData as cX, type FileSource as cY, type FileSourceDataOneOf as cZ, type PDFSettings as c_, type ArrayErrorMessages as ca, type PredefinedValidation as cb, type PredefinedValidationFormatOptionsOneOf as cc, type PaymentType as cd, type QuantityLimit as ce, type FixedPriceOptions as cf, type DynamicPriceOptions as cg, type Product as ch, type ProductPriceOptionsOneOf as ci, type MultilineAddressValidation as cj, type FieldOverrides as ck, type FieldsOverrides as cl, type ObjectArrayType as cm, type NestedFormFieldOverrides as cn, type Validation as co, type ValidationValidationOneOf as cp, type DataExtensionsDetails as cq, type NestedFormOverrides as cr, type Field as cs, type FieldFieldTypeOptionsOneOf as ct, type InputField as cu, type InputFieldInputTypeOptionsOneOf as cv, type StringCorrectAnswersList as cw, type StringType as cx, type StringTypeFormatOptionsOneOf as cy, type DateTimeConstraints as cz, type UpdateSubmission as d, type TableCellData as d$, type Media as d0, type Image as d1, type Video as d2, type Item as d3, type ItemDataOneOf as d4, type GalleryOptions as d5, type GalleryOptionsLayout as d6, type ItemStyle as d7, type Thumbnails as d8, type GIFData as d9, type Design as dA, type TextData as dB, type Decoration as dC, type DecorationDataOneOf as dD, type AnchorData as dE, type ColorData as dF, type LinkData as dG, type MentionData as dH, type FontSizeData as dI, type SpoilerData as dJ, type FontFamilyData as dK, type AppEmbedData as dL, type AppEmbedDataAppDataOneOf as dM, type BookingData as dN, type EventData as dO, type ButtonStyles as dP, type ImageStyles as dQ, type RibbonStyles as dR, type CardStyles as dS, type PricingData as dT, type VideoData as dU, type PlaybackOptions as dV, type EmbedData as dW, type Oembed as dX, type CollapsibleListData as dY, type TableData as dZ, type Dimensions as d_, type GIF as da, type HeadingData as db, type HTMLData as dc, type HTMLDataDataOneOf as dd, type ImageData as de, type StylesBorder as df, type ImageDataStyles as dg, type LinkPreviewData as dh, type LinkPreviewDataStyles as di, type MapData as dj, type MapSettings as dk, type ParagraphData as dl, type PollData as dm, type Permissions as dn, type PollOption as dp, type Settings as dq, type PollLayout as dr, type OptionLayout as ds, type Gradient as dt, type Background as du, type BackgroundBackgroundOneOf as dv, type PollDesign as dw, type OptionDesign as dx, type Poll as dy, type PollDataLayout as dz, type UpdateSubmissionValidationErrors as e, type AddressLine2 as e$, type CellStyle as e0, type BorderColors as e1, type BorderWidths as e2, type ListValue as e3, type AudioData as e4, type OrderedListData as e5, type BulletedListData as e6, type BlockquoteData as e7, type CaptionData as e8, type LayoutData as e9, type NumberInput as eA, type RatingInput as eB, type BooleanType as eC, type Checkbox as eD, type CorrectAnswersList as eE, type ArrayType as eF, type ObjectType as eG, type PropertiesType as eH, type PropertiesTypePropertiesTypeOptionsOneOf as eI, type ArrayItems as eJ, type ArrayItemsItemTypeOptionsOneOf as eK, type QuizFieldSettings as eL, type CheckboxGroup as eM, type Option as eN, type ComponentsTags as eO, type TagsOption as eP, type ServicesCheckboxGroup as eQ, type FileType as eR, type FileUpload as eS, type Signature as eT, type ProductCheckboxGroup as eU, type ProductCheckboxGroupOption as eV, type DonationInput as eW, type DonationInputOption as eX, type PaymentInput as eY, type FixedPayment as eZ, type MultilineAddress as e_, type BackgroundImage as ea, type LayoutCellData as eb, type ShapeData as ec, type ShapeDataStyles as ed, type Metadata as ee, type DocumentStyle as ef, type TextNodeStyle as eg, type MediaItem as eh, type MediaItemMediaOneOf as ei, type MediaSettings as ej, type RadioGroup as ek, type RadioGroupOption as el, type CustomOption as em, type Dropdown as en, type DropdownOption as eo, type DateTimeInput as ep, type PhoneInput as eq, type DateInput as er, type TimeInput as es, type DatePicker as et, type ServicesDropdown as eu, type ServiceOption as ev, type Password as ew, type NumberCorrectAnswersList as ex, type NumberType as ey, type NumberQuizFieldSettings as ez, type ConfirmSubmissionResponse as f, type RequiredIndicatorProperties as f$, type DefaultCountryConfig as f0, type DefaultCountryConfigOptionsOneOf as f1, type FieldsSettings as f2, type Repeater as f3, type FormLayout as f4, type BreakPoint as f5, type ItemLayout as f6, type ItemLayoutItemOneOf as f7, type Group as f8, type Margin as f9, type Payment as fA, type PaymentComponentTypeOptionsOneOf as fB, type Scheduling as fC, type SchedulingComponentTypeOptionsOneOf as fD, type Address as fE, type AddressComponentTypeOptionsOneOf as fF, type ObjectArray as fG, type ObjectArrayComponentTypeOptionsOneOf as fH, type DisplayField as fI, type DisplayFieldDisplayFieldTypeOptionsOneOf as fJ, type RichContentOptions as fK, type PageNavigationOptions as fL, type Step as fM, type FormRule as fN, type FormOverride as fO, type FormProperties as fP, type PostSubmissionTriggers as fQ, type UpsertContact as fR, type V4FormFieldContactInfo as fS, type V4FormFieldContactInfoAdditionalInfoOneOf as fT, type FormFieldContactInfoEmailInfo as fU, type FormFieldContactInfoPhoneInfo as fV, type FormFieldContactInfoAddressInfo as fW, type FormFieldContactInfoCustomFieldInfo as fX, type FormFieldContactInfoSubscriptionInfo as fY, type NestedForm as fZ, type LimitationRule as f_, type Section as fa, type Appointment as fb, type AppointmentFormatInfoOneOf as fc, type Location as fd, type LocationLocationInfoOneOf as fe, type InPersonOptions as ff, type VideoConferenceOptions as fg, type PhoneOptions as fh, type FormFieldContactInfo as fi, type FormFieldContactInfoAdditionalInfoOneOf as fj, type EmailInfo as fk, type PhoneInfo as fl, type AddressInfo as fm, type CustomFieldInfo as fn, type SubscriptionInfo as fo, type _String as fp, type _StringComponentTypeOptionsOneOf as fq, type _Number as fr, type _NumberComponentTypeOptionsOneOf as fs, type _Boolean as ft, type _BooleanComponentTypeOptionsOneOf as fu, type _Array as fv, type _ArrayComponentTypeOptionsOneOf as fw, type _Object as fx, type WixFile as fy, type WixFileComponentTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type Cursors as g$, type SubmitSettings as g0, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g1, type ThankYouMessageOptions as g2, type RedirectOptions as g3, type FieldGroup as g4, type Rule as g5, type RequiredOptions as g6, type HiddenOptions as g7, type AllowedValuesOptions as g8, type FieldOverride as g9, type CreateSubmissionBySubmitterResponse as gA, type BulkCreateSubmissionBySubmitterRequest as gB, type BulkCreateSubmissionBySubmitterData as gC, type BulkCreateSubmissionBySubmitterResponse as gD, type BulkSubmissionResult as gE, type ItemMetadata as gF, type ApplicationError as gG, type BulkActionMetadata as gH, type GetSubmissionRequest as gI, type GetSubmissionResponse as gJ, type GetSubmissionByCheckoutIdRequest as gK, type GetSubmissionByCheckoutIdResponse as gL, type UpdateSubmissionRequest as gM, type UpdateSubmissionResponse as gN, type ConfirmSubmissionRequest as gO, type DeleteSubmissionRequest as gP, type DeleteSubmissionResponse as gQ, type BulkDeleteSubmissionRequest as gR, type BulkDeleteSubmissionResult as gS, type RestoreSubmissionFromTrashBinRequest as gT, type RemoveSubmissionFromTrashBinRequest as gU, type RemoveSubmissionFromTrashBinResponse as gV, type BulkRemoveSubmissionFromTrashBinRequest as gW, type BulkRemoveSubmissionFromTrashBinResult as gX, type ListDeletedSubmissionsRequest as gY, type CursorPaging as gZ, type CursorPagingMetadata as g_, type FieldOverridePropertyTypeOptionsOneOf as ga, type ConditionNode as gb, type ConditionNodeNodeOneOf as gc, type AndCondition as gd, type OrCondition as ge, type Condition as gf, type RuleFormOverride as gg, type RuleFormOverrideEntityTypeOptionsOneOf as gh, type Tags as gi, type TagsTagList as gj, type QuizSettings as gk, type QuizSettingsPassingCriteriaOneOf as gl, type QuizSettingsResultsDisplayOptionsOneOf as gm, type PassFailMessages as gn, type CreateCheckoutFromSubmissionResponse as go, type Checkout as gp, type IsFormSubmittableRequest as gq, type IsFormSubmittableResponse as gr, type Empty as gs, type UpsertContactFromSubmissionRequest as gt, type SubmitContactResponse as gu, type CreateSubmissionRequest as gv, type CreateSubmissionResponse as gw, type SubmissionValidationErrorsDetails as gx, type ValidationError as gy, type CreateSubmissionBySubmitterRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type NodeTypeWithLiterals as h$, type GetDeletedSubmissionRequest as h0, type QuerySubmissionRequest as h1, type CursorQueryPagingMethodOneOf as h2, type Sorting as h3, type SearchSubmissionsByNamespaceRequest as h4, type CursorSearch as h5, type CursorSearchPagingMethodOneOf as h6, type SearchDetails as h7, type SearchSubmissionsByNamespaceForExportRequest as h8, type SearchSubmissionsByNamespaceForExportResponse as h9, type BulkUpdateFormSubmissionTagsByFilterRequest as hA, type BulkUpdateFormSubmissionTagsByFilterResponse as hB, type ValidateFormSubmissionRequest as hC, type FieldViolation as hD, type FieldViolationErrorDataOneOf as hE, type SubmissionValidationErrors as hF, type SubmissionValidationError as hG, type SubmissionValidationErrorErrorMessageOneOf as hH, type BaseEventMetadata as hI, type EventMetadata as hJ, type AccountInfoMetadata as hK, type FormSubmissionSearchSpec as hL, type SubmissionsQueryResult as hM, type FormSubmissionQuerySpec as hN, type BulkUpdateFormSubmissionTagsOptions as hO, type BulkUpdateFormSubmissionTagsByFilterOptions as hP, utils as hQ, type SubmissionStatusWithLiterals as hR, type OptInLevelWithLiterals as hS, type WebhookIdentityTypeWithLiterals as hT, type StringTypeFormatEnumFormatWithLiterals as hU, type ValidationFormatWithLiterals as hV, type ProductTypeWithLiterals as hW, type PriceTypeWithLiterals as hX, type FieldTypeWithLiterals as hY, type FormatEnumFormatWithLiterals as hZ, type StringComponentTypeWithLiterals as h_, type QuerySubmissionsByNamespaceRequest as ha, type QuerySubmissionsByNamespaceResponse as hb, type QuerySubmissionsByNamespaceForExportRequest as hc, type QuerySubmissionsByNamespaceForExportResponse as hd, type CountSubmissionsByFilterRequest as he, type FormSubmissionsCount as hf, type CountSubmissionsRequest as hg, type CountDeletedSubmissionsRequest as hh, type FormDeletedSubmissionsCount as hi, type GetMediaUploadURLRequest as hj, type BulkMarkSubmissionsAsSeenRequest as hk, type GetSubmissionDownloadUrlRequest as hl, type SubmissionDocument as hm, type SubmissionDocumentDocumentOneOf as hn, type DocumentReady as ho, type DownloadSubmissionRequest as hp, type HeadersEntry as hq, type GetFormattedSubmissionRequest as hr, type FormattedSubmission as hs, type ListFormattedSubmissionsRequest as ht, type ListFormattedSubmissionsResponse as hu, type FormattedFormSubmission as hv, type UpdateExtendedFieldsRequest as hw, type BulkUpdateFormSubmissionTagsRequest as hx, type BulkUpdateFormSubmissionTagsResponse as hy, type BulkUpdateFormSubmissionTagsResult as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PhoneInfoTagWithLiterals as i$, type WidthTypeWithLiterals as i0, type PluginContainerDataAlignmentWithLiterals as i1, type ButtonDataTypeWithLiterals as i2, type LinkTargetWithLiterals as i3, type TextAlignmentWithLiterals as i4, type LineStyleWithLiterals as i5, type WidthWithLiterals as i6, type DividerDataAlignmentWithLiterals as i7, type ViewModeWithLiterals as i8, type LayoutTypeWithLiterals as i9, type VerticalAlignmentWithLiterals as iA, type NullValueWithLiterals as iB, type ScalingWithLiterals as iC, type LayoutDataImagePositionWithLiterals as iD, type VerticalAlignmentAlignmentWithLiterals as iE, type ResponsivenessBehaviourWithLiterals as iF, type DesignTargetWithLiterals as iG, type ImagePositionWithLiterals as iH, type AlignmentWithLiterals as iI, type ImageFitWithLiterals as iJ, type NumberOfColumnsWithLiterals as iK, type FirstDayOfWeekWithLiterals as iL, type NumberComponentTypeWithLiterals as iM, type BooleanComponentTypeWithLiterals as iN, type ItemTypeWithLiterals as iO, type PropertiesTypeEnumWithLiterals as iP, type ArrayComponentTypeWithLiterals as iQ, type WixFileComponentTypeWithLiterals as iR, type UploadFileFormatWithLiterals as iS, type PaymentComponentTypeWithLiterals as iT, type ComponentTypeWithLiterals as iU, type TypeWithLiterals as iV, type ObjectArrayComponentTypeWithLiterals as iW, type SchedulingComponentTypeWithLiterals as iX, type FormatWithLiterals as iY, type InputTypeWithLiterals as iZ, type EmailInfoTagWithLiterals as i_, type OrientationWithLiterals as ia, type CropWithLiterals as ib, type ThumbnailsAlignmentWithLiterals as ic, type GIFTypeWithLiterals as id, type SourceWithLiterals as ie, type StylesPositionWithLiterals as ig, type MapTypeWithLiterals as ih, type ViewRoleWithLiterals as ii, type VoteRoleWithLiterals as ij, type PollLayoutTypeWithLiterals as ik, type PollLayoutDirectionWithLiterals as il, type BackgroundTypeWithLiterals as im, type DecorationTypeWithLiterals as io, type FontTypeWithLiterals as ip, type PositionWithLiterals as iq, type AspectRatioWithLiterals as ir, type ResizingWithLiterals as is, type PlacementWithLiterals as it, type CardStylesTypeWithLiterals as iu, type CardStylesAlignmentWithLiterals as iv, type LayoutWithLiterals as iw, type AppTypeWithLiterals as ix, type InitialExpandedItemsWithLiterals as iy, type DirectionWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type TagWithLiterals as j0, type ConfirmationLevelWithLiterals as j1, type ContactFieldWithLiterals as j2, type DisplayFieldTypeWithLiterals as j3, type OverrideEntityTypeWithLiterals as j4, type KindWithLiterals as j5, type FormFieldContactInfoEmailInfoTagWithLiterals as j6, type FormFieldContactInfoPhoneInfoTagWithLiterals as j7, type AddressInfoTagWithLiterals as j8, type SubscriptionInfoOptInLevelWithLiterals as j9, createSubmission as jA, getSubmission as jB, updateSubmission as jC, confirmSubmission as jD, deleteSubmission as jE, bulkDeleteSubmission as jF, restoreSubmissionFromTrashBin as jG, removeSubmissionFromTrashBin as jH, bulkRemoveSubmissionFromTrashBin as jI, listDeletedSubmissions as jJ, getDeletedSubmission as jK, querySubmission as jL, querySubmissionsByNamespace as jM, countSubmissionsByFilter as jN, countSubmissions as jO, countDeletedSubmissions as jP, getMediaUploadUrl as jQ, bulkMarkSubmissionsAsSeen as jR, getSubmissionDownloadUrl as jS, downloadSubmission as jT, getFormattedSubmission as jU, updateExtendedFields as jV, validateFormSubmission as jW, type FormFieldContactInfoContactFieldWithLiterals as ja, type SpamFilterProtectionLevelWithLiterals as jb, type RequiredIndicatorWithLiterals as jc, type RequiredIndicatorPlacementWithLiterals as jd, type TargetWithLiterals as je, type SubmitSuccessActionWithLiterals as jf, type ChangeablePropertyWithLiterals as jg, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jh, type OperatorWithLiterals as ji, type ResultsDisplayWithLiterals as jj, type IdentityTypeWithLiterals as jk, type ErrorTypeWithLiterals as jl, type SortOrderWithLiterals as jm, type ModeWithLiterals as jn, type StatusWithLiterals as jo, type SubmissionErrorTypeWithLiterals as jp, type CommonSearchWithEntityContext as jq, type CommonQueryWithEntityContext as jr, onSubmissionCreated as js, onSubmissionDeleted as jt, onSubmissionRemovedSubmissionFromTrash as ju, onSubmissionStatusUpdated as jv, onSubmissionContactMapped as jw, onSubmissionContactMappingSkipped as jx, onSubmissionUpdated as jy, upsertContactFromSubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { bP as AccountInfo, hJ as AccountInfoMetadata, bL as ActionEvent, fE as Address, fF as AddressComponentTypeOptionsOneOf, fm as AddressInfo, bc as AddressInfoTag, j7 as AddressInfoTagWithLiterals, e$ as AddressLine2, aM as Alignment, iH as AlignmentWithLiterals, g8 as AllowedValuesOptions, dE as AnchorData, gd as AndCondition, dL as AppEmbedData, dM as AppEmbedDataAppDataOneOf, aB as AppType, iw as AppTypeWithLiterals, gF as ApplicationError, fb as Appointment, fc as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iP as ArrayComponentTypeWithLiterals, ca as ArrayErrorMessages, eJ as ArrayItems, eK as ArrayItemsItemTypeOptionsOneOf, eF as ArrayType, c8 as ArrayTypeArrayItems, c9 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, iq as AspectRatioWithLiterals, e4 as AudioData, du as Background, dv as BackgroundBackgroundOneOf, ea as BackgroundImage, ar as BackgroundType, il as BackgroundTypeWithLiterals, hH as BaseEventMetadata, e7 as BlockquoteData, dN as BookingData, aR as BooleanComponentType, iM as BooleanComponentTypeWithLiterals, c2 as BooleanErrorMessages, eC as BooleanType, cJ as Border, e1 as BorderColors, e2 as BorderWidths, f5 as BreakPoint, gG as BulkActionMetadata, gB as BulkCreateSubmissionBySubmitterData, gA as BulkCreateSubmissionBySubmitterRequest, gC as BulkCreateSubmissionBySubmitterResponse, gQ as BulkDeleteSubmissionRequest, gR as BulkDeleteSubmissionResult, hj as BulkMarkSubmissionsAsSeenRequest, gV as BulkRemoveSubmissionFromTrashBinRequest, gW as BulkRemoveSubmissionFromTrashBinResult, gD as BulkSubmissionResult, hO as BulkUpdateFormSubmissionTagsByFilterOptions, hz as BulkUpdateFormSubmissionTagsByFilterRequest, hA as BulkUpdateFormSubmissionTagsByFilterResponse, hN as BulkUpdateFormSubmissionTagsOptions, hw as BulkUpdateFormSubmissionTagsRequest, hx as BulkUpdateFormSubmissionTagsResponse, hy as BulkUpdateFormSubmissionTagsResult, e6 as BulletedListData, cI as ButtonData, a8 as ButtonDataType, i1 as ButtonDataTypeWithLiterals, dP as ButtonStyles, e8 as CaptionData, dS as CardStyles, az as CardStylesAlignment, iu as CardStylesAlignmentWithLiterals, ay as CardStylesType, it as CardStylesTypeWithLiterals, e0 as CellStyle, bk as ChangeableProperty, jf as ChangeablePropertyWithLiterals, eD as Checkbox, eM as CheckboxGroup, go as Checkout, cU as CodeBlockData, dY as CollapsibleListData, dF as ColorData, cK as Colors, jq as CommonQueryWithEntityContext, jp as CommonSearchWithEntityContext, aY as ComponentType, iT as ComponentTypeWithLiterals, eO as ComponentsTags, gf as Condition, gb as ConditionNode, gc as ConditionNodeNodeOneOf, gN as ConfirmSubmissionRequest, b5 as ConfirmationLevel, j0 as ConfirmationLevelWithLiterals, b6 as ContactField, j1 as ContactFieldWithLiterals, eE as CorrectAnswersList, hg as CountDeletedSubmissionsRequest, hd as CountSubmissionsByFilterRequest, hf as CountSubmissionsRequest, bQ as CreateCheckoutFromSubmissionRequest, bR as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gn as CreateCheckoutFromSubmissionResponse, gy as CreateSubmissionBySubmitterRequest, gz as CreateSubmissionBySubmitterResponse, gu as CreateSubmissionRequest, gv as CreateSubmissionResponse, ah as Crop, ia as CropWithLiterals, gY as CursorPaging, gZ as CursorPagingMetadata, h1 as CursorQueryPagingMethodOneOf, h4 as CursorSearch, h5 as CursorSearchPagingMethodOneOf, g_ as Cursors, fn as CustomFieldInfo, em as CustomOption, cq as DataExtensionsDetails, er as DateInput, et as DatePicker, cz as DateTimeConstraints, ep as DateTimeInput, dC as Decoration, dD as DecorationDataOneOf, as as DecorationType, im as DecorationTypeWithLiterals, f0 as DefaultCountryConfig, f1 as DefaultCountryConfigOptionsOneOf, gO as DeleteSubmissionRequest, gP as DeleteSubmissionResponse, dA as Design, aK as DesignTarget, iF as DesignTargetWithLiterals, d_ as Dimensions, aD as Direction, iy as DirectionWithLiterals, fI as DisplayField, fJ as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, j2 as DisplayFieldTypeWithLiterals, cW as DividerData, ad as DividerDataAlignment, i6 as DividerDataAlignmentWithLiterals, hn as DocumentReady, ef as DocumentStyle, bF as DomainEvent, bG as DomainEventBodyOneOf, eW as DonationInput, eX as DonationInputOption, ho as DownloadSubmissionRequest, en as Dropdown, eo as DropdownOption, cg as DynamicPriceOptions, fk as EmailInfo, b2 as EmailInfoTag, iZ as EmailInfoTagWithLiterals, dW as EmbedData, gr as Empty, bH as EntityCreatedEvent, bK as EntityDeletedEvent, bJ as EntityUpdatedEvent, bp as ErrorType, jk as ErrorTypeWithLiterals, dO as EventData, hI as EventMetadata, bw as ExtendedFields, cs as Field, ct as FieldFieldTypeOptionsOneOf, g4 as FieldGroup, g9 as FieldOverride, ga as FieldOverridePropertyTypeOptionsOneOf, ck as FieldOverrides, a2 as FieldType, hX as FieldTypeWithLiterals, hC as FieldViolation, hD as FieldViolationErrorDataOneOf, cl as FieldsOverrides, f2 as FieldsSettings, cX as FileData, cY as FileSource, cZ as FileSourceDataOneOf, eR as FileType, eS as FileUpload, aP as FirstDayOfWeek, iK as FirstDayOfWeekWithLiterals, eZ as FixedPayment, cf as FixedPriceOptions, dK as FontFamilyData, dI as FontSizeData, at as FontType, io as FontTypeWithLiterals, bS as Form, hh as FormDeletedSubmissionsCount, bT as FormField, c3 as FormFieldArrayType, c1 as FormFieldBooleanType, fi as FormFieldContactInfo, fj as FormFieldContactInfoAdditionalInfoOneOf, fW as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, j9 as FormFieldContactInfoContactFieldWithLiterals, fX as FormFieldContactInfoCustomFieldInfo, fU as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, j5 as FormFieldContactInfoEmailInfoTagWithLiterals, fV as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, j6 as FormFieldContactInfoPhoneInfoTagWithLiterals, fY as FormFieldContactInfoSubscriptionInfo, b_ as FormFieldNumberType, c4 as FormFieldObjectType, bU as FormFieldStringType, bV as FormFieldStringTypeFormatOptionsOneOf, f4 as FormLayout, fO as FormOverride, fP as FormProperties, fN as FormRule, hM as FormSubmissionQuerySpec, hK as FormSubmissionSearchSpec, bA as FormSubmissionStatusUpdatedEvent, he as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, hY as FormatEnumFormatWithLiterals, iX as FormatWithLiterals, hu as FormattedFormSubmission, hr as FormattedSubmission, da as GIF, d9 as GIFData, aj as GIFType, ic as GIFTypeWithLiterals, c$ as GalleryData, d5 as GalleryOptions, d6 as GalleryOptionsLayout, g$ as GetDeletedSubmissionRequest, hq as GetFormattedSubmissionRequest, hi as GetMediaUploadURLRequest, gJ as GetSubmissionByCheckoutIdRequest, gK as GetSubmissionByCheckoutIdResponse, hk as GetSubmissionDownloadUrlRequest, gH as GetSubmissionRequest, gI as GetSubmissionResponse, dt as Gradient, f8 as Group, dc as HTMLData, dd as HTMLDataDataOneOf, hp as HeadersEntry, db as HeadingData, cP as Height, g7 as HiddenOptions, bN as IdentificationData, bO as IdentificationDataIdOneOf, bo as IdentityType, jj as IdentityTypeWithLiterals, d1 as Image, de as ImageData, dg as ImageDataStyles, aN as ImageFit, iI as ImageFitWithLiterals, aL as ImagePosition, iG as ImagePositionWithLiterals, dQ as ImageStyles, ff as InPersonOptions, aC as InitialExpandedItems, ix as InitialExpandedItemsWithLiterals, cu as InputField, cv as InputFieldInputTypeOptionsOneOf, b1 as InputType, iY as InputTypeWithLiterals, c0 as IntegerType, gp as IsFormSubmittableRequest, gq as IsFormSubmittableResponse, d3 as Item, d4 as ItemDataOneOf, f6 as ItemLayout, f7 as ItemLayoutItemOneOf, gE as ItemMetadata, d7 as ItemStyle, aS as ItemType, iN as ItemTypeWithLiterals, b9 as Kind, j4 as KindWithLiterals, aA as Layout, eb as LayoutCellData, e9 as LayoutData, aH as LayoutDataImagePosition, iC as LayoutDataImagePositionWithLiterals, af as LayoutType, i8 as LayoutTypeWithLiterals, iv as LayoutWithLiterals, f_ as LimitationRule, ab as LineStyle, i4 as LineStyleWithLiterals, cR as Link, dG as LinkData, cS as LinkDataOneOf, dh as LinkPreviewData, di as LinkPreviewDataStyles, a9 as LinkTarget, i2 as LinkTargetWithLiterals, gX as ListDeletedSubmissionsRequest, hs as ListFormattedSubmissionsRequest, ht as ListFormattedSubmissionsResponse, e3 as ListValue, fd as Location, fe as LocationLocationInfoOneOf, dj as MapData, dk as MapSettings, am as MapType, ig as MapTypeWithLiterals, f9 as Margin, bD as MarketingSubscriptionDetails, d0 as Media, eh as MediaItem, ei as MediaItemMediaOneOf, ej as MediaSettings, dH as MentionData, bM as MessageEnvelope, ee as Metadata, br as Mode, jm as ModeWithLiterals, e_ as MultilineAddress, cj as MultilineAddressValidation, fZ as NestedForm, cn as NestedFormFieldOverrides, cr as NestedFormOverrides, cF as Node, cG as NodeDataOneOf, cH as NodeStyle, a5 as NodeType, h_ as NodeTypeWithLiterals, aF as NullValue, iA as NullValueWithLiterals, aQ as NumberComponentType, iL as NumberComponentTypeWithLiterals, ex as NumberCorrectAnswersList, b$ as NumberErrorMessages, eA as NumberInput, aO as NumberOfColumns, iJ as NumberOfColumnsWithLiterals, ez as NumberQuizFieldSettings, ey as NumberType, fG as ObjectArray, a_ as ObjectArrayComponentType, fH as ObjectArrayComponentTypeOptionsOneOf, iV as ObjectArrayComponentTypeWithLiterals, cm as ObjectArrayType, c7 as ObjectErrorMessages, eG as ObjectType, c5 as ObjectTypePropertiesType, c6 as ObjectTypePropertiesTypePropertiesTypeOneOf, dX as Oembed, bm as Operator, jh as OperatorWithLiterals, Y as OptInLevel, hR as OptInLevelWithLiterals, eN as Option, dx as OptionDesign, ds as OptionLayout, ge as OrCondition, bx as OrderDetails, e5 as OrderedListData, ag as Orientation, i9 as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, jg as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, j3 as OverrideEntityTypeWithLiterals, c_ as PDFSettings, fL as PageNavigationOptions, dl as ParagraphData, gm as PassFailMessages, ew as Password, fA as Payment, aX as PaymentComponentType, fB as PaymentComponentTypeOptionsOneOf, iS as PaymentComponentTypeWithLiterals, eY as PaymentInput, cd as PaymentType, dn as Permissions, cA as PhoneConstraints, fl as PhoneInfo, b3 as PhoneInfoTag, i_ as PhoneInfoTagWithLiterals, eq as PhoneInput, fh as PhoneOptions, ax as Placement, is as PlacementWithLiterals, dV as PlaybackOptions, cL as PluginContainerData, a7 as PluginContainerDataAlignment, i0 as PluginContainerDataAlignmentWithLiterals, cM as PluginContainerDataWidth, cN as PluginContainerDataWidthDataOneOf, dy as Poll, dm as PollData, dz as PollDataLayout, dw as PollDesign, dr as PollLayout, aq as PollLayoutDirection, ik as PollLayoutDirectionWithLiterals, ap as PollLayoutType, ij as PollLayoutTypeWithLiterals, dp as PollOption, au as Position, ip as PositionWithLiterals, fQ as PostSubmissionTriggers, cb as PredefinedValidation, cc as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hW as PriceTypeWithLiterals, dT as PricingData, ch as Product, eU as ProductCheckboxGroup, eV as ProductCheckboxGroupOption, ci as ProductPriceOptionsOneOf, a0 as ProductType, hV as ProductTypeWithLiterals, eH as PropertiesType, aT as PropertiesTypeEnum, iO as PropertiesTypeEnumWithLiterals, eI as PropertiesTypePropertiesTypeOptionsOneOf, by as PublicTags, ce as QuantityLimit, h0 as QuerySubmissionRequest, hb as QuerySubmissionsByNamespaceForExportRequest, hc as QuerySubmissionsByNamespaceForExportResponse, h9 as QuerySubmissionsByNamespaceRequest, ha as QuerySubmissionsByNamespaceResponse, eL as QuizFieldSettings, gk as QuizSettings, gl as QuizSettingsResultsDisplayOptionsOneOf, ek as RadioGroup, el as RadioGroupOption, eB as RatingInput, g3 as RedirectOptions, cT as Rel, gT as RemoveSubmissionFromTrashBinRequest, gU as RemoveSubmissionFromTrashBinResponse, bB as RemovedSubmissionFromTrash, f3 as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, jc as RequiredIndicatorPlacementWithLiterals, f$ as RequiredIndicatorProperties, jb as RequiredIndicatorWithLiterals, g6 as RequiredOptions, aw as Resizing, ir as ResizingWithLiterals, aJ as ResponsivenessBehaviour, iE as ResponsivenessBehaviourWithLiterals, bI as RestoreInfo, gS as RestoreSubmissionFromTrashBinRequest, bn as ResultsDisplay, ji as ResultsDisplayWithLiterals, dR as RibbonStyles, cE as RichContent, fK as RichContentOptions, g5 as Rule, gg as RuleFormOverride, gh as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, iB as ScalingWithLiterals, fC as Scheduling, a$ as SchedulingComponentType, fD as SchedulingComponentTypeOptionsOneOf, iW as SchedulingComponentTypeWithLiterals, h6 as SearchDetails, h7 as SearchSubmissionsByNamespaceForExportRequest, h8 as SearchSubmissionsByNamespaceForExportResponse, h3 as SearchSubmissionsByNamespaceRequest, fa as Section, ev as ServiceOption, eQ as ServicesCheckboxGroup, eu as ServicesDropdown, dq as Settings, ec as ShapeData, ed as ShapeDataStyles, eT as Signature, bq as SortOrder, jl as SortOrderWithLiterals, h2 as Sorting, ak as Source, id as SourceWithLiterals, bf as SpamFilterProtectionLevel, ja as SpamFilterProtectionLevelWithLiterals, cO as Spoiler, dJ as SpoilerData, bs as Status, jn as StatusWithLiterals, fM as Step, a4 as StringComponentType, hZ as StringComponentTypeWithLiterals, cw as StringCorrectAnswersList, bW as StringErrorMessages, cC as StringQuizFieldSettings, cx as StringType, bX as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hT as StringTypeFormatEnumFormatWithLiterals, cy as StringTypeFormatOptionsOneOf, bY as StringTypePhoneConstraints, bZ as StringTypeValidationMessages, cQ as Styles, df as StylesBorder, al as StylesPosition, ie as StylesPositionWithLiterals, bC as SubmissionContactMapped, bE as SubmissionContactMappingSkipped, hl as SubmissionDocument, hm as SubmissionDocumentDocumentOneOf, bt as SubmissionErrorType, jo as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hQ as SubmissionStatusWithLiterals, hF as SubmissionValidationError, hG as SubmissionValidationErrorErrorMessageOneOf, hE as SubmissionValidationErrors, gw as SubmissionValidationErrorsDetails, hL as SubmissionsQueryResult, gt as SubmitContactResponse, g0 as SubmitSettings, g1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, je as SubmitSuccessActionWithLiterals, bu as Submitter, bv as SubmitterSubmitterOneOf, fo as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, j8 as SubscriptionInfoOptInLevelWithLiterals, d$ as TableCellData, dZ as TableData, b4 as Tag, bz as TagList, i$ as TagWithLiterals, gi as Tags, eP as TagsOption, gj as TagsTagList, bi as Target, jd as TargetWithLiterals, aa as TextAlignment, i3 as TextAlignmentWithLiterals, dB as TextData, cD as TextInput, eg as TextNodeStyle, cV as TextStyle, g2 as ThankYouMessageOptions, d8 as Thumbnails, ai as ThumbnailsAlignment, ib as ThumbnailsAlignmentWithLiterals, es as TimeInput, aZ as Type, iU as TypeWithLiterals, hv as UpdateExtendedFieldsRequest, gL as UpdateSubmissionRequest, gM as UpdateSubmissionResponse, aW as UploadFileFormat, iR as UploadFileFormatWithLiterals, fR as UpsertContact, gs as UpsertContactFromSubmissionRequest, fS as V4FormFieldContactInfo, fT as V4FormFieldContactInfoAdditionalInfoOneOf, hB as ValidateFormSubmissionRequest, co as Validation, gx as ValidationError, $ as ValidationFormat, hU as ValidationFormatWithLiterals, cB as ValidationMessages, cp as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, iD as VerticalAlignmentAlignmentWithLiterals, iz as VerticalAlignmentWithLiterals, d2 as Video, fg as VideoConferenceOptions, dU as VideoData, ae as ViewMode, i7 as ViewModeWithLiterals, an as ViewRole, ih as ViewRoleWithLiterals, ao as VoteRole, ii as VoteRoleWithLiterals, Z as WebhookIdentityType, hS as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, h$ as WidthTypeWithLiterals, i5 as WidthWithLiterals, fy as WixFile, aV as WixFileComponentType, fz as WixFileComponentTypeOptionsOneOf, iQ as WixFileComponentTypeWithLiterals, fv as _Array, fw as _ArrayComponentTypeOptionsOneOf, ft as _Boolean, fu as _BooleanComponentTypeOptionsOneOf, fr as _Number, fs as _NumberComponentTypeOptionsOneOf, fx as _Object, fp as _String, fq as _StringComponentTypeOptionsOneOf, hP as utils } from './forms-v4-submission-submissions.universal-BhLZFFos.mjs';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-CG5mgBXv.mjs';
|
|
3
|
+
export { bP as AccountInfo, hK as AccountInfoMetadata, bL as ActionEvent, fE as Address, fF as AddressComponentTypeOptionsOneOf, fm as AddressInfo, bc as AddressInfoTag, j8 as AddressInfoTagWithLiterals, e$ as AddressLine2, aM as Alignment, iI as AlignmentWithLiterals, g8 as AllowedValuesOptions, dE as AnchorData, gd as AndCondition, dL as AppEmbedData, dM as AppEmbedDataAppDataOneOf, aB as AppType, ix as AppTypeWithLiterals, gG as ApplicationError, fb as Appointment, fc as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iQ as ArrayComponentTypeWithLiterals, ca as ArrayErrorMessages, eJ as ArrayItems, eK as ArrayItemsItemTypeOptionsOneOf, eF as ArrayType, c8 as ArrayTypeArrayItems, c9 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, ir as AspectRatioWithLiterals, e4 as AudioData, du as Background, dv as BackgroundBackgroundOneOf, ea as BackgroundImage, ar as BackgroundType, im as BackgroundTypeWithLiterals, hI as BaseEventMetadata, e7 as BlockquoteData, dN as BookingData, aR as BooleanComponentType, iN as BooleanComponentTypeWithLiterals, c2 as BooleanErrorMessages, eC as BooleanType, cJ as Border, e1 as BorderColors, e2 as BorderWidths, f5 as BreakPoint, gH as BulkActionMetadata, gC as BulkCreateSubmissionBySubmitterData, gB as BulkCreateSubmissionBySubmitterRequest, gD as BulkCreateSubmissionBySubmitterResponse, gR as BulkDeleteSubmissionRequest, gS as BulkDeleteSubmissionResult, hk as BulkMarkSubmissionsAsSeenRequest, gW as BulkRemoveSubmissionFromTrashBinRequest, gX as BulkRemoveSubmissionFromTrashBinResult, gE as BulkSubmissionResult, hP as BulkUpdateFormSubmissionTagsByFilterOptions, hA as BulkUpdateFormSubmissionTagsByFilterRequest, hB as BulkUpdateFormSubmissionTagsByFilterResponse, hO as BulkUpdateFormSubmissionTagsOptions, hx as BulkUpdateFormSubmissionTagsRequest, hy as BulkUpdateFormSubmissionTagsResponse, hz as BulkUpdateFormSubmissionTagsResult, e6 as BulletedListData, cI as ButtonData, a8 as ButtonDataType, i2 as ButtonDataTypeWithLiterals, dP as ButtonStyles, e8 as CaptionData, dS as CardStyles, az as CardStylesAlignment, iv as CardStylesAlignmentWithLiterals, ay as CardStylesType, iu as CardStylesTypeWithLiterals, e0 as CellStyle, bk as ChangeableProperty, jg as ChangeablePropertyWithLiterals, eD as Checkbox, eM as CheckboxGroup, gp as Checkout, cU as CodeBlockData, dY as CollapsibleListData, dF as ColorData, cK as Colors, jr as CommonQueryWithEntityContext, jq as CommonSearchWithEntityContext, aY as ComponentType, iU as ComponentTypeWithLiterals, eO as ComponentsTags, gf as Condition, gb as ConditionNode, gc as ConditionNodeNodeOneOf, gO as ConfirmSubmissionRequest, b5 as ConfirmationLevel, j1 as ConfirmationLevelWithLiterals, b6 as ContactField, j2 as ContactFieldWithLiterals, eE as CorrectAnswersList, hh as CountDeletedSubmissionsRequest, he as CountSubmissionsByFilterRequest, hg as CountSubmissionsRequest, bQ as CreateCheckoutFromSubmissionRequest, bR as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, go as CreateCheckoutFromSubmissionResponse, gz as CreateSubmissionBySubmitterRequest, gA as CreateSubmissionBySubmitterResponse, gv as CreateSubmissionRequest, gw as CreateSubmissionResponse, ah as Crop, ib as CropWithLiterals, gZ as CursorPaging, g_ as CursorPagingMetadata, h2 as CursorQueryPagingMethodOneOf, h5 as CursorSearch, h6 as CursorSearchPagingMethodOneOf, g$ as Cursors, fn as CustomFieldInfo, em as CustomOption, cq as DataExtensionsDetails, er as DateInput, et as DatePicker, cz as DateTimeConstraints, ep as DateTimeInput, dC as Decoration, dD as DecorationDataOneOf, as as DecorationType, io as DecorationTypeWithLiterals, f0 as DefaultCountryConfig, f1 as DefaultCountryConfigOptionsOneOf, gP as DeleteSubmissionRequest, gQ as DeleteSubmissionResponse, dA as Design, aK as DesignTarget, iG as DesignTargetWithLiterals, d_ as Dimensions, aD as Direction, iz as DirectionWithLiterals, fI as DisplayField, fJ as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, j3 as DisplayFieldTypeWithLiterals, cW as DividerData, ad as DividerDataAlignment, i7 as DividerDataAlignmentWithLiterals, ho as DocumentReady, ef as DocumentStyle, bF as DomainEvent, bG as DomainEventBodyOneOf, eW as DonationInput, eX as DonationInputOption, hp as DownloadSubmissionRequest, en as Dropdown, eo as DropdownOption, cg as DynamicPriceOptions, fk as EmailInfo, b2 as EmailInfoTag, i_ as EmailInfoTagWithLiterals, dW as EmbedData, gs as Empty, bH as EntityCreatedEvent, bK as EntityDeletedEvent, bJ as EntityUpdatedEvent, bp as ErrorType, jl as ErrorTypeWithLiterals, dO as EventData, hJ as EventMetadata, bw as ExtendedFields, cs as Field, ct as FieldFieldTypeOptionsOneOf, g4 as FieldGroup, g9 as FieldOverride, ga as FieldOverridePropertyTypeOptionsOneOf, ck as FieldOverrides, a2 as FieldType, hY as FieldTypeWithLiterals, hD as FieldViolation, hE as FieldViolationErrorDataOneOf, cl as FieldsOverrides, f2 as FieldsSettings, cX as FileData, cY as FileSource, cZ as FileSourceDataOneOf, eR as FileType, eS as FileUpload, aP as FirstDayOfWeek, iL as FirstDayOfWeekWithLiterals, eZ as FixedPayment, cf as FixedPriceOptions, dK as FontFamilyData, dI as FontSizeData, at as FontType, ip as FontTypeWithLiterals, bS as Form, hi as FormDeletedSubmissionsCount, bT as FormField, c3 as FormFieldArrayType, c1 as FormFieldBooleanType, fi as FormFieldContactInfo, fj as FormFieldContactInfoAdditionalInfoOneOf, fW as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, ja as FormFieldContactInfoContactFieldWithLiterals, fX as FormFieldContactInfoCustomFieldInfo, fU as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, j6 as FormFieldContactInfoEmailInfoTagWithLiterals, fV as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, j7 as FormFieldContactInfoPhoneInfoTagWithLiterals, fY as FormFieldContactInfoSubscriptionInfo, b_ as FormFieldNumberType, c4 as FormFieldObjectType, bU as FormFieldStringType, bV as FormFieldStringTypeFormatOptionsOneOf, f4 as FormLayout, fO as FormOverride, fP as FormProperties, fN as FormRule, hN as FormSubmissionQuerySpec, hL as FormSubmissionSearchSpec, bA as FormSubmissionStatusUpdatedEvent, hf as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, hZ as FormatEnumFormatWithLiterals, iY as FormatWithLiterals, hv as FormattedFormSubmission, hs as FormattedSubmission, da as GIF, d9 as GIFData, aj as GIFType, id as GIFTypeWithLiterals, c$ as GalleryData, d5 as GalleryOptions, d6 as GalleryOptionsLayout, h0 as GetDeletedSubmissionRequest, hr as GetFormattedSubmissionRequest, hj as GetMediaUploadURLRequest, gK as GetSubmissionByCheckoutIdRequest, gL as GetSubmissionByCheckoutIdResponse, hl as GetSubmissionDownloadUrlRequest, gI as GetSubmissionRequest, gJ as GetSubmissionResponse, dt as Gradient, f8 as Group, dc as HTMLData, dd as HTMLDataDataOneOf, hq as HeadersEntry, db as HeadingData, cP as Height, g7 as HiddenOptions, bN as IdentificationData, bO as IdentificationDataIdOneOf, bo as IdentityType, jk as IdentityTypeWithLiterals, d1 as Image, de as ImageData, dg as ImageDataStyles, aN as ImageFit, iJ as ImageFitWithLiterals, aL as ImagePosition, iH as ImagePositionWithLiterals, dQ as ImageStyles, ff as InPersonOptions, aC as InitialExpandedItems, iy as InitialExpandedItemsWithLiterals, cu as InputField, cv as InputFieldInputTypeOptionsOneOf, b1 as InputType, iZ as InputTypeWithLiterals, c0 as IntegerType, gq as IsFormSubmittableRequest, gr as IsFormSubmittableResponse, d3 as Item, d4 as ItemDataOneOf, f6 as ItemLayout, f7 as ItemLayoutItemOneOf, gF as ItemMetadata, d7 as ItemStyle, aS as ItemType, iO as ItemTypeWithLiterals, b9 as Kind, j5 as KindWithLiterals, aA as Layout, eb as LayoutCellData, e9 as LayoutData, aH as LayoutDataImagePosition, iD as LayoutDataImagePositionWithLiterals, af as LayoutType, i9 as LayoutTypeWithLiterals, iw as LayoutWithLiterals, f_ as LimitationRule, ab as LineStyle, i5 as LineStyleWithLiterals, cR as Link, dG as LinkData, cS as LinkDataOneOf, dh as LinkPreviewData, di as LinkPreviewDataStyles, a9 as LinkTarget, i3 as LinkTargetWithLiterals, gY as ListDeletedSubmissionsRequest, ht as ListFormattedSubmissionsRequest, hu as ListFormattedSubmissionsResponse, e3 as ListValue, fd as Location, fe as LocationLocationInfoOneOf, dj as MapData, dk as MapSettings, am as MapType, ih as MapTypeWithLiterals, f9 as Margin, bD as MarketingSubscriptionDetails, d0 as Media, eh as MediaItem, ei as MediaItemMediaOneOf, ej as MediaSettings, dH as MentionData, bM as MessageEnvelope, ee as Metadata, br as Mode, jn as ModeWithLiterals, e_ as MultilineAddress, cj as MultilineAddressValidation, fZ as NestedForm, cn as NestedFormFieldOverrides, cr as NestedFormOverrides, cF as Node, cG as NodeDataOneOf, cH as NodeStyle, a5 as NodeType, h$ as NodeTypeWithLiterals, aF as NullValue, iB as NullValueWithLiterals, aQ as NumberComponentType, iM as NumberComponentTypeWithLiterals, ex as NumberCorrectAnswersList, b$ as NumberErrorMessages, eA as NumberInput, aO as NumberOfColumns, iK as NumberOfColumnsWithLiterals, ez as NumberQuizFieldSettings, ey as NumberType, fG as ObjectArray, a_ as ObjectArrayComponentType, fH as ObjectArrayComponentTypeOptionsOneOf, iW as ObjectArrayComponentTypeWithLiterals, cm as ObjectArrayType, c7 as ObjectErrorMessages, eG as ObjectType, c5 as ObjectTypePropertiesType, c6 as ObjectTypePropertiesTypePropertiesTypeOneOf, dX as Oembed, bm as Operator, ji as OperatorWithLiterals, Y as OptInLevel, hS as OptInLevelWithLiterals, eN as Option, dx as OptionDesign, ds as OptionLayout, ge as OrCondition, bx as OrderDetails, e5 as OrderedListData, ag as Orientation, ia as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, jh as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, j4 as OverrideEntityTypeWithLiterals, c_ as PDFSettings, fL as PageNavigationOptions, dl as ParagraphData, gn as PassFailMessages, ew as Password, fA as Payment, aX as PaymentComponentType, fB as PaymentComponentTypeOptionsOneOf, iT as PaymentComponentTypeWithLiterals, eY as PaymentInput, cd as PaymentType, dn as Permissions, cA as PhoneConstraints, fl as PhoneInfo, b3 as PhoneInfoTag, i$ as PhoneInfoTagWithLiterals, eq as PhoneInput, fh as PhoneOptions, ax as Placement, it as PlacementWithLiterals, dV as PlaybackOptions, cL as PluginContainerData, a7 as PluginContainerDataAlignment, i1 as PluginContainerDataAlignmentWithLiterals, cM as PluginContainerDataWidth, cN as PluginContainerDataWidthDataOneOf, dy as Poll, dm as PollData, dz as PollDataLayout, dw as PollDesign, dr as PollLayout, aq as PollLayoutDirection, il as PollLayoutDirectionWithLiterals, ap as PollLayoutType, ik as PollLayoutTypeWithLiterals, dp as PollOption, au as Position, iq as PositionWithLiterals, fQ as PostSubmissionTriggers, cb as PredefinedValidation, cc as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hX as PriceTypeWithLiterals, dT as PricingData, ch as Product, eU as ProductCheckboxGroup, eV as ProductCheckboxGroupOption, ci as ProductPriceOptionsOneOf, a0 as ProductType, hW as ProductTypeWithLiterals, eH as PropertiesType, aT as PropertiesTypeEnum, iP as PropertiesTypeEnumWithLiterals, eI as PropertiesTypePropertiesTypeOptionsOneOf, by as PublicTags, ce as QuantityLimit, h1 as QuerySubmissionRequest, hc as QuerySubmissionsByNamespaceForExportRequest, hd as QuerySubmissionsByNamespaceForExportResponse, ha as QuerySubmissionsByNamespaceRequest, hb as QuerySubmissionsByNamespaceResponse, eL as QuizFieldSettings, gk as QuizSettings, gl as QuizSettingsPassingCriteriaOneOf, gm as QuizSettingsResultsDisplayOptionsOneOf, ek as RadioGroup, el as RadioGroupOption, eB as RatingInput, g3 as RedirectOptions, cT as Rel, gU as RemoveSubmissionFromTrashBinRequest, gV as RemoveSubmissionFromTrashBinResponse, bB as RemovedSubmissionFromTrash, f3 as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, jd as RequiredIndicatorPlacementWithLiterals, f$ as RequiredIndicatorProperties, jc as RequiredIndicatorWithLiterals, g6 as RequiredOptions, aw as Resizing, is as ResizingWithLiterals, aJ as ResponsivenessBehaviour, iF as ResponsivenessBehaviourWithLiterals, bI as RestoreInfo, gT as RestoreSubmissionFromTrashBinRequest, bn as ResultsDisplay, jj as ResultsDisplayWithLiterals, dR as RibbonStyles, cE as RichContent, fK as RichContentOptions, g5 as Rule, gg as RuleFormOverride, gh as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, iC as ScalingWithLiterals, fC as Scheduling, a$ as SchedulingComponentType, fD as SchedulingComponentTypeOptionsOneOf, iX as SchedulingComponentTypeWithLiterals, h7 as SearchDetails, h8 as SearchSubmissionsByNamespaceForExportRequest, h9 as SearchSubmissionsByNamespaceForExportResponse, h4 as SearchSubmissionsByNamespaceRequest, fa as Section, ev as ServiceOption, eQ as ServicesCheckboxGroup, eu as ServicesDropdown, dq as Settings, ec as ShapeData, ed as ShapeDataStyles, eT as Signature, bq as SortOrder, jm as SortOrderWithLiterals, h3 as Sorting, ak as Source, ie as SourceWithLiterals, bf as SpamFilterProtectionLevel, jb as SpamFilterProtectionLevelWithLiterals, cO as Spoiler, dJ as SpoilerData, bs as Status, jo as StatusWithLiterals, fM as Step, a4 as StringComponentType, h_ as StringComponentTypeWithLiterals, cw as StringCorrectAnswersList, bW as StringErrorMessages, cC as StringQuizFieldSettings, cx as StringType, bX as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hU as StringTypeFormatEnumFormatWithLiterals, cy as StringTypeFormatOptionsOneOf, bY as StringTypePhoneConstraints, bZ as StringTypeValidationMessages, cQ as Styles, df as StylesBorder, al as StylesPosition, ig as StylesPositionWithLiterals, bC as SubmissionContactMapped, bE as SubmissionContactMappingSkipped, hm as SubmissionDocument, hn as SubmissionDocumentDocumentOneOf, bt as SubmissionErrorType, jp as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hR as SubmissionStatusWithLiterals, hG as SubmissionValidationError, hH as SubmissionValidationErrorErrorMessageOneOf, hF as SubmissionValidationErrors, gx as SubmissionValidationErrorsDetails, hM as SubmissionsQueryResult, gu as SubmitContactResponse, g0 as SubmitSettings, g1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, jf as SubmitSuccessActionWithLiterals, bu as Submitter, bv as SubmitterSubmitterOneOf, fo as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, j9 as SubscriptionInfoOptInLevelWithLiterals, d$ as TableCellData, dZ as TableData, b4 as Tag, bz as TagList, j0 as TagWithLiterals, gi as Tags, eP as TagsOption, gj as TagsTagList, bi as Target, je as TargetWithLiterals, aa as TextAlignment, i4 as TextAlignmentWithLiterals, dB as TextData, cD as TextInput, eg as TextNodeStyle, cV as TextStyle, g2 as ThankYouMessageOptions, d8 as Thumbnails, ai as ThumbnailsAlignment, ic as ThumbnailsAlignmentWithLiterals, es as TimeInput, aZ as Type, iV as TypeWithLiterals, hw as UpdateExtendedFieldsRequest, gM as UpdateSubmissionRequest, gN as UpdateSubmissionResponse, aW as UploadFileFormat, iS as UploadFileFormatWithLiterals, fR as UpsertContact, gt as UpsertContactFromSubmissionRequest, fS as V4FormFieldContactInfo, fT as V4FormFieldContactInfoAdditionalInfoOneOf, hC as ValidateFormSubmissionRequest, co as Validation, gy as ValidationError, $ as ValidationFormat, hV as ValidationFormatWithLiterals, cB as ValidationMessages, cp as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, iE as VerticalAlignmentAlignmentWithLiterals, iA as VerticalAlignmentWithLiterals, d2 as Video, fg as VideoConferenceOptions, dU as VideoData, ae as ViewMode, i8 as ViewModeWithLiterals, an as ViewRole, ii as ViewRoleWithLiterals, ao as VoteRole, ij as VoteRoleWithLiterals, Z as WebhookIdentityType, hT as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, i0 as WidthTypeWithLiterals, i6 as WidthWithLiterals, fy as WixFile, aV as WixFileComponentType, fz as WixFileComponentTypeOptionsOneOf, iR as WixFileComponentTypeWithLiterals, fv as _Array, fw as _ArrayComponentTypeOptionsOneOf, ft as _Boolean, fu as _BooleanComponentTypeOptionsOneOf, fr as _Number, fs as _NumberComponentTypeOptionsOneOf, fx as _Object, fp as _String, fq as _StringComponentTypeOptionsOneOf, hQ as utils } from './forms-v4-submission-submissions.universal-CG5mgBXv.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|