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