@wix/auto_sdk_forms_submissions 1.0.88 → 1.0.90

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 (29) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-DaVaHpKJ.d.ts → forms-v4-submission-submissions.universal-BVlQbylv.d.ts} +25 -9
  2. package/build/cjs/index.d.ts +2 -4
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -4
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +26 -10
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/es/{forms-v4-submission-submissions.universal-DaVaHpKJ.d.mts → forms-v4-submission-submissions.universal-BVlQbylv.d.mts} +25 -9
  9. package/build/es/index.d.mts +2 -4
  10. package/build/es/index.mjs.map +1 -1
  11. package/build/es/index.typings.d.mts +2 -4
  12. package/build/es/index.typings.mjs.map +1 -1
  13. package/build/es/meta.d.mts +26 -10
  14. package/build/es/meta.mjs.map +1 -1
  15. package/build/internal/cjs/{forms-v4-submission-submissions.universal-XJ-2STK-.d.ts → forms-v4-submission-submissions.universal-DYDfWYJ5.d.ts} +25 -9
  16. package/build/internal/cjs/index.d.ts +2 -4
  17. package/build/internal/cjs/index.js.map +1 -1
  18. package/build/internal/cjs/index.typings.d.ts +2 -4
  19. package/build/internal/cjs/index.typings.js.map +1 -1
  20. package/build/internal/cjs/meta.d.ts +26 -10
  21. package/build/internal/cjs/meta.js.map +1 -1
  22. package/build/internal/es/{forms-v4-submission-submissions.universal-XJ-2STK-.d.mts → forms-v4-submission-submissions.universal-DYDfWYJ5.d.mts} +25 -9
  23. package/build/internal/es/index.d.mts +2 -4
  24. package/build/internal/es/index.mjs.map +1 -1
  25. package/build/internal/es/index.typings.d.mts +2 -4
  26. package/build/internal/es/index.typings.mjs.map +1 -1
  27. package/build/internal/es/meta.d.mts +26 -10
  28. package/build/internal/es/meta.mjs.map +1 -1
  29. 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 CorrectAnswersList {
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 QuizFieldSettings {
3731
+ /** Points awarded for correctly answering this quiz question. */
3732
+ score?: number;
3733
+ /** Correct answers for this quiz question. */
3734
+ correctAnswersList?: CorrectAnswersList;
3735
+ }
3712
3736
  interface NumberInput {
3713
3737
  /**
3714
3738
  * Field label.
@@ -5761,14 +5785,6 @@ declare enum ErrorType {
5761
5785
  }
5762
5786
  /** @enumType */
5763
5787
  type ErrorTypeWithLiterals = ErrorType | 'UNKNOWN_ERROR' | 'TYPE_ERROR' | 'REQUIRED_VALUE_ERROR' | 'UNKNOWN_VALUE_ERROR' | 'MAX_LENGTH_ERROR' | 'MIN_LENGTH_ERROR' | 'PATTERN_ERROR' | 'FORMAT_ERROR' | 'MAX_VALUE_ERROR' | 'MIN_VALUE_ERROR' | 'MULTIPLE_OF_VALUE_ERROR' | 'MIN_ITEMS_ERROR' | 'MAX_ITEMS_ERROR' | 'NOT_ALLOWED_VALUE_ERROR' | 'FIELDS_COMPATIBILITY_ERROR' | 'DISABLED_FORM_ERROR' | 'FORMS_COUNT_RESTRICTIONS_ERROR' | 'FIELDS_COUNT_RESTRICTIONS_ERROR' | 'STEPS_COUNT_RESTRICTIONS_ERROR' | 'RULES_COUNT_RESTRICTIONS_ERROR' | 'FILE_UPLOAD_RESTRICTIONS_ERROR' | 'INVALID_PHONE_COUNTRY_CODE_ERROR' | 'INVALID_STAFF_ID_ERROR' | 'INVALID_LOCATION_ID_ERROR' | 'MISSING_SERVICE_OPTION_ERROR' | 'INVALID_SERVICE_OPTIONS_ERROR' | 'NO_AVAILABLE_SERVICE_OPTIONS_ERROR' | 'EXACT_CHARACTER_LENGTH_ERROR' | 'CHARACTER_LENGTH_RANGE_ERROR' | 'VALUE_RANGE_ERROR' | 'EXACT_ITEMS_NUMBER_ERROR' | 'DECIMAL_POINT_ERROR' | 'INCOMPLETE_DATE_ERROR' | 'INVALID_VALUE_FOR_PATTERN_ERROR';
5764
- interface CreateSubmissionForMigrationRequest {
5765
- /** Submission to create. */
5766
- submission?: FormSubmission;
5767
- }
5768
- interface CreateSubmissionForMigrationResponse {
5769
- /** The created submission. */
5770
- submission?: FormSubmission;
5771
- }
5772
5788
  interface CreateSubmissionBySubmitterRequest {
5773
5789
  /** Submission to create. */
5774
5790
  submission?: FormSubmission;
@@ -7709,4 +7725,4 @@ interface ValidateFormSubmissionOptions {
7709
7725
  fieldsToValidate?: string[];
7710
7726
  }
7711
7727
 
7712
- 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 CursorSearchPagingMethodOneOf 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 BulkActionMetadata as gA, type GetSubmissionRequest as gB, type GetSubmissionResponse as gC, type GetSubmissionByCheckoutIdRequest as gD, type GetSubmissionByCheckoutIdResponse as gE, type UpdateSubmissionRequest as gF, type UpdateSubmissionResponse as gG, type ConfirmSubmissionRequest as gH, type DeleteSubmissionRequest as gI, type DeleteSubmissionResponse as gJ, type BulkDeleteSubmissionRequest as gK, type BulkDeleteSubmissionResult as gL, type RestoreSubmissionFromTrashBinRequest as gM, type RemoveSubmissionFromTrashBinRequest as gN, type RemoveSubmissionFromTrashBinResponse as gO, type BulkRemoveSubmissionFromTrashBinRequest as gP, type BulkRemoveSubmissionFromTrashBinResult as gQ, type ListDeletedSubmissionsRequest as gR, type CursorPaging as gS, type CursorPagingMetadata as gT, type Cursors as gU, type GetDeletedSubmissionRequest as gV, type QuerySubmissionRequest as gW, type CursorQueryPagingMethodOneOf as gX, type Sorting as gY, type SearchSubmissionsByNamespaceRequest as gZ, type CursorSearch as g_, type 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 CreateSubmissionForMigrationRequest as gq, type CreateSubmissionForMigrationResponse as gr, type CreateSubmissionBySubmitterRequest as gs, type CreateSubmissionBySubmitterResponse as gt, type BulkCreateSubmissionBySubmitterRequest as gu, type BulkCreateSubmissionBySubmitterData as gv, type BulkCreateSubmissionBySubmitterResponse as gw, type BulkSubmissionResult as gx, type ItemMetadata as gy, type ApplicationError as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ThumbnailsAlignmentWithLiterals as h$, type SearchDetails as h0, type SearchSubmissionsByNamespaceForExportRequest as h1, type SearchSubmissionsByNamespaceForExportResponse as h2, type QuerySubmissionsByNamespaceRequest as h3, type QuerySubmissionsByNamespaceResponse as h4, type QuerySubmissionsByNamespaceForExportRequest as h5, type QuerySubmissionsByNamespaceForExportResponse as h6, type CountSubmissionsByFilterRequest as h7, type FormSubmissionsCount as h8, type CountSubmissionsRequest as h9, type EventMetadata as hA, type FormSubmissionSearchSpec as hB, type SubmissionsQueryResult as hC, type FormSubmissionQuerySpec as hD, type SubmissionStatusWithLiterals as hE, type OptInLevelWithLiterals as hF, type WebhookIdentityTypeWithLiterals as hG, type StringTypeFormatEnumFormatWithLiterals as hH, type ValidationFormatWithLiterals as hI, type ProductTypeWithLiterals as hJ, type PriceTypeWithLiterals as hK, type FieldTypeWithLiterals as hL, type FormatEnumFormatWithLiterals as hM, type StringComponentTypeWithLiterals as hN, type NodeTypeWithLiterals as hO, type WidthTypeWithLiterals as hP, type PluginContainerDataAlignmentWithLiterals as hQ, type ButtonDataTypeWithLiterals as hR, type LinkTargetWithLiterals as hS, type TextAlignmentWithLiterals as hT, type LineStyleWithLiterals as hU, type WidthWithLiterals as hV, type DividerDataAlignmentWithLiterals as hW, type ViewModeWithLiterals as hX, type LayoutTypeWithLiterals as hY, type OrientationWithLiterals as hZ, type CropWithLiterals as h_, type CountDeletedSubmissionsRequest as ha, type FormDeletedSubmissionsCount as hb, type GetMediaUploadURLRequest as hc, type BulkMarkSubmissionsAsSeenRequest as hd, type GetSubmissionDownloadUrlRequest as he, type SubmissionDocument as hf, type SubmissionDocumentDocumentOneOf as hg, type DocumentReady as hh, type DownloadSubmissionRequest as hi, type HeadersEntry as hj, type GetFormattedSubmissionRequest as hk, type FormattedSubmission as hl, type ListFormattedSubmissionsRequest as hm, type ListFormattedSubmissionsResponse as hn, type FormattedFormSubmission as ho, type UpdateExtendedFieldsRequest as hp, type BulkUpdateFormSubmissionTagsRequest as hq, type BulkUpdateFormSubmissionTagsResult as hr, type BulkUpdateFormSubmissionTagsByFilterRequest as hs, type ValidateFormSubmissionRequest as ht, type FieldViolation as hu, type FieldViolationErrorDataOneOf as hv, type SubmissionValidationErrors as hw, type SubmissionValidationError as hx, type SubmissionValidationErrorErrorMessageOneOf as hy, type BaseEventMetadata as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type RequiredIndicatorWithLiterals as i$, type GIFTypeWithLiterals as i0, type SourceWithLiterals as i1, type StylesPositionWithLiterals as i2, type MapTypeWithLiterals as i3, type ViewRoleWithLiterals as i4, type VoteRoleWithLiterals as i5, type PollLayoutTypeWithLiterals as i6, type PollLayoutDirectionWithLiterals as i7, type BackgroundTypeWithLiterals as i8, type DecorationTypeWithLiterals as i9, type BooleanComponentTypeWithLiterals as iA, type ItemTypeWithLiterals as iB, type PropertiesTypeEnumWithLiterals as iC, type ArrayComponentTypeWithLiterals as iD, type WixFileComponentTypeWithLiterals as iE, type UploadFileFormatWithLiterals as iF, type PaymentComponentTypeWithLiterals as iG, type ComponentTypeWithLiterals as iH, type TypeWithLiterals as iI, type ObjectArrayComponentTypeWithLiterals as iJ, type SchedulingComponentTypeWithLiterals as iK, type FormatWithLiterals as iL, type InputTypeWithLiterals as iM, type EmailInfoTagWithLiterals as iN, type PhoneInfoTagWithLiterals as iO, type TagWithLiterals as iP, type ConfirmationLevelWithLiterals as iQ, type ContactFieldWithLiterals as iR, type DisplayFieldTypeWithLiterals as iS, type OverrideEntityTypeWithLiterals as iT, type KindWithLiterals as iU, type FormFieldContactInfoEmailInfoTagWithLiterals as iV, type FormFieldContactInfoPhoneInfoTagWithLiterals as iW, type AddressInfoTagWithLiterals as iX, type SubscriptionInfoOptInLevelWithLiterals as iY, type FormFieldContactInfoContactFieldWithLiterals as iZ, type SpamFilterProtectionLevelWithLiterals as i_, type FontTypeWithLiterals as ia, type PositionWithLiterals as ib, type AspectRatioWithLiterals as ic, type ResizingWithLiterals as id, type PlacementWithLiterals as ie, type CardStylesTypeWithLiterals as ig, type CardStylesAlignmentWithLiterals as ih, type LayoutWithLiterals as ii, type AppTypeWithLiterals as ij, type InitialExpandedItemsWithLiterals as ik, type DirectionWithLiterals as il, type VerticalAlignmentWithLiterals as im, type NullValueWithLiterals as io, type ScalingWithLiterals as ip, type LayoutDataImagePositionWithLiterals as iq, type VerticalAlignmentAlignmentWithLiterals as ir, type ResponsivenessBehaviourWithLiterals as is, type DesignTargetWithLiterals as it, type ImagePositionWithLiterals as iu, type AlignmentWithLiterals as iv, type ImageFitWithLiterals as iw, type NumberOfColumnsWithLiterals as ix, type FirstDayOfWeekWithLiterals as iy, type NumberComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type RequiredIndicatorPlacementWithLiterals as j0, type TargetWithLiterals as j1, type SubmitSuccessActionWithLiterals as j2, type ChangeablePropertyWithLiterals as j3, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j4, type OperatorWithLiterals as j5, type IdentityTypeWithLiterals as j6, type ErrorTypeWithLiterals as j7, type SortOrderWithLiterals as j8, type ModeWithLiterals as j9, countSubmissions as jA, countDeletedSubmissions as jB, getMediaUploadUrl as jC, bulkMarkSubmissionsAsSeen as jD, getSubmissionDownloadUrl as jE, downloadSubmission as jF, getFormattedSubmission as jG, updateExtendedFields as jH, bulkUpdateFormSubmissionTags as jI, bulkUpdateFormSubmissionTagsByFilter as jJ, validateFormSubmission as jK, type StatusWithLiterals as ja, type SubmissionErrorTypeWithLiterals as jb, type CommonSearchWithEntityContext as jc, type CommonQueryWithEntityContext as jd, onSubmissionCreated as je, onSubmissionDeleted as jf, onSubmissionRemovedSubmissionFromTrash as jg, onSubmissionStatusUpdated as jh, onSubmissionContactMapped as ji, onSubmissionContactMappingSkipped as jj, onSubmissionUpdated as jk, upsertContactFromSubmission as jl, createSubmission as jm, getSubmission as jn, updateSubmission as jo, confirmSubmission as jp, deleteSubmission as jq, bulkDeleteSubmission as jr, restoreSubmissionFromTrashBin as js, removeSubmissionFromTrashBin as jt, bulkRemoveSubmissionFromTrashBin as ju, listDeletedSubmissions as jv, getDeletedSubmission as jw, querySubmission as jx, querySubmissionsByNamespace as jy, countSubmissionsByFilter 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 };
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 };
@@ -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-XJ-2STK-.js';
3
- export { bS as AccountInfo, bO as ActionEvent, fz as Address, fA as AddressComponentTypeOptionsOneOf, fh as AddressInfo, bg as AddressInfoTag, iX as AddressInfoTagWithLiterals, eW as AddressLine2, aQ as Alignment, iv as AlignmentWithLiterals, g3 as AllowedValuesOptions, dF as AnchorData, g8 as AndCondition, dM as AppEmbedData, dN as AppEmbedDataAppDataOneOf, aF as AppType, ij as AppTypeWithLiterals, gz as ApplicationError, f6 as Appointment, f7 as AppointmentFormatInfoOneOf, aY as ArrayComponentType, iD as ArrayComponentTypeWithLiterals, cd as ArrayErrorMessages, eF as ArrayItems, eG as ArrayItemsItemTypeOptionsOneOf, eB as ArrayType, cb as ArrayTypeArrayItems, cc as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, ic as AspectRatioWithLiterals, e5 as AudioData, dv as Background, dw as BackgroundBackgroundOneOf, eb as BackgroundImage, av as BackgroundType, i8 as BackgroundTypeWithLiterals, hz as BaseEventMetadata, e8 as BlockquoteData, dO as BookingData, aV as BooleanComponentType, iA as BooleanComponentTypeWithLiterals, c5 as BooleanErrorMessages, ez as BooleanType, cK as Border, e2 as BorderColors, e3 as BorderWidths, f0 as BreakPoint, gA as BulkActionMetadata, gv as BulkCreateSubmissionBySubmitterData, gu as BulkCreateSubmissionBySubmitterRequest, gw as BulkCreateSubmissionBySubmitterResponse, gK as BulkDeleteSubmissionRequest, gL as BulkDeleteSubmissionResult, hd as BulkMarkSubmissionsAsSeenRequest, gP as BulkRemoveSubmissionFromTrashBinRequest, gQ as BulkRemoveSubmissionFromTrashBinResult, gx as BulkSubmissionResult, hs as BulkUpdateFormSubmissionTagsByFilterRequest, hq as BulkUpdateFormSubmissionTagsRequest, hr as BulkUpdateFormSubmissionTagsResult, e7 as BulletedListData, cJ as ButtonData, ac as ButtonDataType, hR as ButtonDataTypeWithLiterals, dQ as ButtonStyles, e9 as CaptionData, dT as CardStyles, aD as CardStylesAlignment, ih as CardStylesAlignmentWithLiterals, aC as CardStylesType, ig as CardStylesTypeWithLiterals, e1 as CellStyle, bo as ChangeableProperty, j3 as ChangeablePropertyWithLiterals, eA as Checkbox, eH as CheckboxGroup, gg as Checkout, cV as CodeBlockData, dZ as CollapsibleListData, dG as ColorData, cL as Colors, jd as CommonQueryWithEntityContext, jc as CommonSearchWithEntityContext, b0 as ComponentType, iH as ComponentTypeWithLiterals, eJ as ComponentsTags, ga as Condition, g6 as ConditionNode, g7 as ConditionNodeNodeOneOf, gH as ConfirmSubmissionRequest, b9 as ConfirmationLevel, iQ as ConfirmationLevelWithLiterals, ba as ContactField, iR as ContactFieldWithLiterals, ha as CountDeletedSubmissionsRequest, h7 as CountSubmissionsByFilterRequest, h9 as CountSubmissionsRequest, bT as CreateCheckoutFromSubmissionRequest, bU as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gf as CreateCheckoutFromSubmissionResponse, gs as CreateSubmissionBySubmitterRequest, gt as CreateSubmissionBySubmitterResponse, gq as CreateSubmissionForMigrationRequest, gr as CreateSubmissionForMigrationResponse, gm as CreateSubmissionRequest, gn as CreateSubmissionResponse, al as Crop, h_ as CropWithLiterals, gS as CursorPaging, gT as CursorPagingMetadata, gX as CursorQueryPagingMethodOneOf, g_ as CursorSearch, g$ as CursorSearchPagingMethodOneOf, gU 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, i9 as DecorationTypeWithLiterals, eX as DefaultCountryConfig, eY as DefaultCountryConfigOptionsOneOf, gI as DeleteSubmissionRequest, gJ as DeleteSubmissionResponse, dB as Design, aO as DesignTarget, it as DesignTargetWithLiterals, d$ as Dimensions, aH as Direction, il as DirectionWithLiterals, fD as DisplayField, fE as DisplayFieldDisplayFieldTypeOptionsOneOf, bb as DisplayFieldType, iS as DisplayFieldTypeWithLiterals, cX as DividerData, ah as DividerDataAlignment, hW as DividerDataAlignmentWithLiterals, hh as DocumentReady, ee as DocumentStyle, bI as DomainEvent, bJ as DomainEventBodyOneOf, eR as DonationInput, eS as DonationInputOption, hi as DownloadSubmissionRequest, em as Dropdown, en as DropdownOption, cj as DynamicPriceOptions, ff as EmailInfo, b6 as EmailInfoTag, iN as EmailInfoTagWithLiterals, dX as EmbedData, gj as Empty, bK as EntityCreatedEvent, bN as EntityDeletedEvent, bM as EntityUpdatedEvent, bs as ErrorType, j7 as ErrorTypeWithLiterals, dP as EventData, hA 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, hL as FieldTypeWithLiterals, hu as FieldViolation, hv 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, iy as FirstDayOfWeekWithLiterals, eU as FixedPayment, ci as FixedPriceOptions, dL as FontFamilyData, dJ as FontSizeData, ax as FontType, ia as FontTypeWithLiterals, bV as Form, hb as FormDeletedSubmissionsCount, bW as FormField, c6 as FormFieldArrayType, c4 as FormFieldBooleanType, fd as FormFieldContactInfo, fe as FormFieldContactInfoAdditionalInfoOneOf, fR as FormFieldContactInfoAddressInfo, bi as FormFieldContactInfoContactField, iZ as FormFieldContactInfoContactFieldWithLiterals, fS as FormFieldContactInfoCustomFieldInfo, fP as FormFieldContactInfoEmailInfo, be as FormFieldContactInfoEmailInfoTag, iV as FormFieldContactInfoEmailInfoTagWithLiterals, fQ as FormFieldContactInfoPhoneInfo, bf as FormFieldContactInfoPhoneInfoTag, iW 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, hD as FormSubmissionQuerySpec, hB as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, h8 as FormSubmissionsCount, b4 as Format, a7 as FormatEnumFormat, hM as FormatEnumFormatWithLiterals, iL as FormatWithLiterals, ho as FormattedFormSubmission, hl as FormattedSubmission, db as GIF, da as GIFData, an as GIFType, i0 as GIFTypeWithLiterals, d0 as GalleryData, d6 as GalleryOptions, d7 as GalleryOptionsLayout, gV as GetDeletedSubmissionRequest, hk as GetFormattedSubmissionRequest, hc as GetMediaUploadURLRequest, gD as GetSubmissionByCheckoutIdRequest, gE as GetSubmissionByCheckoutIdResponse, he as GetSubmissionDownloadUrlRequest, gB as GetSubmissionRequest, gC as GetSubmissionResponse, du as Gradient, f3 as Group, dd as HTMLData, de as HTMLDataDataOneOf, hj as HeadersEntry, dc as HeadingData, cQ as Height, g2 as HiddenOptions, bQ as IdentificationData, bR as IdentificationDataIdOneOf, br as IdentityType, j6 as IdentityTypeWithLiterals, d2 as Image, df as ImageData, dh as ImageDataStyles, aR as ImageFit, iw as ImageFitWithLiterals, aP as ImagePosition, iu as ImagePositionWithLiterals, dR as ImageStyles, fa as InPersonOptions, aG as InitialExpandedItems, ik as InitialExpandedItemsWithLiterals, cx as InputField, cy as InputFieldInputTypeOptionsOneOf, b5 as InputType, iM as InputTypeWithLiterals, c3 as IntegerType, gh as IsFormSubmittableRequest, gi as IsFormSubmittableResponse, d4 as Item, d5 as ItemDataOneOf, f1 as ItemLayout, f2 as ItemLayoutItemOneOf, gy as ItemMetadata, d8 as ItemStyle, aW as ItemType, iB as ItemTypeWithLiterals, bd as Kind, iU as KindWithLiterals, aE as Layout, ec as LayoutCellData, ea as LayoutData, aL as LayoutDataImagePosition, iq as LayoutDataImagePositionWithLiterals, aj as LayoutType, hY as LayoutTypeWithLiterals, ii as LayoutWithLiterals, fV as LimitationRule, af as LineStyle, hU as LineStyleWithLiterals, cS as Link, dH as LinkData, cT as LinkDataOneOf, di as LinkPreviewData, dj as LinkPreviewDataStyles, ad as LinkTarget, hS as LinkTargetWithLiterals, gR as ListDeletedSubmissionsRequest, hm as ListFormattedSubmissionsRequest, hn as ListFormattedSubmissionsResponse, e4 as ListValue, f8 as Location, f9 as LocationLocationInfoOneOf, dk as MapData, dl as MapSettings, aq as MapType, i3 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, j9 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, hO as NodeTypeWithLiterals, aJ as NullValue, io as NullValueWithLiterals, aU as NumberComponentType, iz as NumberComponentTypeWithLiterals, c2 as NumberErrorMessages, ex as NumberInput, aS as NumberOfColumns, ix as NumberOfColumnsWithLiterals, ew as NumberType, fB as ObjectArray, b2 as ObjectArrayComponentType, fC as ObjectArrayComponentTypeOptionsOneOf, iJ as ObjectArrayComponentTypeWithLiterals, cp as ObjectArrayType, ca as ObjectErrorMessages, eC as ObjectType, c8 as ObjectTypePropertiesType, c9 as ObjectTypePropertiesTypePropertiesTypeOneOf, dY as Oembed, bq as Operator, j5 as OperatorWithLiterals, a0 as OptInLevel, hF as OptInLevelWithLiterals, eI as Option, dy as OptionDesign, dt as OptionLayout, g9 as OrCondition, bA as OrderDetails, e6 as OrderedListData, ak as Orientation, hZ as OrientationWithLiterals, bc as OverrideEntityType, bp as OverrideEntityTypeEnumOverrideEntityType, j4 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iT as OverrideEntityTypeWithLiterals, c$ as PDFSettings, fG as PageNavigationOptions, dm as ParagraphData, ev as Password, fv as Payment, a$ as PaymentComponentType, fw as PaymentComponentTypeOptionsOneOf, iG as PaymentComponentTypeWithLiterals, eT as PaymentInput, cg as PaymentType, dp as Permissions, cC as PhoneConstraints, fg as PhoneInfo, b7 as PhoneInfoTag, iO as PhoneInfoTagWithLiterals, ep as PhoneInput, fc as PhoneOptions, aB as Placement, ie as PlacementWithLiterals, dW as PlaybackOptions, cM as PluginContainerData, ab as PluginContainerDataAlignment, hQ 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, i7 as PollLayoutDirectionWithLiterals, at as PollLayoutType, i6 as PollLayoutTypeWithLiterals, dq as PollOption, ay as Position, ib as PositionWithLiterals, fL as PostSubmissionTriggers, ce as PredefinedValidation, cf as PredefinedValidationFormatOptionsOneOf, a5 as PriceType, hK as PriceTypeWithLiterals, dU as PricingData, ck as Product, eP as ProductCheckboxGroup, eQ as ProductCheckboxGroupOption, cl as ProductPriceOptionsOneOf, a4 as ProductType, hJ as ProductTypeWithLiterals, eD as PropertiesType, aX as PropertiesTypeEnum, iC as PropertiesTypeEnumWithLiterals, eE as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, ch as QuantityLimit, gW as QuerySubmissionRequest, h5 as QuerySubmissionsByNamespaceForExportRequest, h6 as QuerySubmissionsByNamespaceForExportResponse, h3 as QuerySubmissionsByNamespaceRequest, h4 as QuerySubmissionsByNamespaceResponse, ej as RadioGroup, ek as RadioGroupOption, ey as RatingInput, f_ as RedirectOptions, cU as Rel, gN as RemoveSubmissionFromTrashBinRequest, gO as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, e_ as Repeater, bk as RequiredIndicator, bl as RequiredIndicatorPlacement, j0 as RequiredIndicatorPlacementWithLiterals, fW as RequiredIndicatorProperties, i$ as RequiredIndicatorWithLiterals, g1 as RequiredOptions, aA as Resizing, id as ResizingWithLiterals, aN as ResponsivenessBehaviour, is as ResponsivenessBehaviourWithLiterals, bL as RestoreInfo, gM as RestoreSubmissionFromTrashBinRequest, dS as RibbonStyles, cF as RichContent, fF as RichContentOptions, g0 as Rule, gb as RuleFormOverride, gc as RuleFormOverrideEntityTypeOptionsOneOf, aK as Scaling, ip as ScalingWithLiterals, fx as Scheduling, b3 as SchedulingComponentType, fy as SchedulingComponentTypeOptionsOneOf, iK as SchedulingComponentTypeWithLiterals, h0 as SearchDetails, h1 as SearchSubmissionsByNamespaceForExportRequest, h2 as SearchSubmissionsByNamespaceForExportResponse, gZ as SearchSubmissionsByNamespaceRequest, f5 as Section, eu as ServiceOption, eL as ServicesCheckboxGroup, et as ServicesDropdown, dr as Settings, eO as Signature, bt as SortOrder, j8 as SortOrderWithLiterals, gY as Sorting, ao as Source, i1 as SourceWithLiterals, bj as SpamFilterProtectionLevel, i_ as SpamFilterProtectionLevelWithLiterals, cP as Spoiler, dK as SpoilerData, bv as Status, ja as StatusWithLiterals, fH as Step, a8 as StringComponentType, hN as StringComponentTypeWithLiterals, bZ as StringErrorMessages, cz as StringType, b_ as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, hH as StringTypeFormatEnumFormatWithLiterals, cA as StringTypeFormatOptionsOneOf, b$ as StringTypePhoneConstraints, c0 as StringTypeValidationMessages, cR as Styles, dg as StylesBorder, ap as StylesPosition, i2 as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hf as SubmissionDocument, hg as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jb as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hE as SubmissionStatusWithLiterals, hx as SubmissionValidationError, hy as SubmissionValidationErrorErrorMessageOneOf, hw as SubmissionValidationErrors, go as SubmissionValidationErrorsDetails, hC as SubmissionsQueryResult, gl as SubmitContactResponse, fX as SubmitSettings, fY as SubmitSettingsSubmitSuccessActionOptionsOneOf, bn as SubmitSuccessAction, j2 as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fj as SubscriptionInfo, bh as SubscriptionInfoOptInLevel, iY as SubscriptionInfoOptInLevelWithLiterals, e0 as TableCellData, d_ as TableData, b8 as Tag, bC as TagList, iP as TagWithLiterals, gd as Tags, eK as TagsOption, ge as TagsTagList, bm as Target, j1 as TargetWithLiterals, ae as TextAlignment, hT 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, iI as TypeWithLiterals, hp as UpdateExtendedFieldsRequest, gF as UpdateSubmissionRequest, gG as UpdateSubmissionResponse, a_ as UploadFileFormat, iF as UploadFileFormatWithLiterals, fM as UpsertContact, gk as UpsertContactFromSubmissionRequest, fN as V4FormFieldContactInfo, fO as V4FormFieldContactInfoAdditionalInfoOneOf, ht as ValidateFormSubmissionRequest, cr as Validation, gp as ValidationError, a3 as ValidationFormat, hI as ValidationFormatWithLiterals, cD as ValidationMessages, cs as ValidationValidationOneOf, aI as VerticalAlignment, aM as VerticalAlignmentAlignment, ir as VerticalAlignmentAlignmentWithLiterals, im as VerticalAlignmentWithLiterals, d3 as Video, fb as VideoConferenceOptions, dV as VideoData, ai as ViewMode, hX as ViewModeWithLiterals, ar as ViewRole, i4 as ViewRoleWithLiterals, as as VoteRole, i5 as VoteRoleWithLiterals, a1 as WebhookIdentityType, hG as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, hP as WidthTypeWithLiterals, hV as WidthWithLiterals, ft as WixFile, aZ as WixFileComponentType, fu as WixFileComponentTypeOptionsOneOf, iE 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-XJ-2STK-.js';
2
+ import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as 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-DYDfWYJ5.js';
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.js';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -142,8 +142,6 @@ interface SearchSubmissionsByNamespaceSignature {
142
142
  *
143
143
  * You can only query submissions from a specified namespace. Use the query filter on the `namespace` field, otherwise you will receive an error.
144
144
  *
145
- * For field support for filters and sorting, see [Form Submissions: Supported Filters and Sorting](https://dev.wix.com/docs/rest/crm/forms/form-submissions/filter-and-sort).option
146
- *
147
145
  * To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
148
146
  * @param - Query options.
149
147
  */