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