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