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