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