@wix/auto_sdk_forms_submissions 1.0.76 → 1.0.78
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-C6hSoFI3.d.ts → forms-v4-submission-submissions.universal-C2J-TaQm.d.ts} +50 -3
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +11 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +8 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +50 -4
- package/build/cjs/meta.js +8 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-C6hSoFI3.d.mts → forms-v4-submission-submissions.universal-C2J-TaQm.d.mts} +50 -3
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +10 -1
- 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 +50 -4
- package/build/es/meta.mjs +7 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-DcEv17-H.d.ts → forms-v4-submission-submissions.universal-utyxsDjV.d.ts} +50 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +11 -1
- 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 +8 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +50 -4
- package/build/internal/cjs/meta.js +8 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-DcEv17-H.d.mts → forms-v4-submission-submissions.universal-utyxsDjV.d.mts} +50 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +10 -1
- 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 +50 -4
- package/build/internal/es/meta.mjs +7 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1168,10 +1168,12 @@ declare enum StringComponentType {
|
|
|
1168
1168
|
/** Calendar-style date picker component. */
|
|
1169
1169
|
DATE_PICKER = "DATE_PICKER",
|
|
1170
1170
|
/** Dropdown component for selecting available services. */
|
|
1171
|
-
SERVICES_DROPDOWN = "SERVICES_DROPDOWN"
|
|
1171
|
+
SERVICES_DROPDOWN = "SERVICES_DROPDOWN",
|
|
1172
|
+
/** Component which obscures input characters. */
|
|
1173
|
+
PASSWORD = "PASSWORD"
|
|
1172
1174
|
}
|
|
1173
1175
|
/** @enumType */
|
|
1174
|
-
type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
|
|
1176
|
+
type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN' | 'PASSWORD';
|
|
1175
1177
|
interface TextInput {
|
|
1176
1178
|
/**
|
|
1177
1179
|
* Field label.
|
|
@@ -2964,6 +2966,8 @@ interface LayoutData {
|
|
|
2964
2966
|
responsivenessBreakpoint?: number | null;
|
|
2965
2967
|
/** Styling for the layout's container. */
|
|
2966
2968
|
containerData?: PluginContainerData;
|
|
2969
|
+
/** Defines where selected design propertied applies to */
|
|
2970
|
+
designTarget?: DesignTargetWithLiterals;
|
|
2967
2971
|
}
|
|
2968
2972
|
declare enum Scaling {
|
|
2969
2973
|
/** Auto image scaling */
|
|
@@ -3025,6 +3029,14 @@ declare enum ResponsivenessBehaviour {
|
|
|
3025
3029
|
}
|
|
3026
3030
|
/** @enumType */
|
|
3027
3031
|
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
3032
|
+
declare enum DesignTarget {
|
|
3033
|
+
/** Design applied to layout */
|
|
3034
|
+
LAYOUT = "LAYOUT",
|
|
3035
|
+
/** Design applied to cells */
|
|
3036
|
+
CELL = "CELL"
|
|
3037
|
+
}
|
|
3038
|
+
/** @enumType */
|
|
3039
|
+
type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
3028
3040
|
interface LayoutCellData {
|
|
3029
3041
|
/** Size of the cell in 12 columns grid. */
|
|
3030
3042
|
colSpan?: number | null;
|
|
@@ -3491,6 +3503,36 @@ interface ServiceOption {
|
|
|
3491
3503
|
*/
|
|
3492
3504
|
value?: string | null;
|
|
3493
3505
|
}
|
|
3506
|
+
interface Password {
|
|
3507
|
+
/**
|
|
3508
|
+
* Field label.
|
|
3509
|
+
* @maxLength 350
|
|
3510
|
+
*/
|
|
3511
|
+
label?: string | null;
|
|
3512
|
+
/** Additional description or instructions for the field. */
|
|
3513
|
+
description?: RichContent;
|
|
3514
|
+
/**
|
|
3515
|
+
* Placeholder text shown inside the field when it's empty.
|
|
3516
|
+
* Useful for providing a hint about the expected format or content.
|
|
3517
|
+
* @maxLength 100
|
|
3518
|
+
*/
|
|
3519
|
+
placeholder?: string | null;
|
|
3520
|
+
/**
|
|
3521
|
+
* Whether to display the field label.
|
|
3522
|
+
*
|
|
3523
|
+
* Default: `true`
|
|
3524
|
+
*/
|
|
3525
|
+
showLabel?: boolean | null;
|
|
3526
|
+
/**
|
|
3527
|
+
* Default value for the field. This value is pre-populated in the field when the form loads.
|
|
3528
|
+
* @maxLength 20000
|
|
3529
|
+
*/
|
|
3530
|
+
default?: string | null;
|
|
3531
|
+
/** Media content associated with the field, such as an image. */
|
|
3532
|
+
media?: MediaItem;
|
|
3533
|
+
/** Configuration for the media content. */
|
|
3534
|
+
mediaSettings?: MediaSettings;
|
|
3535
|
+
}
|
|
3494
3536
|
interface NumberType {
|
|
3495
3537
|
/** The maximum value of the number. Inclusive. */
|
|
3496
3538
|
maximum?: number | null;
|
|
@@ -4524,6 +4566,8 @@ interface _String extends _StringComponentTypeOptionsOneOf {
|
|
|
4524
4566
|
datePickerOptions?: DatePicker;
|
|
4525
4567
|
/** Services dropdown component settings. */
|
|
4526
4568
|
servicesDropdownOptions?: ServicesDropdown;
|
|
4569
|
+
/** Password component settings. */
|
|
4570
|
+
passwordOptions?: Password;
|
|
4527
4571
|
/** Validation configuration for the string input. */
|
|
4528
4572
|
validation?: StringType;
|
|
4529
4573
|
/**
|
|
@@ -4552,6 +4596,8 @@ interface _StringComponentTypeOptionsOneOf {
|
|
|
4552
4596
|
datePickerOptions?: DatePicker;
|
|
4553
4597
|
/** Services dropdown component settings. */
|
|
4554
4598
|
servicesDropdownOptions?: ServicesDropdown;
|
|
4599
|
+
/** Password component settings. */
|
|
4600
|
+
passwordOptions?: Password;
|
|
4555
4601
|
}
|
|
4556
4602
|
interface _Number extends _NumberComponentTypeOptionsOneOf {
|
|
4557
4603
|
/** Number input settings. */
|
|
@@ -6824,6 +6870,7 @@ declare function onSubmissionContactMappingSkipped(handler: (event: SubmissionCo
|
|
|
6824
6870
|
interface SubmissionUpdatedEnvelope {
|
|
6825
6871
|
entity: FormSubmission;
|
|
6826
6872
|
metadata: EventMetadata;
|
|
6873
|
+
modifiedFields: Record<string, any>;
|
|
6827
6874
|
}
|
|
6828
6875
|
/**
|
|
6829
6876
|
* > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
|
|
@@ -7647,4 +7694,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7647
7694
|
fieldsToValidate?: string[];
|
|
7648
7695
|
}
|
|
7649
7696
|
|
|
7650
|
-
export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, Type as a$, OptInLevel as a0, StringTypeFormatEnumFormat as a1, ValidationFormat as a2, ProductType as a3, PriceType as a4, FieldType as a5, FormatEnumFormat as a6, StringComponentType as a7, NodeType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, LayoutDataImagePosition as aK, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, ImagePosition as aN, Alignment as aO, ImageFit as aP, NumberOfColumns as aQ, FirstDayOfWeek as aR, NumberComponentType as aS, BooleanComponentType as aT, ItemType as aU, PropertiesTypeEnum as aV, ArrayComponentType as aW, WixFileComponentType as aX, UploadFileFormat as aY, PaymentComponentType as aZ, ComponentType as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type ArrayTypeArrayItems as b$, ObjectArrayComponentType as b0, SchedulingComponentType as b1, Format as b2, InputType as b3, EmailInfoTag as b4, PhoneInfoTag as b5, Tag as b6, ConfirmationLevel as b7, ContactField as b8, DisplayFieldType as b9, type PublicTags as bA, type TagList as bB, type FormSubmissionStatusUpdatedEvent as bC, type RemovedSubmissionFromTrash as bD, type SubmissionContactMapped as bE, type MarketingSubscriptionDetails as bF, type SubmissionContactMappingSkipped as bG, type CreateCheckoutFromSubmissionRequest as bH, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bI, type Form as bJ, type FormField as bK, type FormFieldStringType as bL, type FormFieldStringTypeFormatOptionsOneOf as bM, type StringErrorMessages as bN, type StringTypeDateTimeConstraints as bO, type StringTypePhoneConstraints as bP, type StringTypeValidationMessages as bQ, type FormFieldNumberType as bR, type NumberErrorMessages as bS, type IntegerType as bT, type FormFieldBooleanType as bU, type BooleanErrorMessages as bV, type FormFieldArrayType as bW, type FormFieldObjectType as bX, type ObjectTypePropertiesType as bY, type ObjectTypePropertiesTypePropertiesTypeOneOf as bZ, type ObjectErrorMessages as b_, OverrideEntityType as ba, Kind as bb, FormFieldContactInfoEmailInfoTag as bc, FormFieldContactInfoPhoneInfoTag as bd, AddressInfoTag as be, SubscriptionInfoOptInLevel as bf, FormFieldContactInfoContactField as bg, SpamFilterProtectionLevel as bh, RequiredIndicator as bi, RequiredIndicatorPlacement as bj, Target as bk, SubmitSuccessAction as bl, ChangeableProperty as bm, OverrideEntityTypeEnumOverrideEntityType as bn, Operator as bo, WebhookIdentityType as bp, IdentityType as bq, ErrorType as br, SortOrder as bs, Mode as bt, Status as bu, SubmissionErrorType as bv, type Submitter as bw, type SubmitterSubmitterOneOf as bx, type ExtendedFields as by, type OrderDetails as bz, type CreateSubmissionValidationErrors as c, type GIF as c$, type ArrayTypeArrayItemsItemsOneOf as c0, type ArrayErrorMessages as c1, type PredefinedValidation as c2, type PredefinedValidationFormatOptionsOneOf as c3, type PaymentType as c4, type QuantityLimit as c5, type FixedPriceOptions as c6, type DynamicPriceOptions as c7, type Product as c8, type ProductPriceOptionsOneOf as c9, type PluginContainerData as cA, type PluginContainerDataWidth as cB, type PluginContainerDataWidthDataOneOf as cC, type Spoiler as cD, type Height as cE, type Styles as cF, type Link as cG, type LinkDataOneOf as cH, type Rel as cI, type CodeBlockData as cJ, type TextStyle as cK, type DividerData as cL, type FileData as cM, type FileSource as cN, type FileSourceDataOneOf as cO, type PDFSettings as cP, type GalleryData as cQ, type Media as cR, type Image as cS, type Video as cT, type Item as cU, type ItemDataOneOf as cV, type GalleryOptions as cW, type GalleryOptionsLayout as cX, type ItemStyle as cY, type Thumbnails as cZ, type GIFData as c_, type MultilineAddressValidation as ca, type FieldOverrides as cb, type FieldsOverrides as cc, type ObjectArrayType as cd, type NestedFormFieldOverrides as ce, type Validation as cf, type ValidationValidationOneOf as cg, type DataExtensionsDetails as ch, type NestedFormOverrides as ci, type Field as cj, type FieldFieldTypeOptionsOneOf as ck, type InputField as cl, type InputFieldInputTypeOptionsOneOf as cm, type StringType as cn, type StringTypeFormatOptionsOneOf as co, type DateTimeConstraints as cp, type PhoneConstraints as cq, type ValidationMessages as cr, type TextInput as cs, type RichContent as ct, type Node as cu, type NodeDataOneOf as cv, type NodeStyle as cw, type ButtonData as cx, type Border as cy, type Colors as cz, type UpdateSubmission as d, type BackgroundImage as d$, type HeadingData as d0, type HTMLData as d1, type HTMLDataDataOneOf as d2, type ImageData as d3, type StylesBorder as d4, type ImageDataStyles as d5, type LinkPreviewData as d6, type LinkPreviewDataStyles as d7, type MapData as d8, type MapSettings as d9, type AppEmbedData as dA, type AppEmbedDataAppDataOneOf as dB, type BookingData as dC, type EventData as dD, type ButtonStyles as dE, type ImageStyles as dF, type RibbonStyles as dG, type CardStyles as dH, type PricingData as dI, type VideoData as dJ, type PlaybackOptions as dK, type EmbedData as dL, type Oembed as dM, type CollapsibleListData as dN, type TableData as dO, type Dimensions as dP, type TableCellData as dQ, type CellStyle as dR, type BorderColors as dS, type BorderWidths as dT, type ListValue as dU, type AudioData as dV, type OrderedListData as dW, type BulletedListData as dX, type BlockquoteData as dY, type CaptionData as dZ, type LayoutData as d_, type ParagraphData as da, type PollData as db, type Permissions as dc, type PollOption as dd, type Settings as de, type PollLayout as df, type OptionLayout as dg, type Gradient as dh, type Background as di, type BackgroundBackgroundOneOf as dj, type PollDesign as dk, type OptionDesign as dl, type Poll as dm, type PollDataLayout as dn, type Design as dp, type TextData as dq, type Decoration as dr, type DecorationDataOneOf as ds, type AnchorData as dt, type ColorData as du, type LinkData as dv, type MentionData as dw, type FontSizeData as dx, type SpoilerData as dy, type FontFamilyData as dz, type UpdateSubmissionValidationErrors as e, type PhoneOptions as e$, type LayoutCellData as e0, type Metadata as e1, type DocumentStyle as e2, type TextNodeStyle as e3, type MediaItem as e4, type MediaItemMediaOneOf as e5, type MediaSettings as e6, type RadioGroup as e7, type RadioGroupOption as e8, type CustomOption as e9, type FileUpload as eA, type Signature as eB, type ProductCheckboxGroup as eC, type ProductCheckboxGroupOption as eD, type DonationInput as eE, type DonationInputOption as eF, type PaymentInput as eG, type FixedPayment as eH, type MultilineAddress as eI, type AddressLine2 as eJ, type DefaultCountryConfig as eK, type DefaultCountryConfigOptionsOneOf as eL, type FieldsSettings as eM, type Repeater as eN, type FormLayout as eO, type BreakPoint as eP, type ItemLayout as eQ, type ItemLayoutItemOneOf as eR, type Group as eS, type Margin as eT, type Section as eU, type Appointment as eV, type AppointmentFormatInfoOneOf as eW, type Location as eX, type LocationLocationInfoOneOf as eY, type InPersonOptions as eZ, type VideoConferenceOptions as e_, type Dropdown as ea, type DropdownOption as eb, type DateTimeInput as ec, type PhoneInput as ed, type DateInput as ee, type TimeInput as ef, type DatePicker as eg, type ServicesDropdown as eh, type ServiceOption as ei, type NumberType as ej, type NumberInput as ek, type RatingInput as el, type BooleanType as em, type Checkbox as en, type ArrayType as eo, type ObjectType as ep, type PropertiesType as eq, type PropertiesTypePropertiesTypeOptionsOneOf as er, type ArrayItems as es, type ArrayItemsItemTypeOptionsOneOf as et, type CheckboxGroup as eu, type Option as ev, type ComponentsTags as ew, type TagsOption as ex, type ServicesCheckboxGroup as ey, type FileType as ez, type ConfirmSubmissionResponse as f, type RuleFormOverrideEntityTypeOptionsOneOf as f$, type FormFieldContactInfo as f0, type FormFieldContactInfoAdditionalInfoOneOf as f1, type EmailInfo as f2, type PhoneInfo as f3, type AddressInfo as f4, type CustomFieldInfo as f5, type SubscriptionInfo as f6, type _String as f7, type _StringComponentTypeOptionsOneOf as f8, type _Number as f9, type V4FormFieldContactInfo as fA, type V4FormFieldContactInfoAdditionalInfoOneOf as fB, type FormFieldContactInfoEmailInfo as fC, type FormFieldContactInfoPhoneInfo as fD, type FormFieldContactInfoAddressInfo as fE, type FormFieldContactInfoCustomFieldInfo as fF, type FormFieldContactInfoSubscriptionInfo as fG, type NestedForm as fH, type LimitationRule as fI, type RequiredIndicatorProperties as fJ, type SubmitSettings as fK, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fL, type ThankYouMessageOptions as fM, type RedirectOptions as fN, type FieldGroup as fO, type Rule as fP, type RequiredOptions as fQ, type HiddenOptions as fR, type AllowedValuesOptions as fS, type FieldOverride as fT, type FieldOverridePropertyTypeOptionsOneOf as fU, type ConditionNode as fV, type ConditionNodeNodeOneOf as fW, type AndCondition as fX, type OrCondition as fY, type Condition as fZ, type RuleFormOverride as f_, type _NumberComponentTypeOptionsOneOf as fa, type _Boolean as fb, type _BooleanComponentTypeOptionsOneOf as fc, type _Array as fd, type _ArrayComponentTypeOptionsOneOf as fe, type _Object as ff, type WixFile as fg, type WixFileComponentTypeOptionsOneOf as fh, type Payment as fi, type PaymentComponentTypeOptionsOneOf as fj, type Scheduling as fk, type SchedulingComponentTypeOptionsOneOf as fl, type Address as fm, type AddressComponentTypeOptionsOneOf as fn, type ObjectArray as fo, type ObjectArrayComponentTypeOptionsOneOf as fp, type DisplayField as fq, type DisplayFieldDisplayFieldTypeOptionsOneOf as fr, type RichContentOptions as fs, type PageNavigationOptions as ft, type Step as fu, type FormRule as fv, type FormOverride as fw, type FormProperties as fx, type PostSubmissionTriggers as fy, type UpsertContact as fz, type BulkDeleteSubmissionResponse as g, type SearchDetails as g$, type Tags as g0, type TagsTagList as g1, type CreateCheckoutFromSubmissionResponse as g2, type Checkout as g3, type IsFormSubmittableRequest as g4, type IsFormSubmittableResponse as g5, type DomainEvent as g6, type DomainEventBodyOneOf as g7, type EntityCreatedEvent as g8, type RestoreInfo as g9, type GetSubmissionRequest as gA, type GetSubmissionResponse as gB, type GetSubmissionByCheckoutIdRequest as gC, type GetSubmissionByCheckoutIdResponse as gD, type UpdateSubmissionRequest as gE, type UpdateSubmissionResponse as gF, type ConfirmSubmissionRequest as gG, type DeleteSubmissionRequest as gH, type DeleteSubmissionResponse as gI, type BulkDeleteSubmissionRequest as gJ, type BulkDeleteSubmissionResult as gK, type RestoreSubmissionFromTrashBinRequest as gL, type RemoveSubmissionFromTrashBinRequest as gM, type RemoveSubmissionFromTrashBinResponse as gN, type BulkRemoveSubmissionFromTrashBinRequest as gO, type BulkRemoveSubmissionFromTrashBinResult as gP, type ListDeletedSubmissionsRequest as gQ, type CursorPaging as gR, type CursorPagingMetadata as gS, type Cursors as gT, type GetDeletedSubmissionRequest as gU, type QuerySubmissionRequest as gV, type CursorQueryPagingMethodOneOf as gW, type Sorting as gX, type SearchSubmissionsByNamespaceRequest as gY, type CursorSearch as gZ, type CursorSearchPagingMethodOneOf as g_, type EntityUpdatedEvent as ga, type EntityDeletedEvent as gb, type ActionEvent as gc, type Empty as gd, type MessageEnvelope as ge, type IdentificationData as gf, type IdentificationDataIdOneOf as gg, type UpsertContactFromSubmissionRequest as gh, type SubmitContactResponse as gi, type CreateSubmissionRequest as gj, type CreateSubmissionResponse as gk, type SubmissionValidationErrorsDetails as gl, type ValidationError as gm, type CreateSubmissionForMigrationRequest as gn, type CreateSubmissionForMigrationResponse as go, type BulkCreateSubmissionsForMigrationRequest as gp, type BulkCreateSubmissionsForMigrationResponse as gq, type BulkSubmissionResult as gr, type ItemMetadata as gs, type ApplicationError as gt, type BulkActionMetadata as gu, type CreateSubmissionBySubmitterRequest as gv, type CreateSubmissionBySubmitterResponse as gw, type BulkCreateSubmissionBySubmitterRequest as gx, type BulkCreateSubmissionBySubmitterData as gy, type BulkCreateSubmissionBySubmitterResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type SourceWithLiterals as h$, type SearchSubmissionsByNamespaceForExportRequest as h0, type SearchSubmissionsByNamespaceForExportResponse as h1, type QuerySubmissionsByNamespaceRequest as h2, type QuerySubmissionsByNamespaceResponse as h3, type QuerySubmissionsByNamespaceForExportRequest as h4, type QuerySubmissionsByNamespaceForExportResponse as h5, type CountSubmissionsByFilterRequest as h6, type FormSubmissionsCount as h7, type CountSubmissionsRequest as h8, type CountDeletedSubmissionsRequest as h9, type FormSubmissionSearchSpec as hA, type SubmissionsQueryResult as hB, type FormSubmissionQuerySpec as hC, type SubmissionStatusWithLiterals as hD, type OptInLevelWithLiterals as hE, type StringTypeFormatEnumFormatWithLiterals as hF, type ValidationFormatWithLiterals as hG, type ProductTypeWithLiterals as hH, type PriceTypeWithLiterals as hI, type FieldTypeWithLiterals as hJ, type FormatEnumFormatWithLiterals as hK, type StringComponentTypeWithLiterals as hL, type NodeTypeWithLiterals as hM, type WidthTypeWithLiterals as hN, type PluginContainerDataAlignmentWithLiterals as hO, type ButtonDataTypeWithLiterals as hP, type LinkTargetWithLiterals as hQ, type TextAlignmentWithLiterals as hR, type LineStyleWithLiterals as hS, type WidthWithLiterals as hT, type DividerDataAlignmentWithLiterals as hU, type ViewModeWithLiterals as hV, type LayoutTypeWithLiterals as hW, type OrientationWithLiterals as hX, type CropWithLiterals as hY, type ThumbnailsAlignmentWithLiterals as hZ, type GIFTypeWithLiterals as h_, type FormDeletedSubmissionsCount as ha, type GetMediaUploadURLRequest as hb, type BulkMarkSubmissionsAsSeenRequest as hc, type GetSubmissionDownloadUrlRequest as hd, type SubmissionDocument as he, type SubmissionDocumentDocumentOneOf as hf, type DocumentReady as hg, type DownloadSubmissionRequest as hh, type HeadersEntry as hi, type GetFormattedSubmissionRequest as hj, type FormattedSubmission as hk, type ListFormattedSubmissionsRequest as hl, type ListFormattedSubmissionsResponse as hm, type FormattedFormSubmission as hn, type UpdateExtendedFieldsRequest as ho, type BulkUpdateFormSubmissionTagsRequest as hp, type BulkUpdateFormSubmissionTagsResult as hq, type BulkUpdateFormSubmissionTagsByFilterRequest as hr, type ValidateFormSubmissionRequest as hs, type FieldViolation as ht, type FieldViolationErrorDataOneOf as hu, type SubmissionValidationErrors as hv, type SubmissionValidationError as hw, type SubmissionValidationErrorErrorMessageOneOf as hx, type BaseEventMetadata as hy, type EventMetadata as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type SubmitSuccessActionWithLiterals as i$, type StylesPositionWithLiterals as i0, type MapTypeWithLiterals as i1, type ViewRoleWithLiterals as i2, type VoteRoleWithLiterals as i3, type PollLayoutTypeWithLiterals as i4, type PollLayoutDirectionWithLiterals as i5, type BackgroundTypeWithLiterals as i6, type DecorationTypeWithLiterals as i7, type FontTypeWithLiterals as i8, type PositionWithLiterals as i9, type ArrayComponentTypeWithLiterals as iA, type WixFileComponentTypeWithLiterals as iB, type UploadFileFormatWithLiterals as iC, type PaymentComponentTypeWithLiterals as iD, type ComponentTypeWithLiterals as iE, type TypeWithLiterals as iF, type ObjectArrayComponentTypeWithLiterals as iG, type SchedulingComponentTypeWithLiterals as iH, type FormatWithLiterals as iI, type InputTypeWithLiterals as iJ, type EmailInfoTagWithLiterals as iK, type PhoneInfoTagWithLiterals as iL, type TagWithLiterals as iM, type ConfirmationLevelWithLiterals as iN, type ContactFieldWithLiterals as iO, type DisplayFieldTypeWithLiterals as iP, type OverrideEntityTypeWithLiterals as iQ, type KindWithLiterals as iR, type FormFieldContactInfoEmailInfoTagWithLiterals as iS, type FormFieldContactInfoPhoneInfoTagWithLiterals as iT, type AddressInfoTagWithLiterals as iU, type SubscriptionInfoOptInLevelWithLiterals as iV, type FormFieldContactInfoContactFieldWithLiterals as iW, type SpamFilterProtectionLevelWithLiterals as iX, type RequiredIndicatorWithLiterals as iY, type RequiredIndicatorPlacementWithLiterals as iZ, type TargetWithLiterals as i_, type AspectRatioWithLiterals as ia, type ResizingWithLiterals as ib, type PlacementWithLiterals as ic, type CardStylesTypeWithLiterals as id, type CardStylesAlignmentWithLiterals as ie, type LayoutWithLiterals as ig, type AppTypeWithLiterals as ih, type InitialExpandedItemsWithLiterals as ii, type DirectionWithLiterals as ij, type VerticalAlignmentWithLiterals as ik, type NullValueWithLiterals as il, type ScalingWithLiterals as im, type LayoutDataImagePositionWithLiterals as io, type VerticalAlignmentAlignmentWithLiterals as ip, type ResponsivenessBehaviourWithLiterals as iq, type ImagePositionWithLiterals as ir, type AlignmentWithLiterals as is, type ImageFitWithLiterals as it, type NumberOfColumnsWithLiterals as iu, type FirstDayOfWeekWithLiterals as iv, type NumberComponentTypeWithLiterals as iw, type BooleanComponentTypeWithLiterals as ix, type ItemTypeWithLiterals as iy, type PropertiesTypeEnumWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ChangeablePropertyWithLiterals as j0, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j1, type OperatorWithLiterals as j2, type WebhookIdentityTypeWithLiterals as j3, type IdentityTypeWithLiterals as j4, type ErrorTypeWithLiterals as j5, type SortOrderWithLiterals as j6, type ModeWithLiterals as j7, type StatusWithLiterals as j8, type SubmissionErrorTypeWithLiterals as j9, getMediaUploadUrl as jA, bulkMarkSubmissionsAsSeen as jB, getSubmissionDownloadUrl as jC, downloadSubmission as jD, getFormattedSubmission as jE, updateExtendedFields as jF, bulkUpdateFormSubmissionTags as jG, bulkUpdateFormSubmissionTagsByFilter as jH, validateFormSubmission as jI, type CommonSearchWithEntityContext as ja, type CommonQueryWithEntityContext as jb, onSubmissionCreated as jc, onSubmissionDeleted as jd, onSubmissionRemovedSubmissionFromTrash as je, onSubmissionStatusUpdated as jf, onSubmissionContactMapped as jg, onSubmissionContactMappingSkipped as jh, onSubmissionUpdated as ji, upsertContactFromSubmission as jj, createSubmission as jk, getSubmission as jl, updateSubmission as jm, confirmSubmission as jn, deleteSubmission as jo, bulkDeleteSubmission as jp, restoreSubmissionFromTrashBin as jq, removeSubmissionFromTrashBin as jr, bulkRemoveSubmissionFromTrashBin as js, listDeletedSubmissions as jt, getDeletedSubmission as ju, querySubmission as jv, querySubmissionsByNamespace as jw, countSubmissionsByFilter as jx, countSubmissions as jy, countDeletedSubmissions as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
7697
|
+
export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, ComponentType as a$, OptInLevel as a0, StringTypeFormatEnumFormat as a1, ValidationFormat as a2, ProductType as a3, PriceType as a4, FieldType as a5, FormatEnumFormat as a6, StringComponentType as a7, NodeType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, LayoutDataImagePosition as aK, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, DesignTarget as aN, ImagePosition as aO, Alignment as aP, ImageFit as aQ, NumberOfColumns as aR, FirstDayOfWeek as aS, NumberComponentType as aT, BooleanComponentType as aU, ItemType as aV, PropertiesTypeEnum as aW, ArrayComponentType as aX, WixFileComponentType as aY, UploadFileFormat as aZ, PaymentComponentType as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type ObjectErrorMessages as b$, Type as b0, ObjectArrayComponentType as b1, SchedulingComponentType as b2, Format as b3, InputType as b4, EmailInfoTag as b5, PhoneInfoTag as b6, Tag as b7, ConfirmationLevel as b8, ContactField as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type CreateCheckoutFromSubmissionRequest as bI, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bJ, type Form as bK, type FormField as bL, type FormFieldStringType as bM, type FormFieldStringTypeFormatOptionsOneOf as bN, type StringErrorMessages as bO, type StringTypeDateTimeConstraints as bP, type StringTypePhoneConstraints as bQ, type StringTypeValidationMessages as bR, type FormFieldNumberType as bS, type NumberErrorMessages as bT, type IntegerType as bU, type FormFieldBooleanType as bV, type BooleanErrorMessages as bW, type FormFieldArrayType as bX, type FormFieldObjectType as bY, type ObjectTypePropertiesType as bZ, type ObjectTypePropertiesTypePropertiesTypeOneOf as b_, DisplayFieldType as ba, OverrideEntityType as bb, Kind as bc, FormFieldContactInfoEmailInfoTag as bd, FormFieldContactInfoPhoneInfoTag as be, AddressInfoTag as bf, SubscriptionInfoOptInLevel as bg, FormFieldContactInfoContactField as bh, SpamFilterProtectionLevel as bi, RequiredIndicator as bj, RequiredIndicatorPlacement as bk, Target as bl, SubmitSuccessAction as bm, ChangeableProperty as bn, OverrideEntityTypeEnumOverrideEntityType as bo, Operator as bp, WebhookIdentityType as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type GIFData as c$, type ArrayTypeArrayItems as c0, type ArrayTypeArrayItemsItemsOneOf as c1, type ArrayErrorMessages as c2, type PredefinedValidation as c3, type PredefinedValidationFormatOptionsOneOf as c4, type PaymentType as c5, type QuantityLimit as c6, type FixedPriceOptions as c7, type DynamicPriceOptions as c8, type Product as c9, type Colors as cA, type PluginContainerData as cB, type PluginContainerDataWidth as cC, type PluginContainerDataWidthDataOneOf as cD, type Spoiler as cE, type Height as cF, type Styles as cG, type Link as cH, type LinkDataOneOf as cI, type Rel as cJ, type CodeBlockData as cK, type TextStyle as cL, type DividerData as cM, type FileData as cN, type FileSource as cO, type FileSourceDataOneOf as cP, type PDFSettings as cQ, type GalleryData as cR, type Media as cS, type Image as cT, type Video as cU, type Item as cV, type ItemDataOneOf as cW, type GalleryOptions as cX, type GalleryOptionsLayout as cY, type ItemStyle as cZ, type Thumbnails as c_, type ProductPriceOptionsOneOf as ca, type MultilineAddressValidation as cb, type FieldOverrides as cc, type FieldsOverrides as cd, type ObjectArrayType as ce, type NestedFormFieldOverrides as cf, type Validation as cg, type ValidationValidationOneOf as ch, type DataExtensionsDetails as ci, type NestedFormOverrides as cj, type Field as ck, type FieldFieldTypeOptionsOneOf as cl, type InputField as cm, type InputFieldInputTypeOptionsOneOf as cn, type StringType as co, type StringTypeFormatOptionsOneOf as cp, type DateTimeConstraints as cq, type PhoneConstraints as cr, type ValidationMessages as cs, type TextInput as ct, type RichContent as cu, type Node as cv, type NodeDataOneOf as cw, type NodeStyle as cx, type ButtonData as cy, type Border as cz, type UpdateSubmission as d, type LayoutData as d$, type GIF as d0, type HeadingData as d1, type HTMLData as d2, type HTMLDataDataOneOf as d3, type ImageData as d4, type StylesBorder as d5, type ImageDataStyles as d6, type LinkPreviewData as d7, type LinkPreviewDataStyles as d8, type MapData as d9, type FontFamilyData as dA, type AppEmbedData as dB, type AppEmbedDataAppDataOneOf as dC, type BookingData as dD, type EventData as dE, type ButtonStyles as dF, type ImageStyles as dG, type RibbonStyles as dH, type CardStyles as dI, type PricingData as dJ, type VideoData as dK, type PlaybackOptions as dL, type EmbedData as dM, type Oembed as dN, type CollapsibleListData as dO, type TableData as dP, type Dimensions as dQ, type TableCellData as dR, type CellStyle as dS, type BorderColors as dT, type BorderWidths as dU, type ListValue as dV, type AudioData as dW, type OrderedListData as dX, type BulletedListData as dY, type BlockquoteData as dZ, type CaptionData as d_, type MapSettings as da, type ParagraphData as db, type PollData as dc, type Permissions as dd, type PollOption as de, type Settings as df, type PollLayout as dg, type OptionLayout as dh, type Gradient as di, type Background as dj, type BackgroundBackgroundOneOf as dk, type PollDesign as dl, type OptionDesign as dm, type Poll as dn, type PollDataLayout as dp, type Design as dq, type TextData as dr, type Decoration as ds, type DecorationDataOneOf as dt, type AnchorData as du, type ColorData as dv, type LinkData as dw, type MentionData as dx, type FontSizeData as dy, type SpoilerData as dz, type UpdateSubmissionValidationErrors as e, type InPersonOptions as e$, type BackgroundImage as e0, type LayoutCellData as e1, type Metadata as e2, type DocumentStyle as e3, type TextNodeStyle as e4, type MediaItem as e5, type MediaItemMediaOneOf as e6, type MediaSettings as e7, type RadioGroup as e8, type RadioGroupOption as e9, type ServicesCheckboxGroup as eA, type FileType as eB, type FileUpload as eC, type Signature as eD, type ProductCheckboxGroup as eE, type ProductCheckboxGroupOption as eF, type DonationInput as eG, type DonationInputOption as eH, type PaymentInput as eI, type FixedPayment as eJ, type MultilineAddress as eK, type AddressLine2 as eL, type DefaultCountryConfig as eM, type DefaultCountryConfigOptionsOneOf as eN, type FieldsSettings as eO, type Repeater as eP, type FormLayout as eQ, type BreakPoint as eR, type ItemLayout as eS, type ItemLayoutItemOneOf as eT, type Group as eU, type Margin as eV, type Section as eW, type Appointment as eX, type AppointmentFormatInfoOneOf as eY, type Location as eZ, type LocationLocationInfoOneOf as e_, type CustomOption as ea, type Dropdown as eb, type DropdownOption as ec, type DateTimeInput as ed, type PhoneInput as ee, type DateInput as ef, type TimeInput as eg, type DatePicker as eh, type ServicesDropdown as ei, type ServiceOption as ej, type Password as ek, type NumberType as el, type NumberInput as em, type RatingInput as en, type BooleanType as eo, type Checkbox as ep, type ArrayType as eq, type ObjectType as er, type PropertiesType as es, type PropertiesTypePropertiesTypeOptionsOneOf as et, type ArrayItems as eu, type ArrayItemsItemTypeOptionsOneOf as ev, type CheckboxGroup as ew, type Option as ex, type ComponentsTags as ey, type TagsOption as ez, type ConfirmSubmissionResponse as f, type Condition as f$, type VideoConferenceOptions as f0, type PhoneOptions as f1, type FormFieldContactInfo as f2, type FormFieldContactInfoAdditionalInfoOneOf as f3, type EmailInfo as f4, type PhoneInfo as f5, type AddressInfo as f6, type CustomFieldInfo as f7, type SubscriptionInfo as f8, type _String as f9, type PostSubmissionTriggers as fA, type UpsertContact as fB, type V4FormFieldContactInfo as fC, type V4FormFieldContactInfoAdditionalInfoOneOf as fD, type FormFieldContactInfoEmailInfo as fE, type FormFieldContactInfoPhoneInfo as fF, type FormFieldContactInfoAddressInfo as fG, type FormFieldContactInfoCustomFieldInfo as fH, type FormFieldContactInfoSubscriptionInfo as fI, type NestedForm as fJ, type LimitationRule as fK, type RequiredIndicatorProperties as fL, type SubmitSettings as fM, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fN, type ThankYouMessageOptions as fO, type RedirectOptions as fP, type FieldGroup as fQ, type Rule as fR, type RequiredOptions as fS, type HiddenOptions as fT, type AllowedValuesOptions as fU, type FieldOverride as fV, type FieldOverridePropertyTypeOptionsOneOf as fW, type ConditionNode as fX, type ConditionNodeNodeOneOf as fY, type AndCondition as fZ, type OrCondition as f_, type _StringComponentTypeOptionsOneOf as fa, type _Number as fb, type _NumberComponentTypeOptionsOneOf as fc, type _Boolean as fd, type _BooleanComponentTypeOptionsOneOf as fe, type _Array as ff, type _ArrayComponentTypeOptionsOneOf as fg, type _Object as fh, type WixFile as fi, type WixFileComponentTypeOptionsOneOf as fj, type Payment as fk, type PaymentComponentTypeOptionsOneOf as fl, type Scheduling as fm, type SchedulingComponentTypeOptionsOneOf as fn, type Address as fo, type AddressComponentTypeOptionsOneOf as fp, type ObjectArray as fq, type ObjectArrayComponentTypeOptionsOneOf as fr, type DisplayField as fs, type DisplayFieldDisplayFieldTypeOptionsOneOf as ft, type RichContentOptions as fu, type PageNavigationOptions as fv, type Step as fw, type FormRule as fx, type FormOverride as fy, type FormProperties as fz, type BulkDeleteSubmissionResponse as g, type CursorSearch as g$, type RuleFormOverride as g0, type RuleFormOverrideEntityTypeOptionsOneOf as g1, type Tags as g2, type TagsTagList as g3, type CreateCheckoutFromSubmissionResponse as g4, type Checkout as g5, type IsFormSubmittableRequest as g6, type IsFormSubmittableResponse as g7, type DomainEvent as g8, type DomainEventBodyOneOf as g9, type BulkCreateSubmissionBySubmitterData as gA, type BulkCreateSubmissionBySubmitterResponse as gB, type GetSubmissionRequest as gC, type GetSubmissionResponse as gD, type GetSubmissionByCheckoutIdRequest as gE, type GetSubmissionByCheckoutIdResponse as gF, type UpdateSubmissionRequest as gG, type UpdateSubmissionResponse as gH, type ConfirmSubmissionRequest as gI, type DeleteSubmissionRequest as gJ, type DeleteSubmissionResponse as gK, type BulkDeleteSubmissionRequest as gL, type BulkDeleteSubmissionResult as gM, type RestoreSubmissionFromTrashBinRequest as gN, type RemoveSubmissionFromTrashBinRequest as gO, type RemoveSubmissionFromTrashBinResponse as gP, type BulkRemoveSubmissionFromTrashBinRequest as gQ, type BulkRemoveSubmissionFromTrashBinResult as gR, type ListDeletedSubmissionsRequest as gS, type CursorPaging as gT, type CursorPagingMetadata as gU, type Cursors as gV, type GetDeletedSubmissionRequest as gW, type QuerySubmissionRequest as gX, type CursorQueryPagingMethodOneOf as gY, type Sorting as gZ, type SearchSubmissionsByNamespaceRequest as g_, type EntityCreatedEvent as ga, type RestoreInfo as gb, type EntityUpdatedEvent as gc, type EntityDeletedEvent as gd, type ActionEvent as ge, type Empty as gf, type MessageEnvelope as gg, type IdentificationData as gh, type IdentificationDataIdOneOf as gi, type UpsertContactFromSubmissionRequest as gj, type SubmitContactResponse as gk, type CreateSubmissionRequest as gl, type CreateSubmissionResponse as gm, type SubmissionValidationErrorsDetails as gn, type ValidationError as go, type CreateSubmissionForMigrationRequest as gp, type CreateSubmissionForMigrationResponse as gq, type BulkCreateSubmissionsForMigrationRequest as gr, type BulkCreateSubmissionsForMigrationResponse as gs, type BulkSubmissionResult as gt, type ItemMetadata as gu, type ApplicationError as gv, type BulkActionMetadata as gw, type CreateSubmissionBySubmitterRequest as gx, type CreateSubmissionBySubmitterResponse as gy, type BulkCreateSubmissionBySubmitterRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ThumbnailsAlignmentWithLiterals as h$, type CursorSearchPagingMethodOneOf as h0, type SearchDetails as h1, type SearchSubmissionsByNamespaceForExportRequest as h2, type SearchSubmissionsByNamespaceForExportResponse as h3, type QuerySubmissionsByNamespaceRequest as h4, type QuerySubmissionsByNamespaceResponse as h5, type QuerySubmissionsByNamespaceForExportRequest as h6, type QuerySubmissionsByNamespaceForExportResponse as h7, type CountSubmissionsByFilterRequest as h8, type FormSubmissionsCount as h9, type BaseEventMetadata as hA, type EventMetadata as hB, type FormSubmissionSearchSpec as hC, type SubmissionsQueryResult as hD, type FormSubmissionQuerySpec as hE, type SubmissionStatusWithLiterals as hF, type OptInLevelWithLiterals as hG, type StringTypeFormatEnumFormatWithLiterals as hH, type ValidationFormatWithLiterals as hI, type ProductTypeWithLiterals as hJ, type PriceTypeWithLiterals as hK, type FieldTypeWithLiterals as hL, type FormatEnumFormatWithLiterals as hM, type StringComponentTypeWithLiterals as hN, type NodeTypeWithLiterals as hO, type WidthTypeWithLiterals as hP, type PluginContainerDataAlignmentWithLiterals as hQ, type ButtonDataTypeWithLiterals as hR, type LinkTargetWithLiterals as hS, type TextAlignmentWithLiterals as hT, type LineStyleWithLiterals as hU, type WidthWithLiterals as hV, type DividerDataAlignmentWithLiterals as hW, type ViewModeWithLiterals as hX, type LayoutTypeWithLiterals as hY, type OrientationWithLiterals as hZ, type CropWithLiterals as h_, type CountSubmissionsRequest as ha, type CountDeletedSubmissionsRequest as hb, type FormDeletedSubmissionsCount as hc, type GetMediaUploadURLRequest as hd, type BulkMarkSubmissionsAsSeenRequest as he, type GetSubmissionDownloadUrlRequest as hf, type SubmissionDocument as hg, type SubmissionDocumentDocumentOneOf as hh, type DocumentReady as hi, type DownloadSubmissionRequest as hj, type HeadersEntry as hk, type GetFormattedSubmissionRequest as hl, type FormattedSubmission as hm, type ListFormattedSubmissionsRequest as hn, type ListFormattedSubmissionsResponse as ho, type FormattedFormSubmission as hp, type UpdateExtendedFieldsRequest as hq, type BulkUpdateFormSubmissionTagsRequest as hr, type BulkUpdateFormSubmissionTagsResult as hs, type BulkUpdateFormSubmissionTagsByFilterRequest as ht, type ValidateFormSubmissionRequest as hu, type FieldViolation as hv, type FieldViolationErrorDataOneOf as hw, type SubmissionValidationErrors as hx, type SubmissionValidationError as hy, type SubmissionValidationErrorErrorMessageOneOf as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type RequiredIndicatorWithLiterals as i$, type GIFTypeWithLiterals as i0, type SourceWithLiterals as i1, type StylesPositionWithLiterals as i2, type MapTypeWithLiterals as i3, type ViewRoleWithLiterals as i4, type VoteRoleWithLiterals as i5, type PollLayoutTypeWithLiterals as i6, type PollLayoutDirectionWithLiterals as i7, type BackgroundTypeWithLiterals as i8, type DecorationTypeWithLiterals as i9, type BooleanComponentTypeWithLiterals as iA, type ItemTypeWithLiterals as iB, type PropertiesTypeEnumWithLiterals as iC, type ArrayComponentTypeWithLiterals as iD, type WixFileComponentTypeWithLiterals as iE, type UploadFileFormatWithLiterals as iF, type PaymentComponentTypeWithLiterals as iG, type ComponentTypeWithLiterals as iH, type TypeWithLiterals as iI, type ObjectArrayComponentTypeWithLiterals as iJ, type SchedulingComponentTypeWithLiterals as iK, type FormatWithLiterals as iL, type InputTypeWithLiterals as iM, type EmailInfoTagWithLiterals as iN, type PhoneInfoTagWithLiterals as iO, type TagWithLiterals as iP, type ConfirmationLevelWithLiterals as iQ, type ContactFieldWithLiterals as iR, type DisplayFieldTypeWithLiterals as iS, type OverrideEntityTypeWithLiterals as iT, type KindWithLiterals as iU, type FormFieldContactInfoEmailInfoTagWithLiterals as iV, type FormFieldContactInfoPhoneInfoTagWithLiterals as iW, type AddressInfoTagWithLiterals as iX, type SubscriptionInfoOptInLevelWithLiterals as iY, type FormFieldContactInfoContactFieldWithLiterals as iZ, type SpamFilterProtectionLevelWithLiterals as i_, type FontTypeWithLiterals as ia, type PositionWithLiterals as ib, type AspectRatioWithLiterals as ic, type ResizingWithLiterals as id, type PlacementWithLiterals as ie, type CardStylesTypeWithLiterals as ig, type CardStylesAlignmentWithLiterals as ih, type LayoutWithLiterals as ii, type AppTypeWithLiterals as ij, type InitialExpandedItemsWithLiterals as ik, type DirectionWithLiterals as il, type VerticalAlignmentWithLiterals as im, type NullValueWithLiterals as io, type ScalingWithLiterals as ip, type LayoutDataImagePositionWithLiterals as iq, type VerticalAlignmentAlignmentWithLiterals as ir, type ResponsivenessBehaviourWithLiterals as is, type DesignTargetWithLiterals as it, type ImagePositionWithLiterals as iu, type AlignmentWithLiterals as iv, type ImageFitWithLiterals as iw, type NumberOfColumnsWithLiterals as ix, type FirstDayOfWeekWithLiterals as iy, type NumberComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type RequiredIndicatorPlacementWithLiterals as j0, type TargetWithLiterals as j1, type SubmitSuccessActionWithLiterals as j2, type ChangeablePropertyWithLiterals as j3, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j4, type OperatorWithLiterals as j5, type WebhookIdentityTypeWithLiterals as j6, type IdentityTypeWithLiterals as j7, type ErrorTypeWithLiterals as j8, type SortOrderWithLiterals as j9, countSubmissionsByFilter as jA, countSubmissions as jB, countDeletedSubmissions as jC, getMediaUploadUrl as jD, bulkMarkSubmissionsAsSeen as jE, getSubmissionDownloadUrl as jF, downloadSubmission as jG, getFormattedSubmission as jH, updateExtendedFields as jI, bulkUpdateFormSubmissionTags as jJ, bulkUpdateFormSubmissionTagsByFilter as jK, validateFormSubmission as jL, type ModeWithLiterals as ja, type StatusWithLiterals as jb, type SubmissionErrorTypeWithLiterals as jc, type CommonSearchWithEntityContext as jd, type CommonQueryWithEntityContext as je, onSubmissionCreated as jf, onSubmissionDeleted as jg, onSubmissionRemovedSubmissionFromTrash as jh, onSubmissionStatusUpdated as ji, onSubmissionContactMapped as jj, onSubmissionContactMappingSkipped as jk, onSubmissionUpdated as jl, upsertContactFromSubmission as jm, createSubmission as jn, getSubmission as jo, updateSubmission as jp, confirmSubmission as jq, deleteSubmission as jr, bulkDeleteSubmission as js, restoreSubmissionFromTrashBin as jt, removeSubmissionFromTrashBin as ju, bulkRemoveSubmissionFromTrashBin as jv, listDeletedSubmissions as jw, getDeletedSubmission as jx, querySubmission as jy, querySubmissionsByNamespace as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { gc as ActionEvent, fm as Address, fn as AddressComponentTypeOptionsOneOf, f4 as AddressInfo, be as AddressInfoTag, iU as AddressInfoTagWithLiterals, eJ as AddressLine2, aO as Alignment, is as AlignmentWithLiterals, fS as AllowedValuesOptions, dt as AnchorData, fX as AndCondition, dA as AppEmbedData, dB as AppEmbedDataAppDataOneOf, aE as AppType, ih as AppTypeWithLiterals, gt as ApplicationError, eV as Appointment, eW as AppointmentFormatInfoOneOf, aW as ArrayComponentType, iA as ArrayComponentTypeWithLiterals, c1 as ArrayErrorMessages, es as ArrayItems, et as ArrayItemsItemTypeOptionsOneOf, eo as ArrayType, b$ as ArrayTypeArrayItems, c0 as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, ia as AspectRatioWithLiterals, dV as AudioData, di as Background, dj as BackgroundBackgroundOneOf, d$ as BackgroundImage, au as BackgroundType, i6 as BackgroundTypeWithLiterals, hy as BaseEventMetadata, dY as BlockquoteData, dC as BookingData, aT as BooleanComponentType, ix as BooleanComponentTypeWithLiterals, bV as BooleanErrorMessages, em as BooleanType, cy as Border, dS as BorderColors, dT as BorderWidths, eP as BreakPoint, gu as BulkActionMetadata, gy as BulkCreateSubmissionBySubmitterData, gx as BulkCreateSubmissionBySubmitterRequest, gz as BulkCreateSubmissionBySubmitterResponse, gp as BulkCreateSubmissionsForMigrationRequest, gq as BulkCreateSubmissionsForMigrationResponse, gJ as BulkDeleteSubmissionRequest, gK as BulkDeleteSubmissionResult, hc as BulkMarkSubmissionsAsSeenRequest, gO as BulkRemoveSubmissionFromTrashBinRequest, gP as BulkRemoveSubmissionFromTrashBinResult, gr as BulkSubmissionResult, hr as BulkUpdateFormSubmissionTagsByFilterRequest, hp as BulkUpdateFormSubmissionTagsRequest, hq as BulkUpdateFormSubmissionTagsResult, dX as BulletedListData, cx as ButtonData, ab as ButtonDataType, hP as ButtonDataTypeWithLiterals, dE as ButtonStyles, dZ as CaptionData, dH as CardStyles, aC as CardStylesAlignment, ie as CardStylesAlignmentWithLiterals, aB as CardStylesType, id as CardStylesTypeWithLiterals, dR as CellStyle, bm as ChangeableProperty, j0 as ChangeablePropertyWithLiterals, en as Checkbox, eu as CheckboxGroup, g3 as Checkout, cJ as CodeBlockData, dN as CollapsibleListData, du as ColorData, cz as Colors, jb as CommonQueryWithEntityContext, ja as CommonSearchWithEntityContext, a_ as ComponentType, iE as ComponentTypeWithLiterals, ew as ComponentsTags, fZ as Condition, fV as ConditionNode, fW as ConditionNodeNodeOneOf, gG as ConfirmSubmissionRequest, b7 as ConfirmationLevel, iN as ConfirmationLevelWithLiterals, b8 as ContactField, iO as ContactFieldWithLiterals, h9 as CountDeletedSubmissionsRequest, h6 as CountSubmissionsByFilterRequest, h8 as CountSubmissionsRequest, bH as CreateCheckoutFromSubmissionRequest, bI as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, g2 as CreateCheckoutFromSubmissionResponse, gv as CreateSubmissionBySubmitterRequest, gw as CreateSubmissionBySubmitterResponse, gn as CreateSubmissionForMigrationRequest, go as CreateSubmissionForMigrationResponse, gj as CreateSubmissionRequest, gk as CreateSubmissionResponse, ak as Crop, hY as CropWithLiterals, gR as CursorPaging, gS as CursorPagingMetadata, gW as CursorQueryPagingMethodOneOf, gZ as CursorSearch, g_ as CursorSearchPagingMethodOneOf, gT as Cursors, f5 as CustomFieldInfo, e9 as CustomOption, ch as DataExtensionsDetails, ee as DateInput, eg as DatePicker, cp as DateTimeConstraints, ec as DateTimeInput, dr as Decoration, ds as DecorationDataOneOf, av as DecorationType, i7 as DecorationTypeWithLiterals, eK as DefaultCountryConfig, eL as DefaultCountryConfigOptionsOneOf, gH as DeleteSubmissionRequest, gI as DeleteSubmissionResponse, dp as Design, dP as Dimensions, aG as Direction, ij as DirectionWithLiterals, fq as DisplayField, fr as DisplayFieldDisplayFieldTypeOptionsOneOf, b9 as DisplayFieldType, iP as DisplayFieldTypeWithLiterals, cL as DividerData, ag as DividerDataAlignment, hU as DividerDataAlignmentWithLiterals, hg as DocumentReady, e2 as DocumentStyle, g6 as DomainEvent, g7 as DomainEventBodyOneOf, eE as DonationInput, eF as DonationInputOption, hh as DownloadSubmissionRequest, ea as Dropdown, eb as DropdownOption, c7 as DynamicPriceOptions, f2 as EmailInfo, b4 as EmailInfoTag, iK as EmailInfoTagWithLiterals, dL as EmbedData, gd as Empty, g8 as EntityCreatedEvent, gb as EntityDeletedEvent, ga as EntityUpdatedEvent, br as ErrorType, j5 as ErrorTypeWithLiterals, dD as EventData, hz as EventMetadata, by as ExtendedFields, cj as Field, ck as FieldFieldTypeOptionsOneOf, fO as FieldGroup, fT as FieldOverride, fU as FieldOverridePropertyTypeOptionsOneOf, cb as FieldOverrides, a5 as FieldType, hJ as FieldTypeWithLiterals, ht as FieldViolation, hu as FieldViolationErrorDataOneOf, cc as FieldsOverrides, eM as FieldsSettings, cM as FileData, cN as FileSource, cO as FileSourceDataOneOf, ez as FileType, eA as FileUpload, aR as FirstDayOfWeek, iv as FirstDayOfWeekWithLiterals, eH as FixedPayment, c6 as FixedPriceOptions, dz as FontFamilyData, dx as FontSizeData, aw as FontType, i8 as FontTypeWithLiterals, bJ as Form, ha as FormDeletedSubmissionsCount, bK as FormField, bW as FormFieldArrayType, bU as FormFieldBooleanType, f0 as FormFieldContactInfo, f1 as FormFieldContactInfoAdditionalInfoOneOf, fE as FormFieldContactInfoAddressInfo, bg as FormFieldContactInfoContactField, iW as FormFieldContactInfoContactFieldWithLiterals, fF as FormFieldContactInfoCustomFieldInfo, fC as FormFieldContactInfoEmailInfo, bc as FormFieldContactInfoEmailInfoTag, iS as FormFieldContactInfoEmailInfoTagWithLiterals, fD as FormFieldContactInfoPhoneInfo, bd as FormFieldContactInfoPhoneInfoTag, iT as FormFieldContactInfoPhoneInfoTagWithLiterals, fG as FormFieldContactInfoSubscriptionInfo, bR as FormFieldNumberType, bX as FormFieldObjectType, bL as FormFieldStringType, bM as FormFieldStringTypeFormatOptionsOneOf, eO as FormLayout, fw as FormOverride, fx as FormProperties, fv as FormRule, hC as FormSubmissionQuerySpec, hA as FormSubmissionSearchSpec, bC as FormSubmissionStatusUpdatedEvent, h7 as FormSubmissionsCount, b2 as Format, a6 as FormatEnumFormat, hK as FormatEnumFormatWithLiterals, iI as FormatWithLiterals, hn as FormattedFormSubmission, hk as FormattedSubmission, c$ as GIF, c_ as GIFData, am as GIFType, h_ as GIFTypeWithLiterals, cQ as GalleryData, cW as GalleryOptions, cX as GalleryOptionsLayout, gU as GetDeletedSubmissionRequest, hj as GetFormattedSubmissionRequest, hb as GetMediaUploadURLRequest, gC as GetSubmissionByCheckoutIdRequest, gD as GetSubmissionByCheckoutIdResponse, hd as GetSubmissionDownloadUrlRequest, gA as GetSubmissionRequest, gB as GetSubmissionResponse, dh as Gradient, eS as Group, d1 as HTMLData, d2 as HTMLDataDataOneOf, hi as HeadersEntry, d0 as HeadingData, cE as Height, fR as HiddenOptions, gf as IdentificationData, gg as IdentificationDataIdOneOf, bq as IdentityType, j4 as IdentityTypeWithLiterals, cS as Image, d3 as ImageData, d5 as ImageDataStyles, aP as ImageFit, it as ImageFitWithLiterals, aN as ImagePosition, ir as ImagePositionWithLiterals, dF as ImageStyles, eZ as InPersonOptions, aF as InitialExpandedItems, ii as InitialExpandedItemsWithLiterals, cl as InputField, cm as InputFieldInputTypeOptionsOneOf, b3 as InputType, iJ as InputTypeWithLiterals, bT as IntegerType, g4 as IsFormSubmittableRequest, g5 as IsFormSubmittableResponse, cU as Item, cV as ItemDataOneOf, eQ as ItemLayout, eR as ItemLayoutItemOneOf, gs as ItemMetadata, cY as ItemStyle, aU as ItemType, iy as ItemTypeWithLiterals, bb as Kind, iR as KindWithLiterals, aD as Layout, e0 as LayoutCellData, d_ as LayoutData, aK as LayoutDataImagePosition, io as LayoutDataImagePositionWithLiterals, ai as LayoutType, hW as LayoutTypeWithLiterals, ig as LayoutWithLiterals, fI as LimitationRule, ae as LineStyle, hS as LineStyleWithLiterals, cG as Link, dv as LinkData, cH as LinkDataOneOf, d6 as LinkPreviewData, d7 as LinkPreviewDataStyles, ac as LinkTarget, hQ as LinkTargetWithLiterals, gQ as ListDeletedSubmissionsRequest, hl as ListFormattedSubmissionsRequest, hm as ListFormattedSubmissionsResponse, dU as ListValue, eX as Location, eY as LocationLocationInfoOneOf, d8 as MapData, d9 as MapSettings, ap as MapType, i1 as MapTypeWithLiterals, eT as Margin, bF as MarketingSubscriptionDetails, cR as Media, e4 as MediaItem, e5 as MediaItemMediaOneOf, e6 as MediaSettings, dw as MentionData, ge as MessageEnvelope, e1 as Metadata, bt as Mode, j7 as ModeWithLiterals, eI as MultilineAddress, ca as MultilineAddressValidation, fH as NestedForm, ce as NestedFormFieldOverrides, ci as NestedFormOverrides, cu as Node, cv as NodeDataOneOf, cw as NodeStyle, a8 as NodeType, hM as NodeTypeWithLiterals, aI as NullValue, il as NullValueWithLiterals, aS as NumberComponentType, iw as NumberComponentTypeWithLiterals, bS as NumberErrorMessages, ek as NumberInput, aQ as NumberOfColumns, iu as NumberOfColumnsWithLiterals, ej as NumberType, fo as ObjectArray, b0 as ObjectArrayComponentType, fp as ObjectArrayComponentTypeOptionsOneOf, iG as ObjectArrayComponentTypeWithLiterals, cd as ObjectArrayType, b_ as ObjectErrorMessages, ep as ObjectType, bY as ObjectTypePropertiesType, bZ as ObjectTypePropertiesTypePropertiesTypeOneOf, dM as Oembed, bo as Operator, j2 as OperatorWithLiterals, a0 as OptInLevel, hE as OptInLevelWithLiterals, ev as Option, dl as OptionDesign, dg as OptionLayout, fY as OrCondition, bz as OrderDetails, dW as OrderedListData, aj as Orientation, hX as OrientationWithLiterals, ba as OverrideEntityType, bn as OverrideEntityTypeEnumOverrideEntityType, j1 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iQ as OverrideEntityTypeWithLiterals, cP as PDFSettings, ft as PageNavigationOptions, da as ParagraphData, fi as Payment, aZ as PaymentComponentType, fj as PaymentComponentTypeOptionsOneOf, iD as PaymentComponentTypeWithLiterals, eG as PaymentInput, c4 as PaymentType, dc as Permissions, cq as PhoneConstraints, f3 as PhoneInfo, b5 as PhoneInfoTag, iL as PhoneInfoTagWithLiterals, ed as PhoneInput, e$ as PhoneOptions, aA as Placement, ic as PlacementWithLiterals, dK as PlaybackOptions, cA as PluginContainerData, aa as PluginContainerDataAlignment, hO as PluginContainerDataAlignmentWithLiterals, cB as PluginContainerDataWidth, cC as PluginContainerDataWidthDataOneOf, dm as Poll, db as PollData, dn as PollDataLayout, dk as PollDesign, df as PollLayout, at as PollLayoutDirection, i5 as PollLayoutDirectionWithLiterals, as as PollLayoutType, i4 as PollLayoutTypeWithLiterals, dd as PollOption, ax as Position, i9 as PositionWithLiterals, fy as PostSubmissionTriggers, c2 as PredefinedValidation, c3 as PredefinedValidationFormatOptionsOneOf, a4 as PriceType, hI as PriceTypeWithLiterals, dI as PricingData, c8 as Product, eC as ProductCheckboxGroup, eD as ProductCheckboxGroupOption, c9 as ProductPriceOptionsOneOf, a3 as ProductType, hH as ProductTypeWithLiterals, eq as PropertiesType, aV as PropertiesTypeEnum, iz as PropertiesTypeEnumWithLiterals, er as PropertiesTypePropertiesTypeOptionsOneOf, bA as PublicTags, c5 as QuantityLimit, gV as QuerySubmissionRequest, h4 as QuerySubmissionsByNamespaceForExportRequest, h5 as QuerySubmissionsByNamespaceForExportResponse, h2 as QuerySubmissionsByNamespaceRequest, h3 as QuerySubmissionsByNamespaceResponse, e7 as RadioGroup, e8 as RadioGroupOption, el as RatingInput, fN as RedirectOptions, cI as Rel, gM as RemoveSubmissionFromTrashBinRequest, gN as RemoveSubmissionFromTrashBinResponse, bD as RemovedSubmissionFromTrash, eN as Repeater, bi as RequiredIndicator, bj as RequiredIndicatorPlacement, iZ as RequiredIndicatorPlacementWithLiterals, fJ as RequiredIndicatorProperties, iY as RequiredIndicatorWithLiterals, fQ as RequiredOptions, az as Resizing, ib as ResizingWithLiterals, aM as ResponsivenessBehaviour, iq as ResponsivenessBehaviourWithLiterals, g9 as RestoreInfo, gL as RestoreSubmissionFromTrashBinRequest, dG as RibbonStyles, ct as RichContent, fs as RichContentOptions, fP as Rule, f_ as RuleFormOverride, f$ as RuleFormOverrideEntityTypeOptionsOneOf, aJ as Scaling, im as ScalingWithLiterals, fk as Scheduling, b1 as SchedulingComponentType, fl as SchedulingComponentTypeOptionsOneOf, iH as SchedulingComponentTypeWithLiterals, g$ as SearchDetails, h0 as SearchSubmissionsByNamespaceForExportRequest, h1 as SearchSubmissionsByNamespaceForExportResponse, gY as SearchSubmissionsByNamespaceRequest, eU as Section, ei as ServiceOption, ey as ServicesCheckboxGroup, eh as ServicesDropdown, de as Settings, eB as Signature, bs as SortOrder, j6 as SortOrderWithLiterals, gX as Sorting, an as Source, h$ as SourceWithLiterals, bh as SpamFilterProtectionLevel, iX as SpamFilterProtectionLevelWithLiterals, cD as Spoiler, dy as SpoilerData, bu as Status, j8 as StatusWithLiterals, fu as Step, a7 as StringComponentType, hL as StringComponentTypeWithLiterals, bN as StringErrorMessages, cn as StringType, bO as StringTypeDateTimeConstraints, a1 as StringTypeFormatEnumFormat, hF as StringTypeFormatEnumFormatWithLiterals, co as StringTypeFormatOptionsOneOf, bP as StringTypePhoneConstraints, bQ as StringTypeValidationMessages, cF as Styles, d4 as StylesBorder, ao as StylesPosition, i0 as StylesPositionWithLiterals, bE as SubmissionContactMapped, bG as SubmissionContactMappingSkipped, he as SubmissionDocument, hf as SubmissionDocumentDocumentOneOf, bv as SubmissionErrorType, j9 as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hD as SubmissionStatusWithLiterals, hw as SubmissionValidationError, hx as SubmissionValidationErrorErrorMessageOneOf, hv as SubmissionValidationErrors, gl as SubmissionValidationErrorsDetails, hB as SubmissionsQueryResult, gi as SubmitContactResponse, fK as SubmitSettings, fL as SubmitSettingsSubmitSuccessActionOptionsOneOf, bl as SubmitSuccessAction, i$ as SubmitSuccessActionWithLiterals, bw as Submitter, bx as SubmitterSubmitterOneOf, f6 as SubscriptionInfo, bf as SubscriptionInfoOptInLevel, iV as SubscriptionInfoOptInLevelWithLiterals, dQ as TableCellData, dO as TableData, b6 as Tag, bB as TagList, iM as TagWithLiterals, g0 as Tags, ex as TagsOption, g1 as TagsTagList, bk as Target, i_ as TargetWithLiterals, ad as TextAlignment, hR as TextAlignmentWithLiterals, dq as TextData, cs as TextInput, e3 as TextNodeStyle, cK as TextStyle, fM as ThankYouMessageOptions, cZ as Thumbnails, al as ThumbnailsAlignment, hZ as ThumbnailsAlignmentWithLiterals, ef as TimeInput, a$ as Type, iF as TypeWithLiterals, ho as UpdateExtendedFieldsRequest, gE as UpdateSubmissionRequest, gF as UpdateSubmissionResponse, aY as UploadFileFormat, iC as UploadFileFormatWithLiterals, fz as UpsertContact, gh as UpsertContactFromSubmissionRequest, fA as V4FormFieldContactInfo, fB as V4FormFieldContactInfoAdditionalInfoOneOf, hs as ValidateFormSubmissionRequest, cf as Validation, gm as ValidationError, a2 as ValidationFormat, hG as ValidationFormatWithLiterals, cr as ValidationMessages, cg as ValidationValidationOneOf, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, ip as VerticalAlignmentAlignmentWithLiterals, ik as VerticalAlignmentWithLiterals, cT as Video, e_ as VideoConferenceOptions, dJ as VideoData, ah as ViewMode, hV as ViewModeWithLiterals, aq as ViewRole, i2 as ViewRoleWithLiterals, ar as VoteRole, i3 as VoteRoleWithLiterals, bp as WebhookIdentityType, j3 as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, hN as WidthTypeWithLiterals, hT as WidthWithLiterals, fg as WixFile, aX as WixFileComponentType, fh as WixFileComponentTypeOptionsOneOf, iB as WixFileComponentTypeWithLiterals, fd as _Array, fe as _ArrayComponentTypeOptionsOneOf, fb as _Boolean, fc as _BooleanComponentTypeOptionsOneOf, f9 as _Number, fa as _NumberComponentTypeOptionsOneOf, ff as _Object, f7 as _String, f8 as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-DcEv17-H.mjs';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-utyxsDjV.mjs';
|
|
3
|
+
export { ge as ActionEvent, fo as Address, fp as AddressComponentTypeOptionsOneOf, f6 as AddressInfo, bf as AddressInfoTag, iX as AddressInfoTagWithLiterals, eL as AddressLine2, aP as Alignment, iv as AlignmentWithLiterals, fU as AllowedValuesOptions, du as AnchorData, fZ as AndCondition, dB as AppEmbedData, dC as AppEmbedDataAppDataOneOf, aE as AppType, ij as AppTypeWithLiterals, gv as ApplicationError, eX as Appointment, eY as AppointmentFormatInfoOneOf, aX as ArrayComponentType, iD as ArrayComponentTypeWithLiterals, c2 as ArrayErrorMessages, eu as ArrayItems, ev as ArrayItemsItemTypeOptionsOneOf, eq as ArrayType, c0 as ArrayTypeArrayItems, c1 as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, ic as AspectRatioWithLiterals, dW as AudioData, dj as Background, dk as BackgroundBackgroundOneOf, e0 as BackgroundImage, au as BackgroundType, i8 as BackgroundTypeWithLiterals, hA as BaseEventMetadata, dZ as BlockquoteData, dD as BookingData, aU as BooleanComponentType, iA as BooleanComponentTypeWithLiterals, bW as BooleanErrorMessages, eo as BooleanType, cz as Border, dT as BorderColors, dU as BorderWidths, eR as BreakPoint, gw as BulkActionMetadata, gA as BulkCreateSubmissionBySubmitterData, gz as BulkCreateSubmissionBySubmitterRequest, gB as BulkCreateSubmissionBySubmitterResponse, gr as BulkCreateSubmissionsForMigrationRequest, gs as BulkCreateSubmissionsForMigrationResponse, gL as BulkDeleteSubmissionRequest, gM as BulkDeleteSubmissionResult, he as BulkMarkSubmissionsAsSeenRequest, gQ as BulkRemoveSubmissionFromTrashBinRequest, gR as BulkRemoveSubmissionFromTrashBinResult, gt as BulkSubmissionResult, ht as BulkUpdateFormSubmissionTagsByFilterRequest, hr as BulkUpdateFormSubmissionTagsRequest, hs as BulkUpdateFormSubmissionTagsResult, dY as BulletedListData, cy as ButtonData, ab as ButtonDataType, hR as ButtonDataTypeWithLiterals, dF as ButtonStyles, d_ as CaptionData, dI as CardStyles, aC as CardStylesAlignment, ih as CardStylesAlignmentWithLiterals, aB as CardStylesType, ig as CardStylesTypeWithLiterals, dS as CellStyle, bn as ChangeableProperty, j3 as ChangeablePropertyWithLiterals, ep as Checkbox, ew as CheckboxGroup, g5 as Checkout, cK as CodeBlockData, dO as CollapsibleListData, dv as ColorData, cA as Colors, je as CommonQueryWithEntityContext, jd as CommonSearchWithEntityContext, a$ as ComponentType, iH as ComponentTypeWithLiterals, ey as ComponentsTags, f$ as Condition, fX as ConditionNode, fY as ConditionNodeNodeOneOf, gI as ConfirmSubmissionRequest, b8 as ConfirmationLevel, iQ as ConfirmationLevelWithLiterals, b9 as ContactField, iR as ContactFieldWithLiterals, hb as CountDeletedSubmissionsRequest, h8 as CountSubmissionsByFilterRequest, ha as CountSubmissionsRequest, bI as CreateCheckoutFromSubmissionRequest, bJ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, g4 as CreateCheckoutFromSubmissionResponse, gx as CreateSubmissionBySubmitterRequest, gy as CreateSubmissionBySubmitterResponse, gp as CreateSubmissionForMigrationRequest, gq as CreateSubmissionForMigrationResponse, gl as CreateSubmissionRequest, gm as CreateSubmissionResponse, ak as Crop, h_ as CropWithLiterals, gT as CursorPaging, gU as CursorPagingMetadata, gY as CursorQueryPagingMethodOneOf, g$ as CursorSearch, h0 as CursorSearchPagingMethodOneOf, gV as Cursors, f7 as CustomFieldInfo, ea as CustomOption, ci as DataExtensionsDetails, ef as DateInput, eh as DatePicker, cq as DateTimeConstraints, ed as DateTimeInput, ds as Decoration, dt as DecorationDataOneOf, av as DecorationType, i9 as DecorationTypeWithLiterals, eM as DefaultCountryConfig, eN as DefaultCountryConfigOptionsOneOf, gJ as DeleteSubmissionRequest, gK as DeleteSubmissionResponse, dq as Design, aN as DesignTarget, it as DesignTargetWithLiterals, dQ as Dimensions, aG as Direction, il as DirectionWithLiterals, fs as DisplayField, ft as DisplayFieldDisplayFieldTypeOptionsOneOf, ba as DisplayFieldType, iS as DisplayFieldTypeWithLiterals, cM as DividerData, ag as DividerDataAlignment, hW as DividerDataAlignmentWithLiterals, hi as DocumentReady, e3 as DocumentStyle, g8 as DomainEvent, g9 as DomainEventBodyOneOf, eG as DonationInput, eH as DonationInputOption, hj as DownloadSubmissionRequest, eb as Dropdown, ec as DropdownOption, c8 as DynamicPriceOptions, f4 as EmailInfo, b5 as EmailInfoTag, iN as EmailInfoTagWithLiterals, dM as EmbedData, gf as Empty, ga as EntityCreatedEvent, gd as EntityDeletedEvent, gc as EntityUpdatedEvent, bs as ErrorType, j8 as ErrorTypeWithLiterals, dE as EventData, hB as EventMetadata, bz as ExtendedFields, ck as Field, cl as FieldFieldTypeOptionsOneOf, fQ as FieldGroup, fV as FieldOverride, fW as FieldOverridePropertyTypeOptionsOneOf, cc as FieldOverrides, a5 as FieldType, hL as FieldTypeWithLiterals, hv as FieldViolation, hw as FieldViolationErrorDataOneOf, cd as FieldsOverrides, eO as FieldsSettings, cN as FileData, cO as FileSource, cP as FileSourceDataOneOf, eB as FileType, eC as FileUpload, aS as FirstDayOfWeek, iy as FirstDayOfWeekWithLiterals, eJ as FixedPayment, c7 as FixedPriceOptions, dA as FontFamilyData, dy as FontSizeData, aw as FontType, ia as FontTypeWithLiterals, bK as Form, hc as FormDeletedSubmissionsCount, bL as FormField, bX as FormFieldArrayType, bV as FormFieldBooleanType, f2 as FormFieldContactInfo, f3 as FormFieldContactInfoAdditionalInfoOneOf, fG as FormFieldContactInfoAddressInfo, bh as FormFieldContactInfoContactField, iZ as FormFieldContactInfoContactFieldWithLiterals, fH as FormFieldContactInfoCustomFieldInfo, fE as FormFieldContactInfoEmailInfo, bd as FormFieldContactInfoEmailInfoTag, iV as FormFieldContactInfoEmailInfoTagWithLiterals, fF as FormFieldContactInfoPhoneInfo, be as FormFieldContactInfoPhoneInfoTag, iW as FormFieldContactInfoPhoneInfoTagWithLiterals, fI as FormFieldContactInfoSubscriptionInfo, bS as FormFieldNumberType, bY as FormFieldObjectType, bM as FormFieldStringType, bN as FormFieldStringTypeFormatOptionsOneOf, eQ as FormLayout, fy as FormOverride, fz as FormProperties, fx as FormRule, hE as FormSubmissionQuerySpec, hC as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, h9 as FormSubmissionsCount, b3 as Format, a6 as FormatEnumFormat, hM as FormatEnumFormatWithLiterals, iL as FormatWithLiterals, hp as FormattedFormSubmission, hm as FormattedSubmission, d0 as GIF, c$ as GIFData, am as GIFType, i0 as GIFTypeWithLiterals, cR as GalleryData, cX as GalleryOptions, cY as GalleryOptionsLayout, gW as GetDeletedSubmissionRequest, hl as GetFormattedSubmissionRequest, hd as GetMediaUploadURLRequest, gE as GetSubmissionByCheckoutIdRequest, gF as GetSubmissionByCheckoutIdResponse, hf as GetSubmissionDownloadUrlRequest, gC as GetSubmissionRequest, gD as GetSubmissionResponse, di as Gradient, eU as Group, d2 as HTMLData, d3 as HTMLDataDataOneOf, hk as HeadersEntry, d1 as HeadingData, cF as Height, fT as HiddenOptions, gh as IdentificationData, gi as IdentificationDataIdOneOf, br as IdentityType, j7 as IdentityTypeWithLiterals, cT as Image, d4 as ImageData, d6 as ImageDataStyles, aQ as ImageFit, iw as ImageFitWithLiterals, aO as ImagePosition, iu as ImagePositionWithLiterals, dG as ImageStyles, e$ as InPersonOptions, aF as InitialExpandedItems, ik as InitialExpandedItemsWithLiterals, cm as InputField, cn as InputFieldInputTypeOptionsOneOf, b4 as InputType, iM as InputTypeWithLiterals, bU as IntegerType, g6 as IsFormSubmittableRequest, g7 as IsFormSubmittableResponse, cV as Item, cW as ItemDataOneOf, eS as ItemLayout, eT as ItemLayoutItemOneOf, gu as ItemMetadata, cZ as ItemStyle, aV as ItemType, iB as ItemTypeWithLiterals, bc as Kind, iU as KindWithLiterals, aD as Layout, e1 as LayoutCellData, d$ as LayoutData, aK as LayoutDataImagePosition, iq as LayoutDataImagePositionWithLiterals, ai as LayoutType, hY as LayoutTypeWithLiterals, ii as LayoutWithLiterals, fK as LimitationRule, ae as LineStyle, hU as LineStyleWithLiterals, cH as Link, dw as LinkData, cI as LinkDataOneOf, d7 as LinkPreviewData, d8 as LinkPreviewDataStyles, ac as LinkTarget, hS as LinkTargetWithLiterals, gS as ListDeletedSubmissionsRequest, hn as ListFormattedSubmissionsRequest, ho as ListFormattedSubmissionsResponse, dV as ListValue, eZ as Location, e_ as LocationLocationInfoOneOf, d9 as MapData, da as MapSettings, ap as MapType, i3 as MapTypeWithLiterals, eV as Margin, bG as MarketingSubscriptionDetails, cS as Media, e5 as MediaItem, e6 as MediaItemMediaOneOf, e7 as MediaSettings, dx as MentionData, gg as MessageEnvelope, e2 as Metadata, bu as Mode, ja as ModeWithLiterals, eK as MultilineAddress, cb as MultilineAddressValidation, fJ as NestedForm, cf as NestedFormFieldOverrides, cj as NestedFormOverrides, cv as Node, cw as NodeDataOneOf, cx as NodeStyle, a8 as NodeType, hO as NodeTypeWithLiterals, aI as NullValue, io as NullValueWithLiterals, aT as NumberComponentType, iz as NumberComponentTypeWithLiterals, bT as NumberErrorMessages, em as NumberInput, aR as NumberOfColumns, ix as NumberOfColumnsWithLiterals, el as NumberType, fq as ObjectArray, b1 as ObjectArrayComponentType, fr as ObjectArrayComponentTypeOptionsOneOf, iJ as ObjectArrayComponentTypeWithLiterals, ce as ObjectArrayType, b$ as ObjectErrorMessages, er as ObjectType, bZ as ObjectTypePropertiesType, b_ as ObjectTypePropertiesTypePropertiesTypeOneOf, dN as Oembed, bp as Operator, j5 as OperatorWithLiterals, a0 as OptInLevel, hG as OptInLevelWithLiterals, ex as Option, dm as OptionDesign, dh as OptionLayout, f_ as OrCondition, bA as OrderDetails, dX as OrderedListData, aj as Orientation, hZ as OrientationWithLiterals, bb as OverrideEntityType, bo as OverrideEntityTypeEnumOverrideEntityType, j4 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iT as OverrideEntityTypeWithLiterals, cQ as PDFSettings, fv as PageNavigationOptions, db as ParagraphData, ek as Password, fk as Payment, a_ as PaymentComponentType, fl as PaymentComponentTypeOptionsOneOf, iG as PaymentComponentTypeWithLiterals, eI as PaymentInput, c5 as PaymentType, dd as Permissions, cr as PhoneConstraints, f5 as PhoneInfo, b6 as PhoneInfoTag, iO as PhoneInfoTagWithLiterals, ee as PhoneInput, f1 as PhoneOptions, aA as Placement, ie as PlacementWithLiterals, dL as PlaybackOptions, cB as PluginContainerData, aa as PluginContainerDataAlignment, hQ as PluginContainerDataAlignmentWithLiterals, cC as PluginContainerDataWidth, cD as PluginContainerDataWidthDataOneOf, dn as Poll, dc as PollData, dp as PollDataLayout, dl as PollDesign, dg as PollLayout, at as PollLayoutDirection, i7 as PollLayoutDirectionWithLiterals, as as PollLayoutType, i6 as PollLayoutTypeWithLiterals, de as PollOption, ax as Position, ib as PositionWithLiterals, fA as PostSubmissionTriggers, c3 as PredefinedValidation, c4 as PredefinedValidationFormatOptionsOneOf, a4 as PriceType, hK as PriceTypeWithLiterals, dJ as PricingData, c9 as Product, eE as ProductCheckboxGroup, eF as ProductCheckboxGroupOption, ca as ProductPriceOptionsOneOf, a3 as ProductType, hJ as ProductTypeWithLiterals, es as PropertiesType, aW as PropertiesTypeEnum, iC as PropertiesTypeEnumWithLiterals, et as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, c6 as QuantityLimit, gX as QuerySubmissionRequest, h6 as QuerySubmissionsByNamespaceForExportRequest, h7 as QuerySubmissionsByNamespaceForExportResponse, h4 as QuerySubmissionsByNamespaceRequest, h5 as QuerySubmissionsByNamespaceResponse, e8 as RadioGroup, e9 as RadioGroupOption, en as RatingInput, fP as RedirectOptions, cJ as Rel, gO as RemoveSubmissionFromTrashBinRequest, gP as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, eP as Repeater, bj as RequiredIndicator, bk as RequiredIndicatorPlacement, j0 as RequiredIndicatorPlacementWithLiterals, fL as RequiredIndicatorProperties, i$ as RequiredIndicatorWithLiterals, fS as RequiredOptions, az as Resizing, id as ResizingWithLiterals, aM as ResponsivenessBehaviour, is as ResponsivenessBehaviourWithLiterals, gb as RestoreInfo, gN as RestoreSubmissionFromTrashBinRequest, dH as RibbonStyles, cu as RichContent, fu as RichContentOptions, fR as Rule, g0 as RuleFormOverride, g1 as RuleFormOverrideEntityTypeOptionsOneOf, aJ as Scaling, ip as ScalingWithLiterals, fm as Scheduling, b2 as SchedulingComponentType, fn as SchedulingComponentTypeOptionsOneOf, iK as SchedulingComponentTypeWithLiterals, h1 as SearchDetails, h2 as SearchSubmissionsByNamespaceForExportRequest, h3 as SearchSubmissionsByNamespaceForExportResponse, g_ as SearchSubmissionsByNamespaceRequest, eW as Section, ej as ServiceOption, eA as ServicesCheckboxGroup, ei as ServicesDropdown, df as Settings, eD as Signature, bt as SortOrder, j9 as SortOrderWithLiterals, gZ as Sorting, an as Source, i1 as SourceWithLiterals, bi as SpamFilterProtectionLevel, i_ as SpamFilterProtectionLevelWithLiterals, cE as Spoiler, dz as SpoilerData, bv as Status, jb as StatusWithLiterals, fw as Step, a7 as StringComponentType, hN as StringComponentTypeWithLiterals, bO as StringErrorMessages, co as StringType, bP as StringTypeDateTimeConstraints, a1 as StringTypeFormatEnumFormat, hH as StringTypeFormatEnumFormatWithLiterals, cp as StringTypeFormatOptionsOneOf, bQ as StringTypePhoneConstraints, bR as StringTypeValidationMessages, cG as Styles, d5 as StylesBorder, ao as StylesPosition, i2 as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hg as SubmissionDocument, hh as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jc as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hF as SubmissionStatusWithLiterals, hy as SubmissionValidationError, hz as SubmissionValidationErrorErrorMessageOneOf, hx as SubmissionValidationErrors, gn as SubmissionValidationErrorsDetails, hD as SubmissionsQueryResult, gk as SubmitContactResponse, fM as SubmitSettings, fN as SubmitSettingsSubmitSuccessActionOptionsOneOf, bm as SubmitSuccessAction, j2 as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, f8 as SubscriptionInfo, bg as SubscriptionInfoOptInLevel, iY as SubscriptionInfoOptInLevelWithLiterals, dR as TableCellData, dP as TableData, b7 as Tag, bC as TagList, iP as TagWithLiterals, g2 as Tags, ez as TagsOption, g3 as TagsTagList, bl as Target, j1 as TargetWithLiterals, ad as TextAlignment, hT as TextAlignmentWithLiterals, dr as TextData, ct as TextInput, e4 as TextNodeStyle, cL as TextStyle, fO as ThankYouMessageOptions, c_ as Thumbnails, al as ThumbnailsAlignment, h$ as ThumbnailsAlignmentWithLiterals, eg as TimeInput, b0 as Type, iI as TypeWithLiterals, hq as UpdateExtendedFieldsRequest, gG as UpdateSubmissionRequest, gH as UpdateSubmissionResponse, aZ as UploadFileFormat, iF as UploadFileFormatWithLiterals, fB as UpsertContact, gj as UpsertContactFromSubmissionRequest, fC as V4FormFieldContactInfo, fD as V4FormFieldContactInfoAdditionalInfoOneOf, hu as ValidateFormSubmissionRequest, cg as Validation, go as ValidationError, a2 as ValidationFormat, hI as ValidationFormatWithLiterals, cs as ValidationMessages, ch as ValidationValidationOneOf, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, ir as VerticalAlignmentAlignmentWithLiterals, im as VerticalAlignmentWithLiterals, cU as Video, f0 as VideoConferenceOptions, dK as VideoData, ah as ViewMode, hX as ViewModeWithLiterals, aq as ViewRole, i4 as ViewRoleWithLiterals, ar as VoteRole, i5 as VoteRoleWithLiterals, bq as WebhookIdentityType, j6 as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, hP as WidthTypeWithLiterals, hV as WidthWithLiterals, fi as WixFile, aY as WixFileComponentType, fj as WixFileComponentTypeOptionsOneOf, iE as WixFileComponentTypeWithLiterals, ff as _Array, fg as _ArrayComponentTypeOptionsOneOf, fd as _Boolean, fe as _BooleanComponentTypeOptionsOneOf, fb as _Number, fc as _NumberComponentTypeOptionsOneOf, fh as _Object, f9 as _String, fa as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-utyxsDjV.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
|
@@ -933,6 +933,7 @@ var StringComponentType = /* @__PURE__ */ ((StringComponentType2) => {
|
|
|
933
933
|
StringComponentType2["TIME_INPUT"] = "TIME_INPUT";
|
|
934
934
|
StringComponentType2["DATE_PICKER"] = "DATE_PICKER";
|
|
935
935
|
StringComponentType2["SERVICES_DROPDOWN"] = "SERVICES_DROPDOWN";
|
|
936
|
+
StringComponentType2["PASSWORD"] = "PASSWORD";
|
|
936
937
|
return StringComponentType2;
|
|
937
938
|
})(StringComponentType || {});
|
|
938
939
|
var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
@@ -1227,6 +1228,11 @@ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
|
1227
1228
|
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1228
1229
|
return ResponsivenessBehaviour2;
|
|
1229
1230
|
})(ResponsivenessBehaviour || {});
|
|
1231
|
+
var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
1232
|
+
DesignTarget2["LAYOUT"] = "LAYOUT";
|
|
1233
|
+
DesignTarget2["CELL"] = "CELL";
|
|
1234
|
+
return DesignTarget2;
|
|
1235
|
+
})(DesignTarget || {});
|
|
1230
1236
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1231
1237
|
ImagePosition2["UNKNOWN_IMAGE_POSITION"] = "UNKNOWN_IMAGE_POSITION";
|
|
1232
1238
|
ImagePosition2["ABOVE"] = "ABOVE";
|
|
@@ -2736,7 +2742,9 @@ var onSubmissionUpdated = EventDefinition(
|
|
|
2736
2742
|
paths: [
|
|
2737
2743
|
{ path: "entity.createdDate" },
|
|
2738
2744
|
{ path: "entity.updatedDate" },
|
|
2739
|
-
{ path: "metadata.eventTime" }
|
|
2745
|
+
{ path: "metadata.eventTime" },
|
|
2746
|
+
{ path: "modifiedFields.createdDate" },
|
|
2747
|
+
{ path: "modifiedFields.updatedDate" }
|
|
2740
2748
|
]
|
|
2741
2749
|
}
|
|
2742
2750
|
])
|
|
@@ -2823,6 +2831,7 @@ export {
|
|
|
2823
2831
|
ContactField,
|
|
2824
2832
|
Crop,
|
|
2825
2833
|
DecorationType,
|
|
2834
|
+
DesignTarget,
|
|
2826
2835
|
Direction,
|
|
2827
2836
|
DisplayFieldType,
|
|
2828
2837
|
DividerDataAlignment,
|