@wix/auto_sdk_forms_submissions 1.0.62 → 1.0.64

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-CJRPTs5G.d.ts → forms-v4-submission-submissions.universal-CosZdolZ.d.ts} +26 -6
  2. package/build/cjs/index.d.ts +4 -4
  3. package/build/cjs/index.js +8 -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 +8 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +25 -5
  9. package/build/cjs/meta.js +7 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-CJRPTs5G.d.mts → forms-v4-submission-submissions.universal-CosZdolZ.d.mts} +26 -6
  12. package/build/es/index.d.mts +4 -4
  13. package/build/es/index.mjs +8 -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 +8 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +25 -5
  19. package/build/es/meta.mjs +7 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-CjdGkOEc.d.ts → forms-v4-submission-submissions.universal-CM12Gnyf.d.ts} +26 -6
  22. package/build/internal/cjs/index.d.ts +4 -4
  23. package/build/internal/cjs/index.js +8 -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 +8 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +25 -5
  29. package/build/internal/cjs/meta.js +7 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-CjdGkOEc.d.mts → forms-v4-submission-submissions.universal-CM12Gnyf.d.mts} +26 -6
  32. package/build/internal/es/index.d.mts +4 -4
  33. package/build/internal/es/index.mjs +8 -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 +8 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +25 -5
  39. package/build/internal/es/meta.mjs +7 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -382,6 +382,8 @@ interface Form {
382
382
  * @maxSize 100
383
383
  */
384
384
  formRules?: Rule[];
385
+ /** Tag IDs collections associated with the current entity. */
386
+ tags?: PublicTags;
385
387
  }
386
388
  interface FormField {
387
389
  /**
@@ -6268,10 +6270,24 @@ declare enum ErrorType {
6268
6270
  /** Some of the service options on service picker field are deleted or unavailable */
6269
6271
  INVALID_SERVICE_OPTIONS_ERROR = "INVALID_SERVICE_OPTIONS_ERROR",
6270
6272
  /** All of the service options on service picker field are deleted or unavailable */
6271
- NO_AVAILABLE_SERVICE_OPTIONS_ERROR = "NO_AVAILABLE_SERVICE_OPTIONS_ERROR"
6273
+ NO_AVAILABLE_SERVICE_OPTIONS_ERROR = "NO_AVAILABLE_SERVICE_OPTIONS_ERROR",
6274
+ /** Text value does not match the exact required length */
6275
+ EXACT_CHARACTER_LENGTH_ERROR = "EXACT_CHARACTER_LENGTH_ERROR",
6276
+ /** Character count is not within the required range */
6277
+ CHARACTER_LENGTH_RANGE_ERROR = "CHARACTER_LENGTH_RANGE_ERROR",
6278
+ /** Number is not within the required range */
6279
+ VALUE_RANGE_ERROR = "VALUE_RANGE_ERROR",
6280
+ /** Field not have the exact number of options selected */
6281
+ EXACT_ITEMS_NUMBER_ERROR = "EXACT_ITEMS_NUMBER_ERROR",
6282
+ /** Number has incorrect number of decimal places */
6283
+ DECIMAL_POINT_ERROR = "DECIMAL_POINT_ERROR",
6284
+ /** Date value is incomplete or missing required parts */
6285
+ INCOMPLETE_DATE_ERROR = "INCOMPLETE_DATE_ERROR",
6286
+ /** Value does not match the required pattern format */
6287
+ INVALID_VALUE_FOR_PATTERN_ERROR = "INVALID_VALUE_FOR_PATTERN_ERROR"
6272
6288
  }
6273
6289
  /** @enumType */
6274
- type ErrorTypeWithLiterals = ErrorType | 'UNKNOWN_ERROR' | 'TYPE_ERROR' | 'REQUIRED_VALUE_ERROR' | 'UNKNOWN_VALUE_ERROR' | 'MAX_LENGTH_ERROR' | 'MIN_LENGTH_ERROR' | 'PATTERN_ERROR' | 'FORMAT_ERROR' | 'MAX_VALUE_ERROR' | 'MIN_VALUE_ERROR' | 'MULTIPLE_OF_VALUE_ERROR' | 'MIN_ITEMS_ERROR' | 'MAX_ITEMS_ERROR' | 'NOT_ALLOWED_VALUE_ERROR' | 'FIELDS_COMPATIBILITY_ERROR' | 'DISABLED_FORM_ERROR' | 'FORMS_COUNT_RESTRICTIONS_ERROR' | 'FIELDS_COUNT_RESTRICTIONS_ERROR' | 'STEPS_COUNT_RESTRICTIONS_ERROR' | 'RULES_COUNT_RESTRICTIONS_ERROR' | 'FILE_UPLOAD_RESTRICTIONS_ERROR' | 'INVALID_PHONE_COUNTRY_CODE_ERROR' | 'INVALID_STAFF_ID_ERROR' | 'INVALID_LOCATION_ID_ERROR' | 'MISSING_SERVICE_OPTION_ERROR' | 'INVALID_SERVICE_OPTIONS_ERROR' | 'NO_AVAILABLE_SERVICE_OPTIONS_ERROR';
6290
+ type ErrorTypeWithLiterals = ErrorType | 'UNKNOWN_ERROR' | 'TYPE_ERROR' | 'REQUIRED_VALUE_ERROR' | 'UNKNOWN_VALUE_ERROR' | 'MAX_LENGTH_ERROR' | 'MIN_LENGTH_ERROR' | 'PATTERN_ERROR' | 'FORMAT_ERROR' | 'MAX_VALUE_ERROR' | 'MIN_VALUE_ERROR' | 'MULTIPLE_OF_VALUE_ERROR' | 'MIN_ITEMS_ERROR' | 'MAX_ITEMS_ERROR' | 'NOT_ALLOWED_VALUE_ERROR' | 'FIELDS_COMPATIBILITY_ERROR' | 'DISABLED_FORM_ERROR' | 'FORMS_COUNT_RESTRICTIONS_ERROR' | 'FIELDS_COUNT_RESTRICTIONS_ERROR' | 'STEPS_COUNT_RESTRICTIONS_ERROR' | 'RULES_COUNT_RESTRICTIONS_ERROR' | 'FILE_UPLOAD_RESTRICTIONS_ERROR' | 'INVALID_PHONE_COUNTRY_CODE_ERROR' | 'INVALID_STAFF_ID_ERROR' | 'INVALID_LOCATION_ID_ERROR' | 'MISSING_SERVICE_OPTION_ERROR' | 'INVALID_SERVICE_OPTIONS_ERROR' | 'NO_AVAILABLE_SERVICE_OPTIONS_ERROR' | 'EXACT_CHARACTER_LENGTH_ERROR' | 'CHARACTER_LENGTH_RANGE_ERROR' | 'VALUE_RANGE_ERROR' | 'EXACT_ITEMS_NUMBER_ERROR' | 'DECIMAL_POINT_ERROR' | 'INCOMPLETE_DATE_ERROR' | 'INVALID_VALUE_FOR_PATTERN_ERROR';
6275
6291
  interface CreateSubmissionForMigrationRequest {
6276
6292
  /** Submission to create. */
6277
6293
  submission?: FormSubmission;
@@ -6829,10 +6845,9 @@ interface BulkMarkSubmissionsAsSeenRequest {
6829
6845
  /**
6830
6846
  * Submission IDs to mark as seen.
6831
6847
  * @format GUID
6832
- * @minSize 1
6833
6848
  * @maxSize 100
6834
6849
  */
6835
- ids: string[];
6850
+ ids?: string[];
6836
6851
  /**
6837
6852
  * ID of the form which the submissions belong to.
6838
6853
  * @format GUID
@@ -6840,6 +6855,11 @@ interface BulkMarkSubmissionsAsSeenRequest {
6840
6855
  formId: string;
6841
6856
  }
6842
6857
  interface BulkMarkSubmissionsAsSeenResponse {
6858
+ /**
6859
+ * Job id for the bulk update operation
6860
+ * @format GUID
6861
+ */
6862
+ jobId?: string;
6843
6863
  }
6844
6864
  interface GetSubmissionDownloadUrlRequest {
6845
6865
  /**
@@ -7974,7 +7994,7 @@ declare function getMediaUploadUrl(formId: string, filename: string, mimeType: s
7974
7994
  * @applicableIdentity APP
7975
7995
  * @fqn wix.forms.v4.FormSubmissionService.BulkMarkSubmissionsAsSeen
7976
7996
  */
7977
- declare function bulkMarkSubmissionsAsSeen(ids: string[], formId: string): Promise<void>;
7997
+ declare function bulkMarkSubmissionsAsSeen(ids: string[], formId: string): Promise<NonNullablePaths<BulkMarkSubmissionsAsSeenResponse, `jobId`, 2>>;
7978
7998
  /**
7979
7999
  * Gets submission as document which may include the document download url if the document is ready.
7980
8000
  * @param submissionId - Submission ID.
@@ -8062,4 +8082,4 @@ interface ValidateFormSubmissionOptions {
8062
8082
  fieldsToValidate?: string[];
8063
8083
  }
8064
8084
 
8065
- export { InputFieldStringComponentType as $, type UpdateExtendedFieldsResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type ValidateFormSubmissionResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionCreatedEnvelope as H, type SubmissionDeletedEnvelope as I, type SubmissionRemovedSubmissionFromTrashEnvelope as J, type SubmissionStatusUpdatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappedEnvelope as M, type SubmissionContactMappingSkippedEnvelope as N, type SubmissionUpdatedEnvelope as O, SubmissionStatus as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, OptInLevel as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, StringTypeFormatEnumFormat as W, ValidationFormat as X, ProductType as Y, PriceType as Z, InputFieldStringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FormFieldContactInfoContactField as a$, NodeType as a0, WidthType as a1, PluginContainerDataAlignment as a2, ButtonDataType as a3, LinkTarget as a4, TextAlignment as a5, LineStyle as a6, Width as a7, DividerDataAlignment as a8, ViewMode as a9, NullValue as aA, Scaling as aB, LayoutDataImagePosition as aC, VerticalAlignmentAlignment as aD, ResponsivenessBehaviour as aE, ImagePosition as aF, Alignment as aG, ImageFit as aH, NumberOfColumns as aI, FirstDayOfWeek as aJ, InputFieldNumberComponentType as aK, InputFieldBooleanComponentType as aL, ArrayItemsItemType as aM, PropertiesTypePropertiesTypeEnum as aN, InputFieldArrayComponentType as aO, InputFieldWixFileComponentType as aP, UploadFileFormat as aQ, InputFieldPaymentComponentType as aR, InputFieldSchedulingComponentType as aS, Format as aT, MultilineAddressComponentType as aU, Type as aV, InputFieldInputType as aW, FormFieldContactInfoEmailInfoTag as aX, FormFieldContactInfoPhoneInfoTag as aY, AddressInfoTag as aZ, SubscriptionInfoOptInLevel as a_, LayoutType as aa, Orientation as ab, Crop as ac, ThumbnailsAlignment as ad, GIFType as ae, Source as af, StylesPosition as ag, MapType as ah, ViewRole as ai, VoteRole as aj, PollLayoutType as ak, PollLayoutDirection as al, BackgroundType as am, DecorationType as an, FontType as ao, Position as ap, AspectRatio as aq, Resizing as ar, Placement as as, CardStylesType as at, CardStylesAlignment as au, Layout as av, AppType as aw, InitialExpandedItems as ax, Direction as ay, VerticalAlignment as az, type CreateSubmissionApplicationErrors as b, type FormFieldBooleanType as b$, FormFieldV2FieldType as b0, DisplayFieldType as b1, FieldType as b2, FormatEnumFormat as b3, StringComponentType as b4, NumberComponentType as b5, BooleanComponentType as b6, ItemType as b7, PropertiesTypeEnum as b8, ArrayComponentType as b9, Mode as bA, Status as bB, SubmissionErrorType as bC, type Submitter as bD, type SubmitterSubmitterOneOf as bE, type ExtendedFields as bF, type OrderDetails as bG, type PublicTags as bH, type TagList as bI, type FormSubmissionStatusUpdatedEvent as bJ, type RemovedSubmissionFromTrash as bK, type SubmissionContactMapped as bL, type MarketingSubscriptionDetails as bM, type SubmissionContactMappingSkipped as bN, type CreateCheckoutFromSubmissionRequest as bO, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bP, type Form as bQ, type FormField as bR, type FormFieldStringType as bS, type FormFieldStringTypeFormatOptionsOneOf as bT, type StringErrorMessages as bU, type StringTypeDateTimeConstraints as bV, type StringTypePhoneConstraints as bW, type StringTypeValidationMessages as bX, type FormFieldNumberType as bY, type NumberErrorMessages as bZ, type IntegerType as b_, WixFileComponentType as ba, PaymentComponentType as bb, ComponentType as bc, ObjectArrayComponentType as bd, SchedulingComponentType as be, InputType as bf, EmailInfoTag as bg, PhoneInfoTag as bh, Tag as bi, ConfirmationLevel as bj, ContactField as bk, DisplayFieldDisplayFieldType as bl, OverrideEntityType as bm, Kind as bn, SpamFilterProtectionLevel as bo, RequiredIndicator as bp, RequiredIndicatorPlacement as bq, Target as br, SubmitSuccessAction as bs, ChangeableProperty as bt, OverrideEntityTypeEnumOverrideEntityType as bu, Operator as bv, WebhookIdentityType as bw, IdentityType as bx, ErrorType as by, SortOrder as bz, type CreateSubmissionValidationErrors as c, type GalleryOptionsLayout as c$, type BooleanErrorMessages as c0, type FormFieldArrayType as c1, type FormFieldObjectType as c2, type ObjectTypePropertiesType as c3, type ObjectTypePropertiesTypePropertiesTypeOneOf as c4, type ObjectErrorMessages as c5, type ArrayTypeArrayItems as c6, type ArrayTypeArrayItemsItemsOneOf as c7, type ArrayErrorMessages as c8, type PredefinedValidation as c9, type NodeStyle as cA, type ButtonData as cB, type Border as cC, type Colors as cD, type PluginContainerData as cE, type PluginContainerDataWidth as cF, type PluginContainerDataWidthDataOneOf as cG, type Spoiler as cH, type Height as cI, type Styles as cJ, type Link as cK, type LinkDataOneOf as cL, type Rel as cM, type CodeBlockData as cN, type TextStyle as cO, type DividerData as cP, type FileData as cQ, type FileSource as cR, type FileSourceDataOneOf as cS, type PDFSettings as cT, type GalleryData as cU, type Media as cV, type Image as cW, type Video as cX, type Item as cY, type ItemDataOneOf as cZ, type GalleryOptions as c_, type PredefinedValidationFormatOptionsOneOf as ca, type PaymentType as cb, type QuantityLimit as cc, type FixedPriceOptions as cd, type DynamicPriceOptions as ce, type Product as cf, type ProductPriceOptionsOneOf as cg, type MultilineAddressValidation as ch, type FieldOverrides as ci, type FieldsOverrides as cj, type ObjectArrayType as ck, type NestedFormFieldOverrides as cl, type Validation as cm, type ValidationValidationOneOf as cn, type DataExtensionsDetails as co, type NestedFormOverrides as cp, type FormFieldV2 as cq, type FormFieldV2FieldTypeOptionsOneOf as cr, type InputFieldStringType as cs, type InputFieldStringTypeFormatOptionsOneOf as ct, type InputFieldStringTypeDateTimeConstraints as cu, type InputFieldStringTypePhoneConstraints as cv, type TextInput as cw, type RichContent as cx, type Node as cy, type NodeDataOneOf as cz, type UpdateSubmission as d, type CaptionData as d$, type ItemStyle as d0, type Thumbnails as d1, type GIFData as d2, type GIF as d3, type HeadingData as d4, type HTMLData as d5, type HTMLDataDataOneOf as d6, type ImageData as d7, type StylesBorder as d8, type ImageDataStyles as d9, type MentionData as dA, type FontSizeData as dB, type SpoilerData as dC, type AppEmbedData as dD, type AppEmbedDataAppDataOneOf as dE, type BookingData as dF, type EventData as dG, type ButtonStyles as dH, type ImageStyles as dI, type RibbonStyles as dJ, type CardStyles as dK, type PricingData as dL, type VideoData as dM, type PlaybackOptions as dN, type EmbedData as dO, type Oembed as dP, type CollapsibleListData as dQ, type TableData as dR, type Dimensions as dS, type TableCellData as dT, type CellStyle as dU, type BorderColors as dV, type ListValue as dW, type AudioData as dX, type OrderedListData as dY, type BulletedListData as dZ, type BlockquoteData as d_, type LinkPreviewData as da, type LinkPreviewDataStyles as db, type MapData as dc, type MapSettings as dd, type ParagraphData as de, type PollData as df, type Permissions as dg, type PollOption as dh, type Settings as di, type PollLayout as dj, type OptionLayout as dk, type Gradient as dl, type Background as dm, type BackgroundBackgroundOneOf as dn, type PollDesign as dp, type OptionDesign as dq, type Poll as dr, type PollDataLayout as ds, type Design as dt, type TextData as du, type Decoration as dv, type DecorationDataOneOf as dw, type AnchorData as dx, type ColorData as dy, type LinkData as dz, type UpdateSubmissionValidationErrors as e, type FormFieldContactInfoAddressInfo as e$, type LayoutData as e0, type BackgroundImage as e1, type LayoutCellData as e2, type Metadata as e3, type DocumentStyle as e4, type TextNodeStyle as e5, type MediaItem as e6, type MediaItemMediaOneOf as e7, type MediaSettings as e8, type RadioGroup as e9, type TagsOption as eA, type ServicesCheckboxGroup as eB, type FileType as eC, type FileUpload as eD, type Signature as eE, type ProductCheckboxGroup as eF, type ProductCheckboxGroupOption as eG, type DonationInput as eH, type DonationInputOption as eI, type PaymentInput as eJ, type FixedPayment as eK, type Appointment as eL, type AppointmentFormatInfoOneOf as eM, type Location as eN, type LocationLocationInfoOneOf as eO, type InPersonOptions as eP, type VideoConferenceOptions as eQ, type PhoneOptions as eR, type MultilineAddress as eS, type AddressLine2 as eT, type DefaultCountryConfig as eU, type DefaultCountryConfigOptionsOneOf as eV, type FieldsSettings as eW, type V4FormFieldContactInfo as eX, type V4FormFieldContactInfoAdditionalInfoOneOf as eY, type FormFieldContactInfoEmailInfo as eZ, type FormFieldContactInfoPhoneInfo as e_, type RadioGroupOption as ea, type CustomOption as eb, type Dropdown as ec, type DropdownOption as ed, type DateTimeInput as ee, type PhoneInput as ef, type DateInput as eg, type TimeInput as eh, type DatePicker as ei, type ServicesDropdown as ej, type ServiceOption as ek, type InputFieldNumberType as el, type NumberInput as em, type RatingInput as en, type InputFieldBooleanType as eo, type Checkbox as ep, type InputFieldArrayType as eq, type InputFieldIntegerType as er, type InputFieldObjectType as es, type InputFieldObjectTypePropertiesType as et, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as eu, type InputFieldArrayTypeArrayItems as ev, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as ew, type CheckboxGroup as ex, type Option as ey, type Tags as ez, type ConfirmSubmissionResponse as f, type _BooleanComponentTypeOptionsOneOf as f$, type FormFieldContactInfoCustomFieldInfo as f0, type FormFieldContactInfoSubscriptionInfo as f1, type InputField_String as f2, type InputField_StringComponentTypeOptionsOneOf as f3, type InputField_Number as f4, type InputField_NumberComponentTypeOptionsOneOf as f5, type InputField_Boolean as f6, type InputField_BooleanComponentTypeOptionsOneOf as f7, type InputField_Array as f8, type InputField_ArrayComponentTypeOptionsOneOf as f9, type BooleanType as fA, type ArrayType as fB, type ObjectType as fC, type PropertiesType as fD, type PropertiesTypePropertiesTypeOptionsOneOf as fE, type ArrayItems as fF, type ArrayItemsItemTypeOptionsOneOf as fG, type Repeater as fH, type FormLayout as fI, type BreakPoint as fJ, type ItemLayout as fK, type ItemLayoutItemOneOf as fL, type Group as fM, type Margin as fN, type Section as fO, type FormFieldContactInfo as fP, type FormFieldContactInfoAdditionalInfoOneOf as fQ, type EmailInfo as fR, type PhoneInfo as fS, type AddressInfo as fT, type CustomFieldInfo as fU, type SubscriptionInfo as fV, type _String as fW, type _StringComponentTypeOptionsOneOf as fX, type _Number as fY, type _NumberComponentTypeOptionsOneOf as fZ, type _Boolean as f_, type InputField_Object as fa, type InputField_ObjectValidationOneOf as fb, type InputFieldWixFile as fc, type InputFieldWixFileComponentTypeOptionsOneOf as fd, type InputFieldPayment as fe, type InputFieldPaymentComponentTypeOptionsOneOf as ff, type InputFieldMultilineAddress as fg, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fh, type InputFieldScheduling as fi, type InputFieldSchedulingComponentTypeOptionsOneOf as fj, type FormFieldV2InputField as fk, type FormFieldV2InputFieldInputTypeOptionsOneOf as fl, type DisplayField as fm, type DisplayFieldDisplayFieldTypeOptionsOneOf as fn, type V4RichContentOptions as fo, type V4PageNavigationOptions as fp, type Field as fq, type FieldFieldTypeOptionsOneOf as fr, type InputField as fs, type InputFieldInputTypeOptionsOneOf as ft, type StringType as fu, type StringTypeFormatOptionsOneOf as fv, type DateTimeConstraints as fw, type PhoneConstraints as fx, type ValidationMessages as fy, type NumberType as fz, type BulkDeleteSubmissionResponse as g, type SubmissionValidationErrorsDetails as g$, type _Array as g0, type _ArrayComponentTypeOptionsOneOf as g1, type _Object as g2, type WixFile as g3, type WixFileComponentTypeOptionsOneOf as g4, type Payment as g5, type PaymentComponentTypeOptionsOneOf as g6, type Scheduling as g7, type SchedulingComponentTypeOptionsOneOf as g8, type Address as g9, type FieldOverridePropertyTypeOptionsOneOf as gA, type ConditionNode as gB, type ConditionNodeNodeOneOf as gC, type AndCondition as gD, type OrCondition as gE, type Condition as gF, type RuleFormOverride as gG, type RuleFormOverrideEntityTypeOptionsOneOf as gH, type CreateCheckoutFromSubmissionResponse as gI, type Checkout as gJ, type IsFormSubmittableRequest as gK, type IsFormSubmittableResponse as gL, type DomainEvent as gM, type DomainEventBodyOneOf as gN, type EntityCreatedEvent as gO, type RestoreInfo as gP, type EntityUpdatedEvent as gQ, type EntityDeletedEvent as gR, type ActionEvent as gS, type Empty as gT, type MessageEnvelope as gU, type IdentificationData as gV, type IdentificationDataIdOneOf as gW, type UpsertContactFromSubmissionRequest as gX, type SubmitContactResponse as gY, type CreateSubmissionRequest as gZ, type CreateSubmissionResponse as g_, type AddressComponentTypeOptionsOneOf as ga, type ObjectArray as gb, type ObjectArrayComponentTypeOptionsOneOf as gc, type FieldsDisplayField as gd, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as ge, type RichContentOptions as gf, type PageNavigationOptions as gg, type Step as gh, type FormRule as gi, type FormOverride as gj, type FormProperties as gk, type PostSubmissionTriggers as gl, type UpsertContact as gm, type NestedForm as gn, type LimitationRule as go, type RequiredIndicatorProperties as gp, type SubmitSettings as gq, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gr, type ThankYouMessageOptions as gs, type RedirectOptions as gt, type FieldGroup as gu, type Rule as gv, type RequiredOptions as gw, type HiddenOptions as gx, type AllowedValuesOptions as gy, type FieldOverride as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ListFormattedSubmissionsResponse as h$, type ValidationError as h0, type CreateSubmissionForMigrationRequest as h1, type CreateSubmissionForMigrationResponse as h2, type CreateSubmissionBySubmitterRequest as h3, type CreateSubmissionBySubmitterResponse as h4, type BulkCreateSubmissionBySubmitterRequest as h5, type BulkCreateSubmissionBySubmitterData as h6, type BulkCreateSubmissionBySubmitterResponse as h7, type BulkSubmissionResult as h8, type ItemMetadata as h9, type SearchSubmissionsByNamespaceRequest as hA, type CursorSearch as hB, type CursorSearchPagingMethodOneOf as hC, type SearchDetails as hD, type SearchSubmissionsByNamespaceForExportRequest as hE, type SearchSubmissionsByNamespaceForExportResponse as hF, type QuerySubmissionsByNamespaceRequest as hG, type QuerySubmissionsByNamespaceResponse as hH, type QuerySubmissionsByNamespaceForExportRequest as hI, type QuerySubmissionsByNamespaceForExportResponse as hJ, type CountSubmissionsByFilterRequest as hK, type FormSubmissionsCount as hL, type CountSubmissionsRequest as hM, type CountDeletedSubmissionsRequest as hN, type FormDeletedSubmissionsCount as hO, type GetMediaUploadURLRequest as hP, type BulkMarkSubmissionsAsSeenRequest as hQ, type BulkMarkSubmissionsAsSeenResponse as hR, type GetSubmissionDownloadUrlRequest as hS, type SubmissionDocument as hT, type SubmissionDocumentDocumentOneOf as hU, type DocumentReady as hV, type DownloadSubmissionRequest as hW, type HeadersEntry as hX, type GetFormattedSubmissionRequest as hY, type FormattedSubmission as hZ, type ListFormattedSubmissionsRequest as h_, type ApplicationError as ha, type BulkActionMetadata as hb, type GetSubmissionRequest as hc, type GetSubmissionResponse as hd, type GetSubmissionByCheckoutIdRequest as he, type GetSubmissionByCheckoutIdResponse as hf, type UpdateSubmissionRequest as hg, type UpdateSubmissionResponse as hh, type ConfirmSubmissionRequest as hi, type DeleteSubmissionRequest as hj, type DeleteSubmissionResponse as hk, type BulkDeleteSubmissionRequest as hl, type BulkDeleteSubmissionResult as hm, type RestoreSubmissionFromTrashBinRequest as hn, type RemoveSubmissionFromTrashBinRequest as ho, type RemoveSubmissionFromTrashBinResponse as hp, type BulkRemoveSubmissionFromTrashBinRequest as hq, type BulkRemoveSubmissionFromTrashBinResult as hr, type ListDeletedSubmissionsRequest as hs, type CursorPaging as ht, type CursorPagingMetadata as hu, type Cursors as hv, type GetDeletedSubmissionRequest as hw, type QuerySubmissionRequest as hx, type CursorQueryPagingMethodOneOf as hy, type Sorting as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type DirectionWithLiterals as i$, type FormattedFormSubmission as i0, type UpdateExtendedFieldsRequest as i1, type BulkUpdateFormSubmissionTagsRequest as i2, type BulkUpdateFormSubmissionTagsResponse as i3, type BulkUpdateFormSubmissionTagsResult as i4, type BulkUpdateFormSubmissionTagsByFilterRequest as i5, type BulkUpdateFormSubmissionTagsByFilterResponse as i6, type ValidateFormSubmissionRequest as i7, type FieldViolation as i8, type FieldViolationErrorDataOneOf as i9, type WidthWithLiterals as iA, type DividerDataAlignmentWithLiterals as iB, type ViewModeWithLiterals as iC, type LayoutTypeWithLiterals as iD, type OrientationWithLiterals as iE, type CropWithLiterals as iF, type ThumbnailsAlignmentWithLiterals as iG, type GIFTypeWithLiterals as iH, type SourceWithLiterals as iI, type StylesPositionWithLiterals as iJ, type MapTypeWithLiterals as iK, type ViewRoleWithLiterals as iL, type VoteRoleWithLiterals as iM, type PollLayoutTypeWithLiterals as iN, type PollLayoutDirectionWithLiterals as iO, type BackgroundTypeWithLiterals as iP, type DecorationTypeWithLiterals as iQ, type FontTypeWithLiterals as iR, type PositionWithLiterals as iS, type AspectRatioWithLiterals as iT, type ResizingWithLiterals as iU, type PlacementWithLiterals as iV, type CardStylesTypeWithLiterals as iW, type CardStylesAlignmentWithLiterals as iX, type LayoutWithLiterals as iY, type AppTypeWithLiterals as iZ, type InitialExpandedItemsWithLiterals as i_, type SubmissionValidationErrors as ia, type SubmissionValidationError as ib, type SubmissionValidationErrorErrorMessageOneOf as ic, type BaseEventMetadata as id, type EventMetadata as ie, type FormSubmissionSearchSpec as ig, type SubmissionsQueryResult as ih, type BulkUpdateFormSubmissionTagsOptions as ii, type BulkUpdateFormSubmissionTagsByFilterOptions as ij, type SubmissionStatusWithLiterals as ik, type OptInLevelWithLiterals as il, type StringTypeFormatEnumFormatWithLiterals as im, type ValidationFormatWithLiterals as io, type ProductTypeWithLiterals as ip, type PriceTypeWithLiterals as iq, type InputFieldStringTypeFormatEnumFormatWithLiterals as ir, type InputFieldStringComponentTypeWithLiterals as is, type NodeTypeWithLiterals as it, type WidthTypeWithLiterals as iu, type PluginContainerDataAlignmentWithLiterals as iv, type ButtonDataTypeWithLiterals as iw, type LinkTargetWithLiterals as ix, type TextAlignmentWithLiterals as iy, type LineStyleWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ErrorTypeWithLiterals as j$, type VerticalAlignmentWithLiterals as j0, type NullValueWithLiterals as j1, type ScalingWithLiterals as j2, type LayoutDataImagePositionWithLiterals as j3, type VerticalAlignmentAlignmentWithLiterals as j4, type ResponsivenessBehaviourWithLiterals as j5, type ImagePositionWithLiterals as j6, type AlignmentWithLiterals as j7, type ImageFitWithLiterals as j8, type NumberOfColumnsWithLiterals as j9, type ItemTypeWithLiterals as jA, type PropertiesTypeEnumWithLiterals as jB, type ArrayComponentTypeWithLiterals as jC, type WixFileComponentTypeWithLiterals as jD, type PaymentComponentTypeWithLiterals as jE, type ComponentTypeWithLiterals as jF, type ObjectArrayComponentTypeWithLiterals as jG, type SchedulingComponentTypeWithLiterals as jH, type InputTypeWithLiterals as jI, type EmailInfoTagWithLiterals as jJ, type PhoneInfoTagWithLiterals as jK, type TagWithLiterals as jL, type ConfirmationLevelWithLiterals as jM, type ContactFieldWithLiterals as jN, type DisplayFieldDisplayFieldTypeWithLiterals as jO, type OverrideEntityTypeWithLiterals as jP, type KindWithLiterals as jQ, type SpamFilterProtectionLevelWithLiterals as jR, type RequiredIndicatorWithLiterals as jS, type RequiredIndicatorPlacementWithLiterals as jT, type TargetWithLiterals as jU, type SubmitSuccessActionWithLiterals as jV, type ChangeablePropertyWithLiterals as jW, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jX, type OperatorWithLiterals as jY, type WebhookIdentityTypeWithLiterals as jZ, type IdentityTypeWithLiterals as j_, type FirstDayOfWeekWithLiterals as ja, type InputFieldNumberComponentTypeWithLiterals as jb, type InputFieldBooleanComponentTypeWithLiterals as jc, type ArrayItemsItemTypeWithLiterals as jd, type PropertiesTypePropertiesTypeEnumWithLiterals as je, type InputFieldArrayComponentTypeWithLiterals as jf, type InputFieldWixFileComponentTypeWithLiterals as jg, type UploadFileFormatWithLiterals as jh, type InputFieldPaymentComponentTypeWithLiterals as ji, type InputFieldSchedulingComponentTypeWithLiterals as jj, type FormatWithLiterals as jk, type MultilineAddressComponentTypeWithLiterals as jl, type TypeWithLiterals as jm, type InputFieldInputTypeWithLiterals as jn, type FormFieldContactInfoEmailInfoTagWithLiterals as jo, type FormFieldContactInfoPhoneInfoTagWithLiterals as jp, type AddressInfoTagWithLiterals as jq, type SubscriptionInfoOptInLevelWithLiterals as jr, type FormFieldContactInfoContactFieldWithLiterals as js, type FormFieldV2FieldTypeWithLiterals as jt, type DisplayFieldTypeWithLiterals as ju, type FieldTypeWithLiterals as jv, type FormatEnumFormatWithLiterals as jw, type StringComponentTypeWithLiterals as jx, type NumberComponentTypeWithLiterals as jy, type BooleanComponentTypeWithLiterals as jz, type CursorQuery as k, type SortOrderWithLiterals as k0, type ModeWithLiterals as k1, type StatusWithLiterals as k2, type SubmissionErrorTypeWithLiterals as k3, type CommonSearchWithEntityContext as k4, onSubmissionCreated as k5, onSubmissionDeleted as k6, onSubmissionRemovedSubmissionFromTrash as k7, onSubmissionStatusUpdated as k8, onSubmissionContactMapped as k9, onSubmissionContactMappingSkipped as ka, onSubmissionUpdated as kb, upsertContactFromSubmission as kc, createSubmission as kd, getSubmission as ke, updateSubmission as kf, confirmSubmission as kg, deleteSubmission as kh, bulkDeleteSubmission as ki, restoreSubmissionFromTrashBin as kj, removeSubmissionFromTrashBin as kk, bulkRemoveSubmissionFromTrashBin as kl, listDeletedSubmissions as km, getDeletedSubmission as kn, querySubmission as ko, querySubmissionsByNamespace as kp, countSubmissionsByFilter as kq, countSubmissions as kr, countDeletedSubmissions as ks, getMediaUploadUrl as kt, bulkMarkSubmissionsAsSeen as ku, getSubmissionDownloadUrl as kv, downloadSubmission as kw, getFormattedSubmission as kx, updateExtendedFields as ky, validateFormSubmission as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type RawHttpResponse as x, type GetFormattedSubmissionResponse as y, type UpdateExtendedFieldsOptions as z };
8085
+ export { InputFieldStringTypeFormatEnumFormat as $, type UpdateExtendedFieldsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type UpdateExtendedFieldsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type ValidateFormSubmissionResponse as H, type SubmissionCreatedEnvelope as I, type SubmissionDeletedEnvelope as J, type SubmissionRemovedSubmissionFromTrashEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionStatusUpdatedEnvelope as M, type SubmissionContactMappedEnvelope as N, type SubmissionContactMappingSkippedEnvelope as O, type SubmissionUpdatedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, SubmissionStatus as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, OptInLevel as W, StringTypeFormatEnumFormat as X, ValidationFormat as Y, ProductType as Z, PriceType as _, type UpsertContactFromSubmissionResponse as a, SubscriptionInfoOptInLevel as a$, InputFieldStringComponentType as a0, NodeType as a1, WidthType as a2, PluginContainerDataAlignment as a3, ButtonDataType as a4, LinkTarget as a5, TextAlignment as a6, LineStyle as a7, Width as a8, DividerDataAlignment as a9, VerticalAlignment as aA, NullValue as aB, Scaling as aC, LayoutDataImagePosition as aD, VerticalAlignmentAlignment as aE, ResponsivenessBehaviour as aF, ImagePosition as aG, Alignment as aH, ImageFit as aI, NumberOfColumns as aJ, FirstDayOfWeek as aK, InputFieldNumberComponentType as aL, InputFieldBooleanComponentType as aM, ArrayItemsItemType as aN, PropertiesTypePropertiesTypeEnum as aO, InputFieldArrayComponentType as aP, InputFieldWixFileComponentType as aQ, UploadFileFormat as aR, InputFieldPaymentComponentType as aS, InputFieldSchedulingComponentType as aT, Format as aU, MultilineAddressComponentType as aV, Type as aW, InputFieldInputType as aX, FormFieldContactInfoEmailInfoTag as aY, FormFieldContactInfoPhoneInfoTag as aZ, AddressInfoTag as a_, ViewMode as aa, LayoutType as ab, Orientation as ac, Crop as ad, ThumbnailsAlignment as ae, GIFType as af, Source as ag, StylesPosition as ah, MapType as ai, ViewRole as aj, VoteRole as ak, PollLayoutType as al, PollLayoutDirection as am, BackgroundType as an, DecorationType as ao, FontType as ap, Position as aq, AspectRatio as ar, Resizing as as, Placement as at, CardStylesType as au, CardStylesAlignment as av, Layout as aw, AppType as ax, InitialExpandedItems as ay, Direction as az, type CreateSubmissionApplicationErrors as b, type IntegerType as b$, FormFieldContactInfoContactField as b0, FormFieldV2FieldType as b1, DisplayFieldType as b2, FieldType as b3, FormatEnumFormat as b4, StringComponentType as b5, NumberComponentType as b6, BooleanComponentType as b7, ItemType as b8, PropertiesTypeEnum as b9, SortOrder as bA, Mode as bB, Status as bC, SubmissionErrorType as bD, type Submitter as bE, type SubmitterSubmitterOneOf as bF, type ExtendedFields as bG, type OrderDetails as bH, type PublicTags as bI, type TagList as bJ, type FormSubmissionStatusUpdatedEvent as bK, type RemovedSubmissionFromTrash as bL, type SubmissionContactMapped as bM, type MarketingSubscriptionDetails as bN, type SubmissionContactMappingSkipped as bO, type CreateCheckoutFromSubmissionRequest as bP, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bQ, type Form as bR, type FormField as bS, type FormFieldStringType as bT, type FormFieldStringTypeFormatOptionsOneOf as bU, type StringErrorMessages as bV, type StringTypeDateTimeConstraints as bW, type StringTypePhoneConstraints as bX, type StringTypeValidationMessages as bY, type FormFieldNumberType as bZ, type NumberErrorMessages as b_, ArrayComponentType as ba, WixFileComponentType as bb, PaymentComponentType as bc, ComponentType as bd, ObjectArrayComponentType as be, SchedulingComponentType as bf, InputType as bg, EmailInfoTag as bh, PhoneInfoTag as bi, Tag as bj, ConfirmationLevel as bk, ContactField as bl, DisplayFieldDisplayFieldType as bm, OverrideEntityType as bn, Kind as bo, SpamFilterProtectionLevel as bp, RequiredIndicator as bq, RequiredIndicatorPlacement as br, Target as bs, SubmitSuccessAction as bt, ChangeableProperty as bu, OverrideEntityTypeEnumOverrideEntityType as bv, Operator as bw, WebhookIdentityType as bx, IdentityType as by, ErrorType as bz, type CreateSubmissionValidationErrors as c, type GalleryOptions as c$, type FormFieldBooleanType as c0, type BooleanErrorMessages as c1, type FormFieldArrayType as c2, type FormFieldObjectType as c3, type ObjectTypePropertiesType as c4, type ObjectTypePropertiesTypePropertiesTypeOneOf as c5, type ObjectErrorMessages as c6, type ArrayTypeArrayItems as c7, type ArrayTypeArrayItemsItemsOneOf as c8, type ArrayErrorMessages as c9, type NodeDataOneOf as cA, type NodeStyle as cB, type ButtonData as cC, type Border as cD, type Colors as cE, type PluginContainerData as cF, type PluginContainerDataWidth as cG, type PluginContainerDataWidthDataOneOf as cH, type Spoiler as cI, type Height as cJ, type Styles as cK, type Link as cL, type LinkDataOneOf as cM, type Rel as cN, type CodeBlockData as cO, type TextStyle as cP, type DividerData as cQ, type FileData as cR, type FileSource as cS, type FileSourceDataOneOf as cT, type PDFSettings as cU, type GalleryData as cV, type Media as cW, type Image as cX, type Video as cY, type Item as cZ, type ItemDataOneOf as c_, type PredefinedValidation as ca, type PredefinedValidationFormatOptionsOneOf as cb, type PaymentType as cc, type QuantityLimit as cd, type FixedPriceOptions as ce, type DynamicPriceOptions as cf, type Product as cg, type ProductPriceOptionsOneOf as ch, type MultilineAddressValidation as ci, type FieldOverrides as cj, type FieldsOverrides as ck, type ObjectArrayType as cl, type NestedFormFieldOverrides as cm, type Validation as cn, type ValidationValidationOneOf as co, type DataExtensionsDetails as cp, type NestedFormOverrides as cq, type FormFieldV2 as cr, type FormFieldV2FieldTypeOptionsOneOf as cs, type InputFieldStringType as ct, type InputFieldStringTypeFormatOptionsOneOf as cu, type InputFieldStringTypeDateTimeConstraints as cv, type InputFieldStringTypePhoneConstraints as cw, type TextInput as cx, type RichContent as cy, type Node as cz, type UpdateSubmission as d, type BlockquoteData as d$, type GalleryOptionsLayout as d0, type ItemStyle as d1, type Thumbnails as d2, type GIFData as d3, type GIF as d4, type HeadingData as d5, type HTMLData as d6, type HTMLDataDataOneOf as d7, type ImageData as d8, type StylesBorder as d9, type LinkData as dA, type MentionData as dB, type FontSizeData as dC, type SpoilerData as dD, type AppEmbedData as dE, type AppEmbedDataAppDataOneOf as dF, type BookingData as dG, type EventData as dH, type ButtonStyles as dI, type ImageStyles as dJ, type RibbonStyles as dK, type CardStyles as dL, type PricingData as dM, type VideoData as dN, type PlaybackOptions as dO, type EmbedData as dP, type Oembed as dQ, type CollapsibleListData as dR, type TableData as dS, type Dimensions as dT, type TableCellData as dU, type CellStyle as dV, type BorderColors as dW, type ListValue as dX, type AudioData as dY, type OrderedListData as dZ, type BulletedListData as d_, type ImageDataStyles as da, type LinkPreviewData as db, type LinkPreviewDataStyles as dc, type MapData as dd, type MapSettings as de, type ParagraphData as df, type PollData as dg, type Permissions as dh, type PollOption as di, type Settings as dj, type PollLayout as dk, type OptionLayout as dl, type Gradient as dm, type Background as dn, type BackgroundBackgroundOneOf as dp, type PollDesign as dq, type OptionDesign as dr, type Poll as ds, type PollDataLayout as dt, type Design as du, type TextData as dv, type Decoration as dw, type DecorationDataOneOf as dx, type AnchorData as dy, type ColorData as dz, type UpdateSubmissionValidationErrors as e, type FormFieldContactInfoPhoneInfo as e$, type CaptionData as e0, type LayoutData as e1, type BackgroundImage as e2, type LayoutCellData as e3, type Metadata as e4, type DocumentStyle as e5, type TextNodeStyle as e6, type MediaItem as e7, type MediaItemMediaOneOf as e8, type MediaSettings as e9, type Tags as eA, type TagsOption as eB, type ServicesCheckboxGroup as eC, type FileType as eD, type FileUpload as eE, type Signature as eF, type ProductCheckboxGroup as eG, type ProductCheckboxGroupOption as eH, type DonationInput as eI, type DonationInputOption as eJ, type PaymentInput as eK, type FixedPayment as eL, type Appointment as eM, type AppointmentFormatInfoOneOf as eN, type Location as eO, type LocationLocationInfoOneOf as eP, type InPersonOptions as eQ, type VideoConferenceOptions as eR, type PhoneOptions as eS, type MultilineAddress as eT, type AddressLine2 as eU, type DefaultCountryConfig as eV, type DefaultCountryConfigOptionsOneOf as eW, type FieldsSettings as eX, type V4FormFieldContactInfo as eY, type V4FormFieldContactInfoAdditionalInfoOneOf as eZ, type FormFieldContactInfoEmailInfo as e_, type RadioGroup as ea, type RadioGroupOption as eb, type CustomOption as ec, type Dropdown as ed, type DropdownOption as ee, type DateTimeInput as ef, type PhoneInput as eg, type DateInput as eh, type TimeInput as ei, type DatePicker as ej, type ServicesDropdown as ek, type ServiceOption as el, type InputFieldNumberType as em, type NumberInput as en, type RatingInput as eo, type InputFieldBooleanType as ep, type Checkbox as eq, type InputFieldArrayType as er, type InputFieldIntegerType as es, type InputFieldObjectType as et, type InputFieldObjectTypePropertiesType as eu, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ev, type InputFieldArrayTypeArrayItems as ew, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as ex, type CheckboxGroup as ey, type Option as ez, type ConfirmSubmissionResponse as f, type _Boolean as f$, type FormFieldContactInfoAddressInfo as f0, type FormFieldContactInfoCustomFieldInfo as f1, type FormFieldContactInfoSubscriptionInfo as f2, type InputField_String as f3, type InputField_StringComponentTypeOptionsOneOf as f4, type InputField_Number as f5, type InputField_NumberComponentTypeOptionsOneOf as f6, type InputField_Boolean as f7, type InputField_BooleanComponentTypeOptionsOneOf as f8, type InputField_Array as f9, type NumberType as fA, type BooleanType as fB, type ArrayType as fC, type ObjectType as fD, type PropertiesType as fE, type PropertiesTypePropertiesTypeOptionsOneOf as fF, type ArrayItems as fG, type ArrayItemsItemTypeOptionsOneOf as fH, type Repeater as fI, type FormLayout as fJ, type BreakPoint as fK, type ItemLayout as fL, type ItemLayoutItemOneOf as fM, type Group as fN, type Margin as fO, type Section as fP, type FormFieldContactInfo as fQ, type FormFieldContactInfoAdditionalInfoOneOf as fR, type EmailInfo as fS, type PhoneInfo as fT, type AddressInfo as fU, type CustomFieldInfo as fV, type SubscriptionInfo as fW, type _String as fX, type _StringComponentTypeOptionsOneOf as fY, type _Number as fZ, type _NumberComponentTypeOptionsOneOf as f_, type InputField_ArrayComponentTypeOptionsOneOf as fa, type InputField_Object as fb, type InputField_ObjectValidationOneOf as fc, type InputFieldWixFile as fd, type InputFieldWixFileComponentTypeOptionsOneOf as fe, type InputFieldPayment as ff, type InputFieldPaymentComponentTypeOptionsOneOf as fg, type InputFieldMultilineAddress as fh, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fi, type InputFieldScheduling as fj, type InputFieldSchedulingComponentTypeOptionsOneOf as fk, type FormFieldV2InputField as fl, type FormFieldV2InputFieldInputTypeOptionsOneOf as fm, type DisplayField as fn, type DisplayFieldDisplayFieldTypeOptionsOneOf as fo, type V4RichContentOptions as fp, type V4PageNavigationOptions as fq, type Field as fr, type FieldFieldTypeOptionsOneOf as fs, type InputField as ft, type InputFieldInputTypeOptionsOneOf as fu, type StringType as fv, type StringTypeFormatOptionsOneOf as fw, type DateTimeConstraints as fx, type PhoneConstraints as fy, type ValidationMessages as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionResponse as g$, type _BooleanComponentTypeOptionsOneOf as g0, type _Array as g1, type _ArrayComponentTypeOptionsOneOf as g2, type _Object as g3, type WixFile as g4, type WixFileComponentTypeOptionsOneOf as g5, type Payment as g6, type PaymentComponentTypeOptionsOneOf as g7, type Scheduling as g8, type SchedulingComponentTypeOptionsOneOf as g9, type FieldOverride as gA, type FieldOverridePropertyTypeOptionsOneOf as gB, type ConditionNode as gC, type ConditionNodeNodeOneOf as gD, type AndCondition as gE, type OrCondition as gF, type Condition as gG, type RuleFormOverride as gH, type RuleFormOverrideEntityTypeOptionsOneOf as gI, type CreateCheckoutFromSubmissionResponse as gJ, type Checkout as gK, type IsFormSubmittableRequest as gL, type IsFormSubmittableResponse as gM, type DomainEvent as gN, type DomainEventBodyOneOf as gO, type EntityCreatedEvent as gP, type RestoreInfo as gQ, type EntityUpdatedEvent as gR, type EntityDeletedEvent as gS, type ActionEvent as gT, type Empty as gU, type MessageEnvelope as gV, type IdentificationData as gW, type IdentificationDataIdOneOf as gX, type UpsertContactFromSubmissionRequest as gY, type SubmitContactResponse as gZ, type CreateSubmissionRequest as g_, type Address as ga, type AddressComponentTypeOptionsOneOf as gb, type ObjectArray as gc, type ObjectArrayComponentTypeOptionsOneOf as gd, type FieldsDisplayField as ge, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as gf, type RichContentOptions as gg, type PageNavigationOptions as gh, type Step as gi, type FormRule as gj, type FormOverride as gk, type FormProperties as gl, type PostSubmissionTriggers as gm, type UpsertContact as gn, type NestedForm as go, type LimitationRule as gp, type RequiredIndicatorProperties as gq, type SubmitSettings as gr, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gs, type ThankYouMessageOptions as gt, type RedirectOptions as gu, type FieldGroup as gv, type Rule as gw, type RequiredOptions as gx, type HiddenOptions as gy, type AllowedValuesOptions as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ListFormattedSubmissionsResponse as h$, type SubmissionValidationErrorsDetails as h0, type ValidationError as h1, type CreateSubmissionForMigrationRequest as h2, type CreateSubmissionForMigrationResponse as h3, type CreateSubmissionBySubmitterRequest as h4, type CreateSubmissionBySubmitterResponse as h5, type BulkCreateSubmissionBySubmitterRequest as h6, type BulkCreateSubmissionBySubmitterData as h7, type BulkCreateSubmissionBySubmitterResponse as h8, type BulkSubmissionResult as h9, type Sorting as hA, type SearchSubmissionsByNamespaceRequest as hB, type CursorSearch as hC, type CursorSearchPagingMethodOneOf as hD, type SearchDetails as hE, type SearchSubmissionsByNamespaceForExportRequest as hF, type SearchSubmissionsByNamespaceForExportResponse as hG, type QuerySubmissionsByNamespaceRequest as hH, type QuerySubmissionsByNamespaceResponse as hI, type QuerySubmissionsByNamespaceForExportRequest as hJ, type QuerySubmissionsByNamespaceForExportResponse as hK, type CountSubmissionsByFilterRequest as hL, type FormSubmissionsCount as hM, type CountSubmissionsRequest as hN, type CountDeletedSubmissionsRequest as hO, type FormDeletedSubmissionsCount as hP, type GetMediaUploadURLRequest as hQ, type BulkMarkSubmissionsAsSeenRequest as hR, type GetSubmissionDownloadUrlRequest as hS, type SubmissionDocument as hT, type SubmissionDocumentDocumentOneOf as hU, type DocumentReady as hV, type DownloadSubmissionRequest as hW, type HeadersEntry as hX, type GetFormattedSubmissionRequest as hY, type FormattedSubmission as hZ, type ListFormattedSubmissionsRequest as h_, type ItemMetadata as ha, type ApplicationError as hb, type BulkActionMetadata as hc, type GetSubmissionRequest as hd, type GetSubmissionResponse as he, type GetSubmissionByCheckoutIdRequest as hf, type GetSubmissionByCheckoutIdResponse as hg, type UpdateSubmissionRequest as hh, type UpdateSubmissionResponse as hi, type ConfirmSubmissionRequest as hj, type DeleteSubmissionRequest as hk, type DeleteSubmissionResponse as hl, type BulkDeleteSubmissionRequest as hm, type BulkDeleteSubmissionResult as hn, type RestoreSubmissionFromTrashBinRequest as ho, type RemoveSubmissionFromTrashBinRequest as hp, type RemoveSubmissionFromTrashBinResponse as hq, type BulkRemoveSubmissionFromTrashBinRequest as hr, type BulkRemoveSubmissionFromTrashBinResult as hs, type ListDeletedSubmissionsRequest as ht, type CursorPaging as hu, type CursorPagingMetadata as hv, type Cursors as hw, type GetDeletedSubmissionRequest as hx, type QuerySubmissionRequest as hy, type CursorQueryPagingMethodOneOf as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type DirectionWithLiterals as i$, type FormattedFormSubmission as i0, type UpdateExtendedFieldsRequest as i1, type BulkUpdateFormSubmissionTagsRequest as i2, type BulkUpdateFormSubmissionTagsResponse as i3, type BulkUpdateFormSubmissionTagsResult as i4, type BulkUpdateFormSubmissionTagsByFilterRequest as i5, type BulkUpdateFormSubmissionTagsByFilterResponse as i6, type ValidateFormSubmissionRequest as i7, type FieldViolation as i8, type FieldViolationErrorDataOneOf as i9, type WidthWithLiterals as iA, type DividerDataAlignmentWithLiterals as iB, type ViewModeWithLiterals as iC, type LayoutTypeWithLiterals as iD, type OrientationWithLiterals as iE, type CropWithLiterals as iF, type ThumbnailsAlignmentWithLiterals as iG, type GIFTypeWithLiterals as iH, type SourceWithLiterals as iI, type StylesPositionWithLiterals as iJ, type MapTypeWithLiterals as iK, type ViewRoleWithLiterals as iL, type VoteRoleWithLiterals as iM, type PollLayoutTypeWithLiterals as iN, type PollLayoutDirectionWithLiterals as iO, type BackgroundTypeWithLiterals as iP, type DecorationTypeWithLiterals as iQ, type FontTypeWithLiterals as iR, type PositionWithLiterals as iS, type AspectRatioWithLiterals as iT, type ResizingWithLiterals as iU, type PlacementWithLiterals as iV, type CardStylesTypeWithLiterals as iW, type CardStylesAlignmentWithLiterals as iX, type LayoutWithLiterals as iY, type AppTypeWithLiterals as iZ, type InitialExpandedItemsWithLiterals as i_, type SubmissionValidationErrors as ia, type SubmissionValidationError as ib, type SubmissionValidationErrorErrorMessageOneOf as ic, type BaseEventMetadata as id, type EventMetadata as ie, type FormSubmissionSearchSpec as ig, type SubmissionsQueryResult as ih, type BulkUpdateFormSubmissionTagsOptions as ii, type BulkUpdateFormSubmissionTagsByFilterOptions as ij, type SubmissionStatusWithLiterals as ik, type OptInLevelWithLiterals as il, type StringTypeFormatEnumFormatWithLiterals as im, type ValidationFormatWithLiterals as io, type ProductTypeWithLiterals as ip, type PriceTypeWithLiterals as iq, type InputFieldStringTypeFormatEnumFormatWithLiterals as ir, type InputFieldStringComponentTypeWithLiterals as is, type NodeTypeWithLiterals as it, type WidthTypeWithLiterals as iu, type PluginContainerDataAlignmentWithLiterals as iv, type ButtonDataTypeWithLiterals as iw, type LinkTargetWithLiterals as ix, type TextAlignmentWithLiterals as iy, type LineStyleWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ErrorTypeWithLiterals as j$, type VerticalAlignmentWithLiterals as j0, type NullValueWithLiterals as j1, type ScalingWithLiterals as j2, type LayoutDataImagePositionWithLiterals as j3, type VerticalAlignmentAlignmentWithLiterals as j4, type ResponsivenessBehaviourWithLiterals as j5, type ImagePositionWithLiterals as j6, type AlignmentWithLiterals as j7, type ImageFitWithLiterals as j8, type NumberOfColumnsWithLiterals as j9, type ItemTypeWithLiterals as jA, type PropertiesTypeEnumWithLiterals as jB, type ArrayComponentTypeWithLiterals as jC, type WixFileComponentTypeWithLiterals as jD, type PaymentComponentTypeWithLiterals as jE, type ComponentTypeWithLiterals as jF, type ObjectArrayComponentTypeWithLiterals as jG, type SchedulingComponentTypeWithLiterals as jH, type InputTypeWithLiterals as jI, type EmailInfoTagWithLiterals as jJ, type PhoneInfoTagWithLiterals as jK, type TagWithLiterals as jL, type ConfirmationLevelWithLiterals as jM, type ContactFieldWithLiterals as jN, type DisplayFieldDisplayFieldTypeWithLiterals as jO, type OverrideEntityTypeWithLiterals as jP, type KindWithLiterals as jQ, type SpamFilterProtectionLevelWithLiterals as jR, type RequiredIndicatorWithLiterals as jS, type RequiredIndicatorPlacementWithLiterals as jT, type TargetWithLiterals as jU, type SubmitSuccessActionWithLiterals as jV, type ChangeablePropertyWithLiterals as jW, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jX, type OperatorWithLiterals as jY, type WebhookIdentityTypeWithLiterals as jZ, type IdentityTypeWithLiterals as j_, type FirstDayOfWeekWithLiterals as ja, type InputFieldNumberComponentTypeWithLiterals as jb, type InputFieldBooleanComponentTypeWithLiterals as jc, type ArrayItemsItemTypeWithLiterals as jd, type PropertiesTypePropertiesTypeEnumWithLiterals as je, type InputFieldArrayComponentTypeWithLiterals as jf, type InputFieldWixFileComponentTypeWithLiterals as jg, type UploadFileFormatWithLiterals as jh, type InputFieldPaymentComponentTypeWithLiterals as ji, type InputFieldSchedulingComponentTypeWithLiterals as jj, type FormatWithLiterals as jk, type MultilineAddressComponentTypeWithLiterals as jl, type TypeWithLiterals as jm, type InputFieldInputTypeWithLiterals as jn, type FormFieldContactInfoEmailInfoTagWithLiterals as jo, type FormFieldContactInfoPhoneInfoTagWithLiterals as jp, type AddressInfoTagWithLiterals as jq, type SubscriptionInfoOptInLevelWithLiterals as jr, type FormFieldContactInfoContactFieldWithLiterals as js, type FormFieldV2FieldTypeWithLiterals as jt, type DisplayFieldTypeWithLiterals as ju, type FieldTypeWithLiterals as jv, type FormatEnumFormatWithLiterals as jw, type StringComponentTypeWithLiterals as jx, type NumberComponentTypeWithLiterals as jy, type BooleanComponentTypeWithLiterals as jz, type CursorQuery as k, type SortOrderWithLiterals as k0, type ModeWithLiterals as k1, type StatusWithLiterals as k2, type SubmissionErrorTypeWithLiterals as k3, type CommonSearchWithEntityContext as k4, onSubmissionCreated as k5, onSubmissionDeleted as k6, onSubmissionRemovedSubmissionFromTrash as k7, onSubmissionStatusUpdated as k8, onSubmissionContactMapped as k9, onSubmissionContactMappingSkipped as ka, onSubmissionUpdated as kb, upsertContactFromSubmission as kc, createSubmission as kd, getSubmission as ke, updateSubmission as kf, confirmSubmission as kg, deleteSubmission as kh, bulkDeleteSubmission as ki, restoreSubmissionFromTrashBin as kj, removeSubmissionFromTrashBin as kk, bulkRemoveSubmissionFromTrashBin as kl, listDeletedSubmissions as km, getDeletedSubmission as kn, querySubmission as ko, querySubmissionsByNamespace as kp, countSubmissionsByFilter as kq, countSubmissions as kr, countDeletedSubmissions as ks, getMediaUploadUrl as kt, bulkMarkSubmissionsAsSeen as ku, getSubmissionDownloadUrl as kv, downloadSubmission as kw, getFormattedSubmission as kx, updateExtendedFields as ky, validateFormSubmission as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type BulkMarkSubmissionsAsSeenResponse as w, type GetSubmissionDownloadUrlResponse as x, type RawHttpResponse as y, type GetFormattedSubmissionResponse 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 QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, E as ValidateFormSubmissionResponse, H as SubmissionCreatedEnvelope, I as SubmissionDeletedEnvelope, J as SubmissionRemovedSubmissionFromTrashEnvelope, K as SubmissionStatusUpdatedEnvelope, M as SubmissionContactMappedEnvelope, N as SubmissionContactMappingSkippedEnvelope, O as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-CJRPTs5G.js';
3
- export { gS as ActionEvent, g9 as Address, ga as AddressComponentTypeOptionsOneOf, fT as AddressInfo, aZ as AddressInfoTag, jq as AddressInfoTagWithLiterals, eT as AddressLine2, aG as Alignment, j7 as AlignmentWithLiterals, gy as AllowedValuesOptions, dx as AnchorData, gD as AndCondition, dD as AppEmbedData, dE as AppEmbedDataAppDataOneOf, aw as AppType, iZ as AppTypeWithLiterals, ha as ApplicationError, eL as Appointment, eM as AppointmentFormatInfoOneOf, b9 as ArrayComponentType, jC as ArrayComponentTypeWithLiterals, c8 as ArrayErrorMessages, fF as ArrayItems, aM as ArrayItemsItemType, fG as ArrayItemsItemTypeOptionsOneOf, jd as ArrayItemsItemTypeWithLiterals, fB as ArrayType, c6 as ArrayTypeArrayItems, c7 as ArrayTypeArrayItemsItemsOneOf, aq as AspectRatio, iT as AspectRatioWithLiterals, dX as AudioData, dm as Background, dn as BackgroundBackgroundOneOf, e1 as BackgroundImage, am as BackgroundType, iP as BackgroundTypeWithLiterals, id as BaseEventMetadata, d_ as BlockquoteData, dF as BookingData, b6 as BooleanComponentType, jz as BooleanComponentTypeWithLiterals, c0 as BooleanErrorMessages, fA as BooleanType, cC as Border, dV as BorderColors, fJ as BreakPoint, hb as BulkActionMetadata, h6 as BulkCreateSubmissionBySubmitterData, h5 as BulkCreateSubmissionBySubmitterRequest, h7 as BulkCreateSubmissionBySubmitterResponse, hl as BulkDeleteSubmissionRequest, hm as BulkDeleteSubmissionResult, hQ as BulkMarkSubmissionsAsSeenRequest, hR as BulkMarkSubmissionsAsSeenResponse, hq as BulkRemoveSubmissionFromTrashBinRequest, hr as BulkRemoveSubmissionFromTrashBinResult, h8 as BulkSubmissionResult, ij as BulkUpdateFormSubmissionTagsByFilterOptions, i5 as BulkUpdateFormSubmissionTagsByFilterRequest, i6 as BulkUpdateFormSubmissionTagsByFilterResponse, ii as BulkUpdateFormSubmissionTagsOptions, i2 as BulkUpdateFormSubmissionTagsRequest, i3 as BulkUpdateFormSubmissionTagsResponse, i4 as BulkUpdateFormSubmissionTagsResult, dZ as BulletedListData, cB as ButtonData, a3 as ButtonDataType, iw as ButtonDataTypeWithLiterals, dH as ButtonStyles, d$ as CaptionData, dK as CardStyles, au as CardStylesAlignment, iX as CardStylesAlignmentWithLiterals, at as CardStylesType, iW as CardStylesTypeWithLiterals, dU as CellStyle, bt as ChangeableProperty, jW as ChangeablePropertyWithLiterals, ep as Checkbox, ex as CheckboxGroup, gJ as Checkout, cN as CodeBlockData, dQ as CollapsibleListData, dy as ColorData, cD as Colors, k4 as CommonSearchWithEntityContext, bc as ComponentType, jF as ComponentTypeWithLiterals, gF as Condition, gB as ConditionNode, gC as ConditionNodeNodeOneOf, hi as ConfirmSubmissionRequest, bj as ConfirmationLevel, jM as ConfirmationLevelWithLiterals, bk as ContactField, jN as ContactFieldWithLiterals, hN as CountDeletedSubmissionsRequest, hK as CountSubmissionsByFilterRequest, hM as CountSubmissionsRequest, bO as CreateCheckoutFromSubmissionRequest, bP as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gI as CreateCheckoutFromSubmissionResponse, h3 as CreateSubmissionBySubmitterRequest, h4 as CreateSubmissionBySubmitterResponse, h1 as CreateSubmissionForMigrationRequest, h2 as CreateSubmissionForMigrationResponse, gZ as CreateSubmissionRequest, g_ as CreateSubmissionResponse, ac as Crop, iF as CropWithLiterals, ht as CursorPaging, hu as CursorPagingMetadata, hy as CursorQueryPagingMethodOneOf, hB as CursorSearch, hC as CursorSearchPagingMethodOneOf, hv as Cursors, fU as CustomFieldInfo, eb as CustomOption, co as DataExtensionsDetails, eg as DateInput, ei as DatePicker, fw as DateTimeConstraints, ee as DateTimeInput, dv as Decoration, dw as DecorationDataOneOf, an as DecorationType, iQ as DecorationTypeWithLiterals, eU as DefaultCountryConfig, eV as DefaultCountryConfigOptionsOneOf, hj as DeleteSubmissionRequest, hk as DeleteSubmissionResponse, dt as Design, dS as Dimensions, ay as Direction, i$ as DirectionWithLiterals, fm as DisplayField, bl as DisplayFieldDisplayFieldType, fn as DisplayFieldDisplayFieldTypeOptionsOneOf, jO as DisplayFieldDisplayFieldTypeWithLiterals, b1 as DisplayFieldType, ju as DisplayFieldTypeWithLiterals, cP as DividerData, a8 as DividerDataAlignment, iB as DividerDataAlignmentWithLiterals, hV as DocumentReady, e4 as DocumentStyle, gM as DomainEvent, gN as DomainEventBodyOneOf, eH as DonationInput, eI as DonationInputOption, hW as DownloadSubmissionRequest, ec as Dropdown, ed as DropdownOption, ce as DynamicPriceOptions, fR as EmailInfo, bg as EmailInfoTag, jJ as EmailInfoTagWithLiterals, dO as EmbedData, gT as Empty, gO as EntityCreatedEvent, gR as EntityDeletedEvent, gQ as EntityUpdatedEvent, by as ErrorType, j$ as ErrorTypeWithLiterals, dG as EventData, ie as EventMetadata, bF as ExtendedFields, fq as Field, fr as FieldFieldTypeOptionsOneOf, gu as FieldGroup, gz as FieldOverride, gA as FieldOverridePropertyTypeOptionsOneOf, ci as FieldOverrides, b2 as FieldType, jv as FieldTypeWithLiterals, i8 as FieldViolation, i9 as FieldViolationErrorDataOneOf, gd as FieldsDisplayField, ge as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cj as FieldsOverrides, eW as FieldsSettings, cQ as FileData, cR as FileSource, cS as FileSourceDataOneOf, eC as FileType, eD as FileUpload, aJ as FirstDayOfWeek, ja as FirstDayOfWeekWithLiterals, eK as FixedPayment, cd as FixedPriceOptions, dB as FontSizeData, ao as FontType, iR as FontTypeWithLiterals, bQ as Form, hO as FormDeletedSubmissionsCount, bR as FormField, c1 as FormFieldArrayType, b$ as FormFieldBooleanType, fP as FormFieldContactInfo, fQ as FormFieldContactInfoAdditionalInfoOneOf, e$ as FormFieldContactInfoAddressInfo, a$ as FormFieldContactInfoContactField, js as FormFieldContactInfoContactFieldWithLiterals, f0 as FormFieldContactInfoCustomFieldInfo, eZ as FormFieldContactInfoEmailInfo, aX as FormFieldContactInfoEmailInfoTag, jo as FormFieldContactInfoEmailInfoTagWithLiterals, e_ as FormFieldContactInfoPhoneInfo, aY as FormFieldContactInfoPhoneInfoTag, jp as FormFieldContactInfoPhoneInfoTagWithLiterals, f1 as FormFieldContactInfoSubscriptionInfo, bY as FormFieldNumberType, c2 as FormFieldObjectType, bS as FormFieldStringType, bT as FormFieldStringTypeFormatOptionsOneOf, cq as FormFieldV2, b0 as FormFieldV2FieldType, cr as FormFieldV2FieldTypeOptionsOneOf, jt as FormFieldV2FieldTypeWithLiterals, fk as FormFieldV2InputField, fl as FormFieldV2InputFieldInputTypeOptionsOneOf, fI as FormLayout, gj as FormOverride, gk as FormProperties, gi as FormRule, ig as FormSubmissionSearchSpec, bJ as FormSubmissionStatusUpdatedEvent, hL as FormSubmissionsCount, aT as Format, b3 as FormatEnumFormat, jw as FormatEnumFormatWithLiterals, jk as FormatWithLiterals, i0 as FormattedFormSubmission, hZ as FormattedSubmission, d3 as GIF, d2 as GIFData, ae as GIFType, iH as GIFTypeWithLiterals, cU as GalleryData, c_ as GalleryOptions, c$ as GalleryOptionsLayout, hw as GetDeletedSubmissionRequest, hY as GetFormattedSubmissionRequest, hP as GetMediaUploadURLRequest, he as GetSubmissionByCheckoutIdRequest, hf as GetSubmissionByCheckoutIdResponse, hS as GetSubmissionDownloadUrlRequest, hc as GetSubmissionRequest, hd as GetSubmissionResponse, dl as Gradient, fM as Group, d5 as HTMLData, d6 as HTMLDataDataOneOf, hX as HeadersEntry, d4 as HeadingData, cI as Height, gx as HiddenOptions, gV as IdentificationData, gW as IdentificationDataIdOneOf, bx as IdentityType, j_ as IdentityTypeWithLiterals, cW as Image, d7 as ImageData, d9 as ImageDataStyles, aH as ImageFit, j8 as ImageFitWithLiterals, aF as ImagePosition, j6 as ImagePositionWithLiterals, dI as ImageStyles, eP as InPersonOptions, ax as InitialExpandedItems, i_ as InitialExpandedItemsWithLiterals, fs as InputField, aO as InputFieldArrayComponentType, jf as InputFieldArrayComponentTypeWithLiterals, eq as InputFieldArrayType, ev as InputFieldArrayTypeArrayItems, ew as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aL as InputFieldBooleanComponentType, jc as InputFieldBooleanComponentTypeWithLiterals, eo as InputFieldBooleanType, aW as InputFieldInputType, ft as InputFieldInputTypeOptionsOneOf, jn as InputFieldInputTypeWithLiterals, er as InputFieldIntegerType, fg as InputFieldMultilineAddress, fh as InputFieldMultilineAddressComponentTypeOptionsOneOf, aK as InputFieldNumberComponentType, jb as InputFieldNumberComponentTypeWithLiterals, el as InputFieldNumberType, es as InputFieldObjectType, et as InputFieldObjectTypePropertiesType, eu as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, fe as InputFieldPayment, aR as InputFieldPaymentComponentType, ff as InputFieldPaymentComponentTypeOptionsOneOf, ji as InputFieldPaymentComponentTypeWithLiterals, fi as InputFieldScheduling, aS as InputFieldSchedulingComponentType, fj as InputFieldSchedulingComponentTypeOptionsOneOf, jj as InputFieldSchedulingComponentTypeWithLiterals, $ as InputFieldStringComponentType, is as InputFieldStringComponentTypeWithLiterals, cs as InputFieldStringType, cu as InputFieldStringTypeDateTimeConstraints, _ as InputFieldStringTypeFormatEnumFormat, ir as InputFieldStringTypeFormatEnumFormatWithLiterals, ct as InputFieldStringTypeFormatOptionsOneOf, cv as InputFieldStringTypePhoneConstraints, fc as InputFieldWixFile, aP as InputFieldWixFileComponentType, fd as InputFieldWixFileComponentTypeOptionsOneOf, jg as InputFieldWixFileComponentTypeWithLiterals, f8 as InputField_Array, f9 as InputField_ArrayComponentTypeOptionsOneOf, f6 as InputField_Boolean, f7 as InputField_BooleanComponentTypeOptionsOneOf, f4 as InputField_Number, f5 as InputField_NumberComponentTypeOptionsOneOf, fa as InputField_Object, fb as InputField_ObjectValidationOneOf, f2 as InputField_String, f3 as InputField_StringComponentTypeOptionsOneOf, bf as InputType, jI as InputTypeWithLiterals, b_ as IntegerType, gK as IsFormSubmittableRequest, gL as IsFormSubmittableResponse, cY as Item, cZ as ItemDataOneOf, fK as ItemLayout, fL as ItemLayoutItemOneOf, h9 as ItemMetadata, d0 as ItemStyle, b7 as ItemType, jA as ItemTypeWithLiterals, bn as Kind, jQ as KindWithLiterals, av as Layout, e2 as LayoutCellData, e0 as LayoutData, aC as LayoutDataImagePosition, j3 as LayoutDataImagePositionWithLiterals, aa as LayoutType, iD as LayoutTypeWithLiterals, iY as LayoutWithLiterals, go as LimitationRule, a6 as LineStyle, iz as LineStyleWithLiterals, cK as Link, dz as LinkData, cL as LinkDataOneOf, da as LinkPreviewData, db as LinkPreviewDataStyles, a4 as LinkTarget, ix as LinkTargetWithLiterals, hs as ListDeletedSubmissionsRequest, h_ as ListFormattedSubmissionsRequest, h$ as ListFormattedSubmissionsResponse, dW as ListValue, eN as Location, eO as LocationLocationInfoOneOf, dc as MapData, dd as MapSettings, ah as MapType, iK as MapTypeWithLiterals, fN as Margin, bM as MarketingSubscriptionDetails, cV as Media, e6 as MediaItem, e7 as MediaItemMediaOneOf, e8 as MediaSettings, dA as MentionData, gU as MessageEnvelope, e3 as Metadata, bA as Mode, k1 as ModeWithLiterals, eS as MultilineAddress, aU as MultilineAddressComponentType, jl as MultilineAddressComponentTypeWithLiterals, ch as MultilineAddressValidation, gn as NestedForm, cl as NestedFormFieldOverrides, cp as NestedFormOverrides, cy as Node, cz as NodeDataOneOf, cA as NodeStyle, a0 as NodeType, it as NodeTypeWithLiterals, aA as NullValue, j1 as NullValueWithLiterals, b5 as NumberComponentType, jy as NumberComponentTypeWithLiterals, bZ as NumberErrorMessages, em as NumberInput, aI as NumberOfColumns, j9 as NumberOfColumnsWithLiterals, fz as NumberType, gb as ObjectArray, bd as ObjectArrayComponentType, gc as ObjectArrayComponentTypeOptionsOneOf, jG as ObjectArrayComponentTypeWithLiterals, ck as ObjectArrayType, c5 as ObjectErrorMessages, fC as ObjectType, c3 as ObjectTypePropertiesType, c4 as ObjectTypePropertiesTypePropertiesTypeOneOf, dP as Oembed, bv as Operator, jY as OperatorWithLiterals, T as OptInLevel, il as OptInLevelWithLiterals, ey as Option, dq as OptionDesign, dk as OptionLayout, gE as OrCondition, bG as OrderDetails, dY as OrderedListData, ab as Orientation, iE as OrientationWithLiterals, bm as OverrideEntityType, bu as OverrideEntityTypeEnumOverrideEntityType, jX as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jP as OverrideEntityTypeWithLiterals, cT as PDFSettings, gg as PageNavigationOptions, de as ParagraphData, g5 as Payment, bb as PaymentComponentType, g6 as PaymentComponentTypeOptionsOneOf, jE as PaymentComponentTypeWithLiterals, eJ as PaymentInput, cb as PaymentType, dg as Permissions, fx as PhoneConstraints, fS as PhoneInfo, bh as PhoneInfoTag, jK as PhoneInfoTagWithLiterals, ef as PhoneInput, eR as PhoneOptions, as as Placement, iV as PlacementWithLiterals, dN as PlaybackOptions, cE as PluginContainerData, a2 as PluginContainerDataAlignment, iv as PluginContainerDataAlignmentWithLiterals, cF as PluginContainerDataWidth, cG as PluginContainerDataWidthDataOneOf, dr as Poll, df as PollData, ds as PollDataLayout, dp as PollDesign, dj as PollLayout, al as PollLayoutDirection, iO as PollLayoutDirectionWithLiterals, ak as PollLayoutType, iN as PollLayoutTypeWithLiterals, dh as PollOption, ap as Position, iS as PositionWithLiterals, gl as PostSubmissionTriggers, c9 as PredefinedValidation, ca as PredefinedValidationFormatOptionsOneOf, Z as PriceType, iq as PriceTypeWithLiterals, dL as PricingData, cf as Product, eF as ProductCheckboxGroup, eG as ProductCheckboxGroupOption, cg as ProductPriceOptionsOneOf, Y as ProductType, ip as ProductTypeWithLiterals, fD as PropertiesType, b8 as PropertiesTypeEnum, jB as PropertiesTypeEnumWithLiterals, aN as PropertiesTypePropertiesTypeEnum, je as PropertiesTypePropertiesTypeEnumWithLiterals, fE as PropertiesTypePropertiesTypeOptionsOneOf, bH as PublicTags, cc as QuantityLimit, hx as QuerySubmissionRequest, hI as QuerySubmissionsByNamespaceForExportRequest, hJ as QuerySubmissionsByNamespaceForExportResponse, hG as QuerySubmissionsByNamespaceRequest, hH as QuerySubmissionsByNamespaceResponse, e9 as RadioGroup, ea as RadioGroupOption, en as RatingInput, gt as RedirectOptions, cM as Rel, ho as RemoveSubmissionFromTrashBinRequest, hp as RemoveSubmissionFromTrashBinResponse, bK as RemovedSubmissionFromTrash, fH as Repeater, bp as RequiredIndicator, bq as RequiredIndicatorPlacement, jT as RequiredIndicatorPlacementWithLiterals, gp as RequiredIndicatorProperties, jS as RequiredIndicatorWithLiterals, gw as RequiredOptions, ar as Resizing, iU as ResizingWithLiterals, aE as ResponsivenessBehaviour, j5 as ResponsivenessBehaviourWithLiterals, gP as RestoreInfo, hn as RestoreSubmissionFromTrashBinRequest, dJ as RibbonStyles, cx as RichContent, gf as RichContentOptions, gv as Rule, gG as RuleFormOverride, gH as RuleFormOverrideEntityTypeOptionsOneOf, aB as Scaling, j2 as ScalingWithLiterals, g7 as Scheduling, be as SchedulingComponentType, g8 as SchedulingComponentTypeOptionsOneOf, jH as SchedulingComponentTypeWithLiterals, hD as SearchDetails, hE as SearchSubmissionsByNamespaceForExportRequest, hF as SearchSubmissionsByNamespaceForExportResponse, hA as SearchSubmissionsByNamespaceRequest, fO as Section, ek as ServiceOption, eB as ServicesCheckboxGroup, ej as ServicesDropdown, di as Settings, eE as Signature, bz as SortOrder, k0 as SortOrderWithLiterals, hz as Sorting, af as Source, iI as SourceWithLiterals, bo as SpamFilterProtectionLevel, jR as SpamFilterProtectionLevelWithLiterals, cH as Spoiler, dC as SpoilerData, bB as Status, k2 as StatusWithLiterals, gh as Step, b4 as StringComponentType, jx as StringComponentTypeWithLiterals, bU as StringErrorMessages, fu as StringType, bV as StringTypeDateTimeConstraints, W as StringTypeFormatEnumFormat, im as StringTypeFormatEnumFormatWithLiterals, fv as StringTypeFormatOptionsOneOf, bW as StringTypePhoneConstraints, bX as StringTypeValidationMessages, cJ as Styles, d8 as StylesBorder, ag as StylesPosition, iJ as StylesPositionWithLiterals, bL as SubmissionContactMapped, bN as SubmissionContactMappingSkipped, hT as SubmissionDocument, hU as SubmissionDocumentDocumentOneOf, bC as SubmissionErrorType, k3 as SubmissionErrorTypeWithLiterals, P as SubmissionStatus, ik as SubmissionStatusWithLiterals, ib as SubmissionValidationError, ic as SubmissionValidationErrorErrorMessageOneOf, ia as SubmissionValidationErrors, g$ as SubmissionValidationErrorsDetails, ih as SubmissionsQueryResult, gY as SubmitContactResponse, gq as SubmitSettings, gr as SubmitSettingsSubmitSuccessActionOptionsOneOf, bs as SubmitSuccessAction, jV as SubmitSuccessActionWithLiterals, bD as Submitter, bE as SubmitterSubmitterOneOf, fV as SubscriptionInfo, a_ as SubscriptionInfoOptInLevel, jr as SubscriptionInfoOptInLevelWithLiterals, dT as TableCellData, dR as TableData, bi as Tag, bI as TagList, jL as TagWithLiterals, ez as Tags, eA as TagsOption, br as Target, jU as TargetWithLiterals, a5 as TextAlignment, iy as TextAlignmentWithLiterals, du as TextData, cw as TextInput, e5 as TextNodeStyle, cO as TextStyle, gs as ThankYouMessageOptions, d1 as Thumbnails, ad as ThumbnailsAlignment, iG as ThumbnailsAlignmentWithLiterals, eh as TimeInput, aV as Type, jm as TypeWithLiterals, i1 as UpdateExtendedFieldsRequest, hg as UpdateSubmissionRequest, hh as UpdateSubmissionResponse, aQ as UploadFileFormat, jh as UploadFileFormatWithLiterals, gm as UpsertContact, gX as UpsertContactFromSubmissionRequest, eX as V4FormFieldContactInfo, eY as V4FormFieldContactInfoAdditionalInfoOneOf, fp as V4PageNavigationOptions, fo as V4RichContentOptions, i7 as ValidateFormSubmissionRequest, cm as Validation, h0 as ValidationError, X as ValidationFormat, io as ValidationFormatWithLiterals, fy as ValidationMessages, cn as ValidationValidationOneOf, az as VerticalAlignment, aD as VerticalAlignmentAlignment, j4 as VerticalAlignmentAlignmentWithLiterals, j0 as VerticalAlignmentWithLiterals, cX as Video, eQ as VideoConferenceOptions, dM as VideoData, a9 as ViewMode, iC as ViewModeWithLiterals, ai as ViewRole, iL as ViewRoleWithLiterals, aj as VoteRole, iM as VoteRoleWithLiterals, bw as WebhookIdentityType, jZ as WebhookIdentityTypeWithLiterals, a7 as Width, a1 as WidthType, iu as WidthTypeWithLiterals, iA as WidthWithLiterals, g3 as WixFile, ba as WixFileComponentType, g4 as WixFileComponentTypeOptionsOneOf, jD as WixFileComponentTypeWithLiterals, g0 as _Array, g1 as _ArrayComponentTypeOptionsOneOf, f_ as _Boolean, f$ as _BooleanComponentTypeOptionsOneOf, fY as _Number, fZ as _NumberComponentTypeOptionsOneOf, g2 as _Object, fW as _String, fX as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-CJRPTs5G.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 QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as BulkMarkSubmissionsAsSeenResponse, x as GetSubmissionDownloadUrlResponse, y as RawHttpResponse, z as GetFormattedSubmissionResponse, A as UpdateExtendedFieldsOptions, E as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, H as ValidateFormSubmissionResponse, I as SubmissionCreatedEnvelope, J as SubmissionDeletedEnvelope, K as SubmissionRemovedSubmissionFromTrashEnvelope, M as SubmissionStatusUpdatedEnvelope, N as SubmissionContactMappedEnvelope, O as SubmissionContactMappingSkippedEnvelope, P as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-CosZdolZ.js';
3
+ export { gT as ActionEvent, ga as Address, gb as AddressComponentTypeOptionsOneOf, fU as AddressInfo, a_ as AddressInfoTag, jq as AddressInfoTagWithLiterals, eU as AddressLine2, aH as Alignment, j7 as AlignmentWithLiterals, gz as AllowedValuesOptions, dy as AnchorData, gE as AndCondition, dE as AppEmbedData, dF as AppEmbedDataAppDataOneOf, ax as AppType, iZ as AppTypeWithLiterals, hb as ApplicationError, eM as Appointment, eN as AppointmentFormatInfoOneOf, ba as ArrayComponentType, jC as ArrayComponentTypeWithLiterals, c9 as ArrayErrorMessages, fG as ArrayItems, aN as ArrayItemsItemType, fH as ArrayItemsItemTypeOptionsOneOf, jd as ArrayItemsItemTypeWithLiterals, fC as ArrayType, c7 as ArrayTypeArrayItems, c8 as ArrayTypeArrayItemsItemsOneOf, ar as AspectRatio, iT as AspectRatioWithLiterals, dY as AudioData, dn as Background, dp as BackgroundBackgroundOneOf, e2 as BackgroundImage, an as BackgroundType, iP as BackgroundTypeWithLiterals, id as BaseEventMetadata, d$ as BlockquoteData, dG as BookingData, b7 as BooleanComponentType, jz as BooleanComponentTypeWithLiterals, c1 as BooleanErrorMessages, fB as BooleanType, cD as Border, dW as BorderColors, fK as BreakPoint, hc as BulkActionMetadata, h7 as BulkCreateSubmissionBySubmitterData, h6 as BulkCreateSubmissionBySubmitterRequest, h8 as BulkCreateSubmissionBySubmitterResponse, hm as BulkDeleteSubmissionRequest, hn as BulkDeleteSubmissionResult, hR as BulkMarkSubmissionsAsSeenRequest, hr as BulkRemoveSubmissionFromTrashBinRequest, hs as BulkRemoveSubmissionFromTrashBinResult, h9 as BulkSubmissionResult, ij as BulkUpdateFormSubmissionTagsByFilterOptions, i5 as BulkUpdateFormSubmissionTagsByFilterRequest, i6 as BulkUpdateFormSubmissionTagsByFilterResponse, ii as BulkUpdateFormSubmissionTagsOptions, i2 as BulkUpdateFormSubmissionTagsRequest, i3 as BulkUpdateFormSubmissionTagsResponse, i4 as BulkUpdateFormSubmissionTagsResult, d_ as BulletedListData, cC as ButtonData, a4 as ButtonDataType, iw as ButtonDataTypeWithLiterals, dI as ButtonStyles, e0 as CaptionData, dL as CardStyles, av as CardStylesAlignment, iX as CardStylesAlignmentWithLiterals, au as CardStylesType, iW as CardStylesTypeWithLiterals, dV as CellStyle, bu as ChangeableProperty, jW as ChangeablePropertyWithLiterals, eq as Checkbox, ey as CheckboxGroup, gK as Checkout, cO as CodeBlockData, dR as CollapsibleListData, dz as ColorData, cE as Colors, k4 as CommonSearchWithEntityContext, bd as ComponentType, jF as ComponentTypeWithLiterals, gG as Condition, gC as ConditionNode, gD as ConditionNodeNodeOneOf, hj as ConfirmSubmissionRequest, bk as ConfirmationLevel, jM as ConfirmationLevelWithLiterals, bl as ContactField, jN as ContactFieldWithLiterals, hO as CountDeletedSubmissionsRequest, hL as CountSubmissionsByFilterRequest, hN as CountSubmissionsRequest, bP as CreateCheckoutFromSubmissionRequest, bQ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gJ as CreateCheckoutFromSubmissionResponse, h4 as CreateSubmissionBySubmitterRequest, h5 as CreateSubmissionBySubmitterResponse, h2 as CreateSubmissionForMigrationRequest, h3 as CreateSubmissionForMigrationResponse, g_ as CreateSubmissionRequest, g$ as CreateSubmissionResponse, ad as Crop, iF as CropWithLiterals, hu as CursorPaging, hv as CursorPagingMetadata, hz as CursorQueryPagingMethodOneOf, hC as CursorSearch, hD as CursorSearchPagingMethodOneOf, hw as Cursors, fV as CustomFieldInfo, ec as CustomOption, cp as DataExtensionsDetails, eh as DateInput, ej as DatePicker, fx as DateTimeConstraints, ef as DateTimeInput, dw as Decoration, dx as DecorationDataOneOf, ao as DecorationType, iQ as DecorationTypeWithLiterals, eV as DefaultCountryConfig, eW as DefaultCountryConfigOptionsOneOf, hk as DeleteSubmissionRequest, hl as DeleteSubmissionResponse, du as Design, dT as Dimensions, az as Direction, i$ as DirectionWithLiterals, fn as DisplayField, bm as DisplayFieldDisplayFieldType, fo as DisplayFieldDisplayFieldTypeOptionsOneOf, jO as DisplayFieldDisplayFieldTypeWithLiterals, b2 as DisplayFieldType, ju as DisplayFieldTypeWithLiterals, cQ as DividerData, a9 as DividerDataAlignment, iB as DividerDataAlignmentWithLiterals, hV as DocumentReady, e5 as DocumentStyle, gN as DomainEvent, gO as DomainEventBodyOneOf, eI as DonationInput, eJ as DonationInputOption, hW as DownloadSubmissionRequest, ed as Dropdown, ee as DropdownOption, cf as DynamicPriceOptions, fS as EmailInfo, bh as EmailInfoTag, jJ as EmailInfoTagWithLiterals, dP as EmbedData, gU as Empty, gP as EntityCreatedEvent, gS as EntityDeletedEvent, gR as EntityUpdatedEvent, bz as ErrorType, j$ as ErrorTypeWithLiterals, dH as EventData, ie as EventMetadata, bG as ExtendedFields, fr as Field, fs as FieldFieldTypeOptionsOneOf, gv as FieldGroup, gA as FieldOverride, gB as FieldOverridePropertyTypeOptionsOneOf, cj as FieldOverrides, b3 as FieldType, jv as FieldTypeWithLiterals, i8 as FieldViolation, i9 as FieldViolationErrorDataOneOf, ge as FieldsDisplayField, gf as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, ck as FieldsOverrides, eX as FieldsSettings, cR as FileData, cS as FileSource, cT as FileSourceDataOneOf, eD as FileType, eE as FileUpload, aK as FirstDayOfWeek, ja as FirstDayOfWeekWithLiterals, eL as FixedPayment, ce as FixedPriceOptions, dC as FontSizeData, ap as FontType, iR as FontTypeWithLiterals, bR as Form, hP as FormDeletedSubmissionsCount, bS as FormField, c2 as FormFieldArrayType, c0 as FormFieldBooleanType, fQ as FormFieldContactInfo, fR as FormFieldContactInfoAdditionalInfoOneOf, f0 as FormFieldContactInfoAddressInfo, b0 as FormFieldContactInfoContactField, js as FormFieldContactInfoContactFieldWithLiterals, f1 as FormFieldContactInfoCustomFieldInfo, e_ as FormFieldContactInfoEmailInfo, aY as FormFieldContactInfoEmailInfoTag, jo as FormFieldContactInfoEmailInfoTagWithLiterals, e$ as FormFieldContactInfoPhoneInfo, aZ as FormFieldContactInfoPhoneInfoTag, jp as FormFieldContactInfoPhoneInfoTagWithLiterals, f2 as FormFieldContactInfoSubscriptionInfo, bZ as FormFieldNumberType, c3 as FormFieldObjectType, bT as FormFieldStringType, bU as FormFieldStringTypeFormatOptionsOneOf, cr as FormFieldV2, b1 as FormFieldV2FieldType, cs as FormFieldV2FieldTypeOptionsOneOf, jt as FormFieldV2FieldTypeWithLiterals, fl as FormFieldV2InputField, fm as FormFieldV2InputFieldInputTypeOptionsOneOf, fJ as FormLayout, gk as FormOverride, gl as FormProperties, gj as FormRule, ig as FormSubmissionSearchSpec, bK as FormSubmissionStatusUpdatedEvent, hM as FormSubmissionsCount, aU as Format, b4 as FormatEnumFormat, jw as FormatEnumFormatWithLiterals, jk as FormatWithLiterals, i0 as FormattedFormSubmission, hZ as FormattedSubmission, d4 as GIF, d3 as GIFData, af as GIFType, iH as GIFTypeWithLiterals, cV as GalleryData, c$ as GalleryOptions, d0 as GalleryOptionsLayout, hx as GetDeletedSubmissionRequest, hY as GetFormattedSubmissionRequest, hQ as GetMediaUploadURLRequest, hf as GetSubmissionByCheckoutIdRequest, hg as GetSubmissionByCheckoutIdResponse, hS as GetSubmissionDownloadUrlRequest, hd as GetSubmissionRequest, he as GetSubmissionResponse, dm as Gradient, fN as Group, d6 as HTMLData, d7 as HTMLDataDataOneOf, hX as HeadersEntry, d5 as HeadingData, cJ as Height, gy as HiddenOptions, gW as IdentificationData, gX as IdentificationDataIdOneOf, by as IdentityType, j_ as IdentityTypeWithLiterals, cX as Image, d8 as ImageData, da as ImageDataStyles, aI as ImageFit, j8 as ImageFitWithLiterals, aG as ImagePosition, j6 as ImagePositionWithLiterals, dJ as ImageStyles, eQ as InPersonOptions, ay as InitialExpandedItems, i_ as InitialExpandedItemsWithLiterals, ft as InputField, aP as InputFieldArrayComponentType, jf as InputFieldArrayComponentTypeWithLiterals, er as InputFieldArrayType, ew as InputFieldArrayTypeArrayItems, ex as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aM as InputFieldBooleanComponentType, jc as InputFieldBooleanComponentTypeWithLiterals, ep as InputFieldBooleanType, aX as InputFieldInputType, fu as InputFieldInputTypeOptionsOneOf, jn as InputFieldInputTypeWithLiterals, es as InputFieldIntegerType, fh as InputFieldMultilineAddress, fi as InputFieldMultilineAddressComponentTypeOptionsOneOf, aL as InputFieldNumberComponentType, jb as InputFieldNumberComponentTypeWithLiterals, em as InputFieldNumberType, et as InputFieldObjectType, eu as InputFieldObjectTypePropertiesType, ev as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, ff as InputFieldPayment, aS as InputFieldPaymentComponentType, fg as InputFieldPaymentComponentTypeOptionsOneOf, ji as InputFieldPaymentComponentTypeWithLiterals, fj as InputFieldScheduling, aT as InputFieldSchedulingComponentType, fk as InputFieldSchedulingComponentTypeOptionsOneOf, jj as InputFieldSchedulingComponentTypeWithLiterals, a0 as InputFieldStringComponentType, is as InputFieldStringComponentTypeWithLiterals, ct as InputFieldStringType, cv as InputFieldStringTypeDateTimeConstraints, $ as InputFieldStringTypeFormatEnumFormat, ir as InputFieldStringTypeFormatEnumFormatWithLiterals, cu as InputFieldStringTypeFormatOptionsOneOf, cw as InputFieldStringTypePhoneConstraints, fd as InputFieldWixFile, aQ as InputFieldWixFileComponentType, fe as InputFieldWixFileComponentTypeOptionsOneOf, jg as InputFieldWixFileComponentTypeWithLiterals, f9 as InputField_Array, fa as InputField_ArrayComponentTypeOptionsOneOf, f7 as InputField_Boolean, f8 as InputField_BooleanComponentTypeOptionsOneOf, f5 as InputField_Number, f6 as InputField_NumberComponentTypeOptionsOneOf, fb as InputField_Object, fc as InputField_ObjectValidationOneOf, f3 as InputField_String, f4 as InputField_StringComponentTypeOptionsOneOf, bg as InputType, jI as InputTypeWithLiterals, b$ as IntegerType, gL as IsFormSubmittableRequest, gM as IsFormSubmittableResponse, cZ as Item, c_ as ItemDataOneOf, fL as ItemLayout, fM as ItemLayoutItemOneOf, ha as ItemMetadata, d1 as ItemStyle, b8 as ItemType, jA as ItemTypeWithLiterals, bo as Kind, jQ as KindWithLiterals, aw as Layout, e3 as LayoutCellData, e1 as LayoutData, aD as LayoutDataImagePosition, j3 as LayoutDataImagePositionWithLiterals, ab as LayoutType, iD as LayoutTypeWithLiterals, iY as LayoutWithLiterals, gp as LimitationRule, a7 as LineStyle, iz as LineStyleWithLiterals, cL as Link, dA as LinkData, cM as LinkDataOneOf, db as LinkPreviewData, dc as LinkPreviewDataStyles, a5 as LinkTarget, ix as LinkTargetWithLiterals, ht as ListDeletedSubmissionsRequest, h_ as ListFormattedSubmissionsRequest, h$ as ListFormattedSubmissionsResponse, dX as ListValue, eO as Location, eP as LocationLocationInfoOneOf, dd as MapData, de as MapSettings, ai as MapType, iK as MapTypeWithLiterals, fO as Margin, bN as MarketingSubscriptionDetails, cW as Media, e7 as MediaItem, e8 as MediaItemMediaOneOf, e9 as MediaSettings, dB as MentionData, gV as MessageEnvelope, e4 as Metadata, bB as Mode, k1 as ModeWithLiterals, eT as MultilineAddress, aV as MultilineAddressComponentType, jl as MultilineAddressComponentTypeWithLiterals, ci as MultilineAddressValidation, go as NestedForm, cm as NestedFormFieldOverrides, cq as NestedFormOverrides, cz as Node, cA as NodeDataOneOf, cB as NodeStyle, a1 as NodeType, it as NodeTypeWithLiterals, aB as NullValue, j1 as NullValueWithLiterals, b6 as NumberComponentType, jy as NumberComponentTypeWithLiterals, b_ as NumberErrorMessages, en as NumberInput, aJ as NumberOfColumns, j9 as NumberOfColumnsWithLiterals, fA as NumberType, gc as ObjectArray, be as ObjectArrayComponentType, gd as ObjectArrayComponentTypeOptionsOneOf, jG as ObjectArrayComponentTypeWithLiterals, cl as ObjectArrayType, c6 as ObjectErrorMessages, fD as ObjectType, c4 as ObjectTypePropertiesType, c5 as ObjectTypePropertiesTypePropertiesTypeOneOf, dQ as Oembed, bw as Operator, jY as OperatorWithLiterals, W as OptInLevel, il as OptInLevelWithLiterals, ez as Option, dr as OptionDesign, dl as OptionLayout, gF as OrCondition, bH as OrderDetails, dZ as OrderedListData, ac as Orientation, iE as OrientationWithLiterals, bn as OverrideEntityType, bv as OverrideEntityTypeEnumOverrideEntityType, jX as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jP as OverrideEntityTypeWithLiterals, cU as PDFSettings, gh as PageNavigationOptions, df as ParagraphData, g6 as Payment, bc as PaymentComponentType, g7 as PaymentComponentTypeOptionsOneOf, jE as PaymentComponentTypeWithLiterals, eK as PaymentInput, cc as PaymentType, dh as Permissions, fy as PhoneConstraints, fT as PhoneInfo, bi as PhoneInfoTag, jK as PhoneInfoTagWithLiterals, eg as PhoneInput, eS as PhoneOptions, at as Placement, iV as PlacementWithLiterals, dO as PlaybackOptions, cF as PluginContainerData, a3 as PluginContainerDataAlignment, iv as PluginContainerDataAlignmentWithLiterals, cG as PluginContainerDataWidth, cH as PluginContainerDataWidthDataOneOf, ds as Poll, dg as PollData, dt as PollDataLayout, dq as PollDesign, dk as PollLayout, am as PollLayoutDirection, iO as PollLayoutDirectionWithLiterals, al as PollLayoutType, iN as PollLayoutTypeWithLiterals, di as PollOption, aq as Position, iS as PositionWithLiterals, gm as PostSubmissionTriggers, ca as PredefinedValidation, cb as PredefinedValidationFormatOptionsOneOf, _ as PriceType, iq as PriceTypeWithLiterals, dM as PricingData, cg as Product, eG as ProductCheckboxGroup, eH as ProductCheckboxGroupOption, ch as ProductPriceOptionsOneOf, Z as ProductType, ip as ProductTypeWithLiterals, fE as PropertiesType, b9 as PropertiesTypeEnum, jB as PropertiesTypeEnumWithLiterals, aO as PropertiesTypePropertiesTypeEnum, je as PropertiesTypePropertiesTypeEnumWithLiterals, fF as PropertiesTypePropertiesTypeOptionsOneOf, bI as PublicTags, cd as QuantityLimit, hy as QuerySubmissionRequest, hJ as QuerySubmissionsByNamespaceForExportRequest, hK as QuerySubmissionsByNamespaceForExportResponse, hH as QuerySubmissionsByNamespaceRequest, hI as QuerySubmissionsByNamespaceResponse, ea as RadioGroup, eb as RadioGroupOption, eo as RatingInput, gu as RedirectOptions, cN as Rel, hp as RemoveSubmissionFromTrashBinRequest, hq as RemoveSubmissionFromTrashBinResponse, bL as RemovedSubmissionFromTrash, fI as Repeater, bq as RequiredIndicator, br as RequiredIndicatorPlacement, jT as RequiredIndicatorPlacementWithLiterals, gq as RequiredIndicatorProperties, jS as RequiredIndicatorWithLiterals, gx as RequiredOptions, as as Resizing, iU as ResizingWithLiterals, aF as ResponsivenessBehaviour, j5 as ResponsivenessBehaviourWithLiterals, gQ as RestoreInfo, ho as RestoreSubmissionFromTrashBinRequest, dK as RibbonStyles, cy as RichContent, gg as RichContentOptions, gw as Rule, gH as RuleFormOverride, gI as RuleFormOverrideEntityTypeOptionsOneOf, aC as Scaling, j2 as ScalingWithLiterals, g8 as Scheduling, bf as SchedulingComponentType, g9 as SchedulingComponentTypeOptionsOneOf, jH as SchedulingComponentTypeWithLiterals, hE as SearchDetails, hF as SearchSubmissionsByNamespaceForExportRequest, hG as SearchSubmissionsByNamespaceForExportResponse, hB as SearchSubmissionsByNamespaceRequest, fP as Section, el as ServiceOption, eC as ServicesCheckboxGroup, ek as ServicesDropdown, dj as Settings, eF as Signature, bA as SortOrder, k0 as SortOrderWithLiterals, hA as Sorting, ag as Source, iI as SourceWithLiterals, bp as SpamFilterProtectionLevel, jR as SpamFilterProtectionLevelWithLiterals, cI as Spoiler, dD as SpoilerData, bC as Status, k2 as StatusWithLiterals, gi as Step, b5 as StringComponentType, jx as StringComponentTypeWithLiterals, bV as StringErrorMessages, fv as StringType, bW as StringTypeDateTimeConstraints, X as StringTypeFormatEnumFormat, im as StringTypeFormatEnumFormatWithLiterals, fw as StringTypeFormatOptionsOneOf, bX as StringTypePhoneConstraints, bY as StringTypeValidationMessages, cK as Styles, d9 as StylesBorder, ah as StylesPosition, iJ as StylesPositionWithLiterals, bM as SubmissionContactMapped, bO as SubmissionContactMappingSkipped, hT as SubmissionDocument, hU as SubmissionDocumentDocumentOneOf, bD as SubmissionErrorType, k3 as SubmissionErrorTypeWithLiterals, T as SubmissionStatus, ik as SubmissionStatusWithLiterals, ib as SubmissionValidationError, ic as SubmissionValidationErrorErrorMessageOneOf, ia as SubmissionValidationErrors, h0 as SubmissionValidationErrorsDetails, ih as SubmissionsQueryResult, gZ as SubmitContactResponse, gr as SubmitSettings, gs as SubmitSettingsSubmitSuccessActionOptionsOneOf, bt as SubmitSuccessAction, jV as SubmitSuccessActionWithLiterals, bE as Submitter, bF as SubmitterSubmitterOneOf, fW as SubscriptionInfo, a$ as SubscriptionInfoOptInLevel, jr as SubscriptionInfoOptInLevelWithLiterals, dU as TableCellData, dS as TableData, bj as Tag, bJ as TagList, jL as TagWithLiterals, eA as Tags, eB as TagsOption, bs as Target, jU as TargetWithLiterals, a6 as TextAlignment, iy as TextAlignmentWithLiterals, dv as TextData, cx as TextInput, e6 as TextNodeStyle, cP as TextStyle, gt as ThankYouMessageOptions, d2 as Thumbnails, ae as ThumbnailsAlignment, iG as ThumbnailsAlignmentWithLiterals, ei as TimeInput, aW as Type, jm as TypeWithLiterals, i1 as UpdateExtendedFieldsRequest, hh as UpdateSubmissionRequest, hi as UpdateSubmissionResponse, aR as UploadFileFormat, jh as UploadFileFormatWithLiterals, gn as UpsertContact, gY as UpsertContactFromSubmissionRequest, eY as V4FormFieldContactInfo, eZ as V4FormFieldContactInfoAdditionalInfoOneOf, fq as V4PageNavigationOptions, fp as V4RichContentOptions, i7 as ValidateFormSubmissionRequest, cn as Validation, h1 as ValidationError, Y as ValidationFormat, io as ValidationFormatWithLiterals, fz as ValidationMessages, co as ValidationValidationOneOf, aA as VerticalAlignment, aE as VerticalAlignmentAlignment, j4 as VerticalAlignmentAlignmentWithLiterals, j0 as VerticalAlignmentWithLiterals, cY as Video, eR as VideoConferenceOptions, dN as VideoData, aa as ViewMode, iC as ViewModeWithLiterals, aj as ViewRole, iL as ViewRoleWithLiterals, ak as VoteRole, iM as VoteRoleWithLiterals, bx as WebhookIdentityType, jZ as WebhookIdentityTypeWithLiterals, a8 as Width, a2 as WidthType, iu as WidthTypeWithLiterals, iA as WidthWithLiterals, g4 as WixFile, bb as WixFileComponentType, g5 as WixFileComponentTypeOptionsOneOf, jD as WixFileComponentTypeWithLiterals, g1 as _Array, g2 as _ArrayComponentTypeOptionsOneOf, f$ as _Boolean, g0 as _BooleanComponentTypeOptionsOneOf, fZ as _Number, f_ as _NumberComponentTypeOptionsOneOf, g3 as _Object, fX as _String, fY as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-CosZdolZ.js';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -227,7 +227,7 @@ interface BulkMarkSubmissionsAsSeenSignature {
227
227
  * @param - IDs of submissions to mark as seen.
228
228
  * @param - ID of the form which the submissions belong to.
229
229
  */
230
- (ids: string[], formId: string): Promise<void>;
230
+ (ids: string[], formId: string): Promise<NonNullablePaths<BulkMarkSubmissionsAsSeenResponse, `jobId`, 2>>;
231
231
  }
232
232
  declare function getSubmissionDownloadUrl$1(httpClient: HttpClient): GetSubmissionDownloadUrlSignature;
233
233
  interface GetSubmissionDownloadUrlSignature {
@@ -334,4 +334,4 @@ declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onS
334
334
  */
335
335
  declare const onSubmissionUpdated: BuildEventDefinition<typeof onSubmissionUpdated$1> & typeof onSubmissionUpdated$1;
336
336
 
337
- export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RawHttpResponse, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, downloadSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };
337
+ export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkMarkSubmissionsAsSeenResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RawHttpResponse, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, downloadSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };
@@ -1844,6 +1844,13 @@ var ErrorType = /* @__PURE__ */ ((ErrorType2) => {
1844
1844
  ErrorType2["MISSING_SERVICE_OPTION_ERROR"] = "MISSING_SERVICE_OPTION_ERROR";
1845
1845
  ErrorType2["INVALID_SERVICE_OPTIONS_ERROR"] = "INVALID_SERVICE_OPTIONS_ERROR";
1846
1846
  ErrorType2["NO_AVAILABLE_SERVICE_OPTIONS_ERROR"] = "NO_AVAILABLE_SERVICE_OPTIONS_ERROR";
1847
+ ErrorType2["EXACT_CHARACTER_LENGTH_ERROR"] = "EXACT_CHARACTER_LENGTH_ERROR";
1848
+ ErrorType2["CHARACTER_LENGTH_RANGE_ERROR"] = "CHARACTER_LENGTH_RANGE_ERROR";
1849
+ ErrorType2["VALUE_RANGE_ERROR"] = "VALUE_RANGE_ERROR";
1850
+ ErrorType2["EXACT_ITEMS_NUMBER_ERROR"] = "EXACT_ITEMS_NUMBER_ERROR";
1851
+ ErrorType2["DECIMAL_POINT_ERROR"] = "DECIMAL_POINT_ERROR";
1852
+ ErrorType2["INCOMPLETE_DATE_ERROR"] = "INCOMPLETE_DATE_ERROR";
1853
+ ErrorType2["INVALID_VALUE_FOR_PATTERN_ERROR"] = "INVALID_VALUE_FOR_PATTERN_ERROR";
1847
1854
  return ErrorType2;
1848
1855
  })(ErrorType || {});
1849
1856
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
@@ -2447,6 +2454,7 @@ async function bulkMarkSubmissionsAsSeen2(ids, formId) {
2447
2454
  try {
2448
2455
  const result = await httpClient.request(reqOpts);
2449
2456
  sideEffects?.onSuccess?.(result);
2457
+ return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
2450
2458
  } catch (err) {
2451
2459
  const transformedError = (0, import_transform_error.transformError)(
2452
2460
  err,