@wix/auto_sdk_forms_submissions 1.0.101 → 1.0.103
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-DGP8cfot.d.ts → forms-v4-submission-submissions.universal-DSP0qe-E.d.ts} +43 -63
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +0 -23
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +0 -23
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +38 -64
- package/build/cjs/meta.js +0 -23
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-DGP8cfot.d.mts → forms-v4-submission-submissions.universal-DSP0qe-E.d.mts} +43 -63
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +0 -23
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +0 -23
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +38 -64
- package/build/es/meta.mjs +0 -23
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-BAcUgmrV.d.ts → forms-v4-submission-submissions.universal-Bh2R7TwZ.d.ts} +43 -63
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +0 -23
- 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 +0 -23
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +38 -64
- package/build/internal/cjs/meta.js +0 -23
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-BAcUgmrV.d.mts → forms-v4-submission-submissions.universal-Bh2R7TwZ.d.mts} +43 -63
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +0 -23
- 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 +0 -23
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +38 -64
- package/build/internal/es/meta.mjs +0 -23
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -69,9 +69,14 @@ interface FormSubmission {
|
|
|
69
69
|
accessRestriction?: string | null;
|
|
70
70
|
/** Tag IDs collections associated with the current entity. */
|
|
71
71
|
tags?: PublicTags;
|
|
72
|
+
/**
|
|
73
|
+
* Appointment details.
|
|
74
|
+
* This object is only applicable when submitting a form that creates a booking appointment.
|
|
75
|
+
* @readonly
|
|
76
|
+
*/
|
|
77
|
+
appointmentDetails?: AppointmentDetails;
|
|
72
78
|
}
|
|
73
79
|
declare enum SubmissionStatus {
|
|
74
|
-
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
75
80
|
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
76
81
|
PENDING = "PENDING",
|
|
77
82
|
/** A submission is recorded in the Wix Forms collection. */
|
|
@@ -82,7 +87,7 @@ declare enum SubmissionStatus {
|
|
|
82
87
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
83
88
|
}
|
|
84
89
|
/** @enumType */
|
|
85
|
-
type SubmissionStatusWithLiterals = SubmissionStatus | '
|
|
90
|
+
type SubmissionStatusWithLiterals = SubmissionStatus | 'PENDING' | 'CONFIRMED' | 'PAYMENT_WAITING' | 'PAYMENT_CANCELED';
|
|
86
91
|
interface Submitter extends SubmitterSubmitterOneOf {
|
|
87
92
|
/**
|
|
88
93
|
* Member ID.
|
|
@@ -942,25 +947,21 @@ interface PaymentType {
|
|
|
942
947
|
maxItems?: number | null;
|
|
943
948
|
}
|
|
944
949
|
declare enum ProductType {
|
|
945
|
-
/** Unknown product type. */
|
|
946
|
-
UNKNOWN_PRODUCT_TYPE = "UNKNOWN_PRODUCT_TYPE",
|
|
947
950
|
/** Physical product that can be shipped. */
|
|
948
951
|
SHIPPABLE = "SHIPPABLE",
|
|
949
952
|
/** Digital product. */
|
|
950
953
|
DIGITAL = "DIGITAL"
|
|
951
954
|
}
|
|
952
955
|
/** @enumType */
|
|
953
|
-
type ProductTypeWithLiterals = ProductType | '
|
|
956
|
+
type ProductTypeWithLiterals = ProductType | 'SHIPPABLE' | 'DIGITAL';
|
|
954
957
|
declare enum PriceType {
|
|
955
|
-
/** Unknown price type. */
|
|
956
|
-
UNKNOWN_PRICE_TYPE = "UNKNOWN_PRICE_TYPE",
|
|
957
958
|
/** Product has a single, unchanging price. */
|
|
958
959
|
FIXED_PRICE = "FIXED_PRICE",
|
|
959
960
|
/** Product price can vary within a specified range. */
|
|
960
961
|
DYNAMIC_PRICE = "DYNAMIC_PRICE"
|
|
961
962
|
}
|
|
962
963
|
/** @enumType */
|
|
963
|
-
type PriceTypeWithLiterals = PriceType | '
|
|
964
|
+
type PriceTypeWithLiterals = PriceType | 'FIXED_PRICE' | 'DYNAMIC_PRICE';
|
|
964
965
|
interface QuantityLimit {
|
|
965
966
|
/**
|
|
966
967
|
* Minimum quantity that must be selected for this product.
|
|
@@ -3393,18 +3394,14 @@ interface MediaSettings {
|
|
|
3393
3394
|
imageFit?: ImageFitWithLiterals;
|
|
3394
3395
|
}
|
|
3395
3396
|
declare enum ImagePosition {
|
|
3396
|
-
/** Undefined position. */
|
|
3397
|
-
UNKNOWN_IMAGE_POSITION = "UNKNOWN_IMAGE_POSITION",
|
|
3398
3397
|
/** Above the field's label. */
|
|
3399
3398
|
ABOVE = "ABOVE",
|
|
3400
3399
|
/** Below the field's label. */
|
|
3401
3400
|
BELOW = "BELOW"
|
|
3402
3401
|
}
|
|
3403
3402
|
/** @enumType */
|
|
3404
|
-
type ImagePositionWithLiterals = ImagePosition | '
|
|
3403
|
+
type ImagePositionWithLiterals = ImagePosition | 'ABOVE' | 'BELOW';
|
|
3405
3404
|
declare enum Alignment {
|
|
3406
|
-
/** Undefined alignment. */
|
|
3407
|
-
UNKNOWN_ALIGNMENT = "UNKNOWN_ALIGNMENT",
|
|
3408
3405
|
/** Align left. */
|
|
3409
3406
|
LEFT = "LEFT",
|
|
3410
3407
|
/** Align center. */
|
|
@@ -3413,16 +3410,15 @@ declare enum Alignment {
|
|
|
3413
3410
|
RIGHT = "RIGHT"
|
|
3414
3411
|
}
|
|
3415
3412
|
/** @enumType */
|
|
3416
|
-
type AlignmentWithLiterals = Alignment | '
|
|
3413
|
+
type AlignmentWithLiterals = Alignment | 'LEFT' | 'CENTER' | 'RIGHT';
|
|
3417
3414
|
declare enum ImageFit {
|
|
3418
|
-
UNKNOWN_IMAGE_FIT = "UNKNOWN_IMAGE_FIT",
|
|
3419
3415
|
/** Scale the image to maintain its aspect ratio while filling the element's entire content box. Portions of the image may be clipped if the aspect ratios don't match. */
|
|
3420
3416
|
COVER = "COVER",
|
|
3421
3417
|
/** Resize the image to fill the element's content box. The image's original sspect ratio may not be preserved. */
|
|
3422
3418
|
CONTAIN = "CONTAIN"
|
|
3423
3419
|
}
|
|
3424
3420
|
/** @enumType */
|
|
3425
|
-
type ImageFitWithLiterals = ImageFit | '
|
|
3421
|
+
type ImageFitWithLiterals = ImageFit | 'COVER' | 'CONTAIN';
|
|
3426
3422
|
interface RadioGroup {
|
|
3427
3423
|
/**
|
|
3428
3424
|
* Field label.
|
|
@@ -3488,8 +3484,6 @@ interface CustomOption {
|
|
|
3488
3484
|
placeholder?: string | null;
|
|
3489
3485
|
}
|
|
3490
3486
|
declare enum NumberOfColumns {
|
|
3491
|
-
/** Undefined number of columns. */
|
|
3492
|
-
UNKNOWN_NUMBER_OF_COLUMNS = "UNKNOWN_NUMBER_OF_COLUMNS",
|
|
3493
3487
|
/** Zero columns. */
|
|
3494
3488
|
ZERO = "ZERO",
|
|
3495
3489
|
/** One column. */
|
|
@@ -3500,7 +3494,7 @@ declare enum NumberOfColumns {
|
|
|
3500
3494
|
THREE = "THREE"
|
|
3501
3495
|
}
|
|
3502
3496
|
/** @enumType */
|
|
3503
|
-
type NumberOfColumnsWithLiterals = NumberOfColumns | '
|
|
3497
|
+
type NumberOfColumnsWithLiterals = NumberOfColumns | 'ZERO' | 'ONE' | 'TWO' | 'THREE';
|
|
3504
3498
|
interface Dropdown {
|
|
3505
3499
|
/**
|
|
3506
3500
|
* Field label.
|
|
@@ -3953,8 +3947,6 @@ interface ArrayType {
|
|
|
3953
3947
|
items?: ArrayItems;
|
|
3954
3948
|
}
|
|
3955
3949
|
declare enum ItemType {
|
|
3956
|
-
/** Unknown item type. */
|
|
3957
|
-
UNKNOWN_ITEM_TYPE = "UNKNOWN_ITEM_TYPE",
|
|
3958
3950
|
/** Array can contain string values. */
|
|
3959
3951
|
STRING = "STRING",
|
|
3960
3952
|
/** Array can contain numeric values. */
|
|
@@ -3963,14 +3955,12 @@ declare enum ItemType {
|
|
|
3963
3955
|
BOOLEAN = "BOOLEAN"
|
|
3964
3956
|
}
|
|
3965
3957
|
/** @enumType */
|
|
3966
|
-
type ItemTypeWithLiterals = ItemType | '
|
|
3958
|
+
type ItemTypeWithLiterals = ItemType | 'STRING' | 'NUMBER' | 'BOOLEAN';
|
|
3967
3959
|
interface ObjectType {
|
|
3968
3960
|
/** Definition of object properties and their validation rules. */
|
|
3969
3961
|
properties?: Record<string, PropertiesType>;
|
|
3970
3962
|
}
|
|
3971
3963
|
declare enum PropertiesTypeEnum {
|
|
3972
|
-
/** Unknown property type. */
|
|
3973
|
-
UNKNOWN_PROPERTY_TYPE = "UNKNOWN_PROPERTY_TYPE",
|
|
3974
3964
|
/** Property must contain a string value. */
|
|
3975
3965
|
STRING = "STRING",
|
|
3976
3966
|
/** Property must contain a numeric value. */
|
|
@@ -3981,7 +3971,7 @@ declare enum PropertiesTypeEnum {
|
|
|
3981
3971
|
ARRAY = "ARRAY"
|
|
3982
3972
|
}
|
|
3983
3973
|
/** @enumType */
|
|
3984
|
-
type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | '
|
|
3974
|
+
type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY';
|
|
3985
3975
|
interface PropertiesType extends PropertiesTypePropertiesTypeOptionsOneOf {
|
|
3986
3976
|
/** Validation rules for string properties. */
|
|
3987
3977
|
stringOptions?: StringType;
|
|
@@ -4201,8 +4191,6 @@ interface FileType {
|
|
|
4201
4191
|
uploadFileFormats?: UploadFileFormatWithLiterals[];
|
|
4202
4192
|
}
|
|
4203
4193
|
declare enum UploadFileFormat {
|
|
4204
|
-
/** Undefined upload file format. */
|
|
4205
|
-
UNKNOWN_UPLOAD_FILE_FORMAT = "UNKNOWN_UPLOAD_FILE_FORMAT",
|
|
4206
4194
|
/** Video files. */
|
|
4207
4195
|
VIDEO = "VIDEO",
|
|
4208
4196
|
/** Image files. */
|
|
@@ -4215,7 +4203,7 @@ declare enum UploadFileFormat {
|
|
|
4215
4203
|
ARCHIVE = "ARCHIVE"
|
|
4216
4204
|
}
|
|
4217
4205
|
/** @enumType */
|
|
4218
|
-
type UploadFileFormatWithLiterals = UploadFileFormat | '
|
|
4206
|
+
type UploadFileFormatWithLiterals = UploadFileFormat | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
4219
4207
|
interface FileUpload {
|
|
4220
4208
|
/**
|
|
4221
4209
|
* Field label.
|
|
@@ -4688,7 +4676,6 @@ interface LocationLocationInfoOneOf {
|
|
|
4688
4676
|
businessLocationId?: string | null;
|
|
4689
4677
|
}
|
|
4690
4678
|
declare enum Format {
|
|
4691
|
-
UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
|
|
4692
4679
|
/** Face-to-face meeting at a physical location. */
|
|
4693
4680
|
IN_PERSON = "IN_PERSON",
|
|
4694
4681
|
/** Online meeting via video conference. */
|
|
@@ -4697,18 +4684,16 @@ declare enum Format {
|
|
|
4697
4684
|
PHONE = "PHONE"
|
|
4698
4685
|
}
|
|
4699
4686
|
/** @enumType */
|
|
4700
|
-
type FormatWithLiterals = Format | '
|
|
4687
|
+
type FormatWithLiterals = Format | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
|
|
4701
4688
|
declare enum MeetingType {
|
|
4702
|
-
UNKNOWN_MEETING_TYPE = "UNKNOWN_MEETING_TYPE",
|
|
4703
4689
|
/** Single staff member provides the service. */
|
|
4704
4690
|
SINGLE_STAFF = "SINGLE_STAFF",
|
|
4705
4691
|
/** Multiple staff members rotate via round robin scheduling. */
|
|
4706
4692
|
ROUND_ROBIN = "ROUND_ROBIN"
|
|
4707
4693
|
}
|
|
4708
4694
|
/** @enumType */
|
|
4709
|
-
type MeetingTypeWithLiterals = MeetingType | '
|
|
4695
|
+
type MeetingTypeWithLiterals = MeetingType | 'SINGLE_STAFF' | 'ROUND_ROBIN';
|
|
4710
4696
|
declare enum StaffStrategySelection {
|
|
4711
|
-
UNKNOWN_STAFF_STRATEGY_SELECTION = "UNKNOWN_STAFF_STRATEGY_SELECTION",
|
|
4712
4697
|
/** Staff selected randomly. */
|
|
4713
4698
|
AUTOMATIC = "AUTOMATIC",
|
|
4714
4699
|
/** Staff sorted by priority, highest first. */
|
|
@@ -4717,7 +4702,7 @@ declare enum StaffStrategySelection {
|
|
|
4717
4702
|
LOW_TO_HIGH_PRIORITY = "LOW_TO_HIGH_PRIORITY"
|
|
4718
4703
|
}
|
|
4719
4704
|
/** @enumType */
|
|
4720
|
-
type StaffStrategySelectionWithLiterals = StaffStrategySelection | '
|
|
4705
|
+
type StaffStrategySelectionWithLiterals = StaffStrategySelection | 'AUTOMATIC' | 'HIGH_TO_LOW_PRIORITY' | 'LOW_TO_HIGH_PRIORITY';
|
|
4721
4706
|
interface InPersonOptions {
|
|
4722
4707
|
/**
|
|
4723
4708
|
* Physical locations where the appointment can take place.
|
|
@@ -4834,7 +4819,6 @@ declare enum SubscriptionChannel {
|
|
|
4834
4819
|
/** @enumType */
|
|
4835
4820
|
type SubscriptionChannelWithLiterals = SubscriptionChannel | 'EMAIL' | 'SMS';
|
|
4836
4821
|
declare enum ContactField {
|
|
4837
|
-
UNKNOWN_CONTACT_FIELD = "UNKNOWN_CONTACT_FIELD",
|
|
4838
4822
|
/** Contact's first name. */
|
|
4839
4823
|
FIRST_NAME = "FIRST_NAME",
|
|
4840
4824
|
/** Contact's last name. */
|
|
@@ -4859,7 +4843,7 @@ declare enum ContactField {
|
|
|
4859
4843
|
VAT_ID = "VAT_ID"
|
|
4860
4844
|
}
|
|
4861
4845
|
/** @enumType */
|
|
4862
|
-
type ContactFieldWithLiterals = ContactField | '
|
|
4846
|
+
type ContactFieldWithLiterals = ContactField | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
|
|
4863
4847
|
interface EmailInfo {
|
|
4864
4848
|
/** Email categorization tag. */
|
|
4865
4849
|
tag?: EmailInfoTagWithLiterals;
|
|
@@ -5337,8 +5321,6 @@ declare enum SubscriptionInfoOptInLevel {
|
|
|
5337
5321
|
/** @enumType */
|
|
5338
5322
|
type SubscriptionInfoOptInLevelWithLiterals = SubscriptionInfoOptInLevel | 'UNKNOWN' | 'SINGLE_CONFIRMATION' | 'DOUBLE_CONFIRMATION';
|
|
5339
5323
|
declare enum FormFieldContactInfoContactField {
|
|
5340
|
-
/** Unknown contact field. */
|
|
5341
|
-
UNDEFINED = "UNDEFINED",
|
|
5342
5324
|
/** First name. */
|
|
5343
5325
|
FIRST_NAME = "FIRST_NAME",
|
|
5344
5326
|
/** CLast name. */
|
|
@@ -5363,7 +5345,7 @@ declare enum FormFieldContactInfoContactField {
|
|
|
5363
5345
|
VAT_ID = "VAT_ID"
|
|
5364
5346
|
}
|
|
5365
5347
|
/** @enumType */
|
|
5366
|
-
type FormFieldContactInfoContactFieldWithLiterals = FormFieldContactInfoContactField | '
|
|
5348
|
+
type FormFieldContactInfoContactFieldWithLiterals = FormFieldContactInfoContactField | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
|
|
5367
5349
|
interface FormFieldContactInfoEmailInfo {
|
|
5368
5350
|
/** Email tag. */
|
|
5369
5351
|
tag?: FormFieldContactInfoEmailInfoTagWithLiterals;
|
|
@@ -5437,8 +5419,6 @@ interface RequiredIndicatorProperties {
|
|
|
5437
5419
|
requiredIndicatorPlacement?: RequiredIndicatorPlacementWithLiterals;
|
|
5438
5420
|
}
|
|
5439
5421
|
declare enum RequiredIndicator {
|
|
5440
|
-
/** Unknown required indicator type. */
|
|
5441
|
-
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
5442
5422
|
/** Display an asterisk (*) symbol to indicate required fields. */
|
|
5443
5423
|
ASTERISK = "ASTERISK",
|
|
5444
5424
|
/** Display the text "Required" to indicate required fields. */
|
|
@@ -5447,17 +5427,15 @@ declare enum RequiredIndicator {
|
|
|
5447
5427
|
NONE = "NONE"
|
|
5448
5428
|
}
|
|
5449
5429
|
/** @enumType */
|
|
5450
|
-
type RequiredIndicatorWithLiterals = RequiredIndicator | '
|
|
5430
|
+
type RequiredIndicatorWithLiterals = RequiredIndicator | 'ASTERISK' | 'TEXT' | 'NONE';
|
|
5451
5431
|
declare enum RequiredIndicatorPlacement {
|
|
5452
|
-
/** Unknown required indicator placement. */
|
|
5453
|
-
UNKNOWN_PLACEMENT = "UNKNOWN_PLACEMENT",
|
|
5454
5432
|
/** Place the required indicator after the field title. */
|
|
5455
5433
|
AFTER_FIELD_TITLE = "AFTER_FIELD_TITLE",
|
|
5456
5434
|
/** Place the required indicator before the field title. */
|
|
5457
5435
|
BEFORE_FIELD_TITLE = "BEFORE_FIELD_TITLE"
|
|
5458
5436
|
}
|
|
5459
5437
|
/** @enumType */
|
|
5460
|
-
type RequiredIndicatorPlacementWithLiterals = RequiredIndicatorPlacement | '
|
|
5438
|
+
type RequiredIndicatorPlacementWithLiterals = RequiredIndicatorPlacement | 'AFTER_FIELD_TITLE' | 'BEFORE_FIELD_TITLE';
|
|
5461
5439
|
interface SubmitSettings extends SubmitSettingsSubmitSuccessActionOptionsOneOf {
|
|
5462
5440
|
/** Configuration for displaying a thank you message after submission. */
|
|
5463
5441
|
thankYouMessageOptions?: ThankYouMessageOptions;
|
|
@@ -5484,8 +5462,6 @@ declare enum Target {
|
|
|
5484
5462
|
/** @enumType */
|
|
5485
5463
|
type TargetWithLiterals = Target | 'UNKNOWN_TARGET' | 'SELF' | 'BLANK';
|
|
5486
5464
|
declare enum SubmitSuccessAction {
|
|
5487
|
-
/** Unknown submit success action. */
|
|
5488
|
-
UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
|
|
5489
5465
|
/** No action is taken after form submission. */
|
|
5490
5466
|
NO_ACTION = "NO_ACTION",
|
|
5491
5467
|
/** Display a thank you message after form submission. */
|
|
@@ -5494,7 +5470,7 @@ declare enum SubmitSuccessAction {
|
|
|
5494
5470
|
REDIRECT = "REDIRECT"
|
|
5495
5471
|
}
|
|
5496
5472
|
/** @enumType */
|
|
5497
|
-
type SubmitSuccessActionWithLiterals = SubmitSuccessAction | '
|
|
5473
|
+
type SubmitSuccessActionWithLiterals = SubmitSuccessAction | 'NO_ACTION' | 'THANK_YOU_MESSAGE' | 'REDIRECT';
|
|
5498
5474
|
interface ThankYouMessageOptions {
|
|
5499
5475
|
/**
|
|
5500
5476
|
* Duration in seconds before the thank you message automatically disappears.
|
|
@@ -5556,8 +5532,6 @@ interface Rule {
|
|
|
5556
5532
|
}
|
|
5557
5533
|
/** Enum for different types of field properties that can be modified by rules. */
|
|
5558
5534
|
declare enum ChangeableProperty {
|
|
5559
|
-
/** Unknown property type. */
|
|
5560
|
-
UNKNOWN_CHANGEABLE_PROPERTY = "UNKNOWN_CHANGEABLE_PROPERTY",
|
|
5561
5535
|
/** Required property type. */
|
|
5562
5536
|
REQUIRED = "REQUIRED",
|
|
5563
5537
|
/** Hidden property type. */
|
|
@@ -5566,7 +5540,7 @@ declare enum ChangeableProperty {
|
|
|
5566
5540
|
ALLOWED_VALUES = "ALLOWED_VALUES"
|
|
5567
5541
|
}
|
|
5568
5542
|
/** @enumType */
|
|
5569
|
-
type ChangeablePropertyWithLiterals = ChangeableProperty | '
|
|
5543
|
+
type ChangeablePropertyWithLiterals = ChangeableProperty | 'REQUIRED' | 'HIDDEN' | 'ALLOWED_VALUES';
|
|
5570
5544
|
interface RequiredOptions {
|
|
5571
5545
|
/** Whether the field should be required. */
|
|
5572
5546
|
required?: boolean;
|
|
@@ -5584,13 +5558,11 @@ interface AllowedValuesOptions {
|
|
|
5584
5558
|
allowedValues?: any[];
|
|
5585
5559
|
}
|
|
5586
5560
|
declare enum OverrideEntityTypeEnumOverrideEntityType {
|
|
5587
|
-
/** Unknown override entity type. */
|
|
5588
|
-
UNKNOWN_OVERRIDE_ENTITY_TYPE = "UNKNOWN_OVERRIDE_ENTITY_TYPE",
|
|
5589
5561
|
/** Override applies to a form field. */
|
|
5590
5562
|
FIELD = "FIELD"
|
|
5591
5563
|
}
|
|
5592
5564
|
/** @enumType */
|
|
5593
|
-
type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals = OverrideEntityTypeEnumOverrideEntityType | '
|
|
5565
|
+
type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals = OverrideEntityTypeEnumOverrideEntityType | 'FIELD';
|
|
5594
5566
|
interface FieldOverride extends FieldOverridePropertyTypeOptionsOneOf {
|
|
5595
5567
|
/** Configuration for changing the required property of a field. */
|
|
5596
5568
|
requiredOptions?: RequiredOptions;
|
|
@@ -5662,7 +5634,6 @@ interface Condition {
|
|
|
5662
5634
|
value?: any;
|
|
5663
5635
|
}
|
|
5664
5636
|
declare enum Operator {
|
|
5665
|
-
UNKNOWN_OPERATOR = "UNKNOWN_OPERATOR",
|
|
5666
5637
|
/** Specified value equals the value in the target field. */
|
|
5667
5638
|
EQUAL = "EQUAL",
|
|
5668
5639
|
/** Specified value doesn't equal the value in the target field. */
|
|
@@ -5717,7 +5688,7 @@ declare enum Operator {
|
|
|
5717
5688
|
IS_DATE_NEWER_THAN_OR_EQUAL = "IS_DATE_NEWER_THAN_OR_EQUAL"
|
|
5718
5689
|
}
|
|
5719
5690
|
/** @enumType */
|
|
5720
|
-
type OperatorWithLiterals = Operator | '
|
|
5691
|
+
type OperatorWithLiterals = Operator | 'EQUAL' | 'NOT_EQUAL' | 'EMPTY' | 'NOT_EMPTY' | 'CONTAINS' | 'NOT_CONTAINS' | 'LESS_THAN' | 'LESS_THAN_OR_EQUALS' | 'GREATER_THAN' | 'GREATER_THAN_OR_EQUALS' | 'BEFORE' | 'BEFORE_OR_EQUAL' | 'AFTER' | 'AFTER_OR_EQUAL' | 'BETWEEN' | 'ANY' | 'ARRAY_EQUAL' | 'ARRAY_NOT_EQUAL' | 'CHECKED' | 'NOT_CHECKED' | 'IN' | 'NOT_IN' | 'IS_DATE_OLDER_THAN' | 'IS_DATE_OLDER_THAN_OR_EQUAL' | 'IS_DATE_NEWER_THAN' | 'IS_DATE_NEWER_THAN_OR_EQUAL';
|
|
5721
5692
|
interface RuleFormOverride extends RuleFormOverrideEntityTypeOptionsOneOf {
|
|
5722
5693
|
/** Field override settings. */
|
|
5723
5694
|
fieldOptions?: FieldOverride;
|
|
@@ -5807,8 +5778,6 @@ interface QuizSettingsResultsDisplayOptionsOneOf {
|
|
|
5807
5778
|
scoreAndPassingStatusOptions?: PassFailMessages;
|
|
5808
5779
|
}
|
|
5809
5780
|
declare enum ResultsDisplay {
|
|
5810
|
-
/** Unknown results display type. */
|
|
5811
|
-
UNKNOWN_DISPLAY = "UNKNOWN_DISPLAY",
|
|
5812
5781
|
/** Do not show quiz score and passing status. */
|
|
5813
5782
|
DO_NOT_DISPLAY = "DO_NOT_DISPLAY",
|
|
5814
5783
|
/** Display only the user's score. */
|
|
@@ -5819,7 +5788,7 @@ declare enum ResultsDisplay {
|
|
|
5819
5788
|
SCORE_AND_PASSING_STATUS = "SCORE_AND_PASSING_STATUS"
|
|
5820
5789
|
}
|
|
5821
5790
|
/** @enumType */
|
|
5822
|
-
type ResultsDisplayWithLiterals = ResultsDisplay | '
|
|
5791
|
+
type ResultsDisplayWithLiterals = ResultsDisplay | 'DO_NOT_DISPLAY' | 'SCORE' | 'PASSING_STATUS' | 'SCORE_AND_PASSING_STATUS';
|
|
5823
5792
|
interface PassFailMessages {
|
|
5824
5793
|
/** Message displayed when the user passes the quiz. */
|
|
5825
5794
|
passMessage?: RichContent;
|
|
@@ -5827,15 +5796,13 @@ interface PassFailMessages {
|
|
|
5827
5796
|
failMessage?: RichContent;
|
|
5828
5797
|
}
|
|
5829
5798
|
declare enum ContactAutofill {
|
|
5830
|
-
/** Unknown contact autofill source. */
|
|
5831
|
-
UNKNOWN_CONTACT_AUTOFILL = "UNKNOWN_CONTACT_AUTOFILL",
|
|
5832
5799
|
/** Use site member data to autofill contact fields. */
|
|
5833
5800
|
MEMBER_DATA = "MEMBER_DATA",
|
|
5834
5801
|
/** Use form input data to autofill contact fields. */
|
|
5835
5802
|
FORM_INPUT = "FORM_INPUT"
|
|
5836
5803
|
}
|
|
5837
5804
|
/** @enumType */
|
|
5838
|
-
type ContactAutofillWithLiterals = ContactAutofill | '
|
|
5805
|
+
type ContactAutofillWithLiterals = ContactAutofill | 'MEMBER_DATA' | 'FORM_INPUT';
|
|
5839
5806
|
interface CreateCheckoutFromSubmissionResponse {
|
|
5840
5807
|
/**
|
|
5841
5808
|
* Checkout ID (applicable for form involving payments).
|
|
@@ -5915,6 +5882,13 @@ declare enum IdentityType {
|
|
|
5915
5882
|
}
|
|
5916
5883
|
/** @enumType */
|
|
5917
5884
|
type IdentityTypeWithLiterals = IdentityType | 'UNKNOWN' | 'CONTACT' | 'MEMBER' | 'NOT_AUTHENTICATED_MEMBER';
|
|
5885
|
+
interface AppointmentDetails {
|
|
5886
|
+
/**
|
|
5887
|
+
* ID of the staff member assigned to the appointment.
|
|
5888
|
+
* @format GUID
|
|
5889
|
+
*/
|
|
5890
|
+
staffMemberId?: string | null;
|
|
5891
|
+
}
|
|
5918
5892
|
interface CreateSubmissionRequest {
|
|
5919
5893
|
/** Submission to create. */
|
|
5920
5894
|
submission: FormSubmission;
|
|
@@ -7325,6 +7299,12 @@ interface UpdateSubmission {
|
|
|
7325
7299
|
accessRestriction?: string | null;
|
|
7326
7300
|
/** Tag IDs collections associated with the current entity. */
|
|
7327
7301
|
tags?: PublicTags;
|
|
7302
|
+
/**
|
|
7303
|
+
* Appointment details.
|
|
7304
|
+
* This object is only applicable when submitting a form that creates a booking appointment.
|
|
7305
|
+
* @readonly
|
|
7306
|
+
*/
|
|
7307
|
+
appointmentDetails?: AppointmentDetails;
|
|
7328
7308
|
}
|
|
7329
7309
|
/**
|
|
7330
7310
|
* Confirms a submission.
|
|
@@ -7966,4 +7946,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7966
7946
|
fieldsToValidate?: string[];
|
|
7967
7947
|
}
|
|
7968
7948
|
|
|
7969
|
-
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, Type as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, WidthType as a7, PluginContainerDataAlignment as a8, ButtonDataType as a9, CardStylesAlignment as aA, Layout as aB, AppType as aC, InitialExpandedItems as aD, Direction as aE, VerticalAlignment as aF, NullValue as aG, Scaling as aH, LayoutDataImagePosition as aI, Origin as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, DesignTarget as aM, ImagePosition as aN, Alignment as aO, ImageFit as aP, NumberOfColumns as aQ, FirstDayOfWeek as aR, NumberComponentType as aS, BooleanComponentType as aT, ItemType as aU, PropertiesTypeEnum as aV, ArrayComponentType as aW, WixFileComponentType as aX, UploadFileFormat as aY, PaymentComponentType as aZ, ComponentType as a_, LinkTarget as aa, TextAlignment as ab, LineStyle as ac, Width as ad, DividerDataAlignment as ae, ViewMode as af, LayoutType as ag, Orientation as ah, Crop as ai, ThumbnailsAlignment as aj, GIFType as ak, Source as al, StylesPosition as am, MapType as an, ViewRole as ao, VoteRole as ap, PollLayoutType as aq, PollLayoutDirection as ar, BackgroundType as as, DecorationType as at, FontType as au, Position as av, AspectRatio as aw, Resizing as ax, Placement as ay, CardStylesType as az, type CreateSubmissionApplicationErrors as b, type FormFieldStringTypeFormatOptionsOneOf as b$, ObjectArrayComponentType as b0, SchedulingComponentType as b1, Format as b2, MeetingType as b3, StaffStrategySelection as b4, InputType as b5, EmailInfoTag as b6, PhoneInfoTag as b7, Tag as b8, ConfirmationLevel as b9, type Submitter as bA, type SubmitterSubmitterOneOf as bB, type ExtendedFields as bC, type OrderDetails as bD, type PublicTags as bE, type TagList as bF, type FormSubmissionStatusUpdatedEvent as bG, type RemovedSubmissionFromTrash as bH, type SubmissionContactMapped as bI, type MarketingSubscriptionDetails as bJ, type SubmissionContactMappingSkipped as bK, type DomainEvent as bL, type DomainEventBodyOneOf as bM, type EntityCreatedEvent as bN, type RestoreInfo as bO, type EntityUpdatedEvent as bP, type EntityDeletedEvent as bQ, type ActionEvent as bR, type MessageEnvelope as bS, type IdentificationData as bT, type IdentificationDataIdOneOf as bU, type AccountInfo as bV, type CreateCheckoutFromSubmissionRequest as bW, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bX, type Form as bY, type FormField as bZ, type FormFieldStringType as b_, SubscriptionChannel as ba, ContactField as bb, DisplayFieldType as bc, OverrideEntityType as bd, Kind as be, FormFieldContactInfoEmailInfoTag as bf, FormFieldContactInfoPhoneInfoTag as bg, AddressInfoTag as bh, SubscriptionInfoOptInLevel as bi, FormFieldContactInfoContactField as bj, SpamFilterProtectionLevel as bk, RequiredIndicator as bl, RequiredIndicatorPlacement as bm, Target as bn, SubmitSuccessAction as bo, ChangeableProperty as bp, OverrideEntityTypeEnumOverrideEntityType as bq, Operator as br, ResultsDisplay as bs, ContactAutofill as bt, IdentityType as bu, ErrorType as bv, SortOrder as bw, Mode as bx, Status as by, SubmissionErrorType as bz, type CreateSubmissionValidationErrors as c, type LinkDataOneOf as c$, type StringErrorMessages as c0, type StringTypeDateTimeConstraints as c1, type DateTimeAdvancedConstraints as c2, type Availability as c3, type DateRange as c4, type StringTypePhoneConstraints as c5, type StringTypeValidationMessages as c6, type FormFieldNumberType as c7, type NumberErrorMessages as c8, type IntegerType as c9, type NestedFormOverrides as cA, type Field as cB, type FieldFieldTypeOptionsOneOf as cC, type InputField as cD, type InputFieldInputTypeOptionsOneOf as cE, type StringCorrectAnswersList as cF, type StringType as cG, type StringTypeFormatOptionsOneOf as cH, type DateTimeConstraints as cI, type PhoneConstraints as cJ, type ValidationMessages as cK, type StringQuizFieldSettings as cL, type TextInput as cM, type RichContent as cN, type Node as cO, type NodeDataOneOf as cP, type NodeStyle as cQ, type ButtonData as cR, type Border as cS, type Colors as cT, type PluginContainerData as cU, type PluginContainerDataWidth as cV, type PluginContainerDataWidthDataOneOf as cW, type Spoiler as cX, type Height as cY, type Styles as cZ, type Link as c_, type FormFieldBooleanType as ca, type BooleanErrorMessages as cb, type FormFieldArrayType as cc, type FormFieldObjectType as cd, type ObjectTypePropertiesType as ce, type ObjectTypePropertiesTypePropertiesTypeOneOf as cf, type ObjectErrorMessages as cg, type ArrayTypeArrayItems as ch, type ArrayTypeArrayItemsItemsOneOf as ci, type ArrayErrorMessages as cj, type PredefinedValidation as ck, type PredefinedValidationFormatOptionsOneOf as cl, type PaymentType as cm, type QuantityLimit as cn, type FixedPriceOptions as co, type DynamicPriceOptions as cp, type Product as cq, type ProductPriceOptionsOneOf as cr, type MultilineAddressValidation as cs, type FieldOverrides as ct, type FieldsOverrides as cu, type ObjectArrayType as cv, type NestedFormFieldOverrides as cw, type Validation as cx, type ValidationValidationOneOf as cy, type DataExtensionsDetails as cz, type UpdateSubmission as d, type CardStyles as d$, type Rel as d0, type CodeBlockData as d1, type TextStyle as d2, type DividerData as d3, type FileData as d4, type FileSource as d5, type FileSourceDataOneOf as d6, type PDFSettings as d7, type GalleryData as d8, type Media as d9, type PollLayout as dA, type OptionLayout as dB, type Gradient as dC, type Background as dD, type BackgroundBackgroundOneOf as dE, type PollDesign as dF, type OptionDesign as dG, type Poll as dH, type PollDataLayout as dI, type Design as dJ, type TextData as dK, type Decoration as dL, type DecorationDataOneOf as dM, type AnchorData as dN, type ColorData as dO, type LinkData as dP, type MentionData as dQ, type FontSizeData as dR, type SpoilerData as dS, type FontFamilyData as dT, type AppEmbedData as dU, type AppEmbedDataAppDataOneOf as dV, type BookingData as dW, type EventData as dX, type ButtonStyles as dY, type ImageStyles as dZ, type RibbonStyles as d_, type Image as da, type Video as db, type Item as dc, type ItemDataOneOf as dd, type GalleryOptions as de, type GalleryOptionsLayout as df, type ItemStyle as dg, type Thumbnails as dh, type GIFData as di, type GIF as dj, type HeadingData as dk, type HTMLData as dl, type HTMLDataDataOneOf as dm, type ImageData as dn, type StylesBorder as dp, type ImageDataStyles as dq, type LinkPreviewData as dr, type LinkPreviewDataStyles as ds, type MapData as dt, type MapSettings as du, type ParagraphData as dv, type PollData as dw, type Permissions as dx, type PollOption as dy, type Settings as dz, type UpdateSubmissionValidationErrors as e, type FileType as e$, type PricingData as e0, type VideoData as e1, type PlaybackOptions as e2, type EmbedData as e3, type Oembed as e4, type CollapsibleListData as e5, type TableData as e6, type Dimensions as e7, type TableCellData as e8, type CellStyle as e9, type PhoneInput as eA, type DateInput as eB, type TimeInput as eC, type DatePicker as eD, type ServicesDropdown as eE, type ServiceOption as eF, type Password as eG, type NumberCorrectAnswersList as eH, type NumberType as eI, type NumberQuizFieldSettings as eJ, type NumberInput as eK, type RatingInput as eL, type BooleanType as eM, type Checkbox as eN, type CorrectAnswersList as eO, type ArrayType as eP, type ObjectType as eQ, type PropertiesType as eR, type PropertiesTypePropertiesTypeOptionsOneOf as eS, type ArrayItems as eT, type ArrayItemsItemTypeOptionsOneOf as eU, type QuizFieldSettings as eV, type CheckboxGroup as eW, type Option as eX, type ComponentsTags as eY, type TagsOption as eZ, type ServicesCheckboxGroup as e_, type BorderColors as ea, type BorderWidths as eb, type ListValue as ec, type AudioData as ed, type OrderedListData as ee, type BulletedListData as ef, type BlockquoteData as eg, type CaptionData as eh, type LayoutData as ei, type BackgroundImage as ej, type Banner as ek, type LayoutCellData as el, type ShapeData as em, type ShapeDataStyles as en, type Metadata as eo, type DocumentStyle as ep, type TextNodeStyle as eq, type MediaItem as er, type MediaItemMediaOneOf as es, type MediaSettings as et, type RadioGroup as eu, type RadioGroupOption as ev, type CustomOption as ew, type Dropdown as ex, type DropdownOption as ey, type DateTimeInput as ez, type ConfirmSubmissionResponse as f, type UpsertContact as f$, type FileUpload as f0, type Signature as f1, type ProductCheckboxGroup as f2, type ProductCheckboxGroupOption as f3, type DonationInput as f4, type DonationInputOption as f5, type PaymentInput as f6, type FixedPayment as f7, type MultilineAddress as f8, type AddressLine2 as f9, type _StringComponentTypeOptionsOneOf as fA, type _Number as fB, type _NumberComponentTypeOptionsOneOf as fC, type _Boolean as fD, type _BooleanComponentTypeOptionsOneOf as fE, type _Array as fF, type _ArrayComponentTypeOptionsOneOf as fG, type _Object as fH, type WixFile as fI, type WixFileComponentTypeOptionsOneOf as fJ, type Payment as fK, type PaymentComponentTypeOptionsOneOf as fL, type Scheduling as fM, type SchedulingComponentTypeOptionsOneOf as fN, type Address as fO, type AddressComponentTypeOptionsOneOf as fP, type ObjectArray as fQ, type ObjectArrayComponentTypeOptionsOneOf as fR, type DisplayField as fS, type DisplayFieldDisplayFieldTypeOptionsOneOf as fT, type RichContentOptions as fU, type PageNavigationOptions as fV, type Step as fW, type FormRule as fX, type FormOverride as fY, type FormProperties as fZ, type PostSubmissionTriggers as f_, type DefaultCountryConfig as fa, type DefaultCountryConfigOptionsOneOf as fb, type FieldsSettings as fc, type Repeater as fd, type FormLayout as fe, type BreakPoint as ff, type ItemLayout as fg, type ItemLayoutItemOneOf as fh, type Group as fi, type Margin as fj, type Section as fk, type Appointment as fl, type AppointmentFormatInfoOneOf as fm, type Location as fn, type LocationLocationInfoOneOf as fo, type InPersonOptions as fp, type VideoConferenceOptions as fq, type PhoneOptions as fr, type FormFieldContactInfo as fs, type FormFieldContactInfoAdditionalInfoOneOf as ft, type EmailInfo as fu, type PhoneInfo as fv, type AddressInfo as fw, type CustomFieldInfo as fx, type SubscriptionInfo as fy, type _String as fz, type BulkDeleteSubmissionResponse as g, type BulkDeleteSubmissionRequest as g$, type V4FormFieldContactInfo as g0, type V4FormFieldContactInfoAdditionalInfoOneOf as g1, type FormFieldContactInfoEmailInfo as g2, type FormFieldContactInfoPhoneInfo as g3, type FormFieldContactInfoAddressInfo as g4, type FormFieldContactInfoCustomFieldInfo as g5, type FormFieldContactInfoSubscriptionInfo as g6, type NestedForm as g7, type LimitationRule as g8, type RequiredIndicatorProperties as g9, type IsFormSubmittableRequest as gA, type IsFormSubmittableResponse as gB, type Empty as gC, type UpsertContactFromSubmissionRequest as gD, type SubmitContactResponse as gE, type CreateSubmissionRequest as gF, type CreateSubmissionResponse as gG, type SubmissionValidationErrorsDetails as gH, type ValidationError as gI, type CreateSubmissionBySubmitterRequest as gJ, type CreateSubmissionBySubmitterResponse as gK, type BulkCreateSubmissionBySubmitterRequest as gL, type BulkCreateSubmissionBySubmitterData as gM, type BulkCreateSubmissionBySubmitterResponse as gN, type BulkSubmissionResult as gO, type ItemMetadata as gP, type ApplicationError as gQ, type BulkActionMetadata as gR, type GetSubmissionRequest as gS, type GetSubmissionResponse as gT, type GetSubmissionByCheckoutIdRequest as gU, type GetSubmissionByCheckoutIdResponse as gV, type UpdateSubmissionRequest as gW, type UpdateSubmissionResponse as gX, type ConfirmSubmissionRequest as gY, type DeleteSubmissionRequest as gZ, type DeleteSubmissionResponse as g_, type SubmitSettings as ga, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gb, type ThankYouMessageOptions as gc, type RedirectOptions as gd, type FieldGroup as ge, type Rule as gf, type RequiredOptions as gg, type HiddenOptions as gh, type AllowedValuesOptions as gi, type FieldOverride as gj, type FieldOverridePropertyTypeOptionsOneOf as gk, type ConditionNode as gl, type ConditionNodeNodeOneOf as gm, type AndCondition as gn, type OrCondition as go, type Condition as gp, type RuleFormOverride as gq, type RuleFormOverrideEntityTypeOptionsOneOf as gr, type Tags as gs, type TagsTagList as gt, type QuizSettings as gu, type QuizSettingsPassingCriteriaOneOf as gv, type QuizSettingsResultsDisplayOptionsOneOf as gw, type PassFailMessages as gx, type CreateCheckoutFromSubmissionResponse as gy, type Checkout as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type SubmissionStatusWithLiterals as h$, type BulkDeleteSubmissionResult as h0, type RestoreSubmissionFromTrashBinRequest as h1, type RemoveSubmissionFromTrashBinRequest as h2, type RemoveSubmissionFromTrashBinResponse as h3, type BulkRemoveSubmissionFromTrashBinRequest as h4, type BulkRemoveSubmissionFromTrashBinResult as h5, type ListDeletedSubmissionsRequest as h6, type CursorPaging as h7, type CursorPagingMetadata as h8, type Cursors as h9, type HeadersEntry as hA, type GetFormattedSubmissionRequest as hB, type FormattedSubmission as hC, type ListFormattedSubmissionsRequest as hD, type ListFormattedSubmissionsResponse as hE, type FormattedFormSubmission as hF, type UpdateExtendedFieldsRequest as hG, type BulkUpdateFormSubmissionTagsRequest as hH, type BulkUpdateFormSubmissionTagsResponse as hI, type BulkUpdateFormSubmissionTagsResult as hJ, type BulkUpdateFormSubmissionTagsByFilterRequest as hK, type BulkUpdateFormSubmissionTagsByFilterResponse as hL, type ValidateFormSubmissionRequest as hM, type FieldViolation as hN, type FieldViolationErrorDataOneOf as hO, type SubmissionValidationErrors as hP, type SubmissionValidationError as hQ, type SubmissionValidationErrorErrorMessageOneOf as hR, type BaseEventMetadata as hS, type EventMetadata as hT, type AccountInfoMetadata as hU, type FormSubmissionSearchSpec as hV, type SubmissionsQueryResult as hW, type FormSubmissionQuerySpec as hX, type BulkUpdateFormSubmissionTagsOptions as hY, type BulkUpdateFormSubmissionTagsByFilterOptions as hZ, utils as h_, type GetDeletedSubmissionRequest as ha, type QuerySubmissionRequest as hb, type CursorQueryPagingMethodOneOf as hc, type Sorting as hd, type SearchSubmissionsByNamespaceRequest as he, type CursorSearch as hf, type CursorSearchPagingMethodOneOf as hg, type SearchDetails as hh, type SearchSubmissionsByNamespaceForExportRequest as hi, type SearchSubmissionsByNamespaceForExportResponse as hj, type QuerySubmissionsByNamespaceRequest as hk, type QuerySubmissionsByNamespaceResponse as hl, type QuerySubmissionsByNamespaceForExportRequest as hm, type QuerySubmissionsByNamespaceForExportResponse as hn, type CountSubmissionsByFilterRequest as ho, type FormSubmissionsCount as hp, type CountSubmissionsRequest as hq, type CountDeletedSubmissionsRequest as hr, type FormDeletedSubmissionsCount as hs, type GetMediaUploadURLRequest as ht, type BulkMarkSubmissionsAsSeenRequest as hu, type GetSubmissionDownloadUrlRequest as hv, type SubmissionDocument as hw, type SubmissionDocumentDocumentOneOf as hx, type DocumentReady as hy, type DownloadSubmissionRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PropertiesTypeEnumWithLiterals as i$, type OptInLevelWithLiterals as i0, type WebhookIdentityTypeWithLiterals as i1, type StringTypeFormatEnumFormatWithLiterals as i2, type DayOfWeekWithLiterals as i3, type ValidationFormatWithLiterals as i4, type ProductTypeWithLiterals as i5, type PriceTypeWithLiterals as i6, type FieldTypeWithLiterals as i7, type FormatEnumFormatWithLiterals as i8, type StringComponentTypeWithLiterals 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 ScalingWithLiterals as iN, type LayoutDataImagePositionWithLiterals as iO, type OriginWithLiterals as iP, type VerticalAlignmentAlignmentWithLiterals as iQ, type ResponsivenessBehaviourWithLiterals as iR, type DesignTargetWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type NumberComponentTypeWithLiterals as iY, type BooleanComponentTypeWithLiterals as iZ, type ItemTypeWithLiterals 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, querySubmission as j$, type ArrayComponentTypeWithLiterals as j0, type WixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type PaymentComponentTypeWithLiterals as j3, type ComponentTypeWithLiterals as j4, type TypeWithLiterals as j5, type ObjectArrayComponentTypeWithLiterals as j6, type SchedulingComponentTypeWithLiterals as j7, type FormatWithLiterals as j8, type MeetingTypeWithLiterals as j9, type IdentityTypeWithLiterals as jA, type ErrorTypeWithLiterals as jB, type SortOrderWithLiterals as jC, type ModeWithLiterals as jD, type StatusWithLiterals as jE, type SubmissionErrorTypeWithLiterals as jF, type CommonSearchWithEntityContext as jG, type CommonQueryWithEntityContext as jH, onSubmissionCreated as jI, onSubmissionDeleted as jJ, onSubmissionRemovedSubmissionFromTrash as jK, onSubmissionStatusUpdated as jL, onSubmissionContactMapped as jM, onSubmissionContactMappingSkipped as jN, onSubmissionUpdated as jO, upsertContactFromSubmission as jP, createSubmission as jQ, getSubmission as jR, updateSubmission as jS, confirmSubmission as jT, deleteSubmission as jU, bulkDeleteSubmission as jV, restoreSubmissionFromTrashBin as jW, removeSubmissionFromTrashBin as jX, bulkRemoveSubmissionFromTrashBin as jY, listDeletedSubmissions as jZ, getDeletedSubmission as j_, type StaffStrategySelectionWithLiterals as ja, type InputTypeWithLiterals as jb, type EmailInfoTagWithLiterals as jc, type PhoneInfoTagWithLiterals as jd, type TagWithLiterals as je, type ConfirmationLevelWithLiterals as jf, type SubscriptionChannelWithLiterals as jg, type ContactFieldWithLiterals as jh, type DisplayFieldTypeWithLiterals as ji, type OverrideEntityTypeWithLiterals as jj, type KindWithLiterals as jk, type FormFieldContactInfoEmailInfoTagWithLiterals as jl, type FormFieldContactInfoPhoneInfoTagWithLiterals as jm, type AddressInfoTagWithLiterals as jn, type SubscriptionInfoOptInLevelWithLiterals as jo, type FormFieldContactInfoContactFieldWithLiterals as jp, type SpamFilterProtectionLevelWithLiterals as jq, type RequiredIndicatorWithLiterals as jr, type RequiredIndicatorPlacementWithLiterals as js, type TargetWithLiterals as jt, type SubmitSuccessActionWithLiterals as ju, type ChangeablePropertyWithLiterals as jv, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jw, type OperatorWithLiterals as jx, type ResultsDisplayWithLiterals as jy, type ContactAutofillWithLiterals as jz, type CursorQuery as k, querySubmissionsByNamespace as k0, countSubmissionsByFilter as k1, countSubmissions as k2, countDeletedSubmissions as k3, getMediaUploadUrl as k4, bulkMarkSubmissionsAsSeen as k5, getSubmissionDownloadUrl as k6, downloadSubmission as k7, getFormattedSubmission as k8, updateExtendedFields as k9, validateFormSubmission as ka, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
7949
|
+
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, Type as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, WidthType as a7, PluginContainerDataAlignment as a8, ButtonDataType as a9, CardStylesAlignment as aA, Layout as aB, AppType as aC, InitialExpandedItems as aD, Direction as aE, VerticalAlignment as aF, NullValue as aG, Scaling as aH, LayoutDataImagePosition as aI, Origin as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, DesignTarget as aM, ImagePosition as aN, Alignment as aO, ImageFit as aP, NumberOfColumns as aQ, FirstDayOfWeek as aR, NumberComponentType as aS, BooleanComponentType as aT, ItemType as aU, PropertiesTypeEnum as aV, ArrayComponentType as aW, WixFileComponentType as aX, UploadFileFormat as aY, PaymentComponentType as aZ, ComponentType as a_, LinkTarget as aa, TextAlignment as ab, LineStyle as ac, Width as ad, DividerDataAlignment as ae, ViewMode as af, LayoutType as ag, Orientation as ah, Crop as ai, ThumbnailsAlignment as aj, GIFType as ak, Source as al, StylesPosition as am, MapType as an, ViewRole as ao, VoteRole as ap, PollLayoutType as aq, PollLayoutDirection as ar, BackgroundType as as, DecorationType as at, FontType as au, Position as av, AspectRatio as aw, Resizing as ax, Placement as ay, CardStylesType as az, type CreateSubmissionApplicationErrors as b, type FormFieldStringTypeFormatOptionsOneOf as b$, ObjectArrayComponentType as b0, SchedulingComponentType as b1, Format as b2, MeetingType as b3, StaffStrategySelection as b4, InputType as b5, EmailInfoTag as b6, PhoneInfoTag as b7, Tag as b8, ConfirmationLevel as b9, type Submitter as bA, type SubmitterSubmitterOneOf as bB, type ExtendedFields as bC, type OrderDetails as bD, type PublicTags as bE, type TagList as bF, type FormSubmissionStatusUpdatedEvent as bG, type RemovedSubmissionFromTrash as bH, type SubmissionContactMapped as bI, type MarketingSubscriptionDetails as bJ, type SubmissionContactMappingSkipped as bK, type DomainEvent as bL, type DomainEventBodyOneOf as bM, type EntityCreatedEvent as bN, type RestoreInfo as bO, type EntityUpdatedEvent as bP, type EntityDeletedEvent as bQ, type ActionEvent as bR, type MessageEnvelope as bS, type IdentificationData as bT, type IdentificationDataIdOneOf as bU, type AccountInfo as bV, type CreateCheckoutFromSubmissionRequest as bW, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bX, type Form as bY, type FormField as bZ, type FormFieldStringType as b_, SubscriptionChannel as ba, ContactField as bb, DisplayFieldType as bc, OverrideEntityType as bd, Kind as be, FormFieldContactInfoEmailInfoTag as bf, FormFieldContactInfoPhoneInfoTag as bg, AddressInfoTag as bh, SubscriptionInfoOptInLevel as bi, FormFieldContactInfoContactField as bj, SpamFilterProtectionLevel as bk, RequiredIndicator as bl, RequiredIndicatorPlacement as bm, Target as bn, SubmitSuccessAction as bo, ChangeableProperty as bp, OverrideEntityTypeEnumOverrideEntityType as bq, Operator as br, ResultsDisplay as bs, ContactAutofill as bt, IdentityType as bu, ErrorType as bv, SortOrder as bw, Mode as bx, Status as by, SubmissionErrorType as bz, type CreateSubmissionValidationErrors as c, type LinkDataOneOf as c$, type StringErrorMessages as c0, type StringTypeDateTimeConstraints as c1, type DateTimeAdvancedConstraints as c2, type Availability as c3, type DateRange as c4, type StringTypePhoneConstraints as c5, type StringTypeValidationMessages as c6, type FormFieldNumberType as c7, type NumberErrorMessages as c8, type IntegerType as c9, type NestedFormOverrides as cA, type Field as cB, type FieldFieldTypeOptionsOneOf as cC, type InputField as cD, type InputFieldInputTypeOptionsOneOf as cE, type StringCorrectAnswersList as cF, type StringType as cG, type StringTypeFormatOptionsOneOf as cH, type DateTimeConstraints as cI, type PhoneConstraints as cJ, type ValidationMessages as cK, type StringQuizFieldSettings as cL, type TextInput as cM, type RichContent as cN, type Node as cO, type NodeDataOneOf as cP, type NodeStyle as cQ, type ButtonData as cR, type Border as cS, type Colors as cT, type PluginContainerData as cU, type PluginContainerDataWidth as cV, type PluginContainerDataWidthDataOneOf as cW, type Spoiler as cX, type Height as cY, type Styles as cZ, type Link as c_, type FormFieldBooleanType as ca, type BooleanErrorMessages as cb, type FormFieldArrayType as cc, type FormFieldObjectType as cd, type ObjectTypePropertiesType as ce, type ObjectTypePropertiesTypePropertiesTypeOneOf as cf, type ObjectErrorMessages as cg, type ArrayTypeArrayItems as ch, type ArrayTypeArrayItemsItemsOneOf as ci, type ArrayErrorMessages as cj, type PredefinedValidation as ck, type PredefinedValidationFormatOptionsOneOf as cl, type PaymentType as cm, type QuantityLimit as cn, type FixedPriceOptions as co, type DynamicPriceOptions as cp, type Product as cq, type ProductPriceOptionsOneOf as cr, type MultilineAddressValidation as cs, type FieldOverrides as ct, type FieldsOverrides as cu, type ObjectArrayType as cv, type NestedFormFieldOverrides as cw, type Validation as cx, type ValidationValidationOneOf as cy, type DataExtensionsDetails as cz, type UpdateSubmission as d, type CardStyles as d$, type Rel as d0, type CodeBlockData as d1, type TextStyle as d2, type DividerData as d3, type FileData as d4, type FileSource as d5, type FileSourceDataOneOf as d6, type PDFSettings as d7, type GalleryData as d8, type Media as d9, type PollLayout as dA, type OptionLayout as dB, type Gradient as dC, type Background as dD, type BackgroundBackgroundOneOf as dE, type PollDesign as dF, type OptionDesign as dG, type Poll as dH, type PollDataLayout as dI, type Design as dJ, type TextData as dK, type Decoration as dL, type DecorationDataOneOf as dM, type AnchorData as dN, type ColorData as dO, type LinkData as dP, type MentionData as dQ, type FontSizeData as dR, type SpoilerData as dS, type FontFamilyData as dT, type AppEmbedData as dU, type AppEmbedDataAppDataOneOf as dV, type BookingData as dW, type EventData as dX, type ButtonStyles as dY, type ImageStyles as dZ, type RibbonStyles as d_, type Image as da, type Video as db, type Item as dc, type ItemDataOneOf as dd, type GalleryOptions as de, type GalleryOptionsLayout as df, type ItemStyle as dg, type Thumbnails as dh, type GIFData as di, type GIF as dj, type HeadingData as dk, type HTMLData as dl, type HTMLDataDataOneOf as dm, type ImageData as dn, type StylesBorder as dp, type ImageDataStyles as dq, type LinkPreviewData as dr, type LinkPreviewDataStyles as ds, type MapData as dt, type MapSettings as du, type ParagraphData as dv, type PollData as dw, type Permissions as dx, type PollOption as dy, type Settings as dz, type UpdateSubmissionValidationErrors as e, type FileType as e$, type PricingData as e0, type VideoData as e1, type PlaybackOptions as e2, type EmbedData as e3, type Oembed as e4, type CollapsibleListData as e5, type TableData as e6, type Dimensions as e7, type TableCellData as e8, type CellStyle as e9, type PhoneInput as eA, type DateInput as eB, type TimeInput as eC, type DatePicker as eD, type ServicesDropdown as eE, type ServiceOption as eF, type Password as eG, type NumberCorrectAnswersList as eH, type NumberType as eI, type NumberQuizFieldSettings as eJ, type NumberInput as eK, type RatingInput as eL, type BooleanType as eM, type Checkbox as eN, type CorrectAnswersList as eO, type ArrayType as eP, type ObjectType as eQ, type PropertiesType as eR, type PropertiesTypePropertiesTypeOptionsOneOf as eS, type ArrayItems as eT, type ArrayItemsItemTypeOptionsOneOf as eU, type QuizFieldSettings as eV, type CheckboxGroup as eW, type Option as eX, type ComponentsTags as eY, type TagsOption as eZ, type ServicesCheckboxGroup as e_, type BorderColors as ea, type BorderWidths as eb, type ListValue as ec, type AudioData as ed, type OrderedListData as ee, type BulletedListData as ef, type BlockquoteData as eg, type CaptionData as eh, type LayoutData as ei, type BackgroundImage as ej, type Banner as ek, type LayoutCellData as el, type ShapeData as em, type ShapeDataStyles as en, type Metadata as eo, type DocumentStyle as ep, type TextNodeStyle as eq, type MediaItem as er, type MediaItemMediaOneOf as es, type MediaSettings as et, type RadioGroup as eu, type RadioGroupOption as ev, type CustomOption as ew, type Dropdown as ex, type DropdownOption as ey, type DateTimeInput as ez, type ConfirmSubmissionResponse as f, type UpsertContact as f$, type FileUpload as f0, type Signature as f1, type ProductCheckboxGroup as f2, type ProductCheckboxGroupOption as f3, type DonationInput as f4, type DonationInputOption as f5, type PaymentInput as f6, type FixedPayment as f7, type MultilineAddress as f8, type AddressLine2 as f9, type _StringComponentTypeOptionsOneOf as fA, type _Number as fB, type _NumberComponentTypeOptionsOneOf as fC, type _Boolean as fD, type _BooleanComponentTypeOptionsOneOf as fE, type _Array as fF, type _ArrayComponentTypeOptionsOneOf as fG, type _Object as fH, type WixFile as fI, type WixFileComponentTypeOptionsOneOf as fJ, type Payment as fK, type PaymentComponentTypeOptionsOneOf as fL, type Scheduling as fM, type SchedulingComponentTypeOptionsOneOf as fN, type Address as fO, type AddressComponentTypeOptionsOneOf as fP, type ObjectArray as fQ, type ObjectArrayComponentTypeOptionsOneOf as fR, type DisplayField as fS, type DisplayFieldDisplayFieldTypeOptionsOneOf as fT, type RichContentOptions as fU, type PageNavigationOptions as fV, type Step as fW, type FormRule as fX, type FormOverride as fY, type FormProperties as fZ, type PostSubmissionTriggers as f_, type DefaultCountryConfig as fa, type DefaultCountryConfigOptionsOneOf as fb, type FieldsSettings as fc, type Repeater as fd, type FormLayout as fe, type BreakPoint as ff, type ItemLayout as fg, type ItemLayoutItemOneOf as fh, type Group as fi, type Margin as fj, type Section as fk, type Appointment as fl, type AppointmentFormatInfoOneOf as fm, type Location as fn, type LocationLocationInfoOneOf as fo, type InPersonOptions as fp, type VideoConferenceOptions as fq, type PhoneOptions as fr, type FormFieldContactInfo as fs, type FormFieldContactInfoAdditionalInfoOneOf as ft, type EmailInfo as fu, type PhoneInfo as fv, type AddressInfo as fw, type CustomFieldInfo as fx, type SubscriptionInfo as fy, type _String as fz, type BulkDeleteSubmissionResponse as g, type DeleteSubmissionResponse as g$, type V4FormFieldContactInfo as g0, type V4FormFieldContactInfoAdditionalInfoOneOf as g1, type FormFieldContactInfoEmailInfo as g2, type FormFieldContactInfoPhoneInfo as g3, type FormFieldContactInfoAddressInfo as g4, type FormFieldContactInfoCustomFieldInfo as g5, type FormFieldContactInfoSubscriptionInfo as g6, type NestedForm as g7, type LimitationRule as g8, type RequiredIndicatorProperties as g9, type IsFormSubmittableRequest as gA, type IsFormSubmittableResponse as gB, type Empty as gC, type UpsertContactFromSubmissionRequest as gD, type SubmitContactResponse as gE, type AppointmentDetails as gF, type CreateSubmissionRequest as gG, type CreateSubmissionResponse as gH, type SubmissionValidationErrorsDetails as gI, type ValidationError as gJ, type CreateSubmissionBySubmitterRequest as gK, type CreateSubmissionBySubmitterResponse as gL, type BulkCreateSubmissionBySubmitterRequest as gM, type BulkCreateSubmissionBySubmitterData as gN, type BulkCreateSubmissionBySubmitterResponse as gO, type BulkSubmissionResult as gP, type ItemMetadata as gQ, type ApplicationError as gR, type BulkActionMetadata as gS, type GetSubmissionRequest as gT, type GetSubmissionResponse as gU, type GetSubmissionByCheckoutIdRequest as gV, type GetSubmissionByCheckoutIdResponse as gW, type UpdateSubmissionRequest as gX, type UpdateSubmissionResponse as gY, type ConfirmSubmissionRequest as gZ, type DeleteSubmissionRequest as g_, type SubmitSettings as ga, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gb, type ThankYouMessageOptions as gc, type RedirectOptions as gd, type FieldGroup as ge, type Rule as gf, type RequiredOptions as gg, type HiddenOptions as gh, type AllowedValuesOptions as gi, type FieldOverride as gj, type FieldOverridePropertyTypeOptionsOneOf as gk, type ConditionNode as gl, type ConditionNodeNodeOneOf as gm, type AndCondition as gn, type OrCondition as go, type Condition as gp, type RuleFormOverride as gq, type RuleFormOverrideEntityTypeOptionsOneOf as gr, type Tags as gs, type TagsTagList as gt, type QuizSettings as gu, type QuizSettingsPassingCriteriaOneOf as gv, type QuizSettingsResultsDisplayOptionsOneOf as gw, type PassFailMessages as gx, type CreateCheckoutFromSubmissionResponse as gy, type Checkout as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, utils as h$, type BulkDeleteSubmissionRequest as h0, type BulkDeleteSubmissionResult as h1, type RestoreSubmissionFromTrashBinRequest as h2, type RemoveSubmissionFromTrashBinRequest as h3, type RemoveSubmissionFromTrashBinResponse as h4, type BulkRemoveSubmissionFromTrashBinRequest as h5, type BulkRemoveSubmissionFromTrashBinResult as h6, type ListDeletedSubmissionsRequest as h7, type CursorPaging as h8, type CursorPagingMetadata as h9, type DownloadSubmissionRequest as hA, type HeadersEntry as hB, type GetFormattedSubmissionRequest as hC, type FormattedSubmission as hD, type ListFormattedSubmissionsRequest as hE, type ListFormattedSubmissionsResponse as hF, type FormattedFormSubmission as hG, type UpdateExtendedFieldsRequest as hH, type BulkUpdateFormSubmissionTagsRequest as hI, type BulkUpdateFormSubmissionTagsResponse as hJ, type BulkUpdateFormSubmissionTagsResult as hK, type BulkUpdateFormSubmissionTagsByFilterRequest as hL, type BulkUpdateFormSubmissionTagsByFilterResponse as hM, type ValidateFormSubmissionRequest as hN, type FieldViolation as hO, type FieldViolationErrorDataOneOf as hP, type SubmissionValidationErrors as hQ, type SubmissionValidationError as hR, type SubmissionValidationErrorErrorMessageOneOf as hS, type BaseEventMetadata as hT, type EventMetadata as hU, type AccountInfoMetadata as hV, type FormSubmissionSearchSpec as hW, type SubmissionsQueryResult as hX, type FormSubmissionQuerySpec as hY, type BulkUpdateFormSubmissionTagsOptions as hZ, type BulkUpdateFormSubmissionTagsByFilterOptions as h_, type Cursors as ha, type GetDeletedSubmissionRequest as hb, type QuerySubmissionRequest as hc, type CursorQueryPagingMethodOneOf as hd, type Sorting as he, type SearchSubmissionsByNamespaceRequest as hf, type CursorSearch as hg, type CursorSearchPagingMethodOneOf as hh, type SearchDetails as hi, type SearchSubmissionsByNamespaceForExportRequest as hj, type SearchSubmissionsByNamespaceForExportResponse as hk, type QuerySubmissionsByNamespaceRequest as hl, type QuerySubmissionsByNamespaceResponse as hm, type QuerySubmissionsByNamespaceForExportRequest as hn, type QuerySubmissionsByNamespaceForExportResponse as ho, type CountSubmissionsByFilterRequest as hp, type FormSubmissionsCount as hq, type CountSubmissionsRequest as hr, type CountDeletedSubmissionsRequest as hs, type FormDeletedSubmissionsCount as ht, type GetMediaUploadURLRequest as hu, type BulkMarkSubmissionsAsSeenRequest as hv, type GetSubmissionDownloadUrlRequest as hw, type SubmissionDocument as hx, type SubmissionDocumentDocumentOneOf as hy, type DocumentReady as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type ItemTypeWithLiterals as i$, type SubmissionStatusWithLiterals as i0, type OptInLevelWithLiterals as i1, type WebhookIdentityTypeWithLiterals as i2, type StringTypeFormatEnumFormatWithLiterals as i3, type DayOfWeekWithLiterals as i4, type ValidationFormatWithLiterals as i5, type ProductTypeWithLiterals as i6, type PriceTypeWithLiterals as i7, type FieldTypeWithLiterals as i8, type FormatEnumFormatWithLiterals as i9, type DecorationTypeWithLiterals as iA, type FontTypeWithLiterals as iB, type PositionWithLiterals as iC, type AspectRatioWithLiterals as iD, type ResizingWithLiterals as iE, type PlacementWithLiterals as iF, type CardStylesTypeWithLiterals as iG, type CardStylesAlignmentWithLiterals as iH, type LayoutWithLiterals as iI, type AppTypeWithLiterals as iJ, type InitialExpandedItemsWithLiterals as iK, type DirectionWithLiterals as iL, type VerticalAlignmentWithLiterals as iM, type NullValueWithLiterals as iN, type ScalingWithLiterals as iO, type LayoutDataImagePositionWithLiterals as iP, type OriginWithLiterals as iQ, type VerticalAlignmentAlignmentWithLiterals as iR, type ResponsivenessBehaviourWithLiterals as iS, type DesignTargetWithLiterals as iT, type ImagePositionWithLiterals as iU, type AlignmentWithLiterals as iV, type ImageFitWithLiterals as iW, type NumberOfColumnsWithLiterals as iX, type FirstDayOfWeekWithLiterals as iY, type NumberComponentTypeWithLiterals as iZ, type BooleanComponentTypeWithLiterals as i_, type StringComponentTypeWithLiterals as ia, type NodeTypeWithLiterals as ib, type WidthTypeWithLiterals as ic, type PluginContainerDataAlignmentWithLiterals as id, type ButtonDataTypeWithLiterals as ie, type LinkTargetWithLiterals as ig, type TextAlignmentWithLiterals as ih, type LineStyleWithLiterals as ii, type WidthWithLiterals as ij, type DividerDataAlignmentWithLiterals as ik, type ViewModeWithLiterals as il, type LayoutTypeWithLiterals as im, type OrientationWithLiterals as io, type CropWithLiterals as ip, type ThumbnailsAlignmentWithLiterals as iq, type GIFTypeWithLiterals as ir, type SourceWithLiterals as is, type StylesPositionWithLiterals as it, type MapTypeWithLiterals as iu, type ViewRoleWithLiterals as iv, type VoteRoleWithLiterals as iw, type PollLayoutTypeWithLiterals as ix, type PollLayoutDirectionWithLiterals as iy, type BackgroundTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, getDeletedSubmission as j$, type PropertiesTypeEnumWithLiterals as j0, type ArrayComponentTypeWithLiterals as j1, type WixFileComponentTypeWithLiterals as j2, type UploadFileFormatWithLiterals as j3, type PaymentComponentTypeWithLiterals as j4, type ComponentTypeWithLiterals as j5, type TypeWithLiterals as j6, type ObjectArrayComponentTypeWithLiterals as j7, type SchedulingComponentTypeWithLiterals as j8, type FormatWithLiterals as j9, type ContactAutofillWithLiterals as jA, type IdentityTypeWithLiterals as jB, type ErrorTypeWithLiterals as jC, type SortOrderWithLiterals as jD, type ModeWithLiterals as jE, type StatusWithLiterals as jF, type SubmissionErrorTypeWithLiterals as jG, type CommonSearchWithEntityContext as jH, type CommonQueryWithEntityContext as jI, onSubmissionCreated as jJ, onSubmissionDeleted as jK, onSubmissionRemovedSubmissionFromTrash as jL, onSubmissionStatusUpdated as jM, onSubmissionContactMapped as jN, onSubmissionContactMappingSkipped as jO, onSubmissionUpdated as jP, upsertContactFromSubmission as jQ, createSubmission as jR, getSubmission as jS, updateSubmission as jT, confirmSubmission as jU, deleteSubmission as jV, bulkDeleteSubmission as jW, restoreSubmissionFromTrashBin as jX, removeSubmissionFromTrashBin as jY, bulkRemoveSubmissionFromTrashBin as jZ, listDeletedSubmissions as j_, type MeetingTypeWithLiterals as ja, type StaffStrategySelectionWithLiterals as jb, type InputTypeWithLiterals as jc, type EmailInfoTagWithLiterals as jd, type PhoneInfoTagWithLiterals as je, type TagWithLiterals as jf, type ConfirmationLevelWithLiterals as jg, type SubscriptionChannelWithLiterals as jh, type ContactFieldWithLiterals as ji, type DisplayFieldTypeWithLiterals as jj, type OverrideEntityTypeWithLiterals as jk, type KindWithLiterals as jl, type FormFieldContactInfoEmailInfoTagWithLiterals as jm, type FormFieldContactInfoPhoneInfoTagWithLiterals as jn, type AddressInfoTagWithLiterals as jo, type SubscriptionInfoOptInLevelWithLiterals as jp, type FormFieldContactInfoContactFieldWithLiterals as jq, type SpamFilterProtectionLevelWithLiterals as jr, type RequiredIndicatorWithLiterals as js, type RequiredIndicatorPlacementWithLiterals as jt, type TargetWithLiterals as ju, type SubmitSuccessActionWithLiterals as jv, type ChangeablePropertyWithLiterals as jw, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jx, type OperatorWithLiterals as jy, type ResultsDisplayWithLiterals as jz, type CursorQuery as k, querySubmission as k0, querySubmissionsByNamespace as k1, countSubmissionsByFilter as k2, countSubmissions as k3, countDeletedSubmissions as k4, getMediaUploadUrl as k5, bulkMarkSubmissionsAsSeen as k6, getSubmissionDownloadUrl as k7, downloadSubmission as k8, getFormattedSubmission as k9, updateExtendedFields as ka, validateFormSubmission as kb, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { bV as AccountInfo, hU as AccountInfoMetadata, bR as ActionEvent, fO as Address, fP as AddressComponentTypeOptionsOneOf, fw as AddressInfo, bh as AddressInfoTag, jn as AddressInfoTagWithLiterals, f9 as AddressLine2, aO as Alignment, iU as AlignmentWithLiterals, gi as AllowedValuesOptions, dN as AnchorData, gn as AndCondition, dU as AppEmbedData, dV as AppEmbedDataAppDataOneOf, aC as AppType, iI as AppTypeWithLiterals, gQ as ApplicationError, fl as Appointment, fm as AppointmentFormatInfoOneOf, aW as ArrayComponentType, j0 as ArrayComponentTypeWithLiterals, cj as ArrayErrorMessages, eT as ArrayItems, eU as ArrayItemsItemTypeOptionsOneOf, eP as ArrayType, ch as ArrayTypeArrayItems, ci as ArrayTypeArrayItemsItemsOneOf, aw as AspectRatio, iC as AspectRatioWithLiterals, ed as AudioData, c3 as Availability, dD as Background, dE as BackgroundBackgroundOneOf, ej as BackgroundImage, as as BackgroundType, iy as BackgroundTypeWithLiterals, ek as Banner, hS as BaseEventMetadata, eg as BlockquoteData, dW as BookingData, aT as BooleanComponentType, iZ as BooleanComponentTypeWithLiterals, cb as BooleanErrorMessages, eM as BooleanType, cS as Border, ea as BorderColors, eb as BorderWidths, ff as BreakPoint, gR as BulkActionMetadata, gM as BulkCreateSubmissionBySubmitterData, gL as BulkCreateSubmissionBySubmitterRequest, gN as BulkCreateSubmissionBySubmitterResponse, g$ as BulkDeleteSubmissionRequest, h0 as BulkDeleteSubmissionResult, hu as BulkMarkSubmissionsAsSeenRequest, h4 as BulkRemoveSubmissionFromTrashBinRequest, h5 as BulkRemoveSubmissionFromTrashBinResult, gO as BulkSubmissionResult, hZ as BulkUpdateFormSubmissionTagsByFilterOptions, hK as BulkUpdateFormSubmissionTagsByFilterRequest, hL as BulkUpdateFormSubmissionTagsByFilterResponse, hY as BulkUpdateFormSubmissionTagsOptions, hH as BulkUpdateFormSubmissionTagsRequest, hI as BulkUpdateFormSubmissionTagsResponse, hJ as BulkUpdateFormSubmissionTagsResult, ef as BulletedListData, cR as ButtonData, a9 as ButtonDataType, id as ButtonDataTypeWithLiterals, dY as ButtonStyles, eh as CaptionData, d$ as CardStyles, aA as CardStylesAlignment, iG as CardStylesAlignmentWithLiterals, az as CardStylesType, iF as CardStylesTypeWithLiterals, e9 as CellStyle, bp as ChangeableProperty, jv as ChangeablePropertyWithLiterals, eN as Checkbox, eW as CheckboxGroup, gz as Checkout, d1 as CodeBlockData, e5 as CollapsibleListData, dO as ColorData, cT as Colors, jH as CommonQueryWithEntityContext, jG as CommonSearchWithEntityContext, a_ as ComponentType, j4 as ComponentTypeWithLiterals, eY as ComponentsTags, gp as Condition, gl as ConditionNode, gm as ConditionNodeNodeOneOf, gY as ConfirmSubmissionRequest, b9 as ConfirmationLevel, jf as ConfirmationLevelWithLiterals, bt as ContactAutofill, jz as ContactAutofillWithLiterals, bb as ContactField, jh as ContactFieldWithLiterals, eO as CorrectAnswersList, hr as CountDeletedSubmissionsRequest, ho as CountSubmissionsByFilterRequest, hq as CountSubmissionsRequest, bW as CreateCheckoutFromSubmissionRequest, bX as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gy as CreateCheckoutFromSubmissionResponse, gJ as CreateSubmissionBySubmitterRequest, gK as CreateSubmissionBySubmitterResponse, gF as CreateSubmissionRequest, gG as CreateSubmissionResponse, ai as Crop, io as CropWithLiterals, h7 as CursorPaging, h8 as CursorPagingMetadata, hc as CursorQueryPagingMethodOneOf, hf as CursorSearch, hg as CursorSearchPagingMethodOneOf, h9 as Cursors, fx as CustomFieldInfo, ew as CustomOption, cz as DataExtensionsDetails, eB as DateInput, eD as DatePicker, c4 as DateRange, c2 as DateTimeAdvancedConstraints, cI as DateTimeConstraints, ez as DateTimeInput, $ as DayOfWeek, i3 as DayOfWeekWithLiterals, dL as Decoration, dM as DecorationDataOneOf, at as DecorationType, iz as DecorationTypeWithLiterals, fa as DefaultCountryConfig, fb as DefaultCountryConfigOptionsOneOf, gZ as DeleteSubmissionRequest, g_ as DeleteSubmissionResponse, dJ as Design, aM as DesignTarget, iS as DesignTargetWithLiterals, e7 as Dimensions, aE as Direction, iK as DirectionWithLiterals, fS as DisplayField, fT as DisplayFieldDisplayFieldTypeOptionsOneOf, bc as DisplayFieldType, ji as DisplayFieldTypeWithLiterals, d3 as DividerData, ae as DividerDataAlignment, ij as DividerDataAlignmentWithLiterals, hy as DocumentReady, ep as DocumentStyle, bL as DomainEvent, bM as DomainEventBodyOneOf, f4 as DonationInput, f5 as DonationInputOption, hz as DownloadSubmissionRequest, ex as Dropdown, ey as DropdownOption, cp as DynamicPriceOptions, fu as EmailInfo, b6 as EmailInfoTag, jc as EmailInfoTagWithLiterals, e3 as EmbedData, gC as Empty, bN as EntityCreatedEvent, bQ as EntityDeletedEvent, bP as EntityUpdatedEvent, bv as ErrorType, jB as ErrorTypeWithLiterals, dX as EventData, hT as EventMetadata, bC as ExtendedFields, cB as Field, cC as FieldFieldTypeOptionsOneOf, ge as FieldGroup, gj as FieldOverride, gk as FieldOverridePropertyTypeOptionsOneOf, ct as FieldOverrides, a3 as FieldType, i7 as FieldTypeWithLiterals, hN as FieldViolation, hO as FieldViolationErrorDataOneOf, cu as FieldsOverrides, fc as FieldsSettings, d4 as FileData, d5 as FileSource, d6 as FileSourceDataOneOf, e$ as FileType, f0 as FileUpload, aR as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, f7 as FixedPayment, co as FixedPriceOptions, dT as FontFamilyData, dR as FontSizeData, au as FontType, iA as FontTypeWithLiterals, bY as Form, hs as FormDeletedSubmissionsCount, bZ as FormField, cc as FormFieldArrayType, ca as FormFieldBooleanType, fs as FormFieldContactInfo, ft as FormFieldContactInfoAdditionalInfoOneOf, g4 as FormFieldContactInfoAddressInfo, bj as FormFieldContactInfoContactField, jp as FormFieldContactInfoContactFieldWithLiterals, g5 as FormFieldContactInfoCustomFieldInfo, g2 as FormFieldContactInfoEmailInfo, bf as FormFieldContactInfoEmailInfoTag, jl as FormFieldContactInfoEmailInfoTagWithLiterals, g3 as FormFieldContactInfoPhoneInfo, bg as FormFieldContactInfoPhoneInfoTag, jm as FormFieldContactInfoPhoneInfoTagWithLiterals, g6 as FormFieldContactInfoSubscriptionInfo, c7 as FormFieldNumberType, cd as FormFieldObjectType, b_ as FormFieldStringType, b$ as FormFieldStringTypeFormatOptionsOneOf, fe as FormLayout, fY as FormOverride, fZ as FormProperties, fX as FormRule, hX as FormSubmissionQuerySpec, hV as FormSubmissionSearchSpec, bG as FormSubmissionStatusUpdatedEvent, hp as FormSubmissionsCount, b2 as Format, a4 as FormatEnumFormat, i8 as FormatEnumFormatWithLiterals, j8 as FormatWithLiterals, hF as FormattedFormSubmission, hC as FormattedSubmission, dj as GIF, di as GIFData, ak as GIFType, iq as GIFTypeWithLiterals, d8 as GalleryData, de as GalleryOptions, df as GalleryOptionsLayout, ha as GetDeletedSubmissionRequest, hB as GetFormattedSubmissionRequest, ht as GetMediaUploadURLRequest, gU as GetSubmissionByCheckoutIdRequest, gV as GetSubmissionByCheckoutIdResponse, hv as GetSubmissionDownloadUrlRequest, gS as GetSubmissionRequest, gT as GetSubmissionResponse, dC as Gradient, fi as Group, dl as HTMLData, dm as HTMLDataDataOneOf, hA as HeadersEntry, dk as HeadingData, cY as Height, gh as HiddenOptions, bT as IdentificationData, bU as IdentificationDataIdOneOf, bu as IdentityType, jA as IdentityTypeWithLiterals, da as Image, dn as ImageData, dq as ImageDataStyles, aP as ImageFit, iV as ImageFitWithLiterals, aN as ImagePosition, iT as ImagePositionWithLiterals, dZ as ImageStyles, fp as InPersonOptions, aD as InitialExpandedItems, iJ as InitialExpandedItemsWithLiterals, cD as InputField, cE as InputFieldInputTypeOptionsOneOf, b5 as InputType, jb as InputTypeWithLiterals, c9 as IntegerType, gA as IsFormSubmittableRequest, gB as IsFormSubmittableResponse, dc as Item, dd as ItemDataOneOf, fg as ItemLayout, fh as ItemLayoutItemOneOf, gP as ItemMetadata, dg as ItemStyle, aU as ItemType, i_ as ItemTypeWithLiterals, be as Kind, jk as KindWithLiterals, aB as Layout, el as LayoutCellData, ei as LayoutData, aI as LayoutDataImagePosition, iO as LayoutDataImagePositionWithLiterals, ag as LayoutType, il as LayoutTypeWithLiterals, iH as LayoutWithLiterals, g8 as LimitationRule, ac as LineStyle, ih as LineStyleWithLiterals, c_ as Link, dP as LinkData, c$ as LinkDataOneOf, dr as LinkPreviewData, ds as LinkPreviewDataStyles, aa as LinkTarget, ie as LinkTargetWithLiterals, h6 as ListDeletedSubmissionsRequest, hD as ListFormattedSubmissionsRequest, hE as ListFormattedSubmissionsResponse, ec as ListValue, fn as Location, fo as LocationLocationInfoOneOf, dt as MapData, du as MapSettings, an as MapType, it as MapTypeWithLiterals, fj as Margin, bJ as MarketingSubscriptionDetails, d9 as Media, er as MediaItem, es as MediaItemMediaOneOf, et as MediaSettings, b3 as MeetingType, j9 as MeetingTypeWithLiterals, dQ as MentionData, bS as MessageEnvelope, eo as Metadata, bx as Mode, jD as ModeWithLiterals, f8 as MultilineAddress, cs as MultilineAddressValidation, g7 as NestedForm, cw as NestedFormFieldOverrides, cA as NestedFormOverrides, cO as Node, cP as NodeDataOneOf, cQ as NodeStyle, a6 as NodeType, ia as NodeTypeWithLiterals, aG as NullValue, iM as NullValueWithLiterals, aS as NumberComponentType, iY as NumberComponentTypeWithLiterals, eH as NumberCorrectAnswersList, c8 as NumberErrorMessages, eK as NumberInput, aQ as NumberOfColumns, iW as NumberOfColumnsWithLiterals, eJ as NumberQuizFieldSettings, eI as NumberType, fQ as ObjectArray, b0 as ObjectArrayComponentType, fR as ObjectArrayComponentTypeOptionsOneOf, j6 as ObjectArrayComponentTypeWithLiterals, cv as ObjectArrayType, cg as ObjectErrorMessages, eQ as ObjectType, ce as ObjectTypePropertiesType, cf as ObjectTypePropertiesTypePropertiesTypeOneOf, e4 as Oembed, br as Operator, jx as OperatorWithLiterals, Y as OptInLevel, i0 as OptInLevelWithLiterals, eX as Option, dG as OptionDesign, dB as OptionLayout, go as OrCondition, bD as OrderDetails, ee as OrderedListData, ah as Orientation, im as OrientationWithLiterals, aJ as Origin, iP as OriginWithLiterals, bd as OverrideEntityType, bq as OverrideEntityTypeEnumOverrideEntityType, jw as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jj as OverrideEntityTypeWithLiterals, d7 as PDFSettings, fV as PageNavigationOptions, dv as ParagraphData, gx as PassFailMessages, eG as Password, fK as Payment, aZ as PaymentComponentType, fL as PaymentComponentTypeOptionsOneOf, j3 as PaymentComponentTypeWithLiterals, f6 as PaymentInput, cm as PaymentType, dx as Permissions, cJ as PhoneConstraints, fv as PhoneInfo, b7 as PhoneInfoTag, jd as PhoneInfoTagWithLiterals, eA as PhoneInput, fr as PhoneOptions, ay as Placement, iE as PlacementWithLiterals, e2 as PlaybackOptions, cU as PluginContainerData, a8 as PluginContainerDataAlignment, ic as PluginContainerDataAlignmentWithLiterals, cV as PluginContainerDataWidth, cW as PluginContainerDataWidthDataOneOf, dH as Poll, dw as PollData, dI as PollDataLayout, dF as PollDesign, dA as PollLayout, ar as PollLayoutDirection, ix as PollLayoutDirectionWithLiterals, aq as PollLayoutType, iw as PollLayoutTypeWithLiterals, dy as PollOption, av as Position, iB as PositionWithLiterals, f_ as PostSubmissionTriggers, ck as PredefinedValidation, cl as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, i6 as PriceTypeWithLiterals, e0 as PricingData, cq as Product, f2 as ProductCheckboxGroup, f3 as ProductCheckboxGroupOption, cr as ProductPriceOptionsOneOf, a1 as ProductType, i5 as ProductTypeWithLiterals, eR as PropertiesType, aV as PropertiesTypeEnum, i$ as PropertiesTypeEnumWithLiterals, eS as PropertiesTypePropertiesTypeOptionsOneOf, bE as PublicTags, cn as QuantityLimit, hb as QuerySubmissionRequest, hm as QuerySubmissionsByNamespaceForExportRequest, hn as QuerySubmissionsByNamespaceForExportResponse, hk as QuerySubmissionsByNamespaceRequest, hl as QuerySubmissionsByNamespaceResponse, eV as QuizFieldSettings, gu as QuizSettings, gv as QuizSettingsPassingCriteriaOneOf, gw as QuizSettingsResultsDisplayOptionsOneOf, eu as RadioGroup, ev as RadioGroupOption, eL as RatingInput, gd as RedirectOptions, d0 as Rel, h2 as RemoveSubmissionFromTrashBinRequest, h3 as RemoveSubmissionFromTrashBinResponse, bH as RemovedSubmissionFromTrash, fd as Repeater, bl as RequiredIndicator, bm as RequiredIndicatorPlacement, js as RequiredIndicatorPlacementWithLiterals, g9 as RequiredIndicatorProperties, jr as RequiredIndicatorWithLiterals, gg as RequiredOptions, ax as Resizing, iD as ResizingWithLiterals, aL as ResponsivenessBehaviour, iR as ResponsivenessBehaviourWithLiterals, bO as RestoreInfo, h1 as RestoreSubmissionFromTrashBinRequest, bs as ResultsDisplay, jy as ResultsDisplayWithLiterals, d_ as RibbonStyles, cN as RichContent, fU as RichContentOptions, gf as Rule, gq as RuleFormOverride, gr as RuleFormOverrideEntityTypeOptionsOneOf, aH as Scaling, iN as ScalingWithLiterals, fM as Scheduling, b1 as SchedulingComponentType, fN as SchedulingComponentTypeOptionsOneOf, j7 as SchedulingComponentTypeWithLiterals, hh as SearchDetails, hi as SearchSubmissionsByNamespaceForExportRequest, hj as SearchSubmissionsByNamespaceForExportResponse, he as SearchSubmissionsByNamespaceRequest, fk as Section, eF as ServiceOption, e_ as ServicesCheckboxGroup, eE as ServicesDropdown, dz as Settings, em as ShapeData, en as ShapeDataStyles, f1 as Signature, bw as SortOrder, jC as SortOrderWithLiterals, hd as Sorting, al as Source, ir as SourceWithLiterals, bk as SpamFilterProtectionLevel, jq as SpamFilterProtectionLevelWithLiterals, cX as Spoiler, dS as SpoilerData, b4 as StaffStrategySelection, ja as StaffStrategySelectionWithLiterals, by as Status, jE as StatusWithLiterals, fW as Step, a5 as StringComponentType, i9 as StringComponentTypeWithLiterals, cF as StringCorrectAnswersList, c0 as StringErrorMessages, cL as StringQuizFieldSettings, cG as StringType, c1 as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, i2 as StringTypeFormatEnumFormatWithLiterals, cH as StringTypeFormatOptionsOneOf, c5 as StringTypePhoneConstraints, c6 as StringTypeValidationMessages, cZ as Styles, dp as StylesBorder, am as StylesPosition, is as StylesPositionWithLiterals, bI as SubmissionContactMapped, bK as SubmissionContactMappingSkipped, hw as SubmissionDocument, hx as SubmissionDocumentDocumentOneOf, bz as SubmissionErrorType, jF as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, h$ as SubmissionStatusWithLiterals, hQ as SubmissionValidationError, hR as SubmissionValidationErrorErrorMessageOneOf, hP as SubmissionValidationErrors, gH as SubmissionValidationErrorsDetails, hW as SubmissionsQueryResult, gE as SubmitContactResponse, ga as SubmitSettings, gb as SubmitSettingsSubmitSuccessActionOptionsOneOf, bo as SubmitSuccessAction, ju as SubmitSuccessActionWithLiterals, bA as Submitter, bB as SubmitterSubmitterOneOf, ba as SubscriptionChannel, jg as SubscriptionChannelWithLiterals, fy as SubscriptionInfo, bi as SubscriptionInfoOptInLevel, jo as SubscriptionInfoOptInLevelWithLiterals, e8 as TableCellData, e6 as TableData, b8 as Tag, bF as TagList, je as TagWithLiterals, gs as Tags, eZ as TagsOption, gt as TagsTagList, bn as Target, jt as TargetWithLiterals, ab as TextAlignment, ig as TextAlignmentWithLiterals, dK as TextData, cM as TextInput, eq as TextNodeStyle, d2 as TextStyle, gc as ThankYouMessageOptions, dh as Thumbnails, aj as ThumbnailsAlignment, ip as ThumbnailsAlignmentWithLiterals, eC as TimeInput, a$ as Type, j5 as TypeWithLiterals, hG as UpdateExtendedFieldsRequest, gW as UpdateSubmissionRequest, gX as UpdateSubmissionResponse, aY as UploadFileFormat, j2 as UploadFileFormatWithLiterals, f$ as UpsertContact, gD as UpsertContactFromSubmissionRequest, g0 as V4FormFieldContactInfo, g1 as V4FormFieldContactInfoAdditionalInfoOneOf, hM as ValidateFormSubmissionRequest, cx as Validation, gI as ValidationError, a0 as ValidationFormat, i4 as ValidationFormatWithLiterals, cK as ValidationMessages, cy as ValidationValidationOneOf, aF as VerticalAlignment, aK as VerticalAlignmentAlignment, iQ as VerticalAlignmentAlignmentWithLiterals, iL as VerticalAlignmentWithLiterals, db as Video, fq as VideoConferenceOptions, e1 as VideoData, af as ViewMode, ik as ViewModeWithLiterals, ao as ViewRole, iu as ViewRoleWithLiterals, ap as VoteRole, iv as VoteRoleWithLiterals, Z as WebhookIdentityType, i1 as WebhookIdentityTypeWithLiterals, ad as Width, a7 as WidthType, ib as WidthTypeWithLiterals, ii as WidthWithLiterals, fI as WixFile, aX as WixFileComponentType, fJ as WixFileComponentTypeOptionsOneOf, j1 as WixFileComponentTypeWithLiterals, fF as _Array, fG as _ArrayComponentTypeOptionsOneOf, fD as _Boolean, fE as _BooleanComponentTypeOptionsOneOf, fB as _Number, fC as _NumberComponentTypeOptionsOneOf, fH as _Object, fz as _String, fA as _StringComponentTypeOptionsOneOf, h_ as utils } from './forms-v4-submission-submissions.universal-DGP8cfot.mjs';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-DSP0qe-E.mjs';
|
|
3
|
+
export { bV as AccountInfo, hV as AccountInfoMetadata, bR as ActionEvent, fO as Address, fP as AddressComponentTypeOptionsOneOf, fw as AddressInfo, bh as AddressInfoTag, jo as AddressInfoTagWithLiterals, f9 as AddressLine2, aO as Alignment, iV as AlignmentWithLiterals, gi as AllowedValuesOptions, dN as AnchorData, gn as AndCondition, dU as AppEmbedData, dV as AppEmbedDataAppDataOneOf, aC as AppType, iJ as AppTypeWithLiterals, gR as ApplicationError, fl as Appointment, gF as AppointmentDetails, fm as AppointmentFormatInfoOneOf, aW as ArrayComponentType, j1 as ArrayComponentTypeWithLiterals, cj as ArrayErrorMessages, eT as ArrayItems, eU as ArrayItemsItemTypeOptionsOneOf, eP as ArrayType, ch as ArrayTypeArrayItems, ci as ArrayTypeArrayItemsItemsOneOf, aw as AspectRatio, iD as AspectRatioWithLiterals, ed as AudioData, c3 as Availability, dD as Background, dE as BackgroundBackgroundOneOf, ej as BackgroundImage, as as BackgroundType, iz as BackgroundTypeWithLiterals, ek as Banner, hT as BaseEventMetadata, eg as BlockquoteData, dW as BookingData, aT as BooleanComponentType, i_ as BooleanComponentTypeWithLiterals, cb as BooleanErrorMessages, eM as BooleanType, cS as Border, ea as BorderColors, eb as BorderWidths, ff as BreakPoint, gS as BulkActionMetadata, gN as BulkCreateSubmissionBySubmitterData, gM as BulkCreateSubmissionBySubmitterRequest, gO as BulkCreateSubmissionBySubmitterResponse, h0 as BulkDeleteSubmissionRequest, h1 as BulkDeleteSubmissionResult, hv as BulkMarkSubmissionsAsSeenRequest, h5 as BulkRemoveSubmissionFromTrashBinRequest, h6 as BulkRemoveSubmissionFromTrashBinResult, gP as BulkSubmissionResult, h_ as BulkUpdateFormSubmissionTagsByFilterOptions, hL as BulkUpdateFormSubmissionTagsByFilterRequest, hM as BulkUpdateFormSubmissionTagsByFilterResponse, hZ as BulkUpdateFormSubmissionTagsOptions, hI as BulkUpdateFormSubmissionTagsRequest, hJ as BulkUpdateFormSubmissionTagsResponse, hK as BulkUpdateFormSubmissionTagsResult, ef as BulletedListData, cR as ButtonData, a9 as ButtonDataType, ie as ButtonDataTypeWithLiterals, dY as ButtonStyles, eh as CaptionData, d$ as CardStyles, aA as CardStylesAlignment, iH as CardStylesAlignmentWithLiterals, az as CardStylesType, iG as CardStylesTypeWithLiterals, e9 as CellStyle, bp as ChangeableProperty, jw as ChangeablePropertyWithLiterals, eN as Checkbox, eW as CheckboxGroup, gz as Checkout, d1 as CodeBlockData, e5 as CollapsibleListData, dO as ColorData, cT as Colors, jI as CommonQueryWithEntityContext, jH as CommonSearchWithEntityContext, a_ as ComponentType, j5 as ComponentTypeWithLiterals, eY as ComponentsTags, gp as Condition, gl as ConditionNode, gm as ConditionNodeNodeOneOf, gZ as ConfirmSubmissionRequest, b9 as ConfirmationLevel, jg as ConfirmationLevelWithLiterals, bt as ContactAutofill, jA as ContactAutofillWithLiterals, bb as ContactField, ji as ContactFieldWithLiterals, eO as CorrectAnswersList, hs as CountDeletedSubmissionsRequest, hp as CountSubmissionsByFilterRequest, hr as CountSubmissionsRequest, bW as CreateCheckoutFromSubmissionRequest, bX as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gy as CreateCheckoutFromSubmissionResponse, gK as CreateSubmissionBySubmitterRequest, gL as CreateSubmissionBySubmitterResponse, gG as CreateSubmissionRequest, gH as CreateSubmissionResponse, ai as Crop, ip as CropWithLiterals, h8 as CursorPaging, h9 as CursorPagingMetadata, hd as CursorQueryPagingMethodOneOf, hg as CursorSearch, hh as CursorSearchPagingMethodOneOf, ha as Cursors, fx as CustomFieldInfo, ew as CustomOption, cz as DataExtensionsDetails, eB as DateInput, eD as DatePicker, c4 as DateRange, c2 as DateTimeAdvancedConstraints, cI as DateTimeConstraints, ez as DateTimeInput, $ as DayOfWeek, i4 as DayOfWeekWithLiterals, dL as Decoration, dM as DecorationDataOneOf, at as DecorationType, iA as DecorationTypeWithLiterals, fa as DefaultCountryConfig, fb as DefaultCountryConfigOptionsOneOf, g_ as DeleteSubmissionRequest, g$ as DeleteSubmissionResponse, dJ as Design, aM as DesignTarget, iT as DesignTargetWithLiterals, e7 as Dimensions, aE as Direction, iL as DirectionWithLiterals, fS as DisplayField, fT as DisplayFieldDisplayFieldTypeOptionsOneOf, bc as DisplayFieldType, jj as DisplayFieldTypeWithLiterals, d3 as DividerData, ae as DividerDataAlignment, ik as DividerDataAlignmentWithLiterals, hz as DocumentReady, ep as DocumentStyle, bL as DomainEvent, bM as DomainEventBodyOneOf, f4 as DonationInput, f5 as DonationInputOption, hA as DownloadSubmissionRequest, ex as Dropdown, ey as DropdownOption, cp as DynamicPriceOptions, fu as EmailInfo, b6 as EmailInfoTag, jd as EmailInfoTagWithLiterals, e3 as EmbedData, gC as Empty, bN as EntityCreatedEvent, bQ as EntityDeletedEvent, bP as EntityUpdatedEvent, bv as ErrorType, jC as ErrorTypeWithLiterals, dX as EventData, hU as EventMetadata, bC as ExtendedFields, cB as Field, cC as FieldFieldTypeOptionsOneOf, ge as FieldGroup, gj as FieldOverride, gk as FieldOverridePropertyTypeOptionsOneOf, ct as FieldOverrides, a3 as FieldType, i8 as FieldTypeWithLiterals, hO as FieldViolation, hP as FieldViolationErrorDataOneOf, cu as FieldsOverrides, fc as FieldsSettings, d4 as FileData, d5 as FileSource, d6 as FileSourceDataOneOf, e$ as FileType, f0 as FileUpload, aR as FirstDayOfWeek, iY as FirstDayOfWeekWithLiterals, f7 as FixedPayment, co as FixedPriceOptions, dT as FontFamilyData, dR as FontSizeData, au as FontType, iB as FontTypeWithLiterals, bY as Form, ht as FormDeletedSubmissionsCount, bZ as FormField, cc as FormFieldArrayType, ca as FormFieldBooleanType, fs as FormFieldContactInfo, ft as FormFieldContactInfoAdditionalInfoOneOf, g4 as FormFieldContactInfoAddressInfo, bj as FormFieldContactInfoContactField, jq as FormFieldContactInfoContactFieldWithLiterals, g5 as FormFieldContactInfoCustomFieldInfo, g2 as FormFieldContactInfoEmailInfo, bf as FormFieldContactInfoEmailInfoTag, jm as FormFieldContactInfoEmailInfoTagWithLiterals, g3 as FormFieldContactInfoPhoneInfo, bg as FormFieldContactInfoPhoneInfoTag, jn as FormFieldContactInfoPhoneInfoTagWithLiterals, g6 as FormFieldContactInfoSubscriptionInfo, c7 as FormFieldNumberType, cd as FormFieldObjectType, b_ as FormFieldStringType, b$ as FormFieldStringTypeFormatOptionsOneOf, fe as FormLayout, fY as FormOverride, fZ as FormProperties, fX as FormRule, hY as FormSubmissionQuerySpec, hW as FormSubmissionSearchSpec, bG as FormSubmissionStatusUpdatedEvent, hq as FormSubmissionsCount, b2 as Format, a4 as FormatEnumFormat, i9 as FormatEnumFormatWithLiterals, j9 as FormatWithLiterals, hG as FormattedFormSubmission, hD as FormattedSubmission, dj as GIF, di as GIFData, ak as GIFType, ir as GIFTypeWithLiterals, d8 as GalleryData, de as GalleryOptions, df as GalleryOptionsLayout, hb as GetDeletedSubmissionRequest, hC as GetFormattedSubmissionRequest, hu as GetMediaUploadURLRequest, gV as GetSubmissionByCheckoutIdRequest, gW as GetSubmissionByCheckoutIdResponse, hw as GetSubmissionDownloadUrlRequest, gT as GetSubmissionRequest, gU as GetSubmissionResponse, dC as Gradient, fi as Group, dl as HTMLData, dm as HTMLDataDataOneOf, hB as HeadersEntry, dk as HeadingData, cY as Height, gh as HiddenOptions, bT as IdentificationData, bU as IdentificationDataIdOneOf, bu as IdentityType, jB as IdentityTypeWithLiterals, da as Image, dn as ImageData, dq as ImageDataStyles, aP as ImageFit, iW as ImageFitWithLiterals, aN as ImagePosition, iU as ImagePositionWithLiterals, dZ as ImageStyles, fp as InPersonOptions, aD as InitialExpandedItems, iK as InitialExpandedItemsWithLiterals, cD as InputField, cE as InputFieldInputTypeOptionsOneOf, b5 as InputType, jc as InputTypeWithLiterals, c9 as IntegerType, gA as IsFormSubmittableRequest, gB as IsFormSubmittableResponse, dc as Item, dd as ItemDataOneOf, fg as ItemLayout, fh as ItemLayoutItemOneOf, gQ as ItemMetadata, dg as ItemStyle, aU as ItemType, i$ as ItemTypeWithLiterals, be as Kind, jl as KindWithLiterals, aB as Layout, el as LayoutCellData, ei as LayoutData, aI as LayoutDataImagePosition, iP as LayoutDataImagePositionWithLiterals, ag as LayoutType, im as LayoutTypeWithLiterals, iI as LayoutWithLiterals, g8 as LimitationRule, ac as LineStyle, ii as LineStyleWithLiterals, c_ as Link, dP as LinkData, c$ as LinkDataOneOf, dr as LinkPreviewData, ds as LinkPreviewDataStyles, aa as LinkTarget, ig as LinkTargetWithLiterals, h7 as ListDeletedSubmissionsRequest, hE as ListFormattedSubmissionsRequest, hF as ListFormattedSubmissionsResponse, ec as ListValue, fn as Location, fo as LocationLocationInfoOneOf, dt as MapData, du as MapSettings, an as MapType, iu as MapTypeWithLiterals, fj as Margin, bJ as MarketingSubscriptionDetails, d9 as Media, er as MediaItem, es as MediaItemMediaOneOf, et as MediaSettings, b3 as MeetingType, ja as MeetingTypeWithLiterals, dQ as MentionData, bS as MessageEnvelope, eo as Metadata, bx as Mode, jE as ModeWithLiterals, f8 as MultilineAddress, cs as MultilineAddressValidation, g7 as NestedForm, cw as NestedFormFieldOverrides, cA as NestedFormOverrides, cO as Node, cP as NodeDataOneOf, cQ as NodeStyle, a6 as NodeType, ib as NodeTypeWithLiterals, aG as NullValue, iN as NullValueWithLiterals, aS as NumberComponentType, iZ as NumberComponentTypeWithLiterals, eH as NumberCorrectAnswersList, c8 as NumberErrorMessages, eK as NumberInput, aQ as NumberOfColumns, iX as NumberOfColumnsWithLiterals, eJ as NumberQuizFieldSettings, eI as NumberType, fQ as ObjectArray, b0 as ObjectArrayComponentType, fR as ObjectArrayComponentTypeOptionsOneOf, j7 as ObjectArrayComponentTypeWithLiterals, cv as ObjectArrayType, cg as ObjectErrorMessages, eQ as ObjectType, ce as ObjectTypePropertiesType, cf as ObjectTypePropertiesTypePropertiesTypeOneOf, e4 as Oembed, br as Operator, jy as OperatorWithLiterals, Y as OptInLevel, i1 as OptInLevelWithLiterals, eX as Option, dG as OptionDesign, dB as OptionLayout, go as OrCondition, bD as OrderDetails, ee as OrderedListData, ah as Orientation, io as OrientationWithLiterals, aJ as Origin, iQ as OriginWithLiterals, bd as OverrideEntityType, bq as OverrideEntityTypeEnumOverrideEntityType, jx as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jk as OverrideEntityTypeWithLiterals, d7 as PDFSettings, fV as PageNavigationOptions, dv as ParagraphData, gx as PassFailMessages, eG as Password, fK as Payment, aZ as PaymentComponentType, fL as PaymentComponentTypeOptionsOneOf, j4 as PaymentComponentTypeWithLiterals, f6 as PaymentInput, cm as PaymentType, dx as Permissions, cJ as PhoneConstraints, fv as PhoneInfo, b7 as PhoneInfoTag, je as PhoneInfoTagWithLiterals, eA as PhoneInput, fr as PhoneOptions, ay as Placement, iF as PlacementWithLiterals, e2 as PlaybackOptions, cU as PluginContainerData, a8 as PluginContainerDataAlignment, id as PluginContainerDataAlignmentWithLiterals, cV as PluginContainerDataWidth, cW as PluginContainerDataWidthDataOneOf, dH as Poll, dw as PollData, dI as PollDataLayout, dF as PollDesign, dA as PollLayout, ar as PollLayoutDirection, iy as PollLayoutDirectionWithLiterals, aq as PollLayoutType, ix as PollLayoutTypeWithLiterals, dy as PollOption, av as Position, iC as PositionWithLiterals, f_ as PostSubmissionTriggers, ck as PredefinedValidation, cl as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, i7 as PriceTypeWithLiterals, e0 as PricingData, cq as Product, f2 as ProductCheckboxGroup, f3 as ProductCheckboxGroupOption, cr as ProductPriceOptionsOneOf, a1 as ProductType, i6 as ProductTypeWithLiterals, eR as PropertiesType, aV as PropertiesTypeEnum, j0 as PropertiesTypeEnumWithLiterals, eS as PropertiesTypePropertiesTypeOptionsOneOf, bE as PublicTags, cn as QuantityLimit, hc as QuerySubmissionRequest, hn as QuerySubmissionsByNamespaceForExportRequest, ho as QuerySubmissionsByNamespaceForExportResponse, hl as QuerySubmissionsByNamespaceRequest, hm as QuerySubmissionsByNamespaceResponse, eV as QuizFieldSettings, gu as QuizSettings, gv as QuizSettingsPassingCriteriaOneOf, gw as QuizSettingsResultsDisplayOptionsOneOf, eu as RadioGroup, ev as RadioGroupOption, eL as RatingInput, gd as RedirectOptions, d0 as Rel, h3 as RemoveSubmissionFromTrashBinRequest, h4 as RemoveSubmissionFromTrashBinResponse, bH as RemovedSubmissionFromTrash, fd as Repeater, bl as RequiredIndicator, bm as RequiredIndicatorPlacement, jt as RequiredIndicatorPlacementWithLiterals, g9 as RequiredIndicatorProperties, js as RequiredIndicatorWithLiterals, gg as RequiredOptions, ax as Resizing, iE as ResizingWithLiterals, aL as ResponsivenessBehaviour, iS as ResponsivenessBehaviourWithLiterals, bO as RestoreInfo, h2 as RestoreSubmissionFromTrashBinRequest, bs as ResultsDisplay, jz as ResultsDisplayWithLiterals, d_ as RibbonStyles, cN as RichContent, fU as RichContentOptions, gf as Rule, gq as RuleFormOverride, gr as RuleFormOverrideEntityTypeOptionsOneOf, aH as Scaling, iO as ScalingWithLiterals, fM as Scheduling, b1 as SchedulingComponentType, fN as SchedulingComponentTypeOptionsOneOf, j8 as SchedulingComponentTypeWithLiterals, hi as SearchDetails, hj as SearchSubmissionsByNamespaceForExportRequest, hk as SearchSubmissionsByNamespaceForExportResponse, hf as SearchSubmissionsByNamespaceRequest, fk as Section, eF as ServiceOption, e_ as ServicesCheckboxGroup, eE as ServicesDropdown, dz as Settings, em as ShapeData, en as ShapeDataStyles, f1 as Signature, bw as SortOrder, jD as SortOrderWithLiterals, he as Sorting, al as Source, is as SourceWithLiterals, bk as SpamFilterProtectionLevel, jr as SpamFilterProtectionLevelWithLiterals, cX as Spoiler, dS as SpoilerData, b4 as StaffStrategySelection, jb as StaffStrategySelectionWithLiterals, by as Status, jF as StatusWithLiterals, fW as Step, a5 as StringComponentType, ia as StringComponentTypeWithLiterals, cF as StringCorrectAnswersList, c0 as StringErrorMessages, cL as StringQuizFieldSettings, cG as StringType, c1 as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, i3 as StringTypeFormatEnumFormatWithLiterals, cH as StringTypeFormatOptionsOneOf, c5 as StringTypePhoneConstraints, c6 as StringTypeValidationMessages, cZ as Styles, dp as StylesBorder, am as StylesPosition, it as StylesPositionWithLiterals, bI as SubmissionContactMapped, bK as SubmissionContactMappingSkipped, hx as SubmissionDocument, hy as SubmissionDocumentDocumentOneOf, bz as SubmissionErrorType, jG as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, i0 as SubmissionStatusWithLiterals, hR as SubmissionValidationError, hS as SubmissionValidationErrorErrorMessageOneOf, hQ as SubmissionValidationErrors, gI as SubmissionValidationErrorsDetails, hX as SubmissionsQueryResult, gE as SubmitContactResponse, ga as SubmitSettings, gb as SubmitSettingsSubmitSuccessActionOptionsOneOf, bo as SubmitSuccessAction, jv as SubmitSuccessActionWithLiterals, bA as Submitter, bB as SubmitterSubmitterOneOf, ba as SubscriptionChannel, jh as SubscriptionChannelWithLiterals, fy as SubscriptionInfo, bi as SubscriptionInfoOptInLevel, jp as SubscriptionInfoOptInLevelWithLiterals, e8 as TableCellData, e6 as TableData, b8 as Tag, bF as TagList, jf as TagWithLiterals, gs as Tags, eZ as TagsOption, gt as TagsTagList, bn as Target, ju as TargetWithLiterals, ab as TextAlignment, ih as TextAlignmentWithLiterals, dK as TextData, cM as TextInput, eq as TextNodeStyle, d2 as TextStyle, gc as ThankYouMessageOptions, dh as Thumbnails, aj as ThumbnailsAlignment, iq as ThumbnailsAlignmentWithLiterals, eC as TimeInput, a$ as Type, j6 as TypeWithLiterals, hH as UpdateExtendedFieldsRequest, gX as UpdateSubmissionRequest, gY as UpdateSubmissionResponse, aY as UploadFileFormat, j3 as UploadFileFormatWithLiterals, f$ as UpsertContact, gD as UpsertContactFromSubmissionRequest, g0 as V4FormFieldContactInfo, g1 as V4FormFieldContactInfoAdditionalInfoOneOf, hN as ValidateFormSubmissionRequest, cx as Validation, gJ as ValidationError, a0 as ValidationFormat, i5 as ValidationFormatWithLiterals, cK as ValidationMessages, cy as ValidationValidationOneOf, aF as VerticalAlignment, aK as VerticalAlignmentAlignment, iR as VerticalAlignmentAlignmentWithLiterals, iM as VerticalAlignmentWithLiterals, db as Video, fq as VideoConferenceOptions, e1 as VideoData, af as ViewMode, il as ViewModeWithLiterals, ao as ViewRole, iv as ViewRoleWithLiterals, ap as VoteRole, iw as VoteRoleWithLiterals, Z as WebhookIdentityType, i2 as WebhookIdentityTypeWithLiterals, ad as Width, a7 as WidthType, ic as WidthTypeWithLiterals, ij as WidthWithLiterals, fI as WixFile, aX as WixFileComponentType, fJ as WixFileComponentTypeOptionsOneOf, j2 as WixFileComponentTypeWithLiterals, fF as _Array, fG as _ArrayComponentTypeOptionsOneOf, fD as _Boolean, fE as _BooleanComponentTypeOptionsOneOf, fB as _Number, fC as _NumberComponentTypeOptionsOneOf, fH as _Object, fz as _String, fA as _StringComponentTypeOptionsOneOf, h$ as utils } from './forms-v4-submission-submissions.universal-DSP0qe-E.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|