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