@wix/auto_sdk_forms_submissions 1.0.89 → 1.0.91
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-DPBDZ96U.d.ts → forms-v4-submission-submissions.universal-pH6hm_fT.d.ts} +37 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +6 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +6 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +38 -2
- package/build/cjs/meta.js +6 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-DPBDZ96U.d.mts → forms-v4-submission-submissions.universal-pH6hm_fT.d.mts} +37 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +38 -2
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-B2QXVUTn.d.ts → forms-v4-submission-submissions.universal-a2rNXp7F.d.ts} +37 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +6 -0
- 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 +6 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +38 -2
- package/build/internal/cjs/meta.js +6 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-B2QXVUTn.d.mts → forms-v4-submission-submissions.universal-a2rNXp7F.d.mts} +37 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +6 -0
- 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 +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +38 -2
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1175,6 +1175,14 @@ interface InputFieldInputTypeOptionsOneOf {
|
|
|
1175
1175
|
/** Address input field settings. */
|
|
1176
1176
|
addressOptions?: Address;
|
|
1177
1177
|
}
|
|
1178
|
+
interface StringCorrectAnswersList {
|
|
1179
|
+
/**
|
|
1180
|
+
* @minLength 1
|
|
1181
|
+
* @maxLength 150
|
|
1182
|
+
* @maxSize 50
|
|
1183
|
+
*/
|
|
1184
|
+
correctAnswers?: string[];
|
|
1185
|
+
}
|
|
1178
1186
|
interface StringType extends StringTypeFormatOptionsOneOf {
|
|
1179
1187
|
/** Validation rules for strings with date format. */
|
|
1180
1188
|
dateOptions?: DateTimeConstraints;
|
|
@@ -1327,6 +1335,12 @@ declare enum StringComponentType {
|
|
|
1327
1335
|
}
|
|
1328
1336
|
/** @enumType */
|
|
1329
1337
|
type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN' | 'PASSWORD';
|
|
1338
|
+
interface StringQuizFieldSettings {
|
|
1339
|
+
/** Points awarded for correctly answering this quiz question. */
|
|
1340
|
+
score?: number;
|
|
1341
|
+
/** Correct answers for this quiz question. */
|
|
1342
|
+
correctAnswersList?: StringCorrectAnswersList;
|
|
1343
|
+
}
|
|
1330
1344
|
interface TextInput {
|
|
1331
1345
|
/**
|
|
1332
1346
|
* Field label.
|
|
@@ -3686,6 +3700,10 @@ interface Password {
|
|
|
3686
3700
|
/** Configuration for the media content. */
|
|
3687
3701
|
mediaSettings?: MediaSettings;
|
|
3688
3702
|
}
|
|
3703
|
+
interface NumberCorrectAnswersList {
|
|
3704
|
+
/** @maxSize 50 */
|
|
3705
|
+
correctAnswers?: number[];
|
|
3706
|
+
}
|
|
3689
3707
|
interface NumberType {
|
|
3690
3708
|
/** The maximum value of the number. Inclusive. */
|
|
3691
3709
|
maximum?: number | null;
|
|
@@ -3709,6 +3727,12 @@ declare enum NumberComponentType {
|
|
|
3709
3727
|
}
|
|
3710
3728
|
/** @enumType */
|
|
3711
3729
|
type NumberComponentTypeWithLiterals = NumberComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'NUMBER_INPUT' | 'RATING_INPUT';
|
|
3730
|
+
interface NumberQuizFieldSettings {
|
|
3731
|
+
/** Points awarded for correctly answering this quiz question. */
|
|
3732
|
+
score?: number;
|
|
3733
|
+
/** Correct answers for this quiz question. */
|
|
3734
|
+
correctAnswersList?: NumberCorrectAnswersList;
|
|
3735
|
+
}
|
|
3712
3736
|
interface NumberInput {
|
|
3713
3737
|
/**
|
|
3714
3738
|
* Field label.
|
|
@@ -3785,6 +3809,10 @@ interface Checkbox {
|
|
|
3785
3809
|
*/
|
|
3786
3810
|
checked?: boolean;
|
|
3787
3811
|
}
|
|
3812
|
+
interface CorrectAnswersList {
|
|
3813
|
+
/** @maxSize 50 */
|
|
3814
|
+
correctAnswers?: any[];
|
|
3815
|
+
}
|
|
3788
3816
|
interface ArrayType {
|
|
3789
3817
|
/**
|
|
3790
3818
|
* Maximum number of elements allowed in the array.
|
|
@@ -3890,6 +3918,12 @@ declare enum ArrayComponentType {
|
|
|
3890
3918
|
}
|
|
3891
3919
|
/** @enumType */
|
|
3892
3920
|
type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
|
|
3921
|
+
interface QuizFieldSettings {
|
|
3922
|
+
/** Points awarded for correctly answering this quiz question. */
|
|
3923
|
+
score?: number;
|
|
3924
|
+
/** Correct answers for this quiz question. */
|
|
3925
|
+
correctAnswersList?: CorrectAnswersList;
|
|
3926
|
+
}
|
|
3893
3927
|
interface CheckboxGroup {
|
|
3894
3928
|
/**
|
|
3895
3929
|
* Field label.
|
|
@@ -4802,6 +4836,8 @@ interface _Array extends _ArrayComponentTypeOptionsOneOf {
|
|
|
4802
4836
|
* @readonly
|
|
4803
4837
|
*/
|
|
4804
4838
|
componentType?: ArrayComponentTypeWithLiterals;
|
|
4839
|
+
/** Quiz-specific settings for the field. */
|
|
4840
|
+
quizFieldSettings?: QuizFieldSettings;
|
|
4805
4841
|
}
|
|
4806
4842
|
/** @oneof */
|
|
4807
4843
|
interface _ArrayComponentTypeOptionsOneOf {
|
|
@@ -7679,4 +7715,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7679
7715
|
fieldsToValidate?: string[];
|
|
7680
7716
|
}
|
|
7681
7717
|
|
|
7682
|
-
export { ValidationFormat 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, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, SchedulingComponentType as a$, ProductType as a0, PriceType as a1, FieldType as a2, FormatEnumFormat as a3, StringComponentType as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, LinkTarget as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, Scaling as aG, LayoutDataImagePosition as aH, VerticalAlignmentAlignment as aI, ResponsivenessBehaviour as aJ, DesignTarget as aK, ImagePosition as aL, Alignment as aM, ImageFit as aN, NumberOfColumns as aO, FirstDayOfWeek as aP, NumberComponentType as aQ, BooleanComponentType as aR, ItemType as aS, PropertiesTypeEnum as aT, ArrayComponentType as aU, WixFileComponentType as aV, UploadFileFormat as aW, PaymentComponentType as aX, ComponentType as aY, Type as aZ, ObjectArrayComponentType as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, Position as au, AspectRatio as av, Resizing as aw, Placement as ax, CardStylesType as ay, CardStylesAlignment as az, type CreateSubmissionApplicationErrors as b, type IntegerType as b$, Format as b0, InputType as b1, EmailInfoTag as b2, PhoneInfoTag as b3, Tag as b4, ConfirmationLevel as b5, ContactField as b6, DisplayFieldType as b7, OverrideEntityType as b8, Kind as b9, type RemovedSubmissionFromTrash as bA, type SubmissionContactMapped as bB, type MarketingSubscriptionDetails as bC, type SubmissionContactMappingSkipped as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type AccountInfo as bO, type CreateCheckoutFromSubmissionRequest as bP, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bQ, type Form as bR, type FormField as bS, type FormFieldStringType as bT, type FormFieldStringTypeFormatOptionsOneOf as bU, type StringErrorMessages as bV, type StringTypeDateTimeConstraints as bW, type StringTypePhoneConstraints as bX, type StringTypeValidationMessages as bY, type FormFieldNumberType as bZ, type NumberErrorMessages as b_, FormFieldContactInfoEmailInfoTag as ba, FormFieldContactInfoPhoneInfoTag as bb, AddressInfoTag as bc, SubscriptionInfoOptInLevel as bd, FormFieldContactInfoContactField as be, SpamFilterProtectionLevel as bf, RequiredIndicator as bg, RequiredIndicatorPlacement as bh, Target as bi, SubmitSuccessAction as bj, ChangeableProperty as bk, OverrideEntityTypeEnumOverrideEntityType as bl, Operator as bm, IdentityType as bn, ErrorType as bo, SortOrder as bp, Mode as bq, Status as br, SubmissionErrorType as bs, type Submitter as bt, type SubmitterSubmitterOneOf as bu, type ExtendedFields as bv, type OrderDetails as bw, type PublicTags as bx, type TagList as by, type FormSubmissionStatusUpdatedEvent as bz, type CreateSubmissionValidationErrors as c, type Video as c$, type FormFieldBooleanType as c0, type BooleanErrorMessages as c1, type FormFieldArrayType as c2, type FormFieldObjectType as c3, type ObjectTypePropertiesType as c4, type ObjectTypePropertiesTypePropertiesTypeOneOf as c5, type ObjectErrorMessages as c6, type ArrayTypeArrayItems as c7, type ArrayTypeArrayItemsItemsOneOf as c8, type ArrayErrorMessages as c9, type TextInput as cA, type RichContent as cB, type Node as cC, type NodeDataOneOf as cD, type NodeStyle as cE, type ButtonData as cF, type Border as cG, type Colors as cH, type PluginContainerData as cI, type PluginContainerDataWidth as cJ, type PluginContainerDataWidthDataOneOf as cK, type Spoiler as cL, type Height as cM, type Styles as cN, type Link as cO, type LinkDataOneOf as cP, type Rel as cQ, type CodeBlockData as cR, type TextStyle as cS, type DividerData as cT, type FileData as cU, type FileSource as cV, type FileSourceDataOneOf as cW, type PDFSettings as cX, type GalleryData as cY, type Media as cZ, type Image as c_, type PredefinedValidation as ca, type PredefinedValidationFormatOptionsOneOf as cb, type PaymentType as cc, type QuantityLimit as cd, type FixedPriceOptions as ce, type DynamicPriceOptions as cf, type Product as cg, type ProductPriceOptionsOneOf as ch, type MultilineAddressValidation as ci, type FieldOverrides as cj, type FieldsOverrides as ck, type ObjectArrayType as cl, type NestedFormFieldOverrides as cm, type Validation as cn, type ValidationValidationOneOf as co, type DataExtensionsDetails as cp, type NestedFormOverrides as cq, type Field as cr, type FieldFieldTypeOptionsOneOf as cs, type InputField as ct, type InputFieldInputTypeOptionsOneOf as cu, type StringType as cv, type StringTypeFormatOptionsOneOf as cw, type DateTimeConstraints as cx, type PhoneConstraints as cy, type ValidationMessages as cz, type UpdateSubmission as d, type BorderWidths as d$, type Item as d0, type ItemDataOneOf as d1, type GalleryOptions as d2, type GalleryOptionsLayout as d3, type ItemStyle as d4, type Thumbnails as d5, type GIFData as d6, type GIF as d7, type HeadingData as d8, type HTMLData as d9, type DecorationDataOneOf as dA, type AnchorData as dB, type ColorData as dC, type LinkData as dD, type MentionData as dE, type FontSizeData as dF, type SpoilerData as dG, type FontFamilyData as dH, type AppEmbedData as dI, type AppEmbedDataAppDataOneOf as dJ, type BookingData as dK, type EventData as dL, type ButtonStyles as dM, type ImageStyles as dN, type RibbonStyles as dO, type CardStyles as dP, type PricingData as dQ, type VideoData as dR, type PlaybackOptions as dS, type EmbedData as dT, type Oembed as dU, type CollapsibleListData as dV, type TableData as dW, type Dimensions as dX, type TableCellData as dY, type CellStyle as dZ, type BorderColors as d_, type HTMLDataDataOneOf as da, type ImageData as db, type StylesBorder as dc, type ImageDataStyles as dd, type LinkPreviewData as de, type LinkPreviewDataStyles as df, type MapData as dg, type MapSettings as dh, type ParagraphData as di, type PollData as dj, type Permissions as dk, type PollOption as dl, type Settings as dm, type PollLayout as dn, type OptionLayout as dp, type Gradient as dq, type Background as dr, type BackgroundBackgroundOneOf as ds, type PollDesign as dt, type OptionDesign as du, type Poll as dv, type PollDataLayout as dw, type Design as dx, type TextData as dy, type Decoration as dz, type UpdateSubmissionValidationErrors as e, type Group as e$, type ListValue as e0, type AudioData as e1, type OrderedListData as e2, type BulletedListData as e3, type BlockquoteData as e4, type CaptionData as e5, type LayoutData as e6, type BackgroundImage as e7, type LayoutCellData as e8, type Metadata as e9, type PropertiesTypePropertiesTypeOptionsOneOf as eA, type ArrayItems as eB, type ArrayItemsItemTypeOptionsOneOf as eC, type CheckboxGroup as eD, type Option as eE, type ComponentsTags as eF, type TagsOption as eG, type ServicesCheckboxGroup as eH, type FileType as eI, type FileUpload as eJ, type Signature as eK, type ProductCheckboxGroup as eL, type ProductCheckboxGroupOption as eM, type DonationInput as eN, type DonationInputOption as eO, type PaymentInput as eP, type FixedPayment as eQ, type MultilineAddress as eR, type AddressLine2 as eS, type DefaultCountryConfig as eT, type DefaultCountryConfigOptionsOneOf as eU, type FieldsSettings as eV, type Repeater as eW, type FormLayout as eX, type BreakPoint as eY, type ItemLayout as eZ, type ItemLayoutItemOneOf as e_, type DocumentStyle as ea, type TextNodeStyle as eb, type MediaItem as ec, type MediaItemMediaOneOf as ed, type MediaSettings as ee, type RadioGroup as ef, type RadioGroupOption as eg, type CustomOption as eh, type Dropdown as ei, type DropdownOption as ej, type DateTimeInput as ek, type PhoneInput as el, type DateInput as em, type TimeInput as en, type DatePicker as eo, type ServicesDropdown as ep, type ServiceOption as eq, type Password as er, type NumberType as es, type NumberInput as et, type RatingInput as eu, type BooleanType as ev, type Checkbox as ew, type ArrayType as ex, type ObjectType as ey, type PropertiesType as ez, type ConfirmSubmissionResponse as f, type AllowedValuesOptions as f$, type Margin as f0, type Section as f1, type Appointment as f2, type AppointmentFormatInfoOneOf as f3, type Location as f4, type LocationLocationInfoOneOf as f5, type InPersonOptions as f6, type VideoConferenceOptions as f7, type PhoneOptions as f8, type FormFieldContactInfo as f9, type DisplayFieldDisplayFieldTypeOptionsOneOf as fA, type RichContentOptions as fB, type PageNavigationOptions as fC, type Step as fD, type FormRule as fE, type FormOverride as fF, type FormProperties as fG, type PostSubmissionTriggers as fH, type UpsertContact as fI, type V4FormFieldContactInfo as fJ, type V4FormFieldContactInfoAdditionalInfoOneOf as fK, type FormFieldContactInfoEmailInfo as fL, type FormFieldContactInfoPhoneInfo as fM, type FormFieldContactInfoAddressInfo as fN, type FormFieldContactInfoCustomFieldInfo as fO, type FormFieldContactInfoSubscriptionInfo as fP, type NestedForm as fQ, type LimitationRule as fR, type RequiredIndicatorProperties as fS, type SubmitSettings as fT, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fU, type ThankYouMessageOptions as fV, type RedirectOptions as fW, type FieldGroup as fX, type Rule as fY, type RequiredOptions as fZ, type HiddenOptions as f_, type FormFieldContactInfoAdditionalInfoOneOf as fa, type EmailInfo as fb, type PhoneInfo as fc, type AddressInfo as fd, type CustomFieldInfo as fe, type SubscriptionInfo as ff, type _String as fg, type _StringComponentTypeOptionsOneOf as fh, type _Number as fi, type _NumberComponentTypeOptionsOneOf as fj, type _Boolean as fk, type _BooleanComponentTypeOptionsOneOf as fl, type _Array as fm, type _ArrayComponentTypeOptionsOneOf as fn, type _Object as fo, type WixFile as fp, type WixFileComponentTypeOptionsOneOf as fq, type Payment as fr, type PaymentComponentTypeOptionsOneOf as fs, type Scheduling as ft, type SchedulingComponentTypeOptionsOneOf as fu, type Address as fv, type AddressComponentTypeOptionsOneOf as fw, type ObjectArray as fx, type ObjectArrayComponentTypeOptionsOneOf as fy, type DisplayField as fz, type BulkDeleteSubmissionResponse as g, type QuerySubmissionsByNamespaceForExportRequest as g$, type FieldOverride as g0, type FieldOverridePropertyTypeOptionsOneOf as g1, type ConditionNode as g2, type ConditionNodeNodeOneOf as g3, type AndCondition as g4, type OrCondition as g5, type Condition as g6, type RuleFormOverride as g7, type RuleFormOverrideEntityTypeOptionsOneOf as g8, type Tags as g9, type UpdateSubmissionResponse as gA, type ConfirmSubmissionRequest as gB, type DeleteSubmissionRequest as gC, type DeleteSubmissionResponse as gD, type BulkDeleteSubmissionRequest as gE, type BulkDeleteSubmissionResult as gF, type RestoreSubmissionFromTrashBinRequest as gG, type RemoveSubmissionFromTrashBinRequest as gH, type RemoveSubmissionFromTrashBinResponse as gI, type BulkRemoveSubmissionFromTrashBinRequest as gJ, type BulkRemoveSubmissionFromTrashBinResult as gK, type ListDeletedSubmissionsRequest as gL, type CursorPaging as gM, type CursorPagingMetadata as gN, type Cursors as gO, type GetDeletedSubmissionRequest as gP, type QuerySubmissionRequest as gQ, type CursorQueryPagingMethodOneOf as gR, type Sorting as gS, type SearchSubmissionsByNamespaceRequest as gT, type CursorSearch as gU, type CursorSearchPagingMethodOneOf as gV, type SearchDetails as gW, type SearchSubmissionsByNamespaceForExportRequest as gX, type SearchSubmissionsByNamespaceForExportResponse as gY, type QuerySubmissionsByNamespaceRequest as gZ, type QuerySubmissionsByNamespaceResponse as g_, type TagsTagList as ga, type CreateCheckoutFromSubmissionResponse as gb, type Checkout as gc, type IsFormSubmittableRequest as gd, type IsFormSubmittableResponse as ge, type Empty as gf, type UpsertContactFromSubmissionRequest as gg, type SubmitContactResponse as gh, type CreateSubmissionRequest as gi, type CreateSubmissionResponse as gj, type SubmissionValidationErrorsDetails as gk, type ValidationError as gl, type CreateSubmissionBySubmitterRequest as gm, type CreateSubmissionBySubmitterResponse as gn, type BulkCreateSubmissionBySubmitterRequest as go, type BulkCreateSubmissionBySubmitterData as gp, type BulkCreateSubmissionBySubmitterResponse as gq, type BulkSubmissionResult as gr, type ItemMetadata as gs, type ApplicationError as gt, type BulkActionMetadata as gu, type GetSubmissionRequest as gv, type GetSubmissionResponse as gw, type GetSubmissionByCheckoutIdRequest as gx, type GetSubmissionByCheckoutIdResponse as gy, type UpdateSubmissionRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type GIFTypeWithLiterals as h$, type QuerySubmissionsByNamespaceForExportResponse as h0, type CountSubmissionsByFilterRequest as h1, type FormSubmissionsCount as h2, type CountSubmissionsRequest as h3, type CountDeletedSubmissionsRequest as h4, type FormDeletedSubmissionsCount as h5, type GetMediaUploadURLRequest as h6, type BulkMarkSubmissionsAsSeenRequest as h7, type GetSubmissionDownloadUrlRequest as h8, type SubmissionDocument as h9, type FormSubmissionQuerySpec as hA, type BulkUpdateFormSubmissionTagsOptions as hB, type BulkUpdateFormSubmissionTagsByFilterOptions as hC, type SubmissionStatusWithLiterals as hD, type OptInLevelWithLiterals as hE, type WebhookIdentityTypeWithLiterals as hF, type StringTypeFormatEnumFormatWithLiterals as hG, type ValidationFormatWithLiterals as hH, type ProductTypeWithLiterals as hI, type PriceTypeWithLiterals as hJ, type FieldTypeWithLiterals as hK, type FormatEnumFormatWithLiterals as hL, type StringComponentTypeWithLiterals as hM, type NodeTypeWithLiterals as hN, type WidthTypeWithLiterals as hO, type PluginContainerDataAlignmentWithLiterals as hP, type ButtonDataTypeWithLiterals as hQ, type LinkTargetWithLiterals as hR, type TextAlignmentWithLiterals as hS, type LineStyleWithLiterals as hT, type WidthWithLiterals as hU, type DividerDataAlignmentWithLiterals as hV, type ViewModeWithLiterals as hW, type LayoutTypeWithLiterals as hX, type OrientationWithLiterals as hY, type CropWithLiterals as hZ, type ThumbnailsAlignmentWithLiterals as h_, type SubmissionDocumentDocumentOneOf as ha, type DocumentReady as hb, type DownloadSubmissionRequest as hc, type HeadersEntry as hd, type GetFormattedSubmissionRequest as he, type FormattedSubmission as hf, type ListFormattedSubmissionsRequest as hg, type ListFormattedSubmissionsResponse as hh, type FormattedFormSubmission as hi, type UpdateExtendedFieldsRequest as hj, type BulkUpdateFormSubmissionTagsRequest as hk, type BulkUpdateFormSubmissionTagsResponse as hl, type BulkUpdateFormSubmissionTagsResult as hm, type BulkUpdateFormSubmissionTagsByFilterRequest as hn, type BulkUpdateFormSubmissionTagsByFilterResponse as ho, type ValidateFormSubmissionRequest as hp, type FieldViolation as hq, type FieldViolationErrorDataOneOf as hr, type SubmissionValidationErrors as hs, type SubmissionValidationError as ht, type SubmissionValidationErrorErrorMessageOneOf as hu, type BaseEventMetadata as hv, type EventMetadata as hw, type AccountInfoMetadata as hx, type FormSubmissionSearchSpec as hy, type SubmissionsQueryResult as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type RequiredIndicatorPlacementWithLiterals as i$, type SourceWithLiterals as i0, type StylesPositionWithLiterals as i1, type MapTypeWithLiterals as i2, type ViewRoleWithLiterals as i3, type VoteRoleWithLiterals as i4, type PollLayoutTypeWithLiterals as i5, type PollLayoutDirectionWithLiterals as i6, type BackgroundTypeWithLiterals as i7, type DecorationTypeWithLiterals as i8, type FontTypeWithLiterals as i9, type ItemTypeWithLiterals as iA, type PropertiesTypeEnumWithLiterals as iB, type ArrayComponentTypeWithLiterals as iC, type WixFileComponentTypeWithLiterals as iD, type UploadFileFormatWithLiterals as iE, type PaymentComponentTypeWithLiterals as iF, type ComponentTypeWithLiterals as iG, type TypeWithLiterals as iH, type ObjectArrayComponentTypeWithLiterals as iI, type SchedulingComponentTypeWithLiterals as iJ, type FormatWithLiterals as iK, type InputTypeWithLiterals as iL, type EmailInfoTagWithLiterals as iM, type PhoneInfoTagWithLiterals as iN, type TagWithLiterals as iO, type ConfirmationLevelWithLiterals as iP, type ContactFieldWithLiterals as iQ, type DisplayFieldTypeWithLiterals as iR, type OverrideEntityTypeWithLiterals as iS, type KindWithLiterals as iT, type FormFieldContactInfoEmailInfoTagWithLiterals as iU, type FormFieldContactInfoPhoneInfoTagWithLiterals as iV, type AddressInfoTagWithLiterals as iW, type SubscriptionInfoOptInLevelWithLiterals as iX, type FormFieldContactInfoContactFieldWithLiterals as iY, type SpamFilterProtectionLevelWithLiterals as iZ, type RequiredIndicatorWithLiterals as i_, type PositionWithLiterals as ia, type AspectRatioWithLiterals as ib, type ResizingWithLiterals as ic, type PlacementWithLiterals as id, type CardStylesTypeWithLiterals as ie, type CardStylesAlignmentWithLiterals as ig, type LayoutWithLiterals as ih, type AppTypeWithLiterals as ii, type InitialExpandedItemsWithLiterals as ij, type DirectionWithLiterals as ik, type VerticalAlignmentWithLiterals as il, type NullValueWithLiterals as im, type ScalingWithLiterals as io, type LayoutDataImagePositionWithLiterals as ip, type VerticalAlignmentAlignmentWithLiterals as iq, type ResponsivenessBehaviourWithLiterals as ir, type DesignTargetWithLiterals as is, type ImagePositionWithLiterals as it, type AlignmentWithLiterals as iu, type ImageFitWithLiterals as iv, type NumberOfColumnsWithLiterals as iw, type FirstDayOfWeekWithLiterals as ix, type NumberComponentTypeWithLiterals as iy, type BooleanComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type TargetWithLiterals as j0, type SubmitSuccessActionWithLiterals as j1, type ChangeablePropertyWithLiterals as j2, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j3, type OperatorWithLiterals as j4, type IdentityTypeWithLiterals as j5, type ErrorTypeWithLiterals as j6, type SortOrderWithLiterals as j7, type ModeWithLiterals as j8, type StatusWithLiterals as j9, countDeletedSubmissions as jA, getMediaUploadUrl as jB, bulkMarkSubmissionsAsSeen as jC, getSubmissionDownloadUrl as jD, downloadSubmission as jE, getFormattedSubmission as jF, updateExtendedFields as jG, validateFormSubmission as jH, type SubmissionErrorTypeWithLiterals as ja, type CommonSearchWithEntityContext as jb, type CommonQueryWithEntityContext as jc, onSubmissionCreated as jd, onSubmissionDeleted as je, onSubmissionRemovedSubmissionFromTrash as jf, onSubmissionStatusUpdated as jg, onSubmissionContactMapped as jh, onSubmissionContactMappingSkipped as ji, onSubmissionUpdated as jj, upsertContactFromSubmission as jk, createSubmission as jl, getSubmission as jm, updateSubmission as jn, confirmSubmission as jo, deleteSubmission as jp, bulkDeleteSubmission as jq, restoreSubmissionFromTrashBin as jr, removeSubmissionFromTrashBin as js, bulkRemoveSubmissionFromTrashBin as jt, listDeletedSubmissions as ju, getDeletedSubmission as jv, querySubmission as jw, querySubmissionsByNamespace as jx, countSubmissionsByFilter as jy, countSubmissions as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
7718
|
+
export { ValidationFormat 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, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, SchedulingComponentType as a$, ProductType as a0, PriceType as a1, FieldType as a2, FormatEnumFormat as a3, StringComponentType as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, LinkTarget as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, Scaling as aG, LayoutDataImagePosition as aH, VerticalAlignmentAlignment as aI, ResponsivenessBehaviour as aJ, DesignTarget as aK, ImagePosition as aL, Alignment as aM, ImageFit as aN, NumberOfColumns as aO, FirstDayOfWeek as aP, NumberComponentType as aQ, BooleanComponentType as aR, ItemType as aS, PropertiesTypeEnum as aT, ArrayComponentType as aU, WixFileComponentType as aV, UploadFileFormat as aW, PaymentComponentType as aX, ComponentType as aY, Type as aZ, ObjectArrayComponentType as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, Position as au, AspectRatio as av, Resizing as aw, Placement as ax, CardStylesType as ay, CardStylesAlignment as az, type CreateSubmissionApplicationErrors as b, type IntegerType as b$, Format as b0, InputType as b1, EmailInfoTag as b2, PhoneInfoTag as b3, Tag as b4, ConfirmationLevel as b5, ContactField as b6, DisplayFieldType as b7, OverrideEntityType as b8, Kind as b9, type RemovedSubmissionFromTrash as bA, type SubmissionContactMapped as bB, type MarketingSubscriptionDetails as bC, type SubmissionContactMappingSkipped as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type AccountInfo as bO, type CreateCheckoutFromSubmissionRequest as bP, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bQ, type Form as bR, type FormField as bS, type FormFieldStringType as bT, type FormFieldStringTypeFormatOptionsOneOf as bU, type StringErrorMessages as bV, type StringTypeDateTimeConstraints as bW, type StringTypePhoneConstraints as bX, type StringTypeValidationMessages as bY, type FormFieldNumberType as bZ, type NumberErrorMessages as b_, FormFieldContactInfoEmailInfoTag as ba, FormFieldContactInfoPhoneInfoTag as bb, AddressInfoTag as bc, SubscriptionInfoOptInLevel as bd, FormFieldContactInfoContactField as be, SpamFilterProtectionLevel as bf, RequiredIndicator as bg, RequiredIndicatorPlacement as bh, Target as bi, SubmitSuccessAction as bj, ChangeableProperty as bk, OverrideEntityTypeEnumOverrideEntityType as bl, Operator as bm, IdentityType as bn, ErrorType as bo, SortOrder as bp, Mode as bq, Status as br, SubmissionErrorType as bs, type Submitter as bt, type SubmitterSubmitterOneOf as bu, type ExtendedFields as bv, type OrderDetails as bw, type PublicTags as bx, type TagList as by, type FormSubmissionStatusUpdatedEvent as bz, type CreateSubmissionValidationErrors as c, type Media as c$, type FormFieldBooleanType as c0, type BooleanErrorMessages as c1, type FormFieldArrayType as c2, type FormFieldObjectType as c3, type ObjectTypePropertiesType as c4, type ObjectTypePropertiesTypePropertiesTypeOneOf as c5, type ObjectErrorMessages as c6, type ArrayTypeArrayItems as c7, type ArrayTypeArrayItemsItemsOneOf as c8, type ArrayErrorMessages as c9, type ValidationMessages as cA, type StringQuizFieldSettings as cB, type TextInput as cC, type RichContent as cD, type Node as cE, type NodeDataOneOf as cF, type NodeStyle as cG, type ButtonData as cH, type Border as cI, type Colors as cJ, type PluginContainerData as cK, type PluginContainerDataWidth as cL, type PluginContainerDataWidthDataOneOf as cM, type Spoiler as cN, type Height as cO, type Styles as cP, type Link as cQ, type LinkDataOneOf as cR, type Rel as cS, type CodeBlockData as cT, type TextStyle as cU, type DividerData as cV, type FileData as cW, type FileSource as cX, type FileSourceDataOneOf as cY, type PDFSettings as cZ, type GalleryData as c_, type PredefinedValidation as ca, type PredefinedValidationFormatOptionsOneOf as cb, type PaymentType as cc, type QuantityLimit as cd, type FixedPriceOptions as ce, type DynamicPriceOptions as cf, type Product as cg, type ProductPriceOptionsOneOf as ch, type MultilineAddressValidation as ci, type FieldOverrides as cj, type FieldsOverrides as ck, type ObjectArrayType as cl, type NestedFormFieldOverrides as cm, type Validation as cn, type ValidationValidationOneOf as co, type DataExtensionsDetails as cp, type NestedFormOverrides as cq, type Field as cr, type FieldFieldTypeOptionsOneOf as cs, type InputField as ct, type InputFieldInputTypeOptionsOneOf as cu, type StringCorrectAnswersList as cv, type StringType as cw, type StringTypeFormatOptionsOneOf as cx, type DateTimeConstraints as cy, type PhoneConstraints as cz, type UpdateSubmission as d, type CellStyle as d$, type Image as d0, type Video as d1, type Item as d2, type ItemDataOneOf as d3, type GalleryOptions as d4, type GalleryOptionsLayout as d5, type ItemStyle as d6, type Thumbnails as d7, type GIFData as d8, type GIF as d9, type TextData as dA, type Decoration as dB, type DecorationDataOneOf as dC, type AnchorData as dD, type ColorData as dE, type LinkData as dF, type MentionData as dG, type FontSizeData as dH, type SpoilerData as dI, type FontFamilyData as dJ, type AppEmbedData as dK, type AppEmbedDataAppDataOneOf as dL, type BookingData as dM, type EventData as dN, type ButtonStyles as dO, type ImageStyles as dP, type RibbonStyles as dQ, type CardStyles as dR, type PricingData as dS, type VideoData as dT, type PlaybackOptions as dU, type EmbedData as dV, type Oembed as dW, type CollapsibleListData as dX, type TableData as dY, type Dimensions as dZ, type TableCellData as d_, type HeadingData as da, type HTMLData as db, type HTMLDataDataOneOf as dc, type ImageData as dd, type StylesBorder as de, type ImageDataStyles as df, type LinkPreviewData as dg, type LinkPreviewDataStyles as dh, type MapData as di, type MapSettings as dj, type ParagraphData as dk, type PollData as dl, type Permissions as dm, type PollOption as dn, type Settings as dp, type PollLayout as dq, type OptionLayout as dr, type Gradient as ds, type Background as dt, type BackgroundBackgroundOneOf as du, type PollDesign as dv, type OptionDesign as dw, type Poll as dx, type PollDataLayout as dy, type Design as dz, type UpdateSubmissionValidationErrors as e, type FieldsSettings as e$, type BorderColors as e0, type BorderWidths as e1, type ListValue as e2, type AudioData as e3, type OrderedListData as e4, type BulletedListData as e5, type BlockquoteData as e6, type CaptionData as e7, type LayoutData as e8, type BackgroundImage as e9, type Checkbox as eA, type CorrectAnswersList as eB, type ArrayType as eC, type ObjectType as eD, type PropertiesType as eE, type PropertiesTypePropertiesTypeOptionsOneOf as eF, type ArrayItems as eG, type ArrayItemsItemTypeOptionsOneOf as eH, type QuizFieldSettings as eI, type CheckboxGroup as eJ, type Option as eK, type ComponentsTags as eL, type TagsOption as eM, type ServicesCheckboxGroup as eN, type FileType as eO, type FileUpload as eP, type Signature as eQ, type ProductCheckboxGroup as eR, type ProductCheckboxGroupOption as eS, type DonationInput as eT, type DonationInputOption as eU, type PaymentInput as eV, type FixedPayment as eW, type MultilineAddress as eX, type AddressLine2 as eY, type DefaultCountryConfig as eZ, type DefaultCountryConfigOptionsOneOf as e_, type LayoutCellData as ea, type Metadata as eb, type DocumentStyle as ec, type TextNodeStyle as ed, type MediaItem as ee, type MediaItemMediaOneOf as ef, type MediaSettings as eg, type RadioGroup as eh, type RadioGroupOption as ei, type CustomOption as ej, type Dropdown as ek, type DropdownOption as el, type DateTimeInput as em, type PhoneInput as en, type DateInput as eo, type TimeInput as ep, type DatePicker as eq, type ServicesDropdown as er, type ServiceOption as es, type Password as et, type NumberCorrectAnswersList as eu, type NumberType as ev, type NumberQuizFieldSettings as ew, type NumberInput as ex, type RatingInput as ey, type BooleanType as ez, type ConfirmSubmissionResponse as f, type ThankYouMessageOptions as f$, type Repeater as f0, type FormLayout as f1, type BreakPoint as f2, type ItemLayout as f3, type ItemLayoutItemOneOf as f4, type Group as f5, type Margin as f6, type Section as f7, type Appointment as f8, type AppointmentFormatInfoOneOf as f9, type SchedulingComponentTypeOptionsOneOf as fA, type Address as fB, type AddressComponentTypeOptionsOneOf as fC, type ObjectArray as fD, type ObjectArrayComponentTypeOptionsOneOf as fE, type DisplayField as fF, type DisplayFieldDisplayFieldTypeOptionsOneOf as fG, type RichContentOptions as fH, type PageNavigationOptions as fI, type Step as fJ, type FormRule as fK, type FormOverride as fL, type FormProperties as fM, type PostSubmissionTriggers as fN, type UpsertContact as fO, type V4FormFieldContactInfo as fP, type V4FormFieldContactInfoAdditionalInfoOneOf as fQ, type FormFieldContactInfoEmailInfo as fR, type FormFieldContactInfoPhoneInfo as fS, type FormFieldContactInfoAddressInfo as fT, type FormFieldContactInfoCustomFieldInfo as fU, type FormFieldContactInfoSubscriptionInfo as fV, type NestedForm as fW, type LimitationRule as fX, type RequiredIndicatorProperties as fY, type SubmitSettings as fZ, type SubmitSettingsSubmitSuccessActionOptionsOneOf as f_, type Location as fa, type LocationLocationInfoOneOf as fb, type InPersonOptions as fc, type VideoConferenceOptions as fd, type PhoneOptions as fe, type FormFieldContactInfo as ff, type FormFieldContactInfoAdditionalInfoOneOf as fg, type EmailInfo as fh, type PhoneInfo as fi, type AddressInfo as fj, type CustomFieldInfo as fk, type SubscriptionInfo as fl, type _String as fm, type _StringComponentTypeOptionsOneOf as fn, type _Number as fo, type _NumberComponentTypeOptionsOneOf as fp, type _Boolean as fq, type _BooleanComponentTypeOptionsOneOf as fr, type _Array as fs, type _ArrayComponentTypeOptionsOneOf as ft, type _Object as fu, type WixFile as fv, type WixFileComponentTypeOptionsOneOf as fw, type Payment as fx, type PaymentComponentTypeOptionsOneOf as fy, type Scheduling as fz, type BulkDeleteSubmissionResponse as g, type CursorSearchPagingMethodOneOf as g$, type RedirectOptions as g0, type FieldGroup as g1, type Rule as g2, type RequiredOptions as g3, type HiddenOptions as g4, type AllowedValuesOptions as g5, type FieldOverride as g6, type FieldOverridePropertyTypeOptionsOneOf as g7, type ConditionNode as g8, type ConditionNodeNodeOneOf as g9, type BulkActionMetadata as gA, type GetSubmissionRequest as gB, type GetSubmissionResponse as gC, type GetSubmissionByCheckoutIdRequest as gD, type GetSubmissionByCheckoutIdResponse as gE, type UpdateSubmissionRequest as gF, type UpdateSubmissionResponse as gG, type ConfirmSubmissionRequest as gH, type DeleteSubmissionRequest as gI, type DeleteSubmissionResponse as gJ, type BulkDeleteSubmissionRequest as gK, type BulkDeleteSubmissionResult as gL, type RestoreSubmissionFromTrashBinRequest as gM, type RemoveSubmissionFromTrashBinRequest as gN, type RemoveSubmissionFromTrashBinResponse as gO, type BulkRemoveSubmissionFromTrashBinRequest as gP, type BulkRemoveSubmissionFromTrashBinResult as gQ, type ListDeletedSubmissionsRequest as gR, type CursorPaging as gS, type CursorPagingMetadata as gT, type Cursors as gU, type GetDeletedSubmissionRequest as gV, type QuerySubmissionRequest as gW, type CursorQueryPagingMethodOneOf as gX, type Sorting as gY, type SearchSubmissionsByNamespaceRequest as gZ, type CursorSearch as g_, type AndCondition as ga, type OrCondition as gb, type Condition as gc, type RuleFormOverride as gd, type RuleFormOverrideEntityTypeOptionsOneOf as ge, type Tags as gf, type TagsTagList as gg, type CreateCheckoutFromSubmissionResponse as gh, type Checkout as gi, type IsFormSubmittableRequest as gj, type IsFormSubmittableResponse as gk, type Empty as gl, type UpsertContactFromSubmissionRequest as gm, type SubmitContactResponse as gn, type CreateSubmissionRequest as go, type CreateSubmissionResponse as gp, type SubmissionValidationErrorsDetails as gq, type ValidationError as gr, type 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 BulkRemoveSubmissionFromTrashBinOptions as h, type DividerDataAlignmentWithLiterals as h$, type SearchDetails as h0, type SearchSubmissionsByNamespaceForExportRequest as h1, type SearchSubmissionsByNamespaceForExportResponse as h2, type QuerySubmissionsByNamespaceRequest as h3, type QuerySubmissionsByNamespaceResponse as h4, type QuerySubmissionsByNamespaceForExportRequest as h5, type QuerySubmissionsByNamespaceForExportResponse as h6, type CountSubmissionsByFilterRequest as h7, type FormSubmissionsCount as h8, type CountSubmissionsRequest as h9, type SubmissionValidationErrorErrorMessageOneOf as hA, type BaseEventMetadata as hB, type EventMetadata as hC, type AccountInfoMetadata as hD, type FormSubmissionSearchSpec as hE, type SubmissionsQueryResult as hF, type FormSubmissionQuerySpec as hG, type BulkUpdateFormSubmissionTagsOptions as hH, type BulkUpdateFormSubmissionTagsByFilterOptions as hI, type SubmissionStatusWithLiterals as hJ, type OptInLevelWithLiterals as hK, type WebhookIdentityTypeWithLiterals as hL, type StringTypeFormatEnumFormatWithLiterals as hM, type ValidationFormatWithLiterals as hN, type ProductTypeWithLiterals as hO, type PriceTypeWithLiterals as hP, type FieldTypeWithLiterals as hQ, type FormatEnumFormatWithLiterals as hR, type StringComponentTypeWithLiterals as hS, type NodeTypeWithLiterals as hT, type WidthTypeWithLiterals as hU, type PluginContainerDataAlignmentWithLiterals as hV, type ButtonDataTypeWithLiterals as hW, type LinkTargetWithLiterals as hX, type TextAlignmentWithLiterals as hY, type LineStyleWithLiterals as hZ, type WidthWithLiterals as h_, type CountDeletedSubmissionsRequest as ha, type FormDeletedSubmissionsCount as hb, type GetMediaUploadURLRequest as hc, type BulkMarkSubmissionsAsSeenRequest as hd, type GetSubmissionDownloadUrlRequest as he, type SubmissionDocument as hf, type SubmissionDocumentDocumentOneOf as hg, type DocumentReady as hh, type DownloadSubmissionRequest 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 BulkRemoveSubmissionFromTrashBinResponse as i, type FormFieldContactInfoPhoneInfoTagWithLiterals as i$, type ViewModeWithLiterals as i0, type LayoutTypeWithLiterals as i1, type OrientationWithLiterals as i2, type CropWithLiterals as i3, type ThumbnailsAlignmentWithLiterals as i4, type GIFTypeWithLiterals as i5, type SourceWithLiterals as i6, type StylesPositionWithLiterals as i7, type MapTypeWithLiterals as i8, type ViewRoleWithLiterals as i9, type AlignmentWithLiterals as iA, type ImageFitWithLiterals as iB, type NumberOfColumnsWithLiterals as iC, type FirstDayOfWeekWithLiterals as iD, type NumberComponentTypeWithLiterals as iE, type BooleanComponentTypeWithLiterals as iF, type ItemTypeWithLiterals as iG, type PropertiesTypeEnumWithLiterals as iH, type ArrayComponentTypeWithLiterals as iI, type WixFileComponentTypeWithLiterals as iJ, type UploadFileFormatWithLiterals as iK, type PaymentComponentTypeWithLiterals as iL, type ComponentTypeWithLiterals as iM, type TypeWithLiterals as iN, type ObjectArrayComponentTypeWithLiterals as iO, type SchedulingComponentTypeWithLiterals as iP, type FormatWithLiterals as iQ, type InputTypeWithLiterals as iR, type EmailInfoTagWithLiterals as iS, type PhoneInfoTagWithLiterals as iT, type TagWithLiterals as iU, type ConfirmationLevelWithLiterals as iV, type ContactFieldWithLiterals as iW, type DisplayFieldTypeWithLiterals as iX, type OverrideEntityTypeWithLiterals as iY, type KindWithLiterals as iZ, type FormFieldContactInfoEmailInfoTagWithLiterals as i_, type VoteRoleWithLiterals as ia, type PollLayoutTypeWithLiterals as ib, type PollLayoutDirectionWithLiterals as ic, type BackgroundTypeWithLiterals as id, type DecorationTypeWithLiterals as ie, type FontTypeWithLiterals as ig, type PositionWithLiterals as ih, type AspectRatioWithLiterals as ii, type ResizingWithLiterals as ij, type PlacementWithLiterals as ik, type CardStylesTypeWithLiterals as il, type CardStylesAlignmentWithLiterals as im, type LayoutWithLiterals as io, type AppTypeWithLiterals as ip, type InitialExpandedItemsWithLiterals as iq, type DirectionWithLiterals as ir, type VerticalAlignmentWithLiterals as is, type NullValueWithLiterals as it, type ScalingWithLiterals as iu, type LayoutDataImagePositionWithLiterals as iv, type VerticalAlignmentAlignmentWithLiterals as iw, type ResponsivenessBehaviourWithLiterals as ix, type DesignTargetWithLiterals as iy, type ImagePositionWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type AddressInfoTagWithLiterals as j0, type SubscriptionInfoOptInLevelWithLiterals as j1, type FormFieldContactInfoContactFieldWithLiterals as j2, type SpamFilterProtectionLevelWithLiterals as j3, type RequiredIndicatorWithLiterals as j4, type RequiredIndicatorPlacementWithLiterals as j5, type TargetWithLiterals as j6, type SubmitSuccessActionWithLiterals as j7, type ChangeablePropertyWithLiterals as j8, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j9, listDeletedSubmissions as jA, getDeletedSubmission as jB, querySubmission as jC, querySubmissionsByNamespace as jD, countSubmissionsByFilter as jE, countSubmissions as jF, countDeletedSubmissions as jG, getMediaUploadUrl as jH, bulkMarkSubmissionsAsSeen as jI, getSubmissionDownloadUrl as jJ, downloadSubmission as jK, getFormattedSubmission as jL, updateExtendedFields as jM, validateFormSubmission as jN, type OperatorWithLiterals as ja, type IdentityTypeWithLiterals as jb, type ErrorTypeWithLiterals as jc, type SortOrderWithLiterals as jd, type ModeWithLiterals as je, type StatusWithLiterals as jf, type SubmissionErrorTypeWithLiterals as jg, type CommonSearchWithEntityContext as jh, type CommonQueryWithEntityContext as ji, onSubmissionCreated as jj, onSubmissionDeleted as jk, onSubmissionRemovedSubmissionFromTrash as jl, onSubmissionStatusUpdated as jm, onSubmissionContactMapped as jn, onSubmissionContactMappingSkipped as jo, onSubmissionUpdated as jp, upsertContactFromSubmission as jq, createSubmission as jr, getSubmission as js, updateSubmission as jt, confirmSubmission as ju, deleteSubmission as jv, bulkDeleteSubmission as jw, restoreSubmissionFromTrashBin as jx, removeSubmissionFromTrashBin as jy, bulkRemoveSubmissionFromTrashBin as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, 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, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { bO as AccountInfo, hx as AccountInfoMetadata, bK as ActionEvent, fv as Address, fw as AddressComponentTypeOptionsOneOf, fd as AddressInfo, bc as AddressInfoTag, iW as AddressInfoTagWithLiterals, eS as AddressLine2, aM as Alignment, iu as AlignmentWithLiterals, f$ as AllowedValuesOptions, dB as AnchorData, g4 as AndCondition, dI as AppEmbedData, dJ as AppEmbedDataAppDataOneOf, aB as AppType, ii as AppTypeWithLiterals, gt as ApplicationError, f2 as Appointment, f3 as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iC as ArrayComponentTypeWithLiterals, c9 as ArrayErrorMessages, eB as ArrayItems, eC as ArrayItemsItemTypeOptionsOneOf, ex as ArrayType, c7 as ArrayTypeArrayItems, c8 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, ib as AspectRatioWithLiterals, e1 as AudioData, dr as Background, ds as BackgroundBackgroundOneOf, e7 as BackgroundImage, ar as BackgroundType, i7 as BackgroundTypeWithLiterals, hv as BaseEventMetadata, e4 as BlockquoteData, dK as BookingData, aR as BooleanComponentType, iz as BooleanComponentTypeWithLiterals, c1 as BooleanErrorMessages, ev as BooleanType, cG as Border, d_ as BorderColors, d$ as BorderWidths, eY as BreakPoint, gu as BulkActionMetadata, gp as BulkCreateSubmissionBySubmitterData, go as BulkCreateSubmissionBySubmitterRequest, gq as BulkCreateSubmissionBySubmitterResponse, gE as BulkDeleteSubmissionRequest, gF as BulkDeleteSubmissionResult, h7 as BulkMarkSubmissionsAsSeenRequest, gJ as BulkRemoveSubmissionFromTrashBinRequest, gK as BulkRemoveSubmissionFromTrashBinResult, gr as BulkSubmissionResult, hC as BulkUpdateFormSubmissionTagsByFilterOptions, hn as BulkUpdateFormSubmissionTagsByFilterRequest, ho as BulkUpdateFormSubmissionTagsByFilterResponse, hB as BulkUpdateFormSubmissionTagsOptions, hk as BulkUpdateFormSubmissionTagsRequest, hl as BulkUpdateFormSubmissionTagsResponse, hm as BulkUpdateFormSubmissionTagsResult, e3 as BulletedListData, cF as ButtonData, a8 as ButtonDataType, hQ as ButtonDataTypeWithLiterals, dM as ButtonStyles, e5 as CaptionData, dP as CardStyles, az as CardStylesAlignment, ig as CardStylesAlignmentWithLiterals, ay as CardStylesType, ie as CardStylesTypeWithLiterals, dZ as CellStyle, bk as ChangeableProperty, j2 as ChangeablePropertyWithLiterals, ew as Checkbox, eD as CheckboxGroup, gc as Checkout, cR as CodeBlockData, dV as CollapsibleListData, dC as ColorData, cH as Colors, jc as CommonQueryWithEntityContext, jb as CommonSearchWithEntityContext, aY as ComponentType, iG as ComponentTypeWithLiterals, eF as ComponentsTags, g6 as Condition, g2 as ConditionNode, g3 as ConditionNodeNodeOneOf, gB as ConfirmSubmissionRequest, b5 as ConfirmationLevel, iP as ConfirmationLevelWithLiterals, b6 as ContactField, iQ as ContactFieldWithLiterals, h4 as CountDeletedSubmissionsRequest, h1 as CountSubmissionsByFilterRequest, h3 as CountSubmissionsRequest, bP as CreateCheckoutFromSubmissionRequest, bQ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gb as CreateCheckoutFromSubmissionResponse, gm as CreateSubmissionBySubmitterRequest, gn as CreateSubmissionBySubmitterResponse, gi as CreateSubmissionRequest, gj as CreateSubmissionResponse, ah as Crop, hZ as CropWithLiterals, gM as CursorPaging, gN as CursorPagingMetadata, gR as CursorQueryPagingMethodOneOf, gU as CursorSearch, gV as CursorSearchPagingMethodOneOf, gO as Cursors, fe as CustomFieldInfo, eh as CustomOption, cp as DataExtensionsDetails, em as DateInput, eo as DatePicker, cx as DateTimeConstraints, ek as DateTimeInput, dz as Decoration, dA as DecorationDataOneOf, as as DecorationType, i8 as DecorationTypeWithLiterals, eT as DefaultCountryConfig, eU as DefaultCountryConfigOptionsOneOf, gC as DeleteSubmissionRequest, gD as DeleteSubmissionResponse, dx as Design, aK as DesignTarget, is as DesignTargetWithLiterals, dX as Dimensions, aD as Direction, ik as DirectionWithLiterals, fz as DisplayField, fA as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, iR as DisplayFieldTypeWithLiterals, cT as DividerData, ad as DividerDataAlignment, hV as DividerDataAlignmentWithLiterals, hb as DocumentReady, ea as DocumentStyle, bE as DomainEvent, bF as DomainEventBodyOneOf, eN as DonationInput, eO as DonationInputOption, hc as DownloadSubmissionRequest, ei as Dropdown, ej as DropdownOption, cf as DynamicPriceOptions, fb as EmailInfo, b2 as EmailInfoTag, iM as EmailInfoTagWithLiterals, dT as EmbedData, gf as Empty, bG as EntityCreatedEvent, bJ as EntityDeletedEvent, bI as EntityUpdatedEvent, bo as ErrorType, j6 as ErrorTypeWithLiterals, dL as EventData, hw as EventMetadata, bv as ExtendedFields, cr as Field, cs as FieldFieldTypeOptionsOneOf, fX as FieldGroup, g0 as FieldOverride, g1 as FieldOverridePropertyTypeOptionsOneOf, cj as FieldOverrides, a2 as FieldType, hK as FieldTypeWithLiterals, hq as FieldViolation, hr as FieldViolationErrorDataOneOf, ck as FieldsOverrides, eV as FieldsSettings, cU as FileData, cV as FileSource, cW as FileSourceDataOneOf, eI as FileType, eJ as FileUpload, aP as FirstDayOfWeek, ix as FirstDayOfWeekWithLiterals, eQ as FixedPayment, ce as FixedPriceOptions, dH as FontFamilyData, dF as FontSizeData, at as FontType, i9 as FontTypeWithLiterals, bR as Form, h5 as FormDeletedSubmissionsCount, bS as FormField, c2 as FormFieldArrayType, c0 as FormFieldBooleanType, f9 as FormFieldContactInfo, fa as FormFieldContactInfoAdditionalInfoOneOf, fN as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, iY as FormFieldContactInfoContactFieldWithLiterals, fO as FormFieldContactInfoCustomFieldInfo, fL as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, iU as FormFieldContactInfoEmailInfoTagWithLiterals, fM as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, iV as FormFieldContactInfoPhoneInfoTagWithLiterals, fP as FormFieldContactInfoSubscriptionInfo, bZ as FormFieldNumberType, c3 as FormFieldObjectType, bT as FormFieldStringType, bU as FormFieldStringTypeFormatOptionsOneOf, eX as FormLayout, fF as FormOverride, fG as FormProperties, fE as FormRule, hA as FormSubmissionQuerySpec, hy as FormSubmissionSearchSpec, bz as FormSubmissionStatusUpdatedEvent, h2 as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, hL as FormatEnumFormatWithLiterals, iK as FormatWithLiterals, hi as FormattedFormSubmission, hf as FormattedSubmission, d7 as GIF, d6 as GIFData, aj as GIFType, h$ as GIFTypeWithLiterals, cY as GalleryData, d2 as GalleryOptions, d3 as GalleryOptionsLayout, gP as GetDeletedSubmissionRequest, he as GetFormattedSubmissionRequest, h6 as GetMediaUploadURLRequest, gx as GetSubmissionByCheckoutIdRequest, gy as GetSubmissionByCheckoutIdResponse, h8 as GetSubmissionDownloadUrlRequest, gv as GetSubmissionRequest, gw as GetSubmissionResponse, dq as Gradient, e$ as Group, d9 as HTMLData, da as HTMLDataDataOneOf, hd as HeadersEntry, d8 as HeadingData, cM as Height, f_ as HiddenOptions, bM as IdentificationData, bN as IdentificationDataIdOneOf, bn as IdentityType, j5 as IdentityTypeWithLiterals, c_ as Image, db as ImageData, dd as ImageDataStyles, aN as ImageFit, iv as ImageFitWithLiterals, aL as ImagePosition, it as ImagePositionWithLiterals, dN as ImageStyles, f6 as InPersonOptions, aC as InitialExpandedItems, ij as InitialExpandedItemsWithLiterals, ct as InputField, cu as InputFieldInputTypeOptionsOneOf, b1 as InputType, iL as InputTypeWithLiterals, b$ as IntegerType, gd as IsFormSubmittableRequest, ge as IsFormSubmittableResponse, d0 as Item, d1 as ItemDataOneOf, eZ as ItemLayout, e_ as ItemLayoutItemOneOf, gs as ItemMetadata, d4 as ItemStyle, aS as ItemType, iA as ItemTypeWithLiterals, b9 as Kind, iT as KindWithLiterals, aA as Layout, e8 as LayoutCellData, e6 as LayoutData, aH as LayoutDataImagePosition, ip as LayoutDataImagePositionWithLiterals, af as LayoutType, hX as LayoutTypeWithLiterals, ih as LayoutWithLiterals, fR as LimitationRule, ab as LineStyle, hT as LineStyleWithLiterals, cO as Link, dD as LinkData, cP as LinkDataOneOf, de as LinkPreviewData, df as LinkPreviewDataStyles, a9 as LinkTarget, hR as LinkTargetWithLiterals, gL as ListDeletedSubmissionsRequest, hg as ListFormattedSubmissionsRequest, hh as ListFormattedSubmissionsResponse, e0 as ListValue, f4 as Location, f5 as LocationLocationInfoOneOf, dg as MapData, dh as MapSettings, am as MapType, i2 as MapTypeWithLiterals, f0 as Margin, bC as MarketingSubscriptionDetails, cZ as Media, ec as MediaItem, ed as MediaItemMediaOneOf, ee as MediaSettings, dE as MentionData, bL as MessageEnvelope, e9 as Metadata, bq as Mode, j8 as ModeWithLiterals, eR as MultilineAddress, ci as MultilineAddressValidation, fQ as NestedForm, cm as NestedFormFieldOverrides, cq as NestedFormOverrides, cC as Node, cD as NodeDataOneOf, cE as NodeStyle, a5 as NodeType, hN as NodeTypeWithLiterals, aF as NullValue, im as NullValueWithLiterals, aQ as NumberComponentType, iy as NumberComponentTypeWithLiterals, b_ as NumberErrorMessages, et as NumberInput, aO as NumberOfColumns, iw as NumberOfColumnsWithLiterals, es as NumberType, fx as ObjectArray, a_ as ObjectArrayComponentType, fy as ObjectArrayComponentTypeOptionsOneOf, iI as ObjectArrayComponentTypeWithLiterals, cl as ObjectArrayType, c6 as ObjectErrorMessages, ey as ObjectType, c4 as ObjectTypePropertiesType, c5 as ObjectTypePropertiesTypePropertiesTypeOneOf, dU as Oembed, bm as Operator, j4 as OperatorWithLiterals, Y as OptInLevel, hE as OptInLevelWithLiterals, eE as Option, du as OptionDesign, dp as OptionLayout, g5 as OrCondition, bw as OrderDetails, e2 as OrderedListData, ag as Orientation, hY as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, j3 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iS as OverrideEntityTypeWithLiterals, cX as PDFSettings, fC as PageNavigationOptions, di as ParagraphData, er as Password, fr as Payment, aX as PaymentComponentType, fs as PaymentComponentTypeOptionsOneOf, iF as PaymentComponentTypeWithLiterals, eP as PaymentInput, cc as PaymentType, dk as Permissions, cy as PhoneConstraints, fc as PhoneInfo, b3 as PhoneInfoTag, iN as PhoneInfoTagWithLiterals, el as PhoneInput, f8 as PhoneOptions, ax as Placement, id as PlacementWithLiterals, dS as PlaybackOptions, cI as PluginContainerData, a7 as PluginContainerDataAlignment, hP as PluginContainerDataAlignmentWithLiterals, cJ as PluginContainerDataWidth, cK as PluginContainerDataWidthDataOneOf, dv as Poll, dj as PollData, dw as PollDataLayout, dt as PollDesign, dn as PollLayout, aq as PollLayoutDirection, i6 as PollLayoutDirectionWithLiterals, ap as PollLayoutType, i5 as PollLayoutTypeWithLiterals, dl as PollOption, au as Position, ia as PositionWithLiterals, fH as PostSubmissionTriggers, ca as PredefinedValidation, cb as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hJ as PriceTypeWithLiterals, dQ as PricingData, cg as Product, eL as ProductCheckboxGroup, eM as ProductCheckboxGroupOption, ch as ProductPriceOptionsOneOf, a0 as ProductType, hI as ProductTypeWithLiterals, ez as PropertiesType, aT as PropertiesTypeEnum, iB as PropertiesTypeEnumWithLiterals, eA as PropertiesTypePropertiesTypeOptionsOneOf, bx as PublicTags, cd as QuantityLimit, gQ as QuerySubmissionRequest, g$ as QuerySubmissionsByNamespaceForExportRequest, h0 as QuerySubmissionsByNamespaceForExportResponse, gZ as QuerySubmissionsByNamespaceRequest, g_ as QuerySubmissionsByNamespaceResponse, ef as RadioGroup, eg as RadioGroupOption, eu as RatingInput, fW as RedirectOptions, cQ as Rel, gH as RemoveSubmissionFromTrashBinRequest, gI as RemoveSubmissionFromTrashBinResponse, bA as RemovedSubmissionFromTrash, eW as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, i$ as RequiredIndicatorPlacementWithLiterals, fS as RequiredIndicatorProperties, i_ as RequiredIndicatorWithLiterals, fZ as RequiredOptions, aw as Resizing, ic as ResizingWithLiterals, aJ as ResponsivenessBehaviour, ir as ResponsivenessBehaviourWithLiterals, bH as RestoreInfo, gG as RestoreSubmissionFromTrashBinRequest, dO as RibbonStyles, cB as RichContent, fB as RichContentOptions, fY as Rule, g7 as RuleFormOverride, g8 as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, io as ScalingWithLiterals, ft as Scheduling, a$ as SchedulingComponentType, fu as SchedulingComponentTypeOptionsOneOf, iJ as SchedulingComponentTypeWithLiterals, gW as SearchDetails, gX as SearchSubmissionsByNamespaceForExportRequest, gY as SearchSubmissionsByNamespaceForExportResponse, gT as SearchSubmissionsByNamespaceRequest, f1 as Section, eq as ServiceOption, eH as ServicesCheckboxGroup, ep as ServicesDropdown, dm as Settings, eK as Signature, bp as SortOrder, j7 as SortOrderWithLiterals, gS as Sorting, ak as Source, i0 as SourceWithLiterals, bf as SpamFilterProtectionLevel, iZ as SpamFilterProtectionLevelWithLiterals, cL as Spoiler, dG as SpoilerData, br as Status, j9 as StatusWithLiterals, fD as Step, a4 as StringComponentType, hM as StringComponentTypeWithLiterals, bV as StringErrorMessages, cv as StringType, bW as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hG as StringTypeFormatEnumFormatWithLiterals, cw as StringTypeFormatOptionsOneOf, bX as StringTypePhoneConstraints, bY as StringTypeValidationMessages, cN as Styles, dc as StylesBorder, al as StylesPosition, i1 as StylesPositionWithLiterals, bB as SubmissionContactMapped, bD as SubmissionContactMappingSkipped, h9 as SubmissionDocument, ha as SubmissionDocumentDocumentOneOf, bs as SubmissionErrorType, ja as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hD as SubmissionStatusWithLiterals, ht as SubmissionValidationError, hu as SubmissionValidationErrorErrorMessageOneOf, hs as SubmissionValidationErrors, gk as SubmissionValidationErrorsDetails, hz as SubmissionsQueryResult, gh as SubmitContactResponse, fT as SubmitSettings, fU as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, j1 as SubmitSuccessActionWithLiterals, bt as Submitter, bu as SubmitterSubmitterOneOf, ff as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, iX as SubscriptionInfoOptInLevelWithLiterals, dY as TableCellData, dW as TableData, b4 as Tag, by as TagList, iO as TagWithLiterals, g9 as Tags, eG as TagsOption, ga as TagsTagList, bi as Target, j0 as TargetWithLiterals, aa as TextAlignment, hS as TextAlignmentWithLiterals, dy as TextData, cA as TextInput, eb as TextNodeStyle, cS as TextStyle, fV as ThankYouMessageOptions, d5 as Thumbnails, ai as ThumbnailsAlignment, h_ as ThumbnailsAlignmentWithLiterals, en as TimeInput, aZ as Type, iH as TypeWithLiterals, hj as UpdateExtendedFieldsRequest, gz as UpdateSubmissionRequest, gA as UpdateSubmissionResponse, aW as UploadFileFormat, iE as UploadFileFormatWithLiterals, fI as UpsertContact, gg as UpsertContactFromSubmissionRequest, fJ as V4FormFieldContactInfo, fK as V4FormFieldContactInfoAdditionalInfoOneOf, hp as ValidateFormSubmissionRequest, cn as Validation, gl as ValidationError, $ as ValidationFormat, hH as ValidationFormatWithLiterals, cz as ValidationMessages, co as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, iq as VerticalAlignmentAlignmentWithLiterals, il as VerticalAlignmentWithLiterals, c$ as Video, f7 as VideoConferenceOptions, dR as VideoData, ae as ViewMode, hW as ViewModeWithLiterals, an as ViewRole, i3 as ViewRoleWithLiterals, ao as VoteRole, i4 as VoteRoleWithLiterals, Z as WebhookIdentityType, hF as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, hO as WidthTypeWithLiterals, hU as WidthWithLiterals, fp as WixFile, aV as WixFileComponentType, fq as WixFileComponentTypeOptionsOneOf, iD as WixFileComponentTypeWithLiterals, fm as _Array, fn as _ArrayComponentTypeOptionsOneOf, fk as _Boolean, fl as _BooleanComponentTypeOptionsOneOf, fi as _Number, fj as _NumberComponentTypeOptionsOneOf, fo as _Object, fg as _String, fh as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-DPBDZ96U.mjs';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, 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, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-pH6hm_fT.mjs';
|
|
3
|
+
export { bO as AccountInfo, hD as AccountInfoMetadata, bK as ActionEvent, fB as Address, fC as AddressComponentTypeOptionsOneOf, fj as AddressInfo, bc as AddressInfoTag, j0 as AddressInfoTagWithLiterals, eY as AddressLine2, aM as Alignment, iA as AlignmentWithLiterals, g5 as AllowedValuesOptions, dD as AnchorData, ga as AndCondition, dK as AppEmbedData, dL as AppEmbedDataAppDataOneOf, aB as AppType, ip as AppTypeWithLiterals, gz as ApplicationError, f8 as Appointment, f9 as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iI as ArrayComponentTypeWithLiterals, c9 as ArrayErrorMessages, eG as ArrayItems, eH as ArrayItemsItemTypeOptionsOneOf, eC as ArrayType, c7 as ArrayTypeArrayItems, c8 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, ii as AspectRatioWithLiterals, e3 as AudioData, dt as Background, du as BackgroundBackgroundOneOf, e9 as BackgroundImage, ar as BackgroundType, id as BackgroundTypeWithLiterals, hB as BaseEventMetadata, e6 as BlockquoteData, dM as BookingData, aR as BooleanComponentType, iF as BooleanComponentTypeWithLiterals, c1 as BooleanErrorMessages, ez as BooleanType, cI as Border, e0 as BorderColors, e1 as BorderWidths, f2 as BreakPoint, gA as BulkActionMetadata, gv as BulkCreateSubmissionBySubmitterData, gu as BulkCreateSubmissionBySubmitterRequest, gw as BulkCreateSubmissionBySubmitterResponse, gK as BulkDeleteSubmissionRequest, gL as BulkDeleteSubmissionResult, hd as BulkMarkSubmissionsAsSeenRequest, gP as BulkRemoveSubmissionFromTrashBinRequest, gQ as BulkRemoveSubmissionFromTrashBinResult, gx as BulkSubmissionResult, hI as BulkUpdateFormSubmissionTagsByFilterOptions, ht as BulkUpdateFormSubmissionTagsByFilterRequest, hu as BulkUpdateFormSubmissionTagsByFilterResponse, hH as BulkUpdateFormSubmissionTagsOptions, hq as BulkUpdateFormSubmissionTagsRequest, hr as BulkUpdateFormSubmissionTagsResponse, hs as BulkUpdateFormSubmissionTagsResult, e5 as BulletedListData, cH as ButtonData, a8 as ButtonDataType, hW as ButtonDataTypeWithLiterals, dO as ButtonStyles, e7 as CaptionData, dR as CardStyles, az as CardStylesAlignment, im as CardStylesAlignmentWithLiterals, ay as CardStylesType, il as CardStylesTypeWithLiterals, d$ as CellStyle, bk as ChangeableProperty, j8 as ChangeablePropertyWithLiterals, eA as Checkbox, eJ as CheckboxGroup, gi as Checkout, cT as CodeBlockData, dX as CollapsibleListData, dE as ColorData, cJ as Colors, ji as CommonQueryWithEntityContext, jh as CommonSearchWithEntityContext, aY as ComponentType, iM as ComponentTypeWithLiterals, eL as ComponentsTags, gc as Condition, g8 as ConditionNode, g9 as ConditionNodeNodeOneOf, gH as ConfirmSubmissionRequest, b5 as ConfirmationLevel, iV as ConfirmationLevelWithLiterals, b6 as ContactField, iW as ContactFieldWithLiterals, eB as CorrectAnswersList, ha as CountDeletedSubmissionsRequest, h7 as CountSubmissionsByFilterRequest, h9 as CountSubmissionsRequest, bP as CreateCheckoutFromSubmissionRequest, bQ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gh as CreateCheckoutFromSubmissionResponse, gs as CreateSubmissionBySubmitterRequest, gt as CreateSubmissionBySubmitterResponse, go as CreateSubmissionRequest, gp as CreateSubmissionResponse, ah as Crop, i3 as CropWithLiterals, gS as CursorPaging, gT as CursorPagingMetadata, gX as CursorQueryPagingMethodOneOf, g_ as CursorSearch, g$ as CursorSearchPagingMethodOneOf, gU as Cursors, fk as CustomFieldInfo, ej as CustomOption, cp as DataExtensionsDetails, eo as DateInput, eq as DatePicker, cy as DateTimeConstraints, em as DateTimeInput, dB as Decoration, dC as DecorationDataOneOf, as as DecorationType, ie as DecorationTypeWithLiterals, eZ as DefaultCountryConfig, e_ as DefaultCountryConfigOptionsOneOf, gI as DeleteSubmissionRequest, gJ as DeleteSubmissionResponse, dz as Design, aK as DesignTarget, iy as DesignTargetWithLiterals, dZ as Dimensions, aD as Direction, ir as DirectionWithLiterals, fF as DisplayField, fG as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, iX as DisplayFieldTypeWithLiterals, cV as DividerData, ad as DividerDataAlignment, h$ as DividerDataAlignmentWithLiterals, hh as DocumentReady, ec as DocumentStyle, bE as DomainEvent, bF as DomainEventBodyOneOf, eT as DonationInput, eU as DonationInputOption, hi as DownloadSubmissionRequest, ek as Dropdown, el as DropdownOption, cf as DynamicPriceOptions, fh as EmailInfo, b2 as EmailInfoTag, iS as EmailInfoTagWithLiterals, dV as EmbedData, gl as Empty, bG as EntityCreatedEvent, bJ as EntityDeletedEvent, bI as EntityUpdatedEvent, bo as ErrorType, jc as ErrorTypeWithLiterals, dN as EventData, hC as EventMetadata, bv as ExtendedFields, cr as Field, cs as FieldFieldTypeOptionsOneOf, g1 as FieldGroup, g6 as FieldOverride, g7 as FieldOverridePropertyTypeOptionsOneOf, cj as FieldOverrides, a2 as FieldType, hQ as FieldTypeWithLiterals, hw as FieldViolation, hx as FieldViolationErrorDataOneOf, ck as FieldsOverrides, e$ as FieldsSettings, cW as FileData, cX as FileSource, cY as FileSourceDataOneOf, eO as FileType, eP as FileUpload, aP as FirstDayOfWeek, iD as FirstDayOfWeekWithLiterals, eW as FixedPayment, ce as FixedPriceOptions, dJ as FontFamilyData, dH as FontSizeData, at as FontType, ig as FontTypeWithLiterals, bR as Form, hb as FormDeletedSubmissionsCount, bS as FormField, c2 as FormFieldArrayType, c0 as FormFieldBooleanType, ff as FormFieldContactInfo, fg as FormFieldContactInfoAdditionalInfoOneOf, fT as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, j2 as FormFieldContactInfoContactFieldWithLiterals, fU as FormFieldContactInfoCustomFieldInfo, fR as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, i_ as FormFieldContactInfoEmailInfoTagWithLiterals, fS as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, i$ as FormFieldContactInfoPhoneInfoTagWithLiterals, fV as FormFieldContactInfoSubscriptionInfo, bZ as FormFieldNumberType, c3 as FormFieldObjectType, bT as FormFieldStringType, bU as FormFieldStringTypeFormatOptionsOneOf, f1 as FormLayout, fL as FormOverride, fM as FormProperties, fK as FormRule, hG as FormSubmissionQuerySpec, hE as FormSubmissionSearchSpec, bz as FormSubmissionStatusUpdatedEvent, h8 as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, hR as FormatEnumFormatWithLiterals, iQ as FormatWithLiterals, ho as FormattedFormSubmission, hl as FormattedSubmission, d9 as GIF, d8 as GIFData, aj as GIFType, i5 as GIFTypeWithLiterals, c_ as GalleryData, d4 as GalleryOptions, d5 as GalleryOptionsLayout, gV as GetDeletedSubmissionRequest, hk as GetFormattedSubmissionRequest, hc as GetMediaUploadURLRequest, gD as GetSubmissionByCheckoutIdRequest, gE as GetSubmissionByCheckoutIdResponse, he as GetSubmissionDownloadUrlRequest, gB as GetSubmissionRequest, gC as GetSubmissionResponse, ds as Gradient, f5 as Group, db as HTMLData, dc as HTMLDataDataOneOf, hj as HeadersEntry, da as HeadingData, cO as Height, g4 as HiddenOptions, bM as IdentificationData, bN as IdentificationDataIdOneOf, bn as IdentityType, jb as IdentityTypeWithLiterals, d0 as Image, dd as ImageData, df as ImageDataStyles, aN as ImageFit, iB as ImageFitWithLiterals, aL as ImagePosition, iz as ImagePositionWithLiterals, dP as ImageStyles, fc as InPersonOptions, aC as InitialExpandedItems, iq as InitialExpandedItemsWithLiterals, ct as InputField, cu as InputFieldInputTypeOptionsOneOf, b1 as InputType, iR as InputTypeWithLiterals, b$ as IntegerType, gj as IsFormSubmittableRequest, gk as IsFormSubmittableResponse, d2 as Item, d3 as ItemDataOneOf, f3 as ItemLayout, f4 as ItemLayoutItemOneOf, gy as ItemMetadata, d6 as ItemStyle, aS as ItemType, iG as ItemTypeWithLiterals, b9 as Kind, iZ as KindWithLiterals, aA as Layout, ea as LayoutCellData, e8 as LayoutData, aH as LayoutDataImagePosition, iv as LayoutDataImagePositionWithLiterals, af as LayoutType, i1 as LayoutTypeWithLiterals, io as LayoutWithLiterals, fX as LimitationRule, ab as LineStyle, hZ as LineStyleWithLiterals, cQ as Link, dF as LinkData, cR as LinkDataOneOf, dg as LinkPreviewData, dh as LinkPreviewDataStyles, a9 as LinkTarget, hX as LinkTargetWithLiterals, gR as ListDeletedSubmissionsRequest, hm as ListFormattedSubmissionsRequest, hn as ListFormattedSubmissionsResponse, e2 as ListValue, fa as Location, fb as LocationLocationInfoOneOf, di as MapData, dj as MapSettings, am as MapType, i8 as MapTypeWithLiterals, f6 as Margin, bC as MarketingSubscriptionDetails, c$ as Media, ee as MediaItem, ef as MediaItemMediaOneOf, eg as MediaSettings, dG as MentionData, bL as MessageEnvelope, eb as Metadata, bq as Mode, je as ModeWithLiterals, eX as MultilineAddress, ci as MultilineAddressValidation, fW as NestedForm, cm as NestedFormFieldOverrides, cq as NestedFormOverrides, cE as Node, cF as NodeDataOneOf, cG as NodeStyle, a5 as NodeType, hT as NodeTypeWithLiterals, aF as NullValue, it as NullValueWithLiterals, aQ as NumberComponentType, iE as NumberComponentTypeWithLiterals, eu as NumberCorrectAnswersList, b_ as NumberErrorMessages, ex as NumberInput, aO as NumberOfColumns, iC as NumberOfColumnsWithLiterals, ew as NumberQuizFieldSettings, ev as NumberType, fD as ObjectArray, a_ as ObjectArrayComponentType, fE as ObjectArrayComponentTypeOptionsOneOf, iO as ObjectArrayComponentTypeWithLiterals, cl as ObjectArrayType, c6 as ObjectErrorMessages, eD as ObjectType, c4 as ObjectTypePropertiesType, c5 as ObjectTypePropertiesTypePropertiesTypeOneOf, dW as Oembed, bm as Operator, ja as OperatorWithLiterals, Y as OptInLevel, hK as OptInLevelWithLiterals, eK as Option, dw as OptionDesign, dr as OptionLayout, gb as OrCondition, bw as OrderDetails, e4 as OrderedListData, ag as Orientation, i2 as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, j9 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iY as OverrideEntityTypeWithLiterals, cZ as PDFSettings, fI as PageNavigationOptions, dk as ParagraphData, et as Password, fx as Payment, aX as PaymentComponentType, fy as PaymentComponentTypeOptionsOneOf, iL as PaymentComponentTypeWithLiterals, eV as PaymentInput, cc as PaymentType, dm as Permissions, cz as PhoneConstraints, fi as PhoneInfo, b3 as PhoneInfoTag, iT as PhoneInfoTagWithLiterals, en as PhoneInput, fe as PhoneOptions, ax as Placement, ik as PlacementWithLiterals, dU as PlaybackOptions, cK as PluginContainerData, a7 as PluginContainerDataAlignment, hV as PluginContainerDataAlignmentWithLiterals, cL as PluginContainerDataWidth, cM as PluginContainerDataWidthDataOneOf, dx as Poll, dl as PollData, dy as PollDataLayout, dv as PollDesign, dq as PollLayout, aq as PollLayoutDirection, ic as PollLayoutDirectionWithLiterals, ap as PollLayoutType, ib as PollLayoutTypeWithLiterals, dn as PollOption, au as Position, ih as PositionWithLiterals, fN as PostSubmissionTriggers, ca as PredefinedValidation, cb as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hP as PriceTypeWithLiterals, dS as PricingData, cg as Product, eR as ProductCheckboxGroup, eS as ProductCheckboxGroupOption, ch as ProductPriceOptionsOneOf, a0 as ProductType, hO as ProductTypeWithLiterals, eE as PropertiesType, aT as PropertiesTypeEnum, iH as PropertiesTypeEnumWithLiterals, eF as PropertiesTypePropertiesTypeOptionsOneOf, bx as PublicTags, cd as QuantityLimit, gW as QuerySubmissionRequest, h5 as QuerySubmissionsByNamespaceForExportRequest, h6 as QuerySubmissionsByNamespaceForExportResponse, h3 as QuerySubmissionsByNamespaceRequest, h4 as QuerySubmissionsByNamespaceResponse, eI as QuizFieldSettings, eh as RadioGroup, ei as RadioGroupOption, ey as RatingInput, g0 as RedirectOptions, cS as Rel, gN as RemoveSubmissionFromTrashBinRequest, gO as RemoveSubmissionFromTrashBinResponse, bA as RemovedSubmissionFromTrash, f0 as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, j5 as RequiredIndicatorPlacementWithLiterals, fY as RequiredIndicatorProperties, j4 as RequiredIndicatorWithLiterals, g3 as RequiredOptions, aw as Resizing, ij as ResizingWithLiterals, aJ as ResponsivenessBehaviour, ix as ResponsivenessBehaviourWithLiterals, bH as RestoreInfo, gM as RestoreSubmissionFromTrashBinRequest, dQ as RibbonStyles, cD as RichContent, fH as RichContentOptions, g2 as Rule, gd as RuleFormOverride, ge as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, iu as ScalingWithLiterals, fz as Scheduling, a$ as SchedulingComponentType, fA as SchedulingComponentTypeOptionsOneOf, iP as SchedulingComponentTypeWithLiterals, h0 as SearchDetails, h1 as SearchSubmissionsByNamespaceForExportRequest, h2 as SearchSubmissionsByNamespaceForExportResponse, gZ as SearchSubmissionsByNamespaceRequest, f7 as Section, es as ServiceOption, eN as ServicesCheckboxGroup, er as ServicesDropdown, dp as Settings, eQ as Signature, bp as SortOrder, jd as SortOrderWithLiterals, gY as Sorting, ak as Source, i6 as SourceWithLiterals, bf as SpamFilterProtectionLevel, j3 as SpamFilterProtectionLevelWithLiterals, cN as Spoiler, dI as SpoilerData, br as Status, jf as StatusWithLiterals, fJ as Step, a4 as StringComponentType, hS as StringComponentTypeWithLiterals, cv as StringCorrectAnswersList, bV as StringErrorMessages, cB as StringQuizFieldSettings, cw as StringType, bW as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hM as StringTypeFormatEnumFormatWithLiterals, cx as StringTypeFormatOptionsOneOf, bX as StringTypePhoneConstraints, bY as StringTypeValidationMessages, cP as Styles, de as StylesBorder, al as StylesPosition, i7 as StylesPositionWithLiterals, bB as SubmissionContactMapped, bD as SubmissionContactMappingSkipped, hf as SubmissionDocument, hg as SubmissionDocumentDocumentOneOf, bs as SubmissionErrorType, jg as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hJ as SubmissionStatusWithLiterals, hz as SubmissionValidationError, hA as SubmissionValidationErrorErrorMessageOneOf, hy as SubmissionValidationErrors, gq as SubmissionValidationErrorsDetails, hF as SubmissionsQueryResult, gn as SubmitContactResponse, fZ as SubmitSettings, f_ as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, j7 as SubmitSuccessActionWithLiterals, bt as Submitter, bu as SubmitterSubmitterOneOf, fl as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, j1 as SubscriptionInfoOptInLevelWithLiterals, d_ as TableCellData, dY as TableData, b4 as Tag, by as TagList, iU as TagWithLiterals, gf as Tags, eM as TagsOption, gg as TagsTagList, bi as Target, j6 as TargetWithLiterals, aa as TextAlignment, hY as TextAlignmentWithLiterals, dA as TextData, cC as TextInput, ed as TextNodeStyle, cU as TextStyle, f$ as ThankYouMessageOptions, d7 as Thumbnails, ai as ThumbnailsAlignment, i4 as ThumbnailsAlignmentWithLiterals, ep as TimeInput, aZ as Type, iN as TypeWithLiterals, hp as UpdateExtendedFieldsRequest, gF as UpdateSubmissionRequest, gG as UpdateSubmissionResponse, aW as UploadFileFormat, iK as UploadFileFormatWithLiterals, fO as UpsertContact, gm as UpsertContactFromSubmissionRequest, fP as V4FormFieldContactInfo, fQ as V4FormFieldContactInfoAdditionalInfoOneOf, hv as ValidateFormSubmissionRequest, cn as Validation, gr as ValidationError, $ as ValidationFormat, hN as ValidationFormatWithLiterals, cA as ValidationMessages, co as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, iw as VerticalAlignmentAlignmentWithLiterals, is as VerticalAlignmentWithLiterals, d1 as Video, fd as VideoConferenceOptions, dT as VideoData, ae as ViewMode, i0 as ViewModeWithLiterals, an as ViewRole, i9 as ViewRoleWithLiterals, ao as VoteRole, ia as VoteRoleWithLiterals, Z as WebhookIdentityType, hL as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, hU as WidthTypeWithLiterals, h_ as WidthWithLiterals, fv as WixFile, aV as WixFileComponentType, fw as WixFileComponentTypeOptionsOneOf, iJ as WixFileComponentTypeWithLiterals, fs as _Array, ft as _ArrayComponentTypeOptionsOneOf, fq as _Boolean, fr as _BooleanComponentTypeOptionsOneOf, fo as _Number, fp as _NumberComponentTypeOptionsOneOf, fu as _Object, fm as _String, fn as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-pH6hm_fT.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -113,6 +113,12 @@ function resolveWixFormsV4FormSubmissionServiceUrl(opts) {
|
|
|
113
113
|
srcPath: "/_api/form-submission-service",
|
|
114
114
|
destPath: ""
|
|
115
115
|
}
|
|
116
|
+
],
|
|
117
|
+
"apps.wixel.com": [
|
|
118
|
+
{
|
|
119
|
+
srcPath: "/_api/form-submission-service",
|
|
120
|
+
destPath: ""
|
|
121
|
+
}
|
|
116
122
|
]
|
|
117
123
|
};
|
|
118
124
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|