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