@wix/auto_sdk_forms_submissions 1.0.52 → 1.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/{forms-v4-submission-submissions.universal--zOLbWnk.d.ts → forms-v4-submission-submissions.universal-DjDjo-gt.d.ts} +18 -11
- package/build/cjs/index.d.ts +13 -3
- package/build/cjs/index.js +62 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +53 -1
- 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--zOLbWnk.d.mts → forms-v4-submission-submissions.universal-DjDjo-gt.d.mts} +18 -11
- package/build/es/index.d.mts +13 -3
- package/build/es/index.mjs +61 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +52 -1
- 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-B5nDaidY.d.ts → forms-v4-submission-submissions.universal-BBNQW7g1.d.ts} +18 -11
- package/build/internal/cjs/index.d.ts +13 -3
- package/build/internal/cjs/index.js +62 -1
- 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 +53 -1
- 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-B5nDaidY.d.mts → forms-v4-submission-submissions.universal-BBNQW7g1.d.mts} +18 -11
- package/build/internal/es/index.d.mts +13 -3
- package/build/internal/es/index.mjs +61 -1
- 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 +52 -1
- 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
|
@@ -4745,12 +4745,10 @@ declare enum ItemType {
|
|
|
4745
4745
|
/** Array can contain numeric values. */
|
|
4746
4746
|
NUMBER = "NUMBER",
|
|
4747
4747
|
/** Array can contain boolean values. */
|
|
4748
|
-
BOOLEAN = "BOOLEAN"
|
|
4749
|
-
/** Array can contain object values. */
|
|
4750
|
-
OBJECT = "OBJECT"
|
|
4748
|
+
BOOLEAN = "BOOLEAN"
|
|
4751
4749
|
}
|
|
4752
4750
|
/** @enumType */
|
|
4753
|
-
type ItemTypeWithLiterals = ItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN'
|
|
4751
|
+
type ItemTypeWithLiterals = ItemType | 'UNKNOWN_ITEM_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN';
|
|
4754
4752
|
interface ObjectType {
|
|
4755
4753
|
/** Definition of object properties and their validation rules. */
|
|
4756
4754
|
properties?: Record<string, PropertiesType>;
|
|
@@ -4804,8 +4802,6 @@ interface ArrayItems extends ArrayItemsItemTypeOptionsOneOf {
|
|
|
4804
4802
|
numberOptions?: NumberType;
|
|
4805
4803
|
/** Validation rules for boolean array elements. */
|
|
4806
4804
|
booleanOptions?: BooleanType;
|
|
4807
|
-
/** Validation rules for object array elements. */
|
|
4808
|
-
objectOptions?: ObjectType;
|
|
4809
4805
|
/**
|
|
4810
4806
|
* Allowed item type.
|
|
4811
4807
|
* @readonly
|
|
@@ -4820,8 +4816,6 @@ interface ArrayItemsItemTypeOptionsOneOf {
|
|
|
4820
4816
|
numberOptions?: NumberType;
|
|
4821
4817
|
/** Validation rules for boolean array elements. */
|
|
4822
4818
|
booleanOptions?: BooleanType;
|
|
4823
|
-
/** Validation rules for object array elements. */
|
|
4824
|
-
objectOptions?: ObjectType;
|
|
4825
4819
|
}
|
|
4826
4820
|
declare enum ArrayComponentType {
|
|
4827
4821
|
/** Unknown component type. */
|
|
@@ -6715,12 +6709,12 @@ interface DownloadSubmissionRequest {
|
|
|
6715
6709
|
* Submission id for which the document is generated.
|
|
6716
6710
|
* @format GUID
|
|
6717
6711
|
*/
|
|
6718
|
-
submissionId
|
|
6712
|
+
submissionId: string;
|
|
6719
6713
|
/**
|
|
6720
6714
|
* Access token to download the document.
|
|
6721
6715
|
* @maxLength 10000
|
|
6722
6716
|
*/
|
|
6723
|
-
accessToken
|
|
6717
|
+
accessToken: string;
|
|
6724
6718
|
}
|
|
6725
6719
|
interface RawHttpResponse {
|
|
6726
6720
|
body?: Uint8Array;
|
|
@@ -7818,6 +7812,19 @@ declare function bulkMarkSubmissionsAsSeen(ids: string[], formId: string): Promi
|
|
|
7818
7812
|
* @fqn wix.forms.v4.FormSubmissionService.GetSubmissionDownloadUrl
|
|
7819
7813
|
*/
|
|
7820
7814
|
declare function getSubmissionDownloadUrl(submissionId: string): Promise<NonNullablePaths<GetSubmissionDownloadUrlResponse, `document.readyDetails.downloadUrl` | `document.status`, 4>>;
|
|
7815
|
+
/**
|
|
7816
|
+
* Download a submission document by redirecting to the document URL.
|
|
7817
|
+
* @param submissionId - Submission id for which the document is generated.
|
|
7818
|
+
* @param accessToken - Access token to download the document.
|
|
7819
|
+
* @public
|
|
7820
|
+
* @documentationMaturity preview
|
|
7821
|
+
* @requiredField accessToken
|
|
7822
|
+
* @requiredField submissionId
|
|
7823
|
+
* @permissionId WIX_FORMS.SUBMISSION_READ_ANY
|
|
7824
|
+
* @applicableIdentity APP
|
|
7825
|
+
* @fqn wix.forms.v4.FormSubmissionService.DownloadSubmission
|
|
7826
|
+
*/
|
|
7827
|
+
declare function downloadSubmission(submissionId: string, accessToken: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
|
|
7821
7828
|
/**
|
|
7822
7829
|
* Retrieves a submission formatted by language
|
|
7823
7830
|
* @param submissionId - Submission ID.
|
|
@@ -7881,4 +7888,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7881
7888
|
fieldsToValidate?: string[];
|
|
7882
7889
|
}
|
|
7883
7890
|
|
|
7884
|
-
export { NodeType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, SubmissionStatus as O, OptInLevel as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, StringTypeFormatEnumFormat as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, ValidationFormat as W, ProductType as X, PriceType as Y, InputFieldStringTypeFormatEnumFormat as Z, InputFieldStringComponentType as _, type UpsertContactFromSubmissionResponse as a, StringComponentType as a$, WidthType as a0, PluginContainerDataAlignment as a1, ButtonDataType as a2, LinkTarget as a3, TextAlignment as a4, LineStyle as a5, Width as a6, DividerDataAlignment as a7, ViewMode as a8, LayoutType as a9, ImagePosition as aA, Alignment as aB, ImageFit as aC, NumberOfColumns as aD, FirstDayOfWeek as aE, InputFieldNumberComponentType as aF, InputFieldBooleanComponentType as aG, ArrayItemsItemType as aH, PropertiesTypePropertiesTypeEnum as aI, InputFieldArrayComponentType as aJ, InputFieldWixFileComponentType as aK, UploadFileFormat as aL, InputFieldPaymentComponentType as aM, InputFieldSchedulingComponentType as aN, Format as aO, MultilineAddressComponentType as aP, Type as aQ, InputFieldInputType as aR, FormFieldContactInfoEmailInfoTag as aS, FormFieldContactInfoPhoneInfoTag as aT, AddressInfoTag as aU, SubscriptionInfoOptInLevel as aV, FormFieldContactInfoContactField as aW, FormFieldV2FieldType as aX, DisplayFieldType as aY, FieldType as aZ, FormatEnumFormat as a_, Orientation as aa, Crop as ab, ThumbnailsAlignment as ac, GIFType as ad, Source as ae, StylesPosition as af, MapType as ag, ViewRole as ah, VoteRole as ai, PollLayoutType as aj, PollLayoutDirection as ak, BackgroundType as al, DecorationType as am, FontType as an, Position as ao, AspectRatio as ap, Resizing as aq, Placement as ar, CardStylesType as as, CardStylesAlignment as at, Layout as au, AppType as av, InitialExpandedItems as aw, Direction as ax, VerticalAlignment as ay, NullValue as az, type CreateSubmissionApplicationErrors as b, type ObjectErrorMessages as b$, NumberComponentType as b0, BooleanComponentType as b1, ItemType as b2, PropertiesTypeEnum as b3, ArrayComponentType as b4, WixFileComponentType as b5, PaymentComponentType as b6, ComponentType as b7, SchedulingComponentType as b8, InputType as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type CreateCheckoutFromSubmissionRequest as bI, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bJ, type Form as bK, type FormField as bL, type FormFieldStringType as bM, type FormFieldStringTypeFormatOptionsOneOf as bN, type StringErrorMessages as bO, type StringTypeDateTimeConstraints as bP, type StringTypePhoneConstraints as bQ, type StringTypeValidationMessages as bR, type FormFieldNumberType as bS, type NumberErrorMessages as bT, type IntegerType as bU, type FormFieldBooleanType as bV, type BooleanErrorMessages as bW, type FormFieldArrayType as bX, type FormFieldObjectType as bY, type ObjectTypePropertiesType as bZ, type ObjectTypePropertiesTypePropertiesTypeOneOf as b_, EmailInfoTag as ba, PhoneInfoTag as bb, Tag as bc, ConfirmationLevel as bd, ContactField as be, DisplayFieldDisplayFieldType as bf, OverrideEntityType as bg, Kind as bh, SpamFilterProtectionLevel as bi, RequiredIndicator as bj, RequiredIndicatorPlacement as bk, Target as bl, SubmitSuccessAction as bm, ChangeableProperty as bn, OverrideEntityTypeEnumOverrideEntityType as bo, Operator as bp, WebhookIdentityType as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type HTMLDataDataOneOf as c$, type ArrayTypeArrayItems as c0, type ArrayTypeArrayItemsItemsOneOf as c1, type ArrayErrorMessages as c2, type PredefinedValidation as c3, type PredefinedValidationFormatOptionsOneOf as c4, type PaymentType as c5, type QuantityLimit as c6, type FixedPriceOptions as c7, type DynamicPriceOptions as c8, type Product as c9, type Spoiler as cA, type Height as cB, type Styles as cC, type Link as cD, type LinkDataOneOf as cE, type Rel as cF, type CodeBlockData as cG, type TextStyle as cH, type DividerData as cI, type FileData as cJ, type FileSource as cK, type FileSourceDataOneOf as cL, type PDFSettings as cM, type GalleryData as cN, type Media as cO, type Image as cP, type Video as cQ, type Item as cR, type ItemDataOneOf as cS, type GalleryOptions as cT, type GalleryOptionsLayout as cU, type ItemStyle as cV, type Thumbnails as cW, type GIFData as cX, type GIF as cY, type HeadingData as cZ, type HTMLData as c_, type ProductPriceOptionsOneOf as ca, type MultilineAddressValidation as cb, type FieldOverrides as cc, type FieldsOverrides as cd, type NestedFormFieldOverrides as ce, type Validation as cf, type ValidationValidationOneOf as cg, type DataExtensionsDetails as ch, type NestedFormOverrides as ci, type FormFieldV2 as cj, type FormFieldV2FieldTypeOptionsOneOf as ck, type InputFieldStringType as cl, type InputFieldStringTypeFormatOptionsOneOf as cm, type InputFieldStringTypeDateTimeConstraints as cn, type InputFieldStringTypePhoneConstraints as co, type TextInput as cp, type RichContent as cq, type Node as cr, type NodeDataOneOf as cs, type NodeStyle as ct, type ButtonData as cu, type Border as cv, type Colors as cw, type PluginContainerData as cx, type PluginContainerDataWidth as cy, type PluginContainerDataWidthDataOneOf as cz, type UpdateSubmission as d, type MediaSettings as d$, type ImageData as d0, type StylesBorder as d1, type ImageDataStyles as d2, type LinkPreviewData as d3, type LinkPreviewDataStyles as d4, type MapData as d5, type MapSettings as d6, type ParagraphData as d7, type PollData as d8, type Permissions as d9, type ButtonStyles as dA, type ImageStyles as dB, type RibbonStyles as dC, type CardStyles as dD, type PricingData as dE, type VideoData as dF, type PlaybackOptions as dG, type EmbedData as dH, type Oembed as dI, type CollapsibleListData as dJ, type TableData as dK, type Dimensions as dL, type TableCellData as dM, type CellStyle as dN, type BorderColors as dO, type ListValue as dP, type AudioData as dQ, type OrderedListData as dR, type BulletedListData as dS, type BlockquoteData as dT, type CaptionData as dU, type LayoutCellData as dV, type Metadata as dW, type DocumentStyle as dX, type TextNodeStyle as dY, type MediaItem as dZ, type MediaItemMediaOneOf as d_, type PollOption as da, type Settings as db, type PollLayout as dc, type OptionLayout as dd, type Gradient as de, type Background as df, type BackgroundBackgroundOneOf as dg, type PollDesign as dh, type OptionDesign as di, type Poll as dj, type PollDataLayout as dk, type Design as dl, type TextData as dm, type Decoration as dn, type DecorationDataOneOf as dp, type AnchorData as dq, type ColorData as dr, type LinkData as ds, type MentionData as dt, type FontSizeData as du, type SpoilerData as dv, type AppEmbedData as dw, type AppEmbedDataAppDataOneOf as dx, type BookingData as dy, type EventData as dz, type UpdateSubmissionValidationErrors as e, type InputField_Array as e$, type RadioGroup as e0, type RadioGroupOption as e1, type CustomOption as e2, type Dropdown as e3, type DropdownOption as e4, type DateTimeInput as e5, type PhoneInput as e6, type DateInput as e7, type TimeInput as e8, type DatePicker as e9, type PaymentInput as eA, type FixedPayment as eB, type Appointment as eC, type AppointmentFormatInfoOneOf as eD, type Location as eE, type LocationLocationInfoOneOf as eF, type InPersonOptions as eG, type VideoConferenceOptions as eH, type PhoneOptions as eI, type MultilineAddress as eJ, type AddressLine2 as eK, type DefaultCountryConfig as eL, type DefaultCountryConfigOptionsOneOf as eM, type FieldsSettings as eN, type V4FormFieldContactInfo as eO, type V4FormFieldContactInfoAdditionalInfoOneOf as eP, type FormFieldContactInfoEmailInfo as eQ, type FormFieldContactInfoPhoneInfo as eR, type FormFieldContactInfoAddressInfo as eS, type FormFieldContactInfoCustomFieldInfo as eT, type FormFieldContactInfoSubscriptionInfo as eU, type InputField_String as eV, type InputField_StringComponentTypeOptionsOneOf as eW, type InputField_Number as eX, type InputField_NumberComponentTypeOptionsOneOf as eY, type InputField_Boolean as eZ, type InputField_BooleanComponentTypeOptionsOneOf as e_, type ServicesDropdown as ea, type ServiceOption as eb, type InputFieldNumberType as ec, type NumberInput as ed, type RatingInput as ee, type InputFieldBooleanType as ef, type Checkbox as eg, type InputFieldArrayType as eh, type InputFieldIntegerType as ei, type InputFieldObjectType as ej, type InputFieldObjectTypePropertiesType as ek, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as el, type InputFieldArrayTypeArrayItems as em, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as en, type CheckboxGroup as eo, type Option as ep, type Tags as eq, type TagsOption as er, type ServicesCheckboxGroup as es, type FileType as et, type FileUpload as eu, type Signature as ev, type ProductCheckboxGroup as ew, type ProductCheckboxGroupOption as ex, type DonationInput as ey, type DonationInputOption as ez, type ConfirmSubmissionResponse as f, type FormLayout as f$, type InputField_ArrayComponentTypeOptionsOneOf as f0, type InputField_Object as f1, type InputField_ObjectValidationOneOf as f2, type InputFieldWixFile as f3, type InputFieldWixFileComponentTypeOptionsOneOf as f4, type InputFieldPayment as f5, type InputFieldPaymentComponentTypeOptionsOneOf as f6, type InputFieldMultilineAddress as f7, type InputFieldMultilineAddressComponentTypeOptionsOneOf as f8, type InputFieldScheduling as f9, type EmailInfo as fA, type PhoneInfo as fB, type AddressInfo as fC, type CustomFieldInfo as fD, type SubscriptionInfo as fE, type _String as fF, type _StringComponentTypeOptionsOneOf as fG, type _Number as fH, type _NumberComponentTypeOptionsOneOf as fI, type _Boolean as fJ, type _BooleanComponentTypeOptionsOneOf as fK, type _Array as fL, type _ArrayComponentTypeOptionsOneOf as fM, type _Object as fN, type WixFile as fO, type WixFileComponentTypeOptionsOneOf as fP, type Payment as fQ, type PaymentComponentTypeOptionsOneOf as fR, type Scheduling as fS, type SchedulingComponentTypeOptionsOneOf as fT, type Address as fU, type AddressComponentTypeOptionsOneOf as fV, type FieldsDisplayField as fW, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as fX, type RichContentOptions as fY, type PageNavigationOptions as fZ, type Step as f_, type InputFieldSchedulingComponentTypeOptionsOneOf as fa, type FormFieldV2InputField as fb, type FormFieldV2InputFieldInputTypeOptionsOneOf as fc, type DisplayField as fd, type DisplayFieldDisplayFieldTypeOptionsOneOf as fe, type V4RichContentOptions as ff, type V4PageNavigationOptions as fg, type Field as fh, type FieldFieldTypeOptionsOneOf as fi, type InputField as fj, type InputFieldInputTypeOptionsOneOf as fk, type StringType as fl, type StringTypeFormatOptionsOneOf as fm, type DateTimeConstraints as fn, type PhoneConstraints as fo, type ValidationMessages as fp, type NumberType as fq, type BooleanType as fr, type ArrayType as fs, type ObjectType as ft, type PropertiesType as fu, type PropertiesTypePropertiesTypeOptionsOneOf as fv, type ArrayItems as fw, type ArrayItemsItemTypeOptionsOneOf as fx, type FormFieldContactInfo as fy, type FormFieldContactInfoAdditionalInfoOneOf as fz, type BulkDeleteSubmissionResponse as g, type BulkActionMetadata as g$, type BreakPoint as g0, type ItemLayout as g1, type ItemLayoutItemOneOf as g2, type Group as g3, type Margin as g4, type Section as g5, type FormRule as g6, type FormOverride as g7, type FormProperties as g8, type PostSubmissionTriggers as g9, type DomainEvent as gA, type DomainEventBodyOneOf as gB, type EntityCreatedEvent as gC, type RestoreInfo as gD, type EntityUpdatedEvent as gE, type EntityDeletedEvent as gF, type ActionEvent as gG, type Empty as gH, type MessageEnvelope as gI, type IdentificationData as gJ, type IdentificationDataIdOneOf as gK, type UpsertContactFromSubmissionRequest as gL, type SubmitContactResponse as gM, type CreateSubmissionRequest as gN, type CreateSubmissionResponse as gO, type SubmissionValidationErrorsDetails as gP, type ValidationError as gQ, type CreateSubmissionForMigrationRequest as gR, type CreateSubmissionForMigrationResponse as gS, type CreateSubmissionBySubmitterRequest as gT, type CreateSubmissionBySubmitterResponse as gU, type BulkCreateSubmissionBySubmitterRequest as gV, type BulkCreateSubmissionBySubmitterData as gW, type BulkCreateSubmissionBySubmitterResponse as gX, type BulkSubmissionResult as gY, type ItemMetadata as gZ, type ApplicationError as g_, type UpsertContact as ga, type NestedForm as gb, type LimitationRule as gc, type RequiredIndicatorProperties as gd, type SubmitSettings as ge, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gf, type ThankYouMessageOptions as gg, type RedirectOptions as gh, type FieldGroup as gi, type Rule as gj, type RequiredOptions as gk, type HiddenOptions as gl, type AllowedValuesOptions as gm, type FieldOverride as gn, type FieldOverridePropertyTypeOptionsOneOf as go, type ConditionNode as gp, type ConditionNodeNodeOneOf as gq, type AndCondition as gr, type OrCondition as gs, type Condition as gt, type RuleFormOverride as gu, type RuleFormOverrideEntityTypeOptionsOneOf as gv, type CreateCheckoutFromSubmissionResponse as gw, type Checkout as gx, type IsFormSubmittableRequest as gy, type IsFormSubmittableResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type SubmissionValidationErrors as h$, type GetSubmissionRequest as h0, type GetSubmissionResponse as h1, type GetSubmissionByCheckoutIdRequest as h2, type GetSubmissionByCheckoutIdResponse as h3, type UpdateSubmissionRequest as h4, type UpdateSubmissionResponse as h5, type ConfirmSubmissionRequest as h6, type DeleteSubmissionRequest as h7, type DeleteSubmissionResponse as h8, type BulkDeleteSubmissionRequest as h9, type CountSubmissionsRequest as hA, type CountDeletedSubmissionsRequest as hB, type FormDeletedSubmissionsCount as hC, type GetMediaUploadURLRequest as hD, type BulkMarkSubmissionsAsSeenRequest as hE, type BulkMarkSubmissionsAsSeenResponse as hF, type GetSubmissionDownloadUrlRequest as hG, type SubmissionDocument as hH, type SubmissionDocumentDocumentOneOf as hI, type DocumentReady as hJ, type DownloadSubmissionRequest as hK, type RawHttpResponse as hL, type HeadersEntry as hM, type GetFormattedSubmissionRequest as hN, type FormattedSubmission as hO, type ListFormattedSubmissionsRequest as hP, type ListFormattedSubmissionsResponse as hQ, type FormattedFormSubmission as hR, type UpdateExtendedFieldsRequest as hS, type BulkUpdateFormSubmissionTagsRequest as hT, type BulkUpdateFormSubmissionTagsResponse as hU, type BulkUpdateFormSubmissionTagsResult as hV, type BulkUpdateFormSubmissionTagsByFilterRequest as hW, type BulkUpdateFormSubmissionTagsByFilterResponse as hX, type ValidateFormSubmissionRequest as hY, type FieldViolation as hZ, type FieldViolationErrorDataOneOf as h_, type BulkDeleteSubmissionResult as ha, type RestoreSubmissionFromTrashBinRequest as hb, type RemoveSubmissionFromTrashBinRequest as hc, type RemoveSubmissionFromTrashBinResponse as hd, type BulkRemoveSubmissionFromTrashBinRequest as he, type BulkRemoveSubmissionFromTrashBinResult as hf, type ListDeletedSubmissionsRequest as hg, type CursorPaging as hh, type CursorPagingMetadata as hi, type Cursors as hj, type GetDeletedSubmissionRequest as hk, type QuerySubmissionRequest as hl, type CursorQueryPagingMethodOneOf as hm, type Sorting as hn, type SearchSubmissionsByNamespaceRequest as ho, type CursorSearch as hp, type CursorSearchPagingMethodOneOf as hq, type SearchDetails as hr, type SearchSubmissionsByNamespaceForExportRequest as hs, type SearchSubmissionsByNamespaceForExportResponse as ht, type QuerySubmissionsByNamespaceRequest as hu, type QuerySubmissionsByNamespaceResponse as hv, type QuerySubmissionsByNamespaceForExportRequest as hw, type QuerySubmissionsByNamespaceForExportResponse as hx, type CountSubmissionsByFilterRequest as hy, type FormSubmissionsCount as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PropertiesTypePropertiesTypeEnumWithLiterals as i$, type SubmissionValidationError as i0, type SubmissionValidationErrorErrorMessageOneOf as i1, type BaseEventMetadata as i2, type EventMetadata as i3, type FormSubmissionSearchSpec as i4, type SubmissionsQueryResult as i5, type BulkUpdateFormSubmissionTagsOptions as i6, type BulkUpdateFormSubmissionTagsByFilterOptions as i7, type SubmissionStatusWithLiterals as i8, type OptInLevelWithLiterals as i9, type ViewRoleWithLiterals as iA, type VoteRoleWithLiterals as iB, type PollLayoutTypeWithLiterals as iC, type PollLayoutDirectionWithLiterals as iD, type BackgroundTypeWithLiterals as iE, type DecorationTypeWithLiterals as iF, type FontTypeWithLiterals as iG, type PositionWithLiterals as iH, type AspectRatioWithLiterals as iI, type ResizingWithLiterals as iJ, type PlacementWithLiterals as iK, type CardStylesTypeWithLiterals as iL, type CardStylesAlignmentWithLiterals as iM, type LayoutWithLiterals as iN, type AppTypeWithLiterals as iO, type InitialExpandedItemsWithLiterals as iP, type DirectionWithLiterals as iQ, type VerticalAlignmentWithLiterals as iR, type NullValueWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type InputFieldNumberComponentTypeWithLiterals as iY, type InputFieldBooleanComponentTypeWithLiterals as iZ, type ArrayItemsItemTypeWithLiterals as i_, type StringTypeFormatEnumFormatWithLiterals as ia, type ValidationFormatWithLiterals as ib, type ProductTypeWithLiterals as ic, type PriceTypeWithLiterals as id, type InputFieldStringTypeFormatEnumFormatWithLiterals as ie, type InputFieldStringComponentTypeWithLiterals as ig, type NodeTypeWithLiterals as ih, type WidthTypeWithLiterals as ii, type PluginContainerDataAlignmentWithLiterals as ij, type ButtonDataTypeWithLiterals as ik, type LinkTargetWithLiterals as il, type TextAlignmentWithLiterals as im, type LineStyleWithLiterals as io, type WidthWithLiterals as ip, type DividerDataAlignmentWithLiterals as iq, type ViewModeWithLiterals as ir, type LayoutTypeWithLiterals as is, type OrientationWithLiterals as it, type CropWithLiterals as iu, type ThumbnailsAlignmentWithLiterals as iv, type GIFTypeWithLiterals as iw, type SourceWithLiterals as ix, type StylesPositionWithLiterals as iy, type MapTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, updateSubmission as j$, type InputFieldArrayComponentTypeWithLiterals as j0, type InputFieldWixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type InputFieldPaymentComponentTypeWithLiterals as j3, type InputFieldSchedulingComponentTypeWithLiterals as j4, type FormatWithLiterals as j5, type MultilineAddressComponentTypeWithLiterals as j6, type TypeWithLiterals as j7, type InputFieldInputTypeWithLiterals as j8, type FormFieldContactInfoEmailInfoTagWithLiterals as j9, type KindWithLiterals as jA, type SpamFilterProtectionLevelWithLiterals as jB, type RequiredIndicatorWithLiterals as jC, type RequiredIndicatorPlacementWithLiterals as jD, type TargetWithLiterals as jE, type SubmitSuccessActionWithLiterals as jF, type ChangeablePropertyWithLiterals as jG, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jH, type OperatorWithLiterals as jI, type WebhookIdentityTypeWithLiterals as jJ, type IdentityTypeWithLiterals as jK, type ErrorTypeWithLiterals as jL, type SortOrderWithLiterals as jM, type ModeWithLiterals as jN, type StatusWithLiterals as jO, type SubmissionErrorTypeWithLiterals as jP, type CommonSearchWithEntityContext as jQ, onSubmissionCreated as jR, onSubmissionDeleted as jS, onSubmissionRemovedSubmissionFromTrash as jT, onSubmissionStatusUpdated as jU, onSubmissionContactMapped as jV, onSubmissionContactMappingSkipped as jW, onSubmissionUpdated as jX, upsertContactFromSubmission as jY, createSubmission as jZ, getSubmission as j_, type FormFieldContactInfoPhoneInfoTagWithLiterals as ja, type AddressInfoTagWithLiterals as jb, type SubscriptionInfoOptInLevelWithLiterals as jc, type FormFieldContactInfoContactFieldWithLiterals as jd, type FormFieldV2FieldTypeWithLiterals as je, type DisplayFieldTypeWithLiterals as jf, type FieldTypeWithLiterals as jg, type FormatEnumFormatWithLiterals as jh, type StringComponentTypeWithLiterals as ji, type NumberComponentTypeWithLiterals as jj, type BooleanComponentTypeWithLiterals as jk, type ItemTypeWithLiterals as jl, type PropertiesTypeEnumWithLiterals as jm, type ArrayComponentTypeWithLiterals as jn, type WixFileComponentTypeWithLiterals as jo, type PaymentComponentTypeWithLiterals as jp, type ComponentTypeWithLiterals as jq, type SchedulingComponentTypeWithLiterals as jr, type InputTypeWithLiterals as js, type EmailInfoTagWithLiterals as jt, type PhoneInfoTagWithLiterals as ju, type TagWithLiterals as jv, type ConfirmationLevelWithLiterals as jw, type ContactFieldWithLiterals as jx, type DisplayFieldDisplayFieldTypeWithLiterals as jy, type OverrideEntityTypeWithLiterals as jz, type CursorQuery as k, confirmSubmission as k0, deleteSubmission as k1, bulkDeleteSubmission as k2, restoreSubmissionFromTrashBin as k3, removeSubmissionFromTrashBin as k4, bulkRemoveSubmissionFromTrashBin as k5, listDeletedSubmissions as k6, getDeletedSubmission as k7, querySubmission as k8, querySubmissionsByNamespace as k9, countSubmissionsByFilter as ka, countSubmissions as kb, countDeletedSubmissions as kc, getMediaUploadUrl as kd, bulkMarkSubmissionsAsSeen as ke, getSubmissionDownloadUrl as kf, getFormattedSubmission as kg, updateExtendedFields as kh, 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 GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
7891
|
+
export { InputFieldStringComponentType as $, type UpdateExtendedFieldsResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type ValidateFormSubmissionResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionCreatedEnvelope as H, type SubmissionDeletedEnvelope as I, type SubmissionRemovedSubmissionFromTrashEnvelope as J, type SubmissionStatusUpdatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappedEnvelope as M, type SubmissionContactMappingSkippedEnvelope as N, type SubmissionUpdatedEnvelope as O, SubmissionStatus as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, OptInLevel as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, StringTypeFormatEnumFormat as W, ValidationFormat as X, ProductType as Y, PriceType as Z, InputFieldStringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FormatEnumFormat as a$, NodeType as a0, WidthType as a1, PluginContainerDataAlignment as a2, ButtonDataType as a3, LinkTarget as a4, TextAlignment as a5, LineStyle as a6, Width as a7, DividerDataAlignment as a8, ViewMode as a9, NullValue as aA, ImagePosition as aB, Alignment as aC, ImageFit as aD, NumberOfColumns as aE, FirstDayOfWeek as aF, InputFieldNumberComponentType as aG, InputFieldBooleanComponentType as aH, ArrayItemsItemType as aI, PropertiesTypePropertiesTypeEnum as aJ, InputFieldArrayComponentType as aK, InputFieldWixFileComponentType as aL, UploadFileFormat as aM, InputFieldPaymentComponentType as aN, InputFieldSchedulingComponentType as aO, Format as aP, MultilineAddressComponentType as aQ, Type as aR, InputFieldInputType as aS, FormFieldContactInfoEmailInfoTag as aT, FormFieldContactInfoPhoneInfoTag as aU, AddressInfoTag as aV, SubscriptionInfoOptInLevel as aW, FormFieldContactInfoContactField as aX, FormFieldV2FieldType as aY, DisplayFieldType as aZ, FieldType as a_, LayoutType as aa, Orientation as ab, Crop as ac, ThumbnailsAlignment as ad, GIFType as ae, Source as af, StylesPosition as ag, MapType as ah, ViewRole as ai, VoteRole as aj, PollLayoutType as ak, PollLayoutDirection as al, BackgroundType as am, DecorationType as an, FontType as ao, Position as ap, AspectRatio as aq, Resizing as ar, Placement as as, CardStylesType as at, CardStylesAlignment as au, Layout as av, AppType as aw, InitialExpandedItems as ax, Direction as ay, VerticalAlignment as az, type CreateSubmissionApplicationErrors as b, type ObjectTypePropertiesTypePropertiesTypeOneOf as b$, StringComponentType as b0, NumberComponentType as b1, BooleanComponentType as b2, ItemType as b3, PropertiesTypeEnum as b4, ArrayComponentType as b5, WixFileComponentType as b6, PaymentComponentType as b7, ComponentType as b8, SchedulingComponentType as b9, type ExtendedFields as bA, type OrderDetails as bB, type PublicTags as bC, type TagList as bD, type FormSubmissionStatusUpdatedEvent as bE, type RemovedSubmissionFromTrash as bF, type SubmissionContactMapped as bG, type MarketingSubscriptionDetails as bH, type SubmissionContactMappingSkipped as bI, type CreateCheckoutFromSubmissionRequest as bJ, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bK, type Form as bL, type FormField as bM, type FormFieldStringType as bN, type FormFieldStringTypeFormatOptionsOneOf as bO, type StringErrorMessages as bP, type StringTypeDateTimeConstraints as bQ, type StringTypePhoneConstraints as bR, type StringTypeValidationMessages as bS, type FormFieldNumberType as bT, type NumberErrorMessages as bU, type IntegerType as bV, type FormFieldBooleanType as bW, type BooleanErrorMessages as bX, type FormFieldArrayType as bY, type FormFieldObjectType as bZ, type ObjectTypePropertiesType as b_, InputType as ba, EmailInfoTag as bb, PhoneInfoTag as bc, Tag as bd, ConfirmationLevel as be, ContactField as bf, DisplayFieldDisplayFieldType as bg, OverrideEntityType as bh, Kind as bi, SpamFilterProtectionLevel as bj, RequiredIndicator as bk, RequiredIndicatorPlacement as bl, Target as bm, SubmitSuccessAction as bn, ChangeableProperty as bo, OverrideEntityTypeEnumOverrideEntityType as bp, Operator as bq, WebhookIdentityType as br, IdentityType as bs, ErrorType as bt, SortOrder as bu, Mode as bv, Status as bw, SubmissionErrorType as bx, type Submitter as by, type SubmitterSubmitterOneOf as bz, type CreateSubmissionValidationErrors as c, type HTMLData as c$, type ObjectErrorMessages as c0, type ArrayTypeArrayItems as c1, type ArrayTypeArrayItemsItemsOneOf as c2, type ArrayErrorMessages as c3, type PredefinedValidation as c4, type PredefinedValidationFormatOptionsOneOf as c5, type PaymentType as c6, type QuantityLimit as c7, type FixedPriceOptions as c8, type DynamicPriceOptions as c9, type PluginContainerDataWidthDataOneOf as cA, type Spoiler as cB, type Height as cC, type Styles as cD, type Link as cE, type LinkDataOneOf as cF, type Rel as cG, type CodeBlockData as cH, type TextStyle as cI, type DividerData as cJ, type FileData as cK, type FileSource as cL, type FileSourceDataOneOf as cM, type PDFSettings as cN, type GalleryData as cO, type Media as cP, type Image as cQ, type Video as cR, type Item as cS, type ItemDataOneOf as cT, type GalleryOptions as cU, type GalleryOptionsLayout as cV, type ItemStyle as cW, type Thumbnails as cX, type GIFData as cY, type GIF as cZ, type HeadingData as c_, type Product as ca, type ProductPriceOptionsOneOf as cb, type MultilineAddressValidation as cc, type FieldOverrides as cd, type FieldsOverrides as ce, type NestedFormFieldOverrides as cf, type Validation as cg, type ValidationValidationOneOf as ch, type DataExtensionsDetails as ci, type NestedFormOverrides as cj, type FormFieldV2 as ck, type FormFieldV2FieldTypeOptionsOneOf as cl, type InputFieldStringType as cm, type InputFieldStringTypeFormatOptionsOneOf as cn, type InputFieldStringTypeDateTimeConstraints as co, type InputFieldStringTypePhoneConstraints as cp, type TextInput as cq, type RichContent as cr, type Node as cs, type NodeDataOneOf as ct, type NodeStyle as cu, type ButtonData as cv, type Border as cw, type Colors as cx, type PluginContainerData as cy, type PluginContainerDataWidth as cz, type UpdateSubmission as d, type MediaItemMediaOneOf as d$, type HTMLDataDataOneOf as d0, type ImageData as d1, type StylesBorder as d2, type ImageDataStyles as d3, type LinkPreviewData as d4, type LinkPreviewDataStyles as d5, type MapData as d6, type MapSettings as d7, type ParagraphData as d8, type PollData as d9, type EventData as dA, type ButtonStyles as dB, type ImageStyles as dC, type RibbonStyles as dD, type CardStyles as dE, type PricingData as dF, type VideoData as dG, type PlaybackOptions as dH, type EmbedData as dI, type Oembed as dJ, type CollapsibleListData as dK, type TableData as dL, type Dimensions as dM, type TableCellData as dN, type CellStyle as dO, type BorderColors as dP, type ListValue as dQ, type AudioData as dR, type OrderedListData as dS, type BulletedListData as dT, type BlockquoteData as dU, type CaptionData as dV, type LayoutCellData as dW, type Metadata as dX, type DocumentStyle as dY, type TextNodeStyle as dZ, type MediaItem as d_, type Permissions as da, type PollOption as db, type Settings as dc, type PollLayout as dd, type OptionLayout as de, type Gradient as df, type Background as dg, type BackgroundBackgroundOneOf as dh, type PollDesign as di, type OptionDesign as dj, type Poll as dk, type PollDataLayout as dl, type Design as dm, type TextData as dn, type Decoration as dp, type DecorationDataOneOf as dq, type AnchorData as dr, type ColorData as ds, type LinkData as dt, type MentionData as du, type FontSizeData as dv, type SpoilerData as dw, type AppEmbedData as dx, type AppEmbedDataAppDataOneOf as dy, type BookingData as dz, type UpdateSubmissionValidationErrors as e, type InputField_BooleanComponentTypeOptionsOneOf as e$, type MediaSettings as e0, type RadioGroup as e1, type RadioGroupOption as e2, type CustomOption as e3, type Dropdown as e4, type DropdownOption as e5, type DateTimeInput as e6, type PhoneInput as e7, type DateInput as e8, type TimeInput as e9, type DonationInputOption as eA, type PaymentInput as eB, type FixedPayment as eC, type Appointment as eD, type AppointmentFormatInfoOneOf as eE, type Location as eF, type LocationLocationInfoOneOf as eG, type InPersonOptions as eH, type VideoConferenceOptions as eI, type PhoneOptions as eJ, type MultilineAddress as eK, type AddressLine2 as eL, type DefaultCountryConfig as eM, type DefaultCountryConfigOptionsOneOf as eN, type FieldsSettings as eO, type V4FormFieldContactInfo as eP, type V4FormFieldContactInfoAdditionalInfoOneOf as eQ, type FormFieldContactInfoEmailInfo as eR, type FormFieldContactInfoPhoneInfo as eS, type FormFieldContactInfoAddressInfo as eT, type FormFieldContactInfoCustomFieldInfo as eU, type FormFieldContactInfoSubscriptionInfo as eV, type InputField_String as eW, type InputField_StringComponentTypeOptionsOneOf as eX, type InputField_Number as eY, type InputField_NumberComponentTypeOptionsOneOf as eZ, type InputField_Boolean as e_, type DatePicker as ea, type ServicesDropdown as eb, type ServiceOption as ec, type InputFieldNumberType as ed, type NumberInput as ee, type RatingInput as ef, type InputFieldBooleanType as eg, type Checkbox as eh, type InputFieldArrayType as ei, type InputFieldIntegerType as ej, type InputFieldObjectType as ek, type InputFieldObjectTypePropertiesType as el, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as em, type InputFieldArrayTypeArrayItems as en, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as eo, type CheckboxGroup as ep, type Option as eq, type Tags as er, type TagsOption as es, type ServicesCheckboxGroup as et, type FileType as eu, type FileUpload as ev, type Signature as ew, type ProductCheckboxGroup as ex, type ProductCheckboxGroupOption as ey, type DonationInput as ez, type ConfirmSubmissionResponse as f, type Step as f$, type InputField_Array as f0, type InputField_ArrayComponentTypeOptionsOneOf as f1, type InputField_Object as f2, type InputField_ObjectValidationOneOf as f3, type InputFieldWixFile as f4, type InputFieldWixFileComponentTypeOptionsOneOf as f5, type InputFieldPayment as f6, type InputFieldPaymentComponentTypeOptionsOneOf as f7, type InputFieldMultilineAddress as f8, type InputFieldMultilineAddressComponentTypeOptionsOneOf 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 InputFieldScheduling as fa, type InputFieldSchedulingComponentTypeOptionsOneOf as fb, type FormFieldV2InputField as fc, type FormFieldV2InputFieldInputTypeOptionsOneOf as fd, type DisplayField as fe, type DisplayFieldDisplayFieldTypeOptionsOneOf as ff, type V4RichContentOptions as fg, type V4PageNavigationOptions as fh, type Field as fi, type FieldFieldTypeOptionsOneOf as fj, type InputField as fk, type InputFieldInputTypeOptionsOneOf as fl, type StringType as fm, type StringTypeFormatOptionsOneOf as fn, type DateTimeConstraints as fo, type PhoneConstraints as fp, type ValidationMessages 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 SubmissionValidationErrors 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 HeadersEntry as hM, type GetFormattedSubmissionRequest as hN, type FormattedSubmission as hO, type ListFormattedSubmissionsRequest as hP, type ListFormattedSubmissionsResponse as hQ, type FormattedFormSubmission as hR, type UpdateExtendedFieldsRequest as hS, type BulkUpdateFormSubmissionTagsRequest as hT, type BulkUpdateFormSubmissionTagsResponse as hU, type BulkUpdateFormSubmissionTagsResult as hV, type BulkUpdateFormSubmissionTagsByFilterRequest as hW, type BulkUpdateFormSubmissionTagsByFilterResponse as hX, type ValidateFormSubmissionRequest as hY, type FieldViolation as hZ, type FieldViolationErrorDataOneOf 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 PropertiesTypePropertiesTypeEnumWithLiterals as i$, type SubmissionValidationError as i0, type SubmissionValidationErrorErrorMessageOneOf as i1, type BaseEventMetadata as i2, type EventMetadata as i3, type FormSubmissionSearchSpec as i4, type SubmissionsQueryResult as i5, type BulkUpdateFormSubmissionTagsOptions as i6, type BulkUpdateFormSubmissionTagsByFilterOptions as i7, type SubmissionStatusWithLiterals as i8, type OptInLevelWithLiterals as i9, type ViewRoleWithLiterals as iA, type VoteRoleWithLiterals as iB, type PollLayoutTypeWithLiterals as iC, type PollLayoutDirectionWithLiterals as iD, type BackgroundTypeWithLiterals as iE, type DecorationTypeWithLiterals as iF, type FontTypeWithLiterals as iG, type PositionWithLiterals as iH, type AspectRatioWithLiterals as iI, type ResizingWithLiterals as iJ, type PlacementWithLiterals as iK, type CardStylesTypeWithLiterals as iL, type CardStylesAlignmentWithLiterals as iM, type LayoutWithLiterals as iN, type AppTypeWithLiterals as iO, type InitialExpandedItemsWithLiterals as iP, type DirectionWithLiterals as iQ, type VerticalAlignmentWithLiterals as iR, type NullValueWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type InputFieldNumberComponentTypeWithLiterals as iY, type InputFieldBooleanComponentTypeWithLiterals as iZ, type ArrayItemsItemTypeWithLiterals as i_, type StringTypeFormatEnumFormatWithLiterals as ia, type ValidationFormatWithLiterals as ib, type ProductTypeWithLiterals as ic, type PriceTypeWithLiterals as id, type InputFieldStringTypeFormatEnumFormatWithLiterals as ie, type InputFieldStringComponentTypeWithLiterals as ig, type NodeTypeWithLiterals as ih, type WidthTypeWithLiterals as ii, type PluginContainerDataAlignmentWithLiterals as ij, type ButtonDataTypeWithLiterals as ik, type LinkTargetWithLiterals as il, type TextAlignmentWithLiterals as im, type LineStyleWithLiterals as io, type WidthWithLiterals as ip, type DividerDataAlignmentWithLiterals as iq, type ViewModeWithLiterals as ir, type LayoutTypeWithLiterals as is, type OrientationWithLiterals as it, type CropWithLiterals as iu, type ThumbnailsAlignmentWithLiterals as iv, type GIFTypeWithLiterals as iw, type SourceWithLiterals as ix, type StylesPositionWithLiterals as iy, type MapTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, updateSubmission as j$, type InputFieldArrayComponentTypeWithLiterals as j0, type InputFieldWixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type InputFieldPaymentComponentTypeWithLiterals as j3, type InputFieldSchedulingComponentTypeWithLiterals as j4, type FormatWithLiterals as j5, type MultilineAddressComponentTypeWithLiterals as j6, type TypeWithLiterals as j7, type InputFieldInputTypeWithLiterals as j8, type FormFieldContactInfoEmailInfoTagWithLiterals as j9, type KindWithLiterals as jA, type SpamFilterProtectionLevelWithLiterals as jB, type RequiredIndicatorWithLiterals as jC, type RequiredIndicatorPlacementWithLiterals as jD, type TargetWithLiterals as jE, type SubmitSuccessActionWithLiterals as jF, type ChangeablePropertyWithLiterals as jG, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jH, type OperatorWithLiterals as jI, type WebhookIdentityTypeWithLiterals as jJ, type IdentityTypeWithLiterals as jK, type ErrorTypeWithLiterals as jL, type SortOrderWithLiterals as jM, type ModeWithLiterals as jN, type StatusWithLiterals as jO, type SubmissionErrorTypeWithLiterals as jP, type CommonSearchWithEntityContext as jQ, onSubmissionCreated as jR, onSubmissionDeleted as jS, onSubmissionRemovedSubmissionFromTrash as jT, onSubmissionStatusUpdated as jU, onSubmissionContactMapped as jV, onSubmissionContactMappingSkipped as jW, onSubmissionUpdated as jX, upsertContactFromSubmission as jY, createSubmission as jZ, getSubmission as j_, type FormFieldContactInfoPhoneInfoTagWithLiterals as ja, type AddressInfoTagWithLiterals as jb, type SubscriptionInfoOptInLevelWithLiterals as jc, type FormFieldContactInfoContactFieldWithLiterals as jd, type FormFieldV2FieldTypeWithLiterals as je, type DisplayFieldTypeWithLiterals as jf, type FieldTypeWithLiterals as jg, type FormatEnumFormatWithLiterals as jh, type StringComponentTypeWithLiterals as ji, type NumberComponentTypeWithLiterals as jj, type BooleanComponentTypeWithLiterals as jk, type ItemTypeWithLiterals as jl, type PropertiesTypeEnumWithLiterals as jm, type ArrayComponentTypeWithLiterals as jn, type WixFileComponentTypeWithLiterals as jo, type PaymentComponentTypeWithLiterals as jp, type ComponentTypeWithLiterals as jq, type SchedulingComponentTypeWithLiterals as jr, type InputTypeWithLiterals as js, type EmailInfoTagWithLiterals as jt, type PhoneInfoTagWithLiterals as ju, type TagWithLiterals as jv, type ConfirmationLevelWithLiterals as jw, type ContactFieldWithLiterals as jx, type DisplayFieldDisplayFieldTypeWithLiterals as jy, type OverrideEntityTypeWithLiterals as jz, type CursorQuery as k, confirmSubmission as k0, deleteSubmission as k1, bulkDeleteSubmission as k2, restoreSubmissionFromTrashBin as k3, removeSubmissionFromTrashBin as k4, bulkRemoveSubmissionFromTrashBin as k5, listDeletedSubmissions as k6, getDeletedSubmission as k7, querySubmission as k8, querySubmissionsByNamespace as k9, countSubmissionsByFilter as ka, countSubmissions as kb, countDeletedSubmissions as kc, getMediaUploadUrl as kd, bulkMarkSubmissionsAsSeen as ke, getSubmissionDownloadUrl as kf, downloadSubmission as kg, getFormattedSubmission as kh, updateExtendedFields as ki, validateFormSubmission as kj, 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 };
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as 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 { gG as ActionEvent, fU as Address, fV as AddressComponentTypeOptionsOneOf, fC as AddressInfo, aU as AddressInfoTag, jb as AddressInfoTagWithLiterals, eK as AddressLine2, aB as Alignment, iU as AlignmentWithLiterals, gm as AllowedValuesOptions, dq as AnchorData, gr as AndCondition, dw as AppEmbedData, dx as AppEmbedDataAppDataOneOf, av as AppType, iO as AppTypeWithLiterals, g_ as ApplicationError, eC as Appointment, eD as AppointmentFormatInfoOneOf, b4 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, c2 as ArrayErrorMessages, fw as ArrayItems, aH as ArrayItemsItemType, fx as ArrayItemsItemTypeOptionsOneOf, i_ as ArrayItemsItemTypeWithLiterals, fs as ArrayType, c0 as ArrayTypeArrayItems, c1 as ArrayTypeArrayItemsItemsOneOf, ap as AspectRatio, iI as AspectRatioWithLiterals, dQ as AudioData, df as Background, dg as BackgroundBackgroundOneOf, al as BackgroundType, iE as BackgroundTypeWithLiterals, i2 as BaseEventMetadata, dT as BlockquoteData, dy as BookingData, b1 as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, bW as BooleanErrorMessages, fr as BooleanType, cv as Border, dO as BorderColors, g0 as BreakPoint, g$ as BulkActionMetadata, gW as BulkCreateSubmissionBySubmitterData, gV as BulkCreateSubmissionBySubmitterRequest, gX as BulkCreateSubmissionBySubmitterResponse, h9 as BulkDeleteSubmissionRequest, ha as BulkDeleteSubmissionResult, hE as BulkMarkSubmissionsAsSeenRequest, hF as BulkMarkSubmissionsAsSeenResponse, he as BulkRemoveSubmissionFromTrashBinRequest, hf as BulkRemoveSubmissionFromTrashBinResult, gY as BulkSubmissionResult, i7 as BulkUpdateFormSubmissionTagsByFilterOptions, hW as BulkUpdateFormSubmissionTagsByFilterRequest, hX as BulkUpdateFormSubmissionTagsByFilterResponse, i6 as BulkUpdateFormSubmissionTagsOptions, hT as BulkUpdateFormSubmissionTagsRequest, hU as BulkUpdateFormSubmissionTagsResponse, hV as BulkUpdateFormSubmissionTagsResult, dS as BulletedListData, cu as ButtonData, a2 as ButtonDataType, ik as ButtonDataTypeWithLiterals, dA as ButtonStyles, dU as CaptionData, dD as CardStyles, at as CardStylesAlignment, iM as CardStylesAlignmentWithLiterals, as as CardStylesType, iL as CardStylesTypeWithLiterals, dN as CellStyle, bn as ChangeableProperty, jG as ChangeablePropertyWithLiterals, eg as Checkbox, eo as CheckboxGroup, gx as Checkout, cG as CodeBlockData, dJ as CollapsibleListData, dr as ColorData, cw as Colors, jQ as CommonSearchWithEntityContext, b7 as ComponentType, jq as ComponentTypeWithLiterals, gt as Condition, gp as ConditionNode, gq as ConditionNodeNodeOneOf, h6 as ConfirmSubmissionRequest, bd as ConfirmationLevel, jw as ConfirmationLevelWithLiterals, be as ContactField, jx as ContactFieldWithLiterals, hB as CountDeletedSubmissionsRequest, hy as CountSubmissionsByFilterRequest, hA as CountSubmissionsRequest, bI as CreateCheckoutFromSubmissionRequest, bJ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gw as CreateCheckoutFromSubmissionResponse, gT as CreateSubmissionBySubmitterRequest, gU as CreateSubmissionBySubmitterResponse, gR as CreateSubmissionForMigrationRequest, gS as CreateSubmissionForMigrationResponse, gN as CreateSubmissionRequest, gO as CreateSubmissionResponse, ab as Crop, iu as CropWithLiterals, hh as CursorPaging, hi as CursorPagingMetadata, hm as CursorQueryPagingMethodOneOf, hp as CursorSearch, hq as CursorSearchPagingMethodOneOf, hj as Cursors, fD as CustomFieldInfo, e2 as CustomOption, ch as DataExtensionsDetails, e7 as DateInput, e9 as DatePicker, fn as DateTimeConstraints, e5 as DateTimeInput, dn as Decoration, dp as DecorationDataOneOf, am as DecorationType, iF as DecorationTypeWithLiterals, eL as DefaultCountryConfig, eM as DefaultCountryConfigOptionsOneOf, h7 as DeleteSubmissionRequest, h8 as DeleteSubmissionResponse, dl as Design, dL as Dimensions, ax as Direction, iQ as DirectionWithLiterals, fd as DisplayField, bf as DisplayFieldDisplayFieldType, fe as DisplayFieldDisplayFieldTypeOptionsOneOf, jy as DisplayFieldDisplayFieldTypeWithLiterals, aY as DisplayFieldType, jf as DisplayFieldTypeWithLiterals, cI as DividerData, a7 as DividerDataAlignment, iq as DividerDataAlignmentWithLiterals, hJ as DocumentReady, dX as DocumentStyle, gA as DomainEvent, gB as DomainEventBodyOneOf, ey as DonationInput, ez as DonationInputOption, hK as DownloadSubmissionRequest, e3 as Dropdown, e4 as DropdownOption, c8 as DynamicPriceOptions, fA as EmailInfo, ba as EmailInfoTag, jt as EmailInfoTagWithLiterals, dH as EmbedData, gH as Empty, gC as EntityCreatedEvent, gF as EntityDeletedEvent, gE as EntityUpdatedEvent, bs as ErrorType, jL as ErrorTypeWithLiterals, dz as EventData, i3 as EventMetadata, bz as ExtendedFields, fh as Field, fi as FieldFieldTypeOptionsOneOf, gi as FieldGroup, gn as FieldOverride, go as FieldOverridePropertyTypeOptionsOneOf, cc as FieldOverrides, aZ as FieldType, jg as FieldTypeWithLiterals, hZ as FieldViolation, h_ as FieldViolationErrorDataOneOf, fW as FieldsDisplayField, fX as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cd as FieldsOverrides, eN as FieldsSettings, cJ as FileData, cK as FileSource, cL as FileSourceDataOneOf, et as FileType, eu as FileUpload, aE as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, eB as FixedPayment, c7 as FixedPriceOptions, du as FontSizeData, an as FontType, iG as FontTypeWithLiterals, bK as Form, hC as FormDeletedSubmissionsCount, bL as FormField, bX as FormFieldArrayType, bV as FormFieldBooleanType, fy as FormFieldContactInfo, fz as FormFieldContactInfoAdditionalInfoOneOf, eS as FormFieldContactInfoAddressInfo, aW as FormFieldContactInfoContactField, jd as FormFieldContactInfoContactFieldWithLiterals, eT as FormFieldContactInfoCustomFieldInfo, eQ as FormFieldContactInfoEmailInfo, aS as FormFieldContactInfoEmailInfoTag, j9 as FormFieldContactInfoEmailInfoTagWithLiterals, eR as FormFieldContactInfoPhoneInfo, aT as FormFieldContactInfoPhoneInfoTag, ja as FormFieldContactInfoPhoneInfoTagWithLiterals, eU as FormFieldContactInfoSubscriptionInfo, bS as FormFieldNumberType, bY as FormFieldObjectType, bM as FormFieldStringType, bN as FormFieldStringTypeFormatOptionsOneOf, cj as FormFieldV2, aX as FormFieldV2FieldType, ck as FormFieldV2FieldTypeOptionsOneOf, je as FormFieldV2FieldTypeWithLiterals, fb as FormFieldV2InputField, fc as FormFieldV2InputFieldInputTypeOptionsOneOf, f$ as FormLayout, g7 as FormOverride, g8 as FormProperties, g6 as FormRule, i4 as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, hz as FormSubmissionsCount, aO as Format, a_ as FormatEnumFormat, jh as FormatEnumFormatWithLiterals, j5 as FormatWithLiterals, hR as FormattedFormSubmission, hO as FormattedSubmission, cY as GIF, cX as GIFData, ad as GIFType, iw as GIFTypeWithLiterals, cN as GalleryData, cT as GalleryOptions, cU as GalleryOptionsLayout, hk as GetDeletedSubmissionRequest, hN as GetFormattedSubmissionRequest, hD as GetMediaUploadURLRequest, h2 as GetSubmissionByCheckoutIdRequest, h3 as GetSubmissionByCheckoutIdResponse, hG as GetSubmissionDownloadUrlRequest, h0 as GetSubmissionRequest, h1 as GetSubmissionResponse, de as Gradient, g3 as Group, c_ as HTMLData, c$ as HTMLDataDataOneOf, hM as HeadersEntry, cZ as HeadingData, cB as Height, gl as HiddenOptions, gJ as IdentificationData, gK as IdentificationDataIdOneOf, br as IdentityType, jK as IdentityTypeWithLiterals, cP as Image, d0 as ImageData, d2 as ImageDataStyles, aC as ImageFit, iV as ImageFitWithLiterals, aA as ImagePosition, iT as ImagePositionWithLiterals, dB as ImageStyles, eG as InPersonOptions, aw as InitialExpandedItems, iP as InitialExpandedItemsWithLiterals, fj as InputField, aJ as InputFieldArrayComponentType, j0 as InputFieldArrayComponentTypeWithLiterals, eh as InputFieldArrayType, em as InputFieldArrayTypeArrayItems, en as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aG as InputFieldBooleanComponentType, iZ as InputFieldBooleanComponentTypeWithLiterals, ef as InputFieldBooleanType, aR as InputFieldInputType, fk as InputFieldInputTypeOptionsOneOf, j8 as InputFieldInputTypeWithLiterals, ei as InputFieldIntegerType, f7 as InputFieldMultilineAddress, f8 as InputFieldMultilineAddressComponentTypeOptionsOneOf, aF as InputFieldNumberComponentType, iY as InputFieldNumberComponentTypeWithLiterals, ec as InputFieldNumberType, ej as InputFieldObjectType, ek as InputFieldObjectTypePropertiesType, el as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f5 as InputFieldPayment, aM as InputFieldPaymentComponentType, f6 as InputFieldPaymentComponentTypeOptionsOneOf, j3 as InputFieldPaymentComponentTypeWithLiterals, f9 as InputFieldScheduling, aN as InputFieldSchedulingComponentType, fa as InputFieldSchedulingComponentTypeOptionsOneOf, j4 as InputFieldSchedulingComponentTypeWithLiterals, _ as InputFieldStringComponentType, ig as InputFieldStringComponentTypeWithLiterals, cl as InputFieldStringType, cn as InputFieldStringTypeDateTimeConstraints, Z as InputFieldStringTypeFormatEnumFormat, ie as InputFieldStringTypeFormatEnumFormatWithLiterals, cm as InputFieldStringTypeFormatOptionsOneOf, co as InputFieldStringTypePhoneConstraints, f3 as InputFieldWixFile, aK as InputFieldWixFileComponentType, f4 as InputFieldWixFileComponentTypeOptionsOneOf, j1 as InputFieldWixFileComponentTypeWithLiterals, e$ as InputField_Array, f0 as InputField_ArrayComponentTypeOptionsOneOf, eZ as InputField_Boolean, e_ as InputField_BooleanComponentTypeOptionsOneOf, eX as InputField_Number, eY as InputField_NumberComponentTypeOptionsOneOf, f1 as InputField_Object, f2 as InputField_ObjectValidationOneOf, eV as InputField_String, eW as InputField_StringComponentTypeOptionsOneOf, b9 as InputType, js as InputTypeWithLiterals, bU as IntegerType, gy as IsFormSubmittableRequest, gz as IsFormSubmittableResponse, cR as Item, cS as ItemDataOneOf, g1 as ItemLayout, g2 as ItemLayoutItemOneOf, gZ as ItemMetadata, cV as ItemStyle, b2 as ItemType, jl as ItemTypeWithLiterals, bh as Kind, jA as KindWithLiterals, au as Layout, dV as LayoutCellData, a9 as LayoutType, is as LayoutTypeWithLiterals, iN as LayoutWithLiterals, gc as LimitationRule, a5 as LineStyle, io as LineStyleWithLiterals, cD as Link, ds as LinkData, cE as LinkDataOneOf, d3 as LinkPreviewData, d4 as LinkPreviewDataStyles, a3 as LinkTarget, il as LinkTargetWithLiterals, hg as ListDeletedSubmissionsRequest, hP as ListFormattedSubmissionsRequest, hQ as ListFormattedSubmissionsResponse, dP as ListValue, eE as Location, eF as LocationLocationInfoOneOf, d5 as MapData, d6 as MapSettings, ag as MapType, iz as MapTypeWithLiterals, g4 as Margin, bG as MarketingSubscriptionDetails, cO as Media, dZ as MediaItem, d_ as MediaItemMediaOneOf, d$ as MediaSettings, dt as MentionData, gI as MessageEnvelope, dW as Metadata, bu as Mode, jN as ModeWithLiterals, eJ as MultilineAddress, aP as MultilineAddressComponentType, j6 as MultilineAddressComponentTypeWithLiterals, cb as MultilineAddressValidation, gb as NestedForm, ce as NestedFormFieldOverrides, ci as NestedFormOverrides, cr as Node, cs as NodeDataOneOf, ct as NodeStyle, $ as NodeType, ih as NodeTypeWithLiterals, az as NullValue, iS as NullValueWithLiterals, b0 as NumberComponentType, jj as NumberComponentTypeWithLiterals, bT as NumberErrorMessages, ed as NumberInput, aD as NumberOfColumns, iW as NumberOfColumnsWithLiterals, fq as NumberType, b$ as ObjectErrorMessages, ft as ObjectType, bZ as ObjectTypePropertiesType, b_ as ObjectTypePropertiesTypePropertiesTypeOneOf, dI as Oembed, bp as Operator, jI as OperatorWithLiterals, P as OptInLevel, i9 as OptInLevelWithLiterals, ep as Option, di as OptionDesign, dd as OptionLayout, gs as OrCondition, bA as OrderDetails, dR as OrderedListData, aa as Orientation, it as OrientationWithLiterals, bg as OverrideEntityType, bo as OverrideEntityTypeEnumOverrideEntityType, jH as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jz as OverrideEntityTypeWithLiterals, cM as PDFSettings, fZ as PageNavigationOptions, d7 as ParagraphData, fQ as Payment, b6 as PaymentComponentType, fR as PaymentComponentTypeOptionsOneOf, jp as PaymentComponentTypeWithLiterals, eA as PaymentInput, c5 as PaymentType, d9 as Permissions, fo as PhoneConstraints, fB as PhoneInfo, bb as PhoneInfoTag, ju as PhoneInfoTagWithLiterals, e6 as PhoneInput, eI as PhoneOptions, ar as Placement, iK as PlacementWithLiterals, dG as PlaybackOptions, cx as PluginContainerData, a1 as PluginContainerDataAlignment, ij as PluginContainerDataAlignmentWithLiterals, cy as PluginContainerDataWidth, cz as PluginContainerDataWidthDataOneOf, dj as Poll, d8 as PollData, dk as PollDataLayout, dh as PollDesign, dc as PollLayout, ak as PollLayoutDirection, iD as PollLayoutDirectionWithLiterals, aj as PollLayoutType, iC as PollLayoutTypeWithLiterals, da as PollOption, ao as Position, iH as PositionWithLiterals, g9 as PostSubmissionTriggers, c3 as PredefinedValidation, c4 as PredefinedValidationFormatOptionsOneOf, Y as PriceType, id as PriceTypeWithLiterals, dE as PricingData, c9 as Product, ew as ProductCheckboxGroup, ex as ProductCheckboxGroupOption, ca as ProductPriceOptionsOneOf, X as ProductType, ic as ProductTypeWithLiterals, fu as PropertiesType, b3 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, aI as PropertiesTypePropertiesTypeEnum, i$ as PropertiesTypePropertiesTypeEnumWithLiterals, fv as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, c6 as QuantityLimit, hl as QuerySubmissionRequest, hw as QuerySubmissionsByNamespaceForExportRequest, hx as QuerySubmissionsByNamespaceForExportResponse, hu as QuerySubmissionsByNamespaceRequest, hv as QuerySubmissionsByNamespaceResponse, e0 as RadioGroup, e1 as RadioGroupOption, ee as RatingInput, hL as RawHttpResponse, gh as RedirectOptions, cF as Rel, hc as RemoveSubmissionFromTrashBinRequest, hd as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, bj as RequiredIndicator, bk as RequiredIndicatorPlacement, jD as RequiredIndicatorPlacementWithLiterals, gd as RequiredIndicatorProperties, jC as RequiredIndicatorWithLiterals, gk as RequiredOptions, aq as Resizing, iJ as ResizingWithLiterals, gD as RestoreInfo, hb as RestoreSubmissionFromTrashBinRequest, dC as RibbonStyles, cq as RichContent, fY as RichContentOptions, gj as Rule, gu as RuleFormOverride, gv as RuleFormOverrideEntityTypeOptionsOneOf, fS as Scheduling, b8 as SchedulingComponentType, fT as SchedulingComponentTypeOptionsOneOf, jr as SchedulingComponentTypeWithLiterals, hr as SearchDetails, hs as SearchSubmissionsByNamespaceForExportRequest, ht as SearchSubmissionsByNamespaceForExportResponse, ho as SearchSubmissionsByNamespaceRequest, g5 as Section, eb as ServiceOption, es as ServicesCheckboxGroup, ea as ServicesDropdown, db as Settings, ev as Signature, bt as SortOrder, jM as SortOrderWithLiterals, hn as Sorting, ae as Source, ix as SourceWithLiterals, bi as SpamFilterProtectionLevel, jB as SpamFilterProtectionLevelWithLiterals, cA as Spoiler, dv as SpoilerData, bv as Status, jO as StatusWithLiterals, f_ as Step, a$ as StringComponentType, ji as StringComponentTypeWithLiterals, bO as StringErrorMessages, fl as StringType, bP as StringTypeDateTimeConstraints, T as StringTypeFormatEnumFormat, ia as StringTypeFormatEnumFormatWithLiterals, fm as StringTypeFormatOptionsOneOf, bQ as StringTypePhoneConstraints, bR as StringTypeValidationMessages, cC as Styles, d1 as StylesBorder, af as StylesPosition, iy as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hH as SubmissionDocument, hI as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jP as SubmissionErrorTypeWithLiterals, O as SubmissionStatus, i8 as SubmissionStatusWithLiterals, i0 as SubmissionValidationError, i1 as SubmissionValidationErrorErrorMessageOneOf, h$ as SubmissionValidationErrors, gP as SubmissionValidationErrorsDetails, i5 as SubmissionsQueryResult, gM as SubmitContactResponse, ge as SubmitSettings, gf as SubmitSettingsSubmitSuccessActionOptionsOneOf, bm as SubmitSuccessAction, jF as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fE as SubscriptionInfo, aV as SubscriptionInfoOptInLevel, jc as SubscriptionInfoOptInLevelWithLiterals, dM as TableCellData, dK as TableData, bc as Tag, bC as TagList, jv as TagWithLiterals, eq as Tags, er as TagsOption, bl as Target, jE as TargetWithLiterals, a4 as TextAlignment, im as TextAlignmentWithLiterals, dm as TextData, cp as TextInput, dY as TextNodeStyle, cH as TextStyle, gg as ThankYouMessageOptions, cW as Thumbnails, ac as ThumbnailsAlignment, iv as ThumbnailsAlignmentWithLiterals, e8 as TimeInput, aQ as Type, j7 as TypeWithLiterals, hS as UpdateExtendedFieldsRequest, h4 as UpdateSubmissionRequest, h5 as UpdateSubmissionResponse, aL as UploadFileFormat, j2 as UploadFileFormatWithLiterals, ga as UpsertContact, gL as UpsertContactFromSubmissionRequest, eO as V4FormFieldContactInfo, eP as V4FormFieldContactInfoAdditionalInfoOneOf, fg as V4PageNavigationOptions, ff as V4RichContentOptions, hY as ValidateFormSubmissionRequest, cf as Validation, gQ as ValidationError, W as ValidationFormat, ib as ValidationFormatWithLiterals, fp as ValidationMessages, cg as ValidationValidationOneOf, ay as VerticalAlignment, iR as VerticalAlignmentWithLiterals, cQ as Video, eH as VideoConferenceOptions, dF as VideoData, a8 as ViewMode, ir as ViewModeWithLiterals, ah as ViewRole, iA as ViewRoleWithLiterals, ai as VoteRole, iB as VoteRoleWithLiterals, bq as WebhookIdentityType, jJ as WebhookIdentityTypeWithLiterals, a6 as Width, a0 as WidthType, ii as WidthTypeWithLiterals, ip as WidthWithLiterals, fO as WixFile, b5 as WixFileComponentType, fP as WixFileComponentTypeOptionsOneOf, jo as WixFileComponentTypeWithLiterals, fL as _Array, fM as _ArrayComponentTypeOptionsOneOf, fJ as _Boolean, fK as _BooleanComponentTypeOptionsOneOf, fH as _Number, fI as _NumberComponentTypeOptionsOneOf, fN as _Object, fF as _String, fG as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal--zOLbWnk.mjs';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, E as ValidateFormSubmissionResponse, H as SubmissionCreatedEnvelope, I as SubmissionDeletedEnvelope, J as SubmissionRemovedSubmissionFromTrashEnvelope, K as SubmissionStatusUpdatedEnvelope, M as SubmissionContactMappedEnvelope, N as SubmissionContactMappingSkippedEnvelope, O as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-DjDjo-gt.mjs';
|
|
3
|
+
export { gH as ActionEvent, fV as Address, fW as AddressComponentTypeOptionsOneOf, fD as AddressInfo, aV as AddressInfoTag, jb as AddressInfoTagWithLiterals, eL as AddressLine2, aC as Alignment, iU as AlignmentWithLiterals, gn as AllowedValuesOptions, dr as AnchorData, gs as AndCondition, dx as AppEmbedData, dy as AppEmbedDataAppDataOneOf, aw as AppType, iO as AppTypeWithLiterals, g$ as ApplicationError, eD as Appointment, eE as AppointmentFormatInfoOneOf, b5 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, c3 as ArrayErrorMessages, fx as ArrayItems, aI as ArrayItemsItemType, fy as ArrayItemsItemTypeOptionsOneOf, i_ as ArrayItemsItemTypeWithLiterals, ft as ArrayType, c1 as ArrayTypeArrayItems, c2 as ArrayTypeArrayItemsItemsOneOf, aq as AspectRatio, iI as AspectRatioWithLiterals, dR as AudioData, dg as Background, dh as BackgroundBackgroundOneOf, am as BackgroundType, iE as BackgroundTypeWithLiterals, i2 as BaseEventMetadata, dU as BlockquoteData, dz as BookingData, b2 as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, bX as BooleanErrorMessages, fs as BooleanType, cw as Border, dP 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, i7 as BulkUpdateFormSubmissionTagsByFilterOptions, hW as BulkUpdateFormSubmissionTagsByFilterRequest, hX as BulkUpdateFormSubmissionTagsByFilterResponse, i6 as BulkUpdateFormSubmissionTagsOptions, hT as BulkUpdateFormSubmissionTagsRequest, hU as BulkUpdateFormSubmissionTagsResponse, hV as BulkUpdateFormSubmissionTagsResult, dT as BulletedListData, cv as ButtonData, a3 as ButtonDataType, ik as ButtonDataTypeWithLiterals, dB as ButtonStyles, dV as CaptionData, dE as CardStyles, au as CardStylesAlignment, iM as CardStylesAlignmentWithLiterals, at as CardStylesType, iL as CardStylesTypeWithLiterals, dO as CellStyle, bo as ChangeableProperty, jG as ChangeablePropertyWithLiterals, eh as Checkbox, ep as CheckboxGroup, gy as Checkout, cH as CodeBlockData, dK as CollapsibleListData, ds as ColorData, cx as Colors, jQ as CommonSearchWithEntityContext, b8 as ComponentType, jq as ComponentTypeWithLiterals, gu as Condition, gq as ConditionNode, gr as ConditionNodeNodeOneOf, h7 as ConfirmSubmissionRequest, be as ConfirmationLevel, jw as ConfirmationLevelWithLiterals, bf as ContactField, jx as ContactFieldWithLiterals, hC as CountDeletedSubmissionsRequest, hz as CountSubmissionsByFilterRequest, hB as CountSubmissionsRequest, bJ as CreateCheckoutFromSubmissionRequest, bK as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gx as CreateCheckoutFromSubmissionResponse, gU as CreateSubmissionBySubmitterRequest, gV as CreateSubmissionBySubmitterResponse, gS as CreateSubmissionForMigrationRequest, gT as CreateSubmissionForMigrationResponse, gO as CreateSubmissionRequest, gP as CreateSubmissionResponse, ac as Crop, iu as CropWithLiterals, hi as CursorPaging, hj as CursorPagingMetadata, hn as CursorQueryPagingMethodOneOf, hq as CursorSearch, hr as CursorSearchPagingMethodOneOf, hk as Cursors, fE as CustomFieldInfo, e3 as CustomOption, ci as DataExtensionsDetails, e8 as DateInput, ea as DatePicker, fo as DateTimeConstraints, e6 as DateTimeInput, dp as Decoration, dq as DecorationDataOneOf, an as DecorationType, iF as DecorationTypeWithLiterals, eM as DefaultCountryConfig, eN as DefaultCountryConfigOptionsOneOf, h8 as DeleteSubmissionRequest, h9 as DeleteSubmissionResponse, dm as Design, dM as Dimensions, ay as Direction, iQ as DirectionWithLiterals, fe as DisplayField, bg as DisplayFieldDisplayFieldType, ff as DisplayFieldDisplayFieldTypeOptionsOneOf, jy as DisplayFieldDisplayFieldTypeWithLiterals, aZ as DisplayFieldType, jf as DisplayFieldTypeWithLiterals, cJ as DividerData, a8 as DividerDataAlignment, iq as DividerDataAlignmentWithLiterals, hK as DocumentReady, dY as DocumentStyle, gB as DomainEvent, gC as DomainEventBodyOneOf, ez as DonationInput, eA as DonationInputOption, hL as DownloadSubmissionRequest, e4 as Dropdown, e5 as DropdownOption, c9 as DynamicPriceOptions, fB as EmailInfo, bb as EmailInfoTag, jt as EmailInfoTagWithLiterals, dI as EmbedData, gI as Empty, gD as EntityCreatedEvent, gG as EntityDeletedEvent, gF as EntityUpdatedEvent, bt as ErrorType, jL as ErrorTypeWithLiterals, dA as EventData, i3 as EventMetadata, bA as ExtendedFields, fi as Field, fj as FieldFieldTypeOptionsOneOf, gj as FieldGroup, go as FieldOverride, gp as FieldOverridePropertyTypeOptionsOneOf, cd as FieldOverrides, a_ as FieldType, jg as FieldTypeWithLiterals, hZ as FieldViolation, h_ as FieldViolationErrorDataOneOf, fX as FieldsDisplayField, fY as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, ce as FieldsOverrides, eO as FieldsSettings, cK as FileData, cL as FileSource, cM as FileSourceDataOneOf, eu as FileType, ev as FileUpload, aF as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, eC as FixedPayment, c8 as FixedPriceOptions, dv as FontSizeData, ao as FontType, iG as FontTypeWithLiterals, bL as Form, hD as FormDeletedSubmissionsCount, bM as FormField, bY as FormFieldArrayType, bW as FormFieldBooleanType, fz as FormFieldContactInfo, fA as FormFieldContactInfoAdditionalInfoOneOf, eT as FormFieldContactInfoAddressInfo, aX as FormFieldContactInfoContactField, jd as FormFieldContactInfoContactFieldWithLiterals, eU as FormFieldContactInfoCustomFieldInfo, eR as FormFieldContactInfoEmailInfo, aT as FormFieldContactInfoEmailInfoTag, j9 as FormFieldContactInfoEmailInfoTagWithLiterals, eS as FormFieldContactInfoPhoneInfo, aU as FormFieldContactInfoPhoneInfoTag, ja as FormFieldContactInfoPhoneInfoTagWithLiterals, eV as FormFieldContactInfoSubscriptionInfo, bT as FormFieldNumberType, bZ as FormFieldObjectType, bN as FormFieldStringType, bO as FormFieldStringTypeFormatOptionsOneOf, ck as FormFieldV2, aY as FormFieldV2FieldType, cl as FormFieldV2FieldTypeOptionsOneOf, je as FormFieldV2FieldTypeWithLiterals, fc as FormFieldV2InputField, fd as FormFieldV2InputFieldInputTypeOptionsOneOf, g0 as FormLayout, g8 as FormOverride, g9 as FormProperties, g7 as FormRule, i4 as FormSubmissionSearchSpec, bE as FormSubmissionStatusUpdatedEvent, hA as FormSubmissionsCount, aP as Format, a$ as FormatEnumFormat, jh as FormatEnumFormatWithLiterals, j5 as FormatWithLiterals, hR as FormattedFormSubmission, hO as FormattedSubmission, cZ as GIF, cY as GIFData, ae as GIFType, iw as GIFTypeWithLiterals, cO as GalleryData, cU as GalleryOptions, cV as GalleryOptionsLayout, hl as GetDeletedSubmissionRequest, hN as GetFormattedSubmissionRequest, hE as GetMediaUploadURLRequest, h3 as GetSubmissionByCheckoutIdRequest, h4 as GetSubmissionByCheckoutIdResponse, hH as GetSubmissionDownloadUrlRequest, h1 as GetSubmissionRequest, h2 as GetSubmissionResponse, df as Gradient, g4 as Group, c$ as HTMLData, d0 as HTMLDataDataOneOf, hM as HeadersEntry, c_ as HeadingData, cC as Height, gm as HiddenOptions, gK as IdentificationData, gL as IdentificationDataIdOneOf, bs as IdentityType, jK as IdentityTypeWithLiterals, cQ as Image, d1 as ImageData, d3 as ImageDataStyles, aD as ImageFit, iV as ImageFitWithLiterals, aB as ImagePosition, iT as ImagePositionWithLiterals, dC as ImageStyles, eH as InPersonOptions, ax as InitialExpandedItems, iP as InitialExpandedItemsWithLiterals, fk as InputField, aK as InputFieldArrayComponentType, j0 as InputFieldArrayComponentTypeWithLiterals, ei as InputFieldArrayType, en as InputFieldArrayTypeArrayItems, eo as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aH as InputFieldBooleanComponentType, iZ as InputFieldBooleanComponentTypeWithLiterals, eg as InputFieldBooleanType, aS as InputFieldInputType, fl as InputFieldInputTypeOptionsOneOf, j8 as InputFieldInputTypeWithLiterals, ej as InputFieldIntegerType, f8 as InputFieldMultilineAddress, f9 as InputFieldMultilineAddressComponentTypeOptionsOneOf, aG as InputFieldNumberComponentType, iY as InputFieldNumberComponentTypeWithLiterals, ed as InputFieldNumberType, ek as InputFieldObjectType, el as InputFieldObjectTypePropertiesType, em as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f6 as InputFieldPayment, aN as InputFieldPaymentComponentType, f7 as InputFieldPaymentComponentTypeOptionsOneOf, j3 as InputFieldPaymentComponentTypeWithLiterals, fa as InputFieldScheduling, aO as InputFieldSchedulingComponentType, fb as InputFieldSchedulingComponentTypeOptionsOneOf, j4 as InputFieldSchedulingComponentTypeWithLiterals, $ as InputFieldStringComponentType, ig as InputFieldStringComponentTypeWithLiterals, cm as InputFieldStringType, co as InputFieldStringTypeDateTimeConstraints, _ as InputFieldStringTypeFormatEnumFormat, ie as InputFieldStringTypeFormatEnumFormatWithLiterals, cn as InputFieldStringTypeFormatOptionsOneOf, cp as InputFieldStringTypePhoneConstraints, f4 as InputFieldWixFile, aL as InputFieldWixFileComponentType, f5 as InputFieldWixFileComponentTypeOptionsOneOf, j1 as InputFieldWixFileComponentTypeWithLiterals, f0 as InputField_Array, f1 as InputField_ArrayComponentTypeOptionsOneOf, e_ as InputField_Boolean, e$ as InputField_BooleanComponentTypeOptionsOneOf, eY as InputField_Number, eZ as InputField_NumberComponentTypeOptionsOneOf, f2 as InputField_Object, f3 as InputField_ObjectValidationOneOf, eW as InputField_String, eX as InputField_StringComponentTypeOptionsOneOf, ba as InputType, js as InputTypeWithLiterals, bV as IntegerType, gz as IsFormSubmittableRequest, gA as IsFormSubmittableResponse, cS as Item, cT as ItemDataOneOf, g2 as ItemLayout, g3 as ItemLayoutItemOneOf, g_ as ItemMetadata, cW as ItemStyle, b3 as ItemType, jl as ItemTypeWithLiterals, bi as Kind, jA as KindWithLiterals, av as Layout, dW as LayoutCellData, aa as LayoutType, is as LayoutTypeWithLiterals, iN as LayoutWithLiterals, gd as LimitationRule, a6 as LineStyle, io as LineStyleWithLiterals, cE as Link, dt as LinkData, cF as LinkDataOneOf, d4 as LinkPreviewData, d5 as LinkPreviewDataStyles, a4 as LinkTarget, il as LinkTargetWithLiterals, hh as ListDeletedSubmissionsRequest, hP as ListFormattedSubmissionsRequest, hQ as ListFormattedSubmissionsResponse, dQ as ListValue, eF as Location, eG as LocationLocationInfoOneOf, d6 as MapData, d7 as MapSettings, ah as MapType, iz as MapTypeWithLiterals, g5 as Margin, bH as MarketingSubscriptionDetails, cP as Media, d_ as MediaItem, d$ as MediaItemMediaOneOf, e0 as MediaSettings, du as MentionData, gJ as MessageEnvelope, dX as Metadata, bv as Mode, jN as ModeWithLiterals, eK as MultilineAddress, aQ as MultilineAddressComponentType, j6 as MultilineAddressComponentTypeWithLiterals, cc as MultilineAddressValidation, gc as NestedForm, cf as NestedFormFieldOverrides, cj as NestedFormOverrides, cs as Node, ct as NodeDataOneOf, cu as NodeStyle, a0 as NodeType, ih as NodeTypeWithLiterals, aA as NullValue, iS as NullValueWithLiterals, b1 as NumberComponentType, jj as NumberComponentTypeWithLiterals, bU as NumberErrorMessages, ee as NumberInput, aE as NumberOfColumns, iW as NumberOfColumnsWithLiterals, fr as NumberType, c0 as ObjectErrorMessages, fu as ObjectType, b_ as ObjectTypePropertiesType, b$ as ObjectTypePropertiesTypePropertiesTypeOneOf, dJ as Oembed, bq as Operator, jI as OperatorWithLiterals, T as OptInLevel, i9 as OptInLevelWithLiterals, eq as Option, dj as OptionDesign, de as OptionLayout, gt as OrCondition, bB as OrderDetails, dS as OrderedListData, ab as Orientation, it as OrientationWithLiterals, bh as OverrideEntityType, bp as OverrideEntityTypeEnumOverrideEntityType, jH as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jz as OverrideEntityTypeWithLiterals, cN as PDFSettings, f_ as PageNavigationOptions, d8 as ParagraphData, fR as Payment, b7 as PaymentComponentType, fS as PaymentComponentTypeOptionsOneOf, jp as PaymentComponentTypeWithLiterals, eB as PaymentInput, c6 as PaymentType, da as Permissions, fp as PhoneConstraints, fC as PhoneInfo, bc as PhoneInfoTag, ju as PhoneInfoTagWithLiterals, e7 as PhoneInput, eJ as PhoneOptions, as as Placement, iK as PlacementWithLiterals, dH as PlaybackOptions, cy as PluginContainerData, a2 as PluginContainerDataAlignment, ij as PluginContainerDataAlignmentWithLiterals, cz as PluginContainerDataWidth, cA as PluginContainerDataWidthDataOneOf, dk as Poll, d9 as PollData, dl as PollDataLayout, di as PollDesign, dd as PollLayout, al as PollLayoutDirection, iD as PollLayoutDirectionWithLiterals, ak as PollLayoutType, iC as PollLayoutTypeWithLiterals, db as PollOption, ap as Position, iH as PositionWithLiterals, ga as PostSubmissionTriggers, c4 as PredefinedValidation, c5 as PredefinedValidationFormatOptionsOneOf, Z as PriceType, id as PriceTypeWithLiterals, dF as PricingData, ca as Product, ex as ProductCheckboxGroup, ey as ProductCheckboxGroupOption, cb as ProductPriceOptionsOneOf, Y as ProductType, ic as ProductTypeWithLiterals, fv as PropertiesType, b4 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, aJ as PropertiesTypePropertiesTypeEnum, i$ as PropertiesTypePropertiesTypeEnumWithLiterals, fw as PropertiesTypePropertiesTypeOptionsOneOf, bC as PublicTags, c7 as QuantityLimit, hm as QuerySubmissionRequest, hx as QuerySubmissionsByNamespaceForExportRequest, hy as QuerySubmissionsByNamespaceForExportResponse, hv as QuerySubmissionsByNamespaceRequest, hw as QuerySubmissionsByNamespaceResponse, e1 as RadioGroup, e2 as RadioGroupOption, ef as RatingInput, gi as RedirectOptions, cG as Rel, hd as RemoveSubmissionFromTrashBinRequest, he as RemoveSubmissionFromTrashBinResponse, bF as RemovedSubmissionFromTrash, bk as RequiredIndicator, bl as RequiredIndicatorPlacement, jD as RequiredIndicatorPlacementWithLiterals, ge as RequiredIndicatorProperties, jC as RequiredIndicatorWithLiterals, gl as RequiredOptions, ar as Resizing, iJ as ResizingWithLiterals, gE as RestoreInfo, hc as RestoreSubmissionFromTrashBinRequest, dD as RibbonStyles, cr as RichContent, fZ as RichContentOptions, gk as Rule, gv as RuleFormOverride, gw as RuleFormOverrideEntityTypeOptionsOneOf, fT as Scheduling, b9 as SchedulingComponentType, fU as SchedulingComponentTypeOptionsOneOf, jr as SchedulingComponentTypeWithLiterals, hs as SearchDetails, ht as SearchSubmissionsByNamespaceForExportRequest, hu as SearchSubmissionsByNamespaceForExportResponse, hp as SearchSubmissionsByNamespaceRequest, g6 as Section, ec as ServiceOption, et as ServicesCheckboxGroup, eb as ServicesDropdown, dc as Settings, ew as Signature, bu as SortOrder, jM as SortOrderWithLiterals, ho as Sorting, af as Source, ix as SourceWithLiterals, bj as SpamFilterProtectionLevel, jB as SpamFilterProtectionLevelWithLiterals, cB as Spoiler, dw as SpoilerData, bw as Status, jO as StatusWithLiterals, f$ as Step, b0 as StringComponentType, ji as StringComponentTypeWithLiterals, bP as StringErrorMessages, fm as StringType, bQ as StringTypeDateTimeConstraints, W as StringTypeFormatEnumFormat, ia as StringTypeFormatEnumFormatWithLiterals, fn as StringTypeFormatOptionsOneOf, bR as StringTypePhoneConstraints, bS as StringTypeValidationMessages, cD as Styles, d2 as StylesBorder, ag as StylesPosition, iy as StylesPositionWithLiterals, bG as SubmissionContactMapped, bI as SubmissionContactMappingSkipped, hI as SubmissionDocument, hJ as SubmissionDocumentDocumentOneOf, bx as SubmissionErrorType, jP as SubmissionErrorTypeWithLiterals, P as SubmissionStatus, i8 as SubmissionStatusWithLiterals, i0 as SubmissionValidationError, i1 as SubmissionValidationErrorErrorMessageOneOf, h$ as SubmissionValidationErrors, gQ as SubmissionValidationErrorsDetails, i5 as SubmissionsQueryResult, gN as SubmitContactResponse, gf as SubmitSettings, gg as SubmitSettingsSubmitSuccessActionOptionsOneOf, bn as SubmitSuccessAction, jF as SubmitSuccessActionWithLiterals, by as Submitter, bz as SubmitterSubmitterOneOf, fF as SubscriptionInfo, aW as SubscriptionInfoOptInLevel, jc as SubscriptionInfoOptInLevelWithLiterals, dN as TableCellData, dL as TableData, bd as Tag, bD as TagList, jv as TagWithLiterals, er as Tags, es as TagsOption, bm as Target, jE as TargetWithLiterals, a5 as TextAlignment, im as TextAlignmentWithLiterals, dn as TextData, cq as TextInput, dZ as TextNodeStyle, cI as TextStyle, gh as ThankYouMessageOptions, cX as Thumbnails, ad as ThumbnailsAlignment, iv as ThumbnailsAlignmentWithLiterals, e9 as TimeInput, aR as Type, j7 as TypeWithLiterals, hS as UpdateExtendedFieldsRequest, h5 as UpdateSubmissionRequest, h6 as UpdateSubmissionResponse, aM as UploadFileFormat, j2 as UploadFileFormatWithLiterals, gb as UpsertContact, gM as UpsertContactFromSubmissionRequest, eP as V4FormFieldContactInfo, eQ as V4FormFieldContactInfoAdditionalInfoOneOf, fh as V4PageNavigationOptions, fg as V4RichContentOptions, hY as ValidateFormSubmissionRequest, cg as Validation, gR as ValidationError, X as ValidationFormat, ib as ValidationFormatWithLiterals, fq as ValidationMessages, ch as ValidationValidationOneOf, az as VerticalAlignment, iR as VerticalAlignmentWithLiterals, cR as Video, eI as VideoConferenceOptions, dG as VideoData, a9 as ViewMode, ir as ViewModeWithLiterals, ai as ViewRole, iA as ViewRoleWithLiterals, aj as VoteRole, iB as VoteRoleWithLiterals, br as WebhookIdentityType, jJ as WebhookIdentityTypeWithLiterals, a7 as Width, a1 as WidthType, ii as WidthTypeWithLiterals, ip as WidthWithLiterals, fP as WixFile, b6 as WixFileComponentType, fQ as WixFileComponentTypeOptionsOneOf, jo 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-DjDjo-gt.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
|
@@ -237,6 +237,15 @@ interface GetSubmissionDownloadUrlSignature {
|
|
|
237
237
|
*/
|
|
238
238
|
(submissionId: string): Promise<NonNullablePaths<GetSubmissionDownloadUrlResponse, `document.readyDetails.downloadUrl` | `document.status`, 4>>;
|
|
239
239
|
}
|
|
240
|
+
declare function downloadSubmission$1(httpClient: HttpClient): DownloadSubmissionSignature;
|
|
241
|
+
interface DownloadSubmissionSignature {
|
|
242
|
+
/**
|
|
243
|
+
* Download a submission document by redirecting to the document URL.
|
|
244
|
+
* @param - Submission id for which the document is generated.
|
|
245
|
+
* @param - Access token to download the document.
|
|
246
|
+
*/
|
|
247
|
+
(submissionId: string, accessToken: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
|
|
248
|
+
}
|
|
240
249
|
declare function getFormattedSubmission$1(httpClient: HttpClient): GetFormattedSubmissionSignature;
|
|
241
250
|
interface GetFormattedSubmissionSignature {
|
|
242
251
|
/**
|
|
@@ -291,6 +300,7 @@ declare const countDeletedSubmissions: MaybeContext<BuildRESTFunction<typeof cou
|
|
|
291
300
|
declare const getMediaUploadUrl: MaybeContext<BuildRESTFunction<typeof getMediaUploadUrl$1> & typeof getMediaUploadUrl$1>;
|
|
292
301
|
declare const bulkMarkSubmissionsAsSeen: MaybeContext<BuildRESTFunction<typeof bulkMarkSubmissionsAsSeen$1> & typeof bulkMarkSubmissionsAsSeen$1>;
|
|
293
302
|
declare const getSubmissionDownloadUrl: MaybeContext<BuildRESTFunction<typeof getSubmissionDownloadUrl$1> & typeof getSubmissionDownloadUrl$1>;
|
|
303
|
+
declare const downloadSubmission: MaybeContext<BuildRESTFunction<typeof downloadSubmission$1> & typeof downloadSubmission$1>;
|
|
294
304
|
declare const getFormattedSubmission: MaybeContext<BuildRESTFunction<typeof getFormattedSubmission$1> & typeof getFormattedSubmission$1>;
|
|
295
305
|
declare const updateExtendedFields: MaybeContext<BuildRESTFunction<typeof updateExtendedFields$1> & typeof updateExtendedFields$1>;
|
|
296
306
|
declare const validateFormSubmission: MaybeContext<BuildRESTFunction<typeof validateFormSubmission$1> & typeof validateFormSubmission$1>;
|
|
@@ -324,4 +334,4 @@ declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onS
|
|
|
324
334
|
*/
|
|
325
335
|
declare const onSubmissionUpdated: BuildEventDefinition<typeof onSubmissionUpdated$1> & typeof onSubmissionUpdated$1;
|
|
326
336
|
|
|
327
|
-
export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };
|
|
337
|
+
export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RawHttpResponse, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, downloadSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };
|
package/build/es/index.mjs
CHANGED
|
@@ -14,6 +14,7 @@ import {
|
|
|
14
14
|
|
|
15
15
|
// src/forms-v4-submission-submissions.http.ts
|
|
16
16
|
import { toURLSearchParams } from "@wix/sdk-runtime/rest-modules";
|
|
17
|
+
import { transformRESTBytesToSDKBytes } from "@wix/sdk-runtime/transformations/bytes";
|
|
17
18
|
import { transformSDKTimestampToRESTTimestamp } from "@wix/sdk-runtime/transformations/timestamp";
|
|
18
19
|
import { transformRESTTimestampToSDKTimestamp } from "@wix/sdk-runtime/transformations/timestamp";
|
|
19
20
|
import { transformSDKFieldMaskToRESTFieldMask } from "@wix/sdk-runtime/transformations/field-mask";
|
|
@@ -640,6 +641,30 @@ function getSubmissionDownloadUrl(payload) {
|
|
|
640
641
|
}
|
|
641
642
|
return __getSubmissionDownloadUrl;
|
|
642
643
|
}
|
|
644
|
+
function downloadSubmission(payload) {
|
|
645
|
+
function __downloadSubmission({ host }) {
|
|
646
|
+
const metadata = {
|
|
647
|
+
entityFqdn: "wix.forms.v4.submission",
|
|
648
|
+
method: "GET",
|
|
649
|
+
methodFqn: "wix.forms.v4.FormSubmissionService.DownloadSubmission",
|
|
650
|
+
packageName: PACKAGE_NAME,
|
|
651
|
+
url: resolveWixFormsV4FormSubmissionServiceUrl({
|
|
652
|
+
protoPath: "/v4/submissions/{submissionId}/download",
|
|
653
|
+
data: payload,
|
|
654
|
+
host
|
|
655
|
+
}),
|
|
656
|
+
params: toURLSearchParams(payload),
|
|
657
|
+
transformResponse: (payload2) => transformPaths(payload2, [
|
|
658
|
+
{
|
|
659
|
+
transformFn: transformRESTBytesToSDKBytes,
|
|
660
|
+
paths: [{ path: "body" }]
|
|
661
|
+
}
|
|
662
|
+
])
|
|
663
|
+
};
|
|
664
|
+
return metadata;
|
|
665
|
+
}
|
|
666
|
+
return __downloadSubmission;
|
|
667
|
+
}
|
|
643
668
|
function getFormattedSubmission(payload) {
|
|
644
669
|
function __getFormattedSubmission({ host }) {
|
|
645
670
|
const metadata = {
|
|
@@ -1310,7 +1335,6 @@ var ItemType = /* @__PURE__ */ ((ItemType2) => {
|
|
|
1310
1335
|
ItemType2["STRING"] = "STRING";
|
|
1311
1336
|
ItemType2["NUMBER"] = "NUMBER";
|
|
1312
1337
|
ItemType2["BOOLEAN"] = "BOOLEAN";
|
|
1313
|
-
ItemType2["OBJECT"] = "OBJECT";
|
|
1314
1338
|
return ItemType2;
|
|
1315
1339
|
})(ItemType || {});
|
|
1316
1340
|
var PropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypeEnum2) => {
|
|
@@ -2178,6 +2202,32 @@ async function getSubmissionDownloadUrl2(submissionId) {
|
|
|
2178
2202
|
throw transformedError;
|
|
2179
2203
|
}
|
|
2180
2204
|
}
|
|
2205
|
+
async function downloadSubmission2(submissionId, accessToken) {
|
|
2206
|
+
const { httpClient, sideEffects } = arguments[2];
|
|
2207
|
+
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
2208
|
+
submissionId,
|
|
2209
|
+
accessToken
|
|
2210
|
+
});
|
|
2211
|
+
const reqOpts = downloadSubmission(payload);
|
|
2212
|
+
sideEffects?.onSiteCall?.();
|
|
2213
|
+
try {
|
|
2214
|
+
const result = await httpClient.request(reqOpts);
|
|
2215
|
+
sideEffects?.onSuccess?.(result);
|
|
2216
|
+
return renameKeysFromRESTResponseToSDKResponse(result.data);
|
|
2217
|
+
} catch (err) {
|
|
2218
|
+
const transformedError = sdkTransformError(
|
|
2219
|
+
err,
|
|
2220
|
+
{
|
|
2221
|
+
spreadPathsToArguments: {},
|
|
2222
|
+
explicitPathsToArguments: { submissionId: "$[0]", accessToken: "$[1]" },
|
|
2223
|
+
singleArgumentUnchanged: false
|
|
2224
|
+
},
|
|
2225
|
+
["submissionId", "accessToken"]
|
|
2226
|
+
);
|
|
2227
|
+
sideEffects?.onError?.(err);
|
|
2228
|
+
throw transformedError;
|
|
2229
|
+
}
|
|
2230
|
+
}
|
|
2181
2231
|
async function getFormattedSubmission2(submissionId) {
|
|
2182
2232
|
const { httpClient, sideEffects } = arguments[1];
|
|
2183
2233
|
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
@@ -2492,6 +2542,14 @@ function getSubmissionDownloadUrl3(httpClient) {
|
|
|
2492
2542
|
{ httpClient }
|
|
2493
2543
|
);
|
|
2494
2544
|
}
|
|
2545
|
+
function downloadSubmission3(httpClient) {
|
|
2546
|
+
return (submissionId, accessToken) => downloadSubmission2(
|
|
2547
|
+
submissionId,
|
|
2548
|
+
accessToken,
|
|
2549
|
+
// @ts-ignore
|
|
2550
|
+
{ httpClient }
|
|
2551
|
+
);
|
|
2552
|
+
}
|
|
2495
2553
|
function getFormattedSubmission3(httpClient) {
|
|
2496
2554
|
return (submissionId) => getFormattedSubmission2(
|
|
2497
2555
|
submissionId,
|
|
@@ -2664,6 +2722,7 @@ var countDeletedSubmissions4 = /* @__PURE__ */ createRESTModule(countDeletedSubm
|
|
|
2664
2722
|
var getMediaUploadUrl4 = /* @__PURE__ */ createRESTModule(getMediaUploadUrl3);
|
|
2665
2723
|
var bulkMarkSubmissionsAsSeen4 = /* @__PURE__ */ createRESTModule(bulkMarkSubmissionsAsSeen3);
|
|
2666
2724
|
var getSubmissionDownloadUrl4 = /* @__PURE__ */ createRESTModule(getSubmissionDownloadUrl3);
|
|
2725
|
+
var downloadSubmission4 = /* @__PURE__ */ createRESTModule(downloadSubmission3);
|
|
2667
2726
|
var getFormattedSubmission4 = /* @__PURE__ */ createRESTModule(getFormattedSubmission3);
|
|
2668
2727
|
var updateExtendedFields4 = /* @__PURE__ */ createRESTModule(updateExtendedFields3);
|
|
2669
2728
|
var bulkUpdateFormSubmissionTags4 = /* @__PURE__ */ createRESTModule(bulkUpdateFormSubmissionTags3);
|
|
@@ -2808,6 +2867,7 @@ export {
|
|
|
2808
2867
|
countSubmissionsByFilter4 as countSubmissionsByFilter,
|
|
2809
2868
|
createSubmission4 as createSubmission,
|
|
2810
2869
|
deleteSubmission4 as deleteSubmission,
|
|
2870
|
+
downloadSubmission4 as downloadSubmission,
|
|
2811
2871
|
getDeletedSubmission4 as getDeletedSubmission,
|
|
2812
2872
|
getFormattedSubmission4 as getFormattedSubmission,
|
|
2813
2873
|
getMediaUploadUrl4 as getMediaUploadUrl,
|