@wix/auto_sdk_forms_submissions 1.0.98 → 1.0.100
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-DkEEErBR.d.ts → forms-v4-submission-submissions.universal-M17yHtDQ.d.ts} +33 -66
- 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 +34 -67
- package/build/cjs/meta.js +0 -23
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-DkEEErBR.d.mts → forms-v4-submission-submissions.universal-M17yHtDQ.d.mts} +33 -66
- 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 +34 -67
- package/build/es/meta.mjs +0 -23
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-CqVoo7cC.d.ts → forms-v4-submission-submissions.universal-BeboyW2D.d.ts} +33 -66
- 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 +34 -67
- 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-CqVoo7cC.d.mts → forms-v4-submission-submissions.universal-BeboyW2D.d.mts} +33 -66
- 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 +34 -67
- package/build/internal/es/meta.mjs +0 -23
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -71,7 +71,6 @@ interface FormSubmission {
|
|
|
71
71
|
tags?: PublicTags;
|
|
72
72
|
}
|
|
73
73
|
declare enum SubmissionStatus {
|
|
74
|
-
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
75
74
|
/** A submission is created, but has not yet been recorded in the Wix Forms collection. */
|
|
76
75
|
PENDING = "PENDING",
|
|
77
76
|
/** A submission is recorded in the Wix Forms collection. */
|
|
@@ -82,7 +81,7 @@ declare enum SubmissionStatus {
|
|
|
82
81
|
PAYMENT_CANCELED = "PAYMENT_CANCELED"
|
|
83
82
|
}
|
|
84
83
|
/** @enumType */
|
|
85
|
-
type SubmissionStatusWithLiterals = SubmissionStatus | '
|
|
84
|
+
type SubmissionStatusWithLiterals = SubmissionStatus | 'PENDING' | 'CONFIRMED' | 'PAYMENT_WAITING' | 'PAYMENT_CANCELED';
|
|
86
85
|
interface Submitter extends SubmitterSubmitterOneOf {
|
|
87
86
|
/**
|
|
88
87
|
* Member ID.
|
|
@@ -711,10 +710,16 @@ interface Availability {
|
|
|
711
710
|
availableDays?: DayOfWeekWithLiterals[];
|
|
712
711
|
}
|
|
713
712
|
interface DateRange {
|
|
714
|
-
/**
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
713
|
+
/**
|
|
714
|
+
* The beginning of the date range (inclusive). ISO 8601 date format (YYYY-MM-DD).
|
|
715
|
+
* @format LOCAL_DATE
|
|
716
|
+
*/
|
|
717
|
+
start?: string;
|
|
718
|
+
/**
|
|
719
|
+
* The end of the date range (exclusive). ISO 8601 date format (YYYY-MM-DD).
|
|
720
|
+
* @format LOCAL_DATE
|
|
721
|
+
*/
|
|
722
|
+
end?: string;
|
|
718
723
|
}
|
|
719
724
|
declare enum DayOfWeek {
|
|
720
725
|
MONDAY = "MONDAY",
|
|
@@ -936,25 +941,21 @@ interface PaymentType {
|
|
|
936
941
|
maxItems?: number | null;
|
|
937
942
|
}
|
|
938
943
|
declare enum ProductType {
|
|
939
|
-
/** Unknown product type. */
|
|
940
|
-
UNKNOWN_PRODUCT_TYPE = "UNKNOWN_PRODUCT_TYPE",
|
|
941
944
|
/** Physical product that can be shipped. */
|
|
942
945
|
SHIPPABLE = "SHIPPABLE",
|
|
943
946
|
/** Digital product. */
|
|
944
947
|
DIGITAL = "DIGITAL"
|
|
945
948
|
}
|
|
946
949
|
/** @enumType */
|
|
947
|
-
type ProductTypeWithLiterals = ProductType | '
|
|
950
|
+
type ProductTypeWithLiterals = ProductType | 'SHIPPABLE' | 'DIGITAL';
|
|
948
951
|
declare enum PriceType {
|
|
949
|
-
/** Unknown price type. */
|
|
950
|
-
UNKNOWN_PRICE_TYPE = "UNKNOWN_PRICE_TYPE",
|
|
951
952
|
/** Product has a single, unchanging price. */
|
|
952
953
|
FIXED_PRICE = "FIXED_PRICE",
|
|
953
954
|
/** Product price can vary within a specified range. */
|
|
954
955
|
DYNAMIC_PRICE = "DYNAMIC_PRICE"
|
|
955
956
|
}
|
|
956
957
|
/** @enumType */
|
|
957
|
-
type PriceTypeWithLiterals = PriceType | '
|
|
958
|
+
type PriceTypeWithLiterals = PriceType | 'FIXED_PRICE' | 'DYNAMIC_PRICE';
|
|
958
959
|
interface QuantityLimit {
|
|
959
960
|
/**
|
|
960
961
|
* Minimum quantity that must be selected for this product.
|
|
@@ -3387,18 +3388,14 @@ interface MediaSettings {
|
|
|
3387
3388
|
imageFit?: ImageFitWithLiterals;
|
|
3388
3389
|
}
|
|
3389
3390
|
declare enum ImagePosition {
|
|
3390
|
-
/** Undefined position. */
|
|
3391
|
-
UNKNOWN_IMAGE_POSITION = "UNKNOWN_IMAGE_POSITION",
|
|
3392
3391
|
/** Above the field's label. */
|
|
3393
3392
|
ABOVE = "ABOVE",
|
|
3394
3393
|
/** Below the field's label. */
|
|
3395
3394
|
BELOW = "BELOW"
|
|
3396
3395
|
}
|
|
3397
3396
|
/** @enumType */
|
|
3398
|
-
type ImagePositionWithLiterals = ImagePosition | '
|
|
3397
|
+
type ImagePositionWithLiterals = ImagePosition | 'ABOVE' | 'BELOW';
|
|
3399
3398
|
declare enum Alignment {
|
|
3400
|
-
/** Undefined alignment. */
|
|
3401
|
-
UNKNOWN_ALIGNMENT = "UNKNOWN_ALIGNMENT",
|
|
3402
3399
|
/** Align left. */
|
|
3403
3400
|
LEFT = "LEFT",
|
|
3404
3401
|
/** Align center. */
|
|
@@ -3407,16 +3404,15 @@ declare enum Alignment {
|
|
|
3407
3404
|
RIGHT = "RIGHT"
|
|
3408
3405
|
}
|
|
3409
3406
|
/** @enumType */
|
|
3410
|
-
type AlignmentWithLiterals = Alignment | '
|
|
3407
|
+
type AlignmentWithLiterals = Alignment | 'LEFT' | 'CENTER' | 'RIGHT';
|
|
3411
3408
|
declare enum ImageFit {
|
|
3412
|
-
UNKNOWN_IMAGE_FIT = "UNKNOWN_IMAGE_FIT",
|
|
3413
3409
|
/** 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. */
|
|
3414
3410
|
COVER = "COVER",
|
|
3415
3411
|
/** Resize the image to fill the element's content box. The image's original sspect ratio may not be preserved. */
|
|
3416
3412
|
CONTAIN = "CONTAIN"
|
|
3417
3413
|
}
|
|
3418
3414
|
/** @enumType */
|
|
3419
|
-
type ImageFitWithLiterals = ImageFit | '
|
|
3415
|
+
type ImageFitWithLiterals = ImageFit | 'COVER' | 'CONTAIN';
|
|
3420
3416
|
interface RadioGroup {
|
|
3421
3417
|
/**
|
|
3422
3418
|
* Field label.
|
|
@@ -3482,8 +3478,6 @@ interface CustomOption {
|
|
|
3482
3478
|
placeholder?: string | null;
|
|
3483
3479
|
}
|
|
3484
3480
|
declare enum NumberOfColumns {
|
|
3485
|
-
/** Undefined number of columns. */
|
|
3486
|
-
UNKNOWN_NUMBER_OF_COLUMNS = "UNKNOWN_NUMBER_OF_COLUMNS",
|
|
3487
3481
|
/** Zero columns. */
|
|
3488
3482
|
ZERO = "ZERO",
|
|
3489
3483
|
/** One column. */
|
|
@@ -3494,7 +3488,7 @@ declare enum NumberOfColumns {
|
|
|
3494
3488
|
THREE = "THREE"
|
|
3495
3489
|
}
|
|
3496
3490
|
/** @enumType */
|
|
3497
|
-
type NumberOfColumnsWithLiterals = NumberOfColumns | '
|
|
3491
|
+
type NumberOfColumnsWithLiterals = NumberOfColumns | 'ZERO' | 'ONE' | 'TWO' | 'THREE';
|
|
3498
3492
|
interface Dropdown {
|
|
3499
3493
|
/**
|
|
3500
3494
|
* Field label.
|
|
@@ -3947,8 +3941,6 @@ interface ArrayType {
|
|
|
3947
3941
|
items?: ArrayItems;
|
|
3948
3942
|
}
|
|
3949
3943
|
declare enum ItemType {
|
|
3950
|
-
/** Unknown item type. */
|
|
3951
|
-
UNKNOWN_ITEM_TYPE = "UNKNOWN_ITEM_TYPE",
|
|
3952
3944
|
/** Array can contain string values. */
|
|
3953
3945
|
STRING = "STRING",
|
|
3954
3946
|
/** Array can contain numeric values. */
|
|
@@ -3957,14 +3949,12 @@ declare enum ItemType {
|
|
|
3957
3949
|
BOOLEAN = "BOOLEAN"
|
|
3958
3950
|
}
|
|
3959
3951
|
/** @enumType */
|
|
3960
|
-
type ItemTypeWithLiterals = ItemType | '
|
|
3952
|
+
type ItemTypeWithLiterals = ItemType | 'STRING' | 'NUMBER' | 'BOOLEAN';
|
|
3961
3953
|
interface ObjectType {
|
|
3962
3954
|
/** Definition of object properties and their validation rules. */
|
|
3963
3955
|
properties?: Record<string, PropertiesType>;
|
|
3964
3956
|
}
|
|
3965
3957
|
declare enum PropertiesTypeEnum {
|
|
3966
|
-
/** Unknown property type. */
|
|
3967
|
-
UNKNOWN_PROPERTY_TYPE = "UNKNOWN_PROPERTY_TYPE",
|
|
3968
3958
|
/** Property must contain a string value. */
|
|
3969
3959
|
STRING = "STRING",
|
|
3970
3960
|
/** Property must contain a numeric value. */
|
|
@@ -3975,7 +3965,7 @@ declare enum PropertiesTypeEnum {
|
|
|
3975
3965
|
ARRAY = "ARRAY"
|
|
3976
3966
|
}
|
|
3977
3967
|
/** @enumType */
|
|
3978
|
-
type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | '
|
|
3968
|
+
type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY';
|
|
3979
3969
|
interface PropertiesType extends PropertiesTypePropertiesTypeOptionsOneOf {
|
|
3980
3970
|
/** Validation rules for string properties. */
|
|
3981
3971
|
stringOptions?: StringType;
|
|
@@ -4195,8 +4185,6 @@ interface FileType {
|
|
|
4195
4185
|
uploadFileFormats?: UploadFileFormatWithLiterals[];
|
|
4196
4186
|
}
|
|
4197
4187
|
declare enum UploadFileFormat {
|
|
4198
|
-
/** Undefined upload file format. */
|
|
4199
|
-
UNKNOWN_UPLOAD_FILE_FORMAT = "UNKNOWN_UPLOAD_FILE_FORMAT",
|
|
4200
4188
|
/** Video files. */
|
|
4201
4189
|
VIDEO = "VIDEO",
|
|
4202
4190
|
/** Image files. */
|
|
@@ -4209,7 +4197,7 @@ declare enum UploadFileFormat {
|
|
|
4209
4197
|
ARCHIVE = "ARCHIVE"
|
|
4210
4198
|
}
|
|
4211
4199
|
/** @enumType */
|
|
4212
|
-
type UploadFileFormatWithLiterals = UploadFileFormat | '
|
|
4200
|
+
type UploadFileFormatWithLiterals = UploadFileFormat | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
4213
4201
|
interface FileUpload {
|
|
4214
4202
|
/**
|
|
4215
4203
|
* Field label.
|
|
@@ -4682,7 +4670,6 @@ interface LocationLocationInfoOneOf {
|
|
|
4682
4670
|
businessLocationId?: string | null;
|
|
4683
4671
|
}
|
|
4684
4672
|
declare enum Format {
|
|
4685
|
-
UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
|
|
4686
4673
|
/** Face-to-face meeting at a physical location. */
|
|
4687
4674
|
IN_PERSON = "IN_PERSON",
|
|
4688
4675
|
/** Online meeting via video conference. */
|
|
@@ -4691,18 +4678,16 @@ declare enum Format {
|
|
|
4691
4678
|
PHONE = "PHONE"
|
|
4692
4679
|
}
|
|
4693
4680
|
/** @enumType */
|
|
4694
|
-
type FormatWithLiterals = Format | '
|
|
4681
|
+
type FormatWithLiterals = Format | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
|
|
4695
4682
|
declare enum MeetingType {
|
|
4696
|
-
UNKNOWN_MEETING_TYPE = "UNKNOWN_MEETING_TYPE",
|
|
4697
4683
|
/** Single staff member provides the service. */
|
|
4698
4684
|
SINGLE_STAFF = "SINGLE_STAFF",
|
|
4699
4685
|
/** Multiple staff members rotate via round robin scheduling. */
|
|
4700
4686
|
ROUND_ROBIN = "ROUND_ROBIN"
|
|
4701
4687
|
}
|
|
4702
4688
|
/** @enumType */
|
|
4703
|
-
type MeetingTypeWithLiterals = MeetingType | '
|
|
4689
|
+
type MeetingTypeWithLiterals = MeetingType | 'SINGLE_STAFF' | 'ROUND_ROBIN';
|
|
4704
4690
|
declare enum StaffStrategySelection {
|
|
4705
|
-
UNKNOWN_STAFF_STRATEGY_SELECTION = "UNKNOWN_STAFF_STRATEGY_SELECTION",
|
|
4706
4691
|
/** Staff selected randomly. */
|
|
4707
4692
|
AUTOMATIC = "AUTOMATIC",
|
|
4708
4693
|
/** Staff sorted by priority, highest first. */
|
|
@@ -4711,7 +4696,7 @@ declare enum StaffStrategySelection {
|
|
|
4711
4696
|
LOW_TO_HIGH_PRIORITY = "LOW_TO_HIGH_PRIORITY"
|
|
4712
4697
|
}
|
|
4713
4698
|
/** @enumType */
|
|
4714
|
-
type StaffStrategySelectionWithLiterals = StaffStrategySelection | '
|
|
4699
|
+
type StaffStrategySelectionWithLiterals = StaffStrategySelection | 'AUTOMATIC' | 'HIGH_TO_LOW_PRIORITY' | 'LOW_TO_HIGH_PRIORITY';
|
|
4715
4700
|
interface InPersonOptions {
|
|
4716
4701
|
/**
|
|
4717
4702
|
* Physical locations where the appointment can take place.
|
|
@@ -4828,7 +4813,6 @@ declare enum SubscriptionChannel {
|
|
|
4828
4813
|
/** @enumType */
|
|
4829
4814
|
type SubscriptionChannelWithLiterals = SubscriptionChannel | 'EMAIL' | 'SMS';
|
|
4830
4815
|
declare enum ContactField {
|
|
4831
|
-
UNKNOWN_CONTACT_FIELD = "UNKNOWN_CONTACT_FIELD",
|
|
4832
4816
|
/** Contact's first name. */
|
|
4833
4817
|
FIRST_NAME = "FIRST_NAME",
|
|
4834
4818
|
/** Contact's last name. */
|
|
@@ -4853,7 +4837,7 @@ declare enum ContactField {
|
|
|
4853
4837
|
VAT_ID = "VAT_ID"
|
|
4854
4838
|
}
|
|
4855
4839
|
/** @enumType */
|
|
4856
|
-
type ContactFieldWithLiterals = ContactField | '
|
|
4840
|
+
type ContactFieldWithLiterals = ContactField | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
|
|
4857
4841
|
interface EmailInfo {
|
|
4858
4842
|
/** Email categorization tag. */
|
|
4859
4843
|
tag?: EmailInfoTagWithLiterals;
|
|
@@ -5331,8 +5315,6 @@ declare enum SubscriptionInfoOptInLevel {
|
|
|
5331
5315
|
/** @enumType */
|
|
5332
5316
|
type SubscriptionInfoOptInLevelWithLiterals = SubscriptionInfoOptInLevel | 'UNKNOWN' | 'SINGLE_CONFIRMATION' | 'DOUBLE_CONFIRMATION';
|
|
5333
5317
|
declare enum FormFieldContactInfoContactField {
|
|
5334
|
-
/** Unknown contact field. */
|
|
5335
|
-
UNDEFINED = "UNDEFINED",
|
|
5336
5318
|
/** First name. */
|
|
5337
5319
|
FIRST_NAME = "FIRST_NAME",
|
|
5338
5320
|
/** CLast name. */
|
|
@@ -5357,7 +5339,7 @@ declare enum FormFieldContactInfoContactField {
|
|
|
5357
5339
|
VAT_ID = "VAT_ID"
|
|
5358
5340
|
}
|
|
5359
5341
|
/** @enumType */
|
|
5360
|
-
type FormFieldContactInfoContactFieldWithLiterals = FormFieldContactInfoContactField | '
|
|
5342
|
+
type FormFieldContactInfoContactFieldWithLiterals = FormFieldContactInfoContactField | 'FIRST_NAME' | 'LAST_NAME' | 'COMPANY' | 'POSITION' | 'EMAIL' | 'PHONE' | 'ADDRESS' | 'BIRTHDATE' | 'CUSTOM_FIELD' | 'SUBSCRIPTION' | 'VAT_ID';
|
|
5361
5343
|
interface FormFieldContactInfoEmailInfo {
|
|
5362
5344
|
/** Email tag. */
|
|
5363
5345
|
tag?: FormFieldContactInfoEmailInfoTagWithLiterals;
|
|
@@ -5431,8 +5413,6 @@ interface RequiredIndicatorProperties {
|
|
|
5431
5413
|
requiredIndicatorPlacement?: RequiredIndicatorPlacementWithLiterals;
|
|
5432
5414
|
}
|
|
5433
5415
|
declare enum RequiredIndicator {
|
|
5434
|
-
/** Unknown required indicator type. */
|
|
5435
|
-
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
5436
5416
|
/** Display an asterisk (*) symbol to indicate required fields. */
|
|
5437
5417
|
ASTERISK = "ASTERISK",
|
|
5438
5418
|
/** Display the text "Required" to indicate required fields. */
|
|
@@ -5441,17 +5421,15 @@ declare enum RequiredIndicator {
|
|
|
5441
5421
|
NONE = "NONE"
|
|
5442
5422
|
}
|
|
5443
5423
|
/** @enumType */
|
|
5444
|
-
type RequiredIndicatorWithLiterals = RequiredIndicator | '
|
|
5424
|
+
type RequiredIndicatorWithLiterals = RequiredIndicator | 'ASTERISK' | 'TEXT' | 'NONE';
|
|
5445
5425
|
declare enum RequiredIndicatorPlacement {
|
|
5446
|
-
/** Unknown required indicator placement. */
|
|
5447
|
-
UNKNOWN_PLACEMENT = "UNKNOWN_PLACEMENT",
|
|
5448
5426
|
/** Place the required indicator after the field title. */
|
|
5449
5427
|
AFTER_FIELD_TITLE = "AFTER_FIELD_TITLE",
|
|
5450
5428
|
/** Place the required indicator before the field title. */
|
|
5451
5429
|
BEFORE_FIELD_TITLE = "BEFORE_FIELD_TITLE"
|
|
5452
5430
|
}
|
|
5453
5431
|
/** @enumType */
|
|
5454
|
-
type RequiredIndicatorPlacementWithLiterals = RequiredIndicatorPlacement | '
|
|
5432
|
+
type RequiredIndicatorPlacementWithLiterals = RequiredIndicatorPlacement | 'AFTER_FIELD_TITLE' | 'BEFORE_FIELD_TITLE';
|
|
5455
5433
|
interface SubmitSettings extends SubmitSettingsSubmitSuccessActionOptionsOneOf {
|
|
5456
5434
|
/** Configuration for displaying a thank you message after submission. */
|
|
5457
5435
|
thankYouMessageOptions?: ThankYouMessageOptions;
|
|
@@ -5478,8 +5456,6 @@ declare enum Target {
|
|
|
5478
5456
|
/** @enumType */
|
|
5479
5457
|
type TargetWithLiterals = Target | 'UNKNOWN_TARGET' | 'SELF' | 'BLANK';
|
|
5480
5458
|
declare enum SubmitSuccessAction {
|
|
5481
|
-
/** Unknown submit success action. */
|
|
5482
|
-
UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
|
|
5483
5459
|
/** No action is taken after form submission. */
|
|
5484
5460
|
NO_ACTION = "NO_ACTION",
|
|
5485
5461
|
/** Display a thank you message after form submission. */
|
|
@@ -5488,7 +5464,7 @@ declare enum SubmitSuccessAction {
|
|
|
5488
5464
|
REDIRECT = "REDIRECT"
|
|
5489
5465
|
}
|
|
5490
5466
|
/** @enumType */
|
|
5491
|
-
type SubmitSuccessActionWithLiterals = SubmitSuccessAction | '
|
|
5467
|
+
type SubmitSuccessActionWithLiterals = SubmitSuccessAction | 'NO_ACTION' | 'THANK_YOU_MESSAGE' | 'REDIRECT';
|
|
5492
5468
|
interface ThankYouMessageOptions {
|
|
5493
5469
|
/**
|
|
5494
5470
|
* Duration in seconds before the thank you message automatically disappears.
|
|
@@ -5550,8 +5526,6 @@ interface Rule {
|
|
|
5550
5526
|
}
|
|
5551
5527
|
/** Enum for different types of field properties that can be modified by rules. */
|
|
5552
5528
|
declare enum ChangeableProperty {
|
|
5553
|
-
/** Unknown property type. */
|
|
5554
|
-
UNKNOWN_CHANGEABLE_PROPERTY = "UNKNOWN_CHANGEABLE_PROPERTY",
|
|
5555
5529
|
/** Required property type. */
|
|
5556
5530
|
REQUIRED = "REQUIRED",
|
|
5557
5531
|
/** Hidden property type. */
|
|
@@ -5560,7 +5534,7 @@ declare enum ChangeableProperty {
|
|
|
5560
5534
|
ALLOWED_VALUES = "ALLOWED_VALUES"
|
|
5561
5535
|
}
|
|
5562
5536
|
/** @enumType */
|
|
5563
|
-
type ChangeablePropertyWithLiterals = ChangeableProperty | '
|
|
5537
|
+
type ChangeablePropertyWithLiterals = ChangeableProperty | 'REQUIRED' | 'HIDDEN' | 'ALLOWED_VALUES';
|
|
5564
5538
|
interface RequiredOptions {
|
|
5565
5539
|
/** Whether the field should be required. */
|
|
5566
5540
|
required?: boolean;
|
|
@@ -5578,13 +5552,11 @@ interface AllowedValuesOptions {
|
|
|
5578
5552
|
allowedValues?: any[];
|
|
5579
5553
|
}
|
|
5580
5554
|
declare enum OverrideEntityTypeEnumOverrideEntityType {
|
|
5581
|
-
/** Unknown override entity type. */
|
|
5582
|
-
UNKNOWN_OVERRIDE_ENTITY_TYPE = "UNKNOWN_OVERRIDE_ENTITY_TYPE",
|
|
5583
5555
|
/** Override applies to a form field. */
|
|
5584
5556
|
FIELD = "FIELD"
|
|
5585
5557
|
}
|
|
5586
5558
|
/** @enumType */
|
|
5587
|
-
type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals = OverrideEntityTypeEnumOverrideEntityType | '
|
|
5559
|
+
type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals = OverrideEntityTypeEnumOverrideEntityType | 'FIELD';
|
|
5588
5560
|
interface FieldOverride extends FieldOverridePropertyTypeOptionsOneOf {
|
|
5589
5561
|
/** Configuration for changing the required property of a field. */
|
|
5590
5562
|
requiredOptions?: RequiredOptions;
|
|
@@ -5656,7 +5628,6 @@ interface Condition {
|
|
|
5656
5628
|
value?: any;
|
|
5657
5629
|
}
|
|
5658
5630
|
declare enum Operator {
|
|
5659
|
-
UNKNOWN_OPERATOR = "UNKNOWN_OPERATOR",
|
|
5660
5631
|
/** Specified value equals the value in the target field. */
|
|
5661
5632
|
EQUAL = "EQUAL",
|
|
5662
5633
|
/** Specified value doesn't equal the value in the target field. */
|
|
@@ -5711,7 +5682,7 @@ declare enum Operator {
|
|
|
5711
5682
|
IS_DATE_NEWER_THAN_OR_EQUAL = "IS_DATE_NEWER_THAN_OR_EQUAL"
|
|
5712
5683
|
}
|
|
5713
5684
|
/** @enumType */
|
|
5714
|
-
type OperatorWithLiterals = Operator | '
|
|
5685
|
+
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';
|
|
5715
5686
|
interface RuleFormOverride extends RuleFormOverrideEntityTypeOptionsOneOf {
|
|
5716
5687
|
/** Field override settings. */
|
|
5717
5688
|
fieldOptions?: FieldOverride;
|
|
@@ -5801,8 +5772,6 @@ interface QuizSettingsResultsDisplayOptionsOneOf {
|
|
|
5801
5772
|
scoreAndPassingStatusOptions?: PassFailMessages;
|
|
5802
5773
|
}
|
|
5803
5774
|
declare enum ResultsDisplay {
|
|
5804
|
-
/** Unknown results display type. */
|
|
5805
|
-
UNKNOWN_DISPLAY = "UNKNOWN_DISPLAY",
|
|
5806
5775
|
/** Do not show quiz score and passing status. */
|
|
5807
5776
|
DO_NOT_DISPLAY = "DO_NOT_DISPLAY",
|
|
5808
5777
|
/** Display only the user's score. */
|
|
@@ -5813,7 +5782,7 @@ declare enum ResultsDisplay {
|
|
|
5813
5782
|
SCORE_AND_PASSING_STATUS = "SCORE_AND_PASSING_STATUS"
|
|
5814
5783
|
}
|
|
5815
5784
|
/** @enumType */
|
|
5816
|
-
type ResultsDisplayWithLiterals = ResultsDisplay | '
|
|
5785
|
+
type ResultsDisplayWithLiterals = ResultsDisplay | 'DO_NOT_DISPLAY' | 'SCORE' | 'PASSING_STATUS' | 'SCORE_AND_PASSING_STATUS';
|
|
5817
5786
|
interface PassFailMessages {
|
|
5818
5787
|
/** Message displayed when the user passes the quiz. */
|
|
5819
5788
|
passMessage?: RichContent;
|
|
@@ -5821,15 +5790,13 @@ interface PassFailMessages {
|
|
|
5821
5790
|
failMessage?: RichContent;
|
|
5822
5791
|
}
|
|
5823
5792
|
declare enum ContactAutofill {
|
|
5824
|
-
/** Unknown contact autofill source. */
|
|
5825
|
-
UNKNOWN_CONTACT_AUTOFILL = "UNKNOWN_CONTACT_AUTOFILL",
|
|
5826
5793
|
/** Use site member data to autofill contact fields. */
|
|
5827
5794
|
MEMBER_DATA = "MEMBER_DATA",
|
|
5828
5795
|
/** Use form input data to autofill contact fields. */
|
|
5829
5796
|
FORM_INPUT = "FORM_INPUT"
|
|
5830
5797
|
}
|
|
5831
5798
|
/** @enumType */
|
|
5832
|
-
type ContactAutofillWithLiterals = ContactAutofill | '
|
|
5799
|
+
type ContactAutofillWithLiterals = ContactAutofill | 'MEMBER_DATA' | 'FORM_INPUT';
|
|
5833
5800
|
interface CreateCheckoutFromSubmissionResponse {
|
|
5834
5801
|
/**
|
|
5835
5802
|
* Checkout ID (applicable for form involving payments).
|
|
@@ -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-CqVoo7cC.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-BeboyW2D.mjs';
|
|
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-BeboyW2D.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
|
@@ -863,7 +863,6 @@ import { transformPaths as transformPaths2 } from "@wix/sdk-runtime/transformati
|
|
|
863
863
|
import { createSearchUtils } from "@wix/sdk-runtime/search-builder-utils";
|
|
864
864
|
import { createQueryUtils } from "@wix/sdk-runtime/query-builder-utils";
|
|
865
865
|
var SubmissionStatus = /* @__PURE__ */ ((SubmissionStatus2) => {
|
|
866
|
-
SubmissionStatus2["UNKNOWN_SUBMISSION_STATUS"] = "UNKNOWN_SUBMISSION_STATUS";
|
|
867
866
|
SubmissionStatus2["PENDING"] = "PENDING";
|
|
868
867
|
SubmissionStatus2["CONFIRMED"] = "CONFIRMED";
|
|
869
868
|
SubmissionStatus2["PAYMENT_WAITING"] = "PAYMENT_WAITING";
|
|
@@ -920,13 +919,11 @@ var ValidationFormat = /* @__PURE__ */ ((ValidationFormat2) => {
|
|
|
920
919
|
return ValidationFormat2;
|
|
921
920
|
})(ValidationFormat || {});
|
|
922
921
|
var ProductType = /* @__PURE__ */ ((ProductType2) => {
|
|
923
|
-
ProductType2["UNKNOWN_PRODUCT_TYPE"] = "UNKNOWN_PRODUCT_TYPE";
|
|
924
922
|
ProductType2["SHIPPABLE"] = "SHIPPABLE";
|
|
925
923
|
ProductType2["DIGITAL"] = "DIGITAL";
|
|
926
924
|
return ProductType2;
|
|
927
925
|
})(ProductType || {});
|
|
928
926
|
var PriceType = /* @__PURE__ */ ((PriceType2) => {
|
|
929
|
-
PriceType2["UNKNOWN_PRICE_TYPE"] = "UNKNOWN_PRICE_TYPE";
|
|
930
927
|
PriceType2["FIXED_PRICE"] = "FIXED_PRICE";
|
|
931
928
|
PriceType2["DYNAMIC_PRICE"] = "DYNAMIC_PRICE";
|
|
932
929
|
return PriceType2;
|
|
@@ -1272,26 +1269,22 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
|
1272
1269
|
return DesignTarget2;
|
|
1273
1270
|
})(DesignTarget || {});
|
|
1274
1271
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1275
|
-
ImagePosition2["UNKNOWN_IMAGE_POSITION"] = "UNKNOWN_IMAGE_POSITION";
|
|
1276
1272
|
ImagePosition2["ABOVE"] = "ABOVE";
|
|
1277
1273
|
ImagePosition2["BELOW"] = "BELOW";
|
|
1278
1274
|
return ImagePosition2;
|
|
1279
1275
|
})(ImagePosition || {});
|
|
1280
1276
|
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
1281
|
-
Alignment2["UNKNOWN_ALIGNMENT"] = "UNKNOWN_ALIGNMENT";
|
|
1282
1277
|
Alignment2["LEFT"] = "LEFT";
|
|
1283
1278
|
Alignment2["CENTER"] = "CENTER";
|
|
1284
1279
|
Alignment2["RIGHT"] = "RIGHT";
|
|
1285
1280
|
return Alignment2;
|
|
1286
1281
|
})(Alignment || {});
|
|
1287
1282
|
var ImageFit = /* @__PURE__ */ ((ImageFit2) => {
|
|
1288
|
-
ImageFit2["UNKNOWN_IMAGE_FIT"] = "UNKNOWN_IMAGE_FIT";
|
|
1289
1283
|
ImageFit2["COVER"] = "COVER";
|
|
1290
1284
|
ImageFit2["CONTAIN"] = "CONTAIN";
|
|
1291
1285
|
return ImageFit2;
|
|
1292
1286
|
})(ImageFit || {});
|
|
1293
1287
|
var NumberOfColumns = /* @__PURE__ */ ((NumberOfColumns2) => {
|
|
1294
|
-
NumberOfColumns2["UNKNOWN_NUMBER_OF_COLUMNS"] = "UNKNOWN_NUMBER_OF_COLUMNS";
|
|
1295
1288
|
NumberOfColumns2["ZERO"] = "ZERO";
|
|
1296
1289
|
NumberOfColumns2["ONE"] = "ONE";
|
|
1297
1290
|
NumberOfColumns2["TWO"] = "TWO";
|
|
@@ -1315,14 +1308,12 @@ var BooleanComponentType = /* @__PURE__ */ ((BooleanComponentType2) => {
|
|
|
1315
1308
|
return BooleanComponentType2;
|
|
1316
1309
|
})(BooleanComponentType || {});
|
|
1317
1310
|
var ItemType = /* @__PURE__ */ ((ItemType2) => {
|
|
1318
|
-
ItemType2["UNKNOWN_ITEM_TYPE"] = "UNKNOWN_ITEM_TYPE";
|
|
1319
1311
|
ItemType2["STRING"] = "STRING";
|
|
1320
1312
|
ItemType2["NUMBER"] = "NUMBER";
|
|
1321
1313
|
ItemType2["BOOLEAN"] = "BOOLEAN";
|
|
1322
1314
|
return ItemType2;
|
|
1323
1315
|
})(ItemType || {});
|
|
1324
1316
|
var PropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypeEnum2) => {
|
|
1325
|
-
PropertiesTypeEnum2["UNKNOWN_PROPERTY_TYPE"] = "UNKNOWN_PROPERTY_TYPE";
|
|
1326
1317
|
PropertiesTypeEnum2["STRING"] = "STRING";
|
|
1327
1318
|
PropertiesTypeEnum2["NUMBER"] = "NUMBER";
|
|
1328
1319
|
PropertiesTypeEnum2["BOOLEAN"] = "BOOLEAN";
|
|
@@ -1343,7 +1334,6 @@ var WixFileComponentType = /* @__PURE__ */ ((WixFileComponentType2) => {
|
|
|
1343
1334
|
return WixFileComponentType2;
|
|
1344
1335
|
})(WixFileComponentType || {});
|
|
1345
1336
|
var UploadFileFormat = /* @__PURE__ */ ((UploadFileFormat2) => {
|
|
1346
|
-
UploadFileFormat2["UNKNOWN_UPLOAD_FILE_FORMAT"] = "UNKNOWN_UPLOAD_FILE_FORMAT";
|
|
1347
1337
|
UploadFileFormat2["VIDEO"] = "VIDEO";
|
|
1348
1338
|
UploadFileFormat2["IMAGE"] = "IMAGE";
|
|
1349
1339
|
UploadFileFormat2["AUDIO"] = "AUDIO";
|
|
@@ -1381,20 +1371,17 @@ var SchedulingComponentType = /* @__PURE__ */ ((SchedulingComponentType2) => {
|
|
|
1381
1371
|
return SchedulingComponentType2;
|
|
1382
1372
|
})(SchedulingComponentType || {});
|
|
1383
1373
|
var Format = /* @__PURE__ */ ((Format2) => {
|
|
1384
|
-
Format2["UNKNOWN_FORMAT_TYPE"] = "UNKNOWN_FORMAT_TYPE";
|
|
1385
1374
|
Format2["IN_PERSON"] = "IN_PERSON";
|
|
1386
1375
|
Format2["VIDEO_CONFERENCE"] = "VIDEO_CONFERENCE";
|
|
1387
1376
|
Format2["PHONE"] = "PHONE";
|
|
1388
1377
|
return Format2;
|
|
1389
1378
|
})(Format || {});
|
|
1390
1379
|
var MeetingType = /* @__PURE__ */ ((MeetingType2) => {
|
|
1391
|
-
MeetingType2["UNKNOWN_MEETING_TYPE"] = "UNKNOWN_MEETING_TYPE";
|
|
1392
1380
|
MeetingType2["SINGLE_STAFF"] = "SINGLE_STAFF";
|
|
1393
1381
|
MeetingType2["ROUND_ROBIN"] = "ROUND_ROBIN";
|
|
1394
1382
|
return MeetingType2;
|
|
1395
1383
|
})(MeetingType || {});
|
|
1396
1384
|
var StaffStrategySelection = /* @__PURE__ */ ((StaffStrategySelection2) => {
|
|
1397
|
-
StaffStrategySelection2["UNKNOWN_STAFF_STRATEGY_SELECTION"] = "UNKNOWN_STAFF_STRATEGY_SELECTION";
|
|
1398
1385
|
StaffStrategySelection2["AUTOMATIC"] = "AUTOMATIC";
|
|
1399
1386
|
StaffStrategySelection2["HIGH_TO_LOW_PRIORITY"] = "HIGH_TO_LOW_PRIORITY";
|
|
1400
1387
|
StaffStrategySelection2["LOW_TO_HIGH_PRIORITY"] = "LOW_TO_HIGH_PRIORITY";
|
|
@@ -1440,7 +1427,6 @@ var SubscriptionChannel = /* @__PURE__ */ ((SubscriptionChannel2) => {
|
|
|
1440
1427
|
return SubscriptionChannel2;
|
|
1441
1428
|
})(SubscriptionChannel || {});
|
|
1442
1429
|
var ContactField = /* @__PURE__ */ ((ContactField2) => {
|
|
1443
|
-
ContactField2["UNKNOWN_CONTACT_FIELD"] = "UNKNOWN_CONTACT_FIELD";
|
|
1444
1430
|
ContactField2["FIRST_NAME"] = "FIRST_NAME";
|
|
1445
1431
|
ContactField2["LAST_NAME"] = "LAST_NAME";
|
|
1446
1432
|
ContactField2["COMPANY"] = "COMPANY";
|
|
@@ -1493,7 +1479,6 @@ var SubscriptionInfoOptInLevel = /* @__PURE__ */ ((SubscriptionInfoOptInLevel2)
|
|
|
1493
1479
|
return SubscriptionInfoOptInLevel2;
|
|
1494
1480
|
})(SubscriptionInfoOptInLevel || {});
|
|
1495
1481
|
var FormFieldContactInfoContactField = /* @__PURE__ */ ((FormFieldContactInfoContactField2) => {
|
|
1496
|
-
FormFieldContactInfoContactField2["UNDEFINED"] = "UNDEFINED";
|
|
1497
1482
|
FormFieldContactInfoContactField2["FIRST_NAME"] = "FIRST_NAME";
|
|
1498
1483
|
FormFieldContactInfoContactField2["LAST_NAME"] = "LAST_NAME";
|
|
1499
1484
|
FormFieldContactInfoContactField2["COMPANY"] = "COMPANY";
|
|
@@ -1515,14 +1500,12 @@ var SpamFilterProtectionLevel = /* @__PURE__ */ ((SpamFilterProtectionLevel2) =>
|
|
|
1515
1500
|
return SpamFilterProtectionLevel2;
|
|
1516
1501
|
})(SpamFilterProtectionLevel || {});
|
|
1517
1502
|
var RequiredIndicator = /* @__PURE__ */ ((RequiredIndicator2) => {
|
|
1518
|
-
RequiredIndicator2["UNKNOWN_INDICATOR"] = "UNKNOWN_INDICATOR";
|
|
1519
1503
|
RequiredIndicator2["ASTERISK"] = "ASTERISK";
|
|
1520
1504
|
RequiredIndicator2["TEXT"] = "TEXT";
|
|
1521
1505
|
RequiredIndicator2["NONE"] = "NONE";
|
|
1522
1506
|
return RequiredIndicator2;
|
|
1523
1507
|
})(RequiredIndicator || {});
|
|
1524
1508
|
var RequiredIndicatorPlacement = /* @__PURE__ */ ((RequiredIndicatorPlacement2) => {
|
|
1525
|
-
RequiredIndicatorPlacement2["UNKNOWN_PLACEMENT"] = "UNKNOWN_PLACEMENT";
|
|
1526
1509
|
RequiredIndicatorPlacement2["AFTER_FIELD_TITLE"] = "AFTER_FIELD_TITLE";
|
|
1527
1510
|
RequiredIndicatorPlacement2["BEFORE_FIELD_TITLE"] = "BEFORE_FIELD_TITLE";
|
|
1528
1511
|
return RequiredIndicatorPlacement2;
|
|
@@ -1534,26 +1517,22 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
1534
1517
|
return Target2;
|
|
1535
1518
|
})(Target || {});
|
|
1536
1519
|
var SubmitSuccessAction = /* @__PURE__ */ ((SubmitSuccessAction2) => {
|
|
1537
|
-
SubmitSuccessAction2["UNKNOWN_SUBMIT_SUCCESS_ACTION"] = "UNKNOWN_SUBMIT_SUCCESS_ACTION";
|
|
1538
1520
|
SubmitSuccessAction2["NO_ACTION"] = "NO_ACTION";
|
|
1539
1521
|
SubmitSuccessAction2["THANK_YOU_MESSAGE"] = "THANK_YOU_MESSAGE";
|
|
1540
1522
|
SubmitSuccessAction2["REDIRECT"] = "REDIRECT";
|
|
1541
1523
|
return SubmitSuccessAction2;
|
|
1542
1524
|
})(SubmitSuccessAction || {});
|
|
1543
1525
|
var ChangeableProperty = /* @__PURE__ */ ((ChangeableProperty2) => {
|
|
1544
|
-
ChangeableProperty2["UNKNOWN_CHANGEABLE_PROPERTY"] = "UNKNOWN_CHANGEABLE_PROPERTY";
|
|
1545
1526
|
ChangeableProperty2["REQUIRED"] = "REQUIRED";
|
|
1546
1527
|
ChangeableProperty2["HIDDEN"] = "HIDDEN";
|
|
1547
1528
|
ChangeableProperty2["ALLOWED_VALUES"] = "ALLOWED_VALUES";
|
|
1548
1529
|
return ChangeableProperty2;
|
|
1549
1530
|
})(ChangeableProperty || {});
|
|
1550
1531
|
var OverrideEntityTypeEnumOverrideEntityType = /* @__PURE__ */ ((OverrideEntityTypeEnumOverrideEntityType2) => {
|
|
1551
|
-
OverrideEntityTypeEnumOverrideEntityType2["UNKNOWN_OVERRIDE_ENTITY_TYPE"] = "UNKNOWN_OVERRIDE_ENTITY_TYPE";
|
|
1552
1532
|
OverrideEntityTypeEnumOverrideEntityType2["FIELD"] = "FIELD";
|
|
1553
1533
|
return OverrideEntityTypeEnumOverrideEntityType2;
|
|
1554
1534
|
})(OverrideEntityTypeEnumOverrideEntityType || {});
|
|
1555
1535
|
var Operator = /* @__PURE__ */ ((Operator2) => {
|
|
1556
|
-
Operator2["UNKNOWN_OPERATOR"] = "UNKNOWN_OPERATOR";
|
|
1557
1536
|
Operator2["EQUAL"] = "EQUAL";
|
|
1558
1537
|
Operator2["NOT_EQUAL"] = "NOT_EQUAL";
|
|
1559
1538
|
Operator2["EMPTY"] = "EMPTY";
|
|
@@ -1583,7 +1562,6 @@ var Operator = /* @__PURE__ */ ((Operator2) => {
|
|
|
1583
1562
|
return Operator2;
|
|
1584
1563
|
})(Operator || {});
|
|
1585
1564
|
var ResultsDisplay = /* @__PURE__ */ ((ResultsDisplay2) => {
|
|
1586
|
-
ResultsDisplay2["UNKNOWN_DISPLAY"] = "UNKNOWN_DISPLAY";
|
|
1587
1565
|
ResultsDisplay2["DO_NOT_DISPLAY"] = "DO_NOT_DISPLAY";
|
|
1588
1566
|
ResultsDisplay2["SCORE"] = "SCORE";
|
|
1589
1567
|
ResultsDisplay2["PASSING_STATUS"] = "PASSING_STATUS";
|
|
@@ -1591,7 +1569,6 @@ var ResultsDisplay = /* @__PURE__ */ ((ResultsDisplay2) => {
|
|
|
1591
1569
|
return ResultsDisplay2;
|
|
1592
1570
|
})(ResultsDisplay || {});
|
|
1593
1571
|
var ContactAutofill = /* @__PURE__ */ ((ContactAutofill2) => {
|
|
1594
|
-
ContactAutofill2["UNKNOWN_CONTACT_AUTOFILL"] = "UNKNOWN_CONTACT_AUTOFILL";
|
|
1595
1572
|
ContactAutofill2["MEMBER_DATA"] = "MEMBER_DATA";
|
|
1596
1573
|
ContactAutofill2["FORM_INPUT"] = "FORM_INPUT";
|
|
1597
1574
|
return ContactAutofill2;
|