@wix/auto_sdk_forms_submissions 1.0.114 → 1.0.116
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-CYE5689M.d.ts → forms-v4-submission-submissions.universal-B1vkVcUV.d.ts} +18 -15
- 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 +18 -6
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-CYE5689M.d.mts → forms-v4-submission-submissions.universal-B1vkVcUV.d.mts} +18 -15
- 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 +18 -6
- package/build/es/meta.mjs +7 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-CvrBrUxn.d.ts → forms-v4-submission-submissions.universal-DF4f6MQ-.d.ts} +18 -15
- 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 +18 -6
- 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-CvrBrUxn.d.mts → forms-v4-submission-submissions.universal-DF4f6MQ-.d.mts} +18 -15
- 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 +18 -6
- package/build/internal/es/meta.mjs +7 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -542,7 +542,13 @@ interface Form {
|
|
|
542
542
|
*/
|
|
543
543
|
disabledFormMessage?: RichContent;
|
|
544
544
|
/**
|
|
545
|
-
* Whether the form
|
|
545
|
+
* Whether the form is effectively active — `true` only when the user has not disabled the form
|
|
546
|
+
* **and** no system service has placed an `activation_block` on it.
|
|
547
|
+
*
|
|
548
|
+
* Writing `enabled: true` records the user's intent to activate the form, but the value read
|
|
549
|
+
* back may still be `false` if `activation_block` is present (e.g. a plan restriction is in
|
|
550
|
+
* effect). Once the block is lifted the form becomes active automatically without any additional
|
|
551
|
+
* write.
|
|
546
552
|
*
|
|
547
553
|
* Default: `true`
|
|
548
554
|
*/
|
|
@@ -700,12 +706,15 @@ interface DateTimeAdvancedConstraints {
|
|
|
700
706
|
}
|
|
701
707
|
interface Availability {
|
|
702
708
|
/**
|
|
703
|
-
* Available date ranges.
|
|
709
|
+
* Available date ranges.
|
|
710
|
+
* If empty, all dates are available; if non-empty, only dates within these ranges are available.
|
|
711
|
+
* `unavailable_dates` takes priority in case of overlap — for example, an empty `available_dates`
|
|
712
|
+
* with a non-empty `unavailable_dates` means all dates are available except the excluded ranges.
|
|
704
713
|
* @maxSize 5
|
|
705
714
|
*/
|
|
706
715
|
availableDates?: DateRange[];
|
|
707
716
|
/**
|
|
708
|
-
* Unavailable date ranges. They take priority over available_dates in case of overlap.
|
|
717
|
+
* Unavailable date ranges. They take priority over `available_dates` in case of overlap.
|
|
709
718
|
* @maxSize 5
|
|
710
719
|
*/
|
|
711
720
|
unavailableDates?: DateRange[];
|
|
@@ -5768,6 +5777,7 @@ interface RedirectOptions {
|
|
|
5768
5777
|
interface PopupOptions {
|
|
5769
5778
|
/**
|
|
5770
5779
|
* ID of the site popup to open after successful form submission.
|
|
5780
|
+
* @minLength 1
|
|
5771
5781
|
* @maxLength 100
|
|
5772
5782
|
*/
|
|
5773
5783
|
popupId?: string;
|
|
@@ -6293,10 +6303,12 @@ declare enum ErrorType {
|
|
|
6293
6303
|
/** Value does not match the required pattern format */
|
|
6294
6304
|
INVALID_VALUE_FOR_PATTERN_ERROR = "INVALID_VALUE_FOR_PATTERN_ERROR",
|
|
6295
6305
|
/** Default value does not pass form field validation */
|
|
6296
|
-
INVALID_DEFAULT_VALUE_ERROR = "INVALID_DEFAULT_VALUE_ERROR"
|
|
6306
|
+
INVALID_DEFAULT_VALUE_ERROR = "INVALID_DEFAULT_VALUE_ERROR",
|
|
6307
|
+
/** Form cannot be re-enabled while it still violates premium enforcement. */
|
|
6308
|
+
ENFORCEMENT_RE_ENABLE_BLOCKED_ERROR = "ENFORCEMENT_RE_ENABLE_BLOCKED_ERROR"
|
|
6297
6309
|
}
|
|
6298
6310
|
/** @enumType */
|
|
6299
|
-
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' | 'INVALID_DEFAULT_VALUE_ERROR';
|
|
6311
|
+
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' | 'INVALID_DEFAULT_VALUE_ERROR' | 'ENFORCEMENT_RE_ENABLE_BLOCKED_ERROR';
|
|
6300
6312
|
interface CreateSubmissionBySubmitterRequest {
|
|
6301
6313
|
/** Submission to create. */
|
|
6302
6314
|
submission?: FormSubmission;
|
|
@@ -7852,17 +7864,8 @@ type FormSubmissionSearch = {
|
|
|
7852
7864
|
declare const utils: {
|
|
7853
7865
|
search: {
|
|
7854
7866
|
SearchBuilder: () => _wix_sdk_types.SearchBuilder<FormSubmission, FormSubmissionSearchSpec, FormSubmissionSearch>;
|
|
7867
|
+
/** @enumType */
|
|
7855
7868
|
Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionSearchSpec>;
|
|
7856
|
-
/**
|
|
7857
|
-
* Maximum allowed datetime value.
|
|
7858
|
-
*
|
|
7859
|
-
* Supports ISO datetime format or dynamic calculations using "$now" keyword.
|
|
7860
|
-
* The dynamic calculation supports times in the future and past.
|
|
7861
|
-
* The pattern for dynamic calculations: $now([+-]\d{1,2})([yMdmh]).
|
|
7862
|
-
*
|
|
7863
|
-
* Examples: `"2023-01-01"`, `"$now-1d"` (1 day ago), `"$now+2h"` (2 hours from now).
|
|
7864
|
-
* @maxLength 50
|
|
7865
|
-
*/
|
|
7866
7869
|
Sort: _wix_sdk_types.SortFactory<FormSubmissionSearchSpec>;
|
|
7867
7870
|
SearchParams: _wix_sdk_types.SearchParamsFactory<FormSubmissionSearchSpec>;
|
|
7868
7871
|
Aggregation: _wix_sdk_types.AggregationFactory<FormSubmissionSearchSpec>;
|
package/build/cjs/index.d.ts
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 CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { c4 as AccountInfo, id as AccountInfoMetadata, c0 as ActionEvent, g6 as Address, g7 as AddressComponentTypeOptionsOneOf, fQ as AddressInfo, bq as AddressInfoTag, jR as AddressInfoTagWithLiterals, ft as AddressLine2, aX as Alignment, jm as AlignmentWithLiterals, gD as AllowedValuesOptions, d$ as AnchorData, gI as AndCondition, e6 as AppEmbedData, e7 as AppEmbedDataAppDataOneOf, aE as AppType, j3 as AppTypeWithLiterals, h9 as ApplicationError, fF as Appointment, bQ as AppointmentDetails, fG as AppointmentFormatInfoOneOf, b3 as ArrayComponentType, ju as ArrayComponentTypeWithLiterals, cu as ArrayErrorMessages, fb as ArrayItems, fc as ArrayItemsItemTypeOptionsOneOf, f7 as ArrayType, cs as ArrayTypeArrayItems, ct as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, iZ as AspectRatioWithLiterals, er as AudioData, cd as Availability, eA as Backdrop, aN as BackdropType, jc as BackdropTypeWithLiterals, d5 as Background, dQ as BackgroundGradient, eG as BackgroundImage, a7 as BackgroundType, iy as BackgroundTypeWithLiterals, ey as Banner, ib as BaseEventMetadata, eu as BlockquoteData, e8 as BookingData, b0 as BooleanComponentType, jr as BooleanComponentTypeWithLiterals, cm as BooleanErrorMessages, f4 as BooleanType, d3 as Border, eo as BorderColors, ep as BorderWidths, fz as BreakPoint, ha as BulkActionMetadata, h5 as BulkCreateSubmissionBySubmitterData, h4 as BulkCreateSubmissionBySubmitterRequest, h6 as BulkCreateSubmissionBySubmitterResponse, hk as BulkDeleteSubmissionRequest, hl as BulkDeleteSubmissionResult, hP as BulkMarkSubmissionsAsSeenRequest, hp as BulkRemoveSubmissionFromTrashBinRequest, hq as BulkRemoveSubmissionFromTrashBinResult, h7 as BulkSubmissionResult, ij as BulkUpdateFormSubmissionTagsByFilterOptions, i3 as BulkUpdateFormSubmissionTagsByFilterRequest, i4 as BulkUpdateFormSubmissionTagsByFilterResponse, ii as BulkUpdateFormSubmissionTagsOptions, i0 as BulkUpdateFormSubmissionTagsRequest, i1 as BulkUpdateFormSubmissionTagsResponse, i2 as BulkUpdateFormSubmissionTagsResult, et as BulletedListData, d0 as ButtonData, ab as ButtonDataType, iC as ButtonDataTypeWithLiterals, ea as ButtonStyles, ev as CaptionData, eE as CardData, eF as CardDataBackground, aT as CardDataBackgroundType, ji as CardDataBackgroundTypeWithLiterals, ed as CardStyles, aC as CardStylesAlignment, j1 as CardStylesAlignmentWithLiterals, aB as CardStylesType, j0 as CardStylesTypeWithLiterals, en as CellStyle, by as ChangeableProperty, jZ as ChangeablePropertyWithLiterals, f5 as Checkbox, fe as CheckboxGroup, gU as Checkout, df as CodeBlockData, ej as CollapsibleListData, e0 as ColorData, d4 as Colors, ka as CommonQueryWithEntityContext, k9 as CommonSearchWithEntityContext, b7 as ComponentType, jy as ComponentTypeWithLiterals, fg as ComponentsTags, gK as Condition, gG as ConditionNode, gH as ConditionNodeNodeOneOf, hh as ConfirmSubmissionRequest, bi as ConfirmationLevel, jJ as ConfirmationLevelWithLiterals, bC as ContactAutofill, k1 as ContactAutofillWithLiterals, bk as ContactField, jL as ContactFieldWithLiterals, f6 as CorrectAnswersList, hM as CountDeletedSubmissionsRequest, hJ as CountSubmissionsByFilterRequest, hL as CountSubmissionsRequest, c5 as CreateCheckoutFromSubmissionRequest, c6 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gT as CreateCheckoutFromSubmissionResponse, h2 as CreateSubmissionBySubmitterRequest, h3 as CreateSubmissionBySubmitterResponse, g_ as CreateSubmissionRequest, g$ as CreateSubmissionResponse, ak as Crop, iL as CropWithLiterals, hs as CursorPaging, ht as CursorPagingMetadata, hx as CursorQueryPagingMethodOneOf, hA as CursorSearch, hB as CursorSearchPagingMethodOneOf, hu as Cursors, fR as CustomFieldInfo, eQ as CustomOption, cK as DataExtensionsDetails, eV as DateInput, eX as DatePicker, ce as DateRange, cc as DateTimeAdvancedConstraints, cT as DateTimeConstraints, eT as DateTimeInput, $ as DayOfWeek, iq as DayOfWeekWithLiterals, dZ as Decoration, d_ as DecorationDataOneOf, av as DecorationType, iW as DecorationTypeWithLiterals, fu as DefaultCountryConfig, fv as DefaultCountryConfigOptionsOneOf, hi as DeleteSubmissionRequest, hj as DeleteSubmissionResponse, dX as Design, aQ as DesignTarget, jf as DesignTargetWithLiterals, el as Dimensions, aG as Direction, j5 as DirectionWithLiterals, ga as DisplayField, gb as DisplayFieldDisplayFieldTypeOptionsOneOf, bl as DisplayFieldType, jM as DisplayFieldTypeWithLiterals, dh as DividerData, ag as DividerDataAlignment, iH as DividerDataAlignmentWithLiterals, hT as DocumentReady, eJ as DocumentStyle, bW as DomainEvent, bX as DomainEventBodyOneOf, fo as DonationInput, fp as DonationInputOption, hU as DownloadSubmissionRequest, eR as Dropdown, eS as DropdownOption, cA as DynamicPriceOptions, fO as EmailInfo, bf as EmailInfoTag, jG as EmailInfoTagWithLiterals, eh as EmbedData, gX as Empty, bY as EntityCreatedEvent, b$ as EntityDeletedEvent, b_ as EntityUpdatedEvent, bF as ErrorType, k4 as ErrorTypeWithLiterals, e9 as EventData, ic as EventMetadata, bM as ExtendedFields, cM as Field, cN as FieldFieldTypeOptionsOneOf, gz as FieldGroup, gE as FieldOverride, gF as FieldOverridePropertyTypeOptionsOneOf, cE as FieldOverrides, a3 as FieldType, iu as FieldTypeWithLiterals, i6 as FieldViolation, i7 as FieldViolationErrorDataOneOf, cF as FieldsOverrides, fw as FieldsSettings, di as FileData, dj as FileSource, dk as FileSourceDataOneOf, fj as FileType, fk as FileUpload, a_ as FirstDayOfWeek, jp as FirstDayOfWeekWithLiterals, fr as FixedPayment, cz as FixedPriceOptions, e5 as FontFamilyData, e3 as FontSizeData, aw as FontType, iX as FontTypeWithLiterals, c7 as Form, hN as FormDeletedSubmissionsCount, c8 as FormField, cn as FormFieldArrayType, cl as FormFieldBooleanType, fM as FormFieldContactInfo, fN as FormFieldContactInfoAdditionalInfoOneOf, go as FormFieldContactInfoAddressInfo, bs as FormFieldContactInfoContactField, jT as FormFieldContactInfoContactFieldWithLiterals, gp as FormFieldContactInfoCustomFieldInfo, gm as FormFieldContactInfoEmailInfo, bo as FormFieldContactInfoEmailInfoTag, jP as FormFieldContactInfoEmailInfoTagWithLiterals, gn as FormFieldContactInfoPhoneInfo, bp as FormFieldContactInfoPhoneInfoTag, jQ as FormFieldContactInfoPhoneInfoTagWithLiterals, gq as FormFieldContactInfoSubscriptionInfo, ci as FormFieldNumberType, co as FormFieldObjectType, c9 as FormFieldStringType, ca as FormFieldStringTypeFormatOptionsOneOf, fy as FormLayout, gg as FormOverride, gh as FormProperties, gf as FormRule, ih as FormSubmissionQuerySpec, ie as FormSubmissionSearchSpec, bR as FormSubmissionStatusUpdatedEvent, hK as FormSubmissionsCount, bb as Format, a4 as FormatEnumFormat, iv as FormatEnumFormatWithLiterals, jC as FormatWithLiterals, h_ as FormattedFormSubmission, hX as FormattedSubmission, dy as GIF, dx as GIFData, am as GIFType, iN as GIFTypeWithLiterals, dm as GalleryData, dt as GalleryOptions, du as GalleryOptionsLayout, hv as GetDeletedSubmissionRequest, hW as GetFormattedSubmissionRequest, hO as GetMediaUploadURLRequest, hd as GetSubmissionByCheckoutIdRequest, he as GetSubmissionByCheckoutIdResponse, hQ as GetSubmissionDownloadUrlRequest, hb as GetSubmissionRequest, hc as GetSubmissionResponse, d1 as Gradient, a8 as GradientType, iz as GradientTypeWithLiterals, fC as Group, dA as HTMLData, dB as HTMLDataDataOneOf, hV as HeadersEntry, dz as HeadingData, da as Height, gC as HiddenOptions, c2 as IdentificationData, c3 as IdentificationDataIdOneOf, bE as IdentityType, k3 as IdentityTypeWithLiterals, dp as Image, dC as ImageData, dE as ImageDataStyles, aY as ImageFit, jn as ImageFitWithLiterals, aW as ImagePosition, aS as ImagePositionPosition, jh as ImagePositionPositionWithLiterals, jl as ImagePositionWithLiterals, aJ as ImageScalingScaling, j8 as ImageScalingScalingWithLiterals, eb as ImageStyles, fJ as InPersonOptions, aV as Indentation, jk as IndentationWithLiterals, aF as InitialExpandedItems, j4 as InitialExpandedItemsWithLiterals, cO as InputField, cP as InputFieldInputTypeOptionsOneOf, be as InputType, jF as InputTypeWithLiterals, ck as IntegerType, gV as IsFormSubmittableRequest, gW as IsFormSubmittableResponse, dr as Item, ds as ItemDataOneOf, fA as ItemLayout, fB as ItemLayoutItemOneOf, h8 as ItemMetadata, dv as ItemStyle, b1 as ItemType, js as ItemTypeWithLiterals, bn as Kind, jO as KindWithLiterals, aD as Layout, eB as LayoutCellData, ew as LayoutData, ez as LayoutDataBackground, ex as LayoutDataBackgroundImage, aM as LayoutDataBackgroundType, jb as LayoutDataBackgroundTypeWithLiterals, aK as LayoutDataImagePosition, j9 as LayoutDataImagePositionWithLiterals, ai as LayoutType, iJ as LayoutTypeWithLiterals, j2 as LayoutWithLiterals, gs as LimitationRule, ae as LineStyle, iF as LineStyleWithLiterals, dc as Link, e1 as LinkData, dd as LinkDataOneOf, dF as LinkPreviewData, dG as LinkPreviewDataStyles, ac as LinkTarget, iD as LinkTargetWithLiterals, hr as ListDeletedSubmissionsRequest, hY as ListFormattedSubmissionsRequest, hZ as ListFormattedSubmissionsResponse, aU as ListStyle, jj as ListStyleWithLiterals, eq as ListValue, fH as Location, fI as LocationLocationInfoOneOf, dH as MapData, dI as MapSettings, ap as MapType, iQ as MapTypeWithLiterals, fD as Margin, bU as MarketingSubscriptionDetails, dn as Media, eL as MediaItem, eM as MediaItemMediaOneOf, eN as MediaSettings, bc as MeetingType, jD as MeetingTypeWithLiterals, e2 as MentionData, c1 as MessageEnvelope, eI as Metadata, bH as Mode, k6 as ModeWithLiterals, fs as MultilineAddress, cD as MultilineAddressValidation, gr as NestedForm, cH as NestedFormFieldOverrides, cL as NestedFormOverrides, cZ as Node, c_ as NodeDataOneOf, c$ as NodeStyle, a6 as NodeType, ix as NodeTypeWithLiterals, aI as NullValue, j7 as NullValueWithLiterals, a$ as NumberComponentType, jq as NumberComponentTypeWithLiterals, e$ as NumberCorrectAnswersList, cj as NumberErrorMessages, f2 as NumberInput, aZ as NumberOfColumns, jo as NumberOfColumnsWithLiterals, f1 as NumberQuizFieldSettings, f0 as NumberType, g8 as ObjectArray, b9 as ObjectArrayComponentType, g9 as ObjectArrayComponentTypeOptionsOneOf, jA as ObjectArrayComponentTypeWithLiterals, cG as ObjectArrayType, cr as ObjectErrorMessages, f8 as ObjectType, cp as ObjectTypePropertiesType, cq as ObjectTypePropertiesTypePropertiesTypeOneOf, ei as Oembed, bA as Operator, j$ as OperatorWithLiterals, Y as OptInLevel, im as OptInLevelWithLiterals, ff as Option, dU as OptionDesign, dP as OptionLayout, gJ as OrCondition, bN as OrderDetails, es as OrderedListData, aj as Orientation, iK as OrientationWithLiterals, aL as Origin, ja as OriginWithLiterals, bm as OverrideEntityType, bz as OverrideEntityTypeEnumOverrideEntityType, j_ as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jN as OverrideEntityTypeWithLiterals, dl as PDFSettings, gd as PageNavigationOptions, dJ as ParagraphData, gS as PassFailMessages, e_ as Password, g2 as Payment, b6 as PaymentComponentType, g3 as PaymentComponentTypeOptionsOneOf, jx as PaymentComponentTypeWithLiterals, fq as PaymentInput, cx as PaymentType, dL as Permissions, cU as PhoneConstraints, fP as PhoneInfo, bg as PhoneInfoTag, jH as PhoneInfoTagWithLiterals, eU as PhoneInput, fL as PhoneOptions, aA as Placement, i$ as PlacementWithLiterals, eg as PlaybackOptions, d6 as PluginContainerData, aa as PluginContainerDataAlignment, iB as PluginContainerDataAlignmentWithLiterals, d7 as PluginContainerDataWidth, d8 as PluginContainerDataWidthDataOneOf, dV as Poll, dK as PollData, dW as PollDataLayout, dT as PollDesign, dR as PollDesignBackground, dS as PollDesignBackgroundBackgroundOneOf, au as PollDesignBackgroundType, iV as PollDesignBackgroundTypeWithLiterals, dO as PollLayout, at as PollLayoutDirection, iU as PollLayoutDirectionWithLiterals, as as PollLayoutType, iT as PollLayoutTypeWithLiterals, dM as PollOption, gy as PopupOptions, ax as Position, iY as PositionWithLiterals, gi as PostSubmissionTriggers, cv as PredefinedValidation, cw as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, it as PriceTypeWithLiterals, ee as PricingData, cB as Product, fm as ProductCheckboxGroup, fn as ProductCheckboxGroupOption, cC as ProductPriceOptionsOneOf, a1 as ProductType, is as ProductTypeWithLiterals, f9 as PropertiesType, b2 as PropertiesTypeEnum, jt as PropertiesTypeEnumWithLiterals, fa as PropertiesTypePropertiesTypeOptionsOneOf, bO as PublicTags, cy as QuantityLimit, hw as QuerySubmissionRequest, hH as QuerySubmissionsByNamespaceForExportRequest, hI as QuerySubmissionsByNamespaceForExportResponse, hF as QuerySubmissionsByNamespaceRequest, hG as QuerySubmissionsByNamespaceResponse, fd as QuizFieldSettings, gP as QuizSettings, gQ as QuizSettingsPassingCriteriaOneOf, gR as QuizSettingsResultsDisplayOptionsOneOf, eO as RadioGroup, eP as RadioGroupOption, f3 as RatingInput, gx as RedirectOptions, de as Rel, hn as RemoveSubmissionFromTrashBinRequest, ho as RemoveSubmissionFromTrashBinResponse, bS as RemovedSubmissionFromTrash, fx as Repeater, bu as RequiredIndicator, bv as RequiredIndicatorPlacement, jW as RequiredIndicatorPlacementWithLiterals, gt as RequiredIndicatorProperties, jV as RequiredIndicatorWithLiterals, gB as RequiredOptions, az as Resizing, i_ as ResizingWithLiterals, aP as ResponsivenessBehaviour, je as ResponsivenessBehaviourWithLiterals, bZ as RestoreInfo, hm as RestoreSubmissionFromTrashBinRequest, bB as ResultsDisplay, k0 as ResultsDisplayWithLiterals, ec as RibbonStyles, cY as RichContent, gc as RichContentOptions, gA as Rule, gL as RuleFormOverride, gM as RuleFormOverrideEntityTypeOptionsOneOf, aR as Scaling, jg as ScalingWithLiterals, g4 as Scheduling, ba as SchedulingComponentType, g5 as SchedulingComponentTypeOptionsOneOf, jB as SchedulingComponentTypeWithLiterals, hC as SearchDetails, hD as SearchSubmissionsByNamespaceForExportRequest, hE as SearchSubmissionsByNamespaceForExportResponse, hz as SearchSubmissionsByNamespaceRequest, fE as Section, eZ as ServiceOption, fi as ServicesCheckboxGroup, eY as ServicesDropdown, dN as Settings, eC as ShapeData, eD as ShapeDataStyles, fl as Signature, bG as SortOrder, k5 as SortOrderWithLiterals, hy as Sorting, an as Source, iO as SourceWithLiterals, bt as SpamFilterProtectionLevel, jU as SpamFilterProtectionLevelWithLiterals, d9 as Spoiler, e4 as SpoilerData, bd as StaffStrategySelection, jE as StaffStrategySelectionWithLiterals, bI as Status, k7 as StatusWithLiterals, ge as Step, d2 as Stop, a5 as StringComponentType, iw as StringComponentTypeWithLiterals, cQ as StringCorrectAnswersList, cb as StringErrorMessages, cW as StringQuizFieldSettings, cR as StringType, cf as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ip as StringTypeFormatEnumFormatWithLiterals, cS as StringTypeFormatOptionsOneOf, cg as StringTypePhoneConstraints, ch as StringTypeValidationMessages, db as Styles, dD as StylesBorder, ao as StylesPosition, iP as StylesPositionWithLiterals, bD as SubmissionAccess, k2 as SubmissionAccessWithLiterals, bT as SubmissionContactMapped, bV as SubmissionContactMappingSkipped, hR as SubmissionDocument, hS as SubmissionDocumentDocumentOneOf, bJ as SubmissionErrorType, k8 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, il as SubmissionStatusWithLiterals, i9 as SubmissionValidationError, ia as SubmissionValidationErrorErrorMessageOneOf, i8 as SubmissionValidationErrors, h0 as SubmissionValidationErrorsDetails, ig as SubmissionsQueryResult, gZ as SubmitContactResponse, gu as SubmitSettings, gv as SubmitSettingsSubmitSuccessActionOptionsOneOf, bx as SubmitSuccessAction, jY as SubmitSuccessActionWithLiterals, bK as Submitter, bL as SubmitterSubmitterOneOf, bj as SubscriptionChannel, jK as SubscriptionChannelWithLiterals, fS as SubscriptionInfo, br as SubscriptionInfoOptInLevel, jS as SubscriptionInfoOptInLevelWithLiterals, em as TableCellData, ek as TableData, bh as Tag, bP as TagList, jI as TagWithLiterals, gN as Tags, fh as TagsOption, gO as TagsTagList, bw as Target, jX as TargetWithLiterals, ad as TextAlignment, iE as TextAlignmentWithLiterals, dY as TextData, cX as TextInput, eK as TextNodeStyle, dg as TextStyle, gw as ThankYouMessageOptions, dw as Thumbnails, al as ThumbnailsAlignment, iM as ThumbnailsAlignmentWithLiterals, eW as TimeInput, eH as TocData, b8 as Type, jz as TypeWithLiterals, h$ as UpdateExtendedFieldsRequest, hf as UpdateSubmissionRequest, hg as UpdateSubmissionResponse, b5 as UploadFileFormat, jw as UploadFileFormatWithLiterals, gj as UpsertContact, gY as UpsertContactFromSubmissionRequest, gk as V4FormFieldContactInfo, gl as V4FormFieldContactInfoAdditionalInfoOneOf, i5 as ValidateFormSubmissionRequest, cI as Validation, h1 as ValidationError, a0 as ValidationFormat, ir as ValidationFormatWithLiterals, cV as ValidationMessages, cJ as ValidationValidationOneOf, aH as VerticalAlignment, aO as VerticalAlignmentAlignment, jd as VerticalAlignmentAlignmentWithLiterals, j6 as VerticalAlignmentWithLiterals, dq as Video, fK as VideoConferenceOptions, ef as VideoData, ah as ViewMode, iI as ViewModeWithLiterals, aq as ViewRole, iR as ViewRoleWithLiterals, ar as VoteRole, iS as VoteRoleWithLiterals, Z as WebhookIdentityType, io as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, iA as WidthTypeWithLiterals, iG as WidthWithLiterals, g0 as WixFile, b4 as WixFileComponentType, g1 as WixFileComponentTypeOptionsOneOf, jv as WixFileComponentTypeWithLiterals, fZ as _Array, f_ as _ArrayComponentTypeOptionsOneOf, fX as _Boolean, fY as _BooleanComponentTypeOptionsOneOf, fV as _Number, fW as _NumberComponentTypeOptionsOneOf, f$ as _Object, fT as _String, fU as _StringComponentTypeOptionsOneOf, ik as utils } from './forms-v4-submission-submissions.universal-CYE5689M.js';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-B1vkVcUV.js';
|
|
3
|
+
export { c4 as AccountInfo, id as AccountInfoMetadata, c0 as ActionEvent, g6 as Address, g7 as AddressComponentTypeOptionsOneOf, fQ as AddressInfo, bq as AddressInfoTag, jR as AddressInfoTagWithLiterals, ft as AddressLine2, aX as Alignment, jm as AlignmentWithLiterals, gD as AllowedValuesOptions, d$ as AnchorData, gI as AndCondition, e6 as AppEmbedData, e7 as AppEmbedDataAppDataOneOf, aE as AppType, j3 as AppTypeWithLiterals, h9 as ApplicationError, fF as Appointment, bQ as AppointmentDetails, fG as AppointmentFormatInfoOneOf, b3 as ArrayComponentType, ju as ArrayComponentTypeWithLiterals, cu as ArrayErrorMessages, fb as ArrayItems, fc as ArrayItemsItemTypeOptionsOneOf, f7 as ArrayType, cs as ArrayTypeArrayItems, ct as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, iZ as AspectRatioWithLiterals, er as AudioData, cd as Availability, eA as Backdrop, aN as BackdropType, jc as BackdropTypeWithLiterals, d5 as Background, dQ as BackgroundGradient, eG as BackgroundImage, a7 as BackgroundType, iy as BackgroundTypeWithLiterals, ey as Banner, ib as BaseEventMetadata, eu as BlockquoteData, e8 as BookingData, b0 as BooleanComponentType, jr as BooleanComponentTypeWithLiterals, cm as BooleanErrorMessages, f4 as BooleanType, d3 as Border, eo as BorderColors, ep as BorderWidths, fz as BreakPoint, ha as BulkActionMetadata, h5 as BulkCreateSubmissionBySubmitterData, h4 as BulkCreateSubmissionBySubmitterRequest, h6 as BulkCreateSubmissionBySubmitterResponse, hk as BulkDeleteSubmissionRequest, hl as BulkDeleteSubmissionResult, hP as BulkMarkSubmissionsAsSeenRequest, hp as BulkRemoveSubmissionFromTrashBinRequest, hq as BulkRemoveSubmissionFromTrashBinResult, h7 as BulkSubmissionResult, ij as BulkUpdateFormSubmissionTagsByFilterOptions, i3 as BulkUpdateFormSubmissionTagsByFilterRequest, i4 as BulkUpdateFormSubmissionTagsByFilterResponse, ii as BulkUpdateFormSubmissionTagsOptions, i0 as BulkUpdateFormSubmissionTagsRequest, i1 as BulkUpdateFormSubmissionTagsResponse, i2 as BulkUpdateFormSubmissionTagsResult, et as BulletedListData, d0 as ButtonData, ab as ButtonDataType, iC as ButtonDataTypeWithLiterals, ea as ButtonStyles, ev as CaptionData, eE as CardData, eF as CardDataBackground, aT as CardDataBackgroundType, ji as CardDataBackgroundTypeWithLiterals, ed as CardStyles, aC as CardStylesAlignment, j1 as CardStylesAlignmentWithLiterals, aB as CardStylesType, j0 as CardStylesTypeWithLiterals, en as CellStyle, by as ChangeableProperty, jZ as ChangeablePropertyWithLiterals, f5 as Checkbox, fe as CheckboxGroup, gU as Checkout, df as CodeBlockData, ej as CollapsibleListData, e0 as ColorData, d4 as Colors, ka as CommonQueryWithEntityContext, k9 as CommonSearchWithEntityContext, b7 as ComponentType, jy as ComponentTypeWithLiterals, fg as ComponentsTags, gK as Condition, gG as ConditionNode, gH as ConditionNodeNodeOneOf, hh as ConfirmSubmissionRequest, bi as ConfirmationLevel, jJ as ConfirmationLevelWithLiterals, bC as ContactAutofill, k1 as ContactAutofillWithLiterals, bk as ContactField, jL as ContactFieldWithLiterals, f6 as CorrectAnswersList, hM as CountDeletedSubmissionsRequest, hJ as CountSubmissionsByFilterRequest, hL as CountSubmissionsRequest, c5 as CreateCheckoutFromSubmissionRequest, c6 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gT as CreateCheckoutFromSubmissionResponse, h2 as CreateSubmissionBySubmitterRequest, h3 as CreateSubmissionBySubmitterResponse, g_ as CreateSubmissionRequest, g$ as CreateSubmissionResponse, ak as Crop, iL as CropWithLiterals, hs as CursorPaging, ht as CursorPagingMetadata, hx as CursorQueryPagingMethodOneOf, hA as CursorSearch, hB as CursorSearchPagingMethodOneOf, hu as Cursors, fR as CustomFieldInfo, eQ as CustomOption, cK as DataExtensionsDetails, eV as DateInput, eX as DatePicker, ce as DateRange, cc as DateTimeAdvancedConstraints, cT as DateTimeConstraints, eT as DateTimeInput, $ as DayOfWeek, iq as DayOfWeekWithLiterals, dZ as Decoration, d_ as DecorationDataOneOf, av as DecorationType, iW as DecorationTypeWithLiterals, fu as DefaultCountryConfig, fv as DefaultCountryConfigOptionsOneOf, hi as DeleteSubmissionRequest, hj as DeleteSubmissionResponse, dX as Design, aQ as DesignTarget, jf as DesignTargetWithLiterals, el as Dimensions, aG as Direction, j5 as DirectionWithLiterals, ga as DisplayField, gb as DisplayFieldDisplayFieldTypeOptionsOneOf, bl as DisplayFieldType, jM as DisplayFieldTypeWithLiterals, dh as DividerData, ag as DividerDataAlignment, iH as DividerDataAlignmentWithLiterals, hT as DocumentReady, eJ as DocumentStyle, bW as DomainEvent, bX as DomainEventBodyOneOf, fo as DonationInput, fp as DonationInputOption, hU as DownloadSubmissionRequest, eR as Dropdown, eS as DropdownOption, cA as DynamicPriceOptions, fO as EmailInfo, bf as EmailInfoTag, jG as EmailInfoTagWithLiterals, eh as EmbedData, gX as Empty, bY as EntityCreatedEvent, b$ as EntityDeletedEvent, b_ as EntityUpdatedEvent, bF as ErrorType, k4 as ErrorTypeWithLiterals, e9 as EventData, ic as EventMetadata, bM as ExtendedFields, cM as Field, cN as FieldFieldTypeOptionsOneOf, gz as FieldGroup, gE as FieldOverride, gF as FieldOverridePropertyTypeOptionsOneOf, cE as FieldOverrides, a3 as FieldType, iu as FieldTypeWithLiterals, i6 as FieldViolation, i7 as FieldViolationErrorDataOneOf, cF as FieldsOverrides, fw as FieldsSettings, di as FileData, dj as FileSource, dk as FileSourceDataOneOf, fj as FileType, fk as FileUpload, a_ as FirstDayOfWeek, jp as FirstDayOfWeekWithLiterals, fr as FixedPayment, cz as FixedPriceOptions, e5 as FontFamilyData, e3 as FontSizeData, aw as FontType, iX as FontTypeWithLiterals, c7 as Form, hN as FormDeletedSubmissionsCount, c8 as FormField, cn as FormFieldArrayType, cl as FormFieldBooleanType, fM as FormFieldContactInfo, fN as FormFieldContactInfoAdditionalInfoOneOf, go as FormFieldContactInfoAddressInfo, bs as FormFieldContactInfoContactField, jT as FormFieldContactInfoContactFieldWithLiterals, gp as FormFieldContactInfoCustomFieldInfo, gm as FormFieldContactInfoEmailInfo, bo as FormFieldContactInfoEmailInfoTag, jP as FormFieldContactInfoEmailInfoTagWithLiterals, gn as FormFieldContactInfoPhoneInfo, bp as FormFieldContactInfoPhoneInfoTag, jQ as FormFieldContactInfoPhoneInfoTagWithLiterals, gq as FormFieldContactInfoSubscriptionInfo, ci as FormFieldNumberType, co as FormFieldObjectType, c9 as FormFieldStringType, ca as FormFieldStringTypeFormatOptionsOneOf, fy as FormLayout, gg as FormOverride, gh as FormProperties, gf as FormRule, ih as FormSubmissionQuerySpec, ie as FormSubmissionSearchSpec, bR as FormSubmissionStatusUpdatedEvent, hK as FormSubmissionsCount, bb as Format, a4 as FormatEnumFormat, iv as FormatEnumFormatWithLiterals, jC as FormatWithLiterals, h_ as FormattedFormSubmission, hX as FormattedSubmission, dy as GIF, dx as GIFData, am as GIFType, iN as GIFTypeWithLiterals, dm as GalleryData, dt as GalleryOptions, du as GalleryOptionsLayout, hv as GetDeletedSubmissionRequest, hW as GetFormattedSubmissionRequest, hO as GetMediaUploadURLRequest, hd as GetSubmissionByCheckoutIdRequest, he as GetSubmissionByCheckoutIdResponse, hQ as GetSubmissionDownloadUrlRequest, hb as GetSubmissionRequest, hc as GetSubmissionResponse, d1 as Gradient, a8 as GradientType, iz as GradientTypeWithLiterals, fC as Group, dA as HTMLData, dB as HTMLDataDataOneOf, hV as HeadersEntry, dz as HeadingData, da as Height, gC as HiddenOptions, c2 as IdentificationData, c3 as IdentificationDataIdOneOf, bE as IdentityType, k3 as IdentityTypeWithLiterals, dp as Image, dC as ImageData, dE as ImageDataStyles, aY as ImageFit, jn as ImageFitWithLiterals, aW as ImagePosition, aS as ImagePositionPosition, jh as ImagePositionPositionWithLiterals, jl as ImagePositionWithLiterals, aJ as ImageScalingScaling, j8 as ImageScalingScalingWithLiterals, eb as ImageStyles, fJ as InPersonOptions, aV as Indentation, jk as IndentationWithLiterals, aF as InitialExpandedItems, j4 as InitialExpandedItemsWithLiterals, cO as InputField, cP as InputFieldInputTypeOptionsOneOf, be as InputType, jF as InputTypeWithLiterals, ck as IntegerType, gV as IsFormSubmittableRequest, gW as IsFormSubmittableResponse, dr as Item, ds as ItemDataOneOf, fA as ItemLayout, fB as ItemLayoutItemOneOf, h8 as ItemMetadata, dv as ItemStyle, b1 as ItemType, js as ItemTypeWithLiterals, bn as Kind, jO as KindWithLiterals, aD as Layout, eB as LayoutCellData, ew as LayoutData, ez as LayoutDataBackground, ex as LayoutDataBackgroundImage, aM as LayoutDataBackgroundType, jb as LayoutDataBackgroundTypeWithLiterals, aK as LayoutDataImagePosition, j9 as LayoutDataImagePositionWithLiterals, ai as LayoutType, iJ as LayoutTypeWithLiterals, j2 as LayoutWithLiterals, gs as LimitationRule, ae as LineStyle, iF as LineStyleWithLiterals, dc as Link, e1 as LinkData, dd as LinkDataOneOf, dF as LinkPreviewData, dG as LinkPreviewDataStyles, ac as LinkTarget, iD as LinkTargetWithLiterals, hr as ListDeletedSubmissionsRequest, hY as ListFormattedSubmissionsRequest, hZ as ListFormattedSubmissionsResponse, aU as ListStyle, jj as ListStyleWithLiterals, eq as ListValue, fH as Location, fI as LocationLocationInfoOneOf, dH as MapData, dI as MapSettings, ap as MapType, iQ as MapTypeWithLiterals, fD as Margin, bU as MarketingSubscriptionDetails, dn as Media, eL as MediaItem, eM as MediaItemMediaOneOf, eN as MediaSettings, bc as MeetingType, jD as MeetingTypeWithLiterals, e2 as MentionData, c1 as MessageEnvelope, eI as Metadata, bH as Mode, k6 as ModeWithLiterals, fs as MultilineAddress, cD as MultilineAddressValidation, gr as NestedForm, cH as NestedFormFieldOverrides, cL as NestedFormOverrides, cZ as Node, c_ as NodeDataOneOf, c$ as NodeStyle, a6 as NodeType, ix as NodeTypeWithLiterals, aI as NullValue, j7 as NullValueWithLiterals, a$ as NumberComponentType, jq as NumberComponentTypeWithLiterals, e$ as NumberCorrectAnswersList, cj as NumberErrorMessages, f2 as NumberInput, aZ as NumberOfColumns, jo as NumberOfColumnsWithLiterals, f1 as NumberQuizFieldSettings, f0 as NumberType, g8 as ObjectArray, b9 as ObjectArrayComponentType, g9 as ObjectArrayComponentTypeOptionsOneOf, jA as ObjectArrayComponentTypeWithLiterals, cG as ObjectArrayType, cr as ObjectErrorMessages, f8 as ObjectType, cp as ObjectTypePropertiesType, cq as ObjectTypePropertiesTypePropertiesTypeOneOf, ei as Oembed, bA as Operator, j$ as OperatorWithLiterals, Y as OptInLevel, im as OptInLevelWithLiterals, ff as Option, dU as OptionDesign, dP as OptionLayout, gJ as OrCondition, bN as OrderDetails, es as OrderedListData, aj as Orientation, iK as OrientationWithLiterals, aL as Origin, ja as OriginWithLiterals, bm as OverrideEntityType, bz as OverrideEntityTypeEnumOverrideEntityType, j_ as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jN as OverrideEntityTypeWithLiterals, dl as PDFSettings, gd as PageNavigationOptions, dJ as ParagraphData, gS as PassFailMessages, e_ as Password, g2 as Payment, b6 as PaymentComponentType, g3 as PaymentComponentTypeOptionsOneOf, jx as PaymentComponentTypeWithLiterals, fq as PaymentInput, cx as PaymentType, dL as Permissions, cU as PhoneConstraints, fP as PhoneInfo, bg as PhoneInfoTag, jH as PhoneInfoTagWithLiterals, eU as PhoneInput, fL as PhoneOptions, aA as Placement, i$ as PlacementWithLiterals, eg as PlaybackOptions, d6 as PluginContainerData, aa as PluginContainerDataAlignment, iB as PluginContainerDataAlignmentWithLiterals, d7 as PluginContainerDataWidth, d8 as PluginContainerDataWidthDataOneOf, dV as Poll, dK as PollData, dW as PollDataLayout, dT as PollDesign, dR as PollDesignBackground, dS as PollDesignBackgroundBackgroundOneOf, au as PollDesignBackgroundType, iV as PollDesignBackgroundTypeWithLiterals, dO as PollLayout, at as PollLayoutDirection, iU as PollLayoutDirectionWithLiterals, as as PollLayoutType, iT as PollLayoutTypeWithLiterals, dM as PollOption, gy as PopupOptions, ax as Position, iY as PositionWithLiterals, gi as PostSubmissionTriggers, cv as PredefinedValidation, cw as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, it as PriceTypeWithLiterals, ee as PricingData, cB as Product, fm as ProductCheckboxGroup, fn as ProductCheckboxGroupOption, cC as ProductPriceOptionsOneOf, a1 as ProductType, is as ProductTypeWithLiterals, f9 as PropertiesType, b2 as PropertiesTypeEnum, jt as PropertiesTypeEnumWithLiterals, fa as PropertiesTypePropertiesTypeOptionsOneOf, bO as PublicTags, cy as QuantityLimit, hw as QuerySubmissionRequest, hH as QuerySubmissionsByNamespaceForExportRequest, hI as QuerySubmissionsByNamespaceForExportResponse, hF as QuerySubmissionsByNamespaceRequest, hG as QuerySubmissionsByNamespaceResponse, fd as QuizFieldSettings, gP as QuizSettings, gQ as QuizSettingsPassingCriteriaOneOf, gR as QuizSettingsResultsDisplayOptionsOneOf, eO as RadioGroup, eP as RadioGroupOption, f3 as RatingInput, gx as RedirectOptions, de as Rel, hn as RemoveSubmissionFromTrashBinRequest, ho as RemoveSubmissionFromTrashBinResponse, bS as RemovedSubmissionFromTrash, fx as Repeater, bu as RequiredIndicator, bv as RequiredIndicatorPlacement, jW as RequiredIndicatorPlacementWithLiterals, gt as RequiredIndicatorProperties, jV as RequiredIndicatorWithLiterals, gB as RequiredOptions, az as Resizing, i_ as ResizingWithLiterals, aP as ResponsivenessBehaviour, je as ResponsivenessBehaviourWithLiterals, bZ as RestoreInfo, hm as RestoreSubmissionFromTrashBinRequest, bB as ResultsDisplay, k0 as ResultsDisplayWithLiterals, ec as RibbonStyles, cY as RichContent, gc as RichContentOptions, gA as Rule, gL as RuleFormOverride, gM as RuleFormOverrideEntityTypeOptionsOneOf, aR as Scaling, jg as ScalingWithLiterals, g4 as Scheduling, ba as SchedulingComponentType, g5 as SchedulingComponentTypeOptionsOneOf, jB as SchedulingComponentTypeWithLiterals, hC as SearchDetails, hD as SearchSubmissionsByNamespaceForExportRequest, hE as SearchSubmissionsByNamespaceForExportResponse, hz as SearchSubmissionsByNamespaceRequest, fE as Section, eZ as ServiceOption, fi as ServicesCheckboxGroup, eY as ServicesDropdown, dN as Settings, eC as ShapeData, eD as ShapeDataStyles, fl as Signature, bG as SortOrder, k5 as SortOrderWithLiterals, hy as Sorting, an as Source, iO as SourceWithLiterals, bt as SpamFilterProtectionLevel, jU as SpamFilterProtectionLevelWithLiterals, d9 as Spoiler, e4 as SpoilerData, bd as StaffStrategySelection, jE as StaffStrategySelectionWithLiterals, bI as Status, k7 as StatusWithLiterals, ge as Step, d2 as Stop, a5 as StringComponentType, iw as StringComponentTypeWithLiterals, cQ as StringCorrectAnswersList, cb as StringErrorMessages, cW as StringQuizFieldSettings, cR as StringType, cf as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ip as StringTypeFormatEnumFormatWithLiterals, cS as StringTypeFormatOptionsOneOf, cg as StringTypePhoneConstraints, ch as StringTypeValidationMessages, db as Styles, dD as StylesBorder, ao as StylesPosition, iP as StylesPositionWithLiterals, bD as SubmissionAccess, k2 as SubmissionAccessWithLiterals, bT as SubmissionContactMapped, bV as SubmissionContactMappingSkipped, hR as SubmissionDocument, hS as SubmissionDocumentDocumentOneOf, bJ as SubmissionErrorType, k8 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, il as SubmissionStatusWithLiterals, i9 as SubmissionValidationError, ia as SubmissionValidationErrorErrorMessageOneOf, i8 as SubmissionValidationErrors, h0 as SubmissionValidationErrorsDetails, ig as SubmissionsQueryResult, gZ as SubmitContactResponse, gu as SubmitSettings, gv as SubmitSettingsSubmitSuccessActionOptionsOneOf, bx as SubmitSuccessAction, jY as SubmitSuccessActionWithLiterals, bK as Submitter, bL as SubmitterSubmitterOneOf, bj as SubscriptionChannel, jK as SubscriptionChannelWithLiterals, fS as SubscriptionInfo, br as SubscriptionInfoOptInLevel, jS as SubscriptionInfoOptInLevelWithLiterals, em as TableCellData, ek as TableData, bh as Tag, bP as TagList, jI as TagWithLiterals, gN as Tags, fh as TagsOption, gO as TagsTagList, bw as Target, jX as TargetWithLiterals, ad as TextAlignment, iE as TextAlignmentWithLiterals, dY as TextData, cX as TextInput, eK as TextNodeStyle, dg as TextStyle, gw as ThankYouMessageOptions, dw as Thumbnails, al as ThumbnailsAlignment, iM as ThumbnailsAlignmentWithLiterals, eW as TimeInput, eH as TocData, b8 as Type, jz as TypeWithLiterals, h$ as UpdateExtendedFieldsRequest, hf as UpdateSubmissionRequest, hg as UpdateSubmissionResponse, b5 as UploadFileFormat, jw as UploadFileFormatWithLiterals, gj as UpsertContact, gY as UpsertContactFromSubmissionRequest, gk as V4FormFieldContactInfo, gl as V4FormFieldContactInfoAdditionalInfoOneOf, i5 as ValidateFormSubmissionRequest, cI as Validation, h1 as ValidationError, a0 as ValidationFormat, ir as ValidationFormatWithLiterals, cV as ValidationMessages, cJ as ValidationValidationOneOf, aH as VerticalAlignment, aO as VerticalAlignmentAlignment, jd as VerticalAlignmentAlignmentWithLiterals, j6 as VerticalAlignmentWithLiterals, dq as Video, fK as VideoConferenceOptions, ef as VideoData, ah as ViewMode, iI as ViewModeWithLiterals, aq as ViewRole, iR as ViewRoleWithLiterals, ar as VoteRole, iS as VoteRoleWithLiterals, Z as WebhookIdentityType, io as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, iA as WidthTypeWithLiterals, iG as WidthWithLiterals, g0 as WixFile, b4 as WixFileComponentType, g1 as WixFileComponentTypeOptionsOneOf, jv as WixFileComponentTypeWithLiterals, fZ as _Array, f_ as _ArrayComponentTypeOptionsOneOf, fX as _Boolean, fY as _BooleanComponentTypeOptionsOneOf, fV as _Number, fW as _NumberComponentTypeOptionsOneOf, f$ as _Object, fT as _String, fU as _StringComponentTypeOptionsOneOf, ik as utils } from './forms-v4-submission-submissions.universal-B1vkVcUV.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -297,6 +297,12 @@ function resolveWixFormsV4FormSubmissionServiceUrl(opts) {
|
|
|
297
297
|
srcPath: "/_api/form-submission-service",
|
|
298
298
|
destPath: ""
|
|
299
299
|
}
|
|
300
|
+
],
|
|
301
|
+
"editor.wixapps.net": [
|
|
302
|
+
{
|
|
303
|
+
srcPath: "/_api/form-submission-service",
|
|
304
|
+
destPath: ""
|
|
305
|
+
}
|
|
300
306
|
]
|
|
301
307
|
};
|
|
302
308
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|
|
@@ -1858,6 +1864,7 @@ var ErrorType = /* @__PURE__ */ ((ErrorType2) => {
|
|
|
1858
1864
|
ErrorType2["INCOMPLETE_DATE_ERROR"] = "INCOMPLETE_DATE_ERROR";
|
|
1859
1865
|
ErrorType2["INVALID_VALUE_FOR_PATTERN_ERROR"] = "INVALID_VALUE_FOR_PATTERN_ERROR";
|
|
1860
1866
|
ErrorType2["INVALID_DEFAULT_VALUE_ERROR"] = "INVALID_DEFAULT_VALUE_ERROR";
|
|
1867
|
+
ErrorType2["ENFORCEMENT_RE_ENABLE_BLOCKED_ERROR"] = "ENFORCEMENT_RE_ENABLE_BLOCKED_ERROR";
|
|
1861
1868
|
return ErrorType2;
|
|
1862
1869
|
})(ErrorType || {});
|
|
1863
1870
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|