@wix/auto_sdk_forms_submissions 1.0.52 → 1.0.54

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--zOLbWnk.d.ts → forms-v4-submission-submissions.universal-DjDjo-gt.d.ts} +18 -11
  2. package/build/cjs/index.d.ts +13 -3
  3. package/build/cjs/index.js +62 -1
  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 +53 -1
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +26 -2
  9. package/build/cjs/meta.js +45 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal--zOLbWnk.d.mts → forms-v4-submission-submissions.universal-DjDjo-gt.d.mts} +18 -11
  12. package/build/es/index.d.mts +13 -3
  13. package/build/es/index.mjs +61 -1
  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 +52 -1
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +26 -2
  19. package/build/es/meta.mjs +44 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-B5nDaidY.d.ts → forms-v4-submission-submissions.universal-BBNQW7g1.d.ts} +18 -11
  22. package/build/internal/cjs/index.d.ts +13 -3
  23. package/build/internal/cjs/index.js +62 -1
  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 +53 -1
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +26 -2
  29. package/build/internal/cjs/meta.js +45 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-B5nDaidY.d.mts → forms-v4-submission-submissions.universal-BBNQW7g1.d.mts} +18 -11
  32. package/build/internal/es/index.d.mts +13 -3
  33. package/build/internal/es/index.mjs +61 -1
  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 +52 -1
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +26 -2
  39. package/build/internal/es/meta.mjs +44 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -4745,12 +4745,10 @@ declare enum ItemType {
4745
4745
  /** Array can contain numeric values. */
4746
4746
  NUMBER = "NUMBER",
4747
4747
  /** Array can contain boolean values. */
4748
- BOOLEAN = "BOOLEAN",
4749
- /** Array can contain object values. */
4750
- OBJECT = "OBJECT"
4748
+ BOOLEAN = "BOOLEAN"
4751
4749
  }
4752
4750
  /** @enumType */
4753
- type ItemTypeWithLiterals = ItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'OBJECT';
4751
+ type ItemTypeWithLiterals = ItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN';
4754
4752
  interface ObjectType {
4755
4753
  /** Definition of object properties and their validation rules. */
4756
4754
  properties?: Record<string, PropertiesType>;
@@ -4804,8 +4802,6 @@ interface ArrayItems extends ArrayItemsItemTypeOptionsOneOf {
4804
4802
  numberOptions?: NumberType;
4805
4803
  /** Validation rules for boolean array elements. */
4806
4804
  booleanOptions?: BooleanType;
4807
- /** Validation rules for object array elements. */
4808
- objectOptions?: ObjectType;
4809
4805
  /**
4810
4806
  * Allowed item type.
4811
4807
  * @readonly
@@ -4820,8 +4816,6 @@ interface ArrayItemsItemTypeOptionsOneOf {
4820
4816
  numberOptions?: NumberType;
4821
4817
  /** Validation rules for boolean array elements. */
4822
4818
  booleanOptions?: BooleanType;
4823
- /** Validation rules for object array elements. */
4824
- objectOptions?: ObjectType;
4825
4819
  }
4826
4820
  declare enum ArrayComponentType {
4827
4821
  /** Unknown component type. */
@@ -6720,12 +6714,12 @@ interface DownloadSubmissionRequest {
6720
6714
  * Submission id for which the document is generated.
6721
6715
  * @format GUID
6722
6716
  */
6723
- submissionId?: string;
6717
+ submissionId: string;
6724
6718
  /**
6725
6719
  * Access token to download the document.
6726
6720
  * @maxLength 10000
6727
6721
  */
6728
- accessToken?: string;
6722
+ accessToken: string;
6729
6723
  }
6730
6724
  interface RawHttpResponse {
6731
6725
  body?: Uint8Array;
@@ -7828,6 +7822,19 @@ declare function bulkMarkSubmissionsAsSeen(ids: string[], formId: string): Promi
7828
7822
  * @fqn wix.forms.v4.FormSubmissionService.GetSubmissionDownloadUrl
7829
7823
  */
7830
7824
  declare function getSubmissionDownloadUrl(submissionId: string): Promise<NonNullablePaths<GetSubmissionDownloadUrlResponse, `document.readyDetails.downloadUrl` | `document.status`, 4>>;
7825
+ /**
7826
+ * Download a submission document by redirecting to the document URL.
7827
+ * @param submissionId - Submission id for which the document is generated.
7828
+ * @param accessToken - Access token to download the document.
7829
+ * @public
7830
+ * @documentationMaturity preview
7831
+ * @requiredField accessToken
7832
+ * @requiredField submissionId
7833
+ * @permissionId WIX_FORMS.SUBMISSION_READ_ANY
7834
+ * @applicableIdentity APP
7835
+ * @fqn wix.forms.v4.FormSubmissionService.DownloadSubmission
7836
+ */
7837
+ declare function downloadSubmission(submissionId: string, accessToken: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
7831
7838
  /**
7832
7839
  * Retrieves a submission formatted by language
7833
7840
  * @param submissionId - Submission ID.
@@ -7913,4 +7920,4 @@ interface ValidateFormSubmissionOptions {
7913
7920
  fieldsToValidate?: string[];
7914
7921
  }
7915
7922
 
7916
- export { ProductType as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, SubmissionStatus as X, OptInLevel as Y, StringTypeFormatEnumFormat as Z, ValidationFormat as _, type UpsertContactFromSubmissionResponse as a, FormFieldV2FieldType as a$, PriceType as a0, InputFieldStringTypeFormatEnumFormat as a1, InputFieldStringComponentType as a2, NodeType as a3, WidthType as a4, PluginContainerDataAlignment as a5, ButtonDataType as a6, LinkTarget as a7, TextAlignment as a8, LineStyle as a9, InitialExpandedItems as aA, Direction as aB, VerticalAlignment as aC, NullValue as aD, ImagePosition as aE, Alignment as aF, ImageFit as aG, NumberOfColumns as aH, FirstDayOfWeek as aI, InputFieldNumberComponentType as aJ, InputFieldBooleanComponentType as aK, ArrayItemsItemType as aL, PropertiesTypePropertiesTypeEnum as aM, InputFieldArrayComponentType as aN, InputFieldWixFileComponentType as aO, UploadFileFormat as aP, InputFieldPaymentComponentType as aQ, InputFieldSchedulingComponentType as aR, Format as aS, MultilineAddressComponentType as aT, Type as aU, InputFieldInputType as aV, FormFieldContactInfoEmailInfoTag as aW, FormFieldContactInfoPhoneInfoTag as aX, AddressInfoTag as aY, SubscriptionInfoOptInLevel as aZ, FormFieldContactInfoContactField as a_, Width as aa, DividerDataAlignment as ab, ViewMode as ac, LayoutType as ad, Orientation as ae, Crop as af, ThumbnailsAlignment as ag, GIFType as ah, Source as ai, StylesPosition as aj, MapType as ak, ViewRole as al, VoteRole as am, PollLayoutType as an, PollLayoutDirection as ao, BackgroundType as ap, DecorationType as aq, FontType as ar, Position as as, AspectRatio as at, Resizing as au, Placement as av, CardStylesType as aw, CardStylesAlignment as ax, Layout as ay, AppType as az, type CreateSubmissionApplicationErrors as b, type FormFieldArrayType as b$, DisplayFieldType as b0, FieldType as b1, FormatEnumFormat as b2, StringComponentType as b3, NumberComponentType as b4, BooleanComponentType as b5, ItemType as b6, PropertiesTypeEnum as b7, ArrayComponentType as b8, WixFileComponentType as b9, SubmissionErrorType as bA, type Submitter as bB, type SubmitterSubmitterOneOf as bC, type ExtendedFields as bD, type OrderDetails as bE, type PublicTags as bF, type TagList as bG, type FormSubmissionStatusUpdatedEvent as bH, type RemovedSubmissionFromTrash as bI, type SubmissionContactMapped as bJ, type MarketingSubscriptionDetails as bK, type SubmissionContactMappingSkipped as bL, type CreateCheckoutFromSubmissionRequest as bM, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bN, type Form as bO, type FormField as bP, type FormFieldStringType as bQ, type FormFieldStringTypeFormatOptionsOneOf as bR, type StringErrorMessages as bS, type StringTypeDateTimeConstraints as bT, type StringTypePhoneConstraints as bU, type StringTypeValidationMessages as bV, type FormFieldNumberType as bW, type NumberErrorMessages as bX, type IntegerType as bY, type FormFieldBooleanType as bZ, type BooleanErrorMessages as b_, PaymentComponentType as ba, ComponentType as bb, SchedulingComponentType as bc, InputType as bd, EmailInfoTag as be, PhoneInfoTag as bf, Tag as bg, ConfirmationLevel as bh, ContactField as bi, DisplayFieldDisplayFieldType as bj, OverrideEntityType as bk, Kind as bl, SpamFilterProtectionLevel as bm, RequiredIndicator as bn, RequiredIndicatorPlacement as bo, Target as bp, SubmitSuccessAction as bq, ChangeableProperty as br, OverrideEntityTypeEnumOverrideEntityType as bs, Operator as bt, WebhookIdentityType as bu, IdentityType as bv, ErrorType as bw, SortOrder as bx, Mode as by, Status as bz, type CreateSubmissionValidationErrors as c, type GIFData as c$, type FormFieldObjectType as c0, type ObjectTypePropertiesType as c1, type ObjectTypePropertiesTypePropertiesTypeOneOf as c2, type ObjectErrorMessages as c3, type ArrayTypeArrayItems as c4, type ArrayTypeArrayItemsItemsOneOf as c5, type ArrayErrorMessages as c6, type PredefinedValidation as c7, type PredefinedValidationFormatOptionsOneOf as c8, type PaymentType as c9, type Colors as cA, type PluginContainerData as cB, type PluginContainerDataWidth as cC, type PluginContainerDataWidthDataOneOf as cD, type Spoiler as cE, type Height as cF, type Styles as cG, type Link as cH, type LinkDataOneOf as cI, type Rel as cJ, type CodeBlockData as cK, type TextStyle as cL, type DividerData as cM, type FileData as cN, type FileSource as cO, type FileSourceDataOneOf as cP, type PDFSettings as cQ, type GalleryData as cR, type Media as cS, type Image as cT, type Video as cU, type Item as cV, type ItemDataOneOf as cW, type GalleryOptions as cX, type GalleryOptionsLayout as cY, type ItemStyle as cZ, type Thumbnails as c_, type QuantityLimit as ca, type FixedPriceOptions as cb, type DynamicPriceOptions as cc, type Product as cd, type ProductPriceOptionsOneOf as ce, type MultilineAddressValidation as cf, type FieldOverrides as cg, type FieldsOverrides as ch, type NestedFormFieldOverrides as ci, type Validation as cj, type ValidationValidationOneOf as ck, type DataExtensionsDetails as cl, type NestedFormOverrides as cm, type FormFieldV2 as cn, type FormFieldV2FieldTypeOptionsOneOf as co, type InputFieldStringType as cp, type InputFieldStringTypeFormatOptionsOneOf as cq, type InputFieldStringTypeDateTimeConstraints as cr, type InputFieldStringTypePhoneConstraints as cs, type TextInput as ct, type RichContent as cu, type Node as cv, type NodeDataOneOf as cw, type NodeStyle as cx, type ButtonData as cy, type Border as cz, type UpdateSubmission as d, type DocumentStyle as d$, type GIF as d0, type HeadingData as d1, type HTMLData as d2, type HTMLDataDataOneOf as d3, type ImageData as d4, type StylesBorder as d5, type ImageDataStyles as d6, type LinkPreviewData as d7, type LinkPreviewDataStyles as d8, type MapData as d9, type AppEmbedData as dA, type AppEmbedDataAppDataOneOf as dB, type BookingData as dC, type EventData as dD, type ButtonStyles as dE, type ImageStyles as dF, type RibbonStyles as dG, type CardStyles as dH, type PricingData as dI, type VideoData as dJ, type PlaybackOptions as dK, type EmbedData as dL, type Oembed as dM, type CollapsibleListData as dN, type TableData as dO, type Dimensions as dP, type TableCellData as dQ, type CellStyle as dR, type BorderColors as dS, type ListValue as dT, type AudioData as dU, type OrderedListData as dV, type BulletedListData as dW, type BlockquoteData as dX, type CaptionData as dY, type LayoutCellData as dZ, type Metadata as d_, type MapSettings as da, type ParagraphData as db, type PollData as dc, type Permissions as dd, type PollOption as de, type Settings as df, type PollLayout as dg, type OptionLayout as dh, type Gradient as di, type Background as dj, type BackgroundBackgroundOneOf as dk, type PollDesign as dl, type OptionDesign as dm, type Poll as dn, type PollDataLayout as dp, type Design as dq, type TextData as dr, type Decoration as ds, type DecorationDataOneOf as dt, type AnchorData as du, type ColorData as dv, type LinkData as dw, type MentionData as dx, type FontSizeData as dy, type SpoilerData as dz, type UpdateSubmissionValidationErrors as e, type InputField_Number as e$, type TextNodeStyle as e0, type MediaItem as e1, type MediaItemMediaOneOf as e2, type MediaSettings as e3, type RadioGroup as e4, type RadioGroupOption as e5, type CustomOption as e6, type Dropdown as e7, type DropdownOption as e8, type DateTimeInput as e9, type ProductCheckboxGroup as eA, type ProductCheckboxGroupOption as eB, type DonationInput as eC, type DonationInputOption as eD, type PaymentInput as eE, type FixedPayment as eF, type Appointment as eG, type AppointmentFormatInfoOneOf as eH, type Location as eI, type LocationLocationInfoOneOf as eJ, type InPersonOptions as eK, type VideoConferenceOptions as eL, type PhoneOptions as eM, type MultilineAddress as eN, type AddressLine2 as eO, type DefaultCountryConfig as eP, type DefaultCountryConfigOptionsOneOf as eQ, type FieldsSettings as eR, type V4FormFieldContactInfo as eS, type V4FormFieldContactInfoAdditionalInfoOneOf as eT, type FormFieldContactInfoEmailInfo as eU, type FormFieldContactInfoPhoneInfo as eV, type FormFieldContactInfoAddressInfo as eW, type FormFieldContactInfoCustomFieldInfo as eX, type FormFieldContactInfoSubscriptionInfo as eY, type InputField_String as eZ, type InputField_StringComponentTypeOptionsOneOf as e_, type PhoneInput as ea, type DateInput as eb, type TimeInput as ec, type DatePicker as ed, type ServicesDropdown as ee, type ServiceOption as ef, type InputFieldNumberType as eg, type NumberInput as eh, type RatingInput as ei, type InputFieldBooleanType as ej, type Checkbox as ek, type InputFieldArrayType as el, type InputFieldIntegerType as em, type InputFieldObjectType as en, type InputFieldObjectTypePropertiesType as eo, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ep, type InputFieldArrayTypeArrayItems as eq, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as er, type CheckboxGroup as es, type Option as et, type Tags as eu, type TagsOption as ev, type ServicesCheckboxGroup as ew, type FileType as ex, type FileUpload as ey, type Signature as ez, type ConfirmSubmissionResponse as f, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as f$, type InputField_NumberComponentTypeOptionsOneOf as f0, type InputField_Boolean as f1, type InputField_BooleanComponentTypeOptionsOneOf as f2, type InputField_Array as f3, type InputField_ArrayComponentTypeOptionsOneOf as f4, type InputField_Object as f5, type InputField_ObjectValidationOneOf as f6, type InputFieldWixFile as f7, type InputFieldWixFileComponentTypeOptionsOneOf as f8, type InputFieldPayment as f9, type ArrayItems as fA, type ArrayItemsItemTypeOptionsOneOf as fB, type FormFieldContactInfo as fC, type FormFieldContactInfoAdditionalInfoOneOf as fD, type EmailInfo as fE, type PhoneInfo as fF, type AddressInfo as fG, type CustomFieldInfo as fH, type SubscriptionInfo as fI, type _String as fJ, type _StringComponentTypeOptionsOneOf as fK, type _Number as fL, type _NumberComponentTypeOptionsOneOf as fM, type _Boolean as fN, type _BooleanComponentTypeOptionsOneOf as fO, type _Array as fP, type _ArrayComponentTypeOptionsOneOf as fQ, type _Object as fR, type WixFile as fS, type WixFileComponentTypeOptionsOneOf as fT, type Payment as fU, type PaymentComponentTypeOptionsOneOf as fV, type Scheduling as fW, type SchedulingComponentTypeOptionsOneOf as fX, type Address as fY, type AddressComponentTypeOptionsOneOf as fZ, type FieldsDisplayField as f_, type InputFieldPaymentComponentTypeOptionsOneOf as fa, type InputFieldMultilineAddress as fb, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fc, type InputFieldScheduling as fd, type InputFieldSchedulingComponentTypeOptionsOneOf as fe, type FormFieldV2InputField as ff, type FormFieldV2InputFieldInputTypeOptionsOneOf as fg, type DisplayField as fh, type DisplayFieldDisplayFieldTypeOptionsOneOf as fi, type V4RichContentOptions as fj, type V4PageNavigationOptions as fk, type Field as fl, type FieldFieldTypeOptionsOneOf as fm, type InputField as fn, type InputFieldInputTypeOptionsOneOf as fo, type StringType as fp, type StringTypeFormatOptionsOneOf as fq, type DateTimeConstraints as fr, type PhoneConstraints as fs, type ValidationMessages as ft, type NumberType as fu, type BooleanType as fv, type ArrayType as fw, type ObjectType as fx, type PropertiesType as fy, type PropertiesTypePropertiesTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type BulkCreateSubmissionBySubmitterResponse as g$, type RichContentOptions as g0, type PageNavigationOptions as g1, type Step as g2, type FormLayout as g3, type BreakPoint as g4, type ItemLayout as g5, type ItemLayoutItemOneOf as g6, type Group as g7, type Margin as g8, type Section as g9, type CreateCheckoutFromSubmissionResponse as gA, type Checkout as gB, type IsFormSubmittableRequest as gC, type IsFormSubmittableResponse as gD, type DomainEvent as gE, type DomainEventBodyOneOf as gF, type EntityCreatedEvent as gG, type RestoreInfo as gH, type EntityUpdatedEvent as gI, type EntityDeletedEvent as gJ, type ActionEvent as gK, type Empty as gL, type MessageEnvelope as gM, type IdentificationData as gN, type IdentificationDataIdOneOf as gO, type UpsertContactFromSubmissionRequest as gP, type SubmitContactResponse as gQ, type CreateSubmissionRequest as gR, type CreateSubmissionResponse as gS, type SubmissionValidationErrorsDetails as gT, type ValidationError as gU, type CreateSubmissionForMigrationRequest as gV, type CreateSubmissionForMigrationResponse as gW, type CreateSubmissionBySubmitterRequest as gX, type CreateSubmissionBySubmitterResponse as gY, type BulkCreateSubmissionBySubmitterRequest as gZ, type BulkCreateSubmissionBySubmitterData as g_, type FormRule as ga, type FormOverride as gb, type FormProperties as gc, type PostSubmissionTriggers as gd, type UpsertContact as ge, type NestedForm as gf, type LimitationRule as gg, type RequiredIndicatorProperties as gh, type SubmitSettings as gi, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gj, type ThankYouMessageOptions as gk, type RedirectOptions as gl, type FieldGroup as gm, type Rule as gn, type RequiredOptions as go, type HiddenOptions as gp, type AllowedValuesOptions as gq, type FieldOverride as gr, type FieldOverridePropertyTypeOptionsOneOf as gs, type ConditionNode as gt, type ConditionNodeNodeOneOf as gu, type AndCondition as gv, type OrCondition as gw, type Condition as gx, type RuleFormOverride as gy, type RuleFormOverrideEntityTypeOptionsOneOf as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type FieldViolation as h$, type BulkSubmissionResult as h0, type ItemMetadata as h1, type ApplicationError as h2, type BulkActionMetadata as h3, type GetSubmissionRequest as h4, type GetSubmissionResponse as h5, type GetSubmissionByCheckoutIdRequest as h6, type GetSubmissionByCheckoutIdResponse as h7, type UpdateSubmissionRequest as h8, type UpdateSubmissionResponse as h9, type QuerySubmissionsByNamespaceForExportRequest as hA, type QuerySubmissionsByNamespaceForExportResponse as hB, type CountSubmissionsByFilterRequest as hC, type FormSubmissionsCount as hD, type CountSubmissionsRequest as hE, type CountDeletedSubmissionsRequest as hF, type FormDeletedSubmissionsCount as hG, type GetMediaUploadURLRequest as hH, type BulkMarkSubmissionsAsSeenRequest as hI, type BulkMarkSubmissionsAsSeenResponse as hJ, type GetSubmissionDownloadUrlRequest as hK, type SubmissionDocument as hL, type SubmissionDocumentDocumentOneOf as hM, type DocumentReady as hN, type DownloadSubmissionRequest as hO, type RawHttpResponse as hP, type HeadersEntry as hQ, type GetFormattedSubmissionRequest as hR, type FormattedSubmission as hS, type ListFormattedSubmissionsRequest as hT, type ListFormattedSubmissionsResponse as hU, type FormattedFormSubmission as hV, type UpdateExtendedFieldsRequest as hW, type BulkUpdateFormSubmissionTagsRequest as hX, type BulkUpdateFormSubmissionTagsResult as hY, type BulkUpdateFormSubmissionTagsByFilterRequest as hZ, type ValidateFormSubmissionRequest as h_, type ConfirmSubmissionRequest as ha, type DeleteSubmissionRequest as hb, type DeleteSubmissionResponse as hc, type BulkDeleteSubmissionRequest as hd, type BulkDeleteSubmissionResult as he, type RestoreSubmissionFromTrashBinRequest as hf, type RemoveSubmissionFromTrashBinRequest as hg, type RemoveSubmissionFromTrashBinResponse as hh, type BulkRemoveSubmissionFromTrashBinRequest as hi, type BulkRemoveSubmissionFromTrashBinResult as hj, type ListDeletedSubmissionsRequest as hk, type CursorPaging as hl, type CursorPagingMetadata as hm, type Cursors as hn, type GetDeletedSubmissionRequest as ho, type QuerySubmissionRequest as hp, type CursorQueryPagingMethodOneOf as hq, type Sorting as hr, type SearchSubmissionsByNamespaceRequest as hs, type CursorSearch as ht, type CursorSearchPagingMethodOneOf as hu, type SearchDetails as hv, type SearchSubmissionsByNamespaceForExportRequest as hw, type SearchSubmissionsByNamespaceForExportResponse as hx, type QuerySubmissionsByNamespaceRequest as hy, type QuerySubmissionsByNamespaceResponse as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PropertiesTypePropertiesTypeEnumWithLiterals as i$, type FieldViolationErrorDataOneOf as i0, type SubmissionValidationErrors as i1, type SubmissionValidationError as i2, type SubmissionValidationErrorErrorMessageOneOf as i3, type BaseEventMetadata as i4, type EventMetadata as i5, type FormSubmissionSearchSpec as i6, type SubmissionsQueryResult as i7, type SubmissionStatusWithLiterals as i8, type OptInLevelWithLiterals as i9, type ViewRoleWithLiterals as iA, type VoteRoleWithLiterals as iB, type PollLayoutTypeWithLiterals as iC, type PollLayoutDirectionWithLiterals as iD, type BackgroundTypeWithLiterals as iE, type DecorationTypeWithLiterals as iF, type FontTypeWithLiterals as iG, type PositionWithLiterals as iH, type AspectRatioWithLiterals as iI, type ResizingWithLiterals as iJ, type PlacementWithLiterals as iK, type CardStylesTypeWithLiterals as iL, type CardStylesAlignmentWithLiterals as iM, type LayoutWithLiterals as iN, type AppTypeWithLiterals as iO, type InitialExpandedItemsWithLiterals as iP, type DirectionWithLiterals as iQ, type VerticalAlignmentWithLiterals as iR, type NullValueWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type InputFieldNumberComponentTypeWithLiterals as iY, type InputFieldBooleanComponentTypeWithLiterals as iZ, type ArrayItemsItemTypeWithLiterals as i_, type StringTypeFormatEnumFormatWithLiterals as ia, type ValidationFormatWithLiterals as ib, type ProductTypeWithLiterals as ic, type PriceTypeWithLiterals as id, type InputFieldStringTypeFormatEnumFormatWithLiterals as ie, type InputFieldStringComponentTypeWithLiterals as ig, type NodeTypeWithLiterals as ih, type WidthTypeWithLiterals as ii, type PluginContainerDataAlignmentWithLiterals as ij, type ButtonDataTypeWithLiterals as ik, type LinkTargetWithLiterals as il, type TextAlignmentWithLiterals as im, type LineStyleWithLiterals as io, type WidthWithLiterals as ip, type DividerDataAlignmentWithLiterals as iq, type ViewModeWithLiterals as ir, type LayoutTypeWithLiterals as is, type OrientationWithLiterals as it, type CropWithLiterals as iu, type ThumbnailsAlignmentWithLiterals as iv, type GIFTypeWithLiterals as iw, type SourceWithLiterals as ix, type StylesPositionWithLiterals as iy, type MapTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, updateSubmission as j$, type InputFieldArrayComponentTypeWithLiterals as j0, type InputFieldWixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type InputFieldPaymentComponentTypeWithLiterals as j3, type InputFieldSchedulingComponentTypeWithLiterals as j4, type FormatWithLiterals as j5, type MultilineAddressComponentTypeWithLiterals as j6, type TypeWithLiterals as j7, type InputFieldInputTypeWithLiterals as j8, type FormFieldContactInfoEmailInfoTagWithLiterals as j9, type KindWithLiterals as jA, type SpamFilterProtectionLevelWithLiterals as jB, type RequiredIndicatorWithLiterals as jC, type RequiredIndicatorPlacementWithLiterals as jD, type TargetWithLiterals as jE, type SubmitSuccessActionWithLiterals as jF, type ChangeablePropertyWithLiterals as jG, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jH, type OperatorWithLiterals as jI, type WebhookIdentityTypeWithLiterals as jJ, type IdentityTypeWithLiterals as jK, type ErrorTypeWithLiterals as jL, type SortOrderWithLiterals as jM, type ModeWithLiterals as jN, type StatusWithLiterals as jO, type SubmissionErrorTypeWithLiterals as jP, type CommonSearchWithEntityContext as jQ, onSubmissionCreated as jR, onSubmissionDeleted as jS, onSubmissionRemovedSubmissionFromTrash as jT, onSubmissionStatusUpdated as jU, onSubmissionContactMapped as jV, onSubmissionContactMappingSkipped as jW, onSubmissionUpdated as jX, upsertContactFromSubmission as jY, createSubmission as jZ, getSubmission as j_, type FormFieldContactInfoPhoneInfoTagWithLiterals as ja, type AddressInfoTagWithLiterals as jb, type SubscriptionInfoOptInLevelWithLiterals as jc, type FormFieldContactInfoContactFieldWithLiterals as jd, type FormFieldV2FieldTypeWithLiterals as je, type DisplayFieldTypeWithLiterals as jf, type FieldTypeWithLiterals as jg, type FormatEnumFormatWithLiterals as jh, type StringComponentTypeWithLiterals as ji, type NumberComponentTypeWithLiterals as jj, type BooleanComponentTypeWithLiterals as jk, type ItemTypeWithLiterals as jl, type PropertiesTypeEnumWithLiterals as jm, type ArrayComponentTypeWithLiterals as jn, type WixFileComponentTypeWithLiterals as jo, type PaymentComponentTypeWithLiterals as jp, type ComponentTypeWithLiterals as jq, type SchedulingComponentTypeWithLiterals as jr, type InputTypeWithLiterals as js, type EmailInfoTagWithLiterals as jt, type PhoneInfoTagWithLiterals as ju, type TagWithLiterals as jv, type ConfirmationLevelWithLiterals as jw, type ContactFieldWithLiterals as jx, type DisplayFieldDisplayFieldTypeWithLiterals as jy, type OverrideEntityTypeWithLiterals as jz, type CursorQuery as k, confirmSubmission as k0, deleteSubmission as k1, bulkDeleteSubmission as k2, restoreSubmissionFromTrashBin as k3, removeSubmissionFromTrashBin as k4, bulkRemoveSubmissionFromTrashBin as k5, listDeletedSubmissions as k6, getDeletedSubmission as k7, querySubmission as k8, querySubmissionsByNamespace as k9, countSubmissionsByFilter as ka, countSubmissions as kb, countDeletedSubmissions as kc, getMediaUploadUrl as kd, bulkMarkSubmissionsAsSeen as ke, getSubmissionDownloadUrl as kf, getFormattedSubmission as kg, updateExtendedFields as kh, bulkUpdateFormSubmissionTags as ki, bulkUpdateFormSubmissionTagsByFilter as kj, validateFormSubmission as kk, 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 GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
7923
+ export { ValidationFormat as $, type UpdateExtendedFieldsResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsOptions as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsResponse as H, type BulkUpdateFormSubmissionTagsByFilterOptions as I, type BulkUpdateFormSubmissionTagsByFilterResponse as J, type ValidateFormSubmissionResponse as K, type ListDeletedSubmissionsOptions as L, type SubmissionCreatedEnvelope as M, type SubmissionDeletedEnvelope as N, type SubmissionRemovedSubmissionFromTrashEnvelope as O, type SubmissionStatusUpdatedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionContactMappingSkippedEnvelope as W, type SubmissionUpdatedEnvelope as X, SubmissionStatus as Y, OptInLevel as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FormFieldContactInfoContactField as a$, ProductType as a0, PriceType as a1, InputFieldStringTypeFormatEnumFormat as a2, InputFieldStringComponentType as a3, NodeType as a4, WidthType as a5, PluginContainerDataAlignment as a6, ButtonDataType as a7, LinkTarget as a8, TextAlignment as a9, AppType as aA, InitialExpandedItems as aB, Direction as aC, VerticalAlignment as aD, NullValue as aE, 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_, LineStyle as aa, Width as ab, DividerDataAlignment as ac, ViewMode as ad, LayoutType as ae, Orientation as af, Crop as ag, ThumbnailsAlignment as ah, GIFType as ai, Source as aj, StylesPosition as ak, MapType as al, ViewRole as am, VoteRole as an, PollLayoutType as ao, PollLayoutDirection as ap, BackgroundType as aq, DecorationType as ar, FontType as as, Position as at, AspectRatio as au, Resizing as av, Placement as aw, CardStylesType as ax, CardStylesAlignment as ay, Layout as az, type CreateSubmissionApplicationErrors as b, type BooleanErrorMessages 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, Status as bA, SubmissionErrorType as bB, type Submitter as bC, type SubmitterSubmitterOneOf as bD, type ExtendedFields as bE, type OrderDetails as bF, type PublicTags as bG, type TagList as bH, type FormSubmissionStatusUpdatedEvent as bI, type RemovedSubmissionFromTrash as bJ, type SubmissionContactMapped as bK, type MarketingSubscriptionDetails as bL, type SubmissionContactMappingSkipped as bM, type CreateCheckoutFromSubmissionRequest as bN, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bO, type Form as bP, type FormField as bQ, type FormFieldStringType as bR, type FormFieldStringTypeFormatOptionsOneOf as bS, type StringErrorMessages as bT, type StringTypeDateTimeConstraints as bU, type StringTypePhoneConstraints as bV, type StringTypeValidationMessages as bW, type FormFieldNumberType as bX, type NumberErrorMessages as bY, type IntegerType as bZ, type FormFieldBooleanType as b_, WixFileComponentType as ba, PaymentComponentType as bb, ComponentType as bc, SchedulingComponentType as bd, InputType as be, EmailInfoTag as bf, PhoneInfoTag as bg, Tag as bh, ConfirmationLevel as bi, ContactField as bj, DisplayFieldDisplayFieldType as bk, OverrideEntityType as bl, Kind as bm, SpamFilterProtectionLevel as bn, RequiredIndicator as bo, RequiredIndicatorPlacement as bp, Target as bq, SubmitSuccessAction as br, ChangeableProperty as bs, OverrideEntityTypeEnumOverrideEntityType as bt, Operator as bu, WebhookIdentityType as bv, IdentityType as bw, ErrorType as bx, SortOrder as by, Mode as bz, type CreateSubmissionValidationErrors as c, type Thumbnails as c$, type FormFieldArrayType as c0, type FormFieldObjectType as c1, type ObjectTypePropertiesType as c2, type ObjectTypePropertiesTypePropertiesTypeOneOf as c3, type ObjectErrorMessages as c4, type ArrayTypeArrayItems as c5, type ArrayTypeArrayItemsItemsOneOf as c6, type ArrayErrorMessages as c7, type PredefinedValidation as c8, type PredefinedValidationFormatOptionsOneOf as c9, type Border as cA, type Colors as cB, type PluginContainerData as cC, type PluginContainerDataWidth as cD, type PluginContainerDataWidthDataOneOf as cE, type Spoiler as cF, type Height as cG, type Styles as cH, type Link as cI, type LinkDataOneOf as cJ, type Rel as cK, type CodeBlockData as cL, type TextStyle as cM, type DividerData as cN, type FileData as cO, type FileSource as cP, type FileSourceDataOneOf as cQ, type PDFSettings as cR, type GalleryData as cS, type Media as cT, type Image as cU, type Video as cV, type Item as cW, type ItemDataOneOf as cX, type GalleryOptions as cY, type GalleryOptionsLayout as cZ, type ItemStyle as c_, type PaymentType as ca, type QuantityLimit as cb, type FixedPriceOptions as cc, type DynamicPriceOptions as cd, type Product as ce, type ProductPriceOptionsOneOf as cf, type MultilineAddressValidation as cg, type FieldOverrides as ch, type FieldsOverrides as ci, type NestedFormFieldOverrides as cj, type Validation as ck, type ValidationValidationOneOf as cl, type DataExtensionsDetails as cm, type NestedFormOverrides as cn, type FormFieldV2 as co, type FormFieldV2FieldTypeOptionsOneOf as cp, type InputFieldStringType as cq, type InputFieldStringTypeFormatOptionsOneOf as cr, type InputFieldStringTypeDateTimeConstraints as cs, type InputFieldStringTypePhoneConstraints as ct, type TextInput as cu, type RichContent as cv, type Node as cw, type NodeDataOneOf as cx, type NodeStyle as cy, type ButtonData as cz, type UpdateSubmission as d, type Metadata as d$, type GIFData as d0, type GIF as d1, type HeadingData as d2, type HTMLData as d3, type HTMLDataDataOneOf as d4, type ImageData as d5, type StylesBorder as d6, type ImageDataStyles as d7, type LinkPreviewData as d8, type LinkPreviewDataStyles as d9, type SpoilerData as dA, type AppEmbedData as dB, type AppEmbedDataAppDataOneOf as dC, type BookingData as dD, type EventData as dE, type ButtonStyles as dF, type ImageStyles as dG, type RibbonStyles as dH, type CardStyles as dI, type PricingData as dJ, type VideoData as dK, type PlaybackOptions as dL, type EmbedData as dM, type Oembed as dN, type CollapsibleListData as dO, type TableData as dP, type Dimensions as dQ, type TableCellData as dR, type CellStyle as dS, type BorderColors as dT, type ListValue as dU, type AudioData as dV, type OrderedListData as dW, type BulletedListData as dX, type BlockquoteData as dY, type CaptionData as dZ, type LayoutCellData as d_, type MapData as da, type MapSettings as db, type ParagraphData as dc, type PollData as dd, type Permissions as de, type PollOption as df, type Settings as dg, type PollLayout as dh, type OptionLayout as di, type Gradient as dj, type Background as dk, type BackgroundBackgroundOneOf as dl, type PollDesign as dm, type OptionDesign as dn, type Poll as dp, type PollDataLayout as dq, type Design as dr, type TextData as ds, type Decoration as dt, type DecorationDataOneOf as du, type AnchorData as dv, type ColorData as dw, type LinkData as dx, type MentionData as dy, type FontSizeData as dz, type UpdateSubmissionValidationErrors as e, type InputField_StringComponentTypeOptionsOneOf as e$, type DocumentStyle as e0, type TextNodeStyle as e1, type MediaItem as e2, type MediaItemMediaOneOf as e3, type MediaSettings as e4, type RadioGroup as e5, type RadioGroupOption as e6, type CustomOption as e7, type Dropdown as e8, type DropdownOption as e9, type Signature as eA, type ProductCheckboxGroup as eB, type ProductCheckboxGroupOption as eC, type DonationInput as eD, type DonationInputOption as eE, type PaymentInput as eF, type FixedPayment as eG, type Appointment as eH, type AppointmentFormatInfoOneOf as eI, type Location as eJ, type LocationLocationInfoOneOf as eK, type InPersonOptions as eL, type VideoConferenceOptions as eM, type PhoneOptions as eN, type MultilineAddress as eO, type AddressLine2 as eP, type DefaultCountryConfig as eQ, type DefaultCountryConfigOptionsOneOf as eR, type FieldsSettings as eS, type V4FormFieldContactInfo as eT, type V4FormFieldContactInfoAdditionalInfoOneOf as eU, type FormFieldContactInfoEmailInfo as eV, type FormFieldContactInfoPhoneInfo as eW, type FormFieldContactInfoAddressInfo as eX, type FormFieldContactInfoCustomFieldInfo as eY, type FormFieldContactInfoSubscriptionInfo as eZ, type InputField_String as e_, type DateTimeInput as ea, type PhoneInput as eb, type DateInput as ec, type TimeInput as ed, type DatePicker as ee, type ServicesDropdown as ef, type ServiceOption as eg, type InputFieldNumberType as eh, type NumberInput as ei, type RatingInput as ej, type InputFieldBooleanType as ek, type Checkbox as el, type InputFieldArrayType as em, type InputFieldIntegerType as en, type InputFieldObjectType as eo, type InputFieldObjectTypePropertiesType as ep, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as eq, type InputFieldArrayTypeArrayItems as er, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as es, type CheckboxGroup as et, type Option as eu, type Tags as ev, type TagsOption as ew, type ServicesCheckboxGroup as ex, type FileType as ey, type FileUpload as ez, type ConfirmSubmissionResponse as f, type FieldsDisplayField as f$, type InputField_Number as f0, type InputField_NumberComponentTypeOptionsOneOf as f1, type InputField_Boolean as f2, type InputField_BooleanComponentTypeOptionsOneOf as f3, type InputField_Array as f4, type InputField_ArrayComponentTypeOptionsOneOf as f5, type InputField_Object as f6, type InputField_ObjectValidationOneOf as f7, type InputFieldWixFile as f8, type InputFieldWixFileComponentTypeOptionsOneOf as f9, type PropertiesTypePropertiesTypeOptionsOneOf as fA, type ArrayItems as fB, type ArrayItemsItemTypeOptionsOneOf as fC, type FormFieldContactInfo as fD, type FormFieldContactInfoAdditionalInfoOneOf as fE, type EmailInfo as fF, type PhoneInfo as fG, type AddressInfo as fH, type CustomFieldInfo as fI, type SubscriptionInfo as fJ, type _String as fK, type _StringComponentTypeOptionsOneOf as fL, type _Number as fM, type _NumberComponentTypeOptionsOneOf as fN, type _Boolean as fO, type _BooleanComponentTypeOptionsOneOf as fP, type _Array as fQ, type _ArrayComponentTypeOptionsOneOf as fR, type _Object as fS, type WixFile as fT, type WixFileComponentTypeOptionsOneOf as fU, type Payment as fV, type PaymentComponentTypeOptionsOneOf as fW, type Scheduling as fX, type SchedulingComponentTypeOptionsOneOf as fY, type Address as fZ, type AddressComponentTypeOptionsOneOf as f_, type InputFieldPayment as fa, type InputFieldPaymentComponentTypeOptionsOneOf as fb, type InputFieldMultilineAddress as fc, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fd, type InputFieldScheduling as fe, type InputFieldSchedulingComponentTypeOptionsOneOf as ff, type FormFieldV2InputField as fg, type FormFieldV2InputFieldInputTypeOptionsOneOf as fh, type DisplayField as fi, type DisplayFieldDisplayFieldTypeOptionsOneOf as fj, type V4RichContentOptions as fk, type V4PageNavigationOptions as fl, type Field as fm, type FieldFieldTypeOptionsOneOf as fn, type InputField as fo, type InputFieldInputTypeOptionsOneOf as fp, type StringType as fq, type StringTypeFormatOptionsOneOf as fr, type DateTimeConstraints as fs, type PhoneConstraints as ft, type ValidationMessages as fu, type NumberType as fv, type BooleanType as fw, type ArrayType as fx, type ObjectType as fy, type PropertiesType as fz, type BulkDeleteSubmissionResponse as g, type BulkCreateSubmissionBySubmitterData as g$, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as g0, type RichContentOptions as g1, type PageNavigationOptions as g2, type Step as g3, type FormLayout as g4, type BreakPoint as g5, type ItemLayout as g6, type ItemLayoutItemOneOf as g7, type Group as g8, type Margin as g9, type RuleFormOverrideEntityTypeOptionsOneOf as gA, type CreateCheckoutFromSubmissionResponse as gB, type Checkout as gC, type IsFormSubmittableRequest as gD, type IsFormSubmittableResponse as gE, type DomainEvent as gF, type DomainEventBodyOneOf as gG, type EntityCreatedEvent as gH, type RestoreInfo as gI, type EntityUpdatedEvent as gJ, type EntityDeletedEvent as gK, type ActionEvent as gL, type Empty as gM, type MessageEnvelope as gN, type IdentificationData as gO, type IdentificationDataIdOneOf as gP, type UpsertContactFromSubmissionRequest as gQ, type SubmitContactResponse as gR, type CreateSubmissionRequest as gS, type CreateSubmissionResponse as gT, type SubmissionValidationErrorsDetails as gU, type ValidationError as gV, type CreateSubmissionForMigrationRequest as gW, type CreateSubmissionForMigrationResponse as gX, type CreateSubmissionBySubmitterRequest as gY, type CreateSubmissionBySubmitterResponse as gZ, type BulkCreateSubmissionBySubmitterRequest as g_, type Section as ga, type FormRule as gb, type FormOverride as gc, type FormProperties as gd, type PostSubmissionTriggers as ge, type UpsertContact as gf, type NestedForm as gg, type LimitationRule as gh, type RequiredIndicatorProperties as gi, type SubmitSettings as gj, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gk, type ThankYouMessageOptions as gl, type RedirectOptions as gm, type FieldGroup as gn, type Rule as go, type RequiredOptions as gp, type HiddenOptions as gq, type AllowedValuesOptions as gr, type FieldOverride as gs, type FieldOverridePropertyTypeOptionsOneOf as gt, type ConditionNode as gu, type ConditionNodeNodeOneOf as gv, type AndCondition as gw, type OrCondition as gx, type Condition as gy, type RuleFormOverride as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type FieldViolation as h$, type BulkCreateSubmissionBySubmitterResponse as h0, type BulkSubmissionResult as h1, type ItemMetadata as h2, type ApplicationError as h3, type BulkActionMetadata as h4, type GetSubmissionRequest as h5, type GetSubmissionResponse as h6, type GetSubmissionByCheckoutIdRequest as h7, type GetSubmissionByCheckoutIdResponse as h8, type UpdateSubmissionRequest as h9, type QuerySubmissionsByNamespaceResponse as hA, type QuerySubmissionsByNamespaceForExportRequest as hB, type QuerySubmissionsByNamespaceForExportResponse as hC, type CountSubmissionsByFilterRequest as hD, type FormSubmissionsCount as hE, type CountSubmissionsRequest as hF, type CountDeletedSubmissionsRequest as hG, type FormDeletedSubmissionsCount as hH, type GetMediaUploadURLRequest as hI, type BulkMarkSubmissionsAsSeenRequest as hJ, type BulkMarkSubmissionsAsSeenResponse as hK, type GetSubmissionDownloadUrlRequest as hL, type SubmissionDocument as hM, type SubmissionDocumentDocumentOneOf as hN, type DocumentReady as hO, type DownloadSubmissionRequest as hP, type HeadersEntry as hQ, type GetFormattedSubmissionRequest as hR, type FormattedSubmission as hS, type ListFormattedSubmissionsRequest as hT, type ListFormattedSubmissionsResponse as hU, type FormattedFormSubmission as hV, type UpdateExtendedFieldsRequest as hW, type BulkUpdateFormSubmissionTagsRequest as hX, type BulkUpdateFormSubmissionTagsResult as hY, type BulkUpdateFormSubmissionTagsByFilterRequest as hZ, type ValidateFormSubmissionRequest as h_, type UpdateSubmissionResponse as ha, type ConfirmSubmissionRequest as hb, type DeleteSubmissionRequest as hc, type DeleteSubmissionResponse as hd, type BulkDeleteSubmissionRequest as he, type BulkDeleteSubmissionResult as hf, type RestoreSubmissionFromTrashBinRequest as hg, type RemoveSubmissionFromTrashBinRequest as hh, type RemoveSubmissionFromTrashBinResponse as hi, type BulkRemoveSubmissionFromTrashBinRequest as hj, type BulkRemoveSubmissionFromTrashBinResult as hk, type ListDeletedSubmissionsRequest as hl, type CursorPaging as hm, type CursorPagingMetadata as hn, type Cursors as ho, type GetDeletedSubmissionRequest as hp, type QuerySubmissionRequest as hq, type CursorQueryPagingMethodOneOf as hr, type Sorting as hs, type SearchSubmissionsByNamespaceRequest as ht, type CursorSearch as hu, type CursorSearchPagingMethodOneOf as hv, type SearchDetails as hw, type SearchSubmissionsByNamespaceForExportRequest as hx, type SearchSubmissionsByNamespaceForExportResponse as hy, type QuerySubmissionsByNamespaceRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PropertiesTypePropertiesTypeEnumWithLiterals as i$, type FieldViolationErrorDataOneOf as i0, type SubmissionValidationErrors as i1, type SubmissionValidationError as i2, type SubmissionValidationErrorErrorMessageOneOf as i3, type BaseEventMetadata as i4, type EventMetadata as i5, type FormSubmissionSearchSpec as i6, type SubmissionsQueryResult as i7, type SubmissionStatusWithLiterals as i8, type OptInLevelWithLiterals as i9, type ViewRoleWithLiterals as iA, type VoteRoleWithLiterals as iB, type PollLayoutTypeWithLiterals as iC, type PollLayoutDirectionWithLiterals as iD, type BackgroundTypeWithLiterals as iE, type DecorationTypeWithLiterals as iF, type FontTypeWithLiterals as iG, type PositionWithLiterals as iH, type AspectRatioWithLiterals as iI, type ResizingWithLiterals as iJ, type PlacementWithLiterals as iK, type CardStylesTypeWithLiterals as iL, type CardStylesAlignmentWithLiterals as iM, type LayoutWithLiterals as iN, type AppTypeWithLiterals as iO, type InitialExpandedItemsWithLiterals as iP, type DirectionWithLiterals as iQ, type VerticalAlignmentWithLiterals as iR, type NullValueWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type InputFieldNumberComponentTypeWithLiterals as iY, type InputFieldBooleanComponentTypeWithLiterals as iZ, type ArrayItemsItemTypeWithLiterals as i_, type StringTypeFormatEnumFormatWithLiterals as ia, type ValidationFormatWithLiterals as ib, type ProductTypeWithLiterals as ic, type PriceTypeWithLiterals as id, type InputFieldStringTypeFormatEnumFormatWithLiterals as ie, type InputFieldStringComponentTypeWithLiterals as ig, type NodeTypeWithLiterals as ih, type WidthTypeWithLiterals as ii, type PluginContainerDataAlignmentWithLiterals as ij, type ButtonDataTypeWithLiterals as ik, type LinkTargetWithLiterals as il, type TextAlignmentWithLiterals as im, type LineStyleWithLiterals as io, type WidthWithLiterals as ip, type DividerDataAlignmentWithLiterals as iq, type ViewModeWithLiterals as ir, type LayoutTypeWithLiterals as is, type OrientationWithLiterals as it, type CropWithLiterals as iu, type ThumbnailsAlignmentWithLiterals as iv, type GIFTypeWithLiterals as iw, type SourceWithLiterals as ix, type StylesPositionWithLiterals as iy, type MapTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, updateSubmission as j$, type InputFieldArrayComponentTypeWithLiterals as j0, type InputFieldWixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type InputFieldPaymentComponentTypeWithLiterals as j3, type InputFieldSchedulingComponentTypeWithLiterals as j4, type FormatWithLiterals as j5, type MultilineAddressComponentTypeWithLiterals as j6, type TypeWithLiterals as j7, type InputFieldInputTypeWithLiterals as j8, type FormFieldContactInfoEmailInfoTagWithLiterals as j9, type KindWithLiterals as jA, type SpamFilterProtectionLevelWithLiterals as jB, type RequiredIndicatorWithLiterals as jC, type RequiredIndicatorPlacementWithLiterals as jD, type TargetWithLiterals as jE, type SubmitSuccessActionWithLiterals as jF, type ChangeablePropertyWithLiterals as jG, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jH, type OperatorWithLiterals as jI, type WebhookIdentityTypeWithLiterals as jJ, type IdentityTypeWithLiterals as jK, type ErrorTypeWithLiterals as jL, type SortOrderWithLiterals as jM, type ModeWithLiterals as jN, type StatusWithLiterals as jO, type SubmissionErrorTypeWithLiterals as jP, type CommonSearchWithEntityContext as jQ, onSubmissionCreated as jR, onSubmissionDeleted as jS, onSubmissionRemovedSubmissionFromTrash as jT, onSubmissionStatusUpdated as jU, onSubmissionContactMapped as jV, onSubmissionContactMappingSkipped as jW, onSubmissionUpdated as jX, upsertContactFromSubmission as jY, createSubmission as jZ, getSubmission as j_, type FormFieldContactInfoPhoneInfoTagWithLiterals as ja, type AddressInfoTagWithLiterals as jb, type SubscriptionInfoOptInLevelWithLiterals as jc, type FormFieldContactInfoContactFieldWithLiterals as jd, type FormFieldV2FieldTypeWithLiterals as je, type DisplayFieldTypeWithLiterals as jf, type FieldTypeWithLiterals as jg, type FormatEnumFormatWithLiterals as jh, type StringComponentTypeWithLiterals as ji, type NumberComponentTypeWithLiterals as jj, type BooleanComponentTypeWithLiterals as jk, type ItemTypeWithLiterals as jl, type PropertiesTypeEnumWithLiterals as jm, type ArrayComponentTypeWithLiterals as jn, type WixFileComponentTypeWithLiterals as jo, type PaymentComponentTypeWithLiterals as jp, type ComponentTypeWithLiterals as jq, type SchedulingComponentTypeWithLiterals as jr, type InputTypeWithLiterals as js, type EmailInfoTagWithLiterals as jt, type PhoneInfoTagWithLiterals as ju, type TagWithLiterals as jv, type ConfirmationLevelWithLiterals as jw, type ContactFieldWithLiterals as jx, type DisplayFieldDisplayFieldTypeWithLiterals as jy, type OverrideEntityTypeWithLiterals as jz, type CursorQuery as k, confirmSubmission as k0, deleteSubmission as k1, bulkDeleteSubmission as k2, restoreSubmissionFromTrashBin as k3, removeSubmissionFromTrashBin as k4, bulkRemoveSubmissionFromTrashBin as k5, listDeletedSubmissions as k6, getDeletedSubmission as k7, querySubmission as k8, querySubmissionsByNamespace as k9, countSubmissionsByFilter as ka, countSubmissions as kb, countDeletedSubmissions as kc, getMediaUploadUrl as kd, bulkMarkSubmissionsAsSeen as ke, getSubmissionDownloadUrl as kf, downloadSubmission as kg, getFormattedSubmission as kh, updateExtendedFields as ki, bulkUpdateFormSubmissionTags as kj, bulkUpdateFormSubmissionTagsByFilter as kk, validateFormSubmission as kl, 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 };
@@ -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 GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-B5nDaidY.js';
3
- export { gK as ActionEvent, fY as Address, fZ as AddressComponentTypeOptionsOneOf, fG as AddressInfo, aY as AddressInfoTag, jb as AddressInfoTagWithLiterals, eO as AddressLine2, aF as Alignment, iU as AlignmentWithLiterals, gq as AllowedValuesOptions, du as AnchorData, gv as AndCondition, dA as AppEmbedData, dB as AppEmbedDataAppDataOneOf, az as AppType, iO as AppTypeWithLiterals, h2 as ApplicationError, eG as Appointment, eH as AppointmentFormatInfoOneOf, b8 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, c6 as ArrayErrorMessages, fA as ArrayItems, aL as ArrayItemsItemType, fB as ArrayItemsItemTypeOptionsOneOf, i_ as ArrayItemsItemTypeWithLiterals, fw as ArrayType, c4 as ArrayTypeArrayItems, c5 as ArrayTypeArrayItemsItemsOneOf, at as AspectRatio, iI as AspectRatioWithLiterals, dU as AudioData, dj as Background, dk as BackgroundBackgroundOneOf, ap as BackgroundType, iE as BackgroundTypeWithLiterals, i4 as BaseEventMetadata, dX as BlockquoteData, dC as BookingData, b5 as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, b_ as BooleanErrorMessages, fv as BooleanType, cz as Border, dS as BorderColors, g4 as BreakPoint, h3 as BulkActionMetadata, g_ as BulkCreateSubmissionBySubmitterData, gZ as BulkCreateSubmissionBySubmitterRequest, g$ as BulkCreateSubmissionBySubmitterResponse, hd as BulkDeleteSubmissionRequest, he as BulkDeleteSubmissionResult, hI as BulkMarkSubmissionsAsSeenRequest, hJ as BulkMarkSubmissionsAsSeenResponse, hi as BulkRemoveSubmissionFromTrashBinRequest, hj as BulkRemoveSubmissionFromTrashBinResult, h0 as BulkSubmissionResult, hZ as BulkUpdateFormSubmissionTagsByFilterRequest, hX as BulkUpdateFormSubmissionTagsRequest, hY as BulkUpdateFormSubmissionTagsResult, dW as BulletedListData, cy as ButtonData, a6 as ButtonDataType, ik as ButtonDataTypeWithLiterals, dE as ButtonStyles, dY as CaptionData, dH as CardStyles, ax as CardStylesAlignment, iM as CardStylesAlignmentWithLiterals, aw as CardStylesType, iL as CardStylesTypeWithLiterals, dR as CellStyle, br as ChangeableProperty, jG as ChangeablePropertyWithLiterals, ek as Checkbox, es as CheckboxGroup, gB as Checkout, cK as CodeBlockData, dN as CollapsibleListData, dv as ColorData, cA as Colors, jQ as CommonSearchWithEntityContext, bb as ComponentType, jq as ComponentTypeWithLiterals, gx as Condition, gt as ConditionNode, gu as ConditionNodeNodeOneOf, ha as ConfirmSubmissionRequest, bh as ConfirmationLevel, jw as ConfirmationLevelWithLiterals, bi as ContactField, jx as ContactFieldWithLiterals, hF as CountDeletedSubmissionsRequest, hC as CountSubmissionsByFilterRequest, hE as CountSubmissionsRequest, bM as CreateCheckoutFromSubmissionRequest, bN as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gA as CreateCheckoutFromSubmissionResponse, gX as CreateSubmissionBySubmitterRequest, gY as CreateSubmissionBySubmitterResponse, gV as CreateSubmissionForMigrationRequest, gW as CreateSubmissionForMigrationResponse, gR as CreateSubmissionRequest, gS as CreateSubmissionResponse, af as Crop, iu as CropWithLiterals, hl as CursorPaging, hm as CursorPagingMetadata, hq as CursorQueryPagingMethodOneOf, ht as CursorSearch, hu as CursorSearchPagingMethodOneOf, hn as Cursors, fH as CustomFieldInfo, e6 as CustomOption, cl as DataExtensionsDetails, eb as DateInput, ed as DatePicker, fr as DateTimeConstraints, e9 as DateTimeInput, ds as Decoration, dt as DecorationDataOneOf, aq as DecorationType, iF as DecorationTypeWithLiterals, eP as DefaultCountryConfig, eQ as DefaultCountryConfigOptionsOneOf, hb as DeleteSubmissionRequest, hc as DeleteSubmissionResponse, dq as Design, dP as Dimensions, aB as Direction, iQ as DirectionWithLiterals, fh as DisplayField, bj as DisplayFieldDisplayFieldType, fi as DisplayFieldDisplayFieldTypeOptionsOneOf, jy as DisplayFieldDisplayFieldTypeWithLiterals, b0 as DisplayFieldType, jf as DisplayFieldTypeWithLiterals, cM as DividerData, ab as DividerDataAlignment, iq as DividerDataAlignmentWithLiterals, hN as DocumentReady, d$ as DocumentStyle, gE as DomainEvent, gF as DomainEventBodyOneOf, eC as DonationInput, eD as DonationInputOption, hO as DownloadSubmissionRequest, e7 as Dropdown, e8 as DropdownOption, cc as DynamicPriceOptions, fE as EmailInfo, be as EmailInfoTag, jt as EmailInfoTagWithLiterals, dL as EmbedData, gL as Empty, gG as EntityCreatedEvent, gJ as EntityDeletedEvent, gI as EntityUpdatedEvent, bw as ErrorType, jL as ErrorTypeWithLiterals, dD as EventData, i5 as EventMetadata, bD as ExtendedFields, fl as Field, fm as FieldFieldTypeOptionsOneOf, gm as FieldGroup, gr as FieldOverride, gs as FieldOverridePropertyTypeOptionsOneOf, cg as FieldOverrides, b1 as FieldType, jg as FieldTypeWithLiterals, h$ as FieldViolation, i0 as FieldViolationErrorDataOneOf, f_ as FieldsDisplayField, f$ as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, ch as FieldsOverrides, eR as FieldsSettings, cN as FileData, cO as FileSource, cP as FileSourceDataOneOf, ex as FileType, ey as FileUpload, aI as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, eF as FixedPayment, cb as FixedPriceOptions, dy as FontSizeData, ar as FontType, iG as FontTypeWithLiterals, bO as Form, hG as FormDeletedSubmissionsCount, bP as FormField, b$ as FormFieldArrayType, bZ as FormFieldBooleanType, fC as FormFieldContactInfo, fD as FormFieldContactInfoAdditionalInfoOneOf, eW as FormFieldContactInfoAddressInfo, a_ as FormFieldContactInfoContactField, jd as FormFieldContactInfoContactFieldWithLiterals, eX as FormFieldContactInfoCustomFieldInfo, eU as FormFieldContactInfoEmailInfo, aW as FormFieldContactInfoEmailInfoTag, j9 as FormFieldContactInfoEmailInfoTagWithLiterals, eV as FormFieldContactInfoPhoneInfo, aX as FormFieldContactInfoPhoneInfoTag, ja as FormFieldContactInfoPhoneInfoTagWithLiterals, eY as FormFieldContactInfoSubscriptionInfo, bW as FormFieldNumberType, c0 as FormFieldObjectType, bQ as FormFieldStringType, bR as FormFieldStringTypeFormatOptionsOneOf, cn as FormFieldV2, a$ as FormFieldV2FieldType, co as FormFieldV2FieldTypeOptionsOneOf, je as FormFieldV2FieldTypeWithLiterals, ff as FormFieldV2InputField, fg as FormFieldV2InputFieldInputTypeOptionsOneOf, g3 as FormLayout, gb as FormOverride, gc as FormProperties, ga as FormRule, i6 as FormSubmissionSearchSpec, bH as FormSubmissionStatusUpdatedEvent, hD as FormSubmissionsCount, aS as Format, b2 as FormatEnumFormat, jh as FormatEnumFormatWithLiterals, j5 as FormatWithLiterals, hV as FormattedFormSubmission, hS as FormattedSubmission, d0 as GIF, c$ as GIFData, ah as GIFType, iw as GIFTypeWithLiterals, cR as GalleryData, cX as GalleryOptions, cY as GalleryOptionsLayout, ho as GetDeletedSubmissionRequest, hR as GetFormattedSubmissionRequest, hH as GetMediaUploadURLRequest, h6 as GetSubmissionByCheckoutIdRequest, h7 as GetSubmissionByCheckoutIdResponse, hK as GetSubmissionDownloadUrlRequest, h4 as GetSubmissionRequest, h5 as GetSubmissionResponse, di as Gradient, g7 as Group, d2 as HTMLData, d3 as HTMLDataDataOneOf, hQ as HeadersEntry, d1 as HeadingData, cF as Height, gp as HiddenOptions, gN as IdentificationData, gO as IdentificationDataIdOneOf, bv as IdentityType, jK as IdentityTypeWithLiterals, cT as Image, d4 as ImageData, d6 as ImageDataStyles, aG as ImageFit, iV as ImageFitWithLiterals, aE as ImagePosition, iT as ImagePositionWithLiterals, dF as ImageStyles, eK as InPersonOptions, aA as InitialExpandedItems, iP as InitialExpandedItemsWithLiterals, fn as InputField, aN as InputFieldArrayComponentType, j0 as InputFieldArrayComponentTypeWithLiterals, el as InputFieldArrayType, eq as InputFieldArrayTypeArrayItems, er as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aK as InputFieldBooleanComponentType, iZ as InputFieldBooleanComponentTypeWithLiterals, ej as InputFieldBooleanType, aV as InputFieldInputType, fo as InputFieldInputTypeOptionsOneOf, j8 as InputFieldInputTypeWithLiterals, em as InputFieldIntegerType, fb as InputFieldMultilineAddress, fc as InputFieldMultilineAddressComponentTypeOptionsOneOf, aJ as InputFieldNumberComponentType, iY as InputFieldNumberComponentTypeWithLiterals, eg as InputFieldNumberType, en as InputFieldObjectType, eo as InputFieldObjectTypePropertiesType, ep as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f9 as InputFieldPayment, aQ as InputFieldPaymentComponentType, fa as InputFieldPaymentComponentTypeOptionsOneOf, j3 as InputFieldPaymentComponentTypeWithLiterals, fd as InputFieldScheduling, aR as InputFieldSchedulingComponentType, fe as InputFieldSchedulingComponentTypeOptionsOneOf, j4 as InputFieldSchedulingComponentTypeWithLiterals, a2 as InputFieldStringComponentType, ig as InputFieldStringComponentTypeWithLiterals, cp as InputFieldStringType, cr as InputFieldStringTypeDateTimeConstraints, a1 as InputFieldStringTypeFormatEnumFormat, ie as InputFieldStringTypeFormatEnumFormatWithLiterals, cq as InputFieldStringTypeFormatOptionsOneOf, cs as InputFieldStringTypePhoneConstraints, f7 as InputFieldWixFile, aO as InputFieldWixFileComponentType, f8 as InputFieldWixFileComponentTypeOptionsOneOf, j1 as InputFieldWixFileComponentTypeWithLiterals, f3 as InputField_Array, f4 as InputField_ArrayComponentTypeOptionsOneOf, f1 as InputField_Boolean, f2 as InputField_BooleanComponentTypeOptionsOneOf, e$ as InputField_Number, f0 as InputField_NumberComponentTypeOptionsOneOf, f5 as InputField_Object, f6 as InputField_ObjectValidationOneOf, eZ as InputField_String, e_ as InputField_StringComponentTypeOptionsOneOf, bd as InputType, js as InputTypeWithLiterals, bY as IntegerType, gC as IsFormSubmittableRequest, gD as IsFormSubmittableResponse, cV as Item, cW as ItemDataOneOf, g5 as ItemLayout, g6 as ItemLayoutItemOneOf, h1 as ItemMetadata, cZ as ItemStyle, b6 as ItemType, jl as ItemTypeWithLiterals, bl as Kind, jA as KindWithLiterals, ay as Layout, dZ as LayoutCellData, ad as LayoutType, is as LayoutTypeWithLiterals, iN as LayoutWithLiterals, gg as LimitationRule, a9 as LineStyle, io as LineStyleWithLiterals, cH as Link, dw as LinkData, cI as LinkDataOneOf, d7 as LinkPreviewData, d8 as LinkPreviewDataStyles, a7 as LinkTarget, il as LinkTargetWithLiterals, hk as ListDeletedSubmissionsRequest, hT as ListFormattedSubmissionsRequest, hU as ListFormattedSubmissionsResponse, dT as ListValue, eI as Location, eJ as LocationLocationInfoOneOf, d9 as MapData, da as MapSettings, ak as MapType, iz as MapTypeWithLiterals, g8 as Margin, bK as MarketingSubscriptionDetails, cS as Media, e1 as MediaItem, e2 as MediaItemMediaOneOf, e3 as MediaSettings, dx as MentionData, gM as MessageEnvelope, d_ as Metadata, by as Mode, jN as ModeWithLiterals, eN as MultilineAddress, aT as MultilineAddressComponentType, j6 as MultilineAddressComponentTypeWithLiterals, cf as MultilineAddressValidation, gf as NestedForm, ci as NestedFormFieldOverrides, cm as NestedFormOverrides, cv as Node, cw as NodeDataOneOf, cx as NodeStyle, a3 as NodeType, ih as NodeTypeWithLiterals, aD as NullValue, iS as NullValueWithLiterals, b4 as NumberComponentType, jj as NumberComponentTypeWithLiterals, bX as NumberErrorMessages, eh as NumberInput, aH as NumberOfColumns, iW as NumberOfColumnsWithLiterals, fu as NumberType, c3 as ObjectErrorMessages, fx as ObjectType, c1 as ObjectTypePropertiesType, c2 as ObjectTypePropertiesTypePropertiesTypeOneOf, dM as Oembed, bt as Operator, jI as OperatorWithLiterals, Y as OptInLevel, i9 as OptInLevelWithLiterals, et as Option, dm as OptionDesign, dh as OptionLayout, gw as OrCondition, bE as OrderDetails, dV as OrderedListData, ae as Orientation, it as OrientationWithLiterals, bk as OverrideEntityType, bs as OverrideEntityTypeEnumOverrideEntityType, jH as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jz as OverrideEntityTypeWithLiterals, cQ as PDFSettings, g1 as PageNavigationOptions, db as ParagraphData, fU as Payment, ba as PaymentComponentType, fV as PaymentComponentTypeOptionsOneOf, jp as PaymentComponentTypeWithLiterals, eE as PaymentInput, c9 as PaymentType, dd as Permissions, fs as PhoneConstraints, fF as PhoneInfo, bf as PhoneInfoTag, ju as PhoneInfoTagWithLiterals, ea as PhoneInput, eM as PhoneOptions, av as Placement, iK as PlacementWithLiterals, dK as PlaybackOptions, cB as PluginContainerData, a5 as PluginContainerDataAlignment, ij as PluginContainerDataAlignmentWithLiterals, cC as PluginContainerDataWidth, cD as PluginContainerDataWidthDataOneOf, dn as Poll, dc as PollData, dp as PollDataLayout, dl as PollDesign, dg as PollLayout, ao as PollLayoutDirection, iD as PollLayoutDirectionWithLiterals, an as PollLayoutType, iC as PollLayoutTypeWithLiterals, de as PollOption, as as Position, iH as PositionWithLiterals, gd as PostSubmissionTriggers, c7 as PredefinedValidation, c8 as PredefinedValidationFormatOptionsOneOf, a0 as PriceType, id as PriceTypeWithLiterals, dI as PricingData, cd as Product, eA as ProductCheckboxGroup, eB as ProductCheckboxGroupOption, ce as ProductPriceOptionsOneOf, $ as ProductType, ic as ProductTypeWithLiterals, fy as PropertiesType, b7 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, aM as PropertiesTypePropertiesTypeEnum, i$ as PropertiesTypePropertiesTypeEnumWithLiterals, fz as PropertiesTypePropertiesTypeOptionsOneOf, bF as PublicTags, ca as QuantityLimit, hp as QuerySubmissionRequest, hA as QuerySubmissionsByNamespaceForExportRequest, hB as QuerySubmissionsByNamespaceForExportResponse, hy as QuerySubmissionsByNamespaceRequest, hz as QuerySubmissionsByNamespaceResponse, e4 as RadioGroup, e5 as RadioGroupOption, ei as RatingInput, hP as RawHttpResponse, gl as RedirectOptions, cJ as Rel, hg as RemoveSubmissionFromTrashBinRequest, hh as RemoveSubmissionFromTrashBinResponse, bI as RemovedSubmissionFromTrash, bn as RequiredIndicator, bo as RequiredIndicatorPlacement, jD as RequiredIndicatorPlacementWithLiterals, gh as RequiredIndicatorProperties, jC as RequiredIndicatorWithLiterals, go as RequiredOptions, au as Resizing, iJ as ResizingWithLiterals, gH as RestoreInfo, hf as RestoreSubmissionFromTrashBinRequest, dG as RibbonStyles, cu as RichContent, g0 as RichContentOptions, gn as Rule, gy as RuleFormOverride, gz as RuleFormOverrideEntityTypeOptionsOneOf, fW as Scheduling, bc as SchedulingComponentType, fX as SchedulingComponentTypeOptionsOneOf, jr as SchedulingComponentTypeWithLiterals, hv as SearchDetails, hw as SearchSubmissionsByNamespaceForExportRequest, hx as SearchSubmissionsByNamespaceForExportResponse, hs as SearchSubmissionsByNamespaceRequest, g9 as Section, ef as ServiceOption, ew as ServicesCheckboxGroup, ee as ServicesDropdown, df as Settings, ez as Signature, bx as SortOrder, jM as SortOrderWithLiterals, hr as Sorting, ai as Source, ix as SourceWithLiterals, bm as SpamFilterProtectionLevel, jB as SpamFilterProtectionLevelWithLiterals, cE as Spoiler, dz as SpoilerData, bz as Status, jO as StatusWithLiterals, g2 as Step, b3 as StringComponentType, ji as StringComponentTypeWithLiterals, bS as StringErrorMessages, fp as StringType, bT as StringTypeDateTimeConstraints, Z as StringTypeFormatEnumFormat, ia as StringTypeFormatEnumFormatWithLiterals, fq as StringTypeFormatOptionsOneOf, bU as StringTypePhoneConstraints, bV as StringTypeValidationMessages, cG as Styles, d5 as StylesBorder, aj as StylesPosition, iy as StylesPositionWithLiterals, bJ as SubmissionContactMapped, bL as SubmissionContactMappingSkipped, hL as SubmissionDocument, hM as SubmissionDocumentDocumentOneOf, bA as SubmissionErrorType, jP as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, i8 as SubmissionStatusWithLiterals, i2 as SubmissionValidationError, i3 as SubmissionValidationErrorErrorMessageOneOf, i1 as SubmissionValidationErrors, gT as SubmissionValidationErrorsDetails, i7 as SubmissionsQueryResult, gQ as SubmitContactResponse, gi as SubmitSettings, gj as SubmitSettingsSubmitSuccessActionOptionsOneOf, bq as SubmitSuccessAction, jF as SubmitSuccessActionWithLiterals, bB as Submitter, bC as SubmitterSubmitterOneOf, fI as SubscriptionInfo, aZ as SubscriptionInfoOptInLevel, jc as SubscriptionInfoOptInLevelWithLiterals, dQ as TableCellData, dO as TableData, bg as Tag, bG as TagList, jv as TagWithLiterals, eu as Tags, ev as TagsOption, bp as Target, jE as TargetWithLiterals, a8 as TextAlignment, im as TextAlignmentWithLiterals, dr as TextData, ct as TextInput, e0 as TextNodeStyle, cL as TextStyle, gk as ThankYouMessageOptions, c_ as Thumbnails, ag as ThumbnailsAlignment, iv as ThumbnailsAlignmentWithLiterals, ec as TimeInput, aU as Type, j7 as TypeWithLiterals, hW as UpdateExtendedFieldsRequest, h8 as UpdateSubmissionRequest, h9 as UpdateSubmissionResponse, aP as UploadFileFormat, j2 as UploadFileFormatWithLiterals, ge as UpsertContact, gP as UpsertContactFromSubmissionRequest, eS as V4FormFieldContactInfo, eT as V4FormFieldContactInfoAdditionalInfoOneOf, fk as V4PageNavigationOptions, fj as V4RichContentOptions, h_ as ValidateFormSubmissionRequest, cj as Validation, gU as ValidationError, _ as ValidationFormat, ib as ValidationFormatWithLiterals, ft as ValidationMessages, ck as ValidationValidationOneOf, aC as VerticalAlignment, iR as VerticalAlignmentWithLiterals, cU as Video, eL as VideoConferenceOptions, dJ as VideoData, ac as ViewMode, ir as ViewModeWithLiterals, al as ViewRole, iA as ViewRoleWithLiterals, am as VoteRole, iB as VoteRoleWithLiterals, bu as WebhookIdentityType, jJ as WebhookIdentityTypeWithLiterals, aa as Width, a4 as WidthType, ii as WidthTypeWithLiterals, ip as WidthWithLiterals, fS as WixFile, b9 as WixFileComponentType, fT as WixFileComponentTypeOptionsOneOf, jo as WixFileComponentTypeWithLiterals, fP as _Array, fQ as _ArrayComponentTypeOptionsOneOf, fN as _Boolean, fO as _BooleanComponentTypeOptionsOneOf, fL as _Number, fM as _NumberComponentTypeOptionsOneOf, fR as _Object, fJ as _String, fK as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-B5nDaidY.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 GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, E as BulkUpdateFormSubmissionTagsOptions, H as BulkUpdateFormSubmissionTagsResponse, I as BulkUpdateFormSubmissionTagsByFilterOptions, J as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, K as ValidateFormSubmissionResponse, M as SubmissionCreatedEnvelope, N as SubmissionDeletedEnvelope, O as SubmissionRemovedSubmissionFromTrashEnvelope, P as SubmissionStatusUpdatedEnvelope, T as SubmissionContactMappedEnvelope, W as SubmissionContactMappingSkippedEnvelope, X as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-BBNQW7g1.js';
3
+ export { gL as ActionEvent, fZ as Address, f_ as AddressComponentTypeOptionsOneOf, fH as AddressInfo, aZ as AddressInfoTag, jb as AddressInfoTagWithLiterals, eP as AddressLine2, aG as Alignment, iU as AlignmentWithLiterals, gr as AllowedValuesOptions, dv as AnchorData, gw as AndCondition, dB as AppEmbedData, dC as AppEmbedDataAppDataOneOf, aA as AppType, iO as AppTypeWithLiterals, h3 as ApplicationError, eH as Appointment, eI as AppointmentFormatInfoOneOf, b9 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, c7 as ArrayErrorMessages, fB as ArrayItems, aM as ArrayItemsItemType, fC as ArrayItemsItemTypeOptionsOneOf, i_ as ArrayItemsItemTypeWithLiterals, fx as ArrayType, c5 as ArrayTypeArrayItems, c6 as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, iI as AspectRatioWithLiterals, dV as AudioData, dk as Background, dl as BackgroundBackgroundOneOf, aq as BackgroundType, iE as BackgroundTypeWithLiterals, i4 as BaseEventMetadata, dY as BlockquoteData, dD as BookingData, b6 as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, b$ as BooleanErrorMessages, fw as BooleanType, cA as Border, dT as BorderColors, g5 as BreakPoint, h4 as BulkActionMetadata, g$ as BulkCreateSubmissionBySubmitterData, g_ as BulkCreateSubmissionBySubmitterRequest, h0 as BulkCreateSubmissionBySubmitterResponse, he as BulkDeleteSubmissionRequest, hf as BulkDeleteSubmissionResult, hJ as BulkMarkSubmissionsAsSeenRequest, hK as BulkMarkSubmissionsAsSeenResponse, hj as BulkRemoveSubmissionFromTrashBinRequest, hk as BulkRemoveSubmissionFromTrashBinResult, h1 as BulkSubmissionResult, hZ as BulkUpdateFormSubmissionTagsByFilterRequest, hX as BulkUpdateFormSubmissionTagsRequest, hY as BulkUpdateFormSubmissionTagsResult, dX as BulletedListData, cz as ButtonData, a7 as ButtonDataType, ik as ButtonDataTypeWithLiterals, dF as ButtonStyles, dZ as CaptionData, dI as CardStyles, ay as CardStylesAlignment, iM as CardStylesAlignmentWithLiterals, ax as CardStylesType, iL as CardStylesTypeWithLiterals, dS as CellStyle, bs as ChangeableProperty, jG as ChangeablePropertyWithLiterals, el as Checkbox, et as CheckboxGroup, gC as Checkout, cL as CodeBlockData, dO as CollapsibleListData, dw as ColorData, cB as Colors, jQ as CommonSearchWithEntityContext, bc as ComponentType, jq as ComponentTypeWithLiterals, gy as Condition, gu as ConditionNode, gv as ConditionNodeNodeOneOf, hb as ConfirmSubmissionRequest, bi as ConfirmationLevel, jw as ConfirmationLevelWithLiterals, bj as ContactField, jx as ContactFieldWithLiterals, hG as CountDeletedSubmissionsRequest, hD as CountSubmissionsByFilterRequest, hF as CountSubmissionsRequest, bN as CreateCheckoutFromSubmissionRequest, bO as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gB as CreateCheckoutFromSubmissionResponse, gY as CreateSubmissionBySubmitterRequest, gZ as CreateSubmissionBySubmitterResponse, gW as CreateSubmissionForMigrationRequest, gX as CreateSubmissionForMigrationResponse, gS as CreateSubmissionRequest, gT as CreateSubmissionResponse, ag as Crop, iu as CropWithLiterals, hm as CursorPaging, hn as CursorPagingMetadata, hr as CursorQueryPagingMethodOneOf, hu as CursorSearch, hv as CursorSearchPagingMethodOneOf, ho as Cursors, fI as CustomFieldInfo, e7 as CustomOption, cm as DataExtensionsDetails, ec as DateInput, ee as DatePicker, fs as DateTimeConstraints, ea as DateTimeInput, dt as Decoration, du as DecorationDataOneOf, ar as DecorationType, iF as DecorationTypeWithLiterals, eQ as DefaultCountryConfig, eR as DefaultCountryConfigOptionsOneOf, hc as DeleteSubmissionRequest, hd as DeleteSubmissionResponse, dr as Design, dQ as Dimensions, aC as Direction, iQ as DirectionWithLiterals, fi as DisplayField, bk as DisplayFieldDisplayFieldType, fj as DisplayFieldDisplayFieldTypeOptionsOneOf, jy as DisplayFieldDisplayFieldTypeWithLiterals, b1 as DisplayFieldType, jf as DisplayFieldTypeWithLiterals, cN as DividerData, ac as DividerDataAlignment, iq as DividerDataAlignmentWithLiterals, hO as DocumentReady, e0 as DocumentStyle, gF as DomainEvent, gG as DomainEventBodyOneOf, eD as DonationInput, eE as DonationInputOption, hP as DownloadSubmissionRequest, e8 as Dropdown, e9 as DropdownOption, cd as DynamicPriceOptions, fF as EmailInfo, bf as EmailInfoTag, jt as EmailInfoTagWithLiterals, dM as EmbedData, gM as Empty, gH as EntityCreatedEvent, gK as EntityDeletedEvent, gJ as EntityUpdatedEvent, bx as ErrorType, jL as ErrorTypeWithLiterals, dE as EventData, i5 as EventMetadata, bE as ExtendedFields, fm as Field, fn as FieldFieldTypeOptionsOneOf, gn as FieldGroup, gs as FieldOverride, gt as FieldOverridePropertyTypeOptionsOneOf, ch as FieldOverrides, b2 as FieldType, jg as FieldTypeWithLiterals, h$ as FieldViolation, i0 as FieldViolationErrorDataOneOf, f$ as FieldsDisplayField, g0 as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, ci as FieldsOverrides, eS as FieldsSettings, cO as FileData, cP as FileSource, cQ as FileSourceDataOneOf, ey as FileType, ez as FileUpload, aJ as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, eG as FixedPayment, cc as FixedPriceOptions, dz as FontSizeData, as as FontType, iG as FontTypeWithLiterals, bP as Form, hH as FormDeletedSubmissionsCount, bQ as FormField, c0 as FormFieldArrayType, b_ as FormFieldBooleanType, fD as FormFieldContactInfo, fE as FormFieldContactInfoAdditionalInfoOneOf, eX as FormFieldContactInfoAddressInfo, a$ as FormFieldContactInfoContactField, jd as FormFieldContactInfoContactFieldWithLiterals, eY as FormFieldContactInfoCustomFieldInfo, eV as FormFieldContactInfoEmailInfo, aX as FormFieldContactInfoEmailInfoTag, j9 as FormFieldContactInfoEmailInfoTagWithLiterals, eW as FormFieldContactInfoPhoneInfo, aY as FormFieldContactInfoPhoneInfoTag, ja as FormFieldContactInfoPhoneInfoTagWithLiterals, eZ as FormFieldContactInfoSubscriptionInfo, bX as FormFieldNumberType, c1 as FormFieldObjectType, bR as FormFieldStringType, bS as FormFieldStringTypeFormatOptionsOneOf, co as FormFieldV2, b0 as FormFieldV2FieldType, cp as FormFieldV2FieldTypeOptionsOneOf, je as FormFieldV2FieldTypeWithLiterals, fg as FormFieldV2InputField, fh as FormFieldV2InputFieldInputTypeOptionsOneOf, g4 as FormLayout, gc as FormOverride, gd as FormProperties, gb as FormRule, i6 as FormSubmissionSearchSpec, bI as FormSubmissionStatusUpdatedEvent, hE as FormSubmissionsCount, aT as Format, b3 as FormatEnumFormat, jh as FormatEnumFormatWithLiterals, j5 as FormatWithLiterals, hV as FormattedFormSubmission, hS as FormattedSubmission, d1 as GIF, d0 as GIFData, ai as GIFType, iw as GIFTypeWithLiterals, cS as GalleryData, cY as GalleryOptions, cZ as GalleryOptionsLayout, hp as GetDeletedSubmissionRequest, hR as GetFormattedSubmissionRequest, hI as GetMediaUploadURLRequest, h7 as GetSubmissionByCheckoutIdRequest, h8 as GetSubmissionByCheckoutIdResponse, hL as GetSubmissionDownloadUrlRequest, h5 as GetSubmissionRequest, h6 as GetSubmissionResponse, dj as Gradient, g8 as Group, d3 as HTMLData, d4 as HTMLDataDataOneOf, hQ as HeadersEntry, d2 as HeadingData, cG as Height, gq as HiddenOptions, gO as IdentificationData, gP as IdentificationDataIdOneOf, bw as IdentityType, jK as IdentityTypeWithLiterals, cU as Image, d5 as ImageData, d7 as ImageDataStyles, aH as ImageFit, iV as ImageFitWithLiterals, aF as ImagePosition, iT as ImagePositionWithLiterals, dG as ImageStyles, eL as InPersonOptions, aB as InitialExpandedItems, iP as InitialExpandedItemsWithLiterals, fo as InputField, aO as InputFieldArrayComponentType, j0 as InputFieldArrayComponentTypeWithLiterals, em as InputFieldArrayType, er as InputFieldArrayTypeArrayItems, es as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aL as InputFieldBooleanComponentType, iZ as InputFieldBooleanComponentTypeWithLiterals, ek as InputFieldBooleanType, aW as InputFieldInputType, fp as InputFieldInputTypeOptionsOneOf, j8 as InputFieldInputTypeWithLiterals, en as InputFieldIntegerType, fc as InputFieldMultilineAddress, fd as InputFieldMultilineAddressComponentTypeOptionsOneOf, aK as InputFieldNumberComponentType, iY as InputFieldNumberComponentTypeWithLiterals, eh as InputFieldNumberType, eo as InputFieldObjectType, ep as InputFieldObjectTypePropertiesType, eq as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, fa as InputFieldPayment, aR as InputFieldPaymentComponentType, fb as InputFieldPaymentComponentTypeOptionsOneOf, j3 as InputFieldPaymentComponentTypeWithLiterals, fe as InputFieldScheduling, aS as InputFieldSchedulingComponentType, ff as InputFieldSchedulingComponentTypeOptionsOneOf, j4 as InputFieldSchedulingComponentTypeWithLiterals, a3 as InputFieldStringComponentType, ig as InputFieldStringComponentTypeWithLiterals, cq as InputFieldStringType, cs as InputFieldStringTypeDateTimeConstraints, a2 as InputFieldStringTypeFormatEnumFormat, ie as InputFieldStringTypeFormatEnumFormatWithLiterals, cr as InputFieldStringTypeFormatOptionsOneOf, ct as InputFieldStringTypePhoneConstraints, f8 as InputFieldWixFile, aP as InputFieldWixFileComponentType, f9 as InputFieldWixFileComponentTypeOptionsOneOf, j1 as InputFieldWixFileComponentTypeWithLiterals, f4 as InputField_Array, f5 as InputField_ArrayComponentTypeOptionsOneOf, f2 as InputField_Boolean, f3 as InputField_BooleanComponentTypeOptionsOneOf, f0 as InputField_Number, f1 as InputField_NumberComponentTypeOptionsOneOf, f6 as InputField_Object, f7 as InputField_ObjectValidationOneOf, e_ as InputField_String, e$ as InputField_StringComponentTypeOptionsOneOf, be as InputType, js as InputTypeWithLiterals, bZ as IntegerType, gD as IsFormSubmittableRequest, gE as IsFormSubmittableResponse, cW as Item, cX as ItemDataOneOf, g6 as ItemLayout, g7 as ItemLayoutItemOneOf, h2 as ItemMetadata, c_ as ItemStyle, b7 as ItemType, jl as ItemTypeWithLiterals, bm as Kind, jA as KindWithLiterals, az as Layout, d_ as LayoutCellData, ae as LayoutType, is as LayoutTypeWithLiterals, iN as LayoutWithLiterals, gh as LimitationRule, aa as LineStyle, io as LineStyleWithLiterals, cI as Link, dx as LinkData, cJ as LinkDataOneOf, d8 as LinkPreviewData, d9 as LinkPreviewDataStyles, a8 as LinkTarget, il as LinkTargetWithLiterals, hl as ListDeletedSubmissionsRequest, hT as ListFormattedSubmissionsRequest, hU as ListFormattedSubmissionsResponse, dU as ListValue, eJ as Location, eK as LocationLocationInfoOneOf, da as MapData, db as MapSettings, al as MapType, iz as MapTypeWithLiterals, g9 as Margin, bL as MarketingSubscriptionDetails, cT as Media, e2 as MediaItem, e3 as MediaItemMediaOneOf, e4 as MediaSettings, dy as MentionData, gN as MessageEnvelope, d$ as Metadata, bz as Mode, jN as ModeWithLiterals, eO as MultilineAddress, aU as MultilineAddressComponentType, j6 as MultilineAddressComponentTypeWithLiterals, cg as MultilineAddressValidation, gg as NestedForm, cj as NestedFormFieldOverrides, cn as NestedFormOverrides, cw as Node, cx as NodeDataOneOf, cy as NodeStyle, a4 as NodeType, ih as NodeTypeWithLiterals, aE as NullValue, iS as NullValueWithLiterals, b5 as NumberComponentType, jj as NumberComponentTypeWithLiterals, bY as NumberErrorMessages, ei as NumberInput, aI as NumberOfColumns, iW as NumberOfColumnsWithLiterals, fv as NumberType, c4 as ObjectErrorMessages, fy as ObjectType, c2 as ObjectTypePropertiesType, c3 as ObjectTypePropertiesTypePropertiesTypeOneOf, dN as Oembed, bu as Operator, jI as OperatorWithLiterals, Z as OptInLevel, i9 as OptInLevelWithLiterals, eu as Option, dn as OptionDesign, di as OptionLayout, gx as OrCondition, bF as OrderDetails, dW as OrderedListData, af as Orientation, it as OrientationWithLiterals, bl as OverrideEntityType, bt as OverrideEntityTypeEnumOverrideEntityType, jH as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jz as OverrideEntityTypeWithLiterals, cR as PDFSettings, g2 as PageNavigationOptions, dc as ParagraphData, fV as Payment, bb as PaymentComponentType, fW as PaymentComponentTypeOptionsOneOf, jp as PaymentComponentTypeWithLiterals, eF as PaymentInput, ca as PaymentType, de as Permissions, ft as PhoneConstraints, fG as PhoneInfo, bg as PhoneInfoTag, ju as PhoneInfoTagWithLiterals, eb as PhoneInput, eN as PhoneOptions, aw as Placement, iK as PlacementWithLiterals, dL as PlaybackOptions, cC as PluginContainerData, a6 as PluginContainerDataAlignment, ij as PluginContainerDataAlignmentWithLiterals, cD as PluginContainerDataWidth, cE as PluginContainerDataWidthDataOneOf, dp as Poll, dd as PollData, dq as PollDataLayout, dm as PollDesign, dh as PollLayout, ap as PollLayoutDirection, iD as PollLayoutDirectionWithLiterals, ao as PollLayoutType, iC as PollLayoutTypeWithLiterals, df as PollOption, at as Position, iH as PositionWithLiterals, ge as PostSubmissionTriggers, c8 as PredefinedValidation, c9 as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, id as PriceTypeWithLiterals, dJ as PricingData, ce as Product, eB as ProductCheckboxGroup, eC as ProductCheckboxGroupOption, cf as ProductPriceOptionsOneOf, a0 as ProductType, ic as ProductTypeWithLiterals, fz as PropertiesType, b8 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, aN as PropertiesTypePropertiesTypeEnum, i$ as PropertiesTypePropertiesTypeEnumWithLiterals, fA as PropertiesTypePropertiesTypeOptionsOneOf, bG as PublicTags, cb as QuantityLimit, hq as QuerySubmissionRequest, hB as QuerySubmissionsByNamespaceForExportRequest, hC as QuerySubmissionsByNamespaceForExportResponse, hz as QuerySubmissionsByNamespaceRequest, hA as QuerySubmissionsByNamespaceResponse, e5 as RadioGroup, e6 as RadioGroupOption, ej as RatingInput, gm as RedirectOptions, cK as Rel, hh as RemoveSubmissionFromTrashBinRequest, hi as RemoveSubmissionFromTrashBinResponse, bJ as RemovedSubmissionFromTrash, bo as RequiredIndicator, bp as RequiredIndicatorPlacement, jD as RequiredIndicatorPlacementWithLiterals, gi as RequiredIndicatorProperties, jC as RequiredIndicatorWithLiterals, gp as RequiredOptions, av as Resizing, iJ as ResizingWithLiterals, gI as RestoreInfo, hg as RestoreSubmissionFromTrashBinRequest, dH as RibbonStyles, cv as RichContent, g1 as RichContentOptions, go as Rule, gz as RuleFormOverride, gA as RuleFormOverrideEntityTypeOptionsOneOf, fX as Scheduling, bd as SchedulingComponentType, fY as SchedulingComponentTypeOptionsOneOf, jr as SchedulingComponentTypeWithLiterals, hw as SearchDetails, hx as SearchSubmissionsByNamespaceForExportRequest, hy as SearchSubmissionsByNamespaceForExportResponse, ht as SearchSubmissionsByNamespaceRequest, ga as Section, eg as ServiceOption, ex as ServicesCheckboxGroup, ef as ServicesDropdown, dg as Settings, eA as Signature, by as SortOrder, jM as SortOrderWithLiterals, hs as Sorting, aj as Source, ix as SourceWithLiterals, bn as SpamFilterProtectionLevel, jB as SpamFilterProtectionLevelWithLiterals, cF as Spoiler, dA as SpoilerData, bA as Status, jO as StatusWithLiterals, g3 as Step, b4 as StringComponentType, ji as StringComponentTypeWithLiterals, bT as StringErrorMessages, fq as StringType, bU as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ia as StringTypeFormatEnumFormatWithLiterals, fr as StringTypeFormatOptionsOneOf, bV as StringTypePhoneConstraints, bW as StringTypeValidationMessages, cH as Styles, d6 as StylesBorder, ak as StylesPosition, iy as StylesPositionWithLiterals, bK as SubmissionContactMapped, bM as SubmissionContactMappingSkipped, hM as SubmissionDocument, hN as SubmissionDocumentDocumentOneOf, bB as SubmissionErrorType, jP as SubmissionErrorTypeWithLiterals, Y as SubmissionStatus, i8 as SubmissionStatusWithLiterals, i2 as SubmissionValidationError, i3 as SubmissionValidationErrorErrorMessageOneOf, i1 as SubmissionValidationErrors, gU as SubmissionValidationErrorsDetails, i7 as SubmissionsQueryResult, gR as SubmitContactResponse, gj as SubmitSettings, gk as SubmitSettingsSubmitSuccessActionOptionsOneOf, br as SubmitSuccessAction, jF as SubmitSuccessActionWithLiterals, bC as Submitter, bD as SubmitterSubmitterOneOf, fJ as SubscriptionInfo, a_ as SubscriptionInfoOptInLevel, jc as SubscriptionInfoOptInLevelWithLiterals, dR as TableCellData, dP as TableData, bh as Tag, bH as TagList, jv as TagWithLiterals, ev as Tags, ew as TagsOption, bq as Target, jE as TargetWithLiterals, a9 as TextAlignment, im as TextAlignmentWithLiterals, ds as TextData, cu as TextInput, e1 as TextNodeStyle, cM as TextStyle, gl as ThankYouMessageOptions, c$ as Thumbnails, ah as ThumbnailsAlignment, iv as ThumbnailsAlignmentWithLiterals, ed as TimeInput, aV as Type, j7 as TypeWithLiterals, hW as UpdateExtendedFieldsRequest, h9 as UpdateSubmissionRequest, ha as UpdateSubmissionResponse, aQ as UploadFileFormat, j2 as UploadFileFormatWithLiterals, gf as UpsertContact, gQ as UpsertContactFromSubmissionRequest, eT as V4FormFieldContactInfo, eU as V4FormFieldContactInfoAdditionalInfoOneOf, fl as V4PageNavigationOptions, fk as V4RichContentOptions, h_ as ValidateFormSubmissionRequest, ck as Validation, gV as ValidationError, $ as ValidationFormat, ib as ValidationFormatWithLiterals, fu as ValidationMessages, cl as ValidationValidationOneOf, aD as VerticalAlignment, iR as VerticalAlignmentWithLiterals, cV as Video, eM as VideoConferenceOptions, dK as VideoData, ad as ViewMode, ir as ViewModeWithLiterals, am as ViewRole, iA as ViewRoleWithLiterals, an as VoteRole, iB as VoteRoleWithLiterals, bv as WebhookIdentityType, jJ as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, ii as WidthTypeWithLiterals, ip as WidthWithLiterals, fT as WixFile, ba as WixFileComponentType, fU as WixFileComponentTypeOptionsOneOf, jo as WixFileComponentTypeWithLiterals, fQ as _Array, fR as _ArrayComponentTypeOptionsOneOf, fO as _Boolean, fP as _BooleanComponentTypeOptionsOneOf, fM as _Number, fN as _NumberComponentTypeOptionsOneOf, fS as _Object, fK as _String, fL as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-BBNQW7g1.js';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -237,6 +237,15 @@ interface GetSubmissionDownloadUrlSignature {
237
237
  */
238
238
  (submissionId: string): Promise<NonNullablePaths<GetSubmissionDownloadUrlResponse, `document.readyDetails.downloadUrl` | `document.status`, 4>>;
239
239
  }
240
+ declare function downloadSubmission$1(httpClient: HttpClient): DownloadSubmissionSignature;
241
+ interface DownloadSubmissionSignature {
242
+ /**
243
+ * Download a submission document by redirecting to the document URL.
244
+ * @param - Submission id for which the document is generated.
245
+ * @param - Access token to download the document.
246
+ */
247
+ (submissionId: string, accessToken: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
248
+ }
240
249
  declare function getFormattedSubmission$1(httpClient: HttpClient): GetFormattedSubmissionSignature;
241
250
  interface GetFormattedSubmissionSignature {
242
251
  /**
@@ -309,6 +318,7 @@ declare const countDeletedSubmissions: MaybeContext<BuildRESTFunction<typeof cou
309
318
  declare const getMediaUploadUrl: MaybeContext<BuildRESTFunction<typeof getMediaUploadUrl$1> & typeof getMediaUploadUrl$1>;
310
319
  declare const bulkMarkSubmissionsAsSeen: MaybeContext<BuildRESTFunction<typeof bulkMarkSubmissionsAsSeen$1> & typeof bulkMarkSubmissionsAsSeen$1>;
311
320
  declare const getSubmissionDownloadUrl: MaybeContext<BuildRESTFunction<typeof getSubmissionDownloadUrl$1> & typeof getSubmissionDownloadUrl$1>;
321
+ declare const downloadSubmission: MaybeContext<BuildRESTFunction<typeof downloadSubmission$1> & typeof downloadSubmission$1>;
312
322
  declare const getFormattedSubmission: MaybeContext<BuildRESTFunction<typeof getFormattedSubmission$1> & typeof getFormattedSubmission$1>;
313
323
  declare const updateExtendedFields: MaybeContext<BuildRESTFunction<typeof updateExtendedFields$1> & typeof updateExtendedFields$1>;
314
324
  /** @internal */
@@ -346,4 +356,4 @@ declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onS
346
356
  */
347
357
  declare const onSubmissionUpdated: BuildEventDefinition<typeof onSubmissionUpdated$1> & typeof onSubmissionUpdated$1;
348
358
 
349
- export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, BulkUpdateFormSubmissionTagsByFilterOptions, BulkUpdateFormSubmissionTagsByFilterResponse, BulkUpdateFormSubmissionTagsOptions, BulkUpdateFormSubmissionTagsResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, bulkUpdateFormSubmissionTags, bulkUpdateFormSubmissionTagsByFilter, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };
359
+ export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, BulkUpdateFormSubmissionTagsByFilterOptions, BulkUpdateFormSubmissionTagsByFilterResponse, BulkUpdateFormSubmissionTagsOptions, BulkUpdateFormSubmissionTagsResponse, 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, bulkUpdateFormSubmissionTags, bulkUpdateFormSubmissionTagsByFilter, 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 };
@@ -137,6 +137,7 @@ __export(index_exports, {
137
137
  countSubmissionsByFilter: () => countSubmissionsByFilter4,
138
138
  createSubmission: () => createSubmission4,
139
139
  deleteSubmission: () => deleteSubmission4,
140
+ downloadSubmission: () => downloadSubmission4,
140
141
  getDeletedSubmission: () => getDeletedSubmission4,
141
142
  getFormattedSubmission: () => getFormattedSubmission4,
142
143
  getMediaUploadUrl: () => getMediaUploadUrl4,
@@ -175,6 +176,7 @@ var import_rename_all_nested_keys = require("@wix/sdk-runtime/rename-all-nested-
175
176
 
176
177
  // src/forms-v4-submission-submissions.http.ts
177
178
  var import_rest_modules = require("@wix/sdk-runtime/rest-modules");
179
+ var import_bytes = require("@wix/sdk-runtime/transformations/bytes");
178
180
  var import_timestamp = require("@wix/sdk-runtime/transformations/timestamp");
179
181
  var import_timestamp2 = require("@wix/sdk-runtime/transformations/timestamp");
180
182
  var import_field_mask = require("@wix/sdk-runtime/transformations/field-mask");
@@ -801,6 +803,30 @@ function getSubmissionDownloadUrl(payload) {
801
803
  }
802
804
  return __getSubmissionDownloadUrl;
803
805
  }
806
+ function downloadSubmission(payload) {
807
+ function __downloadSubmission({ host }) {
808
+ const metadata = {
809
+ entityFqdn: "wix.forms.v4.submission",
810
+ method: "GET",
811
+ methodFqn: "wix.forms.v4.FormSubmissionService.DownloadSubmission",
812
+ packageName: PACKAGE_NAME,
813
+ url: resolveWixFormsV4FormSubmissionServiceUrl({
814
+ protoPath: "/v4/submissions/{submissionId}/download",
815
+ data: payload,
816
+ host
817
+ }),
818
+ params: (0, import_rest_modules.toURLSearchParams)(payload),
819
+ transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
820
+ {
821
+ transformFn: import_bytes.transformRESTBytesToSDKBytes,
822
+ paths: [{ path: "body" }]
823
+ }
824
+ ])
825
+ };
826
+ return metadata;
827
+ }
828
+ return __downloadSubmission;
829
+ }
804
830
  function getFormattedSubmission(payload) {
805
831
  function __getFormattedSubmission({ host }) {
806
832
  const metadata = {
@@ -1471,7 +1497,6 @@ var ItemType = /* @__PURE__ */ ((ItemType2) => {
1471
1497
  ItemType2["STRING"] = "STRING";
1472
1498
  ItemType2["NUMBER"] = "NUMBER";
1473
1499
  ItemType2["BOOLEAN"] = "BOOLEAN";
1474
- ItemType2["OBJECT"] = "OBJECT";
1475
1500
  return ItemType2;
1476
1501
  })(ItemType || {});
1477
1502
  var PropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypeEnum2) => {
@@ -2339,6 +2364,32 @@ async function getSubmissionDownloadUrl2(submissionId) {
2339
2364
  throw transformedError;
2340
2365
  }
2341
2366
  }
2367
+ async function downloadSubmission2(submissionId, accessToken) {
2368
+ const { httpClient, sideEffects } = arguments[2];
2369
+ const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
2370
+ submissionId,
2371
+ accessToken
2372
+ });
2373
+ const reqOpts = downloadSubmission(payload);
2374
+ sideEffects?.onSiteCall?.();
2375
+ try {
2376
+ const result = await httpClient.request(reqOpts);
2377
+ sideEffects?.onSuccess?.(result);
2378
+ return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
2379
+ } catch (err) {
2380
+ const transformedError = (0, import_transform_error.transformError)(
2381
+ err,
2382
+ {
2383
+ spreadPathsToArguments: {},
2384
+ explicitPathsToArguments: { submissionId: "$[0]", accessToken: "$[1]" },
2385
+ singleArgumentUnchanged: false
2386
+ },
2387
+ ["submissionId", "accessToken"]
2388
+ );
2389
+ sideEffects?.onError?.(err);
2390
+ throw transformedError;
2391
+ }
2392
+ }
2342
2393
  async function getFormattedSubmission2(submissionId) {
2343
2394
  const { httpClient, sideEffects } = arguments[1];
2344
2395
  const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
@@ -2653,6 +2704,14 @@ function getSubmissionDownloadUrl3(httpClient) {
2653
2704
  { httpClient }
2654
2705
  );
2655
2706
  }
2707
+ function downloadSubmission3(httpClient) {
2708
+ return (submissionId, accessToken) => downloadSubmission2(
2709
+ submissionId,
2710
+ accessToken,
2711
+ // @ts-ignore
2712
+ { httpClient }
2713
+ );
2714
+ }
2656
2715
  function getFormattedSubmission3(httpClient) {
2657
2716
  return (submissionId) => getFormattedSubmission2(
2658
2717
  submissionId,
@@ -2825,6 +2884,7 @@ var countDeletedSubmissions4 = /* @__PURE__ */ (0, import_rest_modules3.createRE
2825
2884
  var getMediaUploadUrl4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getMediaUploadUrl3);
2826
2885
  var bulkMarkSubmissionsAsSeen4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkMarkSubmissionsAsSeen3);
2827
2886
  var getSubmissionDownloadUrl4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getSubmissionDownloadUrl3);
2887
+ var downloadSubmission4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(downloadSubmission3);
2828
2888
  var getFormattedSubmission4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getFormattedSubmission3);
2829
2889
  var updateExtendedFields4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(updateExtendedFields3);
2830
2890
  var bulkUpdateFormSubmissionTags4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkUpdateFormSubmissionTags3);
@@ -2970,6 +3030,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
2970
3030
  countSubmissionsByFilter,
2971
3031
  createSubmission,
2972
3032
  deleteSubmission,
3033
+ downloadSubmission,
2973
3034
  getDeletedSubmission,
2974
3035
  getFormattedSubmission,
2975
3036
  getMediaUploadUrl,