@wix/auto_sdk_forms_submissions 1.0.62 → 1.0.63

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-CJRPTs5G.d.ts → forms-v4-submission-submissions.universal-CrqJgpo4.d.ts} +18 -2
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +7 -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 +7 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +19 -3
  9. package/build/cjs/meta.js +7 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-CJRPTs5G.d.mts → forms-v4-submission-submissions.universal-CrqJgpo4.d.mts} +18 -2
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +7 -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 +7 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +19 -3
  19. package/build/es/meta.mjs +7 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-CjdGkOEc.d.ts → forms-v4-submission-submissions.universal-veLmrmul.d.ts} +18 -2
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +7 -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 +7 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +19 -3
  29. package/build/internal/cjs/meta.js +7 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-CjdGkOEc.d.mts → forms-v4-submission-submissions.universal-veLmrmul.d.mts} +18 -2
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +7 -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 +7 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +19 -3
  39. package/build/internal/es/meta.mjs +7 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -382,6 +382,8 @@ interface Form {
382
382
  * @maxSize 100
383
383
  */
384
384
  formRules?: Rule[];
385
+ /** Tag IDs collections associated with the current entity. */
386
+ tags?: PublicTags;
385
387
  }
386
388
  interface FormField {
387
389
  /**
@@ -6273,10 +6275,24 @@ declare enum ErrorType {
6273
6275
  /** Some of the service options on service picker field are deleted or unavailable */
6274
6276
  INVALID_SERVICE_OPTIONS_ERROR = "INVALID_SERVICE_OPTIONS_ERROR",
6275
6277
  /** All of the service options on service picker field are deleted or unavailable */
6276
- NO_AVAILABLE_SERVICE_OPTIONS_ERROR = "NO_AVAILABLE_SERVICE_OPTIONS_ERROR"
6278
+ NO_AVAILABLE_SERVICE_OPTIONS_ERROR = "NO_AVAILABLE_SERVICE_OPTIONS_ERROR",
6279
+ /** Text value does not match the exact required length */
6280
+ EXACT_CHARACTER_LENGTH_ERROR = "EXACT_CHARACTER_LENGTH_ERROR",
6281
+ /** Character count is not within the required range */
6282
+ CHARACTER_LENGTH_RANGE_ERROR = "CHARACTER_LENGTH_RANGE_ERROR",
6283
+ /** Number is not within the required range */
6284
+ VALUE_RANGE_ERROR = "VALUE_RANGE_ERROR",
6285
+ /** Field not have the exact number of options selected */
6286
+ EXACT_ITEMS_NUMBER_ERROR = "EXACT_ITEMS_NUMBER_ERROR",
6287
+ /** Number has incorrect number of decimal places */
6288
+ DECIMAL_POINT_ERROR = "DECIMAL_POINT_ERROR",
6289
+ /** Date value is incomplete or missing required parts */
6290
+ INCOMPLETE_DATE_ERROR = "INCOMPLETE_DATE_ERROR",
6291
+ /** Value does not match the required pattern format */
6292
+ INVALID_VALUE_FOR_PATTERN_ERROR = "INVALID_VALUE_FOR_PATTERN_ERROR"
6277
6293
  }
6278
6294
  /** @enumType */
6279
- 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';
6295
+ 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';
6280
6296
  interface CreateSubmissionForMigrationRequest {
6281
6297
  /** Submission to create. */
6282
6298
  submission?: FormSubmission;
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, E as BulkUpdateFormSubmissionTagsOptions, H as BulkUpdateFormSubmissionTagsResponse, I as BulkUpdateFormSubmissionTagsByFilterOptions, J as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, K as ValidateFormSubmissionResponse, M as SubmissionCreatedEnvelope, N as SubmissionDeletedEnvelope, O as SubmissionRemovedSubmissionFromTrashEnvelope, P as SubmissionStatusUpdatedEnvelope, T as SubmissionContactMappedEnvelope, W as SubmissionContactMappingSkippedEnvelope, X as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-CjdGkOEc.mjs';
3
- export { gW as ActionEvent, gd as Address, ge as AddressComponentTypeOptionsOneOf, fX as AddressInfo, b1 as AddressInfoTag, jq as AddressInfoTagWithLiterals, eX as AddressLine2, aK as Alignment, j7 as AlignmentWithLiterals, gC as AllowedValuesOptions, dB as AnchorData, gH as AndCondition, dH as AppEmbedData, dI as AppEmbedDataAppDataOneOf, aA as AppType, iZ as AppTypeWithLiterals, he as ApplicationError, eP as Appointment, eQ as AppointmentFormatInfoOneOf, bd as ArrayComponentType, jC as ArrayComponentTypeWithLiterals, cc as ArrayErrorMessages, fJ as ArrayItems, aQ as ArrayItemsItemType, fK as ArrayItemsItemTypeOptionsOneOf, jd as ArrayItemsItemTypeWithLiterals, fF as ArrayType, ca as ArrayTypeArrayItems, cb as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, iT as AspectRatioWithLiterals, d$ as AudioData, dr as Background, ds as BackgroundBackgroundOneOf, e5 as BackgroundImage, aq as BackgroundType, iP as BackgroundTypeWithLiterals, ig as BaseEventMetadata, e2 as BlockquoteData, dJ as BookingData, ba as BooleanComponentType, jz as BooleanComponentTypeWithLiterals, c4 as BooleanErrorMessages, fE as BooleanType, cG as Border, dZ as BorderColors, fN as BreakPoint, hf as BulkActionMetadata, ha as BulkCreateSubmissionBySubmitterData, h9 as BulkCreateSubmissionBySubmitterRequest, hb as BulkCreateSubmissionBySubmitterResponse, hp as BulkDeleteSubmissionRequest, hq as BulkDeleteSubmissionResult, hU as BulkMarkSubmissionsAsSeenRequest, hV as BulkMarkSubmissionsAsSeenResponse, hu as BulkRemoveSubmissionFromTrashBinRequest, hv as BulkRemoveSubmissionFromTrashBinResult, hc as BulkSubmissionResult, i8 as BulkUpdateFormSubmissionTagsByFilterRequest, i6 as BulkUpdateFormSubmissionTagsRequest, i7 as BulkUpdateFormSubmissionTagsResult, e1 as BulletedListData, cF as ButtonData, a7 as ButtonDataType, iw as ButtonDataTypeWithLiterals, dL as ButtonStyles, e3 as CaptionData, dO as CardStyles, ay as CardStylesAlignment, iX as CardStylesAlignmentWithLiterals, ax as CardStylesType, iW as CardStylesTypeWithLiterals, dY as CellStyle, bx as ChangeableProperty, jW as ChangeablePropertyWithLiterals, et as Checkbox, eB as CheckboxGroup, gN as Checkout, cR as CodeBlockData, dU as CollapsibleListData, dC as ColorData, cH as Colors, k4 as CommonSearchWithEntityContext, bg as ComponentType, jF as ComponentTypeWithLiterals, gJ as Condition, gF as ConditionNode, gG as ConditionNodeNodeOneOf, hm as ConfirmSubmissionRequest, bn as ConfirmationLevel, jM as ConfirmationLevelWithLiterals, bo as ContactField, jN as ContactFieldWithLiterals, hR as CountDeletedSubmissionsRequest, hO as CountSubmissionsByFilterRequest, hQ as CountSubmissionsRequest, bS as CreateCheckoutFromSubmissionRequest, bT as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gM as CreateCheckoutFromSubmissionResponse, h7 as CreateSubmissionBySubmitterRequest, h8 as CreateSubmissionBySubmitterResponse, h5 as CreateSubmissionForMigrationRequest, h6 as CreateSubmissionForMigrationResponse, h1 as CreateSubmissionRequest, h2 as CreateSubmissionResponse, ag as Crop, iF as CropWithLiterals, hx as CursorPaging, hy as CursorPagingMetadata, hC as CursorQueryPagingMethodOneOf, hF as CursorSearch, hG as CursorSearchPagingMethodOneOf, hz as Cursors, fY as CustomFieldInfo, ef as CustomOption, cs as DataExtensionsDetails, ek as DateInput, em as DatePicker, fA as DateTimeConstraints, ei as DateTimeInput, dz as Decoration, dA as DecorationDataOneOf, ar as DecorationType, iQ as DecorationTypeWithLiterals, eY as DefaultCountryConfig, eZ as DefaultCountryConfigOptionsOneOf, hn as DeleteSubmissionRequest, ho as DeleteSubmissionResponse, dx as Design, dW as Dimensions, aC as Direction, i$ as DirectionWithLiterals, fq as DisplayField, bp as DisplayFieldDisplayFieldType, fr as DisplayFieldDisplayFieldTypeOptionsOneOf, jO as DisplayFieldDisplayFieldTypeWithLiterals, b5 as DisplayFieldType, ju as DisplayFieldTypeWithLiterals, cT as DividerData, ac as DividerDataAlignment, iB as DividerDataAlignmentWithLiterals, hZ as DocumentReady, e8 as DocumentStyle, gQ as DomainEvent, gR as DomainEventBodyOneOf, eL as DonationInput, eM as DonationInputOption, h_ as DownloadSubmissionRequest, eg as Dropdown, eh as DropdownOption, ci as DynamicPriceOptions, fV as EmailInfo, bk as EmailInfoTag, jJ as EmailInfoTagWithLiterals, dS as EmbedData, gX as Empty, gS as EntityCreatedEvent, gV as EntityDeletedEvent, gU as EntityUpdatedEvent, bC as ErrorType, j$ as ErrorTypeWithLiterals, dK as EventData, ih as EventMetadata, bJ as ExtendedFields, fu as Field, fv as FieldFieldTypeOptionsOneOf, gy as FieldGroup, gD as FieldOverride, gE as FieldOverridePropertyTypeOptionsOneOf, cm as FieldOverrides, b6 as FieldType, jv as FieldTypeWithLiterals, ia as FieldViolation, ib as FieldViolationErrorDataOneOf, gh as FieldsDisplayField, gi as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cn as FieldsOverrides, e_ as FieldsSettings, cU as FileData, cV as FileSource, cW as FileSourceDataOneOf, eG as FileType, eH as FileUpload, aN as FirstDayOfWeek, ja as FirstDayOfWeekWithLiterals, eO as FixedPayment, ch as FixedPriceOptions, dF as FontSizeData, as as FontType, iR as FontTypeWithLiterals, bU as Form, hS as FormDeletedSubmissionsCount, bV as FormField, c5 as FormFieldArrayType, c3 as FormFieldBooleanType, fT as FormFieldContactInfo, fU as FormFieldContactInfoAdditionalInfoOneOf, f3 as FormFieldContactInfoAddressInfo, b3 as FormFieldContactInfoContactField, js as FormFieldContactInfoContactFieldWithLiterals, f4 as FormFieldContactInfoCustomFieldInfo, f1 as FormFieldContactInfoEmailInfo, a$ as FormFieldContactInfoEmailInfoTag, jo as FormFieldContactInfoEmailInfoTagWithLiterals, f2 as FormFieldContactInfoPhoneInfo, b0 as FormFieldContactInfoPhoneInfoTag, jp as FormFieldContactInfoPhoneInfoTagWithLiterals, f5 as FormFieldContactInfoSubscriptionInfo, c0 as FormFieldNumberType, c6 as FormFieldObjectType, bW as FormFieldStringType, bX as FormFieldStringTypeFormatOptionsOneOf, cu as FormFieldV2, b4 as FormFieldV2FieldType, cv as FormFieldV2FieldTypeOptionsOneOf, jt as FormFieldV2FieldTypeWithLiterals, fo as FormFieldV2InputField, fp as FormFieldV2InputFieldInputTypeOptionsOneOf, fM as FormLayout, gn as FormOverride, go as FormProperties, gm as FormRule, ii as FormSubmissionSearchSpec, bN as FormSubmissionStatusUpdatedEvent, hP as FormSubmissionsCount, aX as Format, b7 as FormatEnumFormat, jw as FormatEnumFormatWithLiterals, jk as FormatWithLiterals, i4 as FormattedFormSubmission, i1 as FormattedSubmission, d7 as GIF, d6 as GIFData, ai as GIFType, iH as GIFTypeWithLiterals, cY as GalleryData, d2 as GalleryOptions, d3 as GalleryOptionsLayout, hA as GetDeletedSubmissionRequest, i0 as GetFormattedSubmissionRequest, hT as GetMediaUploadURLRequest, hi as GetSubmissionByCheckoutIdRequest, hj as GetSubmissionByCheckoutIdResponse, hW as GetSubmissionDownloadUrlRequest, hg as GetSubmissionRequest, hh as GetSubmissionResponse, dq as Gradient, fQ as Group, d9 as HTMLData, da as HTMLDataDataOneOf, h$ as HeadersEntry, d8 as HeadingData, cM as Height, gB as HiddenOptions, gZ as IdentificationData, g_ as IdentificationDataIdOneOf, bB as IdentityType, j_ as IdentityTypeWithLiterals, c_ as Image, db as ImageData, dd as ImageDataStyles, aL as ImageFit, j8 as ImageFitWithLiterals, aJ as ImagePosition, j6 as ImagePositionWithLiterals, dM as ImageStyles, eT as InPersonOptions, aB as InitialExpandedItems, i_ as InitialExpandedItemsWithLiterals, fw as InputField, aS as InputFieldArrayComponentType, jf as InputFieldArrayComponentTypeWithLiterals, eu as InputFieldArrayType, ez as InputFieldArrayTypeArrayItems, eA as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aP as InputFieldBooleanComponentType, jc as InputFieldBooleanComponentTypeWithLiterals, es as InputFieldBooleanType, a_ as InputFieldInputType, fx as InputFieldInputTypeOptionsOneOf, jn as InputFieldInputTypeWithLiterals, ev as InputFieldIntegerType, fk as InputFieldMultilineAddress, fl as InputFieldMultilineAddressComponentTypeOptionsOneOf, aO as InputFieldNumberComponentType, jb as InputFieldNumberComponentTypeWithLiterals, ep as InputFieldNumberType, ew as InputFieldObjectType, ex as InputFieldObjectTypePropertiesType, ey as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, fi as InputFieldPayment, aV as InputFieldPaymentComponentType, fj as InputFieldPaymentComponentTypeOptionsOneOf, ji as InputFieldPaymentComponentTypeWithLiterals, fm as InputFieldScheduling, aW as InputFieldSchedulingComponentType, fn as InputFieldSchedulingComponentTypeOptionsOneOf, jj as InputFieldSchedulingComponentTypeWithLiterals, a3 as InputFieldStringComponentType, is as InputFieldStringComponentTypeWithLiterals, cw as InputFieldStringType, cy as InputFieldStringTypeDateTimeConstraints, a2 as InputFieldStringTypeFormatEnumFormat, ir as InputFieldStringTypeFormatEnumFormatWithLiterals, cx as InputFieldStringTypeFormatOptionsOneOf, cz as InputFieldStringTypePhoneConstraints, fg as InputFieldWixFile, aT as InputFieldWixFileComponentType, fh as InputFieldWixFileComponentTypeOptionsOneOf, jg as InputFieldWixFileComponentTypeWithLiterals, fc as InputField_Array, fd as InputField_ArrayComponentTypeOptionsOneOf, fa as InputField_Boolean, fb as InputField_BooleanComponentTypeOptionsOneOf, f8 as InputField_Number, f9 as InputField_NumberComponentTypeOptionsOneOf, fe as InputField_Object, ff as InputField_ObjectValidationOneOf, f6 as InputField_String, f7 as InputField_StringComponentTypeOptionsOneOf, bj as InputType, jI as InputTypeWithLiterals, c2 as IntegerType, gO as IsFormSubmittableRequest, gP as IsFormSubmittableResponse, d0 as Item, d1 as ItemDataOneOf, fO as ItemLayout, fP as ItemLayoutItemOneOf, hd as ItemMetadata, d4 as ItemStyle, bb as ItemType, jA as ItemTypeWithLiterals, br as Kind, jQ as KindWithLiterals, az as Layout, e6 as LayoutCellData, e4 as LayoutData, aG as LayoutDataImagePosition, j3 as LayoutDataImagePositionWithLiterals, ae as LayoutType, iD as LayoutTypeWithLiterals, iY as LayoutWithLiterals, gs as LimitationRule, aa as LineStyle, iz as LineStyleWithLiterals, cO as Link, dD as LinkData, cP as LinkDataOneOf, de as LinkPreviewData, df as LinkPreviewDataStyles, a8 as LinkTarget, ix as LinkTargetWithLiterals, hw as ListDeletedSubmissionsRequest, i2 as ListFormattedSubmissionsRequest, i3 as ListFormattedSubmissionsResponse, d_ as ListValue, eR as Location, eS as LocationLocationInfoOneOf, dg as MapData, dh as MapSettings, al as MapType, iK as MapTypeWithLiterals, fR as Margin, bQ as MarketingSubscriptionDetails, cZ as Media, ea as MediaItem, eb as MediaItemMediaOneOf, ec as MediaSettings, dE as MentionData, gY as MessageEnvelope, e7 as Metadata, bE as Mode, k1 as ModeWithLiterals, eW as MultilineAddress, aY as MultilineAddressComponentType, jl as MultilineAddressComponentTypeWithLiterals, cl as MultilineAddressValidation, gr as NestedForm, cp as NestedFormFieldOverrides, ct as NestedFormOverrides, cC as Node, cD as NodeDataOneOf, cE as NodeStyle, a4 as NodeType, it as NodeTypeWithLiterals, aE as NullValue, j1 as NullValueWithLiterals, b9 as NumberComponentType, jy as NumberComponentTypeWithLiterals, c1 as NumberErrorMessages, eq as NumberInput, aM as NumberOfColumns, j9 as NumberOfColumnsWithLiterals, fD as NumberType, gf as ObjectArray, bh as ObjectArrayComponentType, gg as ObjectArrayComponentTypeOptionsOneOf, jG as ObjectArrayComponentTypeWithLiterals, co as ObjectArrayType, c9 as ObjectErrorMessages, fG as ObjectType, c7 as ObjectTypePropertiesType, c8 as ObjectTypePropertiesTypePropertiesTypeOneOf, dT as Oembed, bz as Operator, jY as OperatorWithLiterals, Z as OptInLevel, il as OptInLevelWithLiterals, eC as Option, du as OptionDesign, dp as OptionLayout, gI as OrCondition, bK as OrderDetails, e0 as OrderedListData, af as Orientation, iE as OrientationWithLiterals, bq as OverrideEntityType, by as OverrideEntityTypeEnumOverrideEntityType, jX as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jP as OverrideEntityTypeWithLiterals, cX as PDFSettings, gk as PageNavigationOptions, di as ParagraphData, g9 as Payment, bf as PaymentComponentType, ga as PaymentComponentTypeOptionsOneOf, jE as PaymentComponentTypeWithLiterals, eN as PaymentInput, cf as PaymentType, dk as Permissions, fB as PhoneConstraints, fW as PhoneInfo, bl as PhoneInfoTag, jK as PhoneInfoTagWithLiterals, ej as PhoneInput, eV as PhoneOptions, aw as Placement, iV as PlacementWithLiterals, dR as PlaybackOptions, cI as PluginContainerData, a6 as PluginContainerDataAlignment, iv as PluginContainerDataAlignmentWithLiterals, cJ as PluginContainerDataWidth, cK as PluginContainerDataWidthDataOneOf, dv as Poll, dj as PollData, dw as PollDataLayout, dt as PollDesign, dn as PollLayout, ap as PollLayoutDirection, iO as PollLayoutDirectionWithLiterals, ao as PollLayoutType, iN as PollLayoutTypeWithLiterals, dl as PollOption, at as Position, iS as PositionWithLiterals, gp as PostSubmissionTriggers, cd as PredefinedValidation, ce as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, iq as PriceTypeWithLiterals, dP as PricingData, cj as Product, eJ as ProductCheckboxGroup, eK as ProductCheckboxGroupOption, ck as ProductPriceOptionsOneOf, a0 as ProductType, ip as ProductTypeWithLiterals, fH as PropertiesType, bc as PropertiesTypeEnum, jB as PropertiesTypeEnumWithLiterals, aR as PropertiesTypePropertiesTypeEnum, je as PropertiesTypePropertiesTypeEnumWithLiterals, fI as PropertiesTypePropertiesTypeOptionsOneOf, bL as PublicTags, cg as QuantityLimit, hB as QuerySubmissionRequest, hM as QuerySubmissionsByNamespaceForExportRequest, hN as QuerySubmissionsByNamespaceForExportResponse, hK as QuerySubmissionsByNamespaceRequest, hL as QuerySubmissionsByNamespaceResponse, ed as RadioGroup, ee as RadioGroupOption, er as RatingInput, gx as RedirectOptions, cQ as Rel, hs as RemoveSubmissionFromTrashBinRequest, ht as RemoveSubmissionFromTrashBinResponse, bO as RemovedSubmissionFromTrash, fL as Repeater, bt as RequiredIndicator, bu as RequiredIndicatorPlacement, jT as RequiredIndicatorPlacementWithLiterals, gt as RequiredIndicatorProperties, jS as RequiredIndicatorWithLiterals, gA as RequiredOptions, av as Resizing, iU as ResizingWithLiterals, aI as ResponsivenessBehaviour, j5 as ResponsivenessBehaviourWithLiterals, gT as RestoreInfo, hr as RestoreSubmissionFromTrashBinRequest, dN as RibbonStyles, cB as RichContent, gj as RichContentOptions, gz as Rule, gK as RuleFormOverride, gL as RuleFormOverrideEntityTypeOptionsOneOf, aF as Scaling, j2 as ScalingWithLiterals, gb as Scheduling, bi as SchedulingComponentType, gc as SchedulingComponentTypeOptionsOneOf, jH as SchedulingComponentTypeWithLiterals, hH as SearchDetails, hI as SearchSubmissionsByNamespaceForExportRequest, hJ as SearchSubmissionsByNamespaceForExportResponse, hE as SearchSubmissionsByNamespaceRequest, fS as Section, eo as ServiceOption, eF as ServicesCheckboxGroup, en as ServicesDropdown, dm as Settings, eI as Signature, bD as SortOrder, k0 as SortOrderWithLiterals, hD as Sorting, aj as Source, iI as SourceWithLiterals, bs as SpamFilterProtectionLevel, jR as SpamFilterProtectionLevelWithLiterals, cL as Spoiler, dG as SpoilerData, bF as Status, k2 as StatusWithLiterals, gl as Step, b8 as StringComponentType, jx as StringComponentTypeWithLiterals, bY as StringErrorMessages, fy as StringType, bZ as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, im as StringTypeFormatEnumFormatWithLiterals, fz as StringTypeFormatOptionsOneOf, b_ as StringTypePhoneConstraints, b$ as StringTypeValidationMessages, cN as Styles, dc as StylesBorder, ak as StylesPosition, iJ as StylesPositionWithLiterals, bP as SubmissionContactMapped, bR as SubmissionContactMappingSkipped, hX as SubmissionDocument, hY as SubmissionDocumentDocumentOneOf, bG as SubmissionErrorType, k3 as SubmissionErrorTypeWithLiterals, Y as SubmissionStatus, ik as SubmissionStatusWithLiterals, id as SubmissionValidationError, ie as SubmissionValidationErrorErrorMessageOneOf, ic as SubmissionValidationErrors, h3 as SubmissionValidationErrorsDetails, ij as SubmissionsQueryResult, h0 as SubmitContactResponse, gu as SubmitSettings, gv as SubmitSettingsSubmitSuccessActionOptionsOneOf, bw as SubmitSuccessAction, jV as SubmitSuccessActionWithLiterals, bH as Submitter, bI as SubmitterSubmitterOneOf, fZ as SubscriptionInfo, b2 as SubscriptionInfoOptInLevel, jr as SubscriptionInfoOptInLevelWithLiterals, dX as TableCellData, dV as TableData, bm as Tag, bM as TagList, jL as TagWithLiterals, eD as Tags, eE as TagsOption, bv as Target, jU as TargetWithLiterals, a9 as TextAlignment, iy as TextAlignmentWithLiterals, dy as TextData, cA as TextInput, e9 as TextNodeStyle, cS as TextStyle, gw as ThankYouMessageOptions, d5 as Thumbnails, ah as ThumbnailsAlignment, iG as ThumbnailsAlignmentWithLiterals, el as TimeInput, aZ as Type, jm as TypeWithLiterals, i5 as UpdateExtendedFieldsRequest, hk as UpdateSubmissionRequest, hl as UpdateSubmissionResponse, aU as UploadFileFormat, jh as UploadFileFormatWithLiterals, gq as UpsertContact, g$ as UpsertContactFromSubmissionRequest, e$ as V4FormFieldContactInfo, f0 as V4FormFieldContactInfoAdditionalInfoOneOf, ft as V4PageNavigationOptions, fs as V4RichContentOptions, i9 as ValidateFormSubmissionRequest, cq as Validation, h4 as ValidationError, $ as ValidationFormat, io as ValidationFormatWithLiterals, fC as ValidationMessages, cr as ValidationValidationOneOf, aD as VerticalAlignment, aH as VerticalAlignmentAlignment, j4 as VerticalAlignmentAlignmentWithLiterals, j0 as VerticalAlignmentWithLiterals, c$ as Video, eU as VideoConferenceOptions, dQ as VideoData, ad as ViewMode, iC as ViewModeWithLiterals, am as ViewRole, iL as ViewRoleWithLiterals, an as VoteRole, iM as VoteRoleWithLiterals, bA as WebhookIdentityType, jZ as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, iu as WidthTypeWithLiterals, iA as WidthWithLiterals, g7 as WixFile, be as WixFileComponentType, g8 as WixFileComponentTypeOptionsOneOf, jD as WixFileComponentTypeWithLiterals, g4 as _Array, g5 as _ArrayComponentTypeOptionsOneOf, g2 as _Boolean, g3 as _BooleanComponentTypeOptionsOneOf, g0 as _Number, g1 as _NumberComponentTypeOptionsOneOf, g6 as _Object, f_ as _String, f$ as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-CjdGkOEc.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 QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, E as BulkUpdateFormSubmissionTagsOptions, H as BulkUpdateFormSubmissionTagsResponse, I as BulkUpdateFormSubmissionTagsByFilterOptions, J as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, K as ValidateFormSubmissionResponse, M as SubmissionCreatedEnvelope, N as SubmissionDeletedEnvelope, O as SubmissionRemovedSubmissionFromTrashEnvelope, P as SubmissionStatusUpdatedEnvelope, T as SubmissionContactMappedEnvelope, W as SubmissionContactMappingSkippedEnvelope, X as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-veLmrmul.mjs';
3
+ export { gW as ActionEvent, gd as Address, ge as AddressComponentTypeOptionsOneOf, fX as AddressInfo, b1 as AddressInfoTag, jq as AddressInfoTagWithLiterals, eX as AddressLine2, aK as Alignment, j7 as AlignmentWithLiterals, gC as AllowedValuesOptions, dB as AnchorData, gH as AndCondition, dH as AppEmbedData, dI as AppEmbedDataAppDataOneOf, aA as AppType, iZ as AppTypeWithLiterals, he as ApplicationError, eP as Appointment, eQ as AppointmentFormatInfoOneOf, bd as ArrayComponentType, jC as ArrayComponentTypeWithLiterals, cc as ArrayErrorMessages, fJ as ArrayItems, aQ as ArrayItemsItemType, fK as ArrayItemsItemTypeOptionsOneOf, jd as ArrayItemsItemTypeWithLiterals, fF as ArrayType, ca as ArrayTypeArrayItems, cb as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, iT as AspectRatioWithLiterals, d$ as AudioData, dr as Background, ds as BackgroundBackgroundOneOf, e5 as BackgroundImage, aq as BackgroundType, iP as BackgroundTypeWithLiterals, ig as BaseEventMetadata, e2 as BlockquoteData, dJ as BookingData, ba as BooleanComponentType, jz as BooleanComponentTypeWithLiterals, c4 as BooleanErrorMessages, fE as BooleanType, cG as Border, dZ as BorderColors, fN as BreakPoint, hf as BulkActionMetadata, ha as BulkCreateSubmissionBySubmitterData, h9 as BulkCreateSubmissionBySubmitterRequest, hb as BulkCreateSubmissionBySubmitterResponse, hp as BulkDeleteSubmissionRequest, hq as BulkDeleteSubmissionResult, hU as BulkMarkSubmissionsAsSeenRequest, hV as BulkMarkSubmissionsAsSeenResponse, hu as BulkRemoveSubmissionFromTrashBinRequest, hv as BulkRemoveSubmissionFromTrashBinResult, hc as BulkSubmissionResult, i8 as BulkUpdateFormSubmissionTagsByFilterRequest, i6 as BulkUpdateFormSubmissionTagsRequest, i7 as BulkUpdateFormSubmissionTagsResult, e1 as BulletedListData, cF as ButtonData, a7 as ButtonDataType, iw as ButtonDataTypeWithLiterals, dL as ButtonStyles, e3 as CaptionData, dO as CardStyles, ay as CardStylesAlignment, iX as CardStylesAlignmentWithLiterals, ax as CardStylesType, iW as CardStylesTypeWithLiterals, dY as CellStyle, bx as ChangeableProperty, jW as ChangeablePropertyWithLiterals, et as Checkbox, eB as CheckboxGroup, gN as Checkout, cR as CodeBlockData, dU as CollapsibleListData, dC as ColorData, cH as Colors, k4 as CommonSearchWithEntityContext, bg as ComponentType, jF as ComponentTypeWithLiterals, gJ as Condition, gF as ConditionNode, gG as ConditionNodeNodeOneOf, hm as ConfirmSubmissionRequest, bn as ConfirmationLevel, jM as ConfirmationLevelWithLiterals, bo as ContactField, jN as ContactFieldWithLiterals, hR as CountDeletedSubmissionsRequest, hO as CountSubmissionsByFilterRequest, hQ as CountSubmissionsRequest, bS as CreateCheckoutFromSubmissionRequest, bT as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gM as CreateCheckoutFromSubmissionResponse, h7 as CreateSubmissionBySubmitterRequest, h8 as CreateSubmissionBySubmitterResponse, h5 as CreateSubmissionForMigrationRequest, h6 as CreateSubmissionForMigrationResponse, h1 as CreateSubmissionRequest, h2 as CreateSubmissionResponse, ag as Crop, iF as CropWithLiterals, hx as CursorPaging, hy as CursorPagingMetadata, hC as CursorQueryPagingMethodOneOf, hF as CursorSearch, hG as CursorSearchPagingMethodOneOf, hz as Cursors, fY as CustomFieldInfo, ef as CustomOption, cs as DataExtensionsDetails, ek as DateInput, em as DatePicker, fA as DateTimeConstraints, ei as DateTimeInput, dz as Decoration, dA as DecorationDataOneOf, ar as DecorationType, iQ as DecorationTypeWithLiterals, eY as DefaultCountryConfig, eZ as DefaultCountryConfigOptionsOneOf, hn as DeleteSubmissionRequest, ho as DeleteSubmissionResponse, dx as Design, dW as Dimensions, aC as Direction, i$ as DirectionWithLiterals, fq as DisplayField, bp as DisplayFieldDisplayFieldType, fr as DisplayFieldDisplayFieldTypeOptionsOneOf, jO as DisplayFieldDisplayFieldTypeWithLiterals, b5 as DisplayFieldType, ju as DisplayFieldTypeWithLiterals, cT as DividerData, ac as DividerDataAlignment, iB as DividerDataAlignmentWithLiterals, hZ as DocumentReady, e8 as DocumentStyle, gQ as DomainEvent, gR as DomainEventBodyOneOf, eL as DonationInput, eM as DonationInputOption, h_ as DownloadSubmissionRequest, eg as Dropdown, eh as DropdownOption, ci as DynamicPriceOptions, fV as EmailInfo, bk as EmailInfoTag, jJ as EmailInfoTagWithLiterals, dS as EmbedData, gX as Empty, gS as EntityCreatedEvent, gV as EntityDeletedEvent, gU as EntityUpdatedEvent, bC as ErrorType, j$ as ErrorTypeWithLiterals, dK as EventData, ih as EventMetadata, bJ as ExtendedFields, fu as Field, fv as FieldFieldTypeOptionsOneOf, gy as FieldGroup, gD as FieldOverride, gE as FieldOverridePropertyTypeOptionsOneOf, cm as FieldOverrides, b6 as FieldType, jv as FieldTypeWithLiterals, ia as FieldViolation, ib as FieldViolationErrorDataOneOf, gh as FieldsDisplayField, gi as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cn as FieldsOverrides, e_ as FieldsSettings, cU as FileData, cV as FileSource, cW as FileSourceDataOneOf, eG as FileType, eH as FileUpload, aN as FirstDayOfWeek, ja as FirstDayOfWeekWithLiterals, eO as FixedPayment, ch as FixedPriceOptions, dF as FontSizeData, as as FontType, iR as FontTypeWithLiterals, bU as Form, hS as FormDeletedSubmissionsCount, bV as FormField, c5 as FormFieldArrayType, c3 as FormFieldBooleanType, fT as FormFieldContactInfo, fU as FormFieldContactInfoAdditionalInfoOneOf, f3 as FormFieldContactInfoAddressInfo, b3 as FormFieldContactInfoContactField, js as FormFieldContactInfoContactFieldWithLiterals, f4 as FormFieldContactInfoCustomFieldInfo, f1 as FormFieldContactInfoEmailInfo, a$ as FormFieldContactInfoEmailInfoTag, jo as FormFieldContactInfoEmailInfoTagWithLiterals, f2 as FormFieldContactInfoPhoneInfo, b0 as FormFieldContactInfoPhoneInfoTag, jp as FormFieldContactInfoPhoneInfoTagWithLiterals, f5 as FormFieldContactInfoSubscriptionInfo, c0 as FormFieldNumberType, c6 as FormFieldObjectType, bW as FormFieldStringType, bX as FormFieldStringTypeFormatOptionsOneOf, cu as FormFieldV2, b4 as FormFieldV2FieldType, cv as FormFieldV2FieldTypeOptionsOneOf, jt as FormFieldV2FieldTypeWithLiterals, fo as FormFieldV2InputField, fp as FormFieldV2InputFieldInputTypeOptionsOneOf, fM as FormLayout, gn as FormOverride, go as FormProperties, gm as FormRule, ii as FormSubmissionSearchSpec, bN as FormSubmissionStatusUpdatedEvent, hP as FormSubmissionsCount, aX as Format, b7 as FormatEnumFormat, jw as FormatEnumFormatWithLiterals, jk as FormatWithLiterals, i4 as FormattedFormSubmission, i1 as FormattedSubmission, d7 as GIF, d6 as GIFData, ai as GIFType, iH as GIFTypeWithLiterals, cY as GalleryData, d2 as GalleryOptions, d3 as GalleryOptionsLayout, hA as GetDeletedSubmissionRequest, i0 as GetFormattedSubmissionRequest, hT as GetMediaUploadURLRequest, hi as GetSubmissionByCheckoutIdRequest, hj as GetSubmissionByCheckoutIdResponse, hW as GetSubmissionDownloadUrlRequest, hg as GetSubmissionRequest, hh as GetSubmissionResponse, dq as Gradient, fQ as Group, d9 as HTMLData, da as HTMLDataDataOneOf, h$ as HeadersEntry, d8 as HeadingData, cM as Height, gB as HiddenOptions, gZ as IdentificationData, g_ as IdentificationDataIdOneOf, bB as IdentityType, j_ as IdentityTypeWithLiterals, c_ as Image, db as ImageData, dd as ImageDataStyles, aL as ImageFit, j8 as ImageFitWithLiterals, aJ as ImagePosition, j6 as ImagePositionWithLiterals, dM as ImageStyles, eT as InPersonOptions, aB as InitialExpandedItems, i_ as InitialExpandedItemsWithLiterals, fw as InputField, aS as InputFieldArrayComponentType, jf as InputFieldArrayComponentTypeWithLiterals, eu as InputFieldArrayType, ez as InputFieldArrayTypeArrayItems, eA as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aP as InputFieldBooleanComponentType, jc as InputFieldBooleanComponentTypeWithLiterals, es as InputFieldBooleanType, a_ as InputFieldInputType, fx as InputFieldInputTypeOptionsOneOf, jn as InputFieldInputTypeWithLiterals, ev as InputFieldIntegerType, fk as InputFieldMultilineAddress, fl as InputFieldMultilineAddressComponentTypeOptionsOneOf, aO as InputFieldNumberComponentType, jb as InputFieldNumberComponentTypeWithLiterals, ep as InputFieldNumberType, ew as InputFieldObjectType, ex as InputFieldObjectTypePropertiesType, ey as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, fi as InputFieldPayment, aV as InputFieldPaymentComponentType, fj as InputFieldPaymentComponentTypeOptionsOneOf, ji as InputFieldPaymentComponentTypeWithLiterals, fm as InputFieldScheduling, aW as InputFieldSchedulingComponentType, fn as InputFieldSchedulingComponentTypeOptionsOneOf, jj as InputFieldSchedulingComponentTypeWithLiterals, a3 as InputFieldStringComponentType, is as InputFieldStringComponentTypeWithLiterals, cw as InputFieldStringType, cy as InputFieldStringTypeDateTimeConstraints, a2 as InputFieldStringTypeFormatEnumFormat, ir as InputFieldStringTypeFormatEnumFormatWithLiterals, cx as InputFieldStringTypeFormatOptionsOneOf, cz as InputFieldStringTypePhoneConstraints, fg as InputFieldWixFile, aT as InputFieldWixFileComponentType, fh as InputFieldWixFileComponentTypeOptionsOneOf, jg as InputFieldWixFileComponentTypeWithLiterals, fc as InputField_Array, fd as InputField_ArrayComponentTypeOptionsOneOf, fa as InputField_Boolean, fb as InputField_BooleanComponentTypeOptionsOneOf, f8 as InputField_Number, f9 as InputField_NumberComponentTypeOptionsOneOf, fe as InputField_Object, ff as InputField_ObjectValidationOneOf, f6 as InputField_String, f7 as InputField_StringComponentTypeOptionsOneOf, bj as InputType, jI as InputTypeWithLiterals, c2 as IntegerType, gO as IsFormSubmittableRequest, gP as IsFormSubmittableResponse, d0 as Item, d1 as ItemDataOneOf, fO as ItemLayout, fP as ItemLayoutItemOneOf, hd as ItemMetadata, d4 as ItemStyle, bb as ItemType, jA as ItemTypeWithLiterals, br as Kind, jQ as KindWithLiterals, az as Layout, e6 as LayoutCellData, e4 as LayoutData, aG as LayoutDataImagePosition, j3 as LayoutDataImagePositionWithLiterals, ae as LayoutType, iD as LayoutTypeWithLiterals, iY as LayoutWithLiterals, gs as LimitationRule, aa as LineStyle, iz as LineStyleWithLiterals, cO as Link, dD as LinkData, cP as LinkDataOneOf, de as LinkPreviewData, df as LinkPreviewDataStyles, a8 as LinkTarget, ix as LinkTargetWithLiterals, hw as ListDeletedSubmissionsRequest, i2 as ListFormattedSubmissionsRequest, i3 as ListFormattedSubmissionsResponse, d_ as ListValue, eR as Location, eS as LocationLocationInfoOneOf, dg as MapData, dh as MapSettings, al as MapType, iK as MapTypeWithLiterals, fR as Margin, bQ as MarketingSubscriptionDetails, cZ as Media, ea as MediaItem, eb as MediaItemMediaOneOf, ec as MediaSettings, dE as MentionData, gY as MessageEnvelope, e7 as Metadata, bE as Mode, k1 as ModeWithLiterals, eW as MultilineAddress, aY as MultilineAddressComponentType, jl as MultilineAddressComponentTypeWithLiterals, cl as MultilineAddressValidation, gr as NestedForm, cp as NestedFormFieldOverrides, ct as NestedFormOverrides, cC as Node, cD as NodeDataOneOf, cE as NodeStyle, a4 as NodeType, it as NodeTypeWithLiterals, aE as NullValue, j1 as NullValueWithLiterals, b9 as NumberComponentType, jy as NumberComponentTypeWithLiterals, c1 as NumberErrorMessages, eq as NumberInput, aM as NumberOfColumns, j9 as NumberOfColumnsWithLiterals, fD as NumberType, gf as ObjectArray, bh as ObjectArrayComponentType, gg as ObjectArrayComponentTypeOptionsOneOf, jG as ObjectArrayComponentTypeWithLiterals, co as ObjectArrayType, c9 as ObjectErrorMessages, fG as ObjectType, c7 as ObjectTypePropertiesType, c8 as ObjectTypePropertiesTypePropertiesTypeOneOf, dT as Oembed, bz as Operator, jY as OperatorWithLiterals, Z as OptInLevel, il as OptInLevelWithLiterals, eC as Option, du as OptionDesign, dp as OptionLayout, gI as OrCondition, bK as OrderDetails, e0 as OrderedListData, af as Orientation, iE as OrientationWithLiterals, bq as OverrideEntityType, by as OverrideEntityTypeEnumOverrideEntityType, jX as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jP as OverrideEntityTypeWithLiterals, cX as PDFSettings, gk as PageNavigationOptions, di as ParagraphData, g9 as Payment, bf as PaymentComponentType, ga as PaymentComponentTypeOptionsOneOf, jE as PaymentComponentTypeWithLiterals, eN as PaymentInput, cf as PaymentType, dk as Permissions, fB as PhoneConstraints, fW as PhoneInfo, bl as PhoneInfoTag, jK as PhoneInfoTagWithLiterals, ej as PhoneInput, eV as PhoneOptions, aw as Placement, iV as PlacementWithLiterals, dR as PlaybackOptions, cI as PluginContainerData, a6 as PluginContainerDataAlignment, iv as PluginContainerDataAlignmentWithLiterals, cJ as PluginContainerDataWidth, cK as PluginContainerDataWidthDataOneOf, dv as Poll, dj as PollData, dw as PollDataLayout, dt as PollDesign, dn as PollLayout, ap as PollLayoutDirection, iO as PollLayoutDirectionWithLiterals, ao as PollLayoutType, iN as PollLayoutTypeWithLiterals, dl as PollOption, at as Position, iS as PositionWithLiterals, gp as PostSubmissionTriggers, cd as PredefinedValidation, ce as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, iq as PriceTypeWithLiterals, dP as PricingData, cj as Product, eJ as ProductCheckboxGroup, eK as ProductCheckboxGroupOption, ck as ProductPriceOptionsOneOf, a0 as ProductType, ip as ProductTypeWithLiterals, fH as PropertiesType, bc as PropertiesTypeEnum, jB as PropertiesTypeEnumWithLiterals, aR as PropertiesTypePropertiesTypeEnum, je as PropertiesTypePropertiesTypeEnumWithLiterals, fI as PropertiesTypePropertiesTypeOptionsOneOf, bL as PublicTags, cg as QuantityLimit, hB as QuerySubmissionRequest, hM as QuerySubmissionsByNamespaceForExportRequest, hN as QuerySubmissionsByNamespaceForExportResponse, hK as QuerySubmissionsByNamespaceRequest, hL as QuerySubmissionsByNamespaceResponse, ed as RadioGroup, ee as RadioGroupOption, er as RatingInput, gx as RedirectOptions, cQ as Rel, hs as RemoveSubmissionFromTrashBinRequest, ht as RemoveSubmissionFromTrashBinResponse, bO as RemovedSubmissionFromTrash, fL as Repeater, bt as RequiredIndicator, bu as RequiredIndicatorPlacement, jT as RequiredIndicatorPlacementWithLiterals, gt as RequiredIndicatorProperties, jS as RequiredIndicatorWithLiterals, gA as RequiredOptions, av as Resizing, iU as ResizingWithLiterals, aI as ResponsivenessBehaviour, j5 as ResponsivenessBehaviourWithLiterals, gT as RestoreInfo, hr as RestoreSubmissionFromTrashBinRequest, dN as RibbonStyles, cB as RichContent, gj as RichContentOptions, gz as Rule, gK as RuleFormOverride, gL as RuleFormOverrideEntityTypeOptionsOneOf, aF as Scaling, j2 as ScalingWithLiterals, gb as Scheduling, bi as SchedulingComponentType, gc as SchedulingComponentTypeOptionsOneOf, jH as SchedulingComponentTypeWithLiterals, hH as SearchDetails, hI as SearchSubmissionsByNamespaceForExportRequest, hJ as SearchSubmissionsByNamespaceForExportResponse, hE as SearchSubmissionsByNamespaceRequest, fS as Section, eo as ServiceOption, eF as ServicesCheckboxGroup, en as ServicesDropdown, dm as Settings, eI as Signature, bD as SortOrder, k0 as SortOrderWithLiterals, hD as Sorting, aj as Source, iI as SourceWithLiterals, bs as SpamFilterProtectionLevel, jR as SpamFilterProtectionLevelWithLiterals, cL as Spoiler, dG as SpoilerData, bF as Status, k2 as StatusWithLiterals, gl as Step, b8 as StringComponentType, jx as StringComponentTypeWithLiterals, bY as StringErrorMessages, fy as StringType, bZ as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, im as StringTypeFormatEnumFormatWithLiterals, fz as StringTypeFormatOptionsOneOf, b_ as StringTypePhoneConstraints, b$ as StringTypeValidationMessages, cN as Styles, dc as StylesBorder, ak as StylesPosition, iJ as StylesPositionWithLiterals, bP as SubmissionContactMapped, bR as SubmissionContactMappingSkipped, hX as SubmissionDocument, hY as SubmissionDocumentDocumentOneOf, bG as SubmissionErrorType, k3 as SubmissionErrorTypeWithLiterals, Y as SubmissionStatus, ik as SubmissionStatusWithLiterals, id as SubmissionValidationError, ie as SubmissionValidationErrorErrorMessageOneOf, ic as SubmissionValidationErrors, h3 as SubmissionValidationErrorsDetails, ij as SubmissionsQueryResult, h0 as SubmitContactResponse, gu as SubmitSettings, gv as SubmitSettingsSubmitSuccessActionOptionsOneOf, bw as SubmitSuccessAction, jV as SubmitSuccessActionWithLiterals, bH as Submitter, bI as SubmitterSubmitterOneOf, fZ as SubscriptionInfo, b2 as SubscriptionInfoOptInLevel, jr as SubscriptionInfoOptInLevelWithLiterals, dX as TableCellData, dV as TableData, bm as Tag, bM as TagList, jL as TagWithLiterals, eD as Tags, eE as TagsOption, bv as Target, jU as TargetWithLiterals, a9 as TextAlignment, iy as TextAlignmentWithLiterals, dy as TextData, cA as TextInput, e9 as TextNodeStyle, cS as TextStyle, gw as ThankYouMessageOptions, d5 as Thumbnails, ah as ThumbnailsAlignment, iG as ThumbnailsAlignmentWithLiterals, el as TimeInput, aZ as Type, jm as TypeWithLiterals, i5 as UpdateExtendedFieldsRequest, hk as UpdateSubmissionRequest, hl as UpdateSubmissionResponse, aU as UploadFileFormat, jh as UploadFileFormatWithLiterals, gq as UpsertContact, g$ as UpsertContactFromSubmissionRequest, e$ as V4FormFieldContactInfo, f0 as V4FormFieldContactInfoAdditionalInfoOneOf, ft as V4PageNavigationOptions, fs as V4RichContentOptions, i9 as ValidateFormSubmissionRequest, cq as Validation, h4 as ValidationError, $ as ValidationFormat, io as ValidationFormatWithLiterals, fC as ValidationMessages, cr as ValidationValidationOneOf, aD as VerticalAlignment, aH as VerticalAlignmentAlignment, j4 as VerticalAlignmentAlignmentWithLiterals, j0 as VerticalAlignmentWithLiterals, c$ as Video, eU as VideoConferenceOptions, dQ as VideoData, ad as ViewMode, iC as ViewModeWithLiterals, am as ViewRole, iL as ViewRoleWithLiterals, an as VoteRole, iM as VoteRoleWithLiterals, bA as WebhookIdentityType, jZ as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, iu as WidthTypeWithLiterals, iA as WidthWithLiterals, g7 as WixFile, be as WixFileComponentType, g8 as WixFileComponentTypeOptionsOneOf, jD as WixFileComponentTypeWithLiterals, g4 as _Array, g5 as _ArrayComponentTypeOptionsOneOf, g2 as _Boolean, g3 as _BooleanComponentTypeOptionsOneOf, g0 as _Number, g1 as _NumberComponentTypeOptionsOneOf, g6 as _Object, f_ as _String, f$ as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-veLmrmul.mjs';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -1677,6 +1677,13 @@ var ErrorType = /* @__PURE__ */ ((ErrorType2) => {
1677
1677
  ErrorType2["MISSING_SERVICE_OPTION_ERROR"] = "MISSING_SERVICE_OPTION_ERROR";
1678
1678
  ErrorType2["INVALID_SERVICE_OPTIONS_ERROR"] = "INVALID_SERVICE_OPTIONS_ERROR";
1679
1679
  ErrorType2["NO_AVAILABLE_SERVICE_OPTIONS_ERROR"] = "NO_AVAILABLE_SERVICE_OPTIONS_ERROR";
1680
+ ErrorType2["EXACT_CHARACTER_LENGTH_ERROR"] = "EXACT_CHARACTER_LENGTH_ERROR";
1681
+ ErrorType2["CHARACTER_LENGTH_RANGE_ERROR"] = "CHARACTER_LENGTH_RANGE_ERROR";
1682
+ ErrorType2["VALUE_RANGE_ERROR"] = "VALUE_RANGE_ERROR";
1683
+ ErrorType2["EXACT_ITEMS_NUMBER_ERROR"] = "EXACT_ITEMS_NUMBER_ERROR";
1684
+ ErrorType2["DECIMAL_POINT_ERROR"] = "DECIMAL_POINT_ERROR";
1685
+ ErrorType2["INCOMPLETE_DATE_ERROR"] = "INCOMPLETE_DATE_ERROR";
1686
+ ErrorType2["INVALID_VALUE_FOR_PATTERN_ERROR"] = "INVALID_VALUE_FOR_PATTERN_ERROR";
1680
1687
  return ErrorType2;
1681
1688
  })(ErrorType || {});
1682
1689
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {