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