@wix/auto_sdk_forms_submissions 1.0.109 → 1.0.111
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-DmrA9Uxi.d.ts → forms-v4-submission-submissions.universal-B2-JQqx2.d.ts} +55 -30
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +10 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +10 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +56 -31
- package/build/cjs/meta.js +10 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +1351 -0
- package/build/cjs/schemas.js +2318 -0
- package/build/cjs/schemas.js.map +1 -0
- package/build/es/{forms-v4-submission-submissions.universal-DmrA9Uxi.d.mts → forms-v4-submission-submissions.universal-B2-JQqx2.d.mts} +55 -30
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +9 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +9 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +56 -31
- package/build/es/meta.mjs +9 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +1351 -0
- package/build/es/schemas.mjs +2232 -0
- package/build/es/schemas.mjs.map +1 -0
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-DH6N9f2_.d.ts → forms-v4-submission-submissions.universal-CoYDEhLi.d.ts} +55 -30
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +10 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +10 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +56 -31
- package/build/internal/cjs/meta.js +10 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +1351 -0
- package/build/internal/cjs/schemas.js +2318 -0
- package/build/internal/cjs/schemas.js.map +1 -0
- package/build/internal/es/{forms-v4-submission-submissions.universal-DH6N9f2_.d.mts → forms-v4-submission-submissions.universal-CoYDEhLi.d.mts} +55 -30
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +9 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +9 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +56 -31
- package/build/internal/es/meta.mjs +9 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +1351 -0
- package/build/internal/es/schemas.mjs +2232 -0
- package/build/internal/es/schemas.mjs.map +1 -0
- package/package.json +11 -4
- package/schemas/package.json +3 -0
|
@@ -562,6 +562,12 @@ interface Form {
|
|
|
562
562
|
tags?: Tags;
|
|
563
563
|
/** Source used for contact autofill when filling form fields. Default: FORM_INPUT. */
|
|
564
564
|
autoFillContact?: ContactAutofillWithLiterals;
|
|
565
|
+
/**
|
|
566
|
+
* Controls who can read submissions of this form beyond the standard permission.
|
|
567
|
+
*
|
|
568
|
+
* Default: `OWNER_AND_COLLABORATORS`
|
|
569
|
+
*/
|
|
570
|
+
submissionAccess?: SubmissionAccessWithLiterals;
|
|
565
571
|
}
|
|
566
572
|
interface FormField {
|
|
567
573
|
/**
|
|
@@ -594,9 +600,9 @@ interface FormField {
|
|
|
594
600
|
}
|
|
595
601
|
interface FormFieldStringType extends FormFieldStringTypeFormatOptionsOneOf {
|
|
596
602
|
/** DATE format options */
|
|
597
|
-
dateOptions?:
|
|
603
|
+
dateOptions?: DateTimeAdvancedConstraints;
|
|
598
604
|
/** DATE_TIME format options */
|
|
599
|
-
dateTimeOptions?:
|
|
605
|
+
dateTimeOptions?: StringTypeDateTimeConstraints;
|
|
600
606
|
/** TIME format options */
|
|
601
607
|
timeOptions?: StringTypeDateTimeConstraints;
|
|
602
608
|
/** DATE_OPTIONAL_TIME format options */
|
|
@@ -634,9 +640,9 @@ interface FormFieldStringType extends FormFieldStringTypeFormatOptionsOneOf {
|
|
|
634
640
|
/** @oneof */
|
|
635
641
|
interface FormFieldStringTypeFormatOptionsOneOf {
|
|
636
642
|
/** DATE format options */
|
|
637
|
-
dateOptions?:
|
|
643
|
+
dateOptions?: DateTimeAdvancedConstraints;
|
|
638
644
|
/** DATE_TIME format options */
|
|
639
|
-
dateTimeOptions?:
|
|
645
|
+
dateTimeOptions?: StringTypeDateTimeConstraints;
|
|
640
646
|
/** TIME format options */
|
|
641
647
|
timeOptions?: StringTypeDateTimeConstraints;
|
|
642
648
|
/** DATE_OPTIONAL_TIME format options */
|
|
@@ -669,24 +675,6 @@ interface StringErrorMessages {
|
|
|
669
675
|
*/
|
|
670
676
|
default?: string | null;
|
|
671
677
|
}
|
|
672
|
-
interface StringTypeDateTimeConstraints {
|
|
673
|
-
/**
|
|
674
|
-
* Support static constrains defined as ISO date/time format, as well as
|
|
675
|
-
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
676
|
-
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
677
|
-
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
678
|
-
* @maxLength 50
|
|
679
|
-
*/
|
|
680
|
-
minimum?: string | null;
|
|
681
|
-
/**
|
|
682
|
-
* Support static constrains defined as ISO date/time format, as well as
|
|
683
|
-
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
684
|
-
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
685
|
-
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
686
|
-
* @maxLength 50
|
|
687
|
-
*/
|
|
688
|
-
maximum?: string | null;
|
|
689
|
-
}
|
|
690
678
|
interface DateTimeAdvancedConstraints {
|
|
691
679
|
/**
|
|
692
680
|
* Allows to specify available and unavailable dates and days of the week.
|
|
@@ -750,6 +738,24 @@ declare enum DayOfWeek {
|
|
|
750
738
|
}
|
|
751
739
|
/** @enumType */
|
|
752
740
|
type DayOfWeekWithLiterals = DayOfWeek | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY';
|
|
741
|
+
interface StringTypeDateTimeConstraints {
|
|
742
|
+
/**
|
|
743
|
+
* Support static constrains defined as ISO date/time format, as well as
|
|
744
|
+
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
745
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
746
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
747
|
+
* @maxLength 50
|
|
748
|
+
*/
|
|
749
|
+
minimum?: string | null;
|
|
750
|
+
/**
|
|
751
|
+
* Support static constrains defined as ISO date/time format, as well as
|
|
752
|
+
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
753
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
754
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
755
|
+
* @maxLength 50
|
|
756
|
+
*/
|
|
757
|
+
maximum?: string | null;
|
|
758
|
+
}
|
|
753
759
|
interface StringTypePhoneConstraints {
|
|
754
760
|
/**
|
|
755
761
|
* Country codes for phone number that are allowed
|
|
@@ -1294,9 +1300,9 @@ interface StringCorrectAnswersList {
|
|
|
1294
1300
|
}
|
|
1295
1301
|
interface StringType extends StringTypeFormatOptionsOneOf {
|
|
1296
1302
|
/** Validation rules for strings with date format. */
|
|
1297
|
-
dateOptions?:
|
|
1303
|
+
dateOptions?: DateTimeAdvancedConstraints;
|
|
1298
1304
|
/** Validation rules for strings with date and time format. */
|
|
1299
|
-
dateTimeOptions?:
|
|
1305
|
+
dateTimeOptions?: DateTimeConstraints;
|
|
1300
1306
|
/** Validation rules for strings with time format. */
|
|
1301
1307
|
timeOptions?: DateTimeConstraints;
|
|
1302
1308
|
/** Validation rules for string with date and time format, where time is optional. */
|
|
@@ -1333,9 +1339,9 @@ interface StringType extends StringTypeFormatOptionsOneOf {
|
|
|
1333
1339
|
/** @oneof */
|
|
1334
1340
|
interface StringTypeFormatOptionsOneOf {
|
|
1335
1341
|
/** Validation rules for strings with date format. */
|
|
1336
|
-
dateOptions?:
|
|
1342
|
+
dateOptions?: DateTimeAdvancedConstraints;
|
|
1337
1343
|
/** Validation rules for strings with date and time format. */
|
|
1338
|
-
dateTimeOptions?:
|
|
1344
|
+
dateTimeOptions?: DateTimeConstraints;
|
|
1339
1345
|
/** Validation rules for strings with time format. */
|
|
1340
1346
|
timeOptions?: DateTimeConstraints;
|
|
1341
1347
|
/** Validation rules for string with date and time format, where time is optional. */
|
|
@@ -3853,6 +3859,7 @@ interface DateTimeInput {
|
|
|
3853
3859
|
* such as "$now" to represent the current date and time.
|
|
3854
3860
|
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3855
3861
|
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3862
|
+
* @maxLength 50
|
|
3856
3863
|
*/
|
|
3857
3864
|
default?: string | null;
|
|
3858
3865
|
/** Media content associated with the field, such as an image. */
|
|
@@ -3927,6 +3934,7 @@ interface DateInput {
|
|
|
3927
3934
|
* such as "$now" to represent the current date and time.
|
|
3928
3935
|
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3929
3936
|
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3937
|
+
* @maxLength 50
|
|
3930
3938
|
*/
|
|
3931
3939
|
default?: string | null;
|
|
3932
3940
|
/** Media content associated with the field, such as an image. */
|
|
@@ -3971,6 +3979,7 @@ interface TimeInput {
|
|
|
3971
3979
|
* such as "$now" to represent the current date and time.
|
|
3972
3980
|
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3973
3981
|
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3982
|
+
* @maxLength 50
|
|
3974
3983
|
*/
|
|
3975
3984
|
default?: string | null;
|
|
3976
3985
|
/** Media content associated with the field, such as an image. */
|
|
@@ -4005,6 +4014,7 @@ interface DatePicker {
|
|
|
4005
4014
|
* such as "$now" to represent the current date and time.
|
|
4006
4015
|
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
4007
4016
|
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
4017
|
+
* @maxLength 50
|
|
4008
4018
|
*/
|
|
4009
4019
|
default?: string | null;
|
|
4010
4020
|
/** Media content associated with the field, such as an image. */
|
|
@@ -4463,7 +4473,7 @@ interface FileType {
|
|
|
4463
4473
|
fileLimit?: number;
|
|
4464
4474
|
/**
|
|
4465
4475
|
* Supported file formats for uploaded files.
|
|
4466
|
-
* @maxSize
|
|
4476
|
+
* @maxSize 6
|
|
4467
4477
|
*/
|
|
4468
4478
|
uploadFileFormats?: UploadFileFormatWithLiterals[];
|
|
4469
4479
|
}
|
|
@@ -4477,10 +4487,12 @@ declare enum UploadFileFormat {
|
|
|
4477
4487
|
/** Document files. */
|
|
4478
4488
|
DOCUMENT = "DOCUMENT",
|
|
4479
4489
|
/** Archive files. */
|
|
4480
|
-
ARCHIVE = "ARCHIVE"
|
|
4490
|
+
ARCHIVE = "ARCHIVE",
|
|
4491
|
+
/** 3D model files. */
|
|
4492
|
+
MODEL_3D = "MODEL_3D"
|
|
4481
4493
|
}
|
|
4482
4494
|
/** @enumType */
|
|
4483
|
-
type UploadFileFormatWithLiterals = UploadFileFormat | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
4495
|
+
type UploadFileFormatWithLiterals = UploadFileFormat | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE' | 'MODEL_3D';
|
|
4484
4496
|
interface FileUpload {
|
|
4485
4497
|
/**
|
|
4486
4498
|
* Field label.
|
|
@@ -6109,6 +6121,19 @@ declare enum ContactAutofill {
|
|
|
6109
6121
|
}
|
|
6110
6122
|
/** @enumType */
|
|
6111
6123
|
type ContactAutofillWithLiterals = ContactAutofill | 'MEMBER_DATA' | 'FORM_INPUT';
|
|
6124
|
+
/** Controls who can read submissions of this form. */
|
|
6125
|
+
declare enum SubmissionAccess {
|
|
6126
|
+
/** Unknown submission access. */
|
|
6127
|
+
UNKNOWN_SUBMISSION_ACCESS = "UNKNOWN_SUBMISSION_ACCESS",
|
|
6128
|
+
/** Only users with `WIX_FORM.SUBMISSIONS_READ_ANY` permission. Default behavior. */
|
|
6129
|
+
OWNER_AND_COLLABORATORS = "OWNER_AND_COLLABORATORS",
|
|
6130
|
+
/** Logged-in site members can read submissions. */
|
|
6131
|
+
MEMBERS = "MEMBERS",
|
|
6132
|
+
/** Any site visitor with a valid Wix session can read submissions. */
|
|
6133
|
+
PUBLIC = "PUBLIC"
|
|
6134
|
+
}
|
|
6135
|
+
/** @enumType */
|
|
6136
|
+
type SubmissionAccessWithLiterals = SubmissionAccess | 'UNKNOWN_SUBMISSION_ACCESS' | 'OWNER_AND_COLLABORATORS' | 'MEMBERS' | 'PUBLIC';
|
|
6112
6137
|
interface CreateCheckoutFromSubmissionResponse {
|
|
6113
6138
|
/**
|
|
6114
6139
|
* Checkout ID (applicable for form involving payments).
|
|
@@ -8244,4 +8269,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
8244
8269
|
fieldsToValidate?: string[];
|
|
8245
8270
|
}
|
|
8246
8271
|
|
|
8247
|
-
export { DayOfWeek 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, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FirstDayOfWeek as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, PropertiesTypeEnum as a3, FieldType as a4, FormatEnumFormat as a5, StringComponentType as a6, NodeType as a7, BackgroundType as a8, GradientType as a9, Resizing as aA, Placement as aB, CardStylesType as aC, CardStylesAlignment as aD, Layout as aE, AppType as aF, InitialExpandedItems as aG, Direction as aH, VerticalAlignment as aI, NullValue as aJ, ImageScalingScaling as aK, LayoutDataImagePosition as aL, Origin as aM, LayoutDataBackgroundType as aN, BackdropType as aO, VerticalAlignmentAlignment as aP, ResponsivenessBehaviour as aQ, DesignTarget as aR, Scaling as aS, ImagePositionPosition as aT, CardDataBackgroundType as aU, ListStyle as aV, Indentation as aW, ImagePosition as aX, Alignment as aY, ImageFit as aZ, NumberOfColumns as a_, WidthType as aa, PluginContainerDataAlignment as ab, ButtonDataType as ac, LinkTarget as ad, TextAlignment as ae, LineStyle as af, Width as ag, DividerDataAlignment as ah, ViewMode as ai, LayoutType as aj, Orientation as ak, Crop as al, ThumbnailsAlignment as am, GIFType as an, Source as ao, StylesPosition as ap, MapType as aq, ViewRole as ar, VoteRole as as, PollLayoutType as at, PollLayoutDirection as au, PollDesignBackgroundType as av, DecorationType as aw, FontType as ax, Position as ay, AspectRatio as az, type CreateSubmissionApplicationErrors as b, type EntityDeletedEvent as b$, NumberComponentType as b0, BooleanComponentType as b1, ItemType as b2, PropertiesTypePropertiesTypeEnum as b3, ArrayComponentType as b4, WixFileComponentType as b5, UploadFileFormat as b6, PaymentComponentType as b7, ComponentType as b8, Type as b9, OverrideEntityTypeEnumOverrideEntityType as bA, Operator as bB, ResultsDisplay as bC, ContactAutofill as bD, IdentityType as bE, ErrorType as bF, SortOrder as bG, Mode as bH, Status as bI, SubmissionErrorType as bJ, type Submitter as bK, type SubmitterSubmitterOneOf as bL, type ExtendedFields as bM, type OrderDetails as bN, type PublicTags as bO, type TagList as bP, type AppointmentDetails as bQ, type FormSubmissionStatusUpdatedEvent as bR, type RemovedSubmissionFromTrash as bS, type SubmissionContactMapped as bT, type MarketingSubscriptionDetails as bU, type SubmissionContactMappingSkipped as bV, type DomainEvent as bW, type DomainEventBodyOneOf as bX, type EntityCreatedEvent as bY, type RestoreInfo as bZ, type EntityUpdatedEvent as b_, ObjectArrayComponentType as ba, SchedulingComponentType as bb, Format as bc, MeetingType as bd, StaffStrategySelection as be, InputType as bf, EmailInfoTag as bg, PhoneInfoTag as bh, Tag as bi, ConfirmationLevel as bj, SubscriptionChannel as bk, ContactField as bl, DisplayFieldType as bm, OverrideEntityType as bn, Kind as bo, FormFieldContactInfoEmailInfoTag as bp, FormFieldContactInfoPhoneInfoTag as bq, AddressInfoTag as br, SubscriptionInfoOptInLevel as bs, FormFieldContactInfoContactField as bt, SpamFilterProtectionLevel as bu, RequiredIndicator as bv, RequiredIndicatorPlacement as bw, Target as bx, SubmitSuccessAction as by, ChangeableProperty as bz, type CreateSubmissionValidationErrors as c, type NodeDataOneOf as c$, type ActionEvent as c0, type MessageEnvelope as c1, type IdentificationData as c2, type IdentificationDataIdOneOf as c3, type AccountInfo as c4, type CreateCheckoutFromSubmissionRequest as c5, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c6, type Form as c7, type FormField as c8, type FormFieldStringType as c9, type DynamicPriceOptions as cA, type Product as cB, type ProductPriceOptionsOneOf as cC, type MultilineAddressValidation as cD, type FieldOverrides as cE, type FieldsOverrides as cF, type ObjectArrayType as cG, type PropertiesType as cH, type NestedFormFieldOverrides as cI, type Validation as cJ, type ValidationValidationOneOf as cK, type DataExtensionsDetails as cL, type NestedFormOverrides as cM, type Field as cN, type FieldFieldTypeOptionsOneOf as cO, type InputField as cP, type InputFieldInputTypeOptionsOneOf as cQ, type StringCorrectAnswersList as cR, type StringType as cS, type StringTypeFormatOptionsOneOf as cT, type DateTimeConstraints as cU, type PhoneConstraints as cV, type ValidationMessages as cW, type StringQuizFieldSettings as cX, type TextInput as cY, type RichContent as cZ, type Node as c_, type FormFieldStringTypeFormatOptionsOneOf as ca, type StringErrorMessages as cb, type StringTypeDateTimeConstraints as cc, type DateTimeAdvancedConstraints as cd, type Availability as ce, type DateRange as cf, type StringTypePhoneConstraints as cg, type StringTypeValidationMessages as ch, type FormFieldNumberType as ci, type NumberErrorMessages as cj, type IntegerType as ck, type FormFieldBooleanType as cl, type BooleanErrorMessages as cm, type FormFieldArrayType as cn, type FormFieldObjectType as co, type FormFieldObjectTypePropertiesType as cp, type FormFieldObjectTypePropertiesTypePropertiesTypeOneOf as cq, type ObjectErrorMessages as cr, type ArrayTypeArrayItems as cs, type ArrayTypeArrayItemsItemsOneOf as ct, type ArrayErrorMessages as cu, type PredefinedValidation as cv, type PredefinedValidationFormatOptionsOneOf as cw, type PaymentType as cx, type QuantityLimit as cy, type FixedPriceOptions as cz, type UpdateSubmission as d, type DecorationDataOneOf as d$, type NodeStyle as d0, type ButtonData as d1, type Gradient as d2, type Stop as d3, type Border as d4, type Colors as d5, type Background as d6, type PluginContainerData as d7, type PluginContainerDataWidth as d8, type PluginContainerDataWidthDataOneOf as d9, type HeadingData as dA, type HTMLData as dB, type HTMLDataDataOneOf as dC, type ImageData as dD, type StylesBorder as dE, type ImageDataStyles as dF, type LinkPreviewData as dG, type LinkPreviewDataStyles as dH, type MapData as dI, type MapSettings as dJ, type ParagraphData as dK, type PollData as dL, type Permissions as dM, type PollOption as dN, type Settings as dO, type PollLayout as dP, type OptionLayout as dQ, type BackgroundGradient as dR, type PollDesignBackground as dS, type PollDesignBackgroundBackgroundOneOf as dT, type PollDesign as dU, type OptionDesign as dV, type Poll as dW, type PollDataLayout as dX, type Design as dY, type TextData as dZ, type Decoration as d_, type Spoiler as da, type Height as db, type Styles as dc, type Link as dd, type LinkDataOneOf as de, type Rel as df, type CodeBlockData as dg, type TextStyle as dh, type DividerData as di, type FileData as dj, type FileSource as dk, type FileSourceDataOneOf as dl, type PDFSettings as dm, type GalleryData as dn, type Media as dp, type Image as dq, type Video as dr, type Item as ds, type ItemDataOneOf as dt, type GalleryOptions as du, type GalleryOptionsLayout as dv, type ItemStyle as dw, type Thumbnails as dx, type GIFData as dy, type GIF as dz, type UpdateSubmissionValidationErrors as e, type Password as e$, type AnchorData as e0, type ColorData as e1, type LinkData as e2, type MentionData as e3, type FontSizeData as e4, type SpoilerData as e5, type FontFamilyData as e6, type AppEmbedData as e7, type AppEmbedDataAppDataOneOf as e8, type BookingData as e9, type LayoutDataBackground as eA, type Backdrop as eB, type LayoutCellData as eC, type ShapeData as eD, type ShapeDataStyles as eE, type CardData as eF, type CardDataBackground as eG, type BackgroundImage as eH, type TocData as eI, type Metadata as eJ, type DocumentStyle as eK, type TextNodeStyle as eL, type MediaItem as eM, type MediaItemMediaOneOf as eN, type MediaSettings as eO, type RadioGroup as eP, type RadioGroupOption as eQ, type CustomOption as eR, type Dropdown as eS, type DropdownOption as eT, type DateTimeInput as eU, type PhoneInput as eV, type DateInput as eW, type TimeInput as eX, type DatePicker as eY, type ServicesDropdown as eZ, type ServiceOption as e_, type EventData as ea, type ButtonStyles as eb, type ImageStyles as ec, type RibbonStyles as ed, type CardStyles as ee, type PricingData as ef, type VideoData as eg, type PlaybackOptions as eh, type EmbedData as ei, type Oembed as ej, type CollapsibleListData as ek, type TableData as el, type Dimensions as em, type TableCellData as en, type CellStyle as eo, type BorderColors as ep, type BorderWidths as eq, type ListValue as er, type AudioData as es, type OrderedListData as et, type BulletedListData as eu, type BlockquoteData as ev, type CaptionData as ew, type LayoutData as ex, type LayoutDataBackgroundImage as ey, type Banner as ez, type ConfirmSubmissionResponse as f, type _Array as f$, type NumberCorrectAnswersList as f0, type NumberType as f1, type NumberQuizFieldSettings as f2, type NumberInput as f3, type RatingInput as f4, type BooleanType as f5, type Checkbox as f6, type CorrectAnswersList as f7, type ArrayType as f8, type ObjectType as f9, type BreakPoint as fA, type ItemLayout as fB, type ItemLayoutItemOneOf as fC, type Group as fD, type Margin as fE, type Section as fF, type Pikachu as fG, type Appointment as fH, type AppointmentFormatInfoOneOf as fI, type Location as fJ, type LocationLocationInfoOneOf as fK, type InPersonOptions as fL, type VideoConferenceOptions as fM, type PhoneOptions as fN, type FormFieldContactInfo as fO, type FormFieldContactInfoAdditionalInfoOneOf as fP, type EmailInfo as fQ, type PhoneInfo as fR, type AddressInfo as fS, type CustomFieldInfo as fT, type SubscriptionInfo as fU, type _String as fV, type _StringComponentTypeOptionsOneOf as fW, type _Number as fX, type _NumberComponentTypeOptionsOneOf as fY, type _Boolean as fZ, type _BooleanComponentTypeOptionsOneOf as f_, type ObjectTypePropertiesType as fa, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as fb, type ArrayItems as fc, type ArrayItemsItemTypeOptionsOneOf as fd, type QuizFieldSettings as fe, type CheckboxGroup as ff, type Option as fg, type ComponentsTags as fh, type TagsOption as fi, type ServicesCheckboxGroup as fj, type FileType as fk, type FileUpload as fl, type Signature as fm, type ProductCheckboxGroup as fn, type ProductCheckboxGroupOption as fo, type DonationInput as fp, type DonationInputOption as fq, type PaymentInput as fr, type FixedPayment as fs, type MultilineAddress as ft, type AddressLine2 as fu, type DefaultCountryConfig as fv, type DefaultCountryConfigOptionsOneOf as fw, type FieldsSettings as fx, type Repeater as fy, type FormLayout as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionRequest as g$, type _ArrayComponentTypeOptionsOneOf as g0, type _Object as g1, type WixFile as g2, type WixFileComponentTypeOptionsOneOf as g3, type Payment as g4, type PaymentComponentTypeOptionsOneOf as g5, type Scheduling as g6, type SchedulingComponentTypeOptionsOneOf as g7, type Address as g8, type AddressComponentTypeOptionsOneOf as g9, type FieldGroup as gA, type Rule as gB, type RequiredOptions as gC, type HiddenOptions as gD, type AllowedValuesOptions as gE, type FieldOverride as gF, type FieldOverridePropertyTypeOptionsOneOf as gG, type ConditionNode as gH, type ConditionNodeNodeOneOf as gI, type AndCondition as gJ, type OrCondition as gK, type Condition as gL, type RuleFormOverride as gM, type RuleFormOverrideEntityTypeOptionsOneOf as gN, type Tags as gO, type TagsTagList as gP, type QuizSettings as gQ, type QuizSettingsPassingCriteriaOneOf as gR, type QuizSettingsResultsDisplayOptionsOneOf as gS, type PassFailMessages as gT, type CreateCheckoutFromSubmissionResponse as gU, type Checkout as gV, type IsFormSubmittableRequest as gW, type IsFormSubmittableResponse as gX, type Empty as gY, type UpsertContactFromSubmissionRequest as gZ, type SubmitContactResponse as g_, type ObjectArray as ga, type ObjectArrayComponentTypeOptionsOneOf as gb, type DisplayField as gc, type DisplayFieldDisplayFieldTypeOptionsOneOf as gd, type RichContentOptions as ge, type PageNavigationOptions as gf, type Step as gg, type FormRule as gh, type FormOverride as gi, type FormProperties as gj, type PostSubmissionTriggers as gk, type UpsertContact as gl, type V4FormFieldContactInfo as gm, type V4FormFieldContactInfoAdditionalInfoOneOf as gn, type FormFieldContactInfoEmailInfo as go, type FormFieldContactInfoPhoneInfo as gp, type FormFieldContactInfoAddressInfo as gq, type FormFieldContactInfoCustomFieldInfo as gr, type FormFieldContactInfoSubscriptionInfo as gs, type NestedForm as gt, type LimitationRule as gu, type RequiredIndicatorProperties as gv, type SubmitSettings as gw, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gx, type ThankYouMessageOptions as gy, type RedirectOptions as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type FormattedFormSubmission as h$, type CreateSubmissionResponse as h0, type SubmissionValidationErrorsDetails as h1, type ValidationError as h2, type CreateSubmissionBySubmitterRequest as h3, type CreateSubmissionBySubmitterResponse as h4, type BulkCreateSubmissionBySubmitterRequest as h5, type BulkCreateSubmissionBySubmitterData as h6, type BulkCreateSubmissionBySubmitterResponse as h7, type BulkSubmissionResult as h8, type ItemMetadata as h9, type SearchSubmissionsByNamespaceRequest as hA, type CursorSearch as hB, type CursorSearchPagingMethodOneOf as hC, type SearchDetails as hD, type SearchSubmissionsByNamespaceForExportRequest as hE, type SearchSubmissionsByNamespaceForExportResponse as hF, type QuerySubmissionsByNamespaceRequest as hG, type QuerySubmissionsByNamespaceResponse as hH, type QuerySubmissionsByNamespaceForExportRequest as hI, type QuerySubmissionsByNamespaceForExportResponse as hJ, type CountSubmissionsByFilterRequest as hK, type FormSubmissionsCount as hL, type CountSubmissionsRequest as hM, type CountDeletedSubmissionsRequest as hN, type FormDeletedSubmissionsCount as hO, type GetMediaUploadURLRequest as hP, type BulkMarkSubmissionsAsSeenRequest as hQ, type GetSubmissionDownloadUrlRequest as hR, type SubmissionDocument as hS, type SubmissionDocumentDocumentOneOf as hT, type DocumentReady as hU, type DownloadSubmissionRequest as hV, type HeadersEntry as hW, type GetFormattedSubmissionRequest as hX, type FormattedSubmission as hY, type ListFormattedSubmissionsRequest as hZ, type ListFormattedSubmissionsResponse as h_, type ApplicationError as ha, type BulkActionMetadata as hb, type GetSubmissionRequest as hc, type GetSubmissionResponse as hd, type GetSubmissionByCheckoutIdRequest as he, type GetSubmissionByCheckoutIdResponse as hf, type UpdateSubmissionRequest as hg, type UpdateSubmissionResponse as hh, type ConfirmSubmissionRequest as hi, type DeleteSubmissionRequest as hj, type DeleteSubmissionResponse as hk, type BulkDeleteSubmissionRequest as hl, type BulkDeleteSubmissionResult as hm, type RestoreSubmissionFromTrashBinRequest as hn, type RemoveSubmissionFromTrashBinRequest as ho, type RemoveSubmissionFromTrashBinResponse as hp, type BulkRemoveSubmissionFromTrashBinRequest as hq, type BulkRemoveSubmissionFromTrashBinResult as hr, type ListDeletedSubmissionsRequest as hs, type CursorPaging as ht, type CursorPagingMetadata as hu, type Cursors as hv, type GetDeletedSubmissionRequest as hw, type QuerySubmissionRequest as hx, type CursorQueryPagingMethodOneOf as hy, type Sorting as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type AspectRatioWithLiterals as i$, type UpdateExtendedFieldsRequest as i0, type BulkUpdateFormSubmissionTagsRequest as i1, type BulkUpdateFormSubmissionTagsResponse as i2, type BulkUpdateFormSubmissionTagsResult as i3, type BulkUpdateFormSubmissionTagsByFilterRequest as i4, type BulkUpdateFormSubmissionTagsByFilterResponse as i5, type ValidateFormSubmissionRequest as i6, type FieldViolation as i7, type FieldViolationErrorDataOneOf as i8, type SubmissionValidationErrors as i9, type BackgroundTypeWithLiterals as iA, type GradientTypeWithLiterals as iB, type WidthTypeWithLiterals as iC, type PluginContainerDataAlignmentWithLiterals as iD, type ButtonDataTypeWithLiterals as iE, type LinkTargetWithLiterals as iF, type TextAlignmentWithLiterals as iG, type LineStyleWithLiterals as iH, type WidthWithLiterals as iI, type DividerDataAlignmentWithLiterals as iJ, type ViewModeWithLiterals as iK, type LayoutTypeWithLiterals as iL, type OrientationWithLiterals as iM, type CropWithLiterals as iN, type ThumbnailsAlignmentWithLiterals as iO, type GIFTypeWithLiterals as iP, type SourceWithLiterals as iQ, type StylesPositionWithLiterals as iR, type MapTypeWithLiterals as iS, type ViewRoleWithLiterals as iT, type VoteRoleWithLiterals as iU, type PollLayoutTypeWithLiterals as iV, type PollLayoutDirectionWithLiterals as iW, type PollDesignBackgroundTypeWithLiterals as iX, type DecorationTypeWithLiterals as iY, type FontTypeWithLiterals as iZ, type PositionWithLiterals as i_, type SubmissionValidationError as ia, type SubmissionValidationErrorErrorMessageOneOf as ib, type BaseEventMetadata as ic, type EventMetadata as id, type AccountInfoMetadata as ie, type FormSubmissionSearchSpec as ig, type SubmissionsQueryResult as ih, type FormSubmissionQuerySpec as ii, type BulkUpdateFormSubmissionTagsOptions as ij, type BulkUpdateFormSubmissionTagsByFilterOptions as ik, utils as il, type SubmissionStatusWithLiterals as im, type OptInLevelWithLiterals as io, type WebhookIdentityTypeWithLiterals as ip, type StringTypeFormatEnumFormatWithLiterals as iq, type DayOfWeekWithLiterals as ir, type ValidationFormatWithLiterals as is, type ProductTypeWithLiterals as it, type PriceTypeWithLiterals as iu, type PropertiesTypeEnumWithLiterals as iv, type FieldTypeWithLiterals as iw, type FormatEnumFormatWithLiterals as ix, type StringComponentTypeWithLiterals as iy, type NodeTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ChangeablePropertyWithLiterals as j$, type ResizingWithLiterals as j0, type PlacementWithLiterals as j1, type CardStylesTypeWithLiterals as j2, type CardStylesAlignmentWithLiterals as j3, type LayoutWithLiterals as j4, type AppTypeWithLiterals as j5, type InitialExpandedItemsWithLiterals as j6, type DirectionWithLiterals as j7, type VerticalAlignmentWithLiterals as j8, type NullValueWithLiterals as j9, type ComponentTypeWithLiterals as jA, type TypeWithLiterals as jB, type ObjectArrayComponentTypeWithLiterals as jC, type SchedulingComponentTypeWithLiterals as jD, type FormatWithLiterals as jE, type MeetingTypeWithLiterals as jF, type StaffStrategySelectionWithLiterals as jG, type InputTypeWithLiterals as jH, type EmailInfoTagWithLiterals as jI, type PhoneInfoTagWithLiterals as jJ, type TagWithLiterals as jK, type ConfirmationLevelWithLiterals as jL, type SubscriptionChannelWithLiterals as jM, type ContactFieldWithLiterals as jN, type DisplayFieldTypeWithLiterals as jO, type OverrideEntityTypeWithLiterals as jP, type KindWithLiterals as jQ, type FormFieldContactInfoEmailInfoTagWithLiterals as jR, type FormFieldContactInfoPhoneInfoTagWithLiterals as jS, type AddressInfoTagWithLiterals as jT, type SubscriptionInfoOptInLevelWithLiterals as jU, type FormFieldContactInfoContactFieldWithLiterals as jV, type SpamFilterProtectionLevelWithLiterals as jW, type RequiredIndicatorWithLiterals as jX, type RequiredIndicatorPlacementWithLiterals as jY, type TargetWithLiterals as jZ, type SubmitSuccessActionWithLiterals as j_, type ImageScalingScalingWithLiterals as ja, type LayoutDataImagePositionWithLiterals as jb, type OriginWithLiterals as jc, type LayoutDataBackgroundTypeWithLiterals as jd, type BackdropTypeWithLiterals as je, type VerticalAlignmentAlignmentWithLiterals as jf, type ResponsivenessBehaviourWithLiterals as jg, type DesignTargetWithLiterals as jh, type ScalingWithLiterals as ji, type ImagePositionPositionWithLiterals as jj, type CardDataBackgroundTypeWithLiterals as jk, type ListStyleWithLiterals as jl, type IndentationWithLiterals as jm, type ImagePositionWithLiterals as jn, type AlignmentWithLiterals as jo, type ImageFitWithLiterals as jp, type NumberOfColumnsWithLiterals as jq, type FirstDayOfWeekWithLiterals as jr, type NumberComponentTypeWithLiterals as js, type BooleanComponentTypeWithLiterals as jt, type ItemTypeWithLiterals as ju, type PropertiesTypePropertiesTypeEnumWithLiterals as jv, type ArrayComponentTypeWithLiterals as jw, type WixFileComponentTypeWithLiterals as jx, type UploadFileFormatWithLiterals as jy, type PaymentComponentTypeWithLiterals as jz, type CursorQuery as k, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as k0, type OperatorWithLiterals as k1, type ResultsDisplayWithLiterals as k2, type ContactAutofillWithLiterals as k3, type IdentityTypeWithLiterals as k4, type ErrorTypeWithLiterals as k5, type SortOrderWithLiterals as k6, type ModeWithLiterals as k7, type StatusWithLiterals as k8, type SubmissionErrorTypeWithLiterals as k9, getMediaUploadUrl as kA, bulkMarkSubmissionsAsSeen as kB, getSubmissionDownloadUrl as kC, downloadSubmission as kD, getFormattedSubmission as kE, updateExtendedFields as kF, validateFormSubmission as kG, type CommonSearchWithEntityContext as ka, type CommonQueryWithEntityContext as kb, onSubmissionCreated as kc, onSubmissionDeleted as kd, onSubmissionRemovedSubmissionFromTrash as ke, onSubmissionStatusUpdated as kf, onSubmissionContactMapped as kg, onSubmissionContactMappingSkipped as kh, onSubmissionUpdated as ki, upsertContactFromSubmission as kj, createSubmission as kk, getSubmission as kl, updateSubmission as km, confirmSubmission as kn, deleteSubmission as ko, bulkDeleteSubmission as kp, restoreSubmissionFromTrashBin as kq, removeSubmissionFromTrashBin as kr, bulkRemoveSubmissionFromTrashBin as ks, listDeletedSubmissions as kt, getDeletedSubmission as ku, querySubmission as kv, querySubmissionsByNamespace as kw, countSubmissionsByFilter as kx, countSubmissions as ky, countDeletedSubmissions as kz, 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 };
|
|
8272
|
+
export { DayOfWeek 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, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FirstDayOfWeek as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, PropertiesTypeEnum as a3, FieldType as a4, FormatEnumFormat as a5, StringComponentType as a6, NodeType as a7, BackgroundType as a8, GradientType as a9, Resizing as aA, Placement as aB, CardStylesType as aC, CardStylesAlignment as aD, Layout as aE, AppType as aF, InitialExpandedItems as aG, Direction as aH, VerticalAlignment as aI, NullValue as aJ, ImageScalingScaling as aK, LayoutDataImagePosition as aL, Origin as aM, LayoutDataBackgroundType as aN, BackdropType as aO, VerticalAlignmentAlignment as aP, ResponsivenessBehaviour as aQ, DesignTarget as aR, Scaling as aS, ImagePositionPosition as aT, CardDataBackgroundType as aU, ListStyle as aV, Indentation as aW, ImagePosition as aX, Alignment as aY, ImageFit as aZ, NumberOfColumns as a_, WidthType as aa, PluginContainerDataAlignment as ab, ButtonDataType as ac, LinkTarget as ad, TextAlignment as ae, LineStyle as af, Width as ag, DividerDataAlignment as ah, ViewMode as ai, LayoutType as aj, Orientation as ak, Crop as al, ThumbnailsAlignment as am, GIFType as an, Source as ao, StylesPosition as ap, MapType as aq, ViewRole as ar, VoteRole as as, PollLayoutType as at, PollLayoutDirection as au, PollDesignBackgroundType as av, DecorationType as aw, FontType as ax, Position as ay, AspectRatio as az, type CreateSubmissionApplicationErrors as b, type EntityUpdatedEvent as b$, NumberComponentType as b0, BooleanComponentType as b1, ItemType as b2, PropertiesTypePropertiesTypeEnum as b3, ArrayComponentType as b4, WixFileComponentType as b5, UploadFileFormat as b6, PaymentComponentType as b7, ComponentType as b8, Type as b9, OverrideEntityTypeEnumOverrideEntityType as bA, Operator as bB, ResultsDisplay as bC, ContactAutofill as bD, SubmissionAccess as bE, IdentityType as bF, ErrorType as bG, SortOrder as bH, Mode as bI, Status as bJ, SubmissionErrorType as bK, type Submitter as bL, type SubmitterSubmitterOneOf as bM, type ExtendedFields as bN, type OrderDetails as bO, type PublicTags as bP, type TagList as bQ, type AppointmentDetails as bR, type FormSubmissionStatusUpdatedEvent as bS, type RemovedSubmissionFromTrash as bT, type SubmissionContactMapped as bU, type MarketingSubscriptionDetails as bV, type SubmissionContactMappingSkipped as bW, type DomainEvent as bX, type DomainEventBodyOneOf as bY, type EntityCreatedEvent as bZ, type RestoreInfo as b_, ObjectArrayComponentType as ba, SchedulingComponentType as bb, Format as bc, MeetingType as bd, StaffStrategySelection as be, InputType as bf, EmailInfoTag as bg, PhoneInfoTag as bh, Tag as bi, ConfirmationLevel as bj, SubscriptionChannel as bk, ContactField as bl, DisplayFieldType as bm, OverrideEntityType as bn, Kind as bo, FormFieldContactInfoEmailInfoTag as bp, FormFieldContactInfoPhoneInfoTag as bq, AddressInfoTag as br, SubscriptionInfoOptInLevel as bs, FormFieldContactInfoContactField as bt, SpamFilterProtectionLevel as bu, RequiredIndicator as bv, RequiredIndicatorPlacement as bw, Target as bx, SubmitSuccessAction as by, ChangeableProperty as bz, type CreateSubmissionValidationErrors as c, type Node as c$, type EntityDeletedEvent as c0, type ActionEvent as c1, type MessageEnvelope as c2, type IdentificationData as c3, type IdentificationDataIdOneOf as c4, type AccountInfo as c5, type CreateCheckoutFromSubmissionRequest as c6, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c7, type Form as c8, type FormField as c9, type FixedPriceOptions as cA, type DynamicPriceOptions as cB, type Product as cC, type ProductPriceOptionsOneOf as cD, type MultilineAddressValidation as cE, type FieldOverrides as cF, type FieldsOverrides as cG, type ObjectArrayType as cH, type PropertiesType as cI, type NestedFormFieldOverrides as cJ, type Validation as cK, type ValidationValidationOneOf as cL, type DataExtensionsDetails as cM, type NestedFormOverrides as cN, type Field as cO, type FieldFieldTypeOptionsOneOf as cP, type InputField as cQ, type InputFieldInputTypeOptionsOneOf as cR, type StringCorrectAnswersList as cS, type StringType as cT, type StringTypeFormatOptionsOneOf as cU, type DateTimeConstraints as cV, type PhoneConstraints as cW, type ValidationMessages as cX, type StringQuizFieldSettings as cY, type TextInput as cZ, type RichContent as c_, type FormFieldStringType as ca, type FormFieldStringTypeFormatOptionsOneOf as cb, type StringErrorMessages as cc, type DateTimeAdvancedConstraints as cd, type Availability as ce, type DateRange as cf, type StringTypeDateTimeConstraints as cg, type StringTypePhoneConstraints as ch, type StringTypeValidationMessages as ci, type FormFieldNumberType as cj, type NumberErrorMessages as ck, type IntegerType as cl, type FormFieldBooleanType as cm, type BooleanErrorMessages as cn, type FormFieldArrayType as co, type FormFieldObjectType as cp, type FormFieldObjectTypePropertiesType as cq, type FormFieldObjectTypePropertiesTypePropertiesTypeOneOf as cr, type ObjectErrorMessages as cs, type ArrayTypeArrayItems as ct, type ArrayTypeArrayItemsItemsOneOf as cu, type ArrayErrorMessages as cv, type PredefinedValidation as cw, type PredefinedValidationFormatOptionsOneOf as cx, type PaymentType as cy, type QuantityLimit as cz, type UpdateSubmission as d, type Decoration as d$, type NodeDataOneOf as d0, type NodeStyle as d1, type ButtonData as d2, type Gradient as d3, type Stop as d4, type Border as d5, type Colors as d6, type Background as d7, type PluginContainerData as d8, type PluginContainerDataWidth as d9, type GIF as dA, type HeadingData as dB, type HTMLData as dC, type HTMLDataDataOneOf as dD, type ImageData as dE, type StylesBorder as dF, type ImageDataStyles as dG, type LinkPreviewData as dH, type LinkPreviewDataStyles as dI, type MapData as dJ, type MapSettings as dK, type ParagraphData as dL, type PollData as dM, type Permissions as dN, type PollOption as dO, type Settings as dP, type PollLayout as dQ, type OptionLayout as dR, type BackgroundGradient as dS, type PollDesignBackground as dT, type PollDesignBackgroundBackgroundOneOf as dU, type PollDesign as dV, type OptionDesign as dW, type Poll as dX, type PollDataLayout as dY, type Design as dZ, type TextData as d_, type PluginContainerDataWidthDataOneOf as da, type Spoiler as db, type Height as dc, type Styles as dd, type Link as de, type LinkDataOneOf as df, type Rel as dg, type CodeBlockData as dh, type TextStyle as di, type DividerData as dj, type FileData as dk, type FileSource as dl, type FileSourceDataOneOf as dm, type PDFSettings as dn, type GalleryData as dp, type Media as dq, type Image as dr, type Video as ds, type Item as dt, type ItemDataOneOf as du, type GalleryOptions as dv, type GalleryOptionsLayout as dw, type ItemStyle as dx, type Thumbnails as dy, type GIFData as dz, type UpdateSubmissionValidationErrors as e, type ServiceOption as e$, type DecorationDataOneOf as e0, type AnchorData as e1, type ColorData as e2, type LinkData as e3, type MentionData as e4, type FontSizeData as e5, type SpoilerData as e6, type FontFamilyData as e7, type AppEmbedData as e8, type AppEmbedDataAppDataOneOf as e9, type Banner as eA, type LayoutDataBackground as eB, type Backdrop as eC, type LayoutCellData as eD, type ShapeData as eE, type ShapeDataStyles as eF, type CardData as eG, type CardDataBackground as eH, type BackgroundImage as eI, type TocData as eJ, type Metadata as eK, type DocumentStyle as eL, type TextNodeStyle as eM, type MediaItem as eN, type MediaItemMediaOneOf as eO, type MediaSettings as eP, type RadioGroup as eQ, type RadioGroupOption as eR, type CustomOption as eS, type Dropdown as eT, type DropdownOption as eU, type DateTimeInput as eV, type PhoneInput as eW, type DateInput as eX, type TimeInput as eY, type DatePicker as eZ, type ServicesDropdown as e_, type BookingData as ea, type EventData as eb, type ButtonStyles as ec, type ImageStyles as ed, type RibbonStyles as ee, type CardStyles as ef, type PricingData as eg, type VideoData as eh, type PlaybackOptions as ei, type EmbedData as ej, type Oembed as ek, type CollapsibleListData as el, type TableData as em, type Dimensions as en, type TableCellData as eo, type CellStyle as ep, type BorderColors as eq, type BorderWidths as er, type ListValue as es, type AudioData as et, type OrderedListData as eu, type BulletedListData as ev, type BlockquoteData as ew, type CaptionData as ex, type LayoutData as ey, type LayoutDataBackgroundImage as ez, type ConfirmSubmissionResponse as f, type _BooleanComponentTypeOptionsOneOf as f$, type Password as f0, type NumberCorrectAnswersList as f1, type NumberType as f2, type NumberQuizFieldSettings as f3, type NumberInput as f4, type RatingInput as f5, type BooleanType as f6, type Checkbox as f7, type CorrectAnswersList as f8, type ArrayType as f9, type FormLayout as fA, type BreakPoint as fB, type ItemLayout as fC, type ItemLayoutItemOneOf as fD, type Group as fE, type Margin as fF, type Section as fG, type Pikachu as fH, type Appointment as fI, type AppointmentFormatInfoOneOf as fJ, type Location as fK, type LocationLocationInfoOneOf as fL, type InPersonOptions as fM, type VideoConferenceOptions as fN, type PhoneOptions as fO, type FormFieldContactInfo as fP, type FormFieldContactInfoAdditionalInfoOneOf as fQ, type EmailInfo as fR, type PhoneInfo as fS, type AddressInfo as fT, type CustomFieldInfo as fU, type SubscriptionInfo as fV, type _String as fW, type _StringComponentTypeOptionsOneOf as fX, type _Number as fY, type _NumberComponentTypeOptionsOneOf as fZ, type _Boolean as f_, type ObjectType as fa, type ObjectTypePropertiesType as fb, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as fc, type ArrayItems as fd, type ArrayItemsItemTypeOptionsOneOf as fe, type QuizFieldSettings as ff, type CheckboxGroup as fg, type Option as fh, type ComponentsTags as fi, type TagsOption as fj, type ServicesCheckboxGroup as fk, type FileType as fl, type FileUpload as fm, type Signature as fn, type ProductCheckboxGroup as fo, type ProductCheckboxGroupOption as fp, type DonationInput as fq, type DonationInputOption as fr, type PaymentInput as fs, type FixedPayment as ft, type MultilineAddress as fu, type AddressLine2 as fv, type DefaultCountryConfig as fw, type DefaultCountryConfigOptionsOneOf as fx, type FieldsSettings as fy, type Repeater as fz, type BulkDeleteSubmissionResponse as g, type SubmitContactResponse as g$, type _Array as g0, type _ArrayComponentTypeOptionsOneOf as g1, type _Object as g2, type WixFile as g3, type WixFileComponentTypeOptionsOneOf as g4, type Payment as g5, type PaymentComponentTypeOptionsOneOf as g6, type Scheduling as g7, type SchedulingComponentTypeOptionsOneOf as g8, type Address as g9, type RedirectOptions as gA, type FieldGroup as gB, type Rule as gC, type RequiredOptions as gD, type HiddenOptions as gE, type AllowedValuesOptions as gF, type FieldOverride as gG, type FieldOverridePropertyTypeOptionsOneOf as gH, type ConditionNode as gI, type ConditionNodeNodeOneOf as gJ, type AndCondition as gK, type OrCondition as gL, type Condition as gM, type RuleFormOverride as gN, type RuleFormOverrideEntityTypeOptionsOneOf as gO, type Tags as gP, type TagsTagList as gQ, type QuizSettings as gR, type QuizSettingsPassingCriteriaOneOf as gS, type QuizSettingsResultsDisplayOptionsOneOf as gT, type PassFailMessages as gU, type CreateCheckoutFromSubmissionResponse as gV, type Checkout as gW, type IsFormSubmittableRequest as gX, type IsFormSubmittableResponse as gY, type Empty as gZ, type UpsertContactFromSubmissionRequest as g_, type AddressComponentTypeOptionsOneOf as ga, type ObjectArray as gb, type ObjectArrayComponentTypeOptionsOneOf as gc, type DisplayField as gd, type DisplayFieldDisplayFieldTypeOptionsOneOf as ge, type RichContentOptions as gf, type PageNavigationOptions as gg, type Step as gh, type FormRule as gi, type FormOverride as gj, type FormProperties as gk, type PostSubmissionTriggers as gl, type UpsertContact as gm, type V4FormFieldContactInfo as gn, type V4FormFieldContactInfoAdditionalInfoOneOf as go, type FormFieldContactInfoEmailInfo as gp, type FormFieldContactInfoPhoneInfo as gq, type FormFieldContactInfoAddressInfo as gr, type FormFieldContactInfoCustomFieldInfo as gs, type FormFieldContactInfoSubscriptionInfo as gt, type NestedForm as gu, type LimitationRule as gv, type RequiredIndicatorProperties as gw, type SubmitSettings as gx, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gy, type ThankYouMessageOptions as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ListFormattedSubmissionsResponse as h$, type CreateSubmissionRequest as h0, type CreateSubmissionResponse as h1, type SubmissionValidationErrorsDetails as h2, type ValidationError as h3, type CreateSubmissionBySubmitterRequest as h4, type CreateSubmissionBySubmitterResponse as h5, type BulkCreateSubmissionBySubmitterRequest as h6, type BulkCreateSubmissionBySubmitterData as h7, type BulkCreateSubmissionBySubmitterResponse as h8, type BulkSubmissionResult as h9, type Sorting as hA, type SearchSubmissionsByNamespaceRequest as hB, type CursorSearch as hC, type CursorSearchPagingMethodOneOf as hD, type SearchDetails as hE, type SearchSubmissionsByNamespaceForExportRequest as hF, type SearchSubmissionsByNamespaceForExportResponse as hG, type QuerySubmissionsByNamespaceRequest as hH, type QuerySubmissionsByNamespaceResponse as hI, type QuerySubmissionsByNamespaceForExportRequest as hJ, type QuerySubmissionsByNamespaceForExportResponse as hK, type CountSubmissionsByFilterRequest as hL, type FormSubmissionsCount as hM, type CountSubmissionsRequest as hN, type CountDeletedSubmissionsRequest as hO, type FormDeletedSubmissionsCount as hP, type GetMediaUploadURLRequest as hQ, type BulkMarkSubmissionsAsSeenRequest as hR, type GetSubmissionDownloadUrlRequest as hS, type SubmissionDocument as hT, type SubmissionDocumentDocumentOneOf as hU, type DocumentReady as hV, type DownloadSubmissionRequest as hW, type HeadersEntry as hX, type GetFormattedSubmissionRequest as hY, type FormattedSubmission as hZ, type ListFormattedSubmissionsRequest as h_, type ItemMetadata as ha, type ApplicationError as hb, type BulkActionMetadata as hc, type GetSubmissionRequest as hd, type GetSubmissionResponse as he, type GetSubmissionByCheckoutIdRequest as hf, type GetSubmissionByCheckoutIdResponse as hg, type UpdateSubmissionRequest as hh, type UpdateSubmissionResponse as hi, type ConfirmSubmissionRequest as hj, type DeleteSubmissionRequest as hk, type DeleteSubmissionResponse as hl, type BulkDeleteSubmissionRequest as hm, type BulkDeleteSubmissionResult as hn, type RestoreSubmissionFromTrashBinRequest as ho, type RemoveSubmissionFromTrashBinRequest as hp, type RemoveSubmissionFromTrashBinResponse as hq, type BulkRemoveSubmissionFromTrashBinRequest as hr, type BulkRemoveSubmissionFromTrashBinResult as hs, type ListDeletedSubmissionsRequest as ht, type CursorPaging as hu, type CursorPagingMetadata as hv, type Cursors as hw, type GetDeletedSubmissionRequest as hx, type QuerySubmissionRequest as hy, type CursorQueryPagingMethodOneOf as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PositionWithLiterals as i$, type FormattedFormSubmission as i0, type UpdateExtendedFieldsRequest as i1, type BulkUpdateFormSubmissionTagsRequest as i2, type BulkUpdateFormSubmissionTagsResponse as i3, type BulkUpdateFormSubmissionTagsResult as i4, type BulkUpdateFormSubmissionTagsByFilterRequest as i5, type BulkUpdateFormSubmissionTagsByFilterResponse as i6, type ValidateFormSubmissionRequest as i7, type FieldViolation as i8, type FieldViolationErrorDataOneOf as i9, type NodeTypeWithLiterals as iA, type BackgroundTypeWithLiterals as iB, type GradientTypeWithLiterals as iC, type WidthTypeWithLiterals as iD, type PluginContainerDataAlignmentWithLiterals as iE, type ButtonDataTypeWithLiterals as iF, type LinkTargetWithLiterals as iG, type TextAlignmentWithLiterals as iH, type LineStyleWithLiterals as iI, type WidthWithLiterals as iJ, type DividerDataAlignmentWithLiterals as iK, type ViewModeWithLiterals as iL, type LayoutTypeWithLiterals as iM, type OrientationWithLiterals as iN, type CropWithLiterals as iO, type ThumbnailsAlignmentWithLiterals as iP, type GIFTypeWithLiterals as iQ, type SourceWithLiterals as iR, type StylesPositionWithLiterals as iS, type MapTypeWithLiterals as iT, type ViewRoleWithLiterals as iU, type VoteRoleWithLiterals as iV, type PollLayoutTypeWithLiterals as iW, type PollLayoutDirectionWithLiterals as iX, type PollDesignBackgroundTypeWithLiterals as iY, type DecorationTypeWithLiterals as iZ, type FontTypeWithLiterals as i_, type SubmissionValidationErrors as ia, type SubmissionValidationError as ib, type SubmissionValidationErrorErrorMessageOneOf as ic, type BaseEventMetadata as id, type EventMetadata as ie, type AccountInfoMetadata as ig, type FormSubmissionSearchSpec as ih, type SubmissionsQueryResult as ii, type FormSubmissionQuerySpec as ij, type BulkUpdateFormSubmissionTagsOptions as ik, type BulkUpdateFormSubmissionTagsByFilterOptions as il, utils as im, type SubmissionStatusWithLiterals as io, type OptInLevelWithLiterals as ip, type WebhookIdentityTypeWithLiterals as iq, type StringTypeFormatEnumFormatWithLiterals as ir, type DayOfWeekWithLiterals as is, type ValidationFormatWithLiterals as it, type ProductTypeWithLiterals as iu, type PriceTypeWithLiterals as iv, type PropertiesTypeEnumWithLiterals as iw, type FieldTypeWithLiterals as ix, type FormatEnumFormatWithLiterals as iy, type StringComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type SubmitSuccessActionWithLiterals as j$, type AspectRatioWithLiterals as j0, type ResizingWithLiterals as j1, type PlacementWithLiterals as j2, type CardStylesTypeWithLiterals as j3, type CardStylesAlignmentWithLiterals as j4, type LayoutWithLiterals as j5, type AppTypeWithLiterals as j6, type InitialExpandedItemsWithLiterals as j7, type DirectionWithLiterals as j8, type VerticalAlignmentWithLiterals as j9, type PaymentComponentTypeWithLiterals as jA, type ComponentTypeWithLiterals as jB, type TypeWithLiterals as jC, type ObjectArrayComponentTypeWithLiterals as jD, type SchedulingComponentTypeWithLiterals as jE, type FormatWithLiterals as jF, type MeetingTypeWithLiterals as jG, type StaffStrategySelectionWithLiterals as jH, type InputTypeWithLiterals as jI, type EmailInfoTagWithLiterals as jJ, type PhoneInfoTagWithLiterals as jK, type TagWithLiterals as jL, type ConfirmationLevelWithLiterals as jM, type SubscriptionChannelWithLiterals as jN, type ContactFieldWithLiterals as jO, type DisplayFieldTypeWithLiterals as jP, type OverrideEntityTypeWithLiterals as jQ, type KindWithLiterals as jR, type FormFieldContactInfoEmailInfoTagWithLiterals as jS, type FormFieldContactInfoPhoneInfoTagWithLiterals as jT, type AddressInfoTagWithLiterals as jU, type SubscriptionInfoOptInLevelWithLiterals as jV, type FormFieldContactInfoContactFieldWithLiterals as jW, type SpamFilterProtectionLevelWithLiterals as jX, type RequiredIndicatorWithLiterals as jY, type RequiredIndicatorPlacementWithLiterals as jZ, type TargetWithLiterals as j_, type NullValueWithLiterals as ja, type ImageScalingScalingWithLiterals as jb, type LayoutDataImagePositionWithLiterals as jc, type OriginWithLiterals as jd, type LayoutDataBackgroundTypeWithLiterals as je, type BackdropTypeWithLiterals as jf, type VerticalAlignmentAlignmentWithLiterals as jg, type ResponsivenessBehaviourWithLiterals as jh, type DesignTargetWithLiterals as ji, type ScalingWithLiterals as jj, type ImagePositionPositionWithLiterals as jk, type CardDataBackgroundTypeWithLiterals as jl, type ListStyleWithLiterals as jm, type IndentationWithLiterals as jn, type ImagePositionWithLiterals as jo, type AlignmentWithLiterals as jp, type ImageFitWithLiterals as jq, type NumberOfColumnsWithLiterals as jr, type FirstDayOfWeekWithLiterals as js, type NumberComponentTypeWithLiterals as jt, type BooleanComponentTypeWithLiterals as ju, type ItemTypeWithLiterals as jv, type PropertiesTypePropertiesTypeEnumWithLiterals as jw, type ArrayComponentTypeWithLiterals as jx, type WixFileComponentTypeWithLiterals as jy, type UploadFileFormatWithLiterals as jz, type CursorQuery as k, type ChangeablePropertyWithLiterals as k0, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as k1, type OperatorWithLiterals as k2, type ResultsDisplayWithLiterals as k3, type ContactAutofillWithLiterals as k4, type SubmissionAccessWithLiterals as k5, type IdentityTypeWithLiterals as k6, type ErrorTypeWithLiterals as k7, type SortOrderWithLiterals as k8, type ModeWithLiterals as k9, countSubmissions as kA, countDeletedSubmissions as kB, getMediaUploadUrl as kC, bulkMarkSubmissionsAsSeen as kD, getSubmissionDownloadUrl as kE, downloadSubmission as kF, getFormattedSubmission as kG, updateExtendedFields as kH, validateFormSubmission as kI, type StatusWithLiterals as ka, type SubmissionErrorTypeWithLiterals as kb, type CommonSearchWithEntityContext as kc, type CommonQueryWithEntityContext as kd, onSubmissionCreated as ke, onSubmissionDeleted as kf, onSubmissionRemovedSubmissionFromTrash as kg, onSubmissionStatusUpdated as kh, onSubmissionContactMapped as ki, onSubmissionContactMappingSkipped as kj, onSubmissionUpdated as kk, upsertContactFromSubmission as kl, createSubmission as km, getSubmission as kn, updateSubmission as ko, confirmSubmission as kp, deleteSubmission as kq, bulkDeleteSubmission as kr, restoreSubmissionFromTrashBin as ks, removeSubmissionFromTrashBin as kt, bulkRemoveSubmissionFromTrashBin as ku, listDeletedSubmissions as kv, getDeletedSubmission as kw, querySubmission as kx, querySubmissionsByNamespace as ky, countSubmissionsByFilter as kz, 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 { c4 as AccountInfo, ie as AccountInfoMetadata, c0 as ActionEvent, g8 as Address, g9 as AddressComponentTypeOptionsOneOf, fS as AddressInfo, br as AddressInfoTag, jT as AddressInfoTagWithLiterals, fu as AddressLine2, aY as Alignment, jo as AlignmentWithLiterals, gE as AllowedValuesOptions, e0 as AnchorData, gJ as AndCondition, e7 as AppEmbedData, e8 as AppEmbedDataAppDataOneOf, aF as AppType, j5 as AppTypeWithLiterals, ha as ApplicationError, fH as Appointment, bQ as AppointmentDetails, fI as AppointmentFormatInfoOneOf, b4 as ArrayComponentType, jw as ArrayComponentTypeWithLiterals, cu as ArrayErrorMessages, fc as ArrayItems, fd as ArrayItemsItemTypeOptionsOneOf, f8 as ArrayType, cs as ArrayTypeArrayItems, ct as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, i$ as AspectRatioWithLiterals, es as AudioData, ce as Availability, eB as Backdrop, aO as BackdropType, je as BackdropTypeWithLiterals, d6 as Background, dR as BackgroundGradient, eH as BackgroundImage, a8 as BackgroundType, iA as BackgroundTypeWithLiterals, ez as Banner, ic as BaseEventMetadata, ev as BlockquoteData, e9 as BookingData, b1 as BooleanComponentType, jt as BooleanComponentTypeWithLiterals, cm as BooleanErrorMessages, f5 as BooleanType, d4 as Border, ep as BorderColors, eq as BorderWidths, fA as BreakPoint, hb as BulkActionMetadata, h6 as BulkCreateSubmissionBySubmitterData, h5 as BulkCreateSubmissionBySubmitterRequest, h7 as BulkCreateSubmissionBySubmitterResponse, hl as BulkDeleteSubmissionRequest, hm as BulkDeleteSubmissionResult, hQ as BulkMarkSubmissionsAsSeenRequest, hq as BulkRemoveSubmissionFromTrashBinRequest, hr as BulkRemoveSubmissionFromTrashBinResult, h8 as BulkSubmissionResult, ik as BulkUpdateFormSubmissionTagsByFilterOptions, i4 as BulkUpdateFormSubmissionTagsByFilterRequest, i5 as BulkUpdateFormSubmissionTagsByFilterResponse, ij as BulkUpdateFormSubmissionTagsOptions, i1 as BulkUpdateFormSubmissionTagsRequest, i2 as BulkUpdateFormSubmissionTagsResponse, i3 as BulkUpdateFormSubmissionTagsResult, eu as BulletedListData, d1 as ButtonData, ac as ButtonDataType, iE as ButtonDataTypeWithLiterals, eb as ButtonStyles, ew as CaptionData, eF as CardData, eG as CardDataBackground, aU as CardDataBackgroundType, jk as CardDataBackgroundTypeWithLiterals, ee as CardStyles, aD as CardStylesAlignment, j3 as CardStylesAlignmentWithLiterals, aC as CardStylesType, j2 as CardStylesTypeWithLiterals, eo as CellStyle, bz as ChangeableProperty, j$ as ChangeablePropertyWithLiterals, f6 as Checkbox, ff as CheckboxGroup, gV as Checkout, dg as CodeBlockData, ek as CollapsibleListData, e1 as ColorData, d5 as Colors, kb as CommonQueryWithEntityContext, ka as CommonSearchWithEntityContext, b8 as ComponentType, jA as ComponentTypeWithLiterals, fh as ComponentsTags, gL as Condition, gH as ConditionNode, gI as ConditionNodeNodeOneOf, hi as ConfirmSubmissionRequest, bj as ConfirmationLevel, jL as ConfirmationLevelWithLiterals, bD as ContactAutofill, k3 as ContactAutofillWithLiterals, bl as ContactField, jN as ContactFieldWithLiterals, f7 as CorrectAnswersList, hN as CountDeletedSubmissionsRequest, hK as CountSubmissionsByFilterRequest, hM as CountSubmissionsRequest, c5 as CreateCheckoutFromSubmissionRequest, c6 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gU as CreateCheckoutFromSubmissionResponse, h3 as CreateSubmissionBySubmitterRequest, h4 as CreateSubmissionBySubmitterResponse, g$ as CreateSubmissionRequest, h0 as CreateSubmissionResponse, al as Crop, iN as CropWithLiterals, ht as CursorPaging, hu as CursorPagingMetadata, hy as CursorQueryPagingMethodOneOf, hB as CursorSearch, hC as CursorSearchPagingMethodOneOf, hv as Cursors, fT as CustomFieldInfo, eR as CustomOption, cL as DataExtensionsDetails, eW as DateInput, eY as DatePicker, cf as DateRange, cd as DateTimeAdvancedConstraints, cU as DateTimeConstraints, eU as DateTimeInput, $ as DayOfWeek, ir as DayOfWeekWithLiterals, d_ as Decoration, d$ as DecorationDataOneOf, aw as DecorationType, iY as DecorationTypeWithLiterals, fv as DefaultCountryConfig, fw as DefaultCountryConfigOptionsOneOf, hj as DeleteSubmissionRequest, hk as DeleteSubmissionResponse, dY as Design, aR as DesignTarget, jh as DesignTargetWithLiterals, em as Dimensions, aH as Direction, j7 as DirectionWithLiterals, gc as DisplayField, gd as DisplayFieldDisplayFieldTypeOptionsOneOf, bm as DisplayFieldType, jO as DisplayFieldTypeWithLiterals, di as DividerData, ah as DividerDataAlignment, iJ as DividerDataAlignmentWithLiterals, hU as DocumentReady, eK as DocumentStyle, bW as DomainEvent, bX as DomainEventBodyOneOf, fp as DonationInput, fq as DonationInputOption, hV as DownloadSubmissionRequest, eS as Dropdown, eT as DropdownOption, cA as DynamicPriceOptions, fQ as EmailInfo, bg as EmailInfoTag, jI as EmailInfoTagWithLiterals, ei as EmbedData, gY as Empty, bY as EntityCreatedEvent, b$ as EntityDeletedEvent, b_ as EntityUpdatedEvent, bF as ErrorType, k5 as ErrorTypeWithLiterals, ea as EventData, id as EventMetadata, bM as ExtendedFields, cN as Field, cO as FieldFieldTypeOptionsOneOf, gA as FieldGroup, gF as FieldOverride, gG as FieldOverridePropertyTypeOptionsOneOf, cE as FieldOverrides, a4 as FieldType, iw as FieldTypeWithLiterals, i7 as FieldViolation, i8 as FieldViolationErrorDataOneOf, cF as FieldsOverrides, fx as FieldsSettings, dj as FileData, dk as FileSource, dl as FileSourceDataOneOf, fk as FileType, fl as FileUpload, a$ as FirstDayOfWeek, jr as FirstDayOfWeekWithLiterals, fs as FixedPayment, cz as FixedPriceOptions, e6 as FontFamilyData, e4 as FontSizeData, ax as FontType, iZ as FontTypeWithLiterals, c7 as Form, hO as FormDeletedSubmissionsCount, c8 as FormField, cn as FormFieldArrayType, cl as FormFieldBooleanType, fO as FormFieldContactInfo, fP as FormFieldContactInfoAdditionalInfoOneOf, gq as FormFieldContactInfoAddressInfo, bt as FormFieldContactInfoContactField, jV as FormFieldContactInfoContactFieldWithLiterals, gr as FormFieldContactInfoCustomFieldInfo, go as FormFieldContactInfoEmailInfo, bp as FormFieldContactInfoEmailInfoTag, jR as FormFieldContactInfoEmailInfoTagWithLiterals, gp as FormFieldContactInfoPhoneInfo, bq as FormFieldContactInfoPhoneInfoTag, jS as FormFieldContactInfoPhoneInfoTagWithLiterals, gs as FormFieldContactInfoSubscriptionInfo, ci as FormFieldNumberType, co as FormFieldObjectType, cp as FormFieldObjectTypePropertiesType, cq as FormFieldObjectTypePropertiesTypePropertiesTypeOneOf, c9 as FormFieldStringType, ca as FormFieldStringTypeFormatOptionsOneOf, fz as FormLayout, gi as FormOverride, gj as FormProperties, gh as FormRule, ii as FormSubmissionQuerySpec, ig as FormSubmissionSearchSpec, bR as FormSubmissionStatusUpdatedEvent, hL as FormSubmissionsCount, bc as Format, a5 as FormatEnumFormat, ix as FormatEnumFormatWithLiterals, jE as FormatWithLiterals, h$ as FormattedFormSubmission, hY as FormattedSubmission, dz as GIF, dy as GIFData, an as GIFType, iP as GIFTypeWithLiterals, dn as GalleryData, du as GalleryOptions, dv as GalleryOptionsLayout, hw as GetDeletedSubmissionRequest, hX as GetFormattedSubmissionRequest, hP as GetMediaUploadURLRequest, he as GetSubmissionByCheckoutIdRequest, hf as GetSubmissionByCheckoutIdResponse, hR as GetSubmissionDownloadUrlRequest, hc as GetSubmissionRequest, hd as GetSubmissionResponse, d2 as Gradient, a9 as GradientType, iB as GradientTypeWithLiterals, fD as Group, dB as HTMLData, dC as HTMLDataDataOneOf, hW as HeadersEntry, dA as HeadingData, db as Height, gD as HiddenOptions, c2 as IdentificationData, c3 as IdentificationDataIdOneOf, bE as IdentityType, k4 as IdentityTypeWithLiterals, dq as Image, dD as ImageData, dF as ImageDataStyles, aZ as ImageFit, jp as ImageFitWithLiterals, aX as ImagePosition, aT as ImagePositionPosition, jj as ImagePositionPositionWithLiterals, jn as ImagePositionWithLiterals, aK as ImageScalingScaling, ja as ImageScalingScalingWithLiterals, ec as ImageStyles, fL as InPersonOptions, aW as Indentation, jm as IndentationWithLiterals, aG as InitialExpandedItems, j6 as InitialExpandedItemsWithLiterals, cP as InputField, cQ as InputFieldInputTypeOptionsOneOf, bf as InputType, jH as InputTypeWithLiterals, ck as IntegerType, gW as IsFormSubmittableRequest, gX as IsFormSubmittableResponse, ds as Item, dt as ItemDataOneOf, fB as ItemLayout, fC as ItemLayoutItemOneOf, h9 as ItemMetadata, dw as ItemStyle, b2 as ItemType, ju as ItemTypeWithLiterals, bo as Kind, jQ as KindWithLiterals, aE as Layout, eC as LayoutCellData, ex as LayoutData, eA as LayoutDataBackground, ey as LayoutDataBackgroundImage, aN as LayoutDataBackgroundType, jd as LayoutDataBackgroundTypeWithLiterals, aL as LayoutDataImagePosition, jb as LayoutDataImagePositionWithLiterals, aj as LayoutType, iL as LayoutTypeWithLiterals, j4 as LayoutWithLiterals, gu as LimitationRule, af as LineStyle, iH as LineStyleWithLiterals, dd as Link, e2 as LinkData, de as LinkDataOneOf, dG as LinkPreviewData, dH as LinkPreviewDataStyles, ad as LinkTarget, iF as LinkTargetWithLiterals, hs as ListDeletedSubmissionsRequest, hZ as ListFormattedSubmissionsRequest, h_ as ListFormattedSubmissionsResponse, aV as ListStyle, jl as ListStyleWithLiterals, er as ListValue, fJ as Location, fK as LocationLocationInfoOneOf, dI as MapData, dJ as MapSettings, aq as MapType, iS as MapTypeWithLiterals, fE as Margin, bU as MarketingSubscriptionDetails, dp as Media, eM as MediaItem, eN as MediaItemMediaOneOf, eO as MediaSettings, bd as MeetingType, jF as MeetingTypeWithLiterals, e3 as MentionData, c1 as MessageEnvelope, eJ as Metadata, bH as Mode, k7 as ModeWithLiterals, ft as MultilineAddress, cD as MultilineAddressValidation, gt as NestedForm, cI as NestedFormFieldOverrides, cM as NestedFormOverrides, c_ as Node, c$ as NodeDataOneOf, d0 as NodeStyle, a7 as NodeType, iz as NodeTypeWithLiterals, aJ as NullValue, j9 as NullValueWithLiterals, b0 as NumberComponentType, js as NumberComponentTypeWithLiterals, f0 as NumberCorrectAnswersList, cj as NumberErrorMessages, f3 as NumberInput, a_ as NumberOfColumns, jq as NumberOfColumnsWithLiterals, f2 as NumberQuizFieldSettings, f1 as NumberType, ga as ObjectArray, ba as ObjectArrayComponentType, gb as ObjectArrayComponentTypeOptionsOneOf, jC as ObjectArrayComponentTypeWithLiterals, cG as ObjectArrayType, cr as ObjectErrorMessages, f9 as ObjectType, fa as ObjectTypePropertiesType, fb as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, ej as Oembed, bB as Operator, k1 as OperatorWithLiterals, Y as OptInLevel, io as OptInLevelWithLiterals, fg as Option, dV as OptionDesign, dQ as OptionLayout, gK as OrCondition, bN as OrderDetails, et as OrderedListData, ak as Orientation, iM as OrientationWithLiterals, aM as Origin, jc as OriginWithLiterals, bn as OverrideEntityType, bA as OverrideEntityTypeEnumOverrideEntityType, k0 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jP as OverrideEntityTypeWithLiterals, dm as PDFSettings, gf as PageNavigationOptions, dK as ParagraphData, gT as PassFailMessages, e$ as Password, g4 as Payment, b7 as PaymentComponentType, g5 as PaymentComponentTypeOptionsOneOf, jz as PaymentComponentTypeWithLiterals, fr as PaymentInput, cx as PaymentType, dM as Permissions, cV as PhoneConstraints, fR as PhoneInfo, bh as PhoneInfoTag, jJ as PhoneInfoTagWithLiterals, eV as PhoneInput, fN as PhoneOptions, fG as Pikachu, aB as Placement, j1 as PlacementWithLiterals, eh as PlaybackOptions, d7 as PluginContainerData, ab as PluginContainerDataAlignment, iD as PluginContainerDataAlignmentWithLiterals, d8 as PluginContainerDataWidth, d9 as PluginContainerDataWidthDataOneOf, dW as Poll, dL as PollData, dX as PollDataLayout, dU as PollDesign, dS as PollDesignBackground, dT as PollDesignBackgroundBackgroundOneOf, av as PollDesignBackgroundType, iX as PollDesignBackgroundTypeWithLiterals, dP as PollLayout, au as PollLayoutDirection, iW as PollLayoutDirectionWithLiterals, at as PollLayoutType, iV as PollLayoutTypeWithLiterals, dN as PollOption, ay as Position, i_ as PositionWithLiterals, gk as PostSubmissionTriggers, cv as PredefinedValidation, cw as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, iu as PriceTypeWithLiterals, ef as PricingData, cB as Product, fn as ProductCheckboxGroup, fo as ProductCheckboxGroupOption, cC as ProductPriceOptionsOneOf, a1 as ProductType, it as ProductTypeWithLiterals, cH as PropertiesType, a3 as PropertiesTypeEnum, iv as PropertiesTypeEnumWithLiterals, b3 as PropertiesTypePropertiesTypeEnum, jv as PropertiesTypePropertiesTypeEnumWithLiterals, bO as PublicTags, cy as QuantityLimit, hx as QuerySubmissionRequest, hI as QuerySubmissionsByNamespaceForExportRequest, hJ as QuerySubmissionsByNamespaceForExportResponse, hG as QuerySubmissionsByNamespaceRequest, hH as QuerySubmissionsByNamespaceResponse, fe as QuizFieldSettings, gQ as QuizSettings, gR as QuizSettingsPassingCriteriaOneOf, gS as QuizSettingsResultsDisplayOptionsOneOf, eP as RadioGroup, eQ as RadioGroupOption, f4 as RatingInput, gz as RedirectOptions, df as Rel, ho as RemoveSubmissionFromTrashBinRequest, hp as RemoveSubmissionFromTrashBinResponse, bS as RemovedSubmissionFromTrash, fy as Repeater, bv as RequiredIndicator, bw as RequiredIndicatorPlacement, jY as RequiredIndicatorPlacementWithLiterals, gv as RequiredIndicatorProperties, jX as RequiredIndicatorWithLiterals, gC as RequiredOptions, aA as Resizing, j0 as ResizingWithLiterals, aQ as ResponsivenessBehaviour, jg as ResponsivenessBehaviourWithLiterals, bZ as RestoreInfo, hn as RestoreSubmissionFromTrashBinRequest, bC as ResultsDisplay, k2 as ResultsDisplayWithLiterals, ed as RibbonStyles, cZ as RichContent, ge as RichContentOptions, gB as Rule, gM as RuleFormOverride, gN as RuleFormOverrideEntityTypeOptionsOneOf, aS as Scaling, ji as ScalingWithLiterals, g6 as Scheduling, bb as SchedulingComponentType, g7 as SchedulingComponentTypeOptionsOneOf, jD as SchedulingComponentTypeWithLiterals, hD as SearchDetails, hE as SearchSubmissionsByNamespaceForExportRequest, hF as SearchSubmissionsByNamespaceForExportResponse, hA as SearchSubmissionsByNamespaceRequest, fF as Section, e_ as ServiceOption, fj as ServicesCheckboxGroup, eZ as ServicesDropdown, dO as Settings, eD as ShapeData, eE as ShapeDataStyles, fm as Signature, bG as SortOrder, k6 as SortOrderWithLiterals, hz as Sorting, ao as Source, iQ as SourceWithLiterals, bu as SpamFilterProtectionLevel, jW as SpamFilterProtectionLevelWithLiterals, da as Spoiler, e5 as SpoilerData, be as StaffStrategySelection, jG as StaffStrategySelectionWithLiterals, bI as Status, k8 as StatusWithLiterals, gg as Step, d3 as Stop, a6 as StringComponentType, iy as StringComponentTypeWithLiterals, cR as StringCorrectAnswersList, cb as StringErrorMessages, cX as StringQuizFieldSettings, cS as StringType, cc as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, iq as StringTypeFormatEnumFormatWithLiterals, cT as StringTypeFormatOptionsOneOf, cg as StringTypePhoneConstraints, ch as StringTypeValidationMessages, dc as Styles, dE as StylesBorder, ap as StylesPosition, iR as StylesPositionWithLiterals, bT as SubmissionContactMapped, bV as SubmissionContactMappingSkipped, hS as SubmissionDocument, hT as SubmissionDocumentDocumentOneOf, bJ as SubmissionErrorType, k9 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, im as SubmissionStatusWithLiterals, ia as SubmissionValidationError, ib as SubmissionValidationErrorErrorMessageOneOf, i9 as SubmissionValidationErrors, h1 as SubmissionValidationErrorsDetails, ih as SubmissionsQueryResult, g_ as SubmitContactResponse, gw as SubmitSettings, gx as SubmitSettingsSubmitSuccessActionOptionsOneOf, by as SubmitSuccessAction, j_ as SubmitSuccessActionWithLiterals, bK as Submitter, bL as SubmitterSubmitterOneOf, bk as SubscriptionChannel, jM as SubscriptionChannelWithLiterals, fU as SubscriptionInfo, bs as SubscriptionInfoOptInLevel, jU as SubscriptionInfoOptInLevelWithLiterals, en as TableCellData, el as TableData, bi as Tag, bP as TagList, jK as TagWithLiterals, gO as Tags, fi as TagsOption, gP as TagsTagList, bx as Target, jZ as TargetWithLiterals, ae as TextAlignment, iG as TextAlignmentWithLiterals, dZ as TextData, cY as TextInput, eL as TextNodeStyle, dh as TextStyle, gy as ThankYouMessageOptions, dx as Thumbnails, am as ThumbnailsAlignment, iO as ThumbnailsAlignmentWithLiterals, eX as TimeInput, eI as TocData, b9 as Type, jB as TypeWithLiterals, i0 as UpdateExtendedFieldsRequest, hg as UpdateSubmissionRequest, hh as UpdateSubmissionResponse, b6 as UploadFileFormat, jy as UploadFileFormatWithLiterals, gl as UpsertContact, gZ as UpsertContactFromSubmissionRequest, gm as V4FormFieldContactInfo, gn as V4FormFieldContactInfoAdditionalInfoOneOf, i6 as ValidateFormSubmissionRequest, cJ as Validation, h2 as ValidationError, a0 as ValidationFormat, is as ValidationFormatWithLiterals, cW as ValidationMessages, cK as ValidationValidationOneOf, aI as VerticalAlignment, aP as VerticalAlignmentAlignment, jf as VerticalAlignmentAlignmentWithLiterals, j8 as VerticalAlignmentWithLiterals, dr as Video, fM as VideoConferenceOptions, eg as VideoData, ai as ViewMode, iK as ViewModeWithLiterals, ar as ViewRole, iT as ViewRoleWithLiterals, as as VoteRole, iU as VoteRoleWithLiterals, Z as WebhookIdentityType, ip as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, iC as WidthTypeWithLiterals, iI as WidthWithLiterals, g2 as WixFile, b5 as WixFileComponentType, g3 as WixFileComponentTypeOptionsOneOf, jx as WixFileComponentTypeWithLiterals, f$ as _Array, g0 as _ArrayComponentTypeOptionsOneOf, fZ as _Boolean, f_ as _BooleanComponentTypeOptionsOneOf, fX as _Number, fY as _NumberComponentTypeOptionsOneOf, g1 as _Object, fV as _String, fW as _StringComponentTypeOptionsOneOf, il as utils } from './forms-v4-submission-submissions.universal-DmrA9Uxi.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-B2-JQqx2.mjs';
|
|
3
|
+
export { c5 as AccountInfo, ig as AccountInfoMetadata, c1 as ActionEvent, g9 as Address, ga as AddressComponentTypeOptionsOneOf, fT as AddressInfo, br as AddressInfoTag, jU as AddressInfoTagWithLiterals, fv as AddressLine2, aY as Alignment, jp as AlignmentWithLiterals, gF as AllowedValuesOptions, e1 as AnchorData, gK as AndCondition, e8 as AppEmbedData, e9 as AppEmbedDataAppDataOneOf, aF as AppType, j6 as AppTypeWithLiterals, hb as ApplicationError, fI as Appointment, bR as AppointmentDetails, fJ as AppointmentFormatInfoOneOf, b4 as ArrayComponentType, jx as ArrayComponentTypeWithLiterals, cv as ArrayErrorMessages, fd as ArrayItems, fe as ArrayItemsItemTypeOptionsOneOf, f9 as ArrayType, ct as ArrayTypeArrayItems, cu as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, j0 as AspectRatioWithLiterals, et as AudioData, ce as Availability, eC as Backdrop, aO as BackdropType, jf as BackdropTypeWithLiterals, d7 as Background, dS as BackgroundGradient, eI as BackgroundImage, a8 as BackgroundType, iB as BackgroundTypeWithLiterals, eA as Banner, id as BaseEventMetadata, ew as BlockquoteData, ea as BookingData, b1 as BooleanComponentType, ju as BooleanComponentTypeWithLiterals, cn as BooleanErrorMessages, f6 as BooleanType, d5 as Border, eq as BorderColors, er as BorderWidths, fB as BreakPoint, hc as BulkActionMetadata, h7 as BulkCreateSubmissionBySubmitterData, h6 as BulkCreateSubmissionBySubmitterRequest, h8 as BulkCreateSubmissionBySubmitterResponse, hm as BulkDeleteSubmissionRequest, hn as BulkDeleteSubmissionResult, hR as BulkMarkSubmissionsAsSeenRequest, hr as BulkRemoveSubmissionFromTrashBinRequest, hs as BulkRemoveSubmissionFromTrashBinResult, h9 as BulkSubmissionResult, il as BulkUpdateFormSubmissionTagsByFilterOptions, i5 as BulkUpdateFormSubmissionTagsByFilterRequest, i6 as BulkUpdateFormSubmissionTagsByFilterResponse, ik as BulkUpdateFormSubmissionTagsOptions, i2 as BulkUpdateFormSubmissionTagsRequest, i3 as BulkUpdateFormSubmissionTagsResponse, i4 as BulkUpdateFormSubmissionTagsResult, ev as BulletedListData, d2 as ButtonData, ac as ButtonDataType, iF as ButtonDataTypeWithLiterals, ec as ButtonStyles, ex as CaptionData, eG as CardData, eH as CardDataBackground, aU as CardDataBackgroundType, jl as CardDataBackgroundTypeWithLiterals, ef as CardStyles, aD as CardStylesAlignment, j4 as CardStylesAlignmentWithLiterals, aC as CardStylesType, j3 as CardStylesTypeWithLiterals, ep as CellStyle, bz as ChangeableProperty, k0 as ChangeablePropertyWithLiterals, f7 as Checkbox, fg as CheckboxGroup, gW as Checkout, dh as CodeBlockData, el as CollapsibleListData, e2 as ColorData, d6 as Colors, kd as CommonQueryWithEntityContext, kc as CommonSearchWithEntityContext, b8 as ComponentType, jB as ComponentTypeWithLiterals, fi as ComponentsTags, gM as Condition, gI as ConditionNode, gJ as ConditionNodeNodeOneOf, hj as ConfirmSubmissionRequest, bj as ConfirmationLevel, jM as ConfirmationLevelWithLiterals, bD as ContactAutofill, k4 as ContactAutofillWithLiterals, bl as ContactField, jO as ContactFieldWithLiterals, f8 as CorrectAnswersList, hO as CountDeletedSubmissionsRequest, hL as CountSubmissionsByFilterRequest, hN as CountSubmissionsRequest, c6 as CreateCheckoutFromSubmissionRequest, c7 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gV as CreateCheckoutFromSubmissionResponse, h4 as CreateSubmissionBySubmitterRequest, h5 as CreateSubmissionBySubmitterResponse, h0 as CreateSubmissionRequest, h1 as CreateSubmissionResponse, al as Crop, iO as CropWithLiterals, hu as CursorPaging, hv as CursorPagingMetadata, hz as CursorQueryPagingMethodOneOf, hC as CursorSearch, hD as CursorSearchPagingMethodOneOf, hw as Cursors, fU as CustomFieldInfo, eS as CustomOption, cM as DataExtensionsDetails, eX as DateInput, eZ as DatePicker, cf as DateRange, cd as DateTimeAdvancedConstraints, cV as DateTimeConstraints, eV as DateTimeInput, $ as DayOfWeek, is as DayOfWeekWithLiterals, d$ as Decoration, e0 as DecorationDataOneOf, aw as DecorationType, iZ as DecorationTypeWithLiterals, fw as DefaultCountryConfig, fx as DefaultCountryConfigOptionsOneOf, hk as DeleteSubmissionRequest, hl as DeleteSubmissionResponse, dZ as Design, aR as DesignTarget, ji as DesignTargetWithLiterals, en as Dimensions, aH as Direction, j8 as DirectionWithLiterals, gd as DisplayField, ge as DisplayFieldDisplayFieldTypeOptionsOneOf, bm as DisplayFieldType, jP as DisplayFieldTypeWithLiterals, dj as DividerData, ah as DividerDataAlignment, iK as DividerDataAlignmentWithLiterals, hV as DocumentReady, eL as DocumentStyle, bX as DomainEvent, bY as DomainEventBodyOneOf, fq as DonationInput, fr as DonationInputOption, hW as DownloadSubmissionRequest, eT as Dropdown, eU as DropdownOption, cB as DynamicPriceOptions, fR as EmailInfo, bg as EmailInfoTag, jJ as EmailInfoTagWithLiterals, ej as EmbedData, gZ as Empty, bZ as EntityCreatedEvent, c0 as EntityDeletedEvent, b$ as EntityUpdatedEvent, bG as ErrorType, k7 as ErrorTypeWithLiterals, eb as EventData, ie as EventMetadata, bN as ExtendedFields, cO as Field, cP as FieldFieldTypeOptionsOneOf, gB as FieldGroup, gG as FieldOverride, gH as FieldOverridePropertyTypeOptionsOneOf, cF as FieldOverrides, a4 as FieldType, ix as FieldTypeWithLiterals, i8 as FieldViolation, i9 as FieldViolationErrorDataOneOf, cG as FieldsOverrides, fy as FieldsSettings, dk as FileData, dl as FileSource, dm as FileSourceDataOneOf, fl as FileType, fm as FileUpload, a$ as FirstDayOfWeek, js as FirstDayOfWeekWithLiterals, ft as FixedPayment, cA as FixedPriceOptions, e7 as FontFamilyData, e5 as FontSizeData, ax as FontType, i_ as FontTypeWithLiterals, c8 as Form, hP as FormDeletedSubmissionsCount, c9 as FormField, co as FormFieldArrayType, cm as FormFieldBooleanType, fP as FormFieldContactInfo, fQ as FormFieldContactInfoAdditionalInfoOneOf, gr as FormFieldContactInfoAddressInfo, bt as FormFieldContactInfoContactField, jW as FormFieldContactInfoContactFieldWithLiterals, gs as FormFieldContactInfoCustomFieldInfo, gp as FormFieldContactInfoEmailInfo, bp as FormFieldContactInfoEmailInfoTag, jS as FormFieldContactInfoEmailInfoTagWithLiterals, gq as FormFieldContactInfoPhoneInfo, bq as FormFieldContactInfoPhoneInfoTag, jT as FormFieldContactInfoPhoneInfoTagWithLiterals, gt as FormFieldContactInfoSubscriptionInfo, cj as FormFieldNumberType, cp as FormFieldObjectType, cq as FormFieldObjectTypePropertiesType, cr as FormFieldObjectTypePropertiesTypePropertiesTypeOneOf, ca as FormFieldStringType, cb as FormFieldStringTypeFormatOptionsOneOf, fA as FormLayout, gj as FormOverride, gk as FormProperties, gi as FormRule, ij as FormSubmissionQuerySpec, ih as FormSubmissionSearchSpec, bS as FormSubmissionStatusUpdatedEvent, hM as FormSubmissionsCount, bc as Format, a5 as FormatEnumFormat, iy as FormatEnumFormatWithLiterals, jF as FormatWithLiterals, i0 as FormattedFormSubmission, hZ as FormattedSubmission, dA as GIF, dz as GIFData, an as GIFType, iQ as GIFTypeWithLiterals, dp as GalleryData, dv as GalleryOptions, dw as GalleryOptionsLayout, hx as GetDeletedSubmissionRequest, hY as GetFormattedSubmissionRequest, hQ as GetMediaUploadURLRequest, hf as GetSubmissionByCheckoutIdRequest, hg as GetSubmissionByCheckoutIdResponse, hS as GetSubmissionDownloadUrlRequest, hd as GetSubmissionRequest, he as GetSubmissionResponse, d3 as Gradient, a9 as GradientType, iC as GradientTypeWithLiterals, fE as Group, dC as HTMLData, dD as HTMLDataDataOneOf, hX as HeadersEntry, dB as HeadingData, dc as Height, gE as HiddenOptions, c3 as IdentificationData, c4 as IdentificationDataIdOneOf, bF as IdentityType, k6 as IdentityTypeWithLiterals, dr as Image, dE as ImageData, dG as ImageDataStyles, aZ as ImageFit, jq as ImageFitWithLiterals, aX as ImagePosition, aT as ImagePositionPosition, jk as ImagePositionPositionWithLiterals, jo as ImagePositionWithLiterals, aK as ImageScalingScaling, jb as ImageScalingScalingWithLiterals, ed as ImageStyles, fM as InPersonOptions, aW as Indentation, jn as IndentationWithLiterals, aG as InitialExpandedItems, j7 as InitialExpandedItemsWithLiterals, cQ as InputField, cR as InputFieldInputTypeOptionsOneOf, bf as InputType, jI as InputTypeWithLiterals, cl as IntegerType, gX as IsFormSubmittableRequest, gY as IsFormSubmittableResponse, dt as Item, du as ItemDataOneOf, fC as ItemLayout, fD as ItemLayoutItemOneOf, ha as ItemMetadata, dx as ItemStyle, b2 as ItemType, jv as ItemTypeWithLiterals, bo as Kind, jR as KindWithLiterals, aE as Layout, eD as LayoutCellData, ey as LayoutData, eB as LayoutDataBackground, ez as LayoutDataBackgroundImage, aN as LayoutDataBackgroundType, je as LayoutDataBackgroundTypeWithLiterals, aL as LayoutDataImagePosition, jc as LayoutDataImagePositionWithLiterals, aj as LayoutType, iM as LayoutTypeWithLiterals, j5 as LayoutWithLiterals, gv as LimitationRule, af as LineStyle, iI as LineStyleWithLiterals, de as Link, e3 as LinkData, df as LinkDataOneOf, dH as LinkPreviewData, dI as LinkPreviewDataStyles, ad as LinkTarget, iG as LinkTargetWithLiterals, ht as ListDeletedSubmissionsRequest, h_ as ListFormattedSubmissionsRequest, h$ as ListFormattedSubmissionsResponse, aV as ListStyle, jm as ListStyleWithLiterals, es as ListValue, fK as Location, fL as LocationLocationInfoOneOf, dJ as MapData, dK as MapSettings, aq as MapType, iT as MapTypeWithLiterals, fF as Margin, bV as MarketingSubscriptionDetails, dq as Media, eN as MediaItem, eO as MediaItemMediaOneOf, eP as MediaSettings, bd as MeetingType, jG as MeetingTypeWithLiterals, e4 as MentionData, c2 as MessageEnvelope, eK as Metadata, bI as Mode, k9 as ModeWithLiterals, fu as MultilineAddress, cE as MultilineAddressValidation, gu as NestedForm, cJ as NestedFormFieldOverrides, cN as NestedFormOverrides, c$ as Node, d0 as NodeDataOneOf, d1 as NodeStyle, a7 as NodeType, iA as NodeTypeWithLiterals, aJ as NullValue, ja as NullValueWithLiterals, b0 as NumberComponentType, jt as NumberComponentTypeWithLiterals, f1 as NumberCorrectAnswersList, ck as NumberErrorMessages, f4 as NumberInput, a_ as NumberOfColumns, jr as NumberOfColumnsWithLiterals, f3 as NumberQuizFieldSettings, f2 as NumberType, gb as ObjectArray, ba as ObjectArrayComponentType, gc as ObjectArrayComponentTypeOptionsOneOf, jD as ObjectArrayComponentTypeWithLiterals, cH as ObjectArrayType, cs as ObjectErrorMessages, fa as ObjectType, fb as ObjectTypePropertiesType, fc as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, ek as Oembed, bB as Operator, k2 as OperatorWithLiterals, Y as OptInLevel, ip as OptInLevelWithLiterals, fh as Option, dW as OptionDesign, dR as OptionLayout, gL as OrCondition, bO as OrderDetails, eu as OrderedListData, ak as Orientation, iN as OrientationWithLiterals, aM as Origin, jd as OriginWithLiterals, bn as OverrideEntityType, bA as OverrideEntityTypeEnumOverrideEntityType, k1 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jQ as OverrideEntityTypeWithLiterals, dn as PDFSettings, gg as PageNavigationOptions, dL as ParagraphData, gU as PassFailMessages, f0 as Password, g5 as Payment, b7 as PaymentComponentType, g6 as PaymentComponentTypeOptionsOneOf, jA as PaymentComponentTypeWithLiterals, fs as PaymentInput, cy as PaymentType, dN as Permissions, cW as PhoneConstraints, fS as PhoneInfo, bh as PhoneInfoTag, jK as PhoneInfoTagWithLiterals, eW as PhoneInput, fO as PhoneOptions, fH as Pikachu, aB as Placement, j2 as PlacementWithLiterals, ei as PlaybackOptions, d8 as PluginContainerData, ab as PluginContainerDataAlignment, iE as PluginContainerDataAlignmentWithLiterals, d9 as PluginContainerDataWidth, da as PluginContainerDataWidthDataOneOf, dX as Poll, dM as PollData, dY as PollDataLayout, dV as PollDesign, dT as PollDesignBackground, dU as PollDesignBackgroundBackgroundOneOf, av as PollDesignBackgroundType, iY as PollDesignBackgroundTypeWithLiterals, dQ as PollLayout, au as PollLayoutDirection, iX as PollLayoutDirectionWithLiterals, at as PollLayoutType, iW as PollLayoutTypeWithLiterals, dO as PollOption, ay as Position, i$ as PositionWithLiterals, gl as PostSubmissionTriggers, cw as PredefinedValidation, cx as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, iv as PriceTypeWithLiterals, eg as PricingData, cC as Product, fo as ProductCheckboxGroup, fp as ProductCheckboxGroupOption, cD as ProductPriceOptionsOneOf, a1 as ProductType, iu as ProductTypeWithLiterals, cI as PropertiesType, a3 as PropertiesTypeEnum, iw as PropertiesTypeEnumWithLiterals, b3 as PropertiesTypePropertiesTypeEnum, jw as PropertiesTypePropertiesTypeEnumWithLiterals, bP as PublicTags, cz as QuantityLimit, hy as QuerySubmissionRequest, hJ as QuerySubmissionsByNamespaceForExportRequest, hK as QuerySubmissionsByNamespaceForExportResponse, hH as QuerySubmissionsByNamespaceRequest, hI as QuerySubmissionsByNamespaceResponse, ff as QuizFieldSettings, gR as QuizSettings, gS as QuizSettingsPassingCriteriaOneOf, gT as QuizSettingsResultsDisplayOptionsOneOf, eQ as RadioGroup, eR as RadioGroupOption, f5 as RatingInput, gA as RedirectOptions, dg as Rel, hp as RemoveSubmissionFromTrashBinRequest, hq as RemoveSubmissionFromTrashBinResponse, bT as RemovedSubmissionFromTrash, fz as Repeater, bv as RequiredIndicator, bw as RequiredIndicatorPlacement, jZ as RequiredIndicatorPlacementWithLiterals, gw as RequiredIndicatorProperties, jY as RequiredIndicatorWithLiterals, gD as RequiredOptions, aA as Resizing, j1 as ResizingWithLiterals, aQ as ResponsivenessBehaviour, jh as ResponsivenessBehaviourWithLiterals, b_ as RestoreInfo, ho as RestoreSubmissionFromTrashBinRequest, bC as ResultsDisplay, k3 as ResultsDisplayWithLiterals, ee as RibbonStyles, c_ as RichContent, gf as RichContentOptions, gC as Rule, gN as RuleFormOverride, gO as RuleFormOverrideEntityTypeOptionsOneOf, aS as Scaling, jj as ScalingWithLiterals, g7 as Scheduling, bb as SchedulingComponentType, g8 as SchedulingComponentTypeOptionsOneOf, jE as SchedulingComponentTypeWithLiterals, hE as SearchDetails, hF as SearchSubmissionsByNamespaceForExportRequest, hG as SearchSubmissionsByNamespaceForExportResponse, hB as SearchSubmissionsByNamespaceRequest, fG as Section, e$ as ServiceOption, fk as ServicesCheckboxGroup, e_ as ServicesDropdown, dP as Settings, eE as ShapeData, eF as ShapeDataStyles, fn as Signature, bH as SortOrder, k8 as SortOrderWithLiterals, hA as Sorting, ao as Source, iR as SourceWithLiterals, bu as SpamFilterProtectionLevel, jX as SpamFilterProtectionLevelWithLiterals, db as Spoiler, e6 as SpoilerData, be as StaffStrategySelection, jH as StaffStrategySelectionWithLiterals, bJ as Status, ka as StatusWithLiterals, gh as Step, d4 as Stop, a6 as StringComponentType, iz as StringComponentTypeWithLiterals, cS as StringCorrectAnswersList, cc as StringErrorMessages, cY as StringQuizFieldSettings, cT as StringType, cg as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ir as StringTypeFormatEnumFormatWithLiterals, cU as StringTypeFormatOptionsOneOf, ch as StringTypePhoneConstraints, ci as StringTypeValidationMessages, dd as Styles, dF as StylesBorder, ap as StylesPosition, iS as StylesPositionWithLiterals, bE as SubmissionAccess, k5 as SubmissionAccessWithLiterals, bU as SubmissionContactMapped, bW as SubmissionContactMappingSkipped, hT as SubmissionDocument, hU as SubmissionDocumentDocumentOneOf, bK as SubmissionErrorType, kb as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, io as SubmissionStatusWithLiterals, ib as SubmissionValidationError, ic as SubmissionValidationErrorErrorMessageOneOf, ia as SubmissionValidationErrors, h2 as SubmissionValidationErrorsDetails, ii as SubmissionsQueryResult, g$ as SubmitContactResponse, gx as SubmitSettings, gy as SubmitSettingsSubmitSuccessActionOptionsOneOf, by as SubmitSuccessAction, j$ as SubmitSuccessActionWithLiterals, bL as Submitter, bM as SubmitterSubmitterOneOf, bk as SubscriptionChannel, jN as SubscriptionChannelWithLiterals, fV as SubscriptionInfo, bs as SubscriptionInfoOptInLevel, jV as SubscriptionInfoOptInLevelWithLiterals, eo as TableCellData, em as TableData, bi as Tag, bQ as TagList, jL as TagWithLiterals, gP as Tags, fj as TagsOption, gQ as TagsTagList, bx as Target, j_ as TargetWithLiterals, ae as TextAlignment, iH as TextAlignmentWithLiterals, d_ as TextData, cZ as TextInput, eM as TextNodeStyle, di as TextStyle, gz as ThankYouMessageOptions, dy as Thumbnails, am as ThumbnailsAlignment, iP as ThumbnailsAlignmentWithLiterals, eY as TimeInput, eJ as TocData, b9 as Type, jC as TypeWithLiterals, i1 as UpdateExtendedFieldsRequest, hh as UpdateSubmissionRequest, hi as UpdateSubmissionResponse, b6 as UploadFileFormat, jz as UploadFileFormatWithLiterals, gm as UpsertContact, g_ as UpsertContactFromSubmissionRequest, gn as V4FormFieldContactInfo, go as V4FormFieldContactInfoAdditionalInfoOneOf, i7 as ValidateFormSubmissionRequest, cK as Validation, h3 as ValidationError, a0 as ValidationFormat, it as ValidationFormatWithLiterals, cX as ValidationMessages, cL as ValidationValidationOneOf, aI as VerticalAlignment, aP as VerticalAlignmentAlignment, jg as VerticalAlignmentAlignmentWithLiterals, j9 as VerticalAlignmentWithLiterals, ds as Video, fN as VideoConferenceOptions, eh as VideoData, ai as ViewMode, iL as ViewModeWithLiterals, ar as ViewRole, iU as ViewRoleWithLiterals, as as VoteRole, iV as VoteRoleWithLiterals, Z as WebhookIdentityType, iq as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, iD as WidthTypeWithLiterals, iJ as WidthWithLiterals, g3 as WixFile, b5 as WixFileComponentType, g4 as WixFileComponentTypeOptionsOneOf, jy as WixFileComponentTypeWithLiterals, g0 as _Array, g1 as _ArrayComponentTypeOptionsOneOf, f_ as _Boolean, f$ as _BooleanComponentTypeOptionsOneOf, fY as _Number, fZ as _NumberComponentTypeOptionsOneOf, g2 as _Object, fW as _String, fX as _StringComponentTypeOptionsOneOf, im as utils } from './forms-v4-submission-submissions.universal-B2-JQqx2.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -1406,6 +1406,7 @@ var UploadFileFormat = /* @__PURE__ */ ((UploadFileFormat2) => {
|
|
|
1406
1406
|
UploadFileFormat2["AUDIO"] = "AUDIO";
|
|
1407
1407
|
UploadFileFormat2["DOCUMENT"] = "DOCUMENT";
|
|
1408
1408
|
UploadFileFormat2["ARCHIVE"] = "ARCHIVE";
|
|
1409
|
+
UploadFileFormat2["MODEL_3D"] = "MODEL_3D";
|
|
1409
1410
|
return UploadFileFormat2;
|
|
1410
1411
|
})(UploadFileFormat || {});
|
|
1411
1412
|
var PaymentComponentType = /* @__PURE__ */ ((PaymentComponentType2) => {
|
|
@@ -1641,6 +1642,13 @@ var ContactAutofill = /* @__PURE__ */ ((ContactAutofill2) => {
|
|
|
1641
1642
|
ContactAutofill2["FORM_INPUT"] = "FORM_INPUT";
|
|
1642
1643
|
return ContactAutofill2;
|
|
1643
1644
|
})(ContactAutofill || {});
|
|
1645
|
+
var SubmissionAccess = /* @__PURE__ */ ((SubmissionAccess2) => {
|
|
1646
|
+
SubmissionAccess2["UNKNOWN_SUBMISSION_ACCESS"] = "UNKNOWN_SUBMISSION_ACCESS";
|
|
1647
|
+
SubmissionAccess2["OWNER_AND_COLLABORATORS"] = "OWNER_AND_COLLABORATORS";
|
|
1648
|
+
SubmissionAccess2["MEMBERS"] = "MEMBERS";
|
|
1649
|
+
SubmissionAccess2["PUBLIC"] = "PUBLIC";
|
|
1650
|
+
return SubmissionAccess2;
|
|
1651
|
+
})(SubmissionAccess || {});
|
|
1644
1652
|
var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
|
|
1645
1653
|
IdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
1646
1654
|
IdentityType2["CONTACT"] = "CONTACT";
|
|
@@ -3027,6 +3035,7 @@ export {
|
|
|
3027
3035
|
StringComponentType,
|
|
3028
3036
|
StringTypeFormatEnumFormat,
|
|
3029
3037
|
StylesPosition,
|
|
3038
|
+
SubmissionAccess,
|
|
3030
3039
|
SubmissionErrorType,
|
|
3031
3040
|
SubmissionStatus,
|
|
3032
3041
|
SubmitSuccessAction,
|