@wix/auto_sdk_forms_submissions 1.0.96 → 1.0.98
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-CG5mgBXv.d.ts → forms-v4-submission-submissions.universal-DkEEErBR.d.ts} +180 -18
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +61 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +61 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +166 -13
- package/build/cjs/meta.js +52 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-CG5mgBXv.d.mts → forms-v4-submission-submissions.universal-DkEEErBR.d.mts} +180 -18
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +55 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +55 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +166 -13
- package/build/es/meta.mjs +46 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-CioD21SQ.d.ts → forms-v4-submission-submissions.universal-CqVoo7cC.d.ts} +180 -18
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +61 -3
- 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 +61 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +166 -13
- package/build/internal/cjs/meta.js +52 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-CioD21SQ.d.mts → forms-v4-submission-submissions.universal-CqVoo7cC.d.mts} +180 -18
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +55 -3
- 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 +55 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +166 -13
- package/build/internal/es/meta.mjs +46 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _wix_sdk_types from '@wix/sdk-types';
|
|
2
|
-
import { SearchSpec, QuerySpec,
|
|
2
|
+
import { SearchSpec, QuerySpec, Search, Query, NonNullablePaths } from '@wix/sdk-types';
|
|
3
3
|
|
|
4
4
|
/** Form submission that was created or retrieved. */
|
|
5
5
|
interface FormSubmission {
|
|
@@ -227,10 +227,21 @@ interface MarketingSubscriptionDetails {
|
|
|
227
227
|
*/
|
|
228
228
|
submittedDate?: Date | null;
|
|
229
229
|
/**
|
|
230
|
-
*
|
|
230
|
+
* Email subscription consent opt in level, either single or double confirmation.
|
|
231
231
|
* Default: SINGLE_CONFIRMATION
|
|
232
232
|
*/
|
|
233
233
|
optInLevel?: OptInLevelWithLiterals;
|
|
234
|
+
/**
|
|
235
|
+
* Mapped valid contact phones.
|
|
236
|
+
* @format PHONE
|
|
237
|
+
* @maxSize 100
|
|
238
|
+
*/
|
|
239
|
+
phones?: string[];
|
|
240
|
+
/**
|
|
241
|
+
* Phone subscription consent opt in level, either single or double confirmation.
|
|
242
|
+
* Default: SINGLE_CONFIRMATION
|
|
243
|
+
*/
|
|
244
|
+
phoneOptInLevel?: OptInLevelWithLiterals;
|
|
234
245
|
}
|
|
235
246
|
declare enum OptInLevel {
|
|
236
247
|
/** Single confirmation. */
|
|
@@ -532,6 +543,8 @@ interface Form {
|
|
|
532
543
|
formRules?: Rule[];
|
|
533
544
|
/** Tag IDs collections associated with the current entity. */
|
|
534
545
|
tags?: Tags;
|
|
546
|
+
/** Source used for contact autofill when filling form fields. Default: FORM_INPUT. */
|
|
547
|
+
autoFillContact?: ContactAutofillWithLiterals;
|
|
535
548
|
}
|
|
536
549
|
interface FormField {
|
|
537
550
|
/**
|
|
@@ -566,7 +579,7 @@ interface FormFieldStringType extends FormFieldStringTypeFormatOptionsOneOf {
|
|
|
566
579
|
/** DATE format options */
|
|
567
580
|
dateOptions?: StringTypeDateTimeConstraints;
|
|
568
581
|
/** DATE_TIME format options */
|
|
569
|
-
dateTimeOptions?:
|
|
582
|
+
dateTimeOptions?: DateTimeAdvancedConstraints;
|
|
570
583
|
/** TIME format options */
|
|
571
584
|
timeOptions?: StringTypeDateTimeConstraints;
|
|
572
585
|
/** DATE_OPTIONAL_TIME format options */
|
|
@@ -606,7 +619,7 @@ interface FormFieldStringTypeFormatOptionsOneOf {
|
|
|
606
619
|
/** DATE format options */
|
|
607
620
|
dateOptions?: StringTypeDateTimeConstraints;
|
|
608
621
|
/** DATE_TIME format options */
|
|
609
|
-
dateTimeOptions?:
|
|
622
|
+
dateTimeOptions?: DateTimeAdvancedConstraints;
|
|
610
623
|
/** TIME format options */
|
|
611
624
|
timeOptions?: StringTypeDateTimeConstraints;
|
|
612
625
|
/** DATE_OPTIONAL_TIME format options */
|
|
@@ -657,6 +670,63 @@ interface StringTypeDateTimeConstraints {
|
|
|
657
670
|
*/
|
|
658
671
|
maximum?: string | null;
|
|
659
672
|
}
|
|
673
|
+
interface DateTimeAdvancedConstraints {
|
|
674
|
+
/**
|
|
675
|
+
* Allows to specify available and unavailable dates and days of the week.
|
|
676
|
+
* If unset, all dates from minimum to maximum are available.
|
|
677
|
+
*/
|
|
678
|
+
availability?: Availability;
|
|
679
|
+
/**
|
|
680
|
+
* Support static constrains defined as ISO date/time format, as well as
|
|
681
|
+
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
682
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
683
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
684
|
+
* @maxLength 50
|
|
685
|
+
*/
|
|
686
|
+
minimum?: string | null;
|
|
687
|
+
/**
|
|
688
|
+
* Support static constrains defined as ISO date/time format, as well as
|
|
689
|
+
* dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
|
|
690
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
691
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
692
|
+
* @maxLength 50
|
|
693
|
+
*/
|
|
694
|
+
maximum?: string | null;
|
|
695
|
+
}
|
|
696
|
+
interface Availability {
|
|
697
|
+
/**
|
|
698
|
+
* Available date ranges. They give priority to unavailable_dates in case of overlap.
|
|
699
|
+
* @maxSize 5
|
|
700
|
+
*/
|
|
701
|
+
availableDates?: DateRange[];
|
|
702
|
+
/**
|
|
703
|
+
* Unavailable date ranges. They take priority over available_dates in case of overlap.
|
|
704
|
+
* @maxSize 5
|
|
705
|
+
*/
|
|
706
|
+
unavailableDates?: DateRange[];
|
|
707
|
+
/**
|
|
708
|
+
* During available_dates, only these days of the week are available.
|
|
709
|
+
* @maxSize 7
|
|
710
|
+
*/
|
|
711
|
+
availableDays?: DayOfWeekWithLiterals[];
|
|
712
|
+
}
|
|
713
|
+
interface DateRange {
|
|
714
|
+
/** The beginning of the date range (inclusive). */
|
|
715
|
+
start?: Date | null;
|
|
716
|
+
/** The end of the date range (exclusive). */
|
|
717
|
+
end?: Date | null;
|
|
718
|
+
}
|
|
719
|
+
declare enum DayOfWeek {
|
|
720
|
+
MONDAY = "MONDAY",
|
|
721
|
+
TUESDAY = "TUESDAY",
|
|
722
|
+
WEDNESDAY = "WEDNESDAY",
|
|
723
|
+
THURSDAY = "THURSDAY",
|
|
724
|
+
FRIDAY = "FRIDAY",
|
|
725
|
+
SATURDAY = "SATURDAY",
|
|
726
|
+
SUNDAY = "SUNDAY"
|
|
727
|
+
}
|
|
728
|
+
/** @enumType */
|
|
729
|
+
type DayOfWeekWithLiterals = DayOfWeek | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY';
|
|
660
730
|
interface StringTypePhoneConstraints {
|
|
661
731
|
/**
|
|
662
732
|
* Country codes for phone number that are allowed
|
|
@@ -1188,7 +1258,7 @@ interface StringType extends StringTypeFormatOptionsOneOf {
|
|
|
1188
1258
|
/** Validation rules for strings with date format. */
|
|
1189
1259
|
dateOptions?: DateTimeConstraints;
|
|
1190
1260
|
/** Validation rules for strings with date and time format. */
|
|
1191
|
-
dateTimeOptions?:
|
|
1261
|
+
dateTimeOptions?: DateTimeAdvancedConstraints;
|
|
1192
1262
|
/** Validation rules for strings with time format. */
|
|
1193
1263
|
timeOptions?: DateTimeConstraints;
|
|
1194
1264
|
/** Validation rules for string with date and time format, where time is optional. */
|
|
@@ -1227,7 +1297,7 @@ interface StringTypeFormatOptionsOneOf {
|
|
|
1227
1297
|
/** Validation rules for strings with date format. */
|
|
1228
1298
|
dateOptions?: DateTimeConstraints;
|
|
1229
1299
|
/** Validation rules for strings with date and time format. */
|
|
1230
|
-
dateTimeOptions?:
|
|
1300
|
+
dateTimeOptions?: DateTimeAdvancedConstraints;
|
|
1231
1301
|
/** Validation rules for strings with time format. */
|
|
1232
1302
|
timeOptions?: DateTimeConstraints;
|
|
1233
1303
|
/** Validation rules for string with date and time format, where time is optional. */
|
|
@@ -3141,6 +3211,8 @@ interface LayoutData {
|
|
|
3141
3211
|
containerData?: PluginContainerData;
|
|
3142
3212
|
/** Defines where selected design propertied applies to */
|
|
3143
3213
|
designTarget?: DesignTargetWithLiterals;
|
|
3214
|
+
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
3215
|
+
banner?: Banner;
|
|
3144
3216
|
}
|
|
3145
3217
|
declare enum Scaling {
|
|
3146
3218
|
/** Auto image scaling */
|
|
@@ -3174,6 +3246,14 @@ declare enum LayoutDataImagePosition {
|
|
|
3174
3246
|
}
|
|
3175
3247
|
/** @enumType */
|
|
3176
3248
|
type LayoutDataImagePositionWithLiterals = LayoutDataImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
3249
|
+
declare enum Origin {
|
|
3250
|
+
/** Banner originated from an image */
|
|
3251
|
+
IMAGE = "IMAGE",
|
|
3252
|
+
/** Banner originated from a layout */
|
|
3253
|
+
LAYOUT = "LAYOUT"
|
|
3254
|
+
}
|
|
3255
|
+
/** @enumType */
|
|
3256
|
+
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
3177
3257
|
interface BackgroundImage {
|
|
3178
3258
|
/** Background image. */
|
|
3179
3259
|
media?: Media;
|
|
@@ -3210,6 +3290,10 @@ declare enum DesignTarget {
|
|
|
3210
3290
|
}
|
|
3211
3291
|
/** @enumType */
|
|
3212
3292
|
type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
3293
|
+
interface Banner {
|
|
3294
|
+
/** Origin of the banner */
|
|
3295
|
+
origin?: OriginWithLiterals;
|
|
3296
|
+
}
|
|
3213
3297
|
interface LayoutCellData {
|
|
3214
3298
|
/** Size of the cell in 12 columns grid. */
|
|
3215
3299
|
colSpan?: number | null;
|
|
@@ -3490,7 +3574,10 @@ interface DateTimeInput {
|
|
|
3490
3574
|
use24HourFormat?: boolean;
|
|
3491
3575
|
/**
|
|
3492
3576
|
* Default value for the field. This value is pre-populated in the field when the form loads.
|
|
3493
|
-
*
|
|
3577
|
+
* Supports static constrains defined as ISO date-time format, as well as dynamic calculations using special keywords
|
|
3578
|
+
* such as "$now" to represent the current date and time.
|
|
3579
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3580
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3494
3581
|
*/
|
|
3495
3582
|
default?: string | null;
|
|
3496
3583
|
/** Media content associated with the field, such as an image. */
|
|
@@ -3561,7 +3648,10 @@ interface DateInput {
|
|
|
3561
3648
|
showPlaceholder?: boolean | null;
|
|
3562
3649
|
/**
|
|
3563
3650
|
* Default value for the field. This value is pre-populated in the field when the form loads.
|
|
3564
|
-
*
|
|
3651
|
+
* Supports static constrains defined as ISO date format, as well as dynamic calculations using special keywords
|
|
3652
|
+
* such as "$now" to represent the current date and time.
|
|
3653
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3654
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3565
3655
|
*/
|
|
3566
3656
|
default?: string | null;
|
|
3567
3657
|
/** Media content associated with the field, such as an image. */
|
|
@@ -3602,7 +3692,10 @@ interface TimeInput {
|
|
|
3602
3692
|
use24HourFormat?: boolean;
|
|
3603
3693
|
/**
|
|
3604
3694
|
* Default value for the field. This value is pre-populated in the field when the form loads.
|
|
3605
|
-
*
|
|
3695
|
+
* Supports static constrains defined as ISO time format, as well as dynamic calculations using special keywords
|
|
3696
|
+
* such as "$now" to represent the current date and time.
|
|
3697
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3698
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3606
3699
|
*/
|
|
3607
3700
|
default?: string | null;
|
|
3608
3701
|
/** Media content associated with the field, such as an image. */
|
|
@@ -3633,7 +3726,10 @@ interface DatePicker {
|
|
|
3633
3726
|
firstDayOfWeek?: FirstDayOfWeekWithLiterals;
|
|
3634
3727
|
/**
|
|
3635
3728
|
* Default value for the field. This value is pre-populated in the field when the form loads.
|
|
3636
|
-
*
|
|
3729
|
+
* Supports static constrains defined as ISO date format, as well as dynamic calculations using special keywords
|
|
3730
|
+
* such as "$now" to represent the current date and time.
|
|
3731
|
+
* The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
|
|
3732
|
+
* The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
|
|
3637
3733
|
*/
|
|
3638
3734
|
default?: string | null;
|
|
3639
3735
|
/** Media content associated with the field, such as an image. */
|
|
@@ -4596,6 +4692,26 @@ declare enum Format {
|
|
|
4596
4692
|
}
|
|
4597
4693
|
/** @enumType */
|
|
4598
4694
|
type FormatWithLiterals = Format | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
|
|
4695
|
+
declare enum MeetingType {
|
|
4696
|
+
UNKNOWN_MEETING_TYPE = "UNKNOWN_MEETING_TYPE",
|
|
4697
|
+
/** Single staff member provides the service. */
|
|
4698
|
+
SINGLE_STAFF = "SINGLE_STAFF",
|
|
4699
|
+
/** Multiple staff members rotate via round robin scheduling. */
|
|
4700
|
+
ROUND_ROBIN = "ROUND_ROBIN"
|
|
4701
|
+
}
|
|
4702
|
+
/** @enumType */
|
|
4703
|
+
type MeetingTypeWithLiterals = MeetingType | 'UNKNOWN_MEETING_TYPE' | 'SINGLE_STAFF' | 'ROUND_ROBIN';
|
|
4704
|
+
declare enum StaffStrategySelection {
|
|
4705
|
+
UNKNOWN_STAFF_STRATEGY_SELECTION = "UNKNOWN_STAFF_STRATEGY_SELECTION",
|
|
4706
|
+
/** Staff selected randomly. */
|
|
4707
|
+
AUTOMATIC = "AUTOMATIC",
|
|
4708
|
+
/** Staff sorted by priority, highest first. */
|
|
4709
|
+
HIGH_TO_LOW_PRIORITY = "HIGH_TO_LOW_PRIORITY",
|
|
4710
|
+
/** Staff sorted by priority, lowest first. */
|
|
4711
|
+
LOW_TO_HIGH_PRIORITY = "LOW_TO_HIGH_PRIORITY"
|
|
4712
|
+
}
|
|
4713
|
+
/** @enumType */
|
|
4714
|
+
type StaffStrategySelectionWithLiterals = StaffStrategySelection | 'UNKNOWN_STAFF_STRATEGY_SELECTION' | 'AUTOMATIC' | 'HIGH_TO_LOW_PRIORITY' | 'LOW_TO_HIGH_PRIORITY';
|
|
4599
4715
|
interface InPersonOptions {
|
|
4600
4716
|
/**
|
|
4601
4717
|
* Physical locations where the appointment can take place.
|
|
@@ -4703,6 +4819,14 @@ declare enum ConfirmationLevel {
|
|
|
4703
4819
|
}
|
|
4704
4820
|
/** @enumType */
|
|
4705
4821
|
type ConfirmationLevelWithLiterals = ConfirmationLevel | 'UNKNOWN_CONFIRMATION_LEVEL' | 'SINGLE_CONFIRMATION' | 'DOUBLE_CONFIRMATION';
|
|
4822
|
+
declare enum SubscriptionChannel {
|
|
4823
|
+
/** Email subscription channel. */
|
|
4824
|
+
EMAIL = "EMAIL",
|
|
4825
|
+
/** SMS subscription channel. */
|
|
4826
|
+
SMS = "SMS"
|
|
4827
|
+
}
|
|
4828
|
+
/** @enumType */
|
|
4829
|
+
type SubscriptionChannelWithLiterals = SubscriptionChannel | 'EMAIL' | 'SMS';
|
|
4706
4830
|
declare enum ContactField {
|
|
4707
4831
|
UNKNOWN_CONTACT_FIELD = "UNKNOWN_CONTACT_FIELD",
|
|
4708
4832
|
/** Contact's first name. */
|
|
@@ -4756,6 +4880,12 @@ interface SubscriptionInfo {
|
|
|
4756
4880
|
* Default: `SINGLE_CONFIRMATION`
|
|
4757
4881
|
*/
|
|
4758
4882
|
confirmationLevel?: ConfirmationLevelWithLiterals;
|
|
4883
|
+
/**
|
|
4884
|
+
* Subscription channels.
|
|
4885
|
+
* When not specified, defaults to `EMAIL`.
|
|
4886
|
+
* @maxSize 2
|
|
4887
|
+
*/
|
|
4888
|
+
subscriptionChannels?: SubscriptionChannelWithLiterals[];
|
|
4759
4889
|
}
|
|
4760
4890
|
interface _String extends _StringComponentTypeOptionsOneOf {
|
|
4761
4891
|
/** Text input component settings. */
|
|
@@ -5254,6 +5384,12 @@ interface FormFieldContactInfoSubscriptionInfo {
|
|
|
5254
5384
|
* Default: `SINGLE_CONFIRMATION`
|
|
5255
5385
|
*/
|
|
5256
5386
|
optInLevel?: SubscriptionInfoOptInLevelWithLiterals;
|
|
5387
|
+
/**
|
|
5388
|
+
* Subscription channels.
|
|
5389
|
+
* When not specified, defaults to `EMAIL`.
|
|
5390
|
+
* @maxSize 2
|
|
5391
|
+
*/
|
|
5392
|
+
subscriptionChannels?: SubscriptionChannelWithLiterals[];
|
|
5257
5393
|
}
|
|
5258
5394
|
interface NestedForm {
|
|
5259
5395
|
/**
|
|
@@ -5270,6 +5406,11 @@ interface LimitationRule {
|
|
|
5270
5406
|
maxAllowedSubmissions?: number | null;
|
|
5271
5407
|
/** Limitation by submission date, disables form when a set date and time is reached. */
|
|
5272
5408
|
dateTimeDeadline?: Date | null;
|
|
5409
|
+
/**
|
|
5410
|
+
* Limitation per user submission count, disables form when a set amount of submissions per user is reached.
|
|
5411
|
+
* @min 1
|
|
5412
|
+
*/
|
|
5413
|
+
submissionLimitPerUser?: number | null;
|
|
5273
5414
|
}
|
|
5274
5415
|
declare enum SpamFilterProtectionLevel {
|
|
5275
5416
|
/** Unknown spam filter protection level. */
|
|
@@ -5679,6 +5820,16 @@ interface PassFailMessages {
|
|
|
5679
5820
|
/** Message displayed when the user fails the quiz. */
|
|
5680
5821
|
failMessage?: RichContent;
|
|
5681
5822
|
}
|
|
5823
|
+
declare enum ContactAutofill {
|
|
5824
|
+
/** Unknown contact autofill source. */
|
|
5825
|
+
UNKNOWN_CONTACT_AUTOFILL = "UNKNOWN_CONTACT_AUTOFILL",
|
|
5826
|
+
/** Use site member data to autofill contact fields. */
|
|
5827
|
+
MEMBER_DATA = "MEMBER_DATA",
|
|
5828
|
+
/** Use form input data to autofill contact fields. */
|
|
5829
|
+
FORM_INPUT = "FORM_INPUT"
|
|
5830
|
+
}
|
|
5831
|
+
/** @enumType */
|
|
5832
|
+
type ContactAutofillWithLiterals = ContactAutofill | 'UNKNOWN_CONTACT_AUTOFILL' | 'MEMBER_DATA' | 'FORM_INPUT';
|
|
5682
5833
|
interface CreateCheckoutFromSubmissionResponse {
|
|
5683
5834
|
/**
|
|
5684
5835
|
* Checkout ID (applicable for form involving payments).
|
|
@@ -5871,10 +6022,12 @@ declare enum ErrorType {
|
|
|
5871
6022
|
/** Date value is incomplete or missing required parts */
|
|
5872
6023
|
INCOMPLETE_DATE_ERROR = "INCOMPLETE_DATE_ERROR",
|
|
5873
6024
|
/** Value does not match the required pattern format */
|
|
5874
|
-
INVALID_VALUE_FOR_PATTERN_ERROR = "INVALID_VALUE_FOR_PATTERN_ERROR"
|
|
6025
|
+
INVALID_VALUE_FOR_PATTERN_ERROR = "INVALID_VALUE_FOR_PATTERN_ERROR",
|
|
6026
|
+
/** Default value does not pass form field validation */
|
|
6027
|
+
INVALID_DEFAULT_VALUE_ERROR = "INVALID_DEFAULT_VALUE_ERROR"
|
|
5875
6028
|
}
|
|
5876
6029
|
/** @enumType */
|
|
5877
|
-
type ErrorTypeWithLiterals = ErrorType | 'UNKNOWN_ERROR' | 'TYPE_ERROR' | 'REQUIRED_VALUE_ERROR' | 'UNKNOWN_VALUE_ERROR' | 'MAX_LENGTH_ERROR' | 'MIN_LENGTH_ERROR' | 'PATTERN_ERROR' | 'FORMAT_ERROR' | 'MAX_VALUE_ERROR' | 'MIN_VALUE_ERROR' | 'MULTIPLE_OF_VALUE_ERROR' | 'MIN_ITEMS_ERROR' | 'MAX_ITEMS_ERROR' | 'NOT_ALLOWED_VALUE_ERROR' | 'FIELDS_COMPATIBILITY_ERROR' | 'DISABLED_FORM_ERROR' | 'FORMS_COUNT_RESTRICTIONS_ERROR' | 'FIELDS_COUNT_RESTRICTIONS_ERROR' | 'STEPS_COUNT_RESTRICTIONS_ERROR' | 'RULES_COUNT_RESTRICTIONS_ERROR' | 'FILE_UPLOAD_RESTRICTIONS_ERROR' | 'INVALID_PHONE_COUNTRY_CODE_ERROR' | 'INVALID_STAFF_ID_ERROR' | 'INVALID_LOCATION_ID_ERROR' | 'MISSING_SERVICE_OPTION_ERROR' | 'INVALID_SERVICE_OPTIONS_ERROR' | 'NO_AVAILABLE_SERVICE_OPTIONS_ERROR' | 'EXACT_CHARACTER_LENGTH_ERROR' | 'CHARACTER_LENGTH_RANGE_ERROR' | 'VALUE_RANGE_ERROR' | 'EXACT_ITEMS_NUMBER_ERROR' | 'DECIMAL_POINT_ERROR' | 'INCOMPLETE_DATE_ERROR' | 'INVALID_VALUE_FOR_PATTERN_ERROR';
|
|
6030
|
+
type ErrorTypeWithLiterals = ErrorType | 'UNKNOWN_ERROR' | 'TYPE_ERROR' | 'REQUIRED_VALUE_ERROR' | 'UNKNOWN_VALUE_ERROR' | 'MAX_LENGTH_ERROR' | 'MIN_LENGTH_ERROR' | 'PATTERN_ERROR' | 'FORMAT_ERROR' | 'MAX_VALUE_ERROR' | 'MIN_VALUE_ERROR' | 'MULTIPLE_OF_VALUE_ERROR' | 'MIN_ITEMS_ERROR' | 'MAX_ITEMS_ERROR' | 'NOT_ALLOWED_VALUE_ERROR' | 'FIELDS_COMPATIBILITY_ERROR' | 'DISABLED_FORM_ERROR' | 'FORMS_COUNT_RESTRICTIONS_ERROR' | 'FIELDS_COUNT_RESTRICTIONS_ERROR' | 'STEPS_COUNT_RESTRICTIONS_ERROR' | 'RULES_COUNT_RESTRICTIONS_ERROR' | 'FILE_UPLOAD_RESTRICTIONS_ERROR' | 'INVALID_PHONE_COUNTRY_CODE_ERROR' | 'INVALID_STAFF_ID_ERROR' | 'INVALID_LOCATION_ID_ERROR' | 'MISSING_SERVICE_OPTION_ERROR' | 'INVALID_SERVICE_OPTIONS_ERROR' | 'NO_AVAILABLE_SERVICE_OPTIONS_ERROR' | 'EXACT_CHARACTER_LENGTH_ERROR' | 'CHARACTER_LENGTH_RANGE_ERROR' | 'VALUE_RANGE_ERROR' | 'EXACT_ITEMS_NUMBER_ERROR' | 'DECIMAL_POINT_ERROR' | 'INCOMPLETE_DATE_ERROR' | 'INVALID_VALUE_FOR_PATTERN_ERROR' | 'INVALID_DEFAULT_VALUE_ERROR';
|
|
5878
6031
|
interface CreateSubmissionBySubmitterRequest {
|
|
5879
6032
|
/** Submission to create. */
|
|
5880
6033
|
submission?: FormSubmission;
|
|
@@ -7422,6 +7575,20 @@ type FormSubmissionSearch = {
|
|
|
7422
7575
|
fuzzy?: NonNullable<CommonSearchWithEntityContext['search']>['fuzzy'];
|
|
7423
7576
|
};
|
|
7424
7577
|
};
|
|
7578
|
+
declare const utils: {
|
|
7579
|
+
search: {
|
|
7580
|
+
SearchBuilder: () => _wix_sdk_types.SearchBuilder<FormSubmission, FormSubmissionSearchSpec, FormSubmissionSearch>;
|
|
7581
|
+
Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionSearchSpec>;
|
|
7582
|
+
Sort: _wix_sdk_types.SortFactory<FormSubmissionSearchSpec>;
|
|
7583
|
+
SearchParams: _wix_sdk_types.SearchParamsFactory<FormSubmissionSearchSpec>;
|
|
7584
|
+
Aggregation: _wix_sdk_types.AggregationFactory<FormSubmissionSearchSpec>;
|
|
7585
|
+
};
|
|
7586
|
+
query: {
|
|
7587
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
|
|
7588
|
+
Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
|
|
7589
|
+
Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
|
|
7590
|
+
};
|
|
7591
|
+
};
|
|
7425
7592
|
/**
|
|
7426
7593
|
* Creates a query to retrieve a list of submissions.
|
|
7427
7594
|
*
|
|
@@ -7602,11 +7769,6 @@ type FormSubmissionQuery = {
|
|
|
7602
7769
|
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
7603
7770
|
}[];
|
|
7604
7771
|
};
|
|
7605
|
-
declare const utils: {
|
|
7606
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
|
|
7607
|
-
Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
|
|
7608
|
-
Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
|
|
7609
|
-
};
|
|
7610
7772
|
/**
|
|
7611
7773
|
* > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
|
|
7612
7774
|
* <br>
|
|
@@ -7820,4 +7982,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7820
7982
|
fieldsToValidate?: string[];
|
|
7821
7983
|
}
|
|
7822
7984
|
|
|
7823
|
-
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, PaymentComponentType as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, ValidationFormat as a3, ProductType as a4, PriceType as a5, FieldType as a6, FormatEnumFormat as a7, StringComponentType as a8, NodeType as a9, Resizing as aA, Placement as aB, CardStylesType as aC, CardStylesAlignment as aD, Layout as aE, AppType as aF, InitialExpandedItems as aG, Direction as aH, VerticalAlignment as aI, NullValue as aJ, Scaling as aK, LayoutDataImagePosition as aL, VerticalAlignmentAlignment as aM, ResponsivenessBehaviour as aN, DesignTarget as aO, ImagePosition as aP, Alignment as aQ, ImageFit as aR, NumberOfColumns as aS, FirstDayOfWeek as aT, NumberComponentType as aU, BooleanComponentType as aV, ItemType as aW, PropertiesTypeEnum as aX, ArrayComponentType as aY, WixFileComponentType as aZ, UploadFileFormat as a_, WidthType as aa, PluginContainerDataAlignment as ab, ButtonDataType as ac, LinkTarget as ad, TextAlignment as ae, LineStyle as af, Width as ag, DividerDataAlignment as ah, ViewMode as ai, LayoutType as aj, Orientation as ak, Crop as al, ThumbnailsAlignment as am, GIFType as an, Source as ao, StylesPosition as ap, MapType as aq, ViewRole as ar, VoteRole as as, PollLayoutType as at, PollLayoutDirection as au, BackgroundType as av, DecorationType as aw, FontType as ax, Position as ay, AspectRatio as az, type CreateSubmissionApplicationErrors as b, type StringTypeDateTimeConstraints as b$, ComponentType as b0, Type as b1, ObjectArrayComponentType as b2, SchedulingComponentType as b3, Format as b4, InputType as b5, EmailInfoTag as b6, PhoneInfoTag as b7, Tag as b8, ConfirmationLevel as b9, type ExtendedFields as bA, type OrderDetails as bB, type PublicTags as bC, type TagList as bD, type FormSubmissionStatusUpdatedEvent as bE, type RemovedSubmissionFromTrash as bF, type SubmissionContactMapped as bG, type MarketingSubscriptionDetails as bH, type SubmissionContactMappingSkipped as bI, type DomainEvent as bJ, type DomainEventBodyOneOf as bK, type EntityCreatedEvent as bL, type RestoreInfo as bM, type EntityUpdatedEvent as bN, type EntityDeletedEvent as bO, type ActionEvent as bP, type MessageEnvelope as bQ, type IdentificationData as bR, type IdentificationDataIdOneOf as bS, type AccountInfo as bT, type CreateCheckoutFromSubmissionRequest as bU, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bV, type Form as bW, type FormField as bX, type FormFieldStringType as bY, type FormFieldStringTypeFormatOptionsOneOf as bZ, type StringErrorMessages as b_, ContactField as ba, DisplayFieldType as bb, OverrideEntityType as bc, Kind as bd, FormFieldContactInfoEmailInfoTag as be, FormFieldContactInfoPhoneInfoTag as bf, AddressInfoTag as bg, SubscriptionInfoOptInLevel as bh, FormFieldContactInfoContactField as bi, SpamFilterProtectionLevel as bj, RequiredIndicator as bk, RequiredIndicatorPlacement as bl, Target as bm, SubmitSuccessAction as bn, ChangeableProperty as bo, OverrideEntityTypeEnumOverrideEntityType as bp, Operator as bq, ResultsDisplay as br, IdentityType as bs, ErrorType as bt, SortOrder as bu, Mode as bv, Status as bw, SubmissionErrorType as bx, type Submitter as by, type SubmitterSubmitterOneOf as bz, type CreateSubmissionValidationErrors as c, type FileData as c$, type StringTypePhoneConstraints as c0, type StringTypeValidationMessages as c1, type FormFieldNumberType as c2, type NumberErrorMessages as c3, type IntegerType as c4, type FormFieldBooleanType as c5, type BooleanErrorMessages as c6, type FormFieldArrayType as c7, type FormFieldObjectType as c8, type ObjectTypePropertiesType as c9, type StringCorrectAnswersList as cA, type StringType as cB, type StringTypeFormatOptionsOneOf as cC, type DateTimeConstraints as cD, type PhoneConstraints as cE, type ValidationMessages as cF, type StringQuizFieldSettings as cG, type TextInput as cH, type RichContent as cI, type Node as cJ, type NodeDataOneOf as cK, type NodeStyle as cL, type ButtonData as cM, type Border as cN, type Colors as cO, type PluginContainerData as cP, type PluginContainerDataWidth as cQ, type PluginContainerDataWidthDataOneOf as cR, type Spoiler as cS, type Height as cT, type Styles as cU, type Link as cV, type LinkDataOneOf as cW, type Rel as cX, type CodeBlockData as cY, type TextStyle as cZ, type DividerData as c_, type ObjectTypePropertiesTypePropertiesTypeOneOf as ca, type ObjectErrorMessages as cb, type ArrayTypeArrayItems as cc, type ArrayTypeArrayItemsItemsOneOf as cd, type ArrayErrorMessages as ce, type PredefinedValidation as cf, type PredefinedValidationFormatOptionsOneOf as cg, type PaymentType as ch, type QuantityLimit as ci, type FixedPriceOptions as cj, type DynamicPriceOptions as ck, type Product as cl, type ProductPriceOptionsOneOf as cm, type MultilineAddressValidation as cn, type FieldOverrides as co, type FieldsOverrides as cp, type ObjectArrayType as cq, type NestedFormFieldOverrides as cr, type Validation as cs, type ValidationValidationOneOf as ct, type DataExtensionsDetails as cu, type NestedFormOverrides as cv, type Field as cw, type FieldFieldTypeOptionsOneOf as cx, type InputField as cy, type InputFieldInputTypeOptionsOneOf as cz, type UpdateSubmission as d, type Oembed as d$, type FileSource as d0, type FileSourceDataOneOf as d1, type PDFSettings as d2, type GalleryData as d3, type Media as d4, type Image as d5, type Video as d6, type Item as d7, type ItemDataOneOf as d8, type GalleryOptions as d9, type PollDesign as dA, type OptionDesign as dB, type Poll as dC, type PollDataLayout as dD, type Design as dE, type TextData as dF, type Decoration as dG, type DecorationDataOneOf as dH, type AnchorData as dI, type ColorData as dJ, type LinkData as dK, type MentionData as dL, type FontSizeData as dM, type SpoilerData as dN, type FontFamilyData as dO, type AppEmbedData as dP, type AppEmbedDataAppDataOneOf as dQ, type BookingData as dR, type EventData as dS, type ButtonStyles as dT, type ImageStyles as dU, type RibbonStyles as dV, type CardStyles as dW, type PricingData as dX, type VideoData as dY, type PlaybackOptions as dZ, type EmbedData as d_, type GalleryOptionsLayout as da, type ItemStyle as db, type Thumbnails as dc, type GIFData as dd, type GIF as de, type HeadingData as df, type HTMLData as dg, type HTMLDataDataOneOf as dh, type ImageData as di, type StylesBorder as dj, type ImageDataStyles as dk, type LinkPreviewData as dl, type LinkPreviewDataStyles as dm, type MapData as dn, type MapSettings as dp, type ParagraphData as dq, type PollData as dr, type Permissions as ds, type PollOption as dt, type Settings as du, type PollLayout as dv, type OptionLayout as dw, type Gradient as dx, type Background as dy, type BackgroundBackgroundOneOf as dz, type UpdateSubmissionValidationErrors as e, type DonationInputOption as e$, type CollapsibleListData as e0, type TableData as e1, type Dimensions as e2, type TableCellData as e3, type CellStyle as e4, type BorderColors as e5, type BorderWidths as e6, type ListValue as e7, type AudioData as e8, type OrderedListData as e9, type Password as eA, type NumberCorrectAnswersList as eB, type NumberType as eC, type NumberQuizFieldSettings as eD, type NumberInput as eE, type RatingInput as eF, type BooleanType as eG, type Checkbox as eH, type CorrectAnswersList as eI, type ArrayType as eJ, type ObjectType as eK, type PropertiesType as eL, type PropertiesTypePropertiesTypeOptionsOneOf as eM, type ArrayItems as eN, type ArrayItemsItemTypeOptionsOneOf as eO, type QuizFieldSettings as eP, type CheckboxGroup as eQ, type Option as eR, type ComponentsTags as eS, type TagsOption as eT, type ServicesCheckboxGroup as eU, type FileType as eV, type FileUpload as eW, type Signature as eX, type ProductCheckboxGroup as eY, type ProductCheckboxGroupOption as eZ, type DonationInput as e_, type BulletedListData as ea, type BlockquoteData as eb, type CaptionData as ec, type LayoutData as ed, type BackgroundImage as ee, type LayoutCellData as ef, type ShapeData as eg, type ShapeDataStyles as eh, type Metadata as ei, type DocumentStyle as ej, type TextNodeStyle as ek, type MediaItem as el, type MediaItemMediaOneOf as em, type MediaSettings as en, type RadioGroup as eo, type RadioGroupOption as ep, type CustomOption as eq, type Dropdown as er, type DropdownOption as es, type DateTimeInput as et, type PhoneInput as eu, type DateInput as ev, type TimeInput as ew, type DatePicker as ex, type ServicesDropdown as ey, type ServiceOption as ez, type ConfirmSubmissionResponse as f, type FormFieldContactInfoCustomFieldInfo as f$, type PaymentInput as f0, type FixedPayment as f1, type MultilineAddress as f2, type AddressLine2 as f3, type DefaultCountryConfig as f4, type DefaultCountryConfigOptionsOneOf as f5, type FieldsSettings as f6, type Repeater as f7, type FormLayout as f8, type BreakPoint as f9, type _ArrayComponentTypeOptionsOneOf as fA, type _Object as fB, type WixFile as fC, type WixFileComponentTypeOptionsOneOf as fD, type Payment as fE, type PaymentComponentTypeOptionsOneOf as fF, type Scheduling as fG, type SchedulingComponentTypeOptionsOneOf as fH, type Address as fI, type AddressComponentTypeOptionsOneOf as fJ, type ObjectArray as fK, type ObjectArrayComponentTypeOptionsOneOf as fL, type DisplayField as fM, type DisplayFieldDisplayFieldTypeOptionsOneOf as fN, type RichContentOptions as fO, type PageNavigationOptions as fP, type Step as fQ, type FormRule as fR, type FormOverride as fS, type FormProperties as fT, type PostSubmissionTriggers as fU, type UpsertContact as fV, type V4FormFieldContactInfo as fW, type V4FormFieldContactInfoAdditionalInfoOneOf as fX, type FormFieldContactInfoEmailInfo as fY, type FormFieldContactInfoPhoneInfo as fZ, type FormFieldContactInfoAddressInfo as f_, type ItemLayout as fa, type ItemLayoutItemOneOf as fb, type Group as fc, type Margin as fd, type Section as fe, type Appointment as ff, type AppointmentFormatInfoOneOf as fg, type Location as fh, type LocationLocationInfoOneOf as fi, type InPersonOptions as fj, type VideoConferenceOptions as fk, type PhoneOptions as fl, type FormFieldContactInfo as fm, type FormFieldContactInfoAdditionalInfoOneOf as fn, type EmailInfo as fo, type PhoneInfo as fp, type AddressInfo as fq, type CustomFieldInfo as fr, type SubscriptionInfo as fs, type _String as ft, type _StringComponentTypeOptionsOneOf as fu, type _Number as fv, type _NumberComponentTypeOptionsOneOf as fw, type _Boolean as fx, type _BooleanComponentTypeOptionsOneOf as fy, type _Array as fz, type BulkDeleteSubmissionResponse as g, type BulkRemoveSubmissionFromTrashBinResult as g$, type FormFieldContactInfoSubscriptionInfo as g0, type NestedForm as g1, type LimitationRule as g2, type RequiredIndicatorProperties as g3, type SubmitSettings as g4, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g5, type ThankYouMessageOptions as g6, type RedirectOptions as g7, type FieldGroup as g8, type Rule as g9, type CreateSubmissionResponse as gA, type SubmissionValidationErrorsDetails as gB, type ValidationError as gC, type CreateSubmissionBySubmitterRequest as gD, type CreateSubmissionBySubmitterResponse as gE, type BulkCreateSubmissionBySubmitterRequest as gF, type BulkCreateSubmissionBySubmitterData as gG, type BulkCreateSubmissionBySubmitterResponse as gH, type BulkSubmissionResult as gI, type ItemMetadata as gJ, type ApplicationError as gK, type BulkActionMetadata as gL, type GetSubmissionRequest as gM, type GetSubmissionResponse as gN, type GetSubmissionByCheckoutIdRequest as gO, type GetSubmissionByCheckoutIdResponse as gP, type UpdateSubmissionRequest as gQ, type UpdateSubmissionResponse as gR, type ConfirmSubmissionRequest as gS, type DeleteSubmissionRequest as gT, type DeleteSubmissionResponse as gU, type BulkDeleteSubmissionRequest as gV, type BulkDeleteSubmissionResult as gW, type RestoreSubmissionFromTrashBinRequest as gX, type RemoveSubmissionFromTrashBinRequest as gY, type RemoveSubmissionFromTrashBinResponse as gZ, type BulkRemoveSubmissionFromTrashBinRequest as g_, type RequiredOptions as ga, type HiddenOptions as gb, type AllowedValuesOptions as gc, type FieldOverride as gd, type FieldOverridePropertyTypeOptionsOneOf as ge, type ConditionNode as gf, type ConditionNodeNodeOneOf as gg, type AndCondition as gh, type OrCondition as gi, type Condition as gj, type RuleFormOverride as gk, type RuleFormOverrideEntityTypeOptionsOneOf as gl, type Tags as gm, type TagsTagList as gn, type QuizSettings as go, type QuizSettingsPassingCriteriaOneOf as gp, type QuizSettingsResultsDisplayOptionsOneOf as gq, type PassFailMessages as gr, type CreateCheckoutFromSubmissionResponse as gs, type Checkout as gt, type IsFormSubmittableRequest as gu, type IsFormSubmittableResponse as gv, type Empty as gw, type UpsertContactFromSubmissionRequest as gx, type SubmitContactResponse as gy, type CreateSubmissionRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type NodeTypeWithLiterals as h$, type ListDeletedSubmissionsRequest as h0, type CursorPaging as h1, type CursorPagingMetadata as h2, type Cursors as h3, type GetDeletedSubmissionRequest as h4, type QuerySubmissionRequest as h5, type CursorQueryPagingMethodOneOf as h6, type Sorting as h7, type SearchSubmissionsByNamespaceRequest as h8, type CursorSearch as h9, type UpdateExtendedFieldsRequest as hA, type BulkUpdateFormSubmissionTagsRequest as hB, type BulkUpdateFormSubmissionTagsResult as hC, type BulkUpdateFormSubmissionTagsByFilterRequest as hD, type ValidateFormSubmissionRequest as hE, type FieldViolation as hF, type FieldViolationErrorDataOneOf as hG, type SubmissionValidationErrors as hH, type SubmissionValidationError as hI, type SubmissionValidationErrorErrorMessageOneOf as hJ, type BaseEventMetadata as hK, type EventMetadata as hL, type AccountInfoMetadata as hM, type FormSubmissionSearchSpec as hN, type SubmissionsQueryResult as hO, type FormSubmissionQuerySpec as hP, utils as hQ, type SubmissionStatusWithLiterals as hR, type OptInLevelWithLiterals as hS, type WebhookIdentityTypeWithLiterals as hT, type StringTypeFormatEnumFormatWithLiterals as hU, type ValidationFormatWithLiterals as hV, type ProductTypeWithLiterals as hW, type PriceTypeWithLiterals as hX, type FieldTypeWithLiterals as hY, type FormatEnumFormatWithLiterals as hZ, type StringComponentTypeWithLiterals as h_, type CursorSearchPagingMethodOneOf as ha, type SearchDetails as hb, type SearchSubmissionsByNamespaceForExportRequest as hc, type SearchSubmissionsByNamespaceForExportResponse as hd, type QuerySubmissionsByNamespaceRequest as he, type QuerySubmissionsByNamespaceResponse as hf, type QuerySubmissionsByNamespaceForExportRequest as hg, type QuerySubmissionsByNamespaceForExportResponse as hh, type CountSubmissionsByFilterRequest as hi, type FormSubmissionsCount as hj, type CountSubmissionsRequest as hk, type CountDeletedSubmissionsRequest as hl, type FormDeletedSubmissionsCount as hm, type GetMediaUploadURLRequest as hn, type BulkMarkSubmissionsAsSeenRequest as ho, type GetSubmissionDownloadUrlRequest as hp, type SubmissionDocument as hq, type SubmissionDocumentDocumentOneOf as hr, type DocumentReady as hs, type DownloadSubmissionRequest as ht, type HeadersEntry as hu, type GetFormattedSubmissionRequest as hv, type FormattedSubmission as hw, type ListFormattedSubmissionsRequest as hx, type ListFormattedSubmissionsResponse as hy, type FormattedFormSubmission as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PhoneInfoTagWithLiterals as i$, type WidthTypeWithLiterals as i0, type PluginContainerDataAlignmentWithLiterals as i1, type ButtonDataTypeWithLiterals as i2, type LinkTargetWithLiterals as i3, type TextAlignmentWithLiterals as i4, type LineStyleWithLiterals as i5, type WidthWithLiterals as i6, type DividerDataAlignmentWithLiterals as i7, type ViewModeWithLiterals as i8, type LayoutTypeWithLiterals as i9, type VerticalAlignmentWithLiterals as iA, type NullValueWithLiterals as iB, type ScalingWithLiterals as iC, type LayoutDataImagePositionWithLiterals as iD, type VerticalAlignmentAlignmentWithLiterals as iE, type ResponsivenessBehaviourWithLiterals as iF, type DesignTargetWithLiterals as iG, type ImagePositionWithLiterals as iH, type AlignmentWithLiterals as iI, type ImageFitWithLiterals as iJ, type NumberOfColumnsWithLiterals as iK, type FirstDayOfWeekWithLiterals as iL, type NumberComponentTypeWithLiterals as iM, type BooleanComponentTypeWithLiterals as iN, type ItemTypeWithLiterals as iO, type PropertiesTypeEnumWithLiterals as iP, type ArrayComponentTypeWithLiterals as iQ, type WixFileComponentTypeWithLiterals as iR, type UploadFileFormatWithLiterals as iS, type PaymentComponentTypeWithLiterals as iT, type ComponentTypeWithLiterals as iU, type TypeWithLiterals as iV, type ObjectArrayComponentTypeWithLiterals as iW, type SchedulingComponentTypeWithLiterals as iX, type FormatWithLiterals as iY, type InputTypeWithLiterals as iZ, type EmailInfoTagWithLiterals as i_, type OrientationWithLiterals as ia, type CropWithLiterals as ib, type ThumbnailsAlignmentWithLiterals as ic, type GIFTypeWithLiterals as id, type SourceWithLiterals as ie, type StylesPositionWithLiterals as ig, type MapTypeWithLiterals as ih, type ViewRoleWithLiterals as ii, type VoteRoleWithLiterals as ij, type PollLayoutTypeWithLiterals as ik, type PollLayoutDirectionWithLiterals as il, type BackgroundTypeWithLiterals as im, type DecorationTypeWithLiterals as io, type FontTypeWithLiterals as ip, type PositionWithLiterals as iq, type AspectRatioWithLiterals as ir, type ResizingWithLiterals as is, type PlacementWithLiterals as it, type CardStylesTypeWithLiterals as iu, type CardStylesAlignmentWithLiterals as iv, type LayoutWithLiterals as iw, type AppTypeWithLiterals as ix, type InitialExpandedItemsWithLiterals as iy, type DirectionWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type TagWithLiterals as j0, type ConfirmationLevelWithLiterals as j1, type ContactFieldWithLiterals as j2, type DisplayFieldTypeWithLiterals as j3, type OverrideEntityTypeWithLiterals as j4, type KindWithLiterals as j5, type FormFieldContactInfoEmailInfoTagWithLiterals as j6, type FormFieldContactInfoPhoneInfoTagWithLiterals as j7, type AddressInfoTagWithLiterals as j8, type SubscriptionInfoOptInLevelWithLiterals as j9, createSubmission as jA, getSubmission as jB, updateSubmission as jC, confirmSubmission as jD, deleteSubmission as jE, bulkDeleteSubmission as jF, restoreSubmissionFromTrashBin as jG, removeSubmissionFromTrashBin as jH, bulkRemoveSubmissionFromTrashBin as jI, listDeletedSubmissions as jJ, getDeletedSubmission as jK, querySubmission as jL, querySubmissionsByNamespace as jM, countSubmissionsByFilter as jN, countSubmissions as jO, countDeletedSubmissions as jP, getMediaUploadUrl as jQ, bulkMarkSubmissionsAsSeen as jR, getSubmissionDownloadUrl as jS, downloadSubmission as jT, getFormattedSubmission as jU, updateExtendedFields as jV, bulkUpdateFormSubmissionTags as jW, bulkUpdateFormSubmissionTagsByFilter as jX, validateFormSubmission as jY, type FormFieldContactInfoContactFieldWithLiterals as ja, type SpamFilterProtectionLevelWithLiterals as jb, type RequiredIndicatorWithLiterals as jc, type RequiredIndicatorPlacementWithLiterals as jd, type TargetWithLiterals as je, type SubmitSuccessActionWithLiterals as jf, type ChangeablePropertyWithLiterals as jg, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jh, type OperatorWithLiterals as ji, type ResultsDisplayWithLiterals as jj, type IdentityTypeWithLiterals as jk, type ErrorTypeWithLiterals as jl, type SortOrderWithLiterals as jm, type ModeWithLiterals as jn, type StatusWithLiterals as jo, type SubmissionErrorTypeWithLiterals as jp, type CommonSearchWithEntityContext as jq, type CommonQueryWithEntityContext as jr, onSubmissionCreated as js, onSubmissionDeleted as jt, onSubmissionRemovedSubmissionFromTrash as ju, onSubmissionStatusUpdated as jv, onSubmissionContactMapped as jw, onSubmissionContactMappingSkipped as jx, onSubmissionUpdated as jy, upsertContactFromSubmission as jz, type CursorQuery as k, 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 };
|
|
7985
|
+
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 };
|
|
@@ -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 { bT as AccountInfo, hM as AccountInfoMetadata, bP as ActionEvent, fI as Address, fJ as AddressComponentTypeOptionsOneOf, fq as AddressInfo, bg as AddressInfoTag, j8 as AddressInfoTagWithLiterals, f3 as AddressLine2, aQ as Alignment, iI as AlignmentWithLiterals, gc as AllowedValuesOptions, dI as AnchorData, gh as AndCondition, dP as AppEmbedData, dQ as AppEmbedDataAppDataOneOf, aF as AppType, ix as AppTypeWithLiterals, gK as ApplicationError, ff as Appointment, fg as AppointmentFormatInfoOneOf, aY as ArrayComponentType, iQ as ArrayComponentTypeWithLiterals, ce as ArrayErrorMessages, eN as ArrayItems, eO as ArrayItemsItemTypeOptionsOneOf, eJ as ArrayType, cc as ArrayTypeArrayItems, cd as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, ir as AspectRatioWithLiterals, e8 as AudioData, dy as Background, dz as BackgroundBackgroundOneOf, ee as BackgroundImage, av as BackgroundType, im as BackgroundTypeWithLiterals, hK as BaseEventMetadata, eb as BlockquoteData, dR as BookingData, aV as BooleanComponentType, iN as BooleanComponentTypeWithLiterals, c6 as BooleanErrorMessages, eG as BooleanType, cN as Border, e5 as BorderColors, e6 as BorderWidths, f9 as BreakPoint, gL as BulkActionMetadata, gG as BulkCreateSubmissionBySubmitterData, gF as BulkCreateSubmissionBySubmitterRequest, gH as BulkCreateSubmissionBySubmitterResponse, gV as BulkDeleteSubmissionRequest, gW as BulkDeleteSubmissionResult, ho as BulkMarkSubmissionsAsSeenRequest, g_ as BulkRemoveSubmissionFromTrashBinRequest, g$ as BulkRemoveSubmissionFromTrashBinResult, gI as BulkSubmissionResult, hD as BulkUpdateFormSubmissionTagsByFilterRequest, hB as BulkUpdateFormSubmissionTagsRequest, hC as BulkUpdateFormSubmissionTagsResult, ea as BulletedListData, cM as ButtonData, ac as ButtonDataType, i2 as ButtonDataTypeWithLiterals, dT as ButtonStyles, ec as CaptionData, dW as CardStyles, aD as CardStylesAlignment, iv as CardStylesAlignmentWithLiterals, aC as CardStylesType, iu as CardStylesTypeWithLiterals, e4 as CellStyle, bo as ChangeableProperty, jg as ChangeablePropertyWithLiterals, eH as Checkbox, eQ as CheckboxGroup, gt as Checkout, cY as CodeBlockData, e0 as CollapsibleListData, dJ as ColorData, cO as Colors, jr as CommonQueryWithEntityContext, jq as CommonSearchWithEntityContext, b0 as ComponentType, iU as ComponentTypeWithLiterals, eS as ComponentsTags, gj as Condition, gf as ConditionNode, gg as ConditionNodeNodeOneOf, gS as ConfirmSubmissionRequest, b9 as ConfirmationLevel, j1 as ConfirmationLevelWithLiterals, ba as ContactField, j2 as ContactFieldWithLiterals, eI as CorrectAnswersList, hl as CountDeletedSubmissionsRequest, hi as CountSubmissionsByFilterRequest, hk as CountSubmissionsRequest, bU as CreateCheckoutFromSubmissionRequest, bV as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gs as CreateCheckoutFromSubmissionResponse, gD as CreateSubmissionBySubmitterRequest, gE as CreateSubmissionBySubmitterResponse, gz as CreateSubmissionRequest, gA as CreateSubmissionResponse, al as Crop, ib as CropWithLiterals, h1 as CursorPaging, h2 as CursorPagingMetadata, h6 as CursorQueryPagingMethodOneOf, h9 as CursorSearch, ha as CursorSearchPagingMethodOneOf, h3 as Cursors, fr as CustomFieldInfo, eq as CustomOption, cu as DataExtensionsDetails, ev as DateInput, ex as DatePicker, cD as DateTimeConstraints, et as DateTimeInput, dG as Decoration, dH as DecorationDataOneOf, aw as DecorationType, io as DecorationTypeWithLiterals, f4 as DefaultCountryConfig, f5 as DefaultCountryConfigOptionsOneOf, gT as DeleteSubmissionRequest, gU as DeleteSubmissionResponse, dE as Design, aO as DesignTarget, iG as DesignTargetWithLiterals, e2 as Dimensions, aH as Direction, iz as DirectionWithLiterals, fM as DisplayField, fN as DisplayFieldDisplayFieldTypeOptionsOneOf, bb as DisplayFieldType, j3 as DisplayFieldTypeWithLiterals, c_ as DividerData, ah as DividerDataAlignment, i7 as DividerDataAlignmentWithLiterals, hs as DocumentReady, ej as DocumentStyle, bJ as DomainEvent, bK as DomainEventBodyOneOf, e_ as DonationInput, e$ as DonationInputOption, ht as DownloadSubmissionRequest, er as Dropdown, es as DropdownOption, ck as DynamicPriceOptions, fo as EmailInfo, b6 as EmailInfoTag, i_ as EmailInfoTagWithLiterals, d_ as EmbedData, gw as Empty, bL as EntityCreatedEvent, bO as EntityDeletedEvent, bN as EntityUpdatedEvent, bt as ErrorType, jl as ErrorTypeWithLiterals, dS as EventData, hL as EventMetadata, bA as ExtendedFields, cw as Field, cx as FieldFieldTypeOptionsOneOf, g8 as FieldGroup, gd as FieldOverride, ge as FieldOverridePropertyTypeOptionsOneOf, co as FieldOverrides, a6 as FieldType, hY as FieldTypeWithLiterals, hF as FieldViolation, hG as FieldViolationErrorDataOneOf, cp as FieldsOverrides, f6 as FieldsSettings, c$ as FileData, d0 as FileSource, d1 as FileSourceDataOneOf, eV as FileType, eW as FileUpload, aT as FirstDayOfWeek, iL as FirstDayOfWeekWithLiterals, f1 as FixedPayment, cj as FixedPriceOptions, dO as FontFamilyData, dM as FontSizeData, ax as FontType, ip as FontTypeWithLiterals, bW as Form, hm as FormDeletedSubmissionsCount, bX as FormField, c7 as FormFieldArrayType, c5 as FormFieldBooleanType, fm as FormFieldContactInfo, fn as FormFieldContactInfoAdditionalInfoOneOf, f_ as FormFieldContactInfoAddressInfo, bi as FormFieldContactInfoContactField, ja as FormFieldContactInfoContactFieldWithLiterals, f$ as FormFieldContactInfoCustomFieldInfo, fY as FormFieldContactInfoEmailInfo, be as FormFieldContactInfoEmailInfoTag, j6 as FormFieldContactInfoEmailInfoTagWithLiterals, fZ as FormFieldContactInfoPhoneInfo, bf as FormFieldContactInfoPhoneInfoTag, j7 as FormFieldContactInfoPhoneInfoTagWithLiterals, g0 as FormFieldContactInfoSubscriptionInfo, c2 as FormFieldNumberType, c8 as FormFieldObjectType, bY as FormFieldStringType, bZ as FormFieldStringTypeFormatOptionsOneOf, f8 as FormLayout, fS as FormOverride, fT as FormProperties, fR as FormRule, hP as FormSubmissionQuerySpec, hN as FormSubmissionSearchSpec, bE as FormSubmissionStatusUpdatedEvent, hj as FormSubmissionsCount, b4 as Format, a7 as FormatEnumFormat, hZ as FormatEnumFormatWithLiterals, iY as FormatWithLiterals, hz as FormattedFormSubmission, hw as FormattedSubmission, de as GIF, dd as GIFData, an as GIFType, id as GIFTypeWithLiterals, d3 as GalleryData, d9 as GalleryOptions, da as GalleryOptionsLayout, h4 as GetDeletedSubmissionRequest, hv as GetFormattedSubmissionRequest, hn as GetMediaUploadURLRequest, gO as GetSubmissionByCheckoutIdRequest, gP as GetSubmissionByCheckoutIdResponse, hp as GetSubmissionDownloadUrlRequest, gM as GetSubmissionRequest, gN as GetSubmissionResponse, dx as Gradient, fc as Group, dg as HTMLData, dh as HTMLDataDataOneOf, hu as HeadersEntry, df as HeadingData, cT as Height, gb as HiddenOptions, bR as IdentificationData, bS as IdentificationDataIdOneOf, bs as IdentityType, jk as IdentityTypeWithLiterals, d5 as Image, di as ImageData, dk as ImageDataStyles, aR as ImageFit, iJ as ImageFitWithLiterals, aP as ImagePosition, iH as ImagePositionWithLiterals, dU as ImageStyles, fj as InPersonOptions, aG as InitialExpandedItems, iy as InitialExpandedItemsWithLiterals, cy as InputField, cz as InputFieldInputTypeOptionsOneOf, b5 as InputType, iZ as InputTypeWithLiterals, c4 as IntegerType, gu as IsFormSubmittableRequest, gv as IsFormSubmittableResponse, d7 as Item, d8 as ItemDataOneOf, fa as ItemLayout, fb as ItemLayoutItemOneOf, gJ as ItemMetadata, db as ItemStyle, aW as ItemType, iO as ItemTypeWithLiterals, bd as Kind, j5 as KindWithLiterals, aE as Layout, ef as LayoutCellData, ed as LayoutData, aL as LayoutDataImagePosition, iD as LayoutDataImagePositionWithLiterals, aj as LayoutType, i9 as LayoutTypeWithLiterals, iw as LayoutWithLiterals, g2 as LimitationRule, af as LineStyle, i5 as LineStyleWithLiterals, cV as Link, dK as LinkData, cW as LinkDataOneOf, dl as LinkPreviewData, dm as LinkPreviewDataStyles, ad as LinkTarget, i3 as LinkTargetWithLiterals, h0 as ListDeletedSubmissionsRequest, hx as ListFormattedSubmissionsRequest, hy as ListFormattedSubmissionsResponse, e7 as ListValue, fh as Location, fi as LocationLocationInfoOneOf, dn as MapData, dp as MapSettings, aq as MapType, ih as MapTypeWithLiterals, fd as Margin, bH as MarketingSubscriptionDetails, d4 as Media, el as MediaItem, em as MediaItemMediaOneOf, en as MediaSettings, dL as MentionData, bQ as MessageEnvelope, ei as Metadata, bv as Mode, jn as ModeWithLiterals, f2 as MultilineAddress, cn as MultilineAddressValidation, g1 as NestedForm, cr as NestedFormFieldOverrides, cv as NestedFormOverrides, cJ as Node, cK as NodeDataOneOf, cL as NodeStyle, a9 as NodeType, h$ as NodeTypeWithLiterals, aJ as NullValue, iB as NullValueWithLiterals, aU as NumberComponentType, iM as NumberComponentTypeWithLiterals, eB as NumberCorrectAnswersList, c3 as NumberErrorMessages, eE as NumberInput, aS as NumberOfColumns, iK as NumberOfColumnsWithLiterals, eD as NumberQuizFieldSettings, eC as NumberType, fK as ObjectArray, b2 as ObjectArrayComponentType, fL as ObjectArrayComponentTypeOptionsOneOf, iW as ObjectArrayComponentTypeWithLiterals, cq as ObjectArrayType, cb as ObjectErrorMessages, eK as ObjectType, c9 as ObjectTypePropertiesType, ca as ObjectTypePropertiesTypePropertiesTypeOneOf, d$ as Oembed, bq as Operator, ji as OperatorWithLiterals, a0 as OptInLevel, hS as OptInLevelWithLiterals, eR as Option, dB as OptionDesign, dw as OptionLayout, gi as OrCondition, bB as OrderDetails, e9 as OrderedListData, ak as Orientation, ia as OrientationWithLiterals, bc as OverrideEntityType, bp as OverrideEntityTypeEnumOverrideEntityType, jh as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, j4 as OverrideEntityTypeWithLiterals, d2 as PDFSettings, fP as PageNavigationOptions, dq as ParagraphData, gr as PassFailMessages, eA as Password, fE as Payment, a$ as PaymentComponentType, fF as PaymentComponentTypeOptionsOneOf, iT as PaymentComponentTypeWithLiterals, f0 as PaymentInput, ch as PaymentType, ds as Permissions, cE as PhoneConstraints, fp as PhoneInfo, b7 as PhoneInfoTag, i$ as PhoneInfoTagWithLiterals, eu as PhoneInput, fl as PhoneOptions, aB as Placement, it as PlacementWithLiterals, dZ as PlaybackOptions, cP as PluginContainerData, ab as PluginContainerDataAlignment, i1 as PluginContainerDataAlignmentWithLiterals, cQ as PluginContainerDataWidth, cR as PluginContainerDataWidthDataOneOf, dC as Poll, dr as PollData, dD as PollDataLayout, dA as PollDesign, dv as PollLayout, au as PollLayoutDirection, il as PollLayoutDirectionWithLiterals, at as PollLayoutType, ik as PollLayoutTypeWithLiterals, dt as PollOption, ay as Position, iq as PositionWithLiterals, fU as PostSubmissionTriggers, cf as PredefinedValidation, cg as PredefinedValidationFormatOptionsOneOf, a5 as PriceType, hX as PriceTypeWithLiterals, dX as PricingData, cl as Product, eY as ProductCheckboxGroup, eZ as ProductCheckboxGroupOption, cm as ProductPriceOptionsOneOf, a4 as ProductType, hW as ProductTypeWithLiterals, eL as PropertiesType, aX as PropertiesTypeEnum, iP as PropertiesTypeEnumWithLiterals, eM as PropertiesTypePropertiesTypeOptionsOneOf, bC as PublicTags, ci as QuantityLimit, h5 as QuerySubmissionRequest, hg as QuerySubmissionsByNamespaceForExportRequest, hh as QuerySubmissionsByNamespaceForExportResponse, he as QuerySubmissionsByNamespaceRequest, hf as QuerySubmissionsByNamespaceResponse, eP as QuizFieldSettings, go as QuizSettings, gp as QuizSettingsPassingCriteriaOneOf, gq as QuizSettingsResultsDisplayOptionsOneOf, eo as RadioGroup, ep as RadioGroupOption, eF as RatingInput, g7 as RedirectOptions, cX as Rel, gY as RemoveSubmissionFromTrashBinRequest, gZ as RemoveSubmissionFromTrashBinResponse, bF as RemovedSubmissionFromTrash, f7 as Repeater, bk as RequiredIndicator, bl as RequiredIndicatorPlacement, jd as RequiredIndicatorPlacementWithLiterals, g3 as RequiredIndicatorProperties, jc as RequiredIndicatorWithLiterals, ga as RequiredOptions, aA as Resizing, is as ResizingWithLiterals, aN as ResponsivenessBehaviour, iF as ResponsivenessBehaviourWithLiterals, bM as RestoreInfo, gX as RestoreSubmissionFromTrashBinRequest, br as ResultsDisplay, jj as ResultsDisplayWithLiterals, dV as RibbonStyles, cI as RichContent, fO as RichContentOptions, g9 as Rule, gk as RuleFormOverride, gl as RuleFormOverrideEntityTypeOptionsOneOf, aK as Scaling, iC as ScalingWithLiterals, fG as Scheduling, b3 as SchedulingComponentType, fH as SchedulingComponentTypeOptionsOneOf, iX as SchedulingComponentTypeWithLiterals, hb as SearchDetails, hc as SearchSubmissionsByNamespaceForExportRequest, hd as SearchSubmissionsByNamespaceForExportResponse, h8 as SearchSubmissionsByNamespaceRequest, fe as Section, ez as ServiceOption, eU as ServicesCheckboxGroup, ey as ServicesDropdown, du as Settings, eg as ShapeData, eh as ShapeDataStyles, eX as Signature, bu as SortOrder, jm as SortOrderWithLiterals, h7 as Sorting, ao as Source, ie as SourceWithLiterals, bj as SpamFilterProtectionLevel, jb as SpamFilterProtectionLevelWithLiterals, cS as Spoiler, dN as SpoilerData, bw as Status, jo as StatusWithLiterals, fQ as Step, a8 as StringComponentType, h_ as StringComponentTypeWithLiterals, cA as StringCorrectAnswersList, b_ as StringErrorMessages, cG as StringQuizFieldSettings, cB as StringType, b$ as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, hU as StringTypeFormatEnumFormatWithLiterals, cC as StringTypeFormatOptionsOneOf, c0 as StringTypePhoneConstraints, c1 as StringTypeValidationMessages, cU as Styles, dj as StylesBorder, ap as StylesPosition, ig as StylesPositionWithLiterals, bG as SubmissionContactMapped, bI as SubmissionContactMappingSkipped, hq as SubmissionDocument, hr as SubmissionDocumentDocumentOneOf, bx as SubmissionErrorType, jp as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hR as SubmissionStatusWithLiterals, hI as SubmissionValidationError, hJ as SubmissionValidationErrorErrorMessageOneOf, hH as SubmissionValidationErrors, gB as SubmissionValidationErrorsDetails, hO as SubmissionsQueryResult, gy as SubmitContactResponse, g4 as SubmitSettings, g5 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bn as SubmitSuccessAction, jf as SubmitSuccessActionWithLiterals, by as Submitter, bz as SubmitterSubmitterOneOf, fs as SubscriptionInfo, bh as SubscriptionInfoOptInLevel, j9 as SubscriptionInfoOptInLevelWithLiterals, e3 as TableCellData, e1 as TableData, b8 as Tag, bD as TagList, j0 as TagWithLiterals, gm as Tags, eT as TagsOption, gn as TagsTagList, bm as Target, je as TargetWithLiterals, ae as TextAlignment, i4 as TextAlignmentWithLiterals, dF as TextData, cH as TextInput, ek as TextNodeStyle, cZ as TextStyle, g6 as ThankYouMessageOptions, dc as Thumbnails, am as ThumbnailsAlignment, ic as ThumbnailsAlignmentWithLiterals, ew as TimeInput, b1 as Type, iV as TypeWithLiterals, hA as UpdateExtendedFieldsRequest, gQ as UpdateSubmissionRequest, gR as UpdateSubmissionResponse, a_ as UploadFileFormat, iS as UploadFileFormatWithLiterals, fV as UpsertContact, gx as UpsertContactFromSubmissionRequest, fW as V4FormFieldContactInfo, fX as V4FormFieldContactInfoAdditionalInfoOneOf, hE as ValidateFormSubmissionRequest, cs as Validation, gC as ValidationError, a3 as ValidationFormat, hV as ValidationFormatWithLiterals, cF as ValidationMessages, ct as ValidationValidationOneOf, aI as VerticalAlignment, aM as VerticalAlignmentAlignment, iE as VerticalAlignmentAlignmentWithLiterals, iA as VerticalAlignmentWithLiterals, d6 as Video, fk as VideoConferenceOptions, dY as VideoData, ai as ViewMode, i8 as ViewModeWithLiterals, ar as ViewRole, ii as ViewRoleWithLiterals, as as VoteRole, ij as VoteRoleWithLiterals, a1 as WebhookIdentityType, hT as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, i0 as WidthTypeWithLiterals, i6 as WidthWithLiterals, fC as WixFile, aZ as WixFileComponentType, fD as WixFileComponentTypeOptionsOneOf, iR as WixFileComponentTypeWithLiterals, fz as _Array, fA as _ArrayComponentTypeOptionsOneOf, fx as _Boolean, fy as _BooleanComponentTypeOptionsOneOf, fv as _Number, fw as _NumberComponentTypeOptionsOneOf, fB as _Object, ft as _String, fu as _StringComponentTypeOptionsOneOf, hQ as utils } from './forms-v4-submission-submissions.universal-CioD21SQ.js';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as 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-CqVoo7cC.js';
|
|
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.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|