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