@wix/auto_sdk_forms_submissions 1.0.33 → 1.0.35
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-BT68Vove.d.ts → forms-v4-submission-submissions.universal-CwAudhcs.d.ts} +40 -74
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-BT68Vove.d.mts → forms-v4-submission-submissions.universal-CwAudhcs.d.mts} +40 -74
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-C-SfRcGa.d.ts → forms-v4-submission-submissions.universal-BO1lxn5V.d.ts} +40 -74
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +2 -2
- 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 +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-C-SfRcGa.d.mts → forms-v4-submission-submissions.universal-BO1lxn5V.d.mts} +40 -74
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +2 -2
- 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 +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/package.json +2 -2
|
@@ -2824,7 +2824,7 @@ interface RadioGroup {
|
|
|
2824
2824
|
*/
|
|
2825
2825
|
showLabel?: boolean | null;
|
|
2826
2826
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
2827
|
-
customOption?:
|
|
2827
|
+
customOption?: CustomOption;
|
|
2828
2828
|
/**
|
|
2829
2829
|
* Specifies the number of columns used to display the selections within the component.
|
|
2830
2830
|
* Default: ONE
|
|
@@ -2855,7 +2855,7 @@ interface RadioGroupOption {
|
|
|
2855
2855
|
*/
|
|
2856
2856
|
_id?: string;
|
|
2857
2857
|
}
|
|
2858
|
-
interface
|
|
2858
|
+
interface CustomOption {
|
|
2859
2859
|
/**
|
|
2860
2860
|
* Label of custom option input
|
|
2861
2861
|
* @maxLength 350
|
|
@@ -2869,7 +2869,7 @@ interface RadioGroupCustomOption {
|
|
|
2869
2869
|
}
|
|
2870
2870
|
declare enum NumberOfColumns {
|
|
2871
2871
|
/** Undefined number of columns. */
|
|
2872
|
-
|
|
2872
|
+
UNKNOWN_NUMBER_OF_COLUMNS = "UNKNOWN_NUMBER_OF_COLUMNS",
|
|
2873
2873
|
/** Zero columns. */
|
|
2874
2874
|
ZERO = "ZERO",
|
|
2875
2875
|
/** One column. */
|
|
@@ -2880,7 +2880,7 @@ declare enum NumberOfColumns {
|
|
|
2880
2880
|
THREE = "THREE"
|
|
2881
2881
|
}
|
|
2882
2882
|
/** @enumType */
|
|
2883
|
-
type NumberOfColumnsWithLiterals = NumberOfColumns | '
|
|
2883
|
+
type NumberOfColumnsWithLiterals = NumberOfColumns | 'UNKNOWN_NUMBER_OF_COLUMNS' | 'ZERO' | 'ONE' | 'TWO' | 'THREE';
|
|
2884
2884
|
interface Dropdown {
|
|
2885
2885
|
/**
|
|
2886
2886
|
* Label of the field
|
|
@@ -2900,7 +2900,7 @@ interface Dropdown {
|
|
|
2900
2900
|
*/
|
|
2901
2901
|
showLabel?: boolean | null;
|
|
2902
2902
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
2903
|
-
customOption?:
|
|
2903
|
+
customOption?: CustomOption;
|
|
2904
2904
|
/**
|
|
2905
2905
|
* Placeholder of dropdown input
|
|
2906
2906
|
* @maxLength 100
|
|
@@ -2931,18 +2931,6 @@ interface DropdownOption {
|
|
|
2931
2931
|
*/
|
|
2932
2932
|
_id?: string;
|
|
2933
2933
|
}
|
|
2934
|
-
interface DropdownCustomOption {
|
|
2935
|
-
/**
|
|
2936
|
-
* Label of custom option input
|
|
2937
|
-
* @maxLength 350
|
|
2938
|
-
*/
|
|
2939
|
-
label?: string | null;
|
|
2940
|
-
/**
|
|
2941
|
-
* Placeholder of custom option input
|
|
2942
|
-
* @maxLength 100
|
|
2943
|
-
*/
|
|
2944
|
-
placeholder?: string | null;
|
|
2945
|
-
}
|
|
2946
2934
|
interface DateTimeInput {
|
|
2947
2935
|
/**
|
|
2948
2936
|
* Label of the field. Displayed text for the date/time input.
|
|
@@ -3131,7 +3119,7 @@ interface ServicesDropdown {
|
|
|
3131
3119
|
*/
|
|
3132
3120
|
options?: ServicesDropdownOption[];
|
|
3133
3121
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
3134
|
-
customOption?:
|
|
3122
|
+
customOption?: CustomOption;
|
|
3135
3123
|
}
|
|
3136
3124
|
interface ServicesDropdownOption {
|
|
3137
3125
|
/**
|
|
@@ -3146,18 +3134,6 @@ interface ServicesDropdownOption {
|
|
|
3146
3134
|
*/
|
|
3147
3135
|
_id?: string;
|
|
3148
3136
|
}
|
|
3149
|
-
interface CommonCustomOption {
|
|
3150
|
-
/**
|
|
3151
|
-
* Label of custom option input
|
|
3152
|
-
* @maxLength 350
|
|
3153
|
-
*/
|
|
3154
|
-
label?: string | null;
|
|
3155
|
-
/**
|
|
3156
|
-
* Placeholder of custom option input
|
|
3157
|
-
* @maxLength 100
|
|
3158
|
-
*/
|
|
3159
|
-
placeholder?: string | null;
|
|
3160
|
-
}
|
|
3161
3137
|
interface InputFieldNumberType {
|
|
3162
3138
|
/** Inclusive maximum value. */
|
|
3163
3139
|
maximum?: number | null;
|
|
@@ -3418,18 +3394,6 @@ interface Option {
|
|
|
3418
3394
|
/** Media item. Media, associated with option, like image. */
|
|
3419
3395
|
media?: MediaItem;
|
|
3420
3396
|
}
|
|
3421
|
-
interface CustomOption {
|
|
3422
|
-
/**
|
|
3423
|
-
* Label of custom option input
|
|
3424
|
-
* @maxLength 350
|
|
3425
|
-
*/
|
|
3426
|
-
label?: string | null;
|
|
3427
|
-
/**
|
|
3428
|
-
* Placeholder of custom option input
|
|
3429
|
-
* @maxLength 100
|
|
3430
|
-
*/
|
|
3431
|
-
placeholder?: string | null;
|
|
3432
|
-
}
|
|
3433
3397
|
interface Tags {
|
|
3434
3398
|
/**
|
|
3435
3399
|
* Label of the field
|
|
@@ -3449,7 +3413,7 @@ interface Tags {
|
|
|
3449
3413
|
*/
|
|
3450
3414
|
showLabel?: boolean | null;
|
|
3451
3415
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
3452
|
-
customOption?:
|
|
3416
|
+
customOption?: CustomOption;
|
|
3453
3417
|
/**
|
|
3454
3418
|
* Specifies the number of columns used to display the selections within the component.
|
|
3455
3419
|
* Default: ONE
|
|
@@ -3486,6 +3450,35 @@ declare enum InputFieldWixFileComponentType {
|
|
|
3486
3450
|
}
|
|
3487
3451
|
/** @enumType */
|
|
3488
3452
|
type InputFieldWixFileComponentTypeWithLiterals = InputFieldWixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
|
|
3453
|
+
interface FileType {
|
|
3454
|
+
/**
|
|
3455
|
+
* Amount of files allowed to upload
|
|
3456
|
+
* @min 1
|
|
3457
|
+
* @max 30
|
|
3458
|
+
*/
|
|
3459
|
+
fileLimit?: number;
|
|
3460
|
+
/**
|
|
3461
|
+
* Supported file formats for upload
|
|
3462
|
+
* @maxSize 5
|
|
3463
|
+
*/
|
|
3464
|
+
uploadFileFormats?: UploadFileFormatWithLiterals[];
|
|
3465
|
+
}
|
|
3466
|
+
declare enum UploadFileFormat {
|
|
3467
|
+
/** Undefined upload file format. */
|
|
3468
|
+
UNKNOWN_UPLOAD_FILE_FORMAT = "UNKNOWN_UPLOAD_FILE_FORMAT",
|
|
3469
|
+
/** Video files. */
|
|
3470
|
+
VIDEO = "VIDEO",
|
|
3471
|
+
/** Image files. */
|
|
3472
|
+
IMAGE = "IMAGE",
|
|
3473
|
+
/** Audio files. */
|
|
3474
|
+
AUDIO = "AUDIO",
|
|
3475
|
+
/** Document files. */
|
|
3476
|
+
DOCUMENT = "DOCUMENT",
|
|
3477
|
+
/** Archive files. */
|
|
3478
|
+
ARCHIVE = "ARCHIVE"
|
|
3479
|
+
}
|
|
3480
|
+
/** @enumType */
|
|
3481
|
+
type UploadFileFormatWithLiterals = UploadFileFormat | 'UNKNOWN_UPLOAD_FILE_FORMAT' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
3489
3482
|
interface FileUpload {
|
|
3490
3483
|
/**
|
|
3491
3484
|
* Selectable option label
|
|
@@ -3514,22 +3507,6 @@ interface FileUpload {
|
|
|
3514
3507
|
/** Settings for media item */
|
|
3515
3508
|
mediaSettings?: MediaSettings;
|
|
3516
3509
|
}
|
|
3517
|
-
declare enum UploadFileFormat {
|
|
3518
|
-
/** Undefined upload file format. */
|
|
3519
|
-
UNDEFINED = "UNDEFINED",
|
|
3520
|
-
/** Video files. */
|
|
3521
|
-
VIDEO = "VIDEO",
|
|
3522
|
-
/** Image files. */
|
|
3523
|
-
IMAGE = "IMAGE",
|
|
3524
|
-
/** Audio files. */
|
|
3525
|
-
AUDIO = "AUDIO",
|
|
3526
|
-
/** Document files. */
|
|
3527
|
-
DOCUMENT = "DOCUMENT",
|
|
3528
|
-
/** Archive files. */
|
|
3529
|
-
ARCHIVE = "ARCHIVE"
|
|
3530
|
-
}
|
|
3531
|
-
/** @enumType */
|
|
3532
|
-
type UploadFileFormatWithLiterals = UploadFileFormat | 'UNDEFINED' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
3533
3510
|
interface Signature {
|
|
3534
3511
|
/**
|
|
3535
3512
|
* Selectable option label
|
|
@@ -3620,7 +3597,7 @@ interface DonationInput {
|
|
|
3620
3597
|
*/
|
|
3621
3598
|
options?: DonationInputOption[];
|
|
3622
3599
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
3623
|
-
customOption?:
|
|
3600
|
+
customOption?: CustomOption;
|
|
3624
3601
|
/**
|
|
3625
3602
|
* Specifies the number of columns used to display the selections within the component.
|
|
3626
3603
|
* Default: ONE
|
|
@@ -4090,6 +4067,8 @@ interface InputFieldWixFile extends InputFieldWixFileComponentTypeOptionsOneOf {
|
|
|
4090
4067
|
* @readonly
|
|
4091
4068
|
*/
|
|
4092
4069
|
componentType?: InputFieldWixFileComponentTypeWithLiterals;
|
|
4070
|
+
/** Validation of field type. */
|
|
4071
|
+
validation?: FileType;
|
|
4093
4072
|
}
|
|
4094
4073
|
/** @oneof */
|
|
4095
4074
|
interface InputFieldWixFileComponentTypeOptionsOneOf {
|
|
@@ -4633,19 +4612,6 @@ declare enum WixFileComponentType {
|
|
|
4633
4612
|
}
|
|
4634
4613
|
/** @enumType */
|
|
4635
4614
|
type WixFileComponentTypeWithLiterals = WixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
|
|
4636
|
-
interface FileType {
|
|
4637
|
-
/**
|
|
4638
|
-
* Amount of files allowed to upload
|
|
4639
|
-
* @min 1
|
|
4640
|
-
* @max 30
|
|
4641
|
-
*/
|
|
4642
|
-
fileLimit?: number;
|
|
4643
|
-
/**
|
|
4644
|
-
* Supported file formats for upload
|
|
4645
|
-
* @maxSize 5
|
|
4646
|
-
*/
|
|
4647
|
-
uploadFileFormats?: UploadFileFormatWithLiterals[];
|
|
4648
|
-
}
|
|
4649
4615
|
declare enum PaymentComponentType {
|
|
4650
4616
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
4651
4617
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
@@ -7568,4 +7534,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7568
7534
|
fieldsToValidate?: string[];
|
|
7569
7535
|
}
|
|
7570
7536
|
|
|
7571
|
-
export { NodeType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, SubmissionStatus as O, OptInLevel as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, StringTypeFormatEnumFormat as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, ValidationFormat as W, ProductType as X, PriceType as Y, InputFieldStringTypeFormatEnumFormat as Z, InputFieldStringComponentType as _, type UpsertContactFromSubmissionResponse as a, StringComponentType as a$, WidthType as a0, PluginContainerDataAlignment as a1, ButtonDataType as a2, LinkTarget as a3, TextAlignment as a4, LineStyle as a5, Width as a6, DividerDataAlignment as a7, ViewMode as a8, LayoutType as a9, ImagePosition as aA, Alignment as aB, ImageFit as aC, NumberOfColumns as aD, FirstDayOfWeek as aE, InputFieldNumberComponentType as aF, InputFieldBooleanComponentType as aG, ArrayItemsItemType as aH, PropertiesTypePropertiesTypeEnum as aI, InputFieldArrayComponentType as aJ, InputFieldWixFileComponentType as aK, UploadFileFormat as aL, InputFieldPaymentComponentType as aM, InputFieldSchedulingComponentType as aN, Format as aO, MultilineAddressComponentType as aP, Type as aQ, InputFieldInputType as aR, FormFieldContactInfoEmailInfoTag as aS, FormFieldContactInfoPhoneInfoTag as aT, AddressInfoTag as aU, SubscriptionInfoOptInLevel as aV, FormFieldContactInfoContactField as aW, FormFieldV2FieldType as aX, DisplayFieldType as aY, FieldType as aZ, FormatEnumFormat as a_, Orientation as aa, Crop as ab, ThumbnailsAlignment as ac, GIFType as ad, Source as ae, StylesPosition as af, MapType as ag, ViewRole as ah, VoteRole as ai, PollLayoutType as aj, PollLayoutDirection as ak, BackgroundType as al, DecorationType as am, FontType as an, Position as ao, AspectRatio as ap, Resizing as aq, Placement as ar, CardStylesType as as, CardStylesAlignment as at, Layout as au, AppType as av, InitialExpandedItems as aw, Direction as ax, VerticalAlignment as ay, NullValue as az, type CreateSubmissionApplicationErrors as b, type ArrayTypeArrayItems as b$, NumberComponentType as b0, BooleanComponentType as b1, ItemType as b2, PropertiesTypeEnum as b3, ArrayComponentType as b4, WixFileComponentType as b5, PaymentComponentType as b6, ComponentType as b7, SchedulingComponentType as b8, InputType as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type CreateCheckoutFromSubmissionRequest as bI, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bJ, type Form as bK, type FormField as bL, type FormFieldStringType as bM, type FormFieldStringTypeFormatOptionsOneOf as bN, type StringErrorMessages as bO, type StringTypeDateTimeConstraints as bP, type StringTypePhoneConstraints as bQ, type FormFieldNumberType as bR, type NumberErrorMessages as bS, type IntegerType as bT, type FormFieldBooleanType as bU, type BooleanErrorMessages as bV, type FormFieldArrayType as bW, type FormFieldObjectType as bX, type ObjectTypePropertiesType as bY, type ObjectTypePropertiesTypePropertiesTypeOneOf as bZ, type ObjectErrorMessages as b_, EmailInfoTag as ba, PhoneInfoTag as bb, Tag as bc, ConfirmationLevel as bd, ContactField as be, DisplayFieldDisplayFieldType as bf, OverrideEntityType as bg, Kind as bh, SpamFilterProtectionLevel as bi, RequiredIndicator as bj, RequiredIndicatorPlacement as bk, Target as bl, SubmitSuccessAction as bm, ChangeableProperty as bn, OverrideEntityTypeEnumOverrideEntityType as bo, Operator as bp, WebhookIdentityType as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type ImageData as c$, type ArrayTypeArrayItemsItemsOneOf as c0, type ArrayErrorMessages as c1, type PredefinedValidation as c2, type PredefinedValidationFormatOptionsOneOf as c3, type PaymentType as c4, type QuantityLimit as c5, type FixedPriceOptions as c6, type DynamicPriceOptions as c7, type Product as c8, type ProductPriceOptionsOneOf as c9, type Height as cA, type Styles as cB, type Link as cC, type LinkDataOneOf as cD, type Rel as cE, type CodeBlockData as cF, type TextStyle as cG, type DividerData as cH, type FileData as cI, type FileSource as cJ, type FileSourceDataOneOf as cK, type PDFSettings as cL, type GalleryData as cM, type Media as cN, type Image as cO, type Video as cP, type Item as cQ, type ItemDataOneOf as cR, type GalleryOptions as cS, type GalleryOptionsLayout as cT, type ItemStyle as cU, type Thumbnails as cV, type GIFData as cW, type GIF as cX, type HeadingData as cY, type HTMLData as cZ, type HTMLDataDataOneOf as c_, type MultilineAddressValidation as ca, type FieldOverrides as cb, type FieldsOverrides as cc, type NestedFormFieldOverrides as cd, type Validation as ce, type ValidationValidationOneOf as cf, type DataExtensionsDetails as cg, type NestedFormOverrides as ch, type FormFieldV2 as ci, type FormFieldV2FieldTypeOptionsOneOf as cj, type InputFieldStringType as ck, type InputFieldStringTypeFormatOptionsOneOf as cl, type InputFieldStringTypeDateTimeConstraints as cm, type InputFieldStringTypePhoneConstraints as cn, type TextInput as co, type RichContent as cp, type Node as cq, type NodeDataOneOf as cr, type NodeStyle as cs, type ButtonData as ct, type Border as cu, type Colors as cv, type PluginContainerData as cw, type PluginContainerDataWidth as cx, type PluginContainerDataWidthDataOneOf as cy, type Spoiler as cz, type UpdateSubmission as d, type RadioGroup as d$, type StylesBorder as d0, type ImageDataStyles as d1, type LinkPreviewData as d2, type LinkPreviewDataStyles as d3, type MapData as d4, type MapSettings as d5, type ParagraphData as d6, type PollData as d7, type Permissions as d8, type PollOption as d9, type ImageStyles as dA, type RibbonStyles as dB, type CardStyles as dC, type PricingData as dD, type VideoData as dE, type PlaybackOptions as dF, type EmbedData as dG, type Oembed as dH, type CollapsibleListData as dI, type TableData as dJ, type Dimensions as dK, type TableCellData as dL, type CellStyle as dM, type BorderColors as dN, type ListValue as dO, type AudioData as dP, type OrderedListData as dQ, type BulletedListData as dR, type BlockquoteData as dS, type CaptionData as dT, type LayoutCellData as dU, type Metadata as dV, type DocumentStyle as dW, type TextNodeStyle as dX, type MediaItem as dY, type MediaItemMediaOneOf as dZ, type MediaSettings as d_, type Settings as da, type PollLayout as db, type OptionLayout as dc, type Gradient as dd, type Background as de, type BackgroundBackgroundOneOf as df, type PollDesign as dg, type OptionDesign as dh, type Poll as di, type PollDataLayout as dj, type Design as dk, type TextData as dl, type Decoration as dm, type DecorationDataOneOf as dn, type AnchorData as dp, type ColorData as dq, type LinkData as dr, type MentionData as ds, type FontSizeData as dt, type SpoilerData as du, type AppEmbedData as dv, type AppEmbedDataAppDataOneOf as dw, type BookingData as dx, type EventData as dy, type ButtonStyles as dz, type UpdateSubmissionValidationErrors as e, type InputField_Array as e$, type RadioGroupOption as e0, type RadioGroupCustomOption as e1, type Dropdown as e2, type DropdownOption as e3, type DropdownCustomOption as e4, type DateTimeInput as e5, type PhoneInput as e6, type DateInput as e7, type TimeInput as e8, type DatePicker as e9, type PaymentInput as eA, type FixedPayment as eB, type Appointment as eC, type AppointmentFormatInfoOneOf as eD, type Location as eE, type LocationLocationInfoOneOf as eF, type InPersonOptions as eG, type VideoConferenceOptions as eH, type PhoneOptions as eI, type MultilineAddress as eJ, type AddressLine2 as eK, type DefaultCountryConfig as eL, type DefaultCountryConfigOptionsOneOf as eM, type FieldsSettings as eN, type V4FormFieldContactInfo as eO, type V4FormFieldContactInfoAdditionalInfoOneOf as eP, type FormFieldContactInfoEmailInfo as eQ, type FormFieldContactInfoPhoneInfo as eR, type FormFieldContactInfoAddressInfo as eS, type FormFieldContactInfoCustomFieldInfo as eT, type FormFieldContactInfoSubscriptionInfo as eU, type InputField_String as eV, type InputField_StringComponentTypeOptionsOneOf as eW, type InputField_Number as eX, type InputField_NumberComponentTypeOptionsOneOf as eY, type InputField_Boolean as eZ, type InputField_BooleanComponentTypeOptionsOneOf as e_, type ServicesDropdown as ea, type ServicesDropdownOption as eb, type CommonCustomOption as ec, type InputFieldNumberType as ed, type NumberInput as ee, type RatingInput as ef, type InputFieldBooleanType as eg, type Checkbox as eh, type InputFieldArrayType as ei, type InputFieldIntegerType as ej, type InputFieldObjectType as ek, type InputFieldObjectTypePropertiesType as el, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as em, type InputFieldArrayTypeArrayItems as en, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as eo, type CheckboxGroup as ep, type Option as eq, type CustomOption as er, type Tags as es, type TagsOption as et, type FileUpload as eu, type Signature as ev, type ProductCheckboxGroup as ew, type ProductCheckboxGroupOption as ex, type DonationInput as ey, type DonationInputOption as ez, type ConfirmSubmissionResponse as f, type FormLayout as f$, type InputField_ArrayComponentTypeOptionsOneOf as f0, type InputField_Object as f1, type InputField_ObjectValidationOneOf as f2, type InputFieldWixFile as f3, type InputFieldWixFileComponentTypeOptionsOneOf as f4, type InputFieldPayment as f5, type InputFieldPaymentComponentTypeOptionsOneOf as f6, type InputFieldMultilineAddress as f7, type InputFieldMultilineAddressComponentTypeOptionsOneOf as f8, type InputFieldScheduling as f9, type EmailInfo as fA, type PhoneInfo as fB, type AddressInfo as fC, type CustomFieldInfo as fD, type SubscriptionInfo as fE, type _String as fF, type _StringComponentTypeOptionsOneOf as fG, type _Number as fH, type _NumberComponentTypeOptionsOneOf as fI, type _Boolean as fJ, type _BooleanComponentTypeOptionsOneOf as fK, type _Array as fL, type _ArrayComponentTypeOptionsOneOf as fM, type _Object as fN, type WixFile as fO, type WixFileComponentTypeOptionsOneOf as fP, type Payment as fQ, type PaymentComponentTypeOptionsOneOf as fR, type Scheduling as fS, type SchedulingComponentTypeOptionsOneOf as fT, type Address as fU, type AddressComponentTypeOptionsOneOf as fV, type FieldsDisplayField as fW, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as fX, type RichContentOptions as fY, type PageNavigationOptions as fZ, type Step as f_, type InputFieldSchedulingComponentTypeOptionsOneOf as fa, type FormFieldV2InputField as fb, type FormFieldV2InputFieldInputTypeOptionsOneOf as fc, type DisplayField as fd, type DisplayFieldDisplayFieldTypeOptionsOneOf as fe, type V4RichContentOptions as ff, type V4PageNavigationOptions as fg, type Field as fh, type FieldFieldTypeOptionsOneOf as fi, type InputField as fj, type InputFieldInputTypeOptionsOneOf as fk, type StringType as fl, type StringTypeFormatOptionsOneOf as fm, type DateTimeConstraints as fn, type PhoneConstraints as fo, type NumberType as fp, type BooleanType as fq, type ArrayType as fr, type ObjectType as fs, type PropertiesType as ft, type PropertiesTypePropertiesTypeOptionsOneOf as fu, type ArrayItems as fv, type ArrayItemsItemTypeOptionsOneOf as fw, type FileType as fx, type FormFieldContactInfo as fy, type FormFieldContactInfoAdditionalInfoOneOf as fz, type BulkDeleteSubmissionResponse as g, type BulkActionMetadata as g$, type BreakPoint as g0, type ItemLayout as g1, type ItemLayoutItemOneOf as g2, type Group as g3, type Margin as g4, type Section as g5, type FormRule as g6, type FormOverride as g7, type FormProperties as g8, type PostSubmissionTriggers as g9, type DomainEvent as gA, type DomainEventBodyOneOf as gB, type EntityCreatedEvent as gC, type RestoreInfo as gD, type EntityUpdatedEvent as gE, type EntityDeletedEvent as gF, type ActionEvent as gG, type Empty as gH, type MessageEnvelope as gI, type IdentificationData as gJ, type IdentificationDataIdOneOf as gK, type UpsertContactFromSubmissionRequest as gL, type SubmitContactResponse as gM, type CreateSubmissionRequest as gN, type CreateSubmissionResponse as gO, type SubmissionValidationErrorsDetails as gP, type ValidationError as gQ, type CreateSubmissionForMigrationRequest as gR, type CreateSubmissionForMigrationResponse as gS, type CreateSubmissionBySubmitterRequest as gT, type CreateSubmissionBySubmitterResponse as gU, type BulkCreateSubmissionBySubmitterRequest as gV, type BulkCreateSubmissionBySubmitterData as gW, type BulkCreateSubmissionBySubmitterResponse as gX, type BulkSubmissionResult as gY, type ItemMetadata as gZ, type ApplicationError as g_, type UpsertContact as ga, type NestedForm as gb, type LimitationRule as gc, type RequiredIndicatorProperties as gd, type SubmitSettings as ge, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gf, type ThankYouMessageOptions as gg, type RedirectOptions as gh, type FieldGroup as gi, type Rule as gj, type RequiredOptions as gk, type HiddenOptions as gl, type AllowedValuesOptions as gm, type FieldOverride as gn, type FieldOverridePropertyTypeOptionsOneOf as go, type ConditionNode as gp, type ConditionNodeNodeOneOf as gq, type AndCondition as gr, type OrCondition as gs, type Condition as gt, type RuleFormOverride as gu, type RuleFormOverrideEntityTypeOptionsOneOf as gv, type CreateCheckoutFromSubmissionResponse as gw, type Checkout as gx, type IsFormSubmittableRequest as gy, type IsFormSubmittableResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type BaseEventMetadata as h$, type GetSubmissionRequest as h0, type GetSubmissionResponse as h1, type GetSubmissionByCheckoutIdRequest as h2, type GetSubmissionByCheckoutIdResponse as h3, type UpdateSubmissionRequest as h4, type UpdateSubmissionResponse as h5, type ConfirmSubmissionRequest as h6, type DeleteSubmissionRequest as h7, type DeleteSubmissionResponse as h8, type BulkDeleteSubmissionRequest as h9, type CountSubmissionsRequest as hA, type CountDeletedSubmissionsRequest as hB, type FormDeletedSubmissionsCount as hC, type GetMediaUploadURLRequest as hD, type BulkMarkSubmissionsAsSeenRequest as hE, type BulkMarkSubmissionsAsSeenResponse as hF, type GetSubmissionDownloadUrlRequest as hG, type SubmissionDocument as hH, type SubmissionDocumentDocumentOneOf as hI, type DocumentReady as hJ, type GetFormattedSubmissionRequest as hK, type FormattedSubmission as hL, type ListFormattedSubmissionsRequest as hM, type ListFormattedSubmissionsResponse as hN, type FormattedFormSubmission as hO, type UpdateExtendedFieldsRequest as hP, type BulkUpdateFormSubmissionTagsRequest as hQ, type BulkUpdateFormSubmissionTagsResponse as hR, type BulkUpdateFormSubmissionTagsResult as hS, type BulkUpdateFormSubmissionTagsByFilterRequest as hT, type BulkUpdateFormSubmissionTagsByFilterResponse as hU, type ValidateFormSubmissionRequest as hV, type FieldViolation as hW, type FieldViolationErrorDataOneOf as hX, type SubmissionValidationErrors as hY, type SubmissionValidationError as hZ, type SubmissionValidationErrorErrorMessageOneOf as h_, type BulkDeleteSubmissionResult as ha, type RestoreSubmissionFromTrashBinRequest as hb, type RemoveSubmissionFromTrashBinRequest as hc, type RemoveSubmissionFromTrashBinResponse as hd, type BulkRemoveSubmissionFromTrashBinRequest as he, type BulkRemoveSubmissionFromTrashBinResult as hf, type ListDeletedSubmissionsRequest as hg, type CursorPaging as hh, type CursorPagingMetadata as hi, type Cursors as hj, type GetDeletedSubmissionRequest as hk, type QuerySubmissionRequest as hl, type CursorQueryPagingMethodOneOf as hm, type Sorting as hn, type SearchSubmissionsByNamespaceRequest as ho, type CursorSearch as hp, type CursorSearchPagingMethodOneOf as hq, type SearchDetails as hr, type SearchSubmissionsByNamespaceForExportRequest as hs, type SearchSubmissionsByNamespaceForExportResponse as ht, type QuerySubmissionsByNamespaceRequest as hu, type QuerySubmissionsByNamespaceResponse as hv, type QuerySubmissionsByNamespaceForExportRequest as hw, type QuerySubmissionsByNamespaceForExportResponse as hx, type CountSubmissionsByFilterRequest as hy, type FormSubmissionsCount as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type UploadFileFormatWithLiterals as i$, type EventMetadata as i0, type FormSubmissionSearchSpec as i1, type SubmissionsQueryResult as i2, type BulkUpdateFormSubmissionTagsOptions as i3, type BulkUpdateFormSubmissionTagsByFilterOptions as i4, type SubmissionStatusWithLiterals as i5, type OptInLevelWithLiterals as i6, type StringTypeFormatEnumFormatWithLiterals as i7, type ValidationFormatWithLiterals as i8, type ProductTypeWithLiterals as i9, type PollLayoutDirectionWithLiterals as iA, type BackgroundTypeWithLiterals as iB, type DecorationTypeWithLiterals as iC, type FontTypeWithLiterals as iD, type PositionWithLiterals as iE, type AspectRatioWithLiterals as iF, type ResizingWithLiterals as iG, type PlacementWithLiterals as iH, type CardStylesTypeWithLiterals as iI, type CardStylesAlignmentWithLiterals as iJ, type LayoutWithLiterals as iK, type AppTypeWithLiterals as iL, type InitialExpandedItemsWithLiterals as iM, type DirectionWithLiterals as iN, type VerticalAlignmentWithLiterals as iO, type NullValueWithLiterals as iP, type ImagePositionWithLiterals as iQ, type AlignmentWithLiterals as iR, type ImageFitWithLiterals as iS, type NumberOfColumnsWithLiterals as iT, type FirstDayOfWeekWithLiterals as iU, type InputFieldNumberComponentTypeWithLiterals as iV, type InputFieldBooleanComponentTypeWithLiterals as iW, type ArrayItemsItemTypeWithLiterals as iX, type PropertiesTypePropertiesTypeEnumWithLiterals as iY, type InputFieldArrayComponentTypeWithLiterals as iZ, type InputFieldWixFileComponentTypeWithLiterals as i_, type PriceTypeWithLiterals as ia, type InputFieldStringTypeFormatEnumFormatWithLiterals as ib, type InputFieldStringComponentTypeWithLiterals as ic, type NodeTypeWithLiterals as id, type WidthTypeWithLiterals as ie, type PluginContainerDataAlignmentWithLiterals as ig, type ButtonDataTypeWithLiterals as ih, type LinkTargetWithLiterals as ii, type TextAlignmentWithLiterals as ij, type LineStyleWithLiterals as ik, type WidthWithLiterals as il, type DividerDataAlignmentWithLiterals as im, type ViewModeWithLiterals as io, type LayoutTypeWithLiterals as ip, type OrientationWithLiterals as iq, type CropWithLiterals as ir, type ThumbnailsAlignmentWithLiterals as is, type GIFTypeWithLiterals as it, type SourceWithLiterals as iu, type StylesPositionWithLiterals as iv, type MapTypeWithLiterals as iw, type ViewRoleWithLiterals as ix, type VoteRoleWithLiterals as iy, type PollLayoutTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, bulkDeleteSubmission as j$, type InputFieldPaymentComponentTypeWithLiterals as j0, type InputFieldSchedulingComponentTypeWithLiterals as j1, type FormatWithLiterals as j2, type MultilineAddressComponentTypeWithLiterals as j3, type TypeWithLiterals as j4, type InputFieldInputTypeWithLiterals as j5, type FormFieldContactInfoEmailInfoTagWithLiterals as j6, type FormFieldContactInfoPhoneInfoTagWithLiterals as j7, type AddressInfoTagWithLiterals as j8, type SubscriptionInfoOptInLevelWithLiterals as j9, type RequiredIndicatorPlacementWithLiterals as jA, type TargetWithLiterals as jB, type SubmitSuccessActionWithLiterals as jC, type ChangeablePropertyWithLiterals as jD, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jE, type OperatorWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type IdentityTypeWithLiterals as jH, type ErrorTypeWithLiterals as jI, type SortOrderWithLiterals as jJ, type ModeWithLiterals as jK, type StatusWithLiterals as jL, type SubmissionErrorTypeWithLiterals as jM, type CommonSearchWithEntityContext as jN, onSubmissionCreated as jO, onSubmissionDeleted as jP, onSubmissionRemovedSubmissionFromTrash as jQ, onSubmissionStatusUpdated as jR, onSubmissionContactMapped as jS, onSubmissionContactMappingSkipped as jT, onSubmissionUpdated as jU, upsertContactFromSubmission as jV, createSubmission as jW, getSubmission as jX, updateSubmission as jY, confirmSubmission as jZ, deleteSubmission as j_, type FormFieldContactInfoContactFieldWithLiterals as ja, type FormFieldV2FieldTypeWithLiterals as jb, type DisplayFieldTypeWithLiterals as jc, type FieldTypeWithLiterals as jd, type FormatEnumFormatWithLiterals as je, type StringComponentTypeWithLiterals as jf, type NumberComponentTypeWithLiterals as jg, type BooleanComponentTypeWithLiterals as jh, type ItemTypeWithLiterals as ji, type PropertiesTypeEnumWithLiterals as jj, type ArrayComponentTypeWithLiterals as jk, type WixFileComponentTypeWithLiterals as jl, type PaymentComponentTypeWithLiterals as jm, type ComponentTypeWithLiterals as jn, type SchedulingComponentTypeWithLiterals as jo, type InputTypeWithLiterals as jp, type EmailInfoTagWithLiterals as jq, type PhoneInfoTagWithLiterals as jr, type TagWithLiterals as js, type ConfirmationLevelWithLiterals as jt, type ContactFieldWithLiterals as ju, type DisplayFieldDisplayFieldTypeWithLiterals as jv, type OverrideEntityTypeWithLiterals as jw, type KindWithLiterals as jx, type SpamFilterProtectionLevelWithLiterals as jy, type RequiredIndicatorWithLiterals as jz, type CursorQuery as k, restoreSubmissionFromTrashBin as k0, removeSubmissionFromTrashBin as k1, bulkRemoveSubmissionFromTrashBin as k2, listDeletedSubmissions as k3, getDeletedSubmission as k4, querySubmission as k5, querySubmissionsByNamespace as k6, countSubmissionsByFilter as k7, countSubmissions as k8, countDeletedSubmissions as k9, getMediaUploadUrl as ka, bulkMarkSubmissionsAsSeen as kb, getSubmissionDownloadUrl as kc, getFormattedSubmission as kd, updateExtendedFields as ke, validateFormSubmission as kf, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
7537
|
+
export { NodeType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, SubmissionStatus as O, OptInLevel as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, StringTypeFormatEnumFormat as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, ValidationFormat as W, ProductType as X, PriceType as Y, InputFieldStringTypeFormatEnumFormat as Z, InputFieldStringComponentType as _, type UpsertContactFromSubmissionResponse as a, StringComponentType as a$, WidthType as a0, PluginContainerDataAlignment as a1, ButtonDataType as a2, LinkTarget as a3, TextAlignment as a4, LineStyle as a5, Width as a6, DividerDataAlignment as a7, ViewMode as a8, LayoutType as a9, ImagePosition as aA, Alignment as aB, ImageFit as aC, NumberOfColumns as aD, FirstDayOfWeek as aE, InputFieldNumberComponentType as aF, InputFieldBooleanComponentType as aG, ArrayItemsItemType as aH, PropertiesTypePropertiesTypeEnum as aI, InputFieldArrayComponentType as aJ, InputFieldWixFileComponentType as aK, UploadFileFormat as aL, InputFieldPaymentComponentType as aM, InputFieldSchedulingComponentType as aN, Format as aO, MultilineAddressComponentType as aP, Type as aQ, InputFieldInputType as aR, FormFieldContactInfoEmailInfoTag as aS, FormFieldContactInfoPhoneInfoTag as aT, AddressInfoTag as aU, SubscriptionInfoOptInLevel as aV, FormFieldContactInfoContactField as aW, FormFieldV2FieldType as aX, DisplayFieldType as aY, FieldType as aZ, FormatEnumFormat as a_, Orientation as aa, Crop as ab, ThumbnailsAlignment as ac, GIFType as ad, Source as ae, StylesPosition as af, MapType as ag, ViewRole as ah, VoteRole as ai, PollLayoutType as aj, PollLayoutDirection as ak, BackgroundType as al, DecorationType as am, FontType as an, Position as ao, AspectRatio as ap, Resizing as aq, Placement as ar, CardStylesType as as, CardStylesAlignment as at, Layout as au, AppType as av, InitialExpandedItems as aw, Direction as ax, VerticalAlignment as ay, NullValue as az, type CreateSubmissionApplicationErrors as b, type ArrayTypeArrayItems as b$, NumberComponentType as b0, BooleanComponentType as b1, ItemType as b2, PropertiesTypeEnum as b3, ArrayComponentType as b4, WixFileComponentType as b5, PaymentComponentType as b6, ComponentType as b7, SchedulingComponentType as b8, InputType as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type CreateCheckoutFromSubmissionRequest as bI, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bJ, type Form as bK, type FormField as bL, type FormFieldStringType as bM, type FormFieldStringTypeFormatOptionsOneOf as bN, type StringErrorMessages as bO, type StringTypeDateTimeConstraints as bP, type StringTypePhoneConstraints as bQ, type FormFieldNumberType as bR, type NumberErrorMessages as bS, type IntegerType as bT, type FormFieldBooleanType as bU, type BooleanErrorMessages as bV, type FormFieldArrayType as bW, type FormFieldObjectType as bX, type ObjectTypePropertiesType as bY, type ObjectTypePropertiesTypePropertiesTypeOneOf as bZ, type ObjectErrorMessages as b_, EmailInfoTag as ba, PhoneInfoTag as bb, Tag as bc, ConfirmationLevel as bd, ContactField as be, DisplayFieldDisplayFieldType as bf, OverrideEntityType as bg, Kind as bh, SpamFilterProtectionLevel as bi, RequiredIndicator as bj, RequiredIndicatorPlacement as bk, Target as bl, SubmitSuccessAction as bm, ChangeableProperty as bn, OverrideEntityTypeEnumOverrideEntityType as bo, Operator as bp, WebhookIdentityType as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type ImageData as c$, type ArrayTypeArrayItemsItemsOneOf as c0, type ArrayErrorMessages as c1, type PredefinedValidation as c2, type PredefinedValidationFormatOptionsOneOf as c3, type PaymentType as c4, type QuantityLimit as c5, type FixedPriceOptions as c6, type DynamicPriceOptions as c7, type Product as c8, type ProductPriceOptionsOneOf as c9, type Height as cA, type Styles as cB, type Link as cC, type LinkDataOneOf as cD, type Rel as cE, type CodeBlockData as cF, type TextStyle as cG, type DividerData as cH, type FileData as cI, type FileSource as cJ, type FileSourceDataOneOf as cK, type PDFSettings as cL, type GalleryData as cM, type Media as cN, type Image as cO, type Video as cP, type Item as cQ, type ItemDataOneOf as cR, type GalleryOptions as cS, type GalleryOptionsLayout as cT, type ItemStyle as cU, type Thumbnails as cV, type GIFData as cW, type GIF as cX, type HeadingData as cY, type HTMLData as cZ, type HTMLDataDataOneOf as c_, type MultilineAddressValidation as ca, type FieldOverrides as cb, type FieldsOverrides as cc, type NestedFormFieldOverrides as cd, type Validation as ce, type ValidationValidationOneOf as cf, type DataExtensionsDetails as cg, type NestedFormOverrides as ch, type FormFieldV2 as ci, type FormFieldV2FieldTypeOptionsOneOf as cj, type InputFieldStringType as ck, type InputFieldStringTypeFormatOptionsOneOf as cl, type InputFieldStringTypeDateTimeConstraints as cm, type InputFieldStringTypePhoneConstraints as cn, type TextInput as co, type RichContent as cp, type Node as cq, type NodeDataOneOf as cr, type NodeStyle as cs, type ButtonData as ct, type Border as cu, type Colors as cv, type PluginContainerData as cw, type PluginContainerDataWidth as cx, type PluginContainerDataWidthDataOneOf as cy, type Spoiler as cz, type UpdateSubmission as d, type RadioGroup as d$, type StylesBorder as d0, type ImageDataStyles as d1, type LinkPreviewData as d2, type LinkPreviewDataStyles as d3, type MapData as d4, type MapSettings as d5, type ParagraphData as d6, type PollData as d7, type Permissions as d8, type PollOption as d9, type ImageStyles as dA, type RibbonStyles as dB, type CardStyles as dC, type PricingData as dD, type VideoData as dE, type PlaybackOptions as dF, type EmbedData as dG, type Oembed as dH, type CollapsibleListData as dI, type TableData as dJ, type Dimensions as dK, type TableCellData as dL, type CellStyle as dM, type BorderColors as dN, type ListValue as dO, type AudioData as dP, type OrderedListData as dQ, type BulletedListData as dR, type BlockquoteData as dS, type CaptionData as dT, type LayoutCellData as dU, type Metadata as dV, type DocumentStyle as dW, type TextNodeStyle as dX, type MediaItem as dY, type MediaItemMediaOneOf as dZ, type MediaSettings as d_, type Settings as da, type PollLayout as db, type OptionLayout as dc, type Gradient as dd, type Background as de, type BackgroundBackgroundOneOf as df, type PollDesign as dg, type OptionDesign as dh, type Poll as di, type PollDataLayout as dj, type Design as dk, type TextData as dl, type Decoration as dm, type DecorationDataOneOf as dn, type AnchorData as dp, type ColorData as dq, type LinkData as dr, type MentionData as ds, type FontSizeData as dt, type SpoilerData as du, type AppEmbedData as dv, type AppEmbedDataAppDataOneOf as dw, type BookingData as dx, type EventData as dy, type ButtonStyles as dz, type UpdateSubmissionValidationErrors as e, type InputField_Object as e$, type RadioGroupOption as e0, type CustomOption as e1, type Dropdown as e2, type DropdownOption as e3, type DateTimeInput as e4, type PhoneInput as e5, type DateInput as e6, type TimeInput as e7, type DatePicker as e8, type ServicesDropdown as e9, type Appointment as eA, type AppointmentFormatInfoOneOf as eB, type Location as eC, type LocationLocationInfoOneOf as eD, type InPersonOptions as eE, type VideoConferenceOptions as eF, type PhoneOptions as eG, type MultilineAddress as eH, type AddressLine2 as eI, type DefaultCountryConfig as eJ, type DefaultCountryConfigOptionsOneOf as eK, type FieldsSettings as eL, type V4FormFieldContactInfo as eM, type V4FormFieldContactInfoAdditionalInfoOneOf as eN, type FormFieldContactInfoEmailInfo as eO, type FormFieldContactInfoPhoneInfo as eP, type FormFieldContactInfoAddressInfo as eQ, type FormFieldContactInfoCustomFieldInfo as eR, type FormFieldContactInfoSubscriptionInfo as eS, type InputField_String as eT, type InputField_StringComponentTypeOptionsOneOf as eU, type InputField_Number as eV, type InputField_NumberComponentTypeOptionsOneOf as eW, type InputField_Boolean as eX, type InputField_BooleanComponentTypeOptionsOneOf as eY, type InputField_Array as eZ, type InputField_ArrayComponentTypeOptionsOneOf as e_, type ServicesDropdownOption as ea, type InputFieldNumberType as eb, type NumberInput as ec, type RatingInput as ed, type InputFieldBooleanType as ee, type Checkbox as ef, type InputFieldArrayType as eg, type InputFieldIntegerType as eh, type InputFieldObjectType as ei, type InputFieldObjectTypePropertiesType as ej, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ek, type InputFieldArrayTypeArrayItems as el, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as em, type CheckboxGroup as en, type Option as eo, type Tags as ep, type TagsOption as eq, type FileType as er, type FileUpload as es, type Signature as et, type ProductCheckboxGroup as eu, type ProductCheckboxGroupOption as ev, type DonationInput as ew, type DonationInputOption as ex, type PaymentInput as ey, type FixedPayment as ez, type ConfirmSubmissionResponse as f, type ItemLayoutItemOneOf as f$, type InputField_ObjectValidationOneOf as f0, type InputFieldWixFile as f1, type InputFieldWixFileComponentTypeOptionsOneOf as f2, type InputFieldPayment as f3, type InputFieldPaymentComponentTypeOptionsOneOf as f4, type InputFieldMultilineAddress as f5, type InputFieldMultilineAddressComponentTypeOptionsOneOf as f6, type InputFieldScheduling as f7, type InputFieldSchedulingComponentTypeOptionsOneOf as f8, type FormFieldV2InputField as f9, type CustomFieldInfo as fA, type SubscriptionInfo as fB, type _String as fC, type _StringComponentTypeOptionsOneOf as fD, type _Number as fE, type _NumberComponentTypeOptionsOneOf as fF, type _Boolean as fG, type _BooleanComponentTypeOptionsOneOf as fH, type _Array as fI, type _ArrayComponentTypeOptionsOneOf as fJ, type _Object as fK, type WixFile as fL, type WixFileComponentTypeOptionsOneOf as fM, type Payment as fN, type PaymentComponentTypeOptionsOneOf as fO, type Scheduling as fP, type SchedulingComponentTypeOptionsOneOf as fQ, type Address as fR, type AddressComponentTypeOptionsOneOf as fS, type FieldsDisplayField as fT, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as fU, type RichContentOptions as fV, type PageNavigationOptions as fW, type Step as fX, type FormLayout as fY, type BreakPoint as fZ, type ItemLayout as f_, type FormFieldV2InputFieldInputTypeOptionsOneOf as fa, type DisplayField as fb, type DisplayFieldDisplayFieldTypeOptionsOneOf as fc, type V4RichContentOptions as fd, type V4PageNavigationOptions as fe, type Field as ff, type FieldFieldTypeOptionsOneOf as fg, type InputField as fh, type InputFieldInputTypeOptionsOneOf as fi, type StringType as fj, type StringTypeFormatOptionsOneOf as fk, type DateTimeConstraints as fl, type PhoneConstraints as fm, type NumberType as fn, type BooleanType as fo, type ArrayType as fp, type ObjectType as fq, type PropertiesType as fr, type PropertiesTypePropertiesTypeOptionsOneOf as fs, type ArrayItems as ft, type ArrayItemsItemTypeOptionsOneOf as fu, type FormFieldContactInfo as fv, type FormFieldContactInfoAdditionalInfoOneOf as fw, type EmailInfo as fx, type PhoneInfo as fy, type AddressInfo as fz, type BulkDeleteSubmissionResponse as g, type GetSubmissionByCheckoutIdRequest as g$, type Group as g0, type Margin as g1, type Section as g2, type FormRule as g3, type FormOverride as g4, type FormProperties as g5, type PostSubmissionTriggers as g6, type UpsertContact as g7, type NestedForm as g8, type LimitationRule as g9, type RestoreInfo as gA, type EntityUpdatedEvent as gB, type EntityDeletedEvent as gC, type ActionEvent as gD, type Empty as gE, type MessageEnvelope as gF, type IdentificationData as gG, type IdentificationDataIdOneOf as gH, type UpsertContactFromSubmissionRequest as gI, type SubmitContactResponse as gJ, type CreateSubmissionRequest as gK, type CreateSubmissionResponse as gL, type SubmissionValidationErrorsDetails as gM, type ValidationError as gN, type CreateSubmissionForMigrationRequest as gO, type CreateSubmissionForMigrationResponse as gP, type CreateSubmissionBySubmitterRequest as gQ, type CreateSubmissionBySubmitterResponse as gR, type BulkCreateSubmissionBySubmitterRequest as gS, type BulkCreateSubmissionBySubmitterData as gT, type BulkCreateSubmissionBySubmitterResponse as gU, type BulkSubmissionResult as gV, type ItemMetadata as gW, type ApplicationError as gX, type BulkActionMetadata as gY, type GetSubmissionRequest as gZ, type GetSubmissionResponse as g_, type RequiredIndicatorProperties as ga, type SubmitSettings as gb, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gc, type ThankYouMessageOptions as gd, type RedirectOptions as ge, type FieldGroup as gf, type Rule as gg, type RequiredOptions as gh, type HiddenOptions as gi, type AllowedValuesOptions as gj, type FieldOverride as gk, type FieldOverridePropertyTypeOptionsOneOf as gl, type ConditionNode as gm, type ConditionNodeNodeOneOf as gn, type AndCondition as go, type OrCondition as gp, type Condition as gq, type RuleFormOverride as gr, type RuleFormOverrideEntityTypeOptionsOneOf as gs, type CreateCheckoutFromSubmissionResponse as gt, type Checkout as gu, type IsFormSubmittableRequest as gv, type IsFormSubmittableResponse as gw, type DomainEvent as gx, type DomainEventBodyOneOf as gy, type EntityCreatedEvent as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type SubmissionsQueryResult as h$, type GetSubmissionByCheckoutIdResponse as h0, type UpdateSubmissionRequest as h1, type UpdateSubmissionResponse as h2, type ConfirmSubmissionRequest as h3, type DeleteSubmissionRequest as h4, type DeleteSubmissionResponse as h5, type BulkDeleteSubmissionRequest as h6, type BulkDeleteSubmissionResult as h7, type RestoreSubmissionFromTrashBinRequest as h8, type RemoveSubmissionFromTrashBinRequest as h9, type GetMediaUploadURLRequest as hA, type BulkMarkSubmissionsAsSeenRequest as hB, type BulkMarkSubmissionsAsSeenResponse as hC, type GetSubmissionDownloadUrlRequest as hD, type SubmissionDocument as hE, type SubmissionDocumentDocumentOneOf as hF, type DocumentReady as hG, type GetFormattedSubmissionRequest as hH, type FormattedSubmission as hI, type ListFormattedSubmissionsRequest as hJ, type ListFormattedSubmissionsResponse as hK, type FormattedFormSubmission as hL, type UpdateExtendedFieldsRequest as hM, type BulkUpdateFormSubmissionTagsRequest as hN, type BulkUpdateFormSubmissionTagsResponse as hO, type BulkUpdateFormSubmissionTagsResult as hP, type BulkUpdateFormSubmissionTagsByFilterRequest as hQ, type BulkUpdateFormSubmissionTagsByFilterResponse as hR, type ValidateFormSubmissionRequest as hS, type FieldViolation as hT, type FieldViolationErrorDataOneOf as hU, type SubmissionValidationErrors as hV, type SubmissionValidationError as hW, type SubmissionValidationErrorErrorMessageOneOf as hX, type BaseEventMetadata as hY, type EventMetadata as hZ, type FormSubmissionSearchSpec as h_, type RemoveSubmissionFromTrashBinResponse as ha, type BulkRemoveSubmissionFromTrashBinRequest as hb, type BulkRemoveSubmissionFromTrashBinResult as hc, type ListDeletedSubmissionsRequest as hd, type CursorPaging as he, type CursorPagingMetadata as hf, type Cursors as hg, type GetDeletedSubmissionRequest as hh, type QuerySubmissionRequest as hi, type CursorQueryPagingMethodOneOf as hj, type Sorting as hk, type SearchSubmissionsByNamespaceRequest as hl, type CursorSearch as hm, type CursorSearchPagingMethodOneOf as hn, type SearchDetails as ho, type SearchSubmissionsByNamespaceForExportRequest as hp, type SearchSubmissionsByNamespaceForExportResponse as hq, type QuerySubmissionsByNamespaceRequest as hr, type QuerySubmissionsByNamespaceResponse as hs, type QuerySubmissionsByNamespaceForExportRequest as ht, type QuerySubmissionsByNamespaceForExportResponse as hu, type CountSubmissionsByFilterRequest as hv, type FormSubmissionsCount as hw, type CountSubmissionsRequest as hx, type CountDeletedSubmissionsRequest as hy, type FormDeletedSubmissionsCount as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type FormatWithLiterals as i$, type BulkUpdateFormSubmissionTagsOptions as i0, type BulkUpdateFormSubmissionTagsByFilterOptions as i1, type SubmissionStatusWithLiterals as i2, type OptInLevelWithLiterals as i3, type StringTypeFormatEnumFormatWithLiterals as i4, type ValidationFormatWithLiterals as i5, type ProductTypeWithLiterals as i6, type PriceTypeWithLiterals as i7, type InputFieldStringTypeFormatEnumFormatWithLiterals as i8, type InputFieldStringComponentTypeWithLiterals as i9, type FontTypeWithLiterals as iA, type PositionWithLiterals as iB, type AspectRatioWithLiterals as iC, type ResizingWithLiterals as iD, type PlacementWithLiterals as iE, type CardStylesTypeWithLiterals as iF, type CardStylesAlignmentWithLiterals as iG, type LayoutWithLiterals as iH, type AppTypeWithLiterals as iI, type InitialExpandedItemsWithLiterals as iJ, type DirectionWithLiterals as iK, type VerticalAlignmentWithLiterals as iL, type NullValueWithLiterals as iM, type ImagePositionWithLiterals as iN, type AlignmentWithLiterals as iO, type ImageFitWithLiterals as iP, type NumberOfColumnsWithLiterals as iQ, type FirstDayOfWeekWithLiterals as iR, type InputFieldNumberComponentTypeWithLiterals as iS, type InputFieldBooleanComponentTypeWithLiterals as iT, type ArrayItemsItemTypeWithLiterals as iU, type PropertiesTypePropertiesTypeEnumWithLiterals as iV, type InputFieldArrayComponentTypeWithLiterals as iW, type InputFieldWixFileComponentTypeWithLiterals as iX, type UploadFileFormatWithLiterals as iY, type InputFieldPaymentComponentTypeWithLiterals as iZ, type InputFieldSchedulingComponentTypeWithLiterals as i_, type NodeTypeWithLiterals as ia, type WidthTypeWithLiterals as ib, type PluginContainerDataAlignmentWithLiterals as ic, type ButtonDataTypeWithLiterals as id, type LinkTargetWithLiterals as ie, 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 io, type ThumbnailsAlignmentWithLiterals as ip, type GIFTypeWithLiterals as iq, type SourceWithLiterals as ir, type StylesPositionWithLiterals as is, type MapTypeWithLiterals as it, type ViewRoleWithLiterals as iu, type VoteRoleWithLiterals as iv, type PollLayoutTypeWithLiterals as iw, type PollLayoutDirectionWithLiterals as ix, type BackgroundTypeWithLiterals as iy, type DecorationTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, bulkRemoveSubmissionFromTrashBin as j$, type MultilineAddressComponentTypeWithLiterals as j0, type TypeWithLiterals as j1, type InputFieldInputTypeWithLiterals as j2, type FormFieldContactInfoEmailInfoTagWithLiterals as j3, type FormFieldContactInfoPhoneInfoTagWithLiterals as j4, type AddressInfoTagWithLiterals as j5, type SubscriptionInfoOptInLevelWithLiterals as j6, type FormFieldContactInfoContactFieldWithLiterals as j7, type FormFieldV2FieldTypeWithLiterals as j8, type DisplayFieldTypeWithLiterals as j9, type ChangeablePropertyWithLiterals as jA, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jB, type OperatorWithLiterals as jC, type WebhookIdentityTypeWithLiterals as jD, type IdentityTypeWithLiterals as jE, type ErrorTypeWithLiterals as jF, type SortOrderWithLiterals as jG, type ModeWithLiterals as jH, type StatusWithLiterals as jI, type SubmissionErrorTypeWithLiterals as jJ, type CommonSearchWithEntityContext as jK, onSubmissionCreated as jL, onSubmissionDeleted as jM, onSubmissionRemovedSubmissionFromTrash as jN, onSubmissionStatusUpdated as jO, onSubmissionContactMapped as jP, onSubmissionContactMappingSkipped as jQ, onSubmissionUpdated as jR, upsertContactFromSubmission as jS, createSubmission as jT, getSubmission as jU, updateSubmission as jV, confirmSubmission as jW, deleteSubmission as jX, bulkDeleteSubmission as jY, restoreSubmissionFromTrashBin as jZ, removeSubmissionFromTrashBin as j_, type FieldTypeWithLiterals as ja, type FormatEnumFormatWithLiterals as jb, type StringComponentTypeWithLiterals as jc, type NumberComponentTypeWithLiterals as jd, type BooleanComponentTypeWithLiterals as je, type ItemTypeWithLiterals as jf, type PropertiesTypeEnumWithLiterals as jg, type ArrayComponentTypeWithLiterals as jh, type WixFileComponentTypeWithLiterals as ji, type PaymentComponentTypeWithLiterals as jj, type ComponentTypeWithLiterals as jk, type SchedulingComponentTypeWithLiterals as jl, type InputTypeWithLiterals as jm, type EmailInfoTagWithLiterals as jn, type PhoneInfoTagWithLiterals as jo, type TagWithLiterals as jp, type ConfirmationLevelWithLiterals as jq, type ContactFieldWithLiterals as jr, type DisplayFieldDisplayFieldTypeWithLiterals as js, type OverrideEntityTypeWithLiterals as jt, type KindWithLiterals as ju, type SpamFilterProtectionLevelWithLiterals as jv, type RequiredIndicatorWithLiterals as jw, type RequiredIndicatorPlacementWithLiterals as jx, type TargetWithLiterals as jy, type SubmitSuccessActionWithLiterals as jz, type CursorQuery as k, listDeletedSubmissions as k0, getDeletedSubmission as k1, querySubmission as k2, querySubmissionsByNamespace as k3, countSubmissionsByFilter as k4, countSubmissions as k5, countDeletedSubmissions as k6, getMediaUploadUrl as k7, bulkMarkSubmissionsAsSeen as k8, getSubmissionDownloadUrl as k9, getFormattedSubmission as ka, updateExtendedFields as kb, validateFormSubmission as kc, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { gG as ActionEvent, fU as Address, fV as AddressComponentTypeOptionsOneOf, fC as AddressInfo, aU as AddressInfoTag, j8 as AddressInfoTagWithLiterals, eK as AddressLine2, aB as Alignment, iR as AlignmentWithLiterals, gm as AllowedValuesOptions, dp as AnchorData, gr as AndCondition, dv as AppEmbedData, dw as AppEmbedDataAppDataOneOf, av as AppType, iL as AppTypeWithLiterals, g_ as ApplicationError, eC as Appointment, eD as AppointmentFormatInfoOneOf, b4 as ArrayComponentType, jk as ArrayComponentTypeWithLiterals, c1 as ArrayErrorMessages, fv as ArrayItems, aH as ArrayItemsItemType, fw as ArrayItemsItemTypeOptionsOneOf, iX as ArrayItemsItemTypeWithLiterals, fr as ArrayType, b$ as ArrayTypeArrayItems, c0 as ArrayTypeArrayItemsItemsOneOf, ap as AspectRatio, iF as AspectRatioWithLiterals, dP as AudioData, de as Background, df as BackgroundBackgroundOneOf, al as BackgroundType, iB as BackgroundTypeWithLiterals, h$ as BaseEventMetadata, dS as BlockquoteData, dx as BookingData, b1 as BooleanComponentType, jh as BooleanComponentTypeWithLiterals, bV as BooleanErrorMessages, fq as BooleanType, cu as Border, dN as BorderColors, g0 as BreakPoint, g$ as BulkActionMetadata, gW as BulkCreateSubmissionBySubmitterData, gV as BulkCreateSubmissionBySubmitterRequest, gX as BulkCreateSubmissionBySubmitterResponse, h9 as BulkDeleteSubmissionRequest, ha as BulkDeleteSubmissionResult, hE as BulkMarkSubmissionsAsSeenRequest, hF as BulkMarkSubmissionsAsSeenResponse, he as BulkRemoveSubmissionFromTrashBinRequest, hf as BulkRemoveSubmissionFromTrashBinResult, gY as BulkSubmissionResult, i4 as BulkUpdateFormSubmissionTagsByFilterOptions, hT as BulkUpdateFormSubmissionTagsByFilterRequest, hU as BulkUpdateFormSubmissionTagsByFilterResponse, i3 as BulkUpdateFormSubmissionTagsOptions, hQ as BulkUpdateFormSubmissionTagsRequest, hR as BulkUpdateFormSubmissionTagsResponse, hS as BulkUpdateFormSubmissionTagsResult, dR as BulletedListData, ct as ButtonData, a2 as ButtonDataType, ih as ButtonDataTypeWithLiterals, dz as ButtonStyles, dT as CaptionData, dC as CardStyles, at as CardStylesAlignment, iJ as CardStylesAlignmentWithLiterals, as as CardStylesType, iI as CardStylesTypeWithLiterals, dM as CellStyle, bn as ChangeableProperty, jD as ChangeablePropertyWithLiterals, eh as Checkbox, ep as CheckboxGroup, gx as Checkout, cF as CodeBlockData, dI as CollapsibleListData, dq as ColorData, cv as Colors, ec as CommonCustomOption, jN as CommonSearchWithEntityContext, b7 as ComponentType, jn as ComponentTypeWithLiterals, gt as Condition, gp as ConditionNode, gq as ConditionNodeNodeOneOf, h6 as ConfirmSubmissionRequest, bd as ConfirmationLevel, jt as ConfirmationLevelWithLiterals, be as ContactField, ju as ContactFieldWithLiterals, hB as CountDeletedSubmissionsRequest, hy as CountSubmissionsByFilterRequest, hA as CountSubmissionsRequest, bI as CreateCheckoutFromSubmissionRequest, bJ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gw as CreateCheckoutFromSubmissionResponse, gT as CreateSubmissionBySubmitterRequest, gU as CreateSubmissionBySubmitterResponse, gR as CreateSubmissionForMigrationRequest, gS as CreateSubmissionForMigrationResponse, gN as CreateSubmissionRequest, gO as CreateSubmissionResponse, ab as Crop, ir as CropWithLiterals, hh as CursorPaging, hi as CursorPagingMetadata, hm as CursorQueryPagingMethodOneOf, hp as CursorSearch, hq as CursorSearchPagingMethodOneOf, hj as Cursors, fD as CustomFieldInfo, er as CustomOption, cg as DataExtensionsDetails, e7 as DateInput, e9 as DatePicker, fn as DateTimeConstraints, e5 as DateTimeInput, dm as Decoration, dn as DecorationDataOneOf, am as DecorationType, iC as DecorationTypeWithLiterals, eL as DefaultCountryConfig, eM as DefaultCountryConfigOptionsOneOf, h7 as DeleteSubmissionRequest, h8 as DeleteSubmissionResponse, dk as Design, dK as Dimensions, ax as Direction, iN as DirectionWithLiterals, fd as DisplayField, bf as DisplayFieldDisplayFieldType, fe as DisplayFieldDisplayFieldTypeOptionsOneOf, jv as DisplayFieldDisplayFieldTypeWithLiterals, aY as DisplayFieldType, jc as DisplayFieldTypeWithLiterals, cH as DividerData, a7 as DividerDataAlignment, im as DividerDataAlignmentWithLiterals, hJ as DocumentReady, dW as DocumentStyle, gA as DomainEvent, gB as DomainEventBodyOneOf, ey as DonationInput, ez as DonationInputOption, e2 as Dropdown, e4 as DropdownCustomOption, e3 as DropdownOption, c7 as DynamicPriceOptions, fA as EmailInfo, ba as EmailInfoTag, jq as EmailInfoTagWithLiterals, dG as EmbedData, gH as Empty, gC as EntityCreatedEvent, gF as EntityDeletedEvent, gE as EntityUpdatedEvent, bs as ErrorType, jI as ErrorTypeWithLiterals, dy as EventData, i0 as EventMetadata, bz as ExtendedFields, fh as Field, fi as FieldFieldTypeOptionsOneOf, gi as FieldGroup, gn as FieldOverride, go as FieldOverridePropertyTypeOptionsOneOf, cb as FieldOverrides, aZ as FieldType, jd as FieldTypeWithLiterals, hW as FieldViolation, hX as FieldViolationErrorDataOneOf, fW as FieldsDisplayField, fX as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cc as FieldsOverrides, eN as FieldsSettings, cI as FileData, cJ as FileSource, cK as FileSourceDataOneOf, fx as FileType, eu as FileUpload, aE as FirstDayOfWeek, iU as FirstDayOfWeekWithLiterals, eB as FixedPayment, c6 as FixedPriceOptions, dt as FontSizeData, an as FontType, iD as FontTypeWithLiterals, bK as Form, hC as FormDeletedSubmissionsCount, bL as FormField, bW as FormFieldArrayType, bU as FormFieldBooleanType, fy as FormFieldContactInfo, fz as FormFieldContactInfoAdditionalInfoOneOf, eS as FormFieldContactInfoAddressInfo, aW as FormFieldContactInfoContactField, ja as FormFieldContactInfoContactFieldWithLiterals, eT as FormFieldContactInfoCustomFieldInfo, eQ as FormFieldContactInfoEmailInfo, aS as FormFieldContactInfoEmailInfoTag, j6 as FormFieldContactInfoEmailInfoTagWithLiterals, eR as FormFieldContactInfoPhoneInfo, aT as FormFieldContactInfoPhoneInfoTag, j7 as FormFieldContactInfoPhoneInfoTagWithLiterals, eU as FormFieldContactInfoSubscriptionInfo, bR as FormFieldNumberType, bX as FormFieldObjectType, bM as FormFieldStringType, bN as FormFieldStringTypeFormatOptionsOneOf, ci as FormFieldV2, aX as FormFieldV2FieldType, cj as FormFieldV2FieldTypeOptionsOneOf, jb as FormFieldV2FieldTypeWithLiterals, fb as FormFieldV2InputField, fc as FormFieldV2InputFieldInputTypeOptionsOneOf, f$ as FormLayout, g7 as FormOverride, g8 as FormProperties, g6 as FormRule, i1 as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, hz as FormSubmissionsCount, aO as Format, a_ as FormatEnumFormat, je as FormatEnumFormatWithLiterals, j2 as FormatWithLiterals, hO as FormattedFormSubmission, hL as FormattedSubmission, cX as GIF, cW as GIFData, ad as GIFType, it as GIFTypeWithLiterals, cM as GalleryData, cS as GalleryOptions, cT as GalleryOptionsLayout, hk as GetDeletedSubmissionRequest, hK as GetFormattedSubmissionRequest, hD as GetMediaUploadURLRequest, h2 as GetSubmissionByCheckoutIdRequest, h3 as GetSubmissionByCheckoutIdResponse, hG as GetSubmissionDownloadUrlRequest, h0 as GetSubmissionRequest, h1 as GetSubmissionResponse, dd as Gradient, g3 as Group, cZ as HTMLData, c_ as HTMLDataDataOneOf, cY as HeadingData, cA as Height, gl as HiddenOptions, gJ as IdentificationData, gK as IdentificationDataIdOneOf, br as IdentityType, jH as IdentityTypeWithLiterals, cO as Image, c$ as ImageData, d1 as ImageDataStyles, aC as ImageFit, iS as ImageFitWithLiterals, aA as ImagePosition, iQ as ImagePositionWithLiterals, dA as ImageStyles, eG as InPersonOptions, aw as InitialExpandedItems, iM as InitialExpandedItemsWithLiterals, fj as InputField, aJ as InputFieldArrayComponentType, iZ as InputFieldArrayComponentTypeWithLiterals, ei as InputFieldArrayType, en as InputFieldArrayTypeArrayItems, eo as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aG as InputFieldBooleanComponentType, iW as InputFieldBooleanComponentTypeWithLiterals, eg as InputFieldBooleanType, aR as InputFieldInputType, fk as InputFieldInputTypeOptionsOneOf, j5 as InputFieldInputTypeWithLiterals, ej as InputFieldIntegerType, f7 as InputFieldMultilineAddress, f8 as InputFieldMultilineAddressComponentTypeOptionsOneOf, aF as InputFieldNumberComponentType, iV as InputFieldNumberComponentTypeWithLiterals, ed as InputFieldNumberType, ek as InputFieldObjectType, el as InputFieldObjectTypePropertiesType, em as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f5 as InputFieldPayment, aM as InputFieldPaymentComponentType, f6 as InputFieldPaymentComponentTypeOptionsOneOf, j0 as InputFieldPaymentComponentTypeWithLiterals, f9 as InputFieldScheduling, aN as InputFieldSchedulingComponentType, fa as InputFieldSchedulingComponentTypeOptionsOneOf, j1 as InputFieldSchedulingComponentTypeWithLiterals, _ as InputFieldStringComponentType, ic as InputFieldStringComponentTypeWithLiterals, ck as InputFieldStringType, cm as InputFieldStringTypeDateTimeConstraints, Z as InputFieldStringTypeFormatEnumFormat, ib as InputFieldStringTypeFormatEnumFormatWithLiterals, cl as InputFieldStringTypeFormatOptionsOneOf, cn as InputFieldStringTypePhoneConstraints, f3 as InputFieldWixFile, aK as InputFieldWixFileComponentType, f4 as InputFieldWixFileComponentTypeOptionsOneOf, i_ as InputFieldWixFileComponentTypeWithLiterals, e$ as InputField_Array, f0 as InputField_ArrayComponentTypeOptionsOneOf, eZ as InputField_Boolean, e_ as InputField_BooleanComponentTypeOptionsOneOf, eX as InputField_Number, eY as InputField_NumberComponentTypeOptionsOneOf, f1 as InputField_Object, f2 as InputField_ObjectValidationOneOf, eV as InputField_String, eW as InputField_StringComponentTypeOptionsOneOf, b9 as InputType, jp as InputTypeWithLiterals, bT as IntegerType, gy as IsFormSubmittableRequest, gz as IsFormSubmittableResponse, cQ as Item, cR as ItemDataOneOf, g1 as ItemLayout, g2 as ItemLayoutItemOneOf, gZ as ItemMetadata, cU as ItemStyle, b2 as ItemType, ji as ItemTypeWithLiterals, bh as Kind, jx as KindWithLiterals, au as Layout, dU as LayoutCellData, a9 as LayoutType, ip as LayoutTypeWithLiterals, iK as LayoutWithLiterals, gc as LimitationRule, a5 as LineStyle, ik as LineStyleWithLiterals, cC as Link, dr as LinkData, cD as LinkDataOneOf, d2 as LinkPreviewData, d3 as LinkPreviewDataStyles, a3 as LinkTarget, ii as LinkTargetWithLiterals, hg as ListDeletedSubmissionsRequest, hM as ListFormattedSubmissionsRequest, hN as ListFormattedSubmissionsResponse, dO as ListValue, eE as Location, eF as LocationLocationInfoOneOf, d4 as MapData, d5 as MapSettings, ag as MapType, iw as MapTypeWithLiterals, g4 as Margin, bG as MarketingSubscriptionDetails, cN as Media, dY as MediaItem, dZ as MediaItemMediaOneOf, d_ as MediaSettings, ds as MentionData, gI as MessageEnvelope, dV as Metadata, bu as Mode, jK as ModeWithLiterals, eJ as MultilineAddress, aP as MultilineAddressComponentType, j3 as MultilineAddressComponentTypeWithLiterals, ca as MultilineAddressValidation, gb as NestedForm, cd as NestedFormFieldOverrides, ch as NestedFormOverrides, cq as Node, cr as NodeDataOneOf, cs as NodeStyle, $ as NodeType, id as NodeTypeWithLiterals, az as NullValue, iP as NullValueWithLiterals, b0 as NumberComponentType, jg as NumberComponentTypeWithLiterals, bS as NumberErrorMessages, ee as NumberInput, aD as NumberOfColumns, iT as NumberOfColumnsWithLiterals, fp as NumberType, b_ as ObjectErrorMessages, fs as ObjectType, bY as ObjectTypePropertiesType, bZ as ObjectTypePropertiesTypePropertiesTypeOneOf, dH as Oembed, bp as Operator, jF as OperatorWithLiterals, P as OptInLevel, i6 as OptInLevelWithLiterals, eq as Option, dh as OptionDesign, dc as OptionLayout, gs as OrCondition, bA as OrderDetails, dQ as OrderedListData, aa as Orientation, iq as OrientationWithLiterals, bg as OverrideEntityType, bo as OverrideEntityTypeEnumOverrideEntityType, jE as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jw as OverrideEntityTypeWithLiterals, cL as PDFSettings, fZ as PageNavigationOptions, d6 as ParagraphData, fQ as Payment, b6 as PaymentComponentType, fR as PaymentComponentTypeOptionsOneOf, jm as PaymentComponentTypeWithLiterals, eA as PaymentInput, c4 as PaymentType, d8 as Permissions, fo as PhoneConstraints, fB as PhoneInfo, bb as PhoneInfoTag, jr as PhoneInfoTagWithLiterals, e6 as PhoneInput, eI as PhoneOptions, ar as Placement, iH as PlacementWithLiterals, dF as PlaybackOptions, cw as PluginContainerData, a1 as PluginContainerDataAlignment, ig as PluginContainerDataAlignmentWithLiterals, cx as PluginContainerDataWidth, cy as PluginContainerDataWidthDataOneOf, di as Poll, d7 as PollData, dj as PollDataLayout, dg as PollDesign, db as PollLayout, ak as PollLayoutDirection, iA as PollLayoutDirectionWithLiterals, aj as PollLayoutType, iz as PollLayoutTypeWithLiterals, d9 as PollOption, ao as Position, iE as PositionWithLiterals, g9 as PostSubmissionTriggers, c2 as PredefinedValidation, c3 as PredefinedValidationFormatOptionsOneOf, Y as PriceType, ia as PriceTypeWithLiterals, dD as PricingData, c8 as Product, ew as ProductCheckboxGroup, ex as ProductCheckboxGroupOption, c9 as ProductPriceOptionsOneOf, X as ProductType, i9 as ProductTypeWithLiterals, ft as PropertiesType, b3 as PropertiesTypeEnum, jj as PropertiesTypeEnumWithLiterals, aI as PropertiesTypePropertiesTypeEnum, iY as PropertiesTypePropertiesTypeEnumWithLiterals, fu as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, c5 as QuantityLimit, hl as QuerySubmissionRequest, hw as QuerySubmissionsByNamespaceForExportRequest, hx as QuerySubmissionsByNamespaceForExportResponse, hu as QuerySubmissionsByNamespaceRequest, hv as QuerySubmissionsByNamespaceResponse, d$ as RadioGroup, e1 as RadioGroupCustomOption, e0 as RadioGroupOption, ef as RatingInput, gh as RedirectOptions, cE as Rel, hc as RemoveSubmissionFromTrashBinRequest, hd as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, bj as RequiredIndicator, bk as RequiredIndicatorPlacement, jA as RequiredIndicatorPlacementWithLiterals, gd as RequiredIndicatorProperties, jz as RequiredIndicatorWithLiterals, gk as RequiredOptions, aq as Resizing, iG as ResizingWithLiterals, gD as RestoreInfo, hb as RestoreSubmissionFromTrashBinRequest, dB as RibbonStyles, cp as RichContent, fY as RichContentOptions, gj as Rule, gu as RuleFormOverride, gv as RuleFormOverrideEntityTypeOptionsOneOf, fS as Scheduling, b8 as SchedulingComponentType, fT as SchedulingComponentTypeOptionsOneOf, jo as SchedulingComponentTypeWithLiterals, hr as SearchDetails, hs as SearchSubmissionsByNamespaceForExportRequest, ht as SearchSubmissionsByNamespaceForExportResponse, ho as SearchSubmissionsByNamespaceRequest, g5 as Section, ea as ServicesDropdown, eb as ServicesDropdownOption, da as Settings, ev as Signature, bt as SortOrder, jJ as SortOrderWithLiterals, hn as Sorting, ae as Source, iu as SourceWithLiterals, bi as SpamFilterProtectionLevel, jy as SpamFilterProtectionLevelWithLiterals, cz as Spoiler, du as SpoilerData, bv as Status, jL as StatusWithLiterals, f_ as Step, a$ as StringComponentType, jf as StringComponentTypeWithLiterals, bO as StringErrorMessages, fl as StringType, bP as StringTypeDateTimeConstraints, T as StringTypeFormatEnumFormat, i7 as StringTypeFormatEnumFormatWithLiterals, fm as StringTypeFormatOptionsOneOf, bQ as StringTypePhoneConstraints, cB as Styles, d0 as StylesBorder, af as StylesPosition, iv as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hH as SubmissionDocument, hI as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jM as SubmissionErrorTypeWithLiterals, O as SubmissionStatus, i5 as SubmissionStatusWithLiterals, hZ as SubmissionValidationError, h_ as SubmissionValidationErrorErrorMessageOneOf, hY as SubmissionValidationErrors, gP as SubmissionValidationErrorsDetails, i2 as SubmissionsQueryResult, gM as SubmitContactResponse, ge as SubmitSettings, gf as SubmitSettingsSubmitSuccessActionOptionsOneOf, bm as SubmitSuccessAction, jC as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fE as SubscriptionInfo, aV as SubscriptionInfoOptInLevel, j9 as SubscriptionInfoOptInLevelWithLiterals, dL as TableCellData, dJ as TableData, bc as Tag, bC as TagList, js as TagWithLiterals, es as Tags, et as TagsOption, bl as Target, jB as TargetWithLiterals, a4 as TextAlignment, ij as TextAlignmentWithLiterals, dl as TextData, co as TextInput, dX as TextNodeStyle, cG as TextStyle, gg as ThankYouMessageOptions, cV as Thumbnails, ac as ThumbnailsAlignment, is as ThumbnailsAlignmentWithLiterals, e8 as TimeInput, aQ as Type, j4 as TypeWithLiterals, hP as UpdateExtendedFieldsRequest, h4 as UpdateSubmissionRequest, h5 as UpdateSubmissionResponse, aL as UploadFileFormat, i$ as UploadFileFormatWithLiterals, ga as UpsertContact, gL as UpsertContactFromSubmissionRequest, eO as V4FormFieldContactInfo, eP as V4FormFieldContactInfoAdditionalInfoOneOf, fg as V4PageNavigationOptions, ff as V4RichContentOptions, hV as ValidateFormSubmissionRequest, ce as Validation, gQ as ValidationError, W as ValidationFormat, i8 as ValidationFormatWithLiterals, cf as ValidationValidationOneOf, ay as VerticalAlignment, iO as VerticalAlignmentWithLiterals, cP as Video, eH as VideoConferenceOptions, dE as VideoData, a8 as ViewMode, io as ViewModeWithLiterals, ah as ViewRole, ix as ViewRoleWithLiterals, ai as VoteRole, iy as VoteRoleWithLiterals, bq as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, a6 as Width, a0 as WidthType, ie as WidthTypeWithLiterals, il as WidthWithLiterals, fO as WixFile, b5 as WixFileComponentType, fP as WixFileComponentTypeOptionsOneOf, jl as WixFileComponentTypeWithLiterals, fL as _Array, fM as _ArrayComponentTypeOptionsOneOf, fJ as _Boolean, fK as _BooleanComponentTypeOptionsOneOf, fH as _Number, fI as _NumberComponentTypeOptionsOneOf, fN as _Object, fF as _String, fG as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-BT68Vove.js';
|
|
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 QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-CwAudhcs.js';
|
|
3
|
+
export { gD as ActionEvent, fR as Address, fS as AddressComponentTypeOptionsOneOf, fz as AddressInfo, aU as AddressInfoTag, j5 as AddressInfoTagWithLiterals, eI as AddressLine2, aB as Alignment, iO as AlignmentWithLiterals, gj as AllowedValuesOptions, dp as AnchorData, go as AndCondition, dv as AppEmbedData, dw as AppEmbedDataAppDataOneOf, av as AppType, iI as AppTypeWithLiterals, gX as ApplicationError, eA as Appointment, eB as AppointmentFormatInfoOneOf, b4 as ArrayComponentType, jh as ArrayComponentTypeWithLiterals, c1 as ArrayErrorMessages, ft as ArrayItems, aH as ArrayItemsItemType, fu as ArrayItemsItemTypeOptionsOneOf, iU as ArrayItemsItemTypeWithLiterals, fp as ArrayType, b$ as ArrayTypeArrayItems, c0 as ArrayTypeArrayItemsItemsOneOf, ap as AspectRatio, iC as AspectRatioWithLiterals, dP as AudioData, de as Background, df as BackgroundBackgroundOneOf, al as BackgroundType, iy as BackgroundTypeWithLiterals, hY as BaseEventMetadata, dS as BlockquoteData, dx as BookingData, b1 as BooleanComponentType, je as BooleanComponentTypeWithLiterals, bV as BooleanErrorMessages, fo as BooleanType, cu as Border, dN as BorderColors, fZ as BreakPoint, gY as BulkActionMetadata, gT as BulkCreateSubmissionBySubmitterData, gS as BulkCreateSubmissionBySubmitterRequest, gU as BulkCreateSubmissionBySubmitterResponse, h6 as BulkDeleteSubmissionRequest, h7 as BulkDeleteSubmissionResult, hB as BulkMarkSubmissionsAsSeenRequest, hC as BulkMarkSubmissionsAsSeenResponse, hb as BulkRemoveSubmissionFromTrashBinRequest, hc as BulkRemoveSubmissionFromTrashBinResult, gV as BulkSubmissionResult, i1 as BulkUpdateFormSubmissionTagsByFilterOptions, hQ as BulkUpdateFormSubmissionTagsByFilterRequest, hR as BulkUpdateFormSubmissionTagsByFilterResponse, i0 as BulkUpdateFormSubmissionTagsOptions, hN as BulkUpdateFormSubmissionTagsRequest, hO as BulkUpdateFormSubmissionTagsResponse, hP as BulkUpdateFormSubmissionTagsResult, dR as BulletedListData, ct as ButtonData, a2 as ButtonDataType, id as ButtonDataTypeWithLiterals, dz as ButtonStyles, dT as CaptionData, dC as CardStyles, at as CardStylesAlignment, iG as CardStylesAlignmentWithLiterals, as as CardStylesType, iF as CardStylesTypeWithLiterals, dM as CellStyle, bn as ChangeableProperty, jA as ChangeablePropertyWithLiterals, ef as Checkbox, en as CheckboxGroup, gu as Checkout, cF as CodeBlockData, dI as CollapsibleListData, dq as ColorData, cv as Colors, jK as CommonSearchWithEntityContext, b7 as ComponentType, jk as ComponentTypeWithLiterals, gq as Condition, gm as ConditionNode, gn as ConditionNodeNodeOneOf, h3 as ConfirmSubmissionRequest, bd as ConfirmationLevel, jq as ConfirmationLevelWithLiterals, be as ContactField, jr as ContactFieldWithLiterals, hy as CountDeletedSubmissionsRequest, hv as CountSubmissionsByFilterRequest, hx as CountSubmissionsRequest, bI as CreateCheckoutFromSubmissionRequest, bJ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gt as CreateCheckoutFromSubmissionResponse, gQ as CreateSubmissionBySubmitterRequest, gR as CreateSubmissionBySubmitterResponse, gO as CreateSubmissionForMigrationRequest, gP as CreateSubmissionForMigrationResponse, gK as CreateSubmissionRequest, gL as CreateSubmissionResponse, ab as Crop, io as CropWithLiterals, he as CursorPaging, hf as CursorPagingMetadata, hj as CursorQueryPagingMethodOneOf, hm as CursorSearch, hn as CursorSearchPagingMethodOneOf, hg as Cursors, fA as CustomFieldInfo, e1 as CustomOption, cg as DataExtensionsDetails, e6 as DateInput, e8 as DatePicker, fl as DateTimeConstraints, e4 as DateTimeInput, dm as Decoration, dn as DecorationDataOneOf, am as DecorationType, iz as DecorationTypeWithLiterals, eJ as DefaultCountryConfig, eK as DefaultCountryConfigOptionsOneOf, h4 as DeleteSubmissionRequest, h5 as DeleteSubmissionResponse, dk as Design, dK as Dimensions, ax as Direction, iK as DirectionWithLiterals, fb as DisplayField, bf as DisplayFieldDisplayFieldType, fc as DisplayFieldDisplayFieldTypeOptionsOneOf, js as DisplayFieldDisplayFieldTypeWithLiterals, aY as DisplayFieldType, j9 as DisplayFieldTypeWithLiterals, cH as DividerData, a7 as DividerDataAlignment, ij as DividerDataAlignmentWithLiterals, hG as DocumentReady, dW as DocumentStyle, gx as DomainEvent, gy as DomainEventBodyOneOf, ew as DonationInput, ex as DonationInputOption, e2 as Dropdown, e3 as DropdownOption, c7 as DynamicPriceOptions, fx as EmailInfo, ba as EmailInfoTag, jn as EmailInfoTagWithLiterals, dG as EmbedData, gE as Empty, gz as EntityCreatedEvent, gC as EntityDeletedEvent, gB as EntityUpdatedEvent, bs as ErrorType, jF as ErrorTypeWithLiterals, dy as EventData, hZ as EventMetadata, bz as ExtendedFields, ff as Field, fg as FieldFieldTypeOptionsOneOf, gf as FieldGroup, gk as FieldOverride, gl as FieldOverridePropertyTypeOptionsOneOf, cb as FieldOverrides, aZ as FieldType, ja as FieldTypeWithLiterals, hT as FieldViolation, hU as FieldViolationErrorDataOneOf, fT as FieldsDisplayField, fU as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cc as FieldsOverrides, eL as FieldsSettings, cI as FileData, cJ as FileSource, cK as FileSourceDataOneOf, er as FileType, es as FileUpload, aE as FirstDayOfWeek, iR as FirstDayOfWeekWithLiterals, ez as FixedPayment, c6 as FixedPriceOptions, dt as FontSizeData, an as FontType, iA as FontTypeWithLiterals, bK as Form, hz as FormDeletedSubmissionsCount, bL as FormField, bW as FormFieldArrayType, bU as FormFieldBooleanType, fv as FormFieldContactInfo, fw as FormFieldContactInfoAdditionalInfoOneOf, eQ as FormFieldContactInfoAddressInfo, aW as FormFieldContactInfoContactField, j7 as FormFieldContactInfoContactFieldWithLiterals, eR as FormFieldContactInfoCustomFieldInfo, eO as FormFieldContactInfoEmailInfo, aS as FormFieldContactInfoEmailInfoTag, j3 as FormFieldContactInfoEmailInfoTagWithLiterals, eP as FormFieldContactInfoPhoneInfo, aT as FormFieldContactInfoPhoneInfoTag, j4 as FormFieldContactInfoPhoneInfoTagWithLiterals, eS as FormFieldContactInfoSubscriptionInfo, bR as FormFieldNumberType, bX as FormFieldObjectType, bM as FormFieldStringType, bN as FormFieldStringTypeFormatOptionsOneOf, ci as FormFieldV2, aX as FormFieldV2FieldType, cj as FormFieldV2FieldTypeOptionsOneOf, j8 as FormFieldV2FieldTypeWithLiterals, f9 as FormFieldV2InputField, fa as FormFieldV2InputFieldInputTypeOptionsOneOf, fY as FormLayout, g4 as FormOverride, g5 as FormProperties, g3 as FormRule, h_ as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, hw as FormSubmissionsCount, aO as Format, a_ as FormatEnumFormat, jb as FormatEnumFormatWithLiterals, i$ as FormatWithLiterals, hL as FormattedFormSubmission, hI as FormattedSubmission, cX as GIF, cW as GIFData, ad as GIFType, iq as GIFTypeWithLiterals, cM as GalleryData, cS as GalleryOptions, cT as GalleryOptionsLayout, hh as GetDeletedSubmissionRequest, hH as GetFormattedSubmissionRequest, hA as GetMediaUploadURLRequest, g$ as GetSubmissionByCheckoutIdRequest, h0 as GetSubmissionByCheckoutIdResponse, hD as GetSubmissionDownloadUrlRequest, gZ as GetSubmissionRequest, g_ as GetSubmissionResponse, dd as Gradient, g0 as Group, cZ as HTMLData, c_ as HTMLDataDataOneOf, cY as HeadingData, cA as Height, gi as HiddenOptions, gG as IdentificationData, gH as IdentificationDataIdOneOf, br as IdentityType, jE as IdentityTypeWithLiterals, cO as Image, c$ as ImageData, d1 as ImageDataStyles, aC as ImageFit, iP as ImageFitWithLiterals, aA as ImagePosition, iN as ImagePositionWithLiterals, dA as ImageStyles, eE as InPersonOptions, aw as InitialExpandedItems, iJ as InitialExpandedItemsWithLiterals, fh as InputField, aJ as InputFieldArrayComponentType, iW as InputFieldArrayComponentTypeWithLiterals, eg as InputFieldArrayType, el as InputFieldArrayTypeArrayItems, em as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aG as InputFieldBooleanComponentType, iT as InputFieldBooleanComponentTypeWithLiterals, ee as InputFieldBooleanType, aR as InputFieldInputType, fi as InputFieldInputTypeOptionsOneOf, j2 as InputFieldInputTypeWithLiterals, eh as InputFieldIntegerType, f5 as InputFieldMultilineAddress, f6 as InputFieldMultilineAddressComponentTypeOptionsOneOf, aF as InputFieldNumberComponentType, iS as InputFieldNumberComponentTypeWithLiterals, eb as InputFieldNumberType, ei as InputFieldObjectType, ej as InputFieldObjectTypePropertiesType, ek as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f3 as InputFieldPayment, aM as InputFieldPaymentComponentType, f4 as InputFieldPaymentComponentTypeOptionsOneOf, iZ as InputFieldPaymentComponentTypeWithLiterals, f7 as InputFieldScheduling, aN as InputFieldSchedulingComponentType, f8 as InputFieldSchedulingComponentTypeOptionsOneOf, i_ as InputFieldSchedulingComponentTypeWithLiterals, _ as InputFieldStringComponentType, i9 as InputFieldStringComponentTypeWithLiterals, ck as InputFieldStringType, cm as InputFieldStringTypeDateTimeConstraints, Z as InputFieldStringTypeFormatEnumFormat, i8 as InputFieldStringTypeFormatEnumFormatWithLiterals, cl as InputFieldStringTypeFormatOptionsOneOf, cn as InputFieldStringTypePhoneConstraints, f1 as InputFieldWixFile, aK as InputFieldWixFileComponentType, f2 as InputFieldWixFileComponentTypeOptionsOneOf, iX as InputFieldWixFileComponentTypeWithLiterals, eZ as InputField_Array, e_ as InputField_ArrayComponentTypeOptionsOneOf, eX as InputField_Boolean, eY as InputField_BooleanComponentTypeOptionsOneOf, eV as InputField_Number, eW as InputField_NumberComponentTypeOptionsOneOf, e$ as InputField_Object, f0 as InputField_ObjectValidationOneOf, eT as InputField_String, eU as InputField_StringComponentTypeOptionsOneOf, b9 as InputType, jm as InputTypeWithLiterals, bT as IntegerType, gv as IsFormSubmittableRequest, gw as IsFormSubmittableResponse, cQ as Item, cR as ItemDataOneOf, f_ as ItemLayout, f$ as ItemLayoutItemOneOf, gW as ItemMetadata, cU as ItemStyle, b2 as ItemType, jf as ItemTypeWithLiterals, bh as Kind, ju as KindWithLiterals, au as Layout, dU as LayoutCellData, a9 as LayoutType, il as LayoutTypeWithLiterals, iH as LayoutWithLiterals, g9 as LimitationRule, a5 as LineStyle, ih as LineStyleWithLiterals, cC as Link, dr as LinkData, cD as LinkDataOneOf, d2 as LinkPreviewData, d3 as LinkPreviewDataStyles, a3 as LinkTarget, ie as LinkTargetWithLiterals, hd as ListDeletedSubmissionsRequest, hJ as ListFormattedSubmissionsRequest, hK as ListFormattedSubmissionsResponse, dO as ListValue, eC as Location, eD as LocationLocationInfoOneOf, d4 as MapData, d5 as MapSettings, ag as MapType, it as MapTypeWithLiterals, g1 as Margin, bG as MarketingSubscriptionDetails, cN as Media, dY as MediaItem, dZ as MediaItemMediaOneOf, d_ as MediaSettings, ds as MentionData, gF as MessageEnvelope, dV as Metadata, bu as Mode, jH as ModeWithLiterals, eH as MultilineAddress, aP as MultilineAddressComponentType, j0 as MultilineAddressComponentTypeWithLiterals, ca as MultilineAddressValidation, g8 as NestedForm, cd as NestedFormFieldOverrides, ch as NestedFormOverrides, cq as Node, cr as NodeDataOneOf, cs as NodeStyle, $ as NodeType, ia as NodeTypeWithLiterals, az as NullValue, iM as NullValueWithLiterals, b0 as NumberComponentType, jd as NumberComponentTypeWithLiterals, bS as NumberErrorMessages, ec as NumberInput, aD as NumberOfColumns, iQ as NumberOfColumnsWithLiterals, fn as NumberType, b_ as ObjectErrorMessages, fq as ObjectType, bY as ObjectTypePropertiesType, bZ as ObjectTypePropertiesTypePropertiesTypeOneOf, dH as Oembed, bp as Operator, jC as OperatorWithLiterals, P as OptInLevel, i3 as OptInLevelWithLiterals, eo as Option, dh as OptionDesign, dc as OptionLayout, gp as OrCondition, bA as OrderDetails, dQ as OrderedListData, aa as Orientation, im as OrientationWithLiterals, bg as OverrideEntityType, bo as OverrideEntityTypeEnumOverrideEntityType, jB as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jt as OverrideEntityTypeWithLiterals, cL as PDFSettings, fW as PageNavigationOptions, d6 as ParagraphData, fN as Payment, b6 as PaymentComponentType, fO as PaymentComponentTypeOptionsOneOf, jj as PaymentComponentTypeWithLiterals, ey as PaymentInput, c4 as PaymentType, d8 as Permissions, fm as PhoneConstraints, fy as PhoneInfo, bb as PhoneInfoTag, jo as PhoneInfoTagWithLiterals, e5 as PhoneInput, eG as PhoneOptions, ar as Placement, iE as PlacementWithLiterals, dF as PlaybackOptions, cw as PluginContainerData, a1 as PluginContainerDataAlignment, ic as PluginContainerDataAlignmentWithLiterals, cx as PluginContainerDataWidth, cy as PluginContainerDataWidthDataOneOf, di as Poll, d7 as PollData, dj as PollDataLayout, dg as PollDesign, db as PollLayout, ak as PollLayoutDirection, ix as PollLayoutDirectionWithLiterals, aj as PollLayoutType, iw as PollLayoutTypeWithLiterals, d9 as PollOption, ao as Position, iB as PositionWithLiterals, g6 as PostSubmissionTriggers, c2 as PredefinedValidation, c3 as PredefinedValidationFormatOptionsOneOf, Y as PriceType, i7 as PriceTypeWithLiterals, dD as PricingData, c8 as Product, eu as ProductCheckboxGroup, ev as ProductCheckboxGroupOption, c9 as ProductPriceOptionsOneOf, X as ProductType, i6 as ProductTypeWithLiterals, fr as PropertiesType, b3 as PropertiesTypeEnum, jg as PropertiesTypeEnumWithLiterals, aI as PropertiesTypePropertiesTypeEnum, iV as PropertiesTypePropertiesTypeEnumWithLiterals, fs as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, c5 as QuantityLimit, hi as QuerySubmissionRequest, ht as QuerySubmissionsByNamespaceForExportRequest, hu as QuerySubmissionsByNamespaceForExportResponse, hr as QuerySubmissionsByNamespaceRequest, hs as QuerySubmissionsByNamespaceResponse, d$ as RadioGroup, e0 as RadioGroupOption, ed as RatingInput, ge as RedirectOptions, cE as Rel, h9 as RemoveSubmissionFromTrashBinRequest, ha as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, bj as RequiredIndicator, bk as RequiredIndicatorPlacement, jx as RequiredIndicatorPlacementWithLiterals, ga as RequiredIndicatorProperties, jw as RequiredIndicatorWithLiterals, gh as RequiredOptions, aq as Resizing, iD as ResizingWithLiterals, gA as RestoreInfo, h8 as RestoreSubmissionFromTrashBinRequest, dB as RibbonStyles, cp as RichContent, fV as RichContentOptions, gg as Rule, gr as RuleFormOverride, gs as RuleFormOverrideEntityTypeOptionsOneOf, fP as Scheduling, b8 as SchedulingComponentType, fQ as SchedulingComponentTypeOptionsOneOf, jl as SchedulingComponentTypeWithLiterals, ho as SearchDetails, hp as SearchSubmissionsByNamespaceForExportRequest, hq as SearchSubmissionsByNamespaceForExportResponse, hl as SearchSubmissionsByNamespaceRequest, g2 as Section, e9 as ServicesDropdown, ea as ServicesDropdownOption, da as Settings, et as Signature, bt as SortOrder, jG as SortOrderWithLiterals, hk as Sorting, ae as Source, ir as SourceWithLiterals, bi as SpamFilterProtectionLevel, jv as SpamFilterProtectionLevelWithLiterals, cz as Spoiler, du as SpoilerData, bv as Status, jI as StatusWithLiterals, fX as Step, a$ as StringComponentType, jc as StringComponentTypeWithLiterals, bO as StringErrorMessages, fj as StringType, bP as StringTypeDateTimeConstraints, T as StringTypeFormatEnumFormat, i4 as StringTypeFormatEnumFormatWithLiterals, fk as StringTypeFormatOptionsOneOf, bQ as StringTypePhoneConstraints, cB as Styles, d0 as StylesBorder, af as StylesPosition, is as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hE as SubmissionDocument, hF as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jJ as SubmissionErrorTypeWithLiterals, O as SubmissionStatus, i2 as SubmissionStatusWithLiterals, hW as SubmissionValidationError, hX as SubmissionValidationErrorErrorMessageOneOf, hV as SubmissionValidationErrors, gM as SubmissionValidationErrorsDetails, h$ as SubmissionsQueryResult, gJ as SubmitContactResponse, gb as SubmitSettings, gc as SubmitSettingsSubmitSuccessActionOptionsOneOf, bm as SubmitSuccessAction, jz as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fB as SubscriptionInfo, aV as SubscriptionInfoOptInLevel, j6 as SubscriptionInfoOptInLevelWithLiterals, dL as TableCellData, dJ as TableData, bc as Tag, bC as TagList, jp as TagWithLiterals, ep as Tags, eq as TagsOption, bl as Target, jy as TargetWithLiterals, a4 as TextAlignment, ig as TextAlignmentWithLiterals, dl as TextData, co as TextInput, dX as TextNodeStyle, cG as TextStyle, gd as ThankYouMessageOptions, cV as Thumbnails, ac as ThumbnailsAlignment, ip as ThumbnailsAlignmentWithLiterals, e7 as TimeInput, aQ as Type, j1 as TypeWithLiterals, hM as UpdateExtendedFieldsRequest, h1 as UpdateSubmissionRequest, h2 as UpdateSubmissionResponse, aL as UploadFileFormat, iY as UploadFileFormatWithLiterals, g7 as UpsertContact, gI as UpsertContactFromSubmissionRequest, eM as V4FormFieldContactInfo, eN as V4FormFieldContactInfoAdditionalInfoOneOf, fe as V4PageNavigationOptions, fd as V4RichContentOptions, hS as ValidateFormSubmissionRequest, ce as Validation, gN as ValidationError, W as ValidationFormat, i5 as ValidationFormatWithLiterals, cf as ValidationValidationOneOf, ay as VerticalAlignment, iL as VerticalAlignmentWithLiterals, cP as Video, eF as VideoConferenceOptions, dE as VideoData, a8 as ViewMode, ik as ViewModeWithLiterals, ah as ViewRole, iu as ViewRoleWithLiterals, ai as VoteRole, iv as VoteRoleWithLiterals, bq as WebhookIdentityType, jD as WebhookIdentityTypeWithLiterals, a6 as Width, a0 as WidthType, ib as WidthTypeWithLiterals, ii as WidthWithLiterals, fL as WixFile, b5 as WixFileComponentType, fM as WixFileComponentTypeOptionsOneOf, ji as WixFileComponentTypeWithLiterals, fI as _Array, fJ as _ArrayComponentTypeOptionsOneOf, fG as _Boolean, fH as _BooleanComponentTypeOptionsOneOf, fE as _Number, fF as _NumberComponentTypeOptionsOneOf, fK as _Object, fC as _String, fD as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-CwAudhcs.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -1264,7 +1264,7 @@ var ImageFit = /* @__PURE__ */ ((ImageFit2) => {
|
|
|
1264
1264
|
return ImageFit2;
|
|
1265
1265
|
})(ImageFit || {});
|
|
1266
1266
|
var NumberOfColumns = /* @__PURE__ */ ((NumberOfColumns2) => {
|
|
1267
|
-
NumberOfColumns2["
|
|
1267
|
+
NumberOfColumns2["UNKNOWN_NUMBER_OF_COLUMNS"] = "UNKNOWN_NUMBER_OF_COLUMNS";
|
|
1268
1268
|
NumberOfColumns2["ZERO"] = "ZERO";
|
|
1269
1269
|
NumberOfColumns2["ONE"] = "ONE";
|
|
1270
1270
|
NumberOfColumns2["TWO"] = "TWO";
|
|
@@ -1318,7 +1318,7 @@ var InputFieldWixFileComponentType = /* @__PURE__ */ ((InputFieldWixFileComponen
|
|
|
1318
1318
|
return InputFieldWixFileComponentType2;
|
|
1319
1319
|
})(InputFieldWixFileComponentType || {});
|
|
1320
1320
|
var UploadFileFormat = /* @__PURE__ */ ((UploadFileFormat2) => {
|
|
1321
|
-
UploadFileFormat2["
|
|
1321
|
+
UploadFileFormat2["UNKNOWN_UPLOAD_FILE_FORMAT"] = "UNKNOWN_UPLOAD_FILE_FORMAT";
|
|
1322
1322
|
UploadFileFormat2["VIDEO"] = "VIDEO";
|
|
1323
1323
|
UploadFileFormat2["IMAGE"] = "IMAGE";
|
|
1324
1324
|
UploadFileFormat2["AUDIO"] = "AUDIO";
|