@wix/auto_sdk_forms_submissions 1.0.40 → 1.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/{forms-v4-submission-submissions.universal-FEd-c2LM.d.ts → forms-v4-submission-submissions.universal-DqNcjUJK.d.ts} +6 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +66 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +57 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +26 -2
- package/build/cjs/meta.js +45 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-FEd-c2LM.d.mts → forms-v4-submission-submissions.universal-DqNcjUJK.d.mts} +6 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +65 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +56 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +26 -2
- package/build/es/meta.mjs +44 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-BBzQ_MxK.d.ts → forms-v4-submission-submissions.universal-CMfZIEDj.d.ts} +25 -2
- package/build/internal/cjs/index.d.ts +15 -3
- package/build/internal/cjs/index.js +66 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +57 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +26 -2
- package/build/internal/cjs/meta.js +45 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-BBzQ_MxK.d.mts → forms-v4-submission-submissions.universal-CMfZIEDj.d.mts} +25 -2
- package/build/internal/es/index.d.mts +15 -3
- package/build/internal/es/index.mjs +65 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +56 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +26 -2
- package/build/internal/es/meta.mjs +44 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -6405,7 +6405,12 @@ interface DownloadSubmissionRequest {
|
|
|
6405
6405
|
* Submission id for which the document is generated.
|
|
6406
6406
|
* @format GUID
|
|
6407
6407
|
*/
|
|
6408
|
-
submissionId
|
|
6408
|
+
submissionId: string;
|
|
6409
|
+
/**
|
|
6410
|
+
* Access token to download the document.
|
|
6411
|
+
* @maxLength 10000
|
|
6412
|
+
*/
|
|
6413
|
+
accessToken: string;
|
|
6409
6414
|
}
|
|
6410
6415
|
interface RawHttpResponse {
|
|
6411
6416
|
body?: Uint8Array;
|
|
@@ -6965,6 +6970,11 @@ interface CreateSubmissionOptions {
|
|
|
6965
6970
|
* @maxLength 3000
|
|
6966
6971
|
*/
|
|
6967
6972
|
captchaToken?: string | null;
|
|
6973
|
+
/**
|
|
6974
|
+
* Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data.
|
|
6975
|
+
* @internal
|
|
6976
|
+
*/
|
|
6977
|
+
additionalMetadata?: Record<string, any> | null;
|
|
6968
6978
|
}
|
|
6969
6979
|
/**
|
|
6970
6980
|
* Retrieves a submission by ID.
|
|
@@ -7505,6 +7515,19 @@ declare function bulkMarkSubmissionsAsSeen(ids: string[], formId: string): Promi
|
|
|
7505
7515
|
* @fqn wix.forms.v4.FormSubmissionService.GetSubmissionDownloadUrl
|
|
7506
7516
|
*/
|
|
7507
7517
|
declare function getSubmissionDownloadUrl(submissionId: string): Promise<NonNullablePaths<GetSubmissionDownloadUrlResponse, `document.readyDetails.downloadUrl` | `document.status`, 4>>;
|
|
7518
|
+
/**
|
|
7519
|
+
* Download a submission document by redirecting to the document URL.
|
|
7520
|
+
* @param submissionId - Submission id for which the document is generated.
|
|
7521
|
+
* @param accessToken - Access token to download the document.
|
|
7522
|
+
* @internal
|
|
7523
|
+
* @documentationMaturity preview
|
|
7524
|
+
* @requiredField accessToken
|
|
7525
|
+
* @requiredField submissionId
|
|
7526
|
+
* @permissionId WIX_FORMS.SUBMISSION_READ_ANY
|
|
7527
|
+
* @applicableIdentity APP
|
|
7528
|
+
* @fqn wix.forms.v4.FormSubmissionService.DownloadSubmission
|
|
7529
|
+
*/
|
|
7530
|
+
declare function downloadSubmission(submissionId: string, accessToken: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
|
|
7508
7531
|
/**
|
|
7509
7532
|
* Retrieves a submission formatted by language
|
|
7510
7533
|
* @param submissionId - Submission ID.
|
|
@@ -7592,4 +7615,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7592
7615
|
fieldsToValidate?: string[];
|
|
7593
7616
|
}
|
|
7594
7617
|
|
|
7595
|
-
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 FormFieldObjectType 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 FormFieldNumberType as bV, type NumberErrorMessages as bW, type IntegerType as bX, type FormFieldBooleanType as bY, type BooleanErrorMessages as bZ, type FormFieldArrayType 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 GIF as c$, type ObjectTypePropertiesType as c0, type ObjectTypePropertiesTypePropertiesTypeOneOf as c1, type ObjectErrorMessages as c2, type ArrayTypeArrayItems as c3, type ArrayTypeArrayItemsItemsOneOf as c4, type ArrayErrorMessages as c5, type PredefinedValidation as c6, type PredefinedValidationFormatOptionsOneOf as c7, type PaymentType as c8, type QuantityLimit as c9, type PluginContainerData as cA, type PluginContainerDataWidth as cB, type PluginContainerDataWidthDataOneOf as cC, type Spoiler as cD, type Height as cE, type Styles as cF, type Link as cG, type LinkDataOneOf as cH, type Rel as cI, type CodeBlockData as cJ, type TextStyle as cK, type DividerData as cL, type FileData as cM, type FileSource as cN, type FileSourceDataOneOf as cO, type PDFSettings as cP, type GalleryData as cQ, type Media as cR, type Image as cS, type Video as cT, type Item as cU, type ItemDataOneOf as cV, type GalleryOptions as cW, type GalleryOptionsLayout as cX, type ItemStyle as cY, type Thumbnails as cZ, type GIFData as c_, type FixedPriceOptions as ca, type DynamicPriceOptions as cb, type Product as cc, type ProductPriceOptionsOneOf as cd, type MultilineAddressValidation as ce, type FieldOverrides as cf, type FieldsOverrides as cg, type NestedFormFieldOverrides as ch, type Validation as ci, type ValidationValidationOneOf as cj, type DataExtensionsDetails as ck, type NestedFormOverrides as cl, type FormFieldV2 as cm, type FormFieldV2FieldTypeOptionsOneOf as cn, type InputFieldStringType as co, type InputFieldStringTypeFormatOptionsOneOf as cp, type InputFieldStringTypeDateTimeConstraints as cq, type InputFieldStringTypePhoneConstraints as cr, type TextInput as cs, type RichContent as ct, type Node as cu, type NodeDataOneOf as cv, type NodeStyle as cw, type ButtonData as cx, type Border as cy, type Colors as cz, type UpdateSubmission as d, type TextNodeStyle as d$, type HeadingData as d0, type HTMLData as d1, type HTMLDataDataOneOf as d2, type ImageData as d3, type StylesBorder as d4, type ImageDataStyles as d5, type LinkPreviewData as d6, type LinkPreviewDataStyles as d7, type MapData as d8, type MapSettings as d9, type AppEmbedDataAppDataOneOf as dA, type BookingData as dB, type EventData as dC, type ButtonStyles as dD, type ImageStyles as dE, type RibbonStyles as dF, type CardStyles as dG, type PricingData as dH, type VideoData as dI, type PlaybackOptions as dJ, type EmbedData as dK, type Oembed as dL, type CollapsibleListData as dM, type TableData as dN, type Dimensions as dO, type TableCellData as dP, type CellStyle as dQ, type BorderColors as dR, type ListValue as dS, type AudioData as dT, type OrderedListData as dU, type BulletedListData as dV, type BlockquoteData as dW, type CaptionData as dX, type LayoutCellData as dY, type Metadata as dZ, type DocumentStyle as d_, type ParagraphData as da, type PollData as db, type Permissions as dc, type PollOption as dd, type Settings as de, type PollLayout as df, type OptionLayout as dg, type Gradient as dh, type Background as di, type BackgroundBackgroundOneOf as dj, type PollDesign as dk, type OptionDesign as dl, type Poll as dm, type PollDataLayout as dn, type Design as dp, type TextData as dq, type Decoration as dr, type DecorationDataOneOf as ds, type AnchorData as dt, type ColorData as du, type LinkData as dv, type MentionData as dw, type FontSizeData as dx, type SpoilerData as dy, type AppEmbedData as dz, type UpdateSubmissionValidationErrors as e, type InputField_Boolean as e$, type MediaItem as e0, type MediaItemMediaOneOf as e1, type MediaSettings as e2, type RadioGroup as e3, type RadioGroupOption as e4, type CustomOption as e5, type Dropdown as e6, type DropdownOption as e7, type DateTimeInput as e8, type PhoneInput as e9, type DonationInput as eA, type DonationInputOption as eB, type PaymentInput as eC, type FixedPayment as eD, type Appointment as eE, type AppointmentFormatInfoOneOf as eF, type Location as eG, type LocationLocationInfoOneOf as eH, type InPersonOptions as eI, type VideoConferenceOptions as eJ, type PhoneOptions as eK, type MultilineAddress as eL, type AddressLine2 as eM, type DefaultCountryConfig as eN, type DefaultCountryConfigOptionsOneOf as eO, type FieldsSettings as eP, type V4FormFieldContactInfo as eQ, type V4FormFieldContactInfoAdditionalInfoOneOf as eR, type FormFieldContactInfoEmailInfo as eS, type FormFieldContactInfoPhoneInfo as eT, type FormFieldContactInfoAddressInfo as eU, type FormFieldContactInfoCustomFieldInfo as eV, type FormFieldContactInfoSubscriptionInfo as eW, type InputField_String as eX, type InputField_StringComponentTypeOptionsOneOf as eY, type InputField_Number as eZ, type InputField_NumberComponentTypeOptionsOneOf as e_, type DateInput as ea, type TimeInput as eb, type DatePicker as ec, type ServicesDropdown as ed, type ServicesDropdownOption as ee, type InputFieldNumberType as ef, type NumberInput as eg, type RatingInput as eh, type InputFieldBooleanType as ei, type Checkbox as ej, type InputFieldArrayType as ek, type InputFieldIntegerType as el, type InputFieldObjectType as em, type InputFieldObjectTypePropertiesType as en, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as eo, type InputFieldArrayTypeArrayItems as ep, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as eq, type CheckboxGroup as er, type Option as es, type Tags as et, type TagsOption as eu, type FileType as ev, type FileUpload as ew, type Signature as ex, type ProductCheckboxGroup as ey, type ProductCheckboxGroupOption as ez, type ConfirmSubmissionResponse as f, type Step as f$, type InputField_BooleanComponentTypeOptionsOneOf as f0, type InputField_Array as f1, type InputField_ArrayComponentTypeOptionsOneOf as f2, type InputField_Object as f3, type InputField_ObjectValidationOneOf as f4, type InputFieldWixFile as f5, type InputFieldWixFileComponentTypeOptionsOneOf as f6, type InputFieldPayment as f7, type InputFieldPaymentComponentTypeOptionsOneOf as f8, type InputFieldMultilineAddress as f9, type FormFieldContactInfoAdditionalInfoOneOf as fA, type EmailInfo as fB, type PhoneInfo as fC, type AddressInfo as fD, type CustomFieldInfo as fE, type SubscriptionInfo as fF, type _String as fG, type _StringComponentTypeOptionsOneOf as fH, type _Number as fI, type _NumberComponentTypeOptionsOneOf as fJ, type _Boolean as fK, type _BooleanComponentTypeOptionsOneOf as fL, type _Array as fM, type _ArrayComponentTypeOptionsOneOf as fN, type _Object as fO, type WixFile as fP, type WixFileComponentTypeOptionsOneOf as fQ, type Payment as fR, type PaymentComponentTypeOptionsOneOf as fS, type Scheduling as fT, type SchedulingComponentTypeOptionsOneOf as fU, type Address as fV, type AddressComponentTypeOptionsOneOf as fW, type FieldsDisplayField as fX, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as fY, type RichContentOptions as fZ, type PageNavigationOptions as f_, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fa, type InputFieldScheduling as fb, type InputFieldSchedulingComponentTypeOptionsOneOf as fc, type FormFieldV2InputField as fd, type FormFieldV2InputFieldInputTypeOptionsOneOf as fe, type DisplayField as ff, type DisplayFieldDisplayFieldTypeOptionsOneOf as fg, type V4RichContentOptions as fh, type V4PageNavigationOptions as fi, type Field as fj, type FieldFieldTypeOptionsOneOf as fk, type InputField as fl, type InputFieldInputTypeOptionsOneOf as fm, type StringType as fn, type StringTypeFormatOptionsOneOf as fo, type DateTimeConstraints as fp, type PhoneConstraints as fq, type NumberType as fr, type BooleanType as fs, type ArrayType as ft, type ObjectType as fu, type PropertiesType as fv, type PropertiesTypePropertiesTypeOptionsOneOf as fw, type ArrayItems as fx, type ArrayItemsItemTypeOptionsOneOf as fy, type FormFieldContactInfo as fz, type BulkDeleteSubmissionResponse as g, type ApplicationError as g$, type FormLayout as g0, type BreakPoint as g1, type ItemLayout as g2, type ItemLayoutItemOneOf as g3, type Group as g4, type Margin as g5, type Section as g6, type FormRule as g7, type FormOverride as g8, type FormProperties as g9, type IsFormSubmittableResponse as gA, type DomainEvent as gB, type DomainEventBodyOneOf as gC, type EntityCreatedEvent as gD, type RestoreInfo as gE, type EntityUpdatedEvent as gF, type EntityDeletedEvent as gG, type ActionEvent as gH, type Empty as gI, type MessageEnvelope as gJ, type IdentificationData as gK, type IdentificationDataIdOneOf as gL, type UpsertContactFromSubmissionRequest as gM, type SubmitContactResponse as gN, type CreateSubmissionRequest as gO, type CreateSubmissionResponse as gP, type SubmissionValidationErrorsDetails as gQ, type ValidationError as gR, type CreateSubmissionForMigrationRequest as gS, type CreateSubmissionForMigrationResponse as gT, type CreateSubmissionBySubmitterRequest as gU, type CreateSubmissionBySubmitterResponse as gV, type BulkCreateSubmissionBySubmitterRequest as gW, type BulkCreateSubmissionBySubmitterData as gX, type BulkCreateSubmissionBySubmitterResponse as gY, type BulkSubmissionResult as gZ, type ItemMetadata as g_, type PostSubmissionTriggers as ga, type UpsertContact as gb, type NestedForm as gc, type LimitationRule as gd, type RequiredIndicatorProperties as ge, type SubmitSettings as gf, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gg, type ThankYouMessageOptions as gh, type RedirectOptions as gi, type FieldGroup as gj, type Rule as gk, type RequiredOptions as gl, type HiddenOptions as gm, type AllowedValuesOptions as gn, type FieldOverride as go, type FieldOverridePropertyTypeOptionsOneOf as gp, type ConditionNode as gq, type ConditionNodeNodeOneOf as gr, type AndCondition as gs, type OrCondition as gt, type Condition as gu, type RuleFormOverride as gv, type RuleFormOverrideEntityTypeOptionsOneOf as gw, type CreateCheckoutFromSubmissionResponse as gx, type Checkout as gy, type IsFormSubmittableRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type SubmissionValidationError as h$, type BulkActionMetadata as h0, type GetSubmissionRequest as h1, type GetSubmissionResponse as h2, type GetSubmissionByCheckoutIdRequest as h3, type GetSubmissionByCheckoutIdResponse as h4, type UpdateSubmissionRequest as h5, type UpdateSubmissionResponse as h6, type ConfirmSubmissionRequest as h7, type DeleteSubmissionRequest as h8, type DeleteSubmissionResponse as h9, type FormSubmissionsCount as hA, type CountSubmissionsRequest as hB, type CountDeletedSubmissionsRequest as hC, type FormDeletedSubmissionsCount as hD, type GetMediaUploadURLRequest as hE, type BulkMarkSubmissionsAsSeenRequest as hF, type BulkMarkSubmissionsAsSeenResponse as hG, type GetSubmissionDownloadUrlRequest as hH, type SubmissionDocument as hI, type SubmissionDocumentDocumentOneOf as hJ, type DocumentReady as hK, type DownloadSubmissionRequest as hL, type RawHttpResponse as hM, type HeadersEntry as hN, type GetFormattedSubmissionRequest as hO, type FormattedSubmission as hP, type ListFormattedSubmissionsRequest as hQ, type ListFormattedSubmissionsResponse as hR, type FormattedFormSubmission as hS, type UpdateExtendedFieldsRequest as hT, type BulkUpdateFormSubmissionTagsRequest as hU, type BulkUpdateFormSubmissionTagsResult as hV, type BulkUpdateFormSubmissionTagsByFilterRequest as hW, type ValidateFormSubmissionRequest as hX, type FieldViolation as hY, type FieldViolationErrorDataOneOf as hZ, type SubmissionValidationErrors as h_, type BulkDeleteSubmissionRequest as ha, type BulkDeleteSubmissionResult as hb, type RestoreSubmissionFromTrashBinRequest as hc, type RemoveSubmissionFromTrashBinRequest as hd, type RemoveSubmissionFromTrashBinResponse as he, type BulkRemoveSubmissionFromTrashBinRequest as hf, type BulkRemoveSubmissionFromTrashBinResult as hg, type ListDeletedSubmissionsRequest as hh, type CursorPaging as hi, type CursorPagingMetadata as hj, type Cursors as hk, type GetDeletedSubmissionRequest as hl, type QuerySubmissionRequest as hm, type CursorQueryPagingMethodOneOf as hn, type Sorting as ho, type SearchSubmissionsByNamespaceRequest as hp, type CursorSearch as hq, type CursorSearchPagingMethodOneOf as hr, type SearchDetails as hs, type SearchSubmissionsByNamespaceForExportRequest as ht, type SearchSubmissionsByNamespaceForExportResponse as hu, type QuerySubmissionsByNamespaceRequest as hv, type QuerySubmissionsByNamespaceResponse as hw, type QuerySubmissionsByNamespaceForExportRequest as hx, type QuerySubmissionsByNamespaceForExportResponse as hy, type CountSubmissionsByFilterRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type UploadFileFormatWithLiterals as i$, type SubmissionValidationErrorErrorMessageOneOf as i0, type BaseEventMetadata as i1, type EventMetadata as i2, type FormSubmissionSearchSpec as i3, type SubmissionsQueryResult as i4, type SubmissionStatusWithLiterals as i5, type OptInLevelWithLiterals as i6, type StringTypeFormatEnumFormatWithLiterals as i7, type ValidationFormatWithLiterals as i8, type ProductTypeWithLiterals as i9, type PollLayoutDirectionWithLiterals as iA, type BackgroundTypeWithLiterals as iB, type DecorationTypeWithLiterals as iC, type FontTypeWithLiterals as iD, type PositionWithLiterals as iE, type AspectRatioWithLiterals as iF, type ResizingWithLiterals as iG, type PlacementWithLiterals as iH, type CardStylesTypeWithLiterals as iI, type CardStylesAlignmentWithLiterals as iJ, type LayoutWithLiterals as iK, type AppTypeWithLiterals as iL, type InitialExpandedItemsWithLiterals as iM, type DirectionWithLiterals as iN, type VerticalAlignmentWithLiterals as iO, type NullValueWithLiterals as iP, type ImagePositionWithLiterals as iQ, type AlignmentWithLiterals as iR, type ImageFitWithLiterals as iS, type NumberOfColumnsWithLiterals as iT, type FirstDayOfWeekWithLiterals as iU, type InputFieldNumberComponentTypeWithLiterals as iV, type InputFieldBooleanComponentTypeWithLiterals as iW, type ArrayItemsItemTypeWithLiterals as iX, type PropertiesTypePropertiesTypeEnumWithLiterals as iY, type InputFieldArrayComponentTypeWithLiterals as iZ, type InputFieldWixFileComponentTypeWithLiterals as i_, type PriceTypeWithLiterals as ia, type InputFieldStringTypeFormatEnumFormatWithLiterals as ib, type InputFieldStringComponentTypeWithLiterals as ic, type NodeTypeWithLiterals as id, type WidthTypeWithLiterals as ie, type PluginContainerDataAlignmentWithLiterals as ig, type ButtonDataTypeWithLiterals as ih, type LinkTargetWithLiterals as ii, type TextAlignmentWithLiterals as ij, type LineStyleWithLiterals as ik, type WidthWithLiterals as il, type DividerDataAlignmentWithLiterals as im, type ViewModeWithLiterals as io, type LayoutTypeWithLiterals as ip, type OrientationWithLiterals as iq, type CropWithLiterals as ir, type ThumbnailsAlignmentWithLiterals as is, type GIFTypeWithLiterals as it, type SourceWithLiterals as iu, type StylesPositionWithLiterals as iv, type MapTypeWithLiterals as iw, type ViewRoleWithLiterals as ix, type VoteRoleWithLiterals as iy, type PollLayoutTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, bulkDeleteSubmission as j$, type InputFieldPaymentComponentTypeWithLiterals as j0, type InputFieldSchedulingComponentTypeWithLiterals as j1, type FormatWithLiterals as j2, type MultilineAddressComponentTypeWithLiterals as j3, type TypeWithLiterals as j4, type InputFieldInputTypeWithLiterals as j5, type FormFieldContactInfoEmailInfoTagWithLiterals as j6, type FormFieldContactInfoPhoneInfoTagWithLiterals as j7, type AddressInfoTagWithLiterals as j8, type SubscriptionInfoOptInLevelWithLiterals as j9, type RequiredIndicatorPlacementWithLiterals as jA, type TargetWithLiterals as jB, type SubmitSuccessActionWithLiterals as jC, type ChangeablePropertyWithLiterals as jD, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jE, type OperatorWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type IdentityTypeWithLiterals as jH, type ErrorTypeWithLiterals as jI, type SortOrderWithLiterals as jJ, type ModeWithLiterals as jK, type StatusWithLiterals as jL, type SubmissionErrorTypeWithLiterals as jM, type CommonSearchWithEntityContext as jN, onSubmissionCreated as jO, onSubmissionDeleted as jP, onSubmissionRemovedSubmissionFromTrash as jQ, onSubmissionStatusUpdated as jR, onSubmissionContactMapped as jS, onSubmissionContactMappingSkipped as jT, onSubmissionUpdated as jU, upsertContactFromSubmission as jV, createSubmission as jW, getSubmission as jX, updateSubmission as jY, confirmSubmission as jZ, deleteSubmission as j_, type FormFieldContactInfoContactFieldWithLiterals as ja, type FormFieldV2FieldTypeWithLiterals as jb, type DisplayFieldTypeWithLiterals as jc, type FieldTypeWithLiterals as jd, type FormatEnumFormatWithLiterals as je, type StringComponentTypeWithLiterals as jf, type NumberComponentTypeWithLiterals as jg, type BooleanComponentTypeWithLiterals as jh, type ItemTypeWithLiterals as ji, type PropertiesTypeEnumWithLiterals as jj, type ArrayComponentTypeWithLiterals as jk, type WixFileComponentTypeWithLiterals as jl, type PaymentComponentTypeWithLiterals as jm, type ComponentTypeWithLiterals as jn, type SchedulingComponentTypeWithLiterals as jo, type InputTypeWithLiterals as jp, type EmailInfoTagWithLiterals as jq, type PhoneInfoTagWithLiterals as jr, type TagWithLiterals as js, type ConfirmationLevelWithLiterals as jt, type ContactFieldWithLiterals as ju, type DisplayFieldDisplayFieldTypeWithLiterals as jv, type OverrideEntityTypeWithLiterals as jw, type KindWithLiterals as jx, type SpamFilterProtectionLevelWithLiterals as jy, type RequiredIndicatorWithLiterals as jz, type CursorQuery as k, restoreSubmissionFromTrashBin as k0, removeSubmissionFromTrashBin as k1, bulkRemoveSubmissionFromTrashBin as k2, listDeletedSubmissions as k3, getDeletedSubmission as k4, querySubmission as k5, querySubmissionsByNamespace as k6, countSubmissionsByFilter as k7, countSubmissions as k8, countDeletedSubmissions as k9, getMediaUploadUrl as ka, bulkMarkSubmissionsAsSeen as kb, getSubmissionDownloadUrl as kc, getFormattedSubmission as kd, updateExtendedFields as ke, bulkUpdateFormSubmissionTags as kf, bulkUpdateFormSubmissionTagsByFilter as kg, validateFormSubmission as kh, 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 };
|
|
7618
|
+
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 FormFieldArrayType 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 FormFieldNumberType as bW, type NumberErrorMessages as bX, type IntegerType as bY, type FormFieldBooleanType as bZ, type BooleanErrorMessages 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 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_NumberComponentTypeOptionsOneOf 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 ProductCheckboxGroupOption as eA, type DonationInput as eB, type DonationInputOption as eC, type PaymentInput as eD, type FixedPayment as eE, type Appointment as eF, type AppointmentFormatInfoOneOf as eG, type Location as eH, type LocationLocationInfoOneOf as eI, type InPersonOptions as eJ, type VideoConferenceOptions as eK, type PhoneOptions as eL, type MultilineAddress as eM, type AddressLine2 as eN, type DefaultCountryConfig as eO, type DefaultCountryConfigOptionsOneOf as eP, type FieldsSettings as eQ, type V4FormFieldContactInfo as eR, type V4FormFieldContactInfoAdditionalInfoOneOf as eS, type FormFieldContactInfoEmailInfo as eT, type FormFieldContactInfoPhoneInfo as eU, type FormFieldContactInfoAddressInfo as eV, type FormFieldContactInfoCustomFieldInfo as eW, type FormFieldContactInfoSubscriptionInfo as eX, type InputField_String as eY, type InputField_StringComponentTypeOptionsOneOf as eZ, type InputField_Number as e_, type PhoneInput as ea, type DateInput as eb, type TimeInput as ec, type DatePicker as ed, type ServicesDropdown as ee, type ServicesDropdownOption 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 FileType as ew, type FileUpload as ex, type Signature as ey, type ProductCheckboxGroup as ez, type ConfirmSubmissionResponse as f, type PageNavigationOptions as f$, type InputField_Boolean as f0, type InputField_BooleanComponentTypeOptionsOneOf as f1, type InputField_Array as f2, type InputField_ArrayComponentTypeOptionsOneOf as f3, type InputField_Object as f4, type InputField_ObjectValidationOneOf as f5, type InputFieldWixFile as f6, type InputFieldWixFileComponentTypeOptionsOneOf as f7, type InputFieldPayment as f8, type InputFieldPaymentComponentTypeOptionsOneOf as f9, type FormFieldContactInfo as fA, type FormFieldContactInfoAdditionalInfoOneOf as fB, type EmailInfo as fC, type PhoneInfo as fD, type AddressInfo as fE, type CustomFieldInfo as fF, type SubscriptionInfo as fG, type _String as fH, type _StringComponentTypeOptionsOneOf as fI, type _Number as fJ, type _NumberComponentTypeOptionsOneOf as fK, type _Boolean as fL, type _BooleanComponentTypeOptionsOneOf as fM, type _Array as fN, type _ArrayComponentTypeOptionsOneOf as fO, type _Object as fP, type WixFile as fQ, type WixFileComponentTypeOptionsOneOf as fR, type Payment as fS, type PaymentComponentTypeOptionsOneOf as fT, type Scheduling as fU, type SchedulingComponentTypeOptionsOneOf as fV, type Address as fW, type AddressComponentTypeOptionsOneOf as fX, type FieldsDisplayField as fY, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as fZ, type RichContentOptions as f_, type InputFieldMultilineAddress as fa, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fb, type InputFieldScheduling as fc, type InputFieldSchedulingComponentTypeOptionsOneOf as fd, type FormFieldV2InputField as fe, type FormFieldV2InputFieldInputTypeOptionsOneOf as ff, type DisplayField as fg, type DisplayFieldDisplayFieldTypeOptionsOneOf as fh, type V4RichContentOptions as fi, type V4PageNavigationOptions as fj, type Field as fk, type FieldFieldTypeOptionsOneOf as fl, type InputField as fm, type InputFieldInputTypeOptionsOneOf as fn, type StringType as fo, type StringTypeFormatOptionsOneOf as fp, type DateTimeConstraints as fq, type PhoneConstraints as fr, type NumberType as fs, type BooleanType as ft, type ArrayType as fu, type ObjectType as fv, type PropertiesType as fw, type PropertiesTypePropertiesTypeOptionsOneOf as fx, type ArrayItems as fy, type ArrayItemsItemTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type ItemMetadata as g$, type Step as g0, type FormLayout as g1, type BreakPoint as g2, type ItemLayout as g3, type ItemLayoutItemOneOf as g4, type Group as g5, type Margin as g6, type Section as g7, type FormRule as g8, type FormOverride as g9, type IsFormSubmittableRequest as gA, type IsFormSubmittableResponse as gB, type DomainEvent as gC, type DomainEventBodyOneOf as gD, type EntityCreatedEvent as gE, type RestoreInfo as gF, type EntityUpdatedEvent as gG, type EntityDeletedEvent as gH, type ActionEvent as gI, type Empty as gJ, type MessageEnvelope as gK, type IdentificationData as gL, type IdentificationDataIdOneOf as gM, type UpsertContactFromSubmissionRequest as gN, type SubmitContactResponse as gO, type CreateSubmissionRequest as gP, type CreateSubmissionResponse as gQ, type SubmissionValidationErrorsDetails as gR, type ValidationError as gS, type CreateSubmissionForMigrationRequest as gT, type CreateSubmissionForMigrationResponse as gU, type CreateSubmissionBySubmitterRequest as gV, type CreateSubmissionBySubmitterResponse as gW, type BulkCreateSubmissionBySubmitterRequest as gX, type BulkCreateSubmissionBySubmitterData as gY, type BulkCreateSubmissionBySubmitterResponse as gZ, type BulkSubmissionResult as g_, type FormProperties as ga, type PostSubmissionTriggers as gb, type UpsertContact as gc, type NestedForm as gd, type LimitationRule as ge, type RequiredIndicatorProperties as gf, type SubmitSettings as gg, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gh, type ThankYouMessageOptions as gi, type RedirectOptions as gj, type FieldGroup as gk, type Rule as gl, type RequiredOptions as gm, type HiddenOptions as gn, type AllowedValuesOptions as go, type FieldOverride as gp, type FieldOverridePropertyTypeOptionsOneOf as gq, type ConditionNode as gr, type ConditionNodeNodeOneOf as gs, type AndCondition as gt, type OrCondition as gu, type Condition as gv, type RuleFormOverride as gw, type RuleFormOverrideEntityTypeOptionsOneOf as gx, type CreateCheckoutFromSubmissionResponse as gy, type Checkout as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type SubmissionValidationError as h$, type ApplicationError as h0, type BulkActionMetadata as h1, type GetSubmissionRequest as h2, type GetSubmissionResponse as h3, type GetSubmissionByCheckoutIdRequest as h4, type GetSubmissionByCheckoutIdResponse as h5, type UpdateSubmissionRequest as h6, type UpdateSubmissionResponse as h7, type ConfirmSubmissionRequest as h8, type DeleteSubmissionRequest as h9, type CountSubmissionsByFilterRequest as hA, type FormSubmissionsCount as hB, type CountSubmissionsRequest as hC, type CountDeletedSubmissionsRequest as hD, type FormDeletedSubmissionsCount as hE, type GetMediaUploadURLRequest as hF, type BulkMarkSubmissionsAsSeenRequest as hG, type BulkMarkSubmissionsAsSeenResponse as hH, type GetSubmissionDownloadUrlRequest as hI, type SubmissionDocument as hJ, type SubmissionDocumentDocumentOneOf as hK, type DocumentReady as hL, type DownloadSubmissionRequest as hM, type HeadersEntry as hN, type GetFormattedSubmissionRequest as hO, type FormattedSubmission as hP, type ListFormattedSubmissionsRequest as hQ, type ListFormattedSubmissionsResponse as hR, type FormattedFormSubmission as hS, type UpdateExtendedFieldsRequest as hT, type BulkUpdateFormSubmissionTagsRequest as hU, type BulkUpdateFormSubmissionTagsResult as hV, type BulkUpdateFormSubmissionTagsByFilterRequest as hW, type ValidateFormSubmissionRequest as hX, type FieldViolation as hY, type FieldViolationErrorDataOneOf as hZ, type SubmissionValidationErrors as h_, type DeleteSubmissionResponse as ha, type BulkDeleteSubmissionRequest as hb, type BulkDeleteSubmissionResult as hc, type RestoreSubmissionFromTrashBinRequest as hd, type RemoveSubmissionFromTrashBinRequest as he, type RemoveSubmissionFromTrashBinResponse as hf, type BulkRemoveSubmissionFromTrashBinRequest as hg, type BulkRemoveSubmissionFromTrashBinResult as hh, type ListDeletedSubmissionsRequest as hi, type CursorPaging as hj, type CursorPagingMetadata as hk, type Cursors as hl, type GetDeletedSubmissionRequest as hm, type QuerySubmissionRequest as hn, type CursorQueryPagingMethodOneOf as ho, type Sorting as hp, type SearchSubmissionsByNamespaceRequest as hq, type CursorSearch as hr, type CursorSearchPagingMethodOneOf as hs, type SearchDetails as ht, type SearchSubmissionsByNamespaceForExportRequest as hu, type SearchSubmissionsByNamespaceForExportResponse as hv, type QuerySubmissionsByNamespaceRequest as hw, type QuerySubmissionsByNamespaceResponse as hx, type QuerySubmissionsByNamespaceForExportRequest as hy, type QuerySubmissionsByNamespaceForExportResponse as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type UploadFileFormatWithLiterals as i$, type SubmissionValidationErrorErrorMessageOneOf as i0, type BaseEventMetadata as i1, type EventMetadata as i2, type FormSubmissionSearchSpec as i3, type SubmissionsQueryResult as i4, type SubmissionStatusWithLiterals as i5, type OptInLevelWithLiterals as i6, type StringTypeFormatEnumFormatWithLiterals as i7, type ValidationFormatWithLiterals as i8, type ProductTypeWithLiterals as i9, type PollLayoutDirectionWithLiterals as iA, type BackgroundTypeWithLiterals as iB, type DecorationTypeWithLiterals as iC, type FontTypeWithLiterals as iD, type PositionWithLiterals as iE, type AspectRatioWithLiterals as iF, type ResizingWithLiterals as iG, type PlacementWithLiterals as iH, type CardStylesTypeWithLiterals as iI, type CardStylesAlignmentWithLiterals as iJ, type LayoutWithLiterals as iK, type AppTypeWithLiterals as iL, type InitialExpandedItemsWithLiterals as iM, type DirectionWithLiterals as iN, type VerticalAlignmentWithLiterals as iO, type NullValueWithLiterals as iP, type ImagePositionWithLiterals as iQ, type AlignmentWithLiterals as iR, type ImageFitWithLiterals as iS, type NumberOfColumnsWithLiterals as iT, type FirstDayOfWeekWithLiterals as iU, type InputFieldNumberComponentTypeWithLiterals as iV, type InputFieldBooleanComponentTypeWithLiterals as iW, type ArrayItemsItemTypeWithLiterals as iX, type PropertiesTypePropertiesTypeEnumWithLiterals as iY, type InputFieldArrayComponentTypeWithLiterals as iZ, type InputFieldWixFileComponentTypeWithLiterals as i_, type PriceTypeWithLiterals as ia, type InputFieldStringTypeFormatEnumFormatWithLiterals as ib, type InputFieldStringComponentTypeWithLiterals as ic, type NodeTypeWithLiterals as id, type WidthTypeWithLiterals as ie, type PluginContainerDataAlignmentWithLiterals as ig, type ButtonDataTypeWithLiterals as ih, type LinkTargetWithLiterals as ii, type TextAlignmentWithLiterals as ij, type LineStyleWithLiterals as ik, type WidthWithLiterals as il, type DividerDataAlignmentWithLiterals as im, type ViewModeWithLiterals as io, type LayoutTypeWithLiterals as ip, type OrientationWithLiterals as iq, type CropWithLiterals as ir, type ThumbnailsAlignmentWithLiterals as is, type GIFTypeWithLiterals as it, type SourceWithLiterals as iu, type StylesPositionWithLiterals as iv, type MapTypeWithLiterals as iw, type ViewRoleWithLiterals as ix, type VoteRoleWithLiterals as iy, type PollLayoutTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, bulkDeleteSubmission as j$, type InputFieldPaymentComponentTypeWithLiterals as j0, type InputFieldSchedulingComponentTypeWithLiterals as j1, type FormatWithLiterals as j2, type MultilineAddressComponentTypeWithLiterals as j3, type TypeWithLiterals as j4, type InputFieldInputTypeWithLiterals as j5, type FormFieldContactInfoEmailInfoTagWithLiterals as j6, type FormFieldContactInfoPhoneInfoTagWithLiterals as j7, type AddressInfoTagWithLiterals as j8, type SubscriptionInfoOptInLevelWithLiterals as j9, type RequiredIndicatorPlacementWithLiterals as jA, type TargetWithLiterals as jB, type SubmitSuccessActionWithLiterals as jC, type ChangeablePropertyWithLiterals as jD, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jE, type OperatorWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type IdentityTypeWithLiterals as jH, type ErrorTypeWithLiterals as jI, type SortOrderWithLiterals as jJ, type ModeWithLiterals as jK, type StatusWithLiterals as jL, type SubmissionErrorTypeWithLiterals as jM, type CommonSearchWithEntityContext as jN, onSubmissionCreated as jO, onSubmissionDeleted as jP, onSubmissionRemovedSubmissionFromTrash as jQ, onSubmissionStatusUpdated as jR, onSubmissionContactMapped as jS, onSubmissionContactMappingSkipped as jT, onSubmissionUpdated as jU, upsertContactFromSubmission as jV, createSubmission as jW, getSubmission as jX, updateSubmission as jY, confirmSubmission as jZ, deleteSubmission as j_, type FormFieldContactInfoContactFieldWithLiterals as ja, type FormFieldV2FieldTypeWithLiterals as jb, type DisplayFieldTypeWithLiterals as jc, type FieldTypeWithLiterals as jd, type FormatEnumFormatWithLiterals as je, type StringComponentTypeWithLiterals as jf, type NumberComponentTypeWithLiterals as jg, type BooleanComponentTypeWithLiterals as jh, type ItemTypeWithLiterals as ji, type PropertiesTypeEnumWithLiterals as jj, type ArrayComponentTypeWithLiterals as jk, type WixFileComponentTypeWithLiterals as jl, type PaymentComponentTypeWithLiterals as jm, type ComponentTypeWithLiterals as jn, type SchedulingComponentTypeWithLiterals as jo, type InputTypeWithLiterals as jp, type EmailInfoTagWithLiterals as jq, type PhoneInfoTagWithLiterals as jr, type TagWithLiterals as js, type ConfirmationLevelWithLiterals as jt, type ContactFieldWithLiterals as ju, type DisplayFieldDisplayFieldTypeWithLiterals as jv, type OverrideEntityTypeWithLiterals as jw, type KindWithLiterals as jx, type SpamFilterProtectionLevelWithLiterals as jy, type RequiredIndicatorWithLiterals as jz, type CursorQuery as k, restoreSubmissionFromTrashBin as k0, removeSubmissionFromTrashBin as k1, bulkRemoveSubmissionFromTrashBin as k2, listDeletedSubmissions as k3, getDeletedSubmission as k4, querySubmission as k5, querySubmissionsByNamespace as k6, countSubmissionsByFilter as k7, countSubmissions as k8, countDeletedSubmissions as k9, getMediaUploadUrl as ka, bulkMarkSubmissionsAsSeen as kb, getSubmissionDownloadUrl as kc, downloadSubmission as kd, getFormattedSubmission as ke, updateExtendedFields as kf, bulkUpdateFormSubmissionTags as kg, bulkUpdateFormSubmissionTagsByFilter as kh, validateFormSubmission as ki, 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
|
|
3
|
-
export { gH as ActionEvent, fV as Address, fW as AddressComponentTypeOptionsOneOf, fD as AddressInfo, aY as AddressInfoTag, j8 as AddressInfoTagWithLiterals, eM as AddressLine2, aF as Alignment, iR as AlignmentWithLiterals, gn as AllowedValuesOptions, dt as AnchorData, gs as AndCondition, dz as AppEmbedData, dA as AppEmbedDataAppDataOneOf, az as AppType, iL as AppTypeWithLiterals, g$ as ApplicationError, eE as Appointment, eF as AppointmentFormatInfoOneOf, b8 as ArrayComponentType, jk as ArrayComponentTypeWithLiterals, c5 as ArrayErrorMessages, fx as ArrayItems, aL as ArrayItemsItemType, fy as ArrayItemsItemTypeOptionsOneOf, iX as ArrayItemsItemTypeWithLiterals, ft as ArrayType, c3 as ArrayTypeArrayItems, c4 as ArrayTypeArrayItemsItemsOneOf, at as AspectRatio, iF as AspectRatioWithLiterals, dT as AudioData, di as Background, dj as BackgroundBackgroundOneOf, ap as BackgroundType, iB as BackgroundTypeWithLiterals, i1 as BaseEventMetadata, dW as BlockquoteData, dB as BookingData, b5 as BooleanComponentType, jh as BooleanComponentTypeWithLiterals, bZ as BooleanErrorMessages, fs as BooleanType, cy as Border, dR as BorderColors, g1 as BreakPoint, h0 as BulkActionMetadata, gX as BulkCreateSubmissionBySubmitterData, gW as BulkCreateSubmissionBySubmitterRequest, gY as BulkCreateSubmissionBySubmitterResponse, ha as BulkDeleteSubmissionRequest, hb as BulkDeleteSubmissionResult, hF as BulkMarkSubmissionsAsSeenRequest, hG as BulkMarkSubmissionsAsSeenResponse, hf as BulkRemoveSubmissionFromTrashBinRequest, hg as BulkRemoveSubmissionFromTrashBinResult, gZ as BulkSubmissionResult, hW as BulkUpdateFormSubmissionTagsByFilterRequest, hU as BulkUpdateFormSubmissionTagsRequest, hV as BulkUpdateFormSubmissionTagsResult, dV as BulletedListData, cx as ButtonData, a6 as ButtonDataType, ih as ButtonDataTypeWithLiterals, dD as ButtonStyles, dX as CaptionData, dG as CardStyles, ax as CardStylesAlignment, iJ as CardStylesAlignmentWithLiterals, aw as CardStylesType, iI as CardStylesTypeWithLiterals, dQ as CellStyle, br as ChangeableProperty, jD as ChangeablePropertyWithLiterals, ej as Checkbox, er as CheckboxGroup, gy as Checkout, cJ as CodeBlockData, dM as CollapsibleListData, du as ColorData, cz as Colors, jN as CommonSearchWithEntityContext, bb as ComponentType, jn as ComponentTypeWithLiterals, gu as Condition, gq as ConditionNode, gr as ConditionNodeNodeOneOf, h7 as ConfirmSubmissionRequest, bh as ConfirmationLevel, jt as ConfirmationLevelWithLiterals, bi as ContactField, ju as ContactFieldWithLiterals, hC as CountDeletedSubmissionsRequest, hz as CountSubmissionsByFilterRequest, hB as CountSubmissionsRequest, bM as CreateCheckoutFromSubmissionRequest, bN as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gx as CreateCheckoutFromSubmissionResponse, gU as CreateSubmissionBySubmitterRequest, gV as CreateSubmissionBySubmitterResponse, gS as CreateSubmissionForMigrationRequest, gT as CreateSubmissionForMigrationResponse, gO as CreateSubmissionRequest, gP as CreateSubmissionResponse, af as Crop, ir as CropWithLiterals, hi as CursorPaging, hj as CursorPagingMetadata, hn as CursorQueryPagingMethodOneOf, hq as CursorSearch, hr as CursorSearchPagingMethodOneOf, hk as Cursors, fE as CustomFieldInfo, e5 as CustomOption, ck as DataExtensionsDetails, ea as DateInput, ec as DatePicker, fp as DateTimeConstraints, e8 as DateTimeInput, dr as Decoration, ds as DecorationDataOneOf, aq as DecorationType, iC as DecorationTypeWithLiterals, eN as DefaultCountryConfig, eO as DefaultCountryConfigOptionsOneOf, h8 as DeleteSubmissionRequest, h9 as DeleteSubmissionResponse, dp as Design, dO as Dimensions, aB as Direction, iN as DirectionWithLiterals, ff as DisplayField, bj as DisplayFieldDisplayFieldType, fg as DisplayFieldDisplayFieldTypeOptionsOneOf, jv as DisplayFieldDisplayFieldTypeWithLiterals, b0 as DisplayFieldType, jc as DisplayFieldTypeWithLiterals, cL as DividerData, ab as DividerDataAlignment, im as DividerDataAlignmentWithLiterals, hK as DocumentReady, d_ as DocumentStyle, gB as DomainEvent, gC as DomainEventBodyOneOf, eA as DonationInput, eB as DonationInputOption, hL as DownloadSubmissionRequest, e6 as Dropdown, e7 as DropdownOption, cb as DynamicPriceOptions, fB as EmailInfo, be as EmailInfoTag, jq as EmailInfoTagWithLiterals, dK as EmbedData, gI as Empty, gD as EntityCreatedEvent, gG as EntityDeletedEvent, gF as EntityUpdatedEvent, bw as ErrorType, jI as ErrorTypeWithLiterals, dC as EventData, i2 as EventMetadata, bD as ExtendedFields, fj as Field, fk as FieldFieldTypeOptionsOneOf, gj as FieldGroup, go as FieldOverride, gp as FieldOverridePropertyTypeOptionsOneOf, cf as FieldOverrides, b1 as FieldType, jd as FieldTypeWithLiterals, hY as FieldViolation, hZ as FieldViolationErrorDataOneOf, fX as FieldsDisplayField, fY as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cg as FieldsOverrides, eP as FieldsSettings, cM as FileData, cN as FileSource, cO as FileSourceDataOneOf, ev as FileType, ew as FileUpload, aI as FirstDayOfWeek, iU as FirstDayOfWeekWithLiterals, eD as FixedPayment, ca as FixedPriceOptions, dx as FontSizeData, ar as FontType, iD as FontTypeWithLiterals, bO as Form, hD as FormDeletedSubmissionsCount, bP as FormField, b_ as FormFieldArrayType, bY as FormFieldBooleanType, fz as FormFieldContactInfo, fA as FormFieldContactInfoAdditionalInfoOneOf, eU as FormFieldContactInfoAddressInfo, a_ as FormFieldContactInfoContactField, ja as FormFieldContactInfoContactFieldWithLiterals, eV as FormFieldContactInfoCustomFieldInfo, eS as FormFieldContactInfoEmailInfo, aW as FormFieldContactInfoEmailInfoTag, j6 as FormFieldContactInfoEmailInfoTagWithLiterals, eT as FormFieldContactInfoPhoneInfo, aX as FormFieldContactInfoPhoneInfoTag, j7 as FormFieldContactInfoPhoneInfoTagWithLiterals, eW as FormFieldContactInfoSubscriptionInfo, bV as FormFieldNumberType, b$ as FormFieldObjectType, bQ as FormFieldStringType, bR as FormFieldStringTypeFormatOptionsOneOf, cm as FormFieldV2, a$ as FormFieldV2FieldType, cn as FormFieldV2FieldTypeOptionsOneOf, jb as FormFieldV2FieldTypeWithLiterals, fd as FormFieldV2InputField, fe as FormFieldV2InputFieldInputTypeOptionsOneOf, g0 as FormLayout, g8 as FormOverride, g9 as FormProperties, g7 as FormRule, i3 as FormSubmissionSearchSpec, bH as FormSubmissionStatusUpdatedEvent, hA as FormSubmissionsCount, aS as Format, b2 as FormatEnumFormat, je as FormatEnumFormatWithLiterals, j2 as FormatWithLiterals, hS as FormattedFormSubmission, hP as FormattedSubmission, c$ as GIF, c_ as GIFData, ah as GIFType, it as GIFTypeWithLiterals, cQ as GalleryData, cW as GalleryOptions, cX as GalleryOptionsLayout, hl as GetDeletedSubmissionRequest, hO as GetFormattedSubmissionRequest, hE as GetMediaUploadURLRequest, h3 as GetSubmissionByCheckoutIdRequest, h4 as GetSubmissionByCheckoutIdResponse, hH as GetSubmissionDownloadUrlRequest, h1 as GetSubmissionRequest, h2 as GetSubmissionResponse, dh as Gradient, g4 as Group, d1 as HTMLData, d2 as HTMLDataDataOneOf, hN as HeadersEntry, d0 as HeadingData, cE as Height, gm as HiddenOptions, gK as IdentificationData, gL as IdentificationDataIdOneOf, bv as IdentityType, jH as IdentityTypeWithLiterals, cS as Image, d3 as ImageData, d5 as ImageDataStyles, aG as ImageFit, iS as ImageFitWithLiterals, aE as ImagePosition, iQ as ImagePositionWithLiterals, dE as ImageStyles, eI as InPersonOptions, aA as InitialExpandedItems, iM as InitialExpandedItemsWithLiterals, fl as InputField, aN as InputFieldArrayComponentType, iZ as InputFieldArrayComponentTypeWithLiterals, ek as InputFieldArrayType, ep as InputFieldArrayTypeArrayItems, eq as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aK as InputFieldBooleanComponentType, iW as InputFieldBooleanComponentTypeWithLiterals, ei as InputFieldBooleanType, aV as InputFieldInputType, fm as InputFieldInputTypeOptionsOneOf, j5 as InputFieldInputTypeWithLiterals, el as InputFieldIntegerType, f9 as InputFieldMultilineAddress, fa as InputFieldMultilineAddressComponentTypeOptionsOneOf, aJ as InputFieldNumberComponentType, iV as InputFieldNumberComponentTypeWithLiterals, ef as InputFieldNumberType, em as InputFieldObjectType, en as InputFieldObjectTypePropertiesType, eo as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f7 as InputFieldPayment, aQ as InputFieldPaymentComponentType, f8 as InputFieldPaymentComponentTypeOptionsOneOf, j0 as InputFieldPaymentComponentTypeWithLiterals, fb as InputFieldScheduling, aR as InputFieldSchedulingComponentType, fc as InputFieldSchedulingComponentTypeOptionsOneOf, j1 as InputFieldSchedulingComponentTypeWithLiterals, a2 as InputFieldStringComponentType, ic as InputFieldStringComponentTypeWithLiterals, co as InputFieldStringType, cq as InputFieldStringTypeDateTimeConstraints, a1 as InputFieldStringTypeFormatEnumFormat, ib as InputFieldStringTypeFormatEnumFormatWithLiterals, cp as InputFieldStringTypeFormatOptionsOneOf, cr as InputFieldStringTypePhoneConstraints, f5 as InputFieldWixFile, aO as InputFieldWixFileComponentType, f6 as InputFieldWixFileComponentTypeOptionsOneOf, i_ as InputFieldWixFileComponentTypeWithLiterals, f1 as InputField_Array, f2 as InputField_ArrayComponentTypeOptionsOneOf, e$ as InputField_Boolean, f0 as InputField_BooleanComponentTypeOptionsOneOf, eZ as InputField_Number, e_ as InputField_NumberComponentTypeOptionsOneOf, f3 as InputField_Object, f4 as InputField_ObjectValidationOneOf, eX as InputField_String, eY as InputField_StringComponentTypeOptionsOneOf, bd as InputType, jp as InputTypeWithLiterals, bX as IntegerType, gz as IsFormSubmittableRequest, gA as IsFormSubmittableResponse, cU as Item, cV as ItemDataOneOf, g2 as ItemLayout, g3 as ItemLayoutItemOneOf, g_ as ItemMetadata, cY as ItemStyle, b6 as ItemType, ji as ItemTypeWithLiterals, bl as Kind, jx as KindWithLiterals, ay as Layout, dY as LayoutCellData, ad as LayoutType, ip as LayoutTypeWithLiterals, iK as LayoutWithLiterals, gd as LimitationRule, a9 as LineStyle, ik as LineStyleWithLiterals, cG as Link, dv as LinkData, cH as LinkDataOneOf, d6 as LinkPreviewData, d7 as LinkPreviewDataStyles, a7 as LinkTarget, ii as LinkTargetWithLiterals, hh as ListDeletedSubmissionsRequest, hQ as ListFormattedSubmissionsRequest, hR as ListFormattedSubmissionsResponse, dS as ListValue, eG as Location, eH as LocationLocationInfoOneOf, d8 as MapData, d9 as MapSettings, ak as MapType, iw as MapTypeWithLiterals, g5 as Margin, bK as MarketingSubscriptionDetails, cR as Media, e0 as MediaItem, e1 as MediaItemMediaOneOf, e2 as MediaSettings, dw as MentionData, gJ as MessageEnvelope, dZ as Metadata, by as Mode, jK as ModeWithLiterals, eL as MultilineAddress, aT as MultilineAddressComponentType, j3 as MultilineAddressComponentTypeWithLiterals, ce as MultilineAddressValidation, gc as NestedForm, ch as NestedFormFieldOverrides, cl as NestedFormOverrides, cu as Node, cv as NodeDataOneOf, cw as NodeStyle, a3 as NodeType, id as NodeTypeWithLiterals, aD as NullValue, iP as NullValueWithLiterals, b4 as NumberComponentType, jg as NumberComponentTypeWithLiterals, bW as NumberErrorMessages, eg as NumberInput, aH as NumberOfColumns, iT as NumberOfColumnsWithLiterals, fr as NumberType, c2 as ObjectErrorMessages, fu as ObjectType, c0 as ObjectTypePropertiesType, c1 as ObjectTypePropertiesTypePropertiesTypeOneOf, dL as Oembed, bt as Operator, jF as OperatorWithLiterals, Y as OptInLevel, i6 as OptInLevelWithLiterals, es as Option, dl as OptionDesign, dg as OptionLayout, gt as OrCondition, bE as OrderDetails, dU as OrderedListData, ae as Orientation, iq as OrientationWithLiterals, bk as OverrideEntityType, bs as OverrideEntityTypeEnumOverrideEntityType, jE as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jw as OverrideEntityTypeWithLiterals, cP as PDFSettings, f_ as PageNavigationOptions, da as ParagraphData, fR as Payment, ba as PaymentComponentType, fS as PaymentComponentTypeOptionsOneOf, jm as PaymentComponentTypeWithLiterals, eC as PaymentInput, c8 as PaymentType, dc as Permissions, fq as PhoneConstraints, fC as PhoneInfo, bf as PhoneInfoTag, jr as PhoneInfoTagWithLiterals, e9 as PhoneInput, eK as PhoneOptions, av as Placement, iH as PlacementWithLiterals, dJ as PlaybackOptions, cA as PluginContainerData, a5 as PluginContainerDataAlignment, ig as PluginContainerDataAlignmentWithLiterals, cB as PluginContainerDataWidth, cC as PluginContainerDataWidthDataOneOf, dm as Poll, db as PollData, dn as PollDataLayout, dk as PollDesign, df as PollLayout, ao as PollLayoutDirection, iA as PollLayoutDirectionWithLiterals, an as PollLayoutType, iz as PollLayoutTypeWithLiterals, dd as PollOption, as as Position, iE as PositionWithLiterals, ga as PostSubmissionTriggers, c6 as PredefinedValidation, c7 as PredefinedValidationFormatOptionsOneOf, a0 as PriceType, ia as PriceTypeWithLiterals, dH as PricingData, cc as Product, ey as ProductCheckboxGroup, ez as ProductCheckboxGroupOption, cd as ProductPriceOptionsOneOf, $ as ProductType, i9 as ProductTypeWithLiterals, fv as PropertiesType, b7 as PropertiesTypeEnum, jj as PropertiesTypeEnumWithLiterals, aM as PropertiesTypePropertiesTypeEnum, iY as PropertiesTypePropertiesTypeEnumWithLiterals, fw as PropertiesTypePropertiesTypeOptionsOneOf, bF as PublicTags, c9 as QuantityLimit, hm as QuerySubmissionRequest, hx as QuerySubmissionsByNamespaceForExportRequest, hy as QuerySubmissionsByNamespaceForExportResponse, hv as QuerySubmissionsByNamespaceRequest, hw as QuerySubmissionsByNamespaceResponse, e3 as RadioGroup, e4 as RadioGroupOption, eh as RatingInput, hM as RawHttpResponse, gi as RedirectOptions, cI as Rel, hd as RemoveSubmissionFromTrashBinRequest, he as RemoveSubmissionFromTrashBinResponse, bI as RemovedSubmissionFromTrash, bn as RequiredIndicator, bo as RequiredIndicatorPlacement, jA as RequiredIndicatorPlacementWithLiterals, ge as RequiredIndicatorProperties, jz as RequiredIndicatorWithLiterals, gl as RequiredOptions, au as Resizing, iG as ResizingWithLiterals, gE as RestoreInfo, hc as RestoreSubmissionFromTrashBinRequest, dF as RibbonStyles, ct as RichContent, fZ as RichContentOptions, gk as Rule, gv as RuleFormOverride, gw as RuleFormOverrideEntityTypeOptionsOneOf, fT as Scheduling, bc as SchedulingComponentType, fU as SchedulingComponentTypeOptionsOneOf, jo as SchedulingComponentTypeWithLiterals, hs as SearchDetails, ht as SearchSubmissionsByNamespaceForExportRequest, hu as SearchSubmissionsByNamespaceForExportResponse, hp as SearchSubmissionsByNamespaceRequest, g6 as Section, ed as ServicesDropdown, ee as ServicesDropdownOption, de as Settings, ex as Signature, bx as SortOrder, jJ as SortOrderWithLiterals, ho as Sorting, ai as Source, iu as SourceWithLiterals, bm as SpamFilterProtectionLevel, jy as SpamFilterProtectionLevelWithLiterals, cD as Spoiler, dy as SpoilerData, bz as Status, jL as StatusWithLiterals, f$ as Step, b3 as StringComponentType, jf as StringComponentTypeWithLiterals, bS as StringErrorMessages, fn as StringType, bT as StringTypeDateTimeConstraints, Z as StringTypeFormatEnumFormat, i7 as StringTypeFormatEnumFormatWithLiterals, fo as StringTypeFormatOptionsOneOf, bU as StringTypePhoneConstraints, cF as Styles, d4 as StylesBorder, aj as StylesPosition, iv as StylesPositionWithLiterals, bJ as SubmissionContactMapped, bL as SubmissionContactMappingSkipped, hI as SubmissionDocument, hJ as SubmissionDocumentDocumentOneOf, bA as SubmissionErrorType, jM as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, i5 as SubmissionStatusWithLiterals, h$ as SubmissionValidationError, i0 as SubmissionValidationErrorErrorMessageOneOf, h_ as SubmissionValidationErrors, gQ as SubmissionValidationErrorsDetails, i4 as SubmissionsQueryResult, gN as SubmitContactResponse, gf as SubmitSettings, gg as SubmitSettingsSubmitSuccessActionOptionsOneOf, bq as SubmitSuccessAction, jC as SubmitSuccessActionWithLiterals, bB as Submitter, bC as SubmitterSubmitterOneOf, fF as SubscriptionInfo, aZ as SubscriptionInfoOptInLevel, j9 as SubscriptionInfoOptInLevelWithLiterals, dP as TableCellData, dN as TableData, bg as Tag, bG as TagList, js as TagWithLiterals, et as Tags, eu as TagsOption, bp as Target, jB as TargetWithLiterals, a8 as TextAlignment, ij as TextAlignmentWithLiterals, dq as TextData, cs as TextInput, d$ as TextNodeStyle, cK as TextStyle, gh as ThankYouMessageOptions, cZ as Thumbnails, ag as ThumbnailsAlignment, is as ThumbnailsAlignmentWithLiterals, eb as TimeInput, aU as Type, j4 as TypeWithLiterals, hT as UpdateExtendedFieldsRequest, h5 as UpdateSubmissionRequest, h6 as UpdateSubmissionResponse, aP as UploadFileFormat, i$ as UploadFileFormatWithLiterals, gb as UpsertContact, gM as UpsertContactFromSubmissionRequest, eQ as V4FormFieldContactInfo, eR as V4FormFieldContactInfoAdditionalInfoOneOf, fi as V4PageNavigationOptions, fh as V4RichContentOptions, hX as ValidateFormSubmissionRequest, ci as Validation, gR as ValidationError, _ as ValidationFormat, i8 as ValidationFormatWithLiterals, cj as ValidationValidationOneOf, aC as VerticalAlignment, iO as VerticalAlignmentWithLiterals, cT as Video, eJ as VideoConferenceOptions, dI as VideoData, ac as ViewMode, io as ViewModeWithLiterals, al as ViewRole, ix as ViewRoleWithLiterals, am as VoteRole, iy as VoteRoleWithLiterals, bu as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, aa as Width, a4 as WidthType, ie as WidthTypeWithLiterals, il as WidthWithLiterals, fP as WixFile, b9 as WixFileComponentType, fQ as WixFileComponentTypeOptionsOneOf, jl as WixFileComponentTypeWithLiterals, fM as _Array, fN as _ArrayComponentTypeOptionsOneOf, fK as _Boolean, fL as _BooleanComponentTypeOptionsOneOf, fI as _Number, fJ as _NumberComponentTypeOptionsOneOf, fO as _Object, fG as _String, fH as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-BBzQ_MxK.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-CMfZIEDj.js';
|
|
3
|
+
export { gI as ActionEvent, fW as Address, fX as AddressComponentTypeOptionsOneOf, fE as AddressInfo, aZ as AddressInfoTag, j8 as AddressInfoTagWithLiterals, eN as AddressLine2, aG as Alignment, iR as AlignmentWithLiterals, go as AllowedValuesOptions, du as AnchorData, gt as AndCondition, dA as AppEmbedData, dB as AppEmbedDataAppDataOneOf, aA as AppType, iL as AppTypeWithLiterals, h0 as ApplicationError, eF as Appointment, eG as AppointmentFormatInfoOneOf, b9 as ArrayComponentType, jk as ArrayComponentTypeWithLiterals, c6 as ArrayErrorMessages, fy as ArrayItems, aM as ArrayItemsItemType, fz as ArrayItemsItemTypeOptionsOneOf, iX as ArrayItemsItemTypeWithLiterals, fu as ArrayType, c4 as ArrayTypeArrayItems, c5 as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, iF as AspectRatioWithLiterals, dU as AudioData, dj as Background, dk as BackgroundBackgroundOneOf, aq as BackgroundType, iB as BackgroundTypeWithLiterals, i1 as BaseEventMetadata, dX as BlockquoteData, dC as BookingData, b6 as BooleanComponentType, jh as BooleanComponentTypeWithLiterals, b_ as BooleanErrorMessages, ft as BooleanType, cz as Border, dS as BorderColors, g2 as BreakPoint, h1 as BulkActionMetadata, gY as BulkCreateSubmissionBySubmitterData, gX as BulkCreateSubmissionBySubmitterRequest, gZ as BulkCreateSubmissionBySubmitterResponse, hb as BulkDeleteSubmissionRequest, hc as BulkDeleteSubmissionResult, hG as BulkMarkSubmissionsAsSeenRequest, hH as BulkMarkSubmissionsAsSeenResponse, hg as BulkRemoveSubmissionFromTrashBinRequest, hh as BulkRemoveSubmissionFromTrashBinResult, g_ as BulkSubmissionResult, hW as BulkUpdateFormSubmissionTagsByFilterRequest, hU as BulkUpdateFormSubmissionTagsRequest, hV as BulkUpdateFormSubmissionTagsResult, dW as BulletedListData, cy as ButtonData, a7 as ButtonDataType, ih as ButtonDataTypeWithLiterals, dE as ButtonStyles, dY as CaptionData, dH as CardStyles, ay as CardStylesAlignment, iJ as CardStylesAlignmentWithLiterals, ax as CardStylesType, iI as CardStylesTypeWithLiterals, dR as CellStyle, bs as ChangeableProperty, jD as ChangeablePropertyWithLiterals, ek as Checkbox, es as CheckboxGroup, gz as Checkout, cK as CodeBlockData, dN as CollapsibleListData, dv as ColorData, cA as Colors, jN as CommonSearchWithEntityContext, bc as ComponentType, jn as ComponentTypeWithLiterals, gv as Condition, gr as ConditionNode, gs as ConditionNodeNodeOneOf, h8 as ConfirmSubmissionRequest, bi as ConfirmationLevel, jt as ConfirmationLevelWithLiterals, bj as ContactField, ju as ContactFieldWithLiterals, hD as CountDeletedSubmissionsRequest, hA as CountSubmissionsByFilterRequest, hC as CountSubmissionsRequest, bN as CreateCheckoutFromSubmissionRequest, bO as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gy as CreateCheckoutFromSubmissionResponse, gV as CreateSubmissionBySubmitterRequest, gW as CreateSubmissionBySubmitterResponse, gT as CreateSubmissionForMigrationRequest, gU as CreateSubmissionForMigrationResponse, gP as CreateSubmissionRequest, gQ as CreateSubmissionResponse, ag as Crop, ir as CropWithLiterals, hj as CursorPaging, hk as CursorPagingMetadata, ho as CursorQueryPagingMethodOneOf, hr as CursorSearch, hs as CursorSearchPagingMethodOneOf, hl as Cursors, fF as CustomFieldInfo, e6 as CustomOption, cl as DataExtensionsDetails, eb as DateInput, ed as DatePicker, fq as DateTimeConstraints, e9 as DateTimeInput, ds as Decoration, dt as DecorationDataOneOf, ar as DecorationType, iC as DecorationTypeWithLiterals, eO as DefaultCountryConfig, eP as DefaultCountryConfigOptionsOneOf, h9 as DeleteSubmissionRequest, ha as DeleteSubmissionResponse, dq as Design, dP as Dimensions, aC as Direction, iN as DirectionWithLiterals, fg as DisplayField, bk as DisplayFieldDisplayFieldType, fh as DisplayFieldDisplayFieldTypeOptionsOneOf, jv as DisplayFieldDisplayFieldTypeWithLiterals, b1 as DisplayFieldType, jc as DisplayFieldTypeWithLiterals, cM as DividerData, ac as DividerDataAlignment, im as DividerDataAlignmentWithLiterals, hL as DocumentReady, d$ as DocumentStyle, gC as DomainEvent, gD as DomainEventBodyOneOf, eB as DonationInput, eC as DonationInputOption, hM as DownloadSubmissionRequest, e7 as Dropdown, e8 as DropdownOption, cc as DynamicPriceOptions, fC as EmailInfo, bf as EmailInfoTag, jq as EmailInfoTagWithLiterals, dL as EmbedData, gJ as Empty, gE as EntityCreatedEvent, gH as EntityDeletedEvent, gG as EntityUpdatedEvent, bx as ErrorType, jI as ErrorTypeWithLiterals, dD as EventData, i2 as EventMetadata, bE as ExtendedFields, fk as Field, fl as FieldFieldTypeOptionsOneOf, gk as FieldGroup, gp as FieldOverride, gq as FieldOverridePropertyTypeOptionsOneOf, cg as FieldOverrides, b2 as FieldType, jd as FieldTypeWithLiterals, hY as FieldViolation, hZ as FieldViolationErrorDataOneOf, fY as FieldsDisplayField, fZ as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, ch as FieldsOverrides, eQ as FieldsSettings, cN as FileData, cO as FileSource, cP as FileSourceDataOneOf, ew as FileType, ex as FileUpload, aJ as FirstDayOfWeek, iU as FirstDayOfWeekWithLiterals, eE as FixedPayment, cb as FixedPriceOptions, dy as FontSizeData, as as FontType, iD as FontTypeWithLiterals, bP as Form, hE as FormDeletedSubmissionsCount, bQ as FormField, b$ as FormFieldArrayType, bZ as FormFieldBooleanType, fA as FormFieldContactInfo, fB as FormFieldContactInfoAdditionalInfoOneOf, eV as FormFieldContactInfoAddressInfo, a$ as FormFieldContactInfoContactField, ja as FormFieldContactInfoContactFieldWithLiterals, eW as FormFieldContactInfoCustomFieldInfo, eT as FormFieldContactInfoEmailInfo, aX as FormFieldContactInfoEmailInfoTag, j6 as FormFieldContactInfoEmailInfoTagWithLiterals, eU as FormFieldContactInfoPhoneInfo, aY as FormFieldContactInfoPhoneInfoTag, j7 as FormFieldContactInfoPhoneInfoTagWithLiterals, eX as FormFieldContactInfoSubscriptionInfo, bW as FormFieldNumberType, c0 as FormFieldObjectType, bR as FormFieldStringType, bS as FormFieldStringTypeFormatOptionsOneOf, cn as FormFieldV2, b0 as FormFieldV2FieldType, co as FormFieldV2FieldTypeOptionsOneOf, jb as FormFieldV2FieldTypeWithLiterals, fe as FormFieldV2InputField, ff as FormFieldV2InputFieldInputTypeOptionsOneOf, g1 as FormLayout, g9 as FormOverride, ga as FormProperties, g8 as FormRule, i3 as FormSubmissionSearchSpec, bI as FormSubmissionStatusUpdatedEvent, hB as FormSubmissionsCount, aT as Format, b3 as FormatEnumFormat, je as FormatEnumFormatWithLiterals, j2 as FormatWithLiterals, hS as FormattedFormSubmission, hP as FormattedSubmission, d0 as GIF, c$ as GIFData, ai as GIFType, it as GIFTypeWithLiterals, cR as GalleryData, cX as GalleryOptions, cY as GalleryOptionsLayout, hm as GetDeletedSubmissionRequest, hO as GetFormattedSubmissionRequest, hF as GetMediaUploadURLRequest, h4 as GetSubmissionByCheckoutIdRequest, h5 as GetSubmissionByCheckoutIdResponse, hI as GetSubmissionDownloadUrlRequest, h2 as GetSubmissionRequest, h3 as GetSubmissionResponse, di as Gradient, g5 as Group, d2 as HTMLData, d3 as HTMLDataDataOneOf, hN as HeadersEntry, d1 as HeadingData, cF as Height, gn as HiddenOptions, gL as IdentificationData, gM as IdentificationDataIdOneOf, bw as IdentityType, jH as IdentityTypeWithLiterals, cT as Image, d4 as ImageData, d6 as ImageDataStyles, aH as ImageFit, iS as ImageFitWithLiterals, aF as ImagePosition, iQ as ImagePositionWithLiterals, dF as ImageStyles, eJ as InPersonOptions, aB as InitialExpandedItems, iM as InitialExpandedItemsWithLiterals, fm as InputField, aO as InputFieldArrayComponentType, iZ as InputFieldArrayComponentTypeWithLiterals, el as InputFieldArrayType, eq as InputFieldArrayTypeArrayItems, er as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aL as InputFieldBooleanComponentType, iW as InputFieldBooleanComponentTypeWithLiterals, ej as InputFieldBooleanType, aW as InputFieldInputType, fn as InputFieldInputTypeOptionsOneOf, j5 as InputFieldInputTypeWithLiterals, em as InputFieldIntegerType, fa as InputFieldMultilineAddress, fb as InputFieldMultilineAddressComponentTypeOptionsOneOf, aK as InputFieldNumberComponentType, iV as InputFieldNumberComponentTypeWithLiterals, eg as InputFieldNumberType, en as InputFieldObjectType, eo as InputFieldObjectTypePropertiesType, ep as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f8 as InputFieldPayment, aR as InputFieldPaymentComponentType, f9 as InputFieldPaymentComponentTypeOptionsOneOf, j0 as InputFieldPaymentComponentTypeWithLiterals, fc as InputFieldScheduling, aS as InputFieldSchedulingComponentType, fd as InputFieldSchedulingComponentTypeOptionsOneOf, j1 as InputFieldSchedulingComponentTypeWithLiterals, a3 as InputFieldStringComponentType, ic as InputFieldStringComponentTypeWithLiterals, cp as InputFieldStringType, cr as InputFieldStringTypeDateTimeConstraints, a2 as InputFieldStringTypeFormatEnumFormat, ib as InputFieldStringTypeFormatEnumFormatWithLiterals, cq as InputFieldStringTypeFormatOptionsOneOf, cs as InputFieldStringTypePhoneConstraints, f6 as InputFieldWixFile, aP as InputFieldWixFileComponentType, f7 as InputFieldWixFileComponentTypeOptionsOneOf, i_ as InputFieldWixFileComponentTypeWithLiterals, f2 as InputField_Array, f3 as InputField_ArrayComponentTypeOptionsOneOf, f0 as InputField_Boolean, f1 as InputField_BooleanComponentTypeOptionsOneOf, e_ as InputField_Number, e$ as InputField_NumberComponentTypeOptionsOneOf, f4 as InputField_Object, f5 as InputField_ObjectValidationOneOf, eY as InputField_String, eZ as InputField_StringComponentTypeOptionsOneOf, be as InputType, jp as InputTypeWithLiterals, bY as IntegerType, gA as IsFormSubmittableRequest, gB as IsFormSubmittableResponse, cV as Item, cW as ItemDataOneOf, g3 as ItemLayout, g4 as ItemLayoutItemOneOf, g$ as ItemMetadata, cZ as ItemStyle, b7 as ItemType, ji as ItemTypeWithLiterals, bm as Kind, jx as KindWithLiterals, az as Layout, dZ as LayoutCellData, ae as LayoutType, ip as LayoutTypeWithLiterals, iK as LayoutWithLiterals, ge as LimitationRule, aa as LineStyle, ik as LineStyleWithLiterals, cH as Link, dw as LinkData, cI as LinkDataOneOf, d7 as LinkPreviewData, d8 as LinkPreviewDataStyles, a8 as LinkTarget, ii as LinkTargetWithLiterals, hi as ListDeletedSubmissionsRequest, hQ as ListFormattedSubmissionsRequest, hR as ListFormattedSubmissionsResponse, dT as ListValue, eH as Location, eI as LocationLocationInfoOneOf, d9 as MapData, da as MapSettings, al as MapType, iw as MapTypeWithLiterals, g6 as Margin, bL as MarketingSubscriptionDetails, cS as Media, e1 as MediaItem, e2 as MediaItemMediaOneOf, e3 as MediaSettings, dx as MentionData, gK as MessageEnvelope, d_ as Metadata, bz as Mode, jK as ModeWithLiterals, eM as MultilineAddress, aU as MultilineAddressComponentType, j3 as MultilineAddressComponentTypeWithLiterals, cf as MultilineAddressValidation, gd as NestedForm, ci as NestedFormFieldOverrides, cm as NestedFormOverrides, cv as Node, cw as NodeDataOneOf, cx as NodeStyle, a4 as NodeType, id as NodeTypeWithLiterals, aE as NullValue, iP as NullValueWithLiterals, b5 as NumberComponentType, jg as NumberComponentTypeWithLiterals, bX as NumberErrorMessages, eh as NumberInput, aI as NumberOfColumns, iT as NumberOfColumnsWithLiterals, fs as NumberType, c3 as ObjectErrorMessages, fv as ObjectType, c1 as ObjectTypePropertiesType, c2 as ObjectTypePropertiesTypePropertiesTypeOneOf, dM as Oembed, bu as Operator, jF as OperatorWithLiterals, Z as OptInLevel, i6 as OptInLevelWithLiterals, et as Option, dm as OptionDesign, dh as OptionLayout, gu as OrCondition, bF as OrderDetails, dV as OrderedListData, af as Orientation, iq as OrientationWithLiterals, bl as OverrideEntityType, bt as OverrideEntityTypeEnumOverrideEntityType, jE as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jw as OverrideEntityTypeWithLiterals, cQ as PDFSettings, f$ as PageNavigationOptions, db as ParagraphData, fS as Payment, bb as PaymentComponentType, fT as PaymentComponentTypeOptionsOneOf, jm as PaymentComponentTypeWithLiterals, eD as PaymentInput, c9 as PaymentType, dd as Permissions, fr as PhoneConstraints, fD as PhoneInfo, bg as PhoneInfoTag, jr as PhoneInfoTagWithLiterals, ea as PhoneInput, eL as PhoneOptions, aw as Placement, iH as PlacementWithLiterals, dK as PlaybackOptions, cB as PluginContainerData, a6 as PluginContainerDataAlignment, ig as PluginContainerDataAlignmentWithLiterals, cC as PluginContainerDataWidth, cD as PluginContainerDataWidthDataOneOf, dn as Poll, dc as PollData, dp as PollDataLayout, dl as PollDesign, dg as PollLayout, ap as PollLayoutDirection, iA as PollLayoutDirectionWithLiterals, ao as PollLayoutType, iz as PollLayoutTypeWithLiterals, de as PollOption, at as Position, iE as PositionWithLiterals, gb as PostSubmissionTriggers, c7 as PredefinedValidation, c8 as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, ia as PriceTypeWithLiterals, dI as PricingData, cd as Product, ez as ProductCheckboxGroup, eA as ProductCheckboxGroupOption, ce as ProductPriceOptionsOneOf, a0 as ProductType, i9 as ProductTypeWithLiterals, fw as PropertiesType, b8 as PropertiesTypeEnum, jj as PropertiesTypeEnumWithLiterals, aN as PropertiesTypePropertiesTypeEnum, iY as PropertiesTypePropertiesTypeEnumWithLiterals, fx as PropertiesTypePropertiesTypeOptionsOneOf, bG as PublicTags, ca as QuantityLimit, hn as QuerySubmissionRequest, hy as QuerySubmissionsByNamespaceForExportRequest, hz as QuerySubmissionsByNamespaceForExportResponse, hw as QuerySubmissionsByNamespaceRequest, hx as QuerySubmissionsByNamespaceResponse, e4 as RadioGroup, e5 as RadioGroupOption, ei as RatingInput, gj as RedirectOptions, cJ as Rel, he as RemoveSubmissionFromTrashBinRequest, hf as RemoveSubmissionFromTrashBinResponse, bJ as RemovedSubmissionFromTrash, bo as RequiredIndicator, bp as RequiredIndicatorPlacement, jA as RequiredIndicatorPlacementWithLiterals, gf as RequiredIndicatorProperties, jz as RequiredIndicatorWithLiterals, gm as RequiredOptions, av as Resizing, iG as ResizingWithLiterals, gF as RestoreInfo, hd as RestoreSubmissionFromTrashBinRequest, dG as RibbonStyles, cu as RichContent, f_ as RichContentOptions, gl as Rule, gw as RuleFormOverride, gx as RuleFormOverrideEntityTypeOptionsOneOf, fU as Scheduling, bd as SchedulingComponentType, fV as SchedulingComponentTypeOptionsOneOf, jo as SchedulingComponentTypeWithLiterals, ht as SearchDetails, hu as SearchSubmissionsByNamespaceForExportRequest, hv as SearchSubmissionsByNamespaceForExportResponse, hq as SearchSubmissionsByNamespaceRequest, g7 as Section, ee as ServicesDropdown, ef as ServicesDropdownOption, df as Settings, ey as Signature, by as SortOrder, jJ as SortOrderWithLiterals, hp as Sorting, aj as Source, iu as SourceWithLiterals, bn as SpamFilterProtectionLevel, jy as SpamFilterProtectionLevelWithLiterals, cE as Spoiler, dz as SpoilerData, bA as Status, jL as StatusWithLiterals, g0 as Step, b4 as StringComponentType, jf as StringComponentTypeWithLiterals, bT as StringErrorMessages, fo as StringType, bU as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, i7 as StringTypeFormatEnumFormatWithLiterals, fp as StringTypeFormatOptionsOneOf, bV as StringTypePhoneConstraints, cG as Styles, d5 as StylesBorder, ak as StylesPosition, iv as StylesPositionWithLiterals, bK as SubmissionContactMapped, bM as SubmissionContactMappingSkipped, hJ as SubmissionDocument, hK as SubmissionDocumentDocumentOneOf, bB as SubmissionErrorType, jM as SubmissionErrorTypeWithLiterals, Y as SubmissionStatus, i5 as SubmissionStatusWithLiterals, h$ as SubmissionValidationError, i0 as SubmissionValidationErrorErrorMessageOneOf, h_ as SubmissionValidationErrors, gR as SubmissionValidationErrorsDetails, i4 as SubmissionsQueryResult, gO as SubmitContactResponse, gg as SubmitSettings, gh as SubmitSettingsSubmitSuccessActionOptionsOneOf, br as SubmitSuccessAction, jC as SubmitSuccessActionWithLiterals, bC as Submitter, bD as SubmitterSubmitterOneOf, fG as SubscriptionInfo, a_ as SubscriptionInfoOptInLevel, j9 as SubscriptionInfoOptInLevelWithLiterals, dQ as TableCellData, dO as TableData, bh as Tag, bH as TagList, js as TagWithLiterals, eu as Tags, ev as TagsOption, bq as Target, jB as TargetWithLiterals, a9 as TextAlignment, ij as TextAlignmentWithLiterals, dr as TextData, ct as TextInput, e0 as TextNodeStyle, cL as TextStyle, gi as ThankYouMessageOptions, c_ as Thumbnails, ah as ThumbnailsAlignment, is as ThumbnailsAlignmentWithLiterals, ec as TimeInput, aV as Type, j4 as TypeWithLiterals, hT as UpdateExtendedFieldsRequest, h6 as UpdateSubmissionRequest, h7 as UpdateSubmissionResponse, aQ as UploadFileFormat, i$ as UploadFileFormatWithLiterals, gc as UpsertContact, gN as UpsertContactFromSubmissionRequest, eR as V4FormFieldContactInfo, eS as V4FormFieldContactInfoAdditionalInfoOneOf, fj as V4PageNavigationOptions, fi as V4RichContentOptions, hX as ValidateFormSubmissionRequest, cj as Validation, gS as ValidationError, $ as ValidationFormat, i8 as ValidationFormatWithLiterals, ck as ValidationValidationOneOf, aD as VerticalAlignment, iO as VerticalAlignmentWithLiterals, cU as Video, eK as VideoConferenceOptions, dJ as VideoData, ad as ViewMode, io as ViewModeWithLiterals, am as ViewRole, ix as ViewRoleWithLiterals, an as VoteRole, iy as VoteRoleWithLiterals, bv as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, ie as WidthTypeWithLiterals, il as WidthWithLiterals, fQ as WixFile, ba as WixFileComponentType, fR as WixFileComponentTypeOptionsOneOf, jl as WixFileComponentTypeWithLiterals, fN as _Array, fO as _ArrayComponentTypeOptionsOneOf, fL as _Boolean, fM as _BooleanComponentTypeOptionsOneOf, fJ as _Number, fK as _NumberComponentTypeOptionsOneOf, fP as _Object, fH as _String, fI as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-CMfZIEDj.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
|
@@ -237,6 +237,16 @@ interface GetSubmissionDownloadUrlSignature {
|
|
|
237
237
|
*/
|
|
238
238
|
(submissionId: string): Promise<NonNullablePaths<GetSubmissionDownloadUrlResponse, `document.readyDetails.downloadUrl` | `document.status`, 4>>;
|
|
239
239
|
}
|
|
240
|
+
/** @internal */
|
|
241
|
+
declare function downloadSubmission$1(httpClient: HttpClient): DownloadSubmissionSignature;
|
|
242
|
+
interface DownloadSubmissionSignature {
|
|
243
|
+
/**
|
|
244
|
+
* Download a submission document by redirecting to the document URL.
|
|
245
|
+
* @param - Submission id for which the document is generated.
|
|
246
|
+
* @param - Access token to download the document.
|
|
247
|
+
*/
|
|
248
|
+
(submissionId: string, accessToken: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
|
|
249
|
+
}
|
|
240
250
|
declare function getFormattedSubmission$1(httpClient: HttpClient): GetFormattedSubmissionSignature;
|
|
241
251
|
interface GetFormattedSubmissionSignature {
|
|
242
252
|
/**
|
|
@@ -309,6 +319,8 @@ declare const countDeletedSubmissions: MaybeContext<BuildRESTFunction<typeof cou
|
|
|
309
319
|
declare const getMediaUploadUrl: MaybeContext<BuildRESTFunction<typeof getMediaUploadUrl$1> & typeof getMediaUploadUrl$1>;
|
|
310
320
|
declare const bulkMarkSubmissionsAsSeen: MaybeContext<BuildRESTFunction<typeof bulkMarkSubmissionsAsSeen$1> & typeof bulkMarkSubmissionsAsSeen$1>;
|
|
311
321
|
declare const getSubmissionDownloadUrl: MaybeContext<BuildRESTFunction<typeof getSubmissionDownloadUrl$1> & typeof getSubmissionDownloadUrl$1>;
|
|
322
|
+
/** @internal */
|
|
323
|
+
declare const downloadSubmission: MaybeContext<BuildRESTFunction<typeof downloadSubmission$1> & typeof downloadSubmission$1>;
|
|
312
324
|
declare const getFormattedSubmission: MaybeContext<BuildRESTFunction<typeof getFormattedSubmission$1> & typeof getFormattedSubmission$1>;
|
|
313
325
|
declare const updateExtendedFields: MaybeContext<BuildRESTFunction<typeof updateExtendedFields$1> & typeof updateExtendedFields$1>;
|
|
314
326
|
/** @internal */
|
|
@@ -346,4 +358,4 @@ declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onS
|
|
|
346
358
|
*/
|
|
347
359
|
declare const onSubmissionUpdated: BuildEventDefinition<typeof onSubmissionUpdated$1> & typeof onSubmissionUpdated$1;
|
|
348
360
|
|
|
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 };
|
|
361
|
+
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 = {
|
|
@@ -1767,7 +1793,8 @@ async function createSubmission2(submission, options) {
|
|
|
1767
1793
|
const { httpClient, sideEffects } = arguments[2];
|
|
1768
1794
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
1769
1795
|
submission,
|
|
1770
|
-
captchaToken: options?.captchaToken
|
|
1796
|
+
captchaToken: options?.captchaToken,
|
|
1797
|
+
additionalMetadata: options?.additionalMetadata
|
|
1771
1798
|
});
|
|
1772
1799
|
const reqOpts = createSubmission(payload);
|
|
1773
1800
|
sideEffects?.onSiteCall?.();
|
|
@@ -1782,7 +1809,8 @@ async function createSubmission2(submission, options) {
|
|
|
1782
1809
|
spreadPathsToArguments: {},
|
|
1783
1810
|
explicitPathsToArguments: {
|
|
1784
1811
|
submission: "$[0]",
|
|
1785
|
-
captchaToken: "$[1].captchaToken"
|
|
1812
|
+
captchaToken: "$[1].captchaToken",
|
|
1813
|
+
additionalMetadata: "$[1].additionalMetadata"
|
|
1786
1814
|
},
|
|
1787
1815
|
singleArgumentUnchanged: false
|
|
1788
1816
|
},
|
|
@@ -2335,6 +2363,32 @@ async function getSubmissionDownloadUrl2(submissionId) {
|
|
|
2335
2363
|
throw transformedError;
|
|
2336
2364
|
}
|
|
2337
2365
|
}
|
|
2366
|
+
async function downloadSubmission2(submissionId, accessToken) {
|
|
2367
|
+
const { httpClient, sideEffects } = arguments[2];
|
|
2368
|
+
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2369
|
+
submissionId,
|
|
2370
|
+
accessToken
|
|
2371
|
+
});
|
|
2372
|
+
const reqOpts = downloadSubmission(payload);
|
|
2373
|
+
sideEffects?.onSiteCall?.();
|
|
2374
|
+
try {
|
|
2375
|
+
const result = await httpClient.request(reqOpts);
|
|
2376
|
+
sideEffects?.onSuccess?.(result);
|
|
2377
|
+
return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
|
|
2378
|
+
} catch (err) {
|
|
2379
|
+
const transformedError = (0, import_transform_error.transformError)(
|
|
2380
|
+
err,
|
|
2381
|
+
{
|
|
2382
|
+
spreadPathsToArguments: {},
|
|
2383
|
+
explicitPathsToArguments: { submissionId: "$[0]", accessToken: "$[1]" },
|
|
2384
|
+
singleArgumentUnchanged: false
|
|
2385
|
+
},
|
|
2386
|
+
["submissionId", "accessToken"]
|
|
2387
|
+
);
|
|
2388
|
+
sideEffects?.onError?.(err);
|
|
2389
|
+
throw transformedError;
|
|
2390
|
+
}
|
|
2391
|
+
}
|
|
2338
2392
|
async function getFormattedSubmission2(submissionId) {
|
|
2339
2393
|
const { httpClient, sideEffects } = arguments[1];
|
|
2340
2394
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
@@ -2651,6 +2705,14 @@ function getSubmissionDownloadUrl3(httpClient) {
|
|
|
2651
2705
|
{ httpClient }
|
|
2652
2706
|
);
|
|
2653
2707
|
}
|
|
2708
|
+
function downloadSubmission3(httpClient) {
|
|
2709
|
+
return (submissionId, accessToken) => downloadSubmission2(
|
|
2710
|
+
submissionId,
|
|
2711
|
+
accessToken,
|
|
2712
|
+
// @ts-ignore
|
|
2713
|
+
{ httpClient }
|
|
2714
|
+
);
|
|
2715
|
+
}
|
|
2654
2716
|
function getFormattedSubmission3(httpClient) {
|
|
2655
2717
|
return (submissionId) => getFormattedSubmission2(
|
|
2656
2718
|
submissionId,
|
|
@@ -2823,6 +2885,7 @@ var countDeletedSubmissions4 = /* @__PURE__ */ (0, import_rest_modules3.createRE
|
|
|
2823
2885
|
var getMediaUploadUrl4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getMediaUploadUrl3);
|
|
2824
2886
|
var bulkMarkSubmissionsAsSeen4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkMarkSubmissionsAsSeen3);
|
|
2825
2887
|
var getSubmissionDownloadUrl4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getSubmissionDownloadUrl3);
|
|
2888
|
+
var downloadSubmission4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(downloadSubmission3);
|
|
2826
2889
|
var getFormattedSubmission4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getFormattedSubmission3);
|
|
2827
2890
|
var updateExtendedFields4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(updateExtendedFields3);
|
|
2828
2891
|
var bulkUpdateFormSubmissionTags4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkUpdateFormSubmissionTags3);
|
|
@@ -2968,6 +3031,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
|
|
|
2968
3031
|
countSubmissionsByFilter,
|
|
2969
3032
|
createSubmission,
|
|
2970
3033
|
deleteSubmission,
|
|
3034
|
+
downloadSubmission,
|
|
2971
3035
|
getDeletedSubmission,
|
|
2972
3036
|
getFormattedSubmission,
|
|
2973
3037
|
getMediaUploadUrl,
|