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