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