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