@wix/auto_sdk_forms_submissions 1.0.108 → 1.0.110
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-t6zkGeZo.d.ts → forms-v4-submission-submissions.universal-uvhhiFaH.d.ts} +38 -30
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +38 -30
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-t6zkGeZo.d.mts → forms-v4-submission-submissions.universal-uvhhiFaH.d.mts} +38 -30
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +38 -30
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-xp-qtc-K.d.ts → forms-v4-submission-submissions.universal-CiTwM6RK.d.ts} +38 -30
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +1 -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 +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +38 -30
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-xp-qtc-K.d.mts → forms-v4-submission-submissions.universal-CiTwM6RK.d.mts} +38 -30
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +1 -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 +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +38 -30
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -594,9 +594,9 @@ interface FormField {
|
|
|
594
594
|
}
|
|
595
595
|
interface FormFieldStringType extends FormFieldStringTypeFormatOptionsOneOf {
|
|
596
596
|
/** DATE format options */
|
|
597
|
-
dateOptions?:
|
|
597
|
+
dateOptions?: DateTimeAdvancedConstraints;
|
|
598
598
|
/** DATE_TIME format options */
|
|
599
|
-
dateTimeOptions?:
|
|
599
|
+
dateTimeOptions?: StringTypeDateTimeConstraints;
|
|
600
600
|
/** TIME format options */
|
|
601
601
|
timeOptions?: StringTypeDateTimeConstraints;
|
|
602
602
|
/** DATE_OPTIONAL_TIME format options */
|
|
@@ -634,9 +634,9 @@ interface FormFieldStringType extends FormFieldStringTypeFormatOptionsOneOf {
|
|
|
634
634
|
/** @oneof */
|
|
635
635
|
interface FormFieldStringTypeFormatOptionsOneOf {
|
|
636
636
|
/** DATE format options */
|
|
637
|
-
dateOptions?:
|
|
637
|
+
dateOptions?: DateTimeAdvancedConstraints;
|
|
638
638
|
/** DATE_TIME format options */
|
|
639
|
-
dateTimeOptions?:
|
|
639
|
+
dateTimeOptions?: StringTypeDateTimeConstraints;
|
|
640
640
|
/** TIME format options */
|
|
641
641
|
timeOptions?: StringTypeDateTimeConstraints;
|
|
642
642
|
/** DATE_OPTIONAL_TIME format options */
|
|
@@ -669,24 +669,6 @@ interface StringErrorMessages {
|
|
|
669
669
|
*/
|
|
670
670
|
default?: string | null;
|
|
671
671
|
}
|
|
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
672
|
interface DateTimeAdvancedConstraints {
|
|
691
673
|
/**
|
|
692
674
|
* Allows to specify available and unavailable dates and days of the week.
|
|
@@ -750,6 +732,24 @@ declare enum DayOfWeek {
|
|
|
750
732
|
}
|
|
751
733
|
/** @enumType */
|
|
752
734
|
type DayOfWeekWithLiterals = DayOfWeek | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY';
|
|
735
|
+
interface StringTypeDateTimeConstraints {
|
|
736
|
+
/**
|
|
737
|
+
* Support static constrains defined as ISO date/time format, as well as
|
|
738
|
+
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
739
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
740
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
741
|
+
* @maxLength 50
|
|
742
|
+
*/
|
|
743
|
+
minimum?: string | null;
|
|
744
|
+
/**
|
|
745
|
+
* Support static constrains defined as ISO date/time format, as well as
|
|
746
|
+
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
747
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
748
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
749
|
+
* @maxLength 50
|
|
750
|
+
*/
|
|
751
|
+
maximum?: string | null;
|
|
752
|
+
}
|
|
753
753
|
interface StringTypePhoneConstraints {
|
|
754
754
|
/**
|
|
755
755
|
* Country codes for phone number that are allowed
|
|
@@ -1294,9 +1294,9 @@ interface StringCorrectAnswersList {
|
|
|
1294
1294
|
}
|
|
1295
1295
|
interface StringType extends StringTypeFormatOptionsOneOf {
|
|
1296
1296
|
/** Validation rules for strings with date format. */
|
|
1297
|
-
dateOptions?:
|
|
1297
|
+
dateOptions?: DateTimeAdvancedConstraints;
|
|
1298
1298
|
/** Validation rules for strings with date and time format. */
|
|
1299
|
-
dateTimeOptions?:
|
|
1299
|
+
dateTimeOptions?: DateTimeConstraints;
|
|
1300
1300
|
/** Validation rules for strings with time format. */
|
|
1301
1301
|
timeOptions?: DateTimeConstraints;
|
|
1302
1302
|
/** Validation rules for string with date and time format, where time is optional. */
|
|
@@ -1333,9 +1333,9 @@ interface StringType extends StringTypeFormatOptionsOneOf {
|
|
|
1333
1333
|
/** @oneof */
|
|
1334
1334
|
interface StringTypeFormatOptionsOneOf {
|
|
1335
1335
|
/** Validation rules for strings with date format. */
|
|
1336
|
-
dateOptions?:
|
|
1336
|
+
dateOptions?: DateTimeAdvancedConstraints;
|
|
1337
1337
|
/** Validation rules for strings with date and time format. */
|
|
1338
|
-
dateTimeOptions?:
|
|
1338
|
+
dateTimeOptions?: DateTimeConstraints;
|
|
1339
1339
|
/** Validation rules for strings with time format. */
|
|
1340
1340
|
timeOptions?: DateTimeConstraints;
|
|
1341
1341
|
/** Validation rules for string with date and time format, where time is optional. */
|
|
@@ -3853,6 +3853,7 @@ interface DateTimeInput {
|
|
|
3853
3853
|
* such as "$now" to represent the current date and time.
|
|
3854
3854
|
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3855
3855
|
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3856
|
+
* @maxLength 50
|
|
3856
3857
|
*/
|
|
3857
3858
|
default?: string | null;
|
|
3858
3859
|
/** Media content associated with the field, such as an image. */
|
|
@@ -3927,6 +3928,7 @@ interface DateInput {
|
|
|
3927
3928
|
* such as "$now" to represent the current date and time.
|
|
3928
3929
|
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3929
3930
|
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3931
|
+
* @maxLength 50
|
|
3930
3932
|
*/
|
|
3931
3933
|
default?: string | null;
|
|
3932
3934
|
/** Media content associated with the field, such as an image. */
|
|
@@ -3971,6 +3973,7 @@ interface TimeInput {
|
|
|
3971
3973
|
* such as "$now" to represent the current date and time.
|
|
3972
3974
|
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3973
3975
|
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3976
|
+
* @maxLength 50
|
|
3974
3977
|
*/
|
|
3975
3978
|
default?: string | null;
|
|
3976
3979
|
/** Media content associated with the field, such as an image. */
|
|
@@ -4005,6 +4008,7 @@ interface DatePicker {
|
|
|
4005
4008
|
* such as "$now" to represent the current date and time.
|
|
4006
4009
|
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
4007
4010
|
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
4011
|
+
* @maxLength 50
|
|
4008
4012
|
*/
|
|
4009
4013
|
default?: string | null;
|
|
4010
4014
|
/** Media content associated with the field, such as an image. */
|
|
@@ -4044,6 +4048,8 @@ interface ServicesDropdown {
|
|
|
4044
4048
|
options?: ServiceOption[];
|
|
4045
4049
|
/** Custom option which can be specified by the submitter. */
|
|
4046
4050
|
customOption?: CustomOption;
|
|
4051
|
+
/** Additional description or instructions for the field. */
|
|
4052
|
+
description?: RichContent;
|
|
4047
4053
|
}
|
|
4048
4054
|
interface ServiceOption {
|
|
4049
4055
|
/**
|
|
@@ -4461,7 +4467,7 @@ interface FileType {
|
|
|
4461
4467
|
fileLimit?: number;
|
|
4462
4468
|
/**
|
|
4463
4469
|
* Supported file formats for uploaded files.
|
|
4464
|
-
* @maxSize
|
|
4470
|
+
* @maxSize 6
|
|
4465
4471
|
*/
|
|
4466
4472
|
uploadFileFormats?: UploadFileFormatWithLiterals[];
|
|
4467
4473
|
}
|
|
@@ -4475,10 +4481,12 @@ declare enum UploadFileFormat {
|
|
|
4475
4481
|
/** Document files. */
|
|
4476
4482
|
DOCUMENT = "DOCUMENT",
|
|
4477
4483
|
/** Archive files. */
|
|
4478
|
-
ARCHIVE = "ARCHIVE"
|
|
4484
|
+
ARCHIVE = "ARCHIVE",
|
|
4485
|
+
/** 3D model files. */
|
|
4486
|
+
MODEL_3D = "MODEL_3D"
|
|
4479
4487
|
}
|
|
4480
4488
|
/** @enumType */
|
|
4481
|
-
type UploadFileFormatWithLiterals = UploadFileFormat | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
4489
|
+
type UploadFileFormatWithLiterals = UploadFileFormat | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE' | 'MODEL_3D';
|
|
4482
4490
|
interface FileUpload {
|
|
4483
4491
|
/**
|
|
4484
4492
|
* Field label.
|
|
@@ -8242,4 +8250,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
8242
8250
|
fieldsToValidate?: string[];
|
|
8243
8251
|
}
|
|
8244
8252
|
|
|
8245
|
-
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 };
|
|
8253
|
+
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 DateTimeAdvancedConstraints as cc, type Availability as cd, type DateRange as ce, type StringTypeDateTimeConstraints 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 };
|
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-t6zkGeZo.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-uvhhiFaH.mjs';
|
|
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, cd 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, ce as DateRange, cc 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, cf 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-uvhhiFaH.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) => {
|