@wix/auto_sdk_forms_submissions 1.0.117 → 1.0.118
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-BBHYv5E8.d.ts → forms-v4-submission-submissions.universal-C1P4RpS_.d.ts} +686 -8
- package/build/cjs/index.d.ts +3 -3
- package/build/cjs/index.js +152 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +152 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +725 -7
- package/build/cjs/meta.js +133 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +175 -3
- package/build/cjs/schemas.js +250 -1
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-BBHYv5E8.d.mts → forms-v4-submission-submissions.universal-C1P4RpS_.d.mts} +686 -8
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs +142 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +142 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +725 -7
- package/build/es/meta.mjs +123 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +175 -3
- package/build/es/schemas.mjs +250 -1
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-D3uoXTdA.d.ts → forms-v4-submission-submissions.universal-D6YYlji6.d.ts} +686 -8
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js +152 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +152 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +725 -7
- package/build/internal/cjs/meta.js +133 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +175 -3
- package/build/internal/cjs/schemas.js +250 -1
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-D3uoXTdA.d.mts → forms-v4-submission-submissions.universal-D6YYlji6.d.mts} +686 -8
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs +142 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +142 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +725 -7
- package/build/internal/es/meta.mjs +123 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +175 -3
- package/build/internal/es/schemas.mjs +250 -1
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1217,7 +1217,7 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
|
|
|
1217
1217
|
/** Scheduling input field settings. */
|
|
1218
1218
|
schedulingOptions?: Scheduling;
|
|
1219
1219
|
/** Address input field settings. */
|
|
1220
|
-
addressOptions?:
|
|
1220
|
+
addressOptions?: InputFieldAddress;
|
|
1221
1221
|
/**
|
|
1222
1222
|
* Human readable identifier used to reference a field. For example, `"address"`.
|
|
1223
1223
|
*
|
|
@@ -1278,7 +1278,7 @@ interface InputFieldInputTypeOptionsOneOf {
|
|
|
1278
1278
|
/** Scheduling input field settings. */
|
|
1279
1279
|
schedulingOptions?: Scheduling;
|
|
1280
1280
|
/** Address input field settings. */
|
|
1281
|
-
addressOptions?:
|
|
1281
|
+
addressOptions?: InputFieldAddress;
|
|
1282
1282
|
}
|
|
1283
1283
|
interface StringCorrectAnswersList {
|
|
1284
1284
|
/**
|
|
@@ -5430,7 +5430,7 @@ interface SchedulingComponentTypeOptionsOneOf {
|
|
|
5430
5430
|
/** Appointment component settings. */
|
|
5431
5431
|
appointmentOptions?: Appointment;
|
|
5432
5432
|
}
|
|
5433
|
-
interface
|
|
5433
|
+
interface InputFieldAddress extends InputFieldAddressComponentTypeOptionsOneOf {
|
|
5434
5434
|
/** Multiline address component settings. */
|
|
5435
5435
|
multilineAddressOptions?: MultilineAddress;
|
|
5436
5436
|
/**
|
|
@@ -5442,7 +5442,7 @@ interface Address extends AddressComponentTypeOptionsOneOf {
|
|
|
5442
5442
|
validation?: MultilineAddressValidation;
|
|
5443
5443
|
}
|
|
5444
5444
|
/** @oneof */
|
|
5445
|
-
interface
|
|
5445
|
+
interface InputFieldAddressComponentTypeOptionsOneOf {
|
|
5446
5446
|
/** Multiline address component settings. */
|
|
5447
5447
|
multilineAddressOptions?: MultilineAddress;
|
|
5448
5448
|
}
|
|
@@ -6248,8 +6248,15 @@ interface UpsertContactFromSubmissionRequest {
|
|
|
6248
6248
|
emailVerified?: boolean;
|
|
6249
6249
|
}
|
|
6250
6250
|
interface UpsertContactFromSubmissionResponse {
|
|
6251
|
-
/**
|
|
6251
|
+
/**
|
|
6252
|
+
* Submit contact response.
|
|
6253
|
+
* @deprecated
|
|
6254
|
+
* @replacedBy wix.forms.v4.UpsertContactFromSubmissionResponse.upsert_contact_response
|
|
6255
|
+
* @targetRemovalDate 2026-08-05
|
|
6256
|
+
*/
|
|
6252
6257
|
submitContactResponse?: SubmitContactResponse;
|
|
6258
|
+
/** Upsert contact response. */
|
|
6259
|
+
upsertContactResponse?: UpsertContactResponse;
|
|
6253
6260
|
}
|
|
6254
6261
|
interface SubmitContactResponse {
|
|
6255
6262
|
/**
|
|
@@ -6284,6 +6291,678 @@ declare enum IdentityType {
|
|
|
6284
6291
|
}
|
|
6285
6292
|
/** @enumType */
|
|
6286
6293
|
type IdentityTypeWithLiterals = IdentityType | 'UNKNOWN' | 'CONTACT' | 'MEMBER' | 'NOT_AUTHENTICATED_MEMBER';
|
|
6294
|
+
interface UpsertContactResponse {
|
|
6295
|
+
/** Upserted contact. */
|
|
6296
|
+
contact?: Contact;
|
|
6297
|
+
/** The action performed on the contact. */
|
|
6298
|
+
action?: ActionWithLiterals;
|
|
6299
|
+
/**
|
|
6300
|
+
* The upload ID of the image upload process.
|
|
6301
|
+
* @maxLength 100
|
|
6302
|
+
*/
|
|
6303
|
+
imageUploadId?: string | null;
|
|
6304
|
+
}
|
|
6305
|
+
interface Contact {
|
|
6306
|
+
/**
|
|
6307
|
+
* Contact ID.
|
|
6308
|
+
* @format GUID
|
|
6309
|
+
* @immutable
|
|
6310
|
+
* @readonly
|
|
6311
|
+
*/
|
|
6312
|
+
_id?: string | null;
|
|
6313
|
+
/**
|
|
6314
|
+
* Revision number, which increments by 1 each time the Contact is updated.
|
|
6315
|
+
* To prevent conflicting changes,
|
|
6316
|
+
* the current revision must be passed when updating the Contact.
|
|
6317
|
+
*
|
|
6318
|
+
* Ignored when creating a Contact.
|
|
6319
|
+
* @readonly
|
|
6320
|
+
*/
|
|
6321
|
+
revision?: string | null;
|
|
6322
|
+
/**
|
|
6323
|
+
* Date and time the Contact was created.
|
|
6324
|
+
* @readonly
|
|
6325
|
+
* @immutable
|
|
6326
|
+
*/
|
|
6327
|
+
_createdDate?: Date | null;
|
|
6328
|
+
/**
|
|
6329
|
+
* Date and time the Contact was last updated.
|
|
6330
|
+
* @readonly
|
|
6331
|
+
*/
|
|
6332
|
+
_updatedDate?: Date | null;
|
|
6333
|
+
/**
|
|
6334
|
+
* Contact External ID. Used to identify contacts from external systems.
|
|
6335
|
+
* This field can only be set once and cannot be updated after creation.
|
|
6336
|
+
* @maxLength 100
|
|
6337
|
+
*/
|
|
6338
|
+
externalId?: string | null;
|
|
6339
|
+
/** Contact's name information including first and last name. */
|
|
6340
|
+
name?: ContactName;
|
|
6341
|
+
/**
|
|
6342
|
+
* The main email of the contact with subscription status and deliverability information.
|
|
6343
|
+
* This email is used for contact matching and deduplication logic.
|
|
6344
|
+
*/
|
|
6345
|
+
email?: ContactEmail;
|
|
6346
|
+
/**
|
|
6347
|
+
* Additional emails of the contact.
|
|
6348
|
+
* These emails do not affect subscription status or contact matching/deduplication.
|
|
6349
|
+
* The main email field must be set before additional emails can be added.
|
|
6350
|
+
* @maxSize 10
|
|
6351
|
+
*/
|
|
6352
|
+
additionalEmails?: AdditionalEmail[];
|
|
6353
|
+
/**
|
|
6354
|
+
* The main phone of the contact with subscription status and deliverability information.
|
|
6355
|
+
* This phone is used for contact matching and deduplication logic.
|
|
6356
|
+
* At least one of name, email, or phone is required for contact creation.
|
|
6357
|
+
*/
|
|
6358
|
+
phone?: ContactPhone;
|
|
6359
|
+
/**
|
|
6360
|
+
* Additional phones of the contact.
|
|
6361
|
+
* These phones do not affect subscription status or contact matching/deduplication.
|
|
6362
|
+
* The main phone field must be set before additional phones can be added.
|
|
6363
|
+
* @maxSize 10
|
|
6364
|
+
*/
|
|
6365
|
+
additionalPhones?: AdditionalPhone[];
|
|
6366
|
+
/**
|
|
6367
|
+
* Contact's physical addresses.
|
|
6368
|
+
* Each address can be tagged (HOME, WORK, BILLING, SHIPPING, OTHER) and one can be set as default.
|
|
6369
|
+
* If no address is marked as default, the first address automatically becomes the default.
|
|
6370
|
+
* @maxSize 50
|
|
6371
|
+
*/
|
|
6372
|
+
addresses?: ContactAddress[];
|
|
6373
|
+
/** Contact's company information including company name and job title. */
|
|
6374
|
+
company?: ContactCompany;
|
|
6375
|
+
/**
|
|
6376
|
+
* Locale in
|
|
6377
|
+
* [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
6378
|
+
* Typically, this is a lowercase 2-letter language code,
|
|
6379
|
+
* followed by a hyphen, followed by an uppercase 2-letter country code.
|
|
6380
|
+
* For example, `en-US` for U.S. English, and `de-DE` for Germany German.
|
|
6381
|
+
* @format LANGUAGE_TAG
|
|
6382
|
+
*/
|
|
6383
|
+
locale?: string | null;
|
|
6384
|
+
/**
|
|
6385
|
+
* Birth date in `YYYY-MM-DD` format. For example, `2020-03-15`.
|
|
6386
|
+
* @format LOCAL_DATE
|
|
6387
|
+
*/
|
|
6388
|
+
birthdate?: string | null;
|
|
6389
|
+
/**
|
|
6390
|
+
* IANA time zone identifier for the contact's location.
|
|
6391
|
+
* Valid values are IANA time zone IDs, such as 'Europe/Rome' or 'America/New_York'.
|
|
6392
|
+
* @maxLength 50
|
|
6393
|
+
*/
|
|
6394
|
+
timeZone?: string | null;
|
|
6395
|
+
/**
|
|
6396
|
+
* Site contributor user ID assigned to manage communication with this contact.
|
|
6397
|
+
* Must be a valid GUID referencing an existing site contributor.
|
|
6398
|
+
* Only one assignee can be set per contact.
|
|
6399
|
+
* @format GUID
|
|
6400
|
+
*/
|
|
6401
|
+
assigneeId?: string | null;
|
|
6402
|
+
/**
|
|
6403
|
+
* List of business location IDs associated with this contact.
|
|
6404
|
+
* Used for multi-location businesses to organize contacts by physical business locations.
|
|
6405
|
+
* Each ID must be a valid GUID referencing an existing business location.
|
|
6406
|
+
* @format GUID
|
|
6407
|
+
* @maxSize 50
|
|
6408
|
+
*/
|
|
6409
|
+
locationIds?: string[];
|
|
6410
|
+
/** Contact's profile image. */
|
|
6411
|
+
image?: string;
|
|
6412
|
+
/**
|
|
6413
|
+
* Details about the origin of the contact.
|
|
6414
|
+
* This field is immutable and set automatically when the contact is created.
|
|
6415
|
+
* @immutable
|
|
6416
|
+
*/
|
|
6417
|
+
source?: ContactSource;
|
|
6418
|
+
/**
|
|
6419
|
+
* Details about the contact's most recent activity on the site.
|
|
6420
|
+
* Includes activity date and template ID. This field is read-only and updated automatically.
|
|
6421
|
+
* @readonly
|
|
6422
|
+
*/
|
|
6423
|
+
lastActivity?: ContactActivity;
|
|
6424
|
+
/**
|
|
6425
|
+
* Contact's site membership information including member ID, status, and profile details.
|
|
6426
|
+
* This field is read-only and populated automatically when the contact is also a site member.
|
|
6427
|
+
* @readonly
|
|
6428
|
+
*/
|
|
6429
|
+
memberInfo?: MemberInfo;
|
|
6430
|
+
/** Tags assigned to the contact for organization and filtering. */
|
|
6431
|
+
tags?: PrivateTags;
|
|
6432
|
+
/**
|
|
6433
|
+
* Extended fields for storing custom contact data beyond the standard fields.
|
|
6434
|
+
* Allows adding custom properties specific to business needs.
|
|
6435
|
+
*/
|
|
6436
|
+
extendedFields?: ExtendedFields;
|
|
6437
|
+
}
|
|
6438
|
+
interface ContactName {
|
|
6439
|
+
/**
|
|
6440
|
+
* Contact's first name.
|
|
6441
|
+
* @maxLength 1000
|
|
6442
|
+
*/
|
|
6443
|
+
first?: string | null;
|
|
6444
|
+
/**
|
|
6445
|
+
* Contact's last name.
|
|
6446
|
+
* @maxLength 1000
|
|
6447
|
+
*/
|
|
6448
|
+
last?: string | null;
|
|
6449
|
+
}
|
|
6450
|
+
interface ContactEmail {
|
|
6451
|
+
/**
|
|
6452
|
+
* Main email address for the contact. Used for communication and contact matching.
|
|
6453
|
+
* @format EMAIL
|
|
6454
|
+
* @maxLength 320
|
|
6455
|
+
*/
|
|
6456
|
+
email?: string;
|
|
6457
|
+
/**
|
|
6458
|
+
* Indicates the recipient's opt-in or opt-out status for marketing emails.
|
|
6459
|
+
* This field is read-only and managed by the subscription system.
|
|
6460
|
+
* @readonly
|
|
6461
|
+
*/
|
|
6462
|
+
subscriptionStatus?: ContactSubscription;
|
|
6463
|
+
/**
|
|
6464
|
+
* Indicates the last reported delivery status of emails sent to this address.
|
|
6465
|
+
* This field is read-only and updated automatically by the email delivery system.
|
|
6466
|
+
*
|
|
6467
|
+
* - `NOT_SET`: No delivery status reported. Default value.
|
|
6468
|
+
* - `VALID`: Emails are being successfully delivered to this address.
|
|
6469
|
+
* - `BOUNCED`: The last email to this address bounced or was rejected by the recipient's email server.
|
|
6470
|
+
* - `SPAM_COMPLAINT`: Recipient registered a spam complaint with their email provider.
|
|
6471
|
+
* - `INACTIVE`: Multiple emails have been delivered without any engagement from the recipient.
|
|
6472
|
+
* @readonly
|
|
6473
|
+
*/
|
|
6474
|
+
deliverabilityStatus?: EmailDeliverabilityStatusWithLiterals;
|
|
6475
|
+
}
|
|
6476
|
+
interface ContactSubscription {
|
|
6477
|
+
/**
|
|
6478
|
+
* Indicates the recipient's opt-in or opt-out status for marketing communications.
|
|
6479
|
+
*
|
|
6480
|
+
* - `NOT_SET`: No subscription status specified. Default value.
|
|
6481
|
+
* - `PENDING`: Subscription confirmation was requested, but recipient hasn't confirmed yet.
|
|
6482
|
+
* - `SUBSCRIBED`: Recipient has explicitly opted in to receive marketing communications.
|
|
6483
|
+
* - `UNSUBSCRIBED`: Recipient has opted out of marketing communications.
|
|
6484
|
+
*/
|
|
6485
|
+
status?: SubscriptionStatusWithLiterals;
|
|
6486
|
+
/** Date and time when the subscription status was last updated. */
|
|
6487
|
+
_updatedDate?: Date | null;
|
|
6488
|
+
}
|
|
6489
|
+
declare enum SubscriptionStatus {
|
|
6490
|
+
NO_SUBSCRIPTION_STATUS = "NO_SUBSCRIPTION_STATUS",
|
|
6491
|
+
NOT_SET = "NOT_SET",
|
|
6492
|
+
PENDING = "PENDING",
|
|
6493
|
+
SUBSCRIBED = "SUBSCRIBED",
|
|
6494
|
+
UNSUBSCRIBED = "UNSUBSCRIBED"
|
|
6495
|
+
}
|
|
6496
|
+
/** @enumType */
|
|
6497
|
+
type SubscriptionStatusWithLiterals = SubscriptionStatus | 'NO_SUBSCRIPTION_STATUS' | 'NOT_SET' | 'PENDING' | 'SUBSCRIBED' | 'UNSUBSCRIBED';
|
|
6498
|
+
declare enum EmailDeliverabilityStatus {
|
|
6499
|
+
NOT_SET = "NOT_SET",
|
|
6500
|
+
VALID = "VALID",
|
|
6501
|
+
BOUNCED = "BOUNCED",
|
|
6502
|
+
SPAM_COMPLAINT = "SPAM_COMPLAINT",
|
|
6503
|
+
INACTIVE = "INACTIVE"
|
|
6504
|
+
}
|
|
6505
|
+
/** @enumType */
|
|
6506
|
+
type EmailDeliverabilityStatusWithLiterals = EmailDeliverabilityStatus | 'NOT_SET' | 'VALID' | 'BOUNCED' | 'SPAM_COMPLAINT' | 'INACTIVE';
|
|
6507
|
+
interface AdditionalEmail {
|
|
6508
|
+
/**
|
|
6509
|
+
* Additional email address for the contact.
|
|
6510
|
+
* Does not affect subscription status or contact matching logic.
|
|
6511
|
+
* @format EMAIL
|
|
6512
|
+
* @maxLength 320
|
|
6513
|
+
*/
|
|
6514
|
+
email?: string;
|
|
6515
|
+
}
|
|
6516
|
+
interface ContactPhone {
|
|
6517
|
+
/**
|
|
6518
|
+
* Phone type classification. Helps categorize the phone number's purpose.
|
|
6519
|
+
* Default value: OTHER
|
|
6520
|
+
*/
|
|
6521
|
+
tag?: PhoneTagWithLiterals;
|
|
6522
|
+
/**
|
|
6523
|
+
* Primary phone number for the contact. Used for communication and contact matching.
|
|
6524
|
+
* @minLength 1
|
|
6525
|
+
* @maxLength 50
|
|
6526
|
+
*/
|
|
6527
|
+
phone?: string;
|
|
6528
|
+
/**
|
|
6529
|
+
* Phone number in [ITU E.164 international](https://www.itu.int/rec/T-REC-E.164/) format (e.g., +12345550123).
|
|
6530
|
+
* This field is automatically generated from the phone field if it represents a valid E.164 number.
|
|
6531
|
+
* @readonly
|
|
6532
|
+
* @maxLength 50
|
|
6533
|
+
*/
|
|
6534
|
+
e164?: string | null;
|
|
6535
|
+
/**
|
|
6536
|
+
* Indicates the recipient's opt-in or opt-out status for SMS/text message marketing.
|
|
6537
|
+
* This field is read-only and managed by the subscription system.
|
|
6538
|
+
* @readonly
|
|
6539
|
+
*/
|
|
6540
|
+
subscriptionStatus?: ContactSubscription;
|
|
6541
|
+
/**
|
|
6542
|
+
* Indicates the delivery status for SMS messages sent to this phone number.
|
|
6543
|
+
* This field is read-only and updated automatically by the SMS delivery system.
|
|
6544
|
+
* - `NO_PHONE_DELIVERABILITY_STATUS`: No status exists. Used when the phone is not a valid E164 number.
|
|
6545
|
+
* - `NOT_SET`: No delivery status reported. Default when the phone is a valid E164 number.
|
|
6546
|
+
* - `VALID`: Last message was sent and delivered successfully.
|
|
6547
|
+
* - `INVALID`: The number is invalid (landline, number disconnected, etc.).
|
|
6548
|
+
* @readonly
|
|
6549
|
+
*/
|
|
6550
|
+
deliverabilityStatus?: PhoneDeliverabilityStatusWithLiterals;
|
|
6551
|
+
}
|
|
6552
|
+
declare enum PhoneTag {
|
|
6553
|
+
OTHER = "OTHER",
|
|
6554
|
+
MAIN = "MAIN",
|
|
6555
|
+
HOME = "HOME",
|
|
6556
|
+
MOBILE = "MOBILE",
|
|
6557
|
+
WORK = "WORK",
|
|
6558
|
+
FAX = "FAX"
|
|
6559
|
+
}
|
|
6560
|
+
/** @enumType */
|
|
6561
|
+
type PhoneTagWithLiterals = PhoneTag | 'OTHER' | 'MAIN' | 'HOME' | 'MOBILE' | 'WORK' | 'FAX';
|
|
6562
|
+
declare enum PhoneDeliverabilityStatus {
|
|
6563
|
+
NO_PHONE_DELIVERABILITY_STATUS = "NO_PHONE_DELIVERABILITY_STATUS",
|
|
6564
|
+
NOT_SET = "NOT_SET",
|
|
6565
|
+
VALID = "VALID",
|
|
6566
|
+
INVALID = "INVALID"
|
|
6567
|
+
}
|
|
6568
|
+
/** @enumType */
|
|
6569
|
+
type PhoneDeliverabilityStatusWithLiterals = PhoneDeliverabilityStatus | 'NO_PHONE_DELIVERABILITY_STATUS' | 'NOT_SET' | 'VALID' | 'INVALID';
|
|
6570
|
+
interface AdditionalPhone {
|
|
6571
|
+
/**
|
|
6572
|
+
* Phone type classification for the additional phone number.
|
|
6573
|
+
* Default value: OTHER
|
|
6574
|
+
*/
|
|
6575
|
+
tag?: PhoneTagWithLiterals;
|
|
6576
|
+
/**
|
|
6577
|
+
* Additional phone number for the contact.
|
|
6578
|
+
* Does not affect subscription status or contact matching logic.
|
|
6579
|
+
* @minLength 1
|
|
6580
|
+
* @maxLength 50
|
|
6581
|
+
*/
|
|
6582
|
+
phone?: string;
|
|
6583
|
+
/**
|
|
6584
|
+
* Additional phone number in [ITU E.164 international](https://www.itu.int/rec/T-REC-E.164/) format (e.g., +12345550123).
|
|
6585
|
+
* This field is automatically generated from the phone field if it represents a valid E.164 number.
|
|
6586
|
+
* @readonly
|
|
6587
|
+
* @maxLength 50
|
|
6588
|
+
*/
|
|
6589
|
+
e164?: string | null;
|
|
6590
|
+
}
|
|
6591
|
+
interface ContactAddress {
|
|
6592
|
+
/**
|
|
6593
|
+
* Address type classification. Helps categorize the address purpose.
|
|
6594
|
+
* Default value: OTHER
|
|
6595
|
+
*/
|
|
6596
|
+
tag?: AddressTagWithLiterals;
|
|
6597
|
+
/**
|
|
6598
|
+
* Physical address information including street, city, country, and postal code.
|
|
6599
|
+
* Contains structured address data following common address formatting standards.
|
|
6600
|
+
*/
|
|
6601
|
+
address?: Address;
|
|
6602
|
+
/**
|
|
6603
|
+
* Indicates whether this address is the primary/default address for the contact.
|
|
6604
|
+
* Only one address can be designated as default per contact.
|
|
6605
|
+
* If no address is explicitly set as default, the first address automatically becomes the default.
|
|
6606
|
+
* All other addresses will have this field set to false.
|
|
6607
|
+
*/
|
|
6608
|
+
defaultAddress?: boolean | null;
|
|
6609
|
+
/**
|
|
6610
|
+
* Address ID
|
|
6611
|
+
* @format GUID
|
|
6612
|
+
*/
|
|
6613
|
+
_id?: string | null;
|
|
6614
|
+
/** Address recipient information for delivery purposes */
|
|
6615
|
+
recipient?: Recipient;
|
|
6616
|
+
}
|
|
6617
|
+
declare enum AddressTag {
|
|
6618
|
+
OTHER = "OTHER",
|
|
6619
|
+
HOME = "HOME",
|
|
6620
|
+
WORK = "WORK",
|
|
6621
|
+
BILLING = "BILLING",
|
|
6622
|
+
SHIPPING = "SHIPPING"
|
|
6623
|
+
}
|
|
6624
|
+
/** @enumType */
|
|
6625
|
+
type AddressTagWithLiterals = AddressTag | 'OTHER' | 'HOME' | 'WORK' | 'BILLING' | 'SHIPPING';
|
|
6626
|
+
/** Physical address */
|
|
6627
|
+
interface Address extends AddressStreetOneOf {
|
|
6628
|
+
/** Street address object, with number and name in separate fields. */
|
|
6629
|
+
streetAddress?: StreetAddress;
|
|
6630
|
+
/**
|
|
6631
|
+
* Main address line, usually street and number, as free text.
|
|
6632
|
+
* @maxLength 1000
|
|
6633
|
+
*/
|
|
6634
|
+
addressLine1?: string | null;
|
|
6635
|
+
/**
|
|
6636
|
+
* 2-letter country code in an
|
|
6637
|
+
* [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format.
|
|
6638
|
+
* @format COUNTRY
|
|
6639
|
+
*/
|
|
6640
|
+
country?: string | null;
|
|
6641
|
+
/**
|
|
6642
|
+
* Subdivision shorthand. Usually, a short code (2 or 3 letters) that represents a state, region, prefecture, or province. e.g. NY
|
|
6643
|
+
* @format SUBDIVISION
|
|
6644
|
+
*/
|
|
6645
|
+
subdivision?: string | null;
|
|
6646
|
+
/**
|
|
6647
|
+
* City name.
|
|
6648
|
+
* @maxLength 300
|
|
6649
|
+
*/
|
|
6650
|
+
city?: string | null;
|
|
6651
|
+
/**
|
|
6652
|
+
* Postal or zip code.
|
|
6653
|
+
* @maxLength 100
|
|
6654
|
+
*/
|
|
6655
|
+
postalCode?: string | null;
|
|
6656
|
+
/**
|
|
6657
|
+
* Free text providing more detailed address information,
|
|
6658
|
+
* such as apartment, suite, or floor.
|
|
6659
|
+
* @maxLength 1000
|
|
6660
|
+
*/
|
|
6661
|
+
addressLine2?: string | null;
|
|
6662
|
+
/**
|
|
6663
|
+
* Human-readable address string.
|
|
6664
|
+
* If not provided, the value is generated from the available address data.
|
|
6665
|
+
* @maxLength 2000
|
|
6666
|
+
*/
|
|
6667
|
+
formatted?: string | null;
|
|
6668
|
+
/**
|
|
6669
|
+
* Instructions to help someone find the address, such as landmarks or where the entrance is.
|
|
6670
|
+
* @maxLength 200
|
|
6671
|
+
*/
|
|
6672
|
+
hint?: string | null;
|
|
6673
|
+
/** Coordinates of the physical address. */
|
|
6674
|
+
location?: AddressLocation;
|
|
6675
|
+
/**
|
|
6676
|
+
* Full country name.
|
|
6677
|
+
* @maxLength 100
|
|
6678
|
+
*/
|
|
6679
|
+
countryFullname?: string | null;
|
|
6680
|
+
/**
|
|
6681
|
+
* Hierarchical list of subdivisions, where the first array item is the highest level of hierarchy, and so on.
|
|
6682
|
+
* @maxSize 6
|
|
6683
|
+
*/
|
|
6684
|
+
subdivisions?: Subdivision[];
|
|
6685
|
+
/**
|
|
6686
|
+
* Subdivision full name.
|
|
6687
|
+
* @maxLength 100
|
|
6688
|
+
*/
|
|
6689
|
+
subdivisionFullname?: string | null;
|
|
6690
|
+
}
|
|
6691
|
+
/** @oneof */
|
|
6692
|
+
interface AddressStreetOneOf {
|
|
6693
|
+
/** Street address object, with number and name in separate fields. */
|
|
6694
|
+
streetAddress?: StreetAddress;
|
|
6695
|
+
/**
|
|
6696
|
+
* Main address line, usually street and number, as free text.
|
|
6697
|
+
* @maxLength 1000
|
|
6698
|
+
*/
|
|
6699
|
+
addressLine?: string | null;
|
|
6700
|
+
}
|
|
6701
|
+
interface StreetAddress {
|
|
6702
|
+
/**
|
|
6703
|
+
* Street number.
|
|
6704
|
+
* @maxLength 100
|
|
6705
|
+
*/
|
|
6706
|
+
number?: string;
|
|
6707
|
+
/**
|
|
6708
|
+
* Street name.
|
|
6709
|
+
* @maxLength 300
|
|
6710
|
+
*/
|
|
6711
|
+
name?: string;
|
|
6712
|
+
/**
|
|
6713
|
+
* Apartment number.
|
|
6714
|
+
* @maxLength 50
|
|
6715
|
+
*/
|
|
6716
|
+
apt?: string;
|
|
6717
|
+
/**
|
|
6718
|
+
* Optional address line 1
|
|
6719
|
+
* @maxLength 2000
|
|
6720
|
+
*/
|
|
6721
|
+
formattedAddressLine?: string | null;
|
|
6722
|
+
}
|
|
6723
|
+
interface AddressLocation {
|
|
6724
|
+
/**
|
|
6725
|
+
* Address latitude.
|
|
6726
|
+
* @min -90
|
|
6727
|
+
* @max 90
|
|
6728
|
+
*/
|
|
6729
|
+
latitude?: number | null;
|
|
6730
|
+
/**
|
|
6731
|
+
* Address longitude.
|
|
6732
|
+
* @min -180
|
|
6733
|
+
* @max 180
|
|
6734
|
+
*/
|
|
6735
|
+
longitude?: number | null;
|
|
6736
|
+
}
|
|
6737
|
+
interface Subdivision {
|
|
6738
|
+
/**
|
|
6739
|
+
* subdivision short code
|
|
6740
|
+
* @maxLength 20
|
|
6741
|
+
*/
|
|
6742
|
+
code?: string;
|
|
6743
|
+
/**
|
|
6744
|
+
* Full subdivision name.
|
|
6745
|
+
* @maxLength 100
|
|
6746
|
+
*/
|
|
6747
|
+
name?: string;
|
|
6748
|
+
/** Subdivision level */
|
|
6749
|
+
type?: SubdivisionTypeWithLiterals;
|
|
6750
|
+
/**
|
|
6751
|
+
* Free text description of subdivision type.
|
|
6752
|
+
* Examples: `"state"`, `"province"`, `"prefecture"`.
|
|
6753
|
+
* @maxLength 100
|
|
6754
|
+
*/
|
|
6755
|
+
typeInfo?: string | null;
|
|
6756
|
+
}
|
|
6757
|
+
declare enum SubdivisionType {
|
|
6758
|
+
UNKNOWN_SUBDIVISION_TYPE = "UNKNOWN_SUBDIVISION_TYPE",
|
|
6759
|
+
/** State */
|
|
6760
|
+
ADMINISTRATIVE_AREA_LEVEL_1 = "ADMINISTRATIVE_AREA_LEVEL_1",
|
|
6761
|
+
/** County */
|
|
6762
|
+
ADMINISTRATIVE_AREA_LEVEL_2 = "ADMINISTRATIVE_AREA_LEVEL_2",
|
|
6763
|
+
/** City/town */
|
|
6764
|
+
ADMINISTRATIVE_AREA_LEVEL_3 = "ADMINISTRATIVE_AREA_LEVEL_3",
|
|
6765
|
+
/** Neighborhood/quarter */
|
|
6766
|
+
ADMINISTRATIVE_AREA_LEVEL_4 = "ADMINISTRATIVE_AREA_LEVEL_4",
|
|
6767
|
+
/** Street/block */
|
|
6768
|
+
ADMINISTRATIVE_AREA_LEVEL_5 = "ADMINISTRATIVE_AREA_LEVEL_5",
|
|
6769
|
+
/** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
6770
|
+
COUNTRY = "COUNTRY"
|
|
6771
|
+
}
|
|
6772
|
+
/** @enumType */
|
|
6773
|
+
type SubdivisionTypeWithLiterals = SubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
|
|
6774
|
+
/** Subdivision Concordance values */
|
|
6775
|
+
interface StandardDetails {
|
|
6776
|
+
/**
|
|
6777
|
+
* subdivision iso-3166-2 code according to [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2). e.g. US-NY, GB-SCT, NO-30
|
|
6778
|
+
* @maxLength 20
|
|
6779
|
+
*/
|
|
6780
|
+
iso31662?: string | null;
|
|
6781
|
+
}
|
|
6782
|
+
interface Recipient {
|
|
6783
|
+
/**
|
|
6784
|
+
* Recipient's first name.
|
|
6785
|
+
* @maxLength 1000
|
|
6786
|
+
*/
|
|
6787
|
+
firstName?: string | null;
|
|
6788
|
+
/**
|
|
6789
|
+
* Recipient's last name.
|
|
6790
|
+
* @maxLength 1000
|
|
6791
|
+
*/
|
|
6792
|
+
lastName?: string | null;
|
|
6793
|
+
/**
|
|
6794
|
+
* Recipient's company name.
|
|
6795
|
+
* @maxLength 1000
|
|
6796
|
+
*/
|
|
6797
|
+
company?: string | null;
|
|
6798
|
+
/**
|
|
6799
|
+
* Recipient's phone number.
|
|
6800
|
+
* @minLength 1
|
|
6801
|
+
* @maxLength 50
|
|
6802
|
+
*/
|
|
6803
|
+
phone?: string | null;
|
|
6804
|
+
}
|
|
6805
|
+
interface ContactCompany {
|
|
6806
|
+
/**
|
|
6807
|
+
* Contact's company name.
|
|
6808
|
+
* @maxLength 1000
|
|
6809
|
+
*/
|
|
6810
|
+
name?: string | null;
|
|
6811
|
+
/**
|
|
6812
|
+
* Contact's job title.
|
|
6813
|
+
* @maxLength 1000
|
|
6814
|
+
*/
|
|
6815
|
+
jobTitle?: string | null;
|
|
6816
|
+
}
|
|
6817
|
+
interface ContactSource {
|
|
6818
|
+
/**
|
|
6819
|
+
* ID of the user who created this contact.
|
|
6820
|
+
* @readonly
|
|
6821
|
+
* @format GUID
|
|
6822
|
+
* @immutable
|
|
6823
|
+
*/
|
|
6824
|
+
userId?: string | null;
|
|
6825
|
+
/**
|
|
6826
|
+
* ID of the application that created this contact.
|
|
6827
|
+
* @readonly
|
|
6828
|
+
* @format GUID
|
|
6829
|
+
* @immutable
|
|
6830
|
+
*/
|
|
6831
|
+
appId?: string | null;
|
|
6832
|
+
/**
|
|
6833
|
+
* Additional information about the contact's origin or creation context.
|
|
6834
|
+
* @maxLength 1000
|
|
6835
|
+
* @immutable
|
|
6836
|
+
*/
|
|
6837
|
+
additionalInfo?: string | null;
|
|
6838
|
+
}
|
|
6839
|
+
interface ContactActivity {
|
|
6840
|
+
/** Date and time when the contact's most recent activity occurred. */
|
|
6841
|
+
date?: Date | null;
|
|
6842
|
+
/**
|
|
6843
|
+
* ID of the activity template that defines the type of activity performed.
|
|
6844
|
+
* References a template in the contacts activity log system.
|
|
6845
|
+
* @format GUID
|
|
6846
|
+
*/
|
|
6847
|
+
templateId?: string | null;
|
|
6848
|
+
}
|
|
6849
|
+
interface MemberInfo {
|
|
6850
|
+
/**
|
|
6851
|
+
* Member ID
|
|
6852
|
+
* @format GUID
|
|
6853
|
+
*/
|
|
6854
|
+
memberId?: string | null;
|
|
6855
|
+
/** Signup date */
|
|
6856
|
+
signupDate?: Date | null;
|
|
6857
|
+
/**
|
|
6858
|
+
* Login email
|
|
6859
|
+
* @format EMAIL
|
|
6860
|
+
*/
|
|
6861
|
+
email?: string | null;
|
|
6862
|
+
/** Indicate whether the email is verified */
|
|
6863
|
+
emailVerified?: boolean | null;
|
|
6864
|
+
/** Indicates whether the member is required to verify their email */
|
|
6865
|
+
emailVerificationRequired?: boolean | null;
|
|
6866
|
+
/**
|
|
6867
|
+
* Member status.
|
|
6868
|
+
* - `PENDING`: Member created and is waiting for approval by site owner.
|
|
6869
|
+
* - `ACTIVE`: Member can log in to the site.
|
|
6870
|
+
* - `BLOCKED': Member is blocked and cannot log in to the site.
|
|
6871
|
+
* - `OFFLINE`: Member is a [managed writer](https://support.wix.com/en/article/wix-blog-adding-managed-writers-to-your-blog) for the site blog and cannot log in to the site.
|
|
6872
|
+
*/
|
|
6873
|
+
status?: MemberStatusWithLiterals;
|
|
6874
|
+
/** Profile info */
|
|
6875
|
+
profileInfo?: ProfileInfo;
|
|
6876
|
+
/** User info */
|
|
6877
|
+
userInfo?: UserInfo;
|
|
6878
|
+
/** Session info */
|
|
6879
|
+
sessionInfo?: SessionInfo;
|
|
6880
|
+
/** Group info */
|
|
6881
|
+
groupInfo?: GroupInfo;
|
|
6882
|
+
}
|
|
6883
|
+
declare enum MemberStatus {
|
|
6884
|
+
PENDING = "PENDING",
|
|
6885
|
+
ACTIVE = "ACTIVE",
|
|
6886
|
+
BLOCKED = "BLOCKED",
|
|
6887
|
+
OFFLINE = "OFFLINE"
|
|
6888
|
+
}
|
|
6889
|
+
/** @enumType */
|
|
6890
|
+
type MemberStatusWithLiterals = MemberStatus | 'PENDING' | 'ACTIVE' | 'BLOCKED' | 'OFFLINE';
|
|
6891
|
+
interface ProfileInfo {
|
|
6892
|
+
/**
|
|
6893
|
+
* Nickname
|
|
6894
|
+
* @maxLength 255
|
|
6895
|
+
*/
|
|
6896
|
+
nickname?: string | null;
|
|
6897
|
+
/** Privacy status */
|
|
6898
|
+
privacyStatus?: PrivacyStatusWithLiterals;
|
|
6899
|
+
/** Indicate whether the member is reported */
|
|
6900
|
+
reported?: boolean | null;
|
|
6901
|
+
/** Indicate whether the member is muted */
|
|
6902
|
+
muted?: boolean | null;
|
|
6903
|
+
/** Profile photo */
|
|
6904
|
+
photo?: string;
|
|
6905
|
+
}
|
|
6906
|
+
declare enum PrivacyStatus {
|
|
6907
|
+
PRIVATE = "PRIVATE",
|
|
6908
|
+
PUBLIC = "PUBLIC"
|
|
6909
|
+
}
|
|
6910
|
+
/** @enumType */
|
|
6911
|
+
type PrivacyStatusWithLiterals = PrivacyStatus | 'PRIVATE' | 'PUBLIC';
|
|
6912
|
+
interface UserInfo {
|
|
6913
|
+
/**
|
|
6914
|
+
* User ID
|
|
6915
|
+
* @format GUID
|
|
6916
|
+
*/
|
|
6917
|
+
userId?: string;
|
|
6918
|
+
/** The user's role on the website */
|
|
6919
|
+
role?: RoleWithLiterals;
|
|
6920
|
+
}
|
|
6921
|
+
declare enum Role {
|
|
6922
|
+
OWNER = "OWNER",
|
|
6923
|
+
CONTRIBUTOR = "CONTRIBUTOR",
|
|
6924
|
+
MEMBER = "MEMBER"
|
|
6925
|
+
}
|
|
6926
|
+
/** @enumType */
|
|
6927
|
+
type RoleWithLiterals = Role | 'OWNER' | 'CONTRIBUTOR' | 'MEMBER';
|
|
6928
|
+
interface SessionInfo {
|
|
6929
|
+
/** Last time the member logged in to the website */
|
|
6930
|
+
lastWebLogin?: Date | null;
|
|
6931
|
+
/** Last time the member logged in to one of the mobile apps */
|
|
6932
|
+
lastMobileLogin?: Date | null;
|
|
6933
|
+
/**
|
|
6934
|
+
* List of mobile apps that the member has ever logged in to
|
|
6935
|
+
* @maxSize 50
|
|
6936
|
+
* @maxLength 50
|
|
6937
|
+
*/
|
|
6938
|
+
mobileAppNames?: string[];
|
|
6939
|
+
}
|
|
6940
|
+
interface GroupInfo {
|
|
6941
|
+
/**
|
|
6942
|
+
* Group IDs
|
|
6943
|
+
* @format GUID
|
|
6944
|
+
* @maxSize 1000
|
|
6945
|
+
*/
|
|
6946
|
+
groupIds?: string[];
|
|
6947
|
+
}
|
|
6948
|
+
interface PrivateTags {
|
|
6949
|
+
/** Tags that are exposed to anyone with access to the entity. */
|
|
6950
|
+
privateTags?: PrivateTagsTagList;
|
|
6951
|
+
}
|
|
6952
|
+
interface PrivateTagsTagList {
|
|
6953
|
+
/**
|
|
6954
|
+
* A list of tag IDs.
|
|
6955
|
+
* @maxSize 1000
|
|
6956
|
+
* @maxLength 5
|
|
6957
|
+
*/
|
|
6958
|
+
tagIds?: string[];
|
|
6959
|
+
}
|
|
6960
|
+
declare enum Action {
|
|
6961
|
+
UPDATED = "UPDATED",
|
|
6962
|
+
CREATED = "CREATED"
|
|
6963
|
+
}
|
|
6964
|
+
/** @enumType */
|
|
6965
|
+
type ActionWithLiterals = Action | 'UPDATED' | 'CREATED';
|
|
6287
6966
|
interface CreateSubmissionRequest {
|
|
6288
6967
|
/** Submission to create. */
|
|
6289
6968
|
submission: FormSubmission;
|
|
@@ -7559,7 +8238,7 @@ declare function onSubmissionUpdated(handler: (event: SubmissionUpdatedEnvelope)
|
|
|
7559
8238
|
* @applicableIdentity APP
|
|
7560
8239
|
* @fqn wix.forms.v4.FormSubmissionContactUpsertService.UpsertContactFromSubmission
|
|
7561
8240
|
*/
|
|
7562
|
-
declare function upsertContactFromSubmission(submissionId: string, options?: UpsertContactFromSubmissionOptions): Promise<NonNullablePaths<UpsertContactFromSubmissionResponse, `submitContactResponse.contactId` | `submitContactResponse.identityType` | `submitContactResponse.newContact`,
|
|
8241
|
+
declare function upsertContactFromSubmission(submissionId: string, options?: UpsertContactFromSubmissionOptions): Promise<NonNullablePaths<UpsertContactFromSubmissionResponse, `submitContactResponse.contactId` | `submitContactResponse.identityType` | `submitContactResponse.newContact` | `upsertContactResponse.contact.email.email` | `upsertContactResponse.contact.email.subscriptionStatus.status` | `upsertContactResponse.contact.email.deliverabilityStatus` | `upsertContactResponse.contact.additionalEmails` | `upsertContactResponse.contact.additionalEmails.${number}.email` | `upsertContactResponse.contact.phone.tag` | `upsertContactResponse.contact.phone.phone` | `upsertContactResponse.contact.phone.deliverabilityStatus` | `upsertContactResponse.contact.additionalPhones` | `upsertContactResponse.contact.additionalPhones.${number}.tag` | `upsertContactResponse.contact.additionalPhones.${number}.phone` | `upsertContactResponse.contact.addresses` | `upsertContactResponse.contact.addresses.${number}.tag` | `upsertContactResponse.contact.addresses.${number}.address.streetAddress.number` | `upsertContactResponse.contact.addresses.${number}.address.streetAddress.name` | `upsertContactResponse.contact.addresses.${number}.address.streetAddress.apt` | `upsertContactResponse.contact.locationIds` | `upsertContactResponse.contact.memberInfo.status` | `upsertContactResponse.contact.memberInfo.profileInfo.privacyStatus` | `upsertContactResponse.contact.memberInfo.userInfo.userId` | `upsertContactResponse.contact.memberInfo.userInfo.role` | `upsertContactResponse.contact.memberInfo.sessionInfo.mobileAppNames` | `upsertContactResponse.contact.memberInfo.groupInfo.groupIds` | `upsertContactResponse.contact.tags.privateTags.tagIds` | `upsertContactResponse.action`, 8>>;
|
|
7563
8242
|
interface UpsertContactFromSubmissionOptions {
|
|
7564
8243
|
/**
|
|
7565
8244
|
* Optional contact id to which submission should be mapped.
|
|
@@ -7960,7 +8639,6 @@ type FormSubmissionSearch = {
|
|
|
7960
8639
|
declare const utils: {
|
|
7961
8640
|
search: {
|
|
7962
8641
|
SearchBuilder: () => _wix_sdk_types.SearchBuilder<FormSubmission, FormSubmissionSearchSpec, FormSubmissionSearch>;
|
|
7963
|
-
/** @enumType */
|
|
7964
8642
|
Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionSearchSpec>;
|
|
7965
8643
|
Sort: _wix_sdk_types.SortFactory<FormSubmissionSearchSpec>;
|
|
7966
8644
|
SearchParams: _wix_sdk_types.SearchParamsFactory<FormSubmissionSearchSpec>;
|
|
@@ -8365,4 +9043,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
8365
9043
|
fieldsToValidate?: string[];
|
|
8366
9044
|
}
|
|
8367
9045
|
|
|
8368
|
-
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, ColumnSize 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, FontType as aA, Position as aB, AspectRatio as aC, Resizing as aD, Placement as aE, CardStylesType as aF, CardStylesAlignment as aG, Layout as aH, AppType as aI, InitialExpandedItems as aJ, Direction as aK, VerticalAlignment as aL, NullValue as aM, ImageScalingScaling as aN, LayoutDataImagePosition as aO, Origin as aP, LayoutDataBackgroundType as aQ, BackdropType as aR, VerticalAlignmentAlignment as aS, ResponsivenessBehaviour as aT, DesignTarget as aU, Scaling as aV, ImagePositionPosition as aW, CardDataBackgroundType as aX, ListStyle as aY, Indentation as aZ, SmartBlockDataType as a_, NodeType as aa, BackgroundType as ab, GradientType as ac, WidthType as ad, PluginContainerDataAlignment as ae, ButtonDataType as af, LinkTarget as ag, TextAlignment as ah, LineStyle as ai, Width as aj, DividerDataAlignment as ak, ViewMode as al, LayoutType as am, Orientation as an, Crop as ao, ThumbnailsAlignment as ap, GIFType as aq, Source as ar, StylesPosition as as, MapType as at, ViewRole as au, VoteRole as av, PollLayoutType as aw, PollLayoutDirection as ax, PollDesignBackgroundType as ay, DecorationType as az, type CreateSubmissionApplicationErrors as b, type SubmissionContactMappingSkipped as b$, ImagePosition as b0, Alignment as b1, ImageFit as b2, NumberOfColumns as b3, FirstDayOfWeek as b4, NumberComponentType as b5, BooleanComponentType as b6, ItemType as b7, PropertiesTypeEnum as b8, ArrayComponentType as b9, RequiredIndicator as bA, RequiredIndicatorPlacement as bB, Target as bC, SubmitSuccessAction as bD, ChangeableProperty as bE, OverrideEntityTypeEnumOverrideEntityType as bF, Operator as bG, ResultsDisplay as bH, ContactAutofill as bI, SubmissionAccess as bJ, IdentityType as bK, ErrorType as bL, SortOrder as bM, Mode as bN, Status as bO, SubmissionErrorType as bP, type Submitter as bQ, type SubmitterSubmitterOneOf as bR, type ExtendedFields as bS, type OrderDetails as bT, type PublicTags as bU, type TagList as bV, type AppointmentDetails as bW, type FormSubmissionStatusUpdatedEvent as bX, type RemovedSubmissionFromTrash as bY, type SubmissionContactMapped as bZ, type MarketingSubscriptionDetails as b_, WixFileComponentType as ba, UploadFileFormat as bb, PaymentComponentType as bc, ComponentType as bd, Type as be, ObjectArrayComponentType as bf, SchedulingComponentType as bg, Format as bh, MeetingType as bi, StaffStrategySelection as bj, InputType as bk, EmailInfoTag as bl, PhoneInfoTag as bm, Tag as bn, ConfirmationLevel as bo, SubscriptionChannel as bp, ContactField as bq, DisplayFieldType as br, OverrideEntityType as bs, Kind as bt, FormFieldContactInfoEmailInfoTag as bu, FormFieldContactInfoPhoneInfoTag as bv, AddressInfoTag as bw, SubscriptionInfoOptInLevel as bx, FormFieldContactInfoContactField as by, SpamFilterProtectionLevel as bz, type CreateSubmissionValidationErrors as c, type ValidationMessages as c$, type DomainEvent as c0, type DomainEventBodyOneOf as c1, type EntityCreatedEvent as c2, type RestoreInfo as c3, type EntityUpdatedEvent as c4, type EntityDeletedEvent as c5, type ActionEvent as c6, type MessageEnvelope as c7, type IdentificationData as c8, type IdentificationDataIdOneOf as c9, type ArrayErrorMessages as cA, type PredefinedValidation as cB, type PredefinedValidationFormatOptionsOneOf as cC, type PaymentType as cD, type QuantityLimit as cE, type FixedPriceOptions as cF, type DynamicPriceOptions as cG, type Product as cH, type ProductPriceOptionsOneOf as cI, type MultilineAddressValidation as cJ, type FieldOverrides as cK, type FieldsOverrides as cL, type ObjectArrayType as cM, type NestedFormFieldOverrides as cN, type Validation as cO, type ValidationValidationOneOf as cP, type DataExtensionsDetails as cQ, type NestedFormOverrides as cR, type Field as cS, type FieldFieldTypeOptionsOneOf as cT, type InputField as cU, type InputFieldInputTypeOptionsOneOf as cV, type StringCorrectAnswersList as cW, type StringType as cX, type StringTypeFormatOptionsOneOf as cY, type DateTimeConstraints as cZ, type PhoneConstraints as c_, type AccountInfo as ca, type CreateCheckoutFromSubmissionRequest as cb, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as cc, type Form as cd, type FormField as ce, type FormFieldStringType as cf, type FormFieldStringTypeFormatOptionsOneOf as cg, type StringErrorMessages as ch, type DateTimeAdvancedConstraints as ci, type Availability as cj, type DateRange as ck, type StringTypeDateTimeConstraints as cl, type StringTypePhoneConstraints as cm, type StringTypeValidationMessages as cn, type FormFieldNumberType as co, type NumberErrorMessages as cp, type IntegerType as cq, type FormFieldBooleanType as cr, type BooleanErrorMessages as cs, type FormFieldArrayType as ct, type FormFieldObjectType as cu, type ObjectTypePropertiesType as cv, type ObjectTypePropertiesTypePropertiesTypeOneOf as cw, type ObjectErrorMessages as cx, type ArrayTypeArrayItems as cy, type ArrayTypeArrayItemsItemsOneOf as cz, type UpdateSubmission as d, type Poll as d$, type StringQuizFieldSettings as d0, type TextInput as d1, type RichContent as d2, type Node as d3, type NodeDataOneOf as d4, type NodeStyle as d5, type ButtonData as d6, type Gradient as d7, type Stop as d8, type Border as d9, 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 dO, type ParagraphData as dP, type PollData as dQ, type Permissions as dR, type PollOption as dS, type Settings as dT, type PollLayout as dU, type OptionLayout as dV, type BackgroundGradient as dW, type PollDesignBackground as dX, type PollDesignBackgroundBackgroundOneOf as dY, type PollDesign as dZ, type OptionDesign as d_, type Colors as da, type Background as db, type PluginContainerData as dc, type PluginContainerDataWidth as dd, type PluginContainerDataWidthDataOneOf as de, type Spoiler as df, type Height as dg, type Styles as dh, type Link as di, type LinkDataOneOf as dj, type Rel as dk, type CodeBlockData as dl, type TextStyle as dm, type DividerData as dn, type FileData as dp, type FileSource as dq, type FileSourceDataOneOf as dr, type PDFSettings as ds, type GalleryData as dt, type Media as du, type Image as dv, type Video as dw, type Item as dx, type ItemDataOneOf as dy, type GalleryOptions as dz, type UpdateSubmissionValidationErrors as e, type DateTimeInput as e$, type PollDataLayout as e0, type Design as e1, type TextData as e2, type Decoration as e3, type DecorationDataOneOf as e4, type AnchorData as e5, type ColorData as e6, type LinkData as e7, type MentionData as e8, type FontSizeData as e9, type BlockquoteData as eA, type CaptionData as eB, type LayoutData as eC, type LayoutDataBackgroundImage as eD, type Banner as eE, type LayoutDataBackground as eF, type Backdrop as eG, type LayoutCellData as eH, type ShapeData as eI, type ShapeDataStyles as eJ, type CardData as eK, type CardDataBackground as eL, type BackgroundImage as eM, type TocData as eN, type SmartBlockData as eO, type SmartBlockCellData as eP, type Metadata as eQ, type DocumentStyle as eR, type TextNodeStyle as eS, type MediaItem as eT, type MediaItemMediaOneOf as eU, type MediaSettings as eV, type RadioGroup as eW, type RadioGroupOption as eX, type CustomOption as eY, type Dropdown as eZ, type DropdownOption as e_, type SpoilerData as ea, type FontFamilyData as eb, type AppEmbedData as ec, type AppEmbedDataAppDataOneOf as ed, type BookingData as ee, type EventData as ef, type ButtonStyles as eg, type ImageStyles as eh, type RibbonStyles as ei, type CardStyles as ej, type PricingData as ek, type VideoData as el, type PlaybackOptions as em, type EmbedData as en, type Oembed as eo, type CollapsibleListData as ep, type TableData as eq, type Dimensions as er, type TableCellData as es, type CellStyle as et, type BorderColors as eu, type BorderWidths as ev, type ListValue as ew, type AudioData as ex, type OrderedListData as ey, type BulletedListData as ez, type ConfirmSubmissionResponse as f, type _String as f$, type PhoneInput as f0, type DateInput as f1, type TimeInput as f2, type DatePicker as f3, type ServicesDropdown as f4, type ServiceOption as f5, type Password as f6, type NumberCorrectAnswersList as f7, type NumberType as f8, type NumberQuizFieldSettings as f9, type MultilineAddress as fA, type AddressLine2 as fB, type DefaultCountryConfig as fC, type DefaultCountryConfigOptionsOneOf as fD, type FieldsSettings as fE, type Repeater as fF, type FormLayout as fG, type BreakPoint as fH, type ItemLayout as fI, type ItemLayoutItemOneOf as fJ, type Group as fK, type Margin as fL, type Section as fM, type Appointment as fN, type AppointmentFormatInfoOneOf as fO, type Location as fP, type LocationLocationInfoOneOf as fQ, type InPersonOptions as fR, type VideoConferenceOptions as fS, type PhoneOptions as fT, type FormFieldContactInfo as fU, type FormFieldContactInfoAdditionalInfoOneOf as fV, type EmailInfo as fW, type PhoneInfo as fX, type AddressInfo as fY, type CustomFieldInfo as fZ, type SubscriptionInfo as f_, type NumberInput as fa, type RatingInput as fb, type BooleanType as fc, type Checkbox as fd, type CorrectAnswersList as fe, type ArrayType as ff, type ObjectType as fg, type PropertiesType as fh, type PropertiesTypePropertiesTypeOptionsOneOf as fi, type ArrayItems as fj, type ArrayItemsItemTypeOptionsOneOf as fk, type QuizFieldSettings as fl, type CheckboxGroup as fm, type Option as fn, type ComponentsTags as fo, type TagsOption as fp, type ServicesCheckboxGroup as fq, type FileType as fr, type FileUpload as fs, type Signature as ft, type ProductCheckboxGroup as fu, type ProductCheckboxGroupOption as fv, type DonationInput as fw, type DonationInputOption as fx, type PaymentInput as fy, type FixedPayment as fz, type BulkDeleteSubmissionResponse as g, type CreateCheckoutFromSubmissionResponse as g$, type _StringComponentTypeOptionsOneOf as g0, type _Number as g1, type _NumberComponentTypeOptionsOneOf as g2, type _Boolean as g3, type _BooleanComponentTypeOptionsOneOf as g4, type _Array as g5, type _ArrayComponentTypeOptionsOneOf as g6, type _Object as g7, type WixFile as g8, type WixFileComponentTypeOptionsOneOf as g9, type LimitationRule as gA, type RequiredIndicatorProperties as gB, type SubmitSettings as gC, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gD, type ThankYouMessageOptions as gE, type RedirectOptions as gF, type PopupOptions as gG, type FieldGroup as gH, type Rule as gI, type RequiredOptions as gJ, type HiddenOptions as gK, type AllowedValuesOptions as gL, type FieldOverride as gM, type FieldOverridePropertyTypeOptionsOneOf as gN, type ConditionNode as gO, type ConditionNodeNodeOneOf as gP, type AndCondition as gQ, type OrCondition as gR, type Condition as gS, type RuleFormOverride as gT, type RuleFormOverrideEntityTypeOptionsOneOf as gU, type Tags as gV, type TagsTagList as gW, type QuizSettings as gX, type QuizSettingsPassingCriteriaOneOf as gY, type QuizSettingsResultsDisplayOptionsOneOf as gZ, type PassFailMessages as g_, type Payment as ga, type PaymentComponentTypeOptionsOneOf as gb, type Scheduling as gc, type SchedulingComponentTypeOptionsOneOf as gd, type Address as ge, type AddressComponentTypeOptionsOneOf as gf, type ObjectArray as gg, type ObjectArrayComponentTypeOptionsOneOf as gh, type DisplayField as gi, type DisplayFieldDisplayFieldTypeOptionsOneOf as gj, type RichContentOptions as gk, type PageNavigationOptions as gl, type Step as gm, type FormRule as gn, type FormOverride as go, type FormProperties as gp, type PostSubmissionTriggers as gq, type UpsertContact as gr, type V4FormFieldContactInfo as gs, type V4FormFieldContactInfoAdditionalInfoOneOf as gt, type FormFieldContactInfoEmailInfo as gu, type FormFieldContactInfoPhoneInfo as gv, type FormFieldContactInfoAddressInfo as gw, type FormFieldContactInfoCustomFieldInfo as gx, type FormFieldContactInfoSubscriptionInfo as gy, type NestedForm as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DocumentReady as h$, type Checkout as h0, type IsFormSubmittableRequest as h1, type IsFormSubmittableResponse as h2, type Empty as h3, type UpsertContactFromSubmissionRequest as h4, type SubmitContactResponse as h5, type CreateSubmissionRequest as h6, type CreateSubmissionResponse as h7, type SubmissionValidationErrorsDetails as h8, type ValidationError as h9, type CursorPaging as hA, type CursorPagingMetadata as hB, type Cursors as hC, type GetDeletedSubmissionRequest as hD, type QuerySubmissionRequest as hE, type CursorQueryPagingMethodOneOf as hF, type Sorting as hG, type SearchSubmissionsByNamespaceRequest as hH, type CursorSearch as hI, type CursorSearchPagingMethodOneOf as hJ, type SearchDetails as hK, type SearchSubmissionsByNamespaceForExportRequest as hL, type SearchSubmissionsByNamespaceForExportResponse as hM, type QuerySubmissionsByNamespaceRequest as hN, type QuerySubmissionsByNamespaceResponse as hO, type QuerySubmissionsByNamespaceForExportRequest as hP, type QuerySubmissionsByNamespaceForExportResponse as hQ, type CountSubmissionsByFilterRequest as hR, type FormSubmissionsCount as hS, type CountSubmissionsRequest as hT, type CountDeletedSubmissionsRequest as hU, type FormDeletedSubmissionsCount as hV, type GetMediaUploadURLRequest as hW, type BulkMarkSubmissionsAsSeenRequest as hX, type GetSubmissionDownloadUrlRequest as hY, type SubmissionDocument as hZ, type SubmissionDocumentDocumentOneOf as h_, type CreateSubmissionBySubmitterRequest as ha, type CreateSubmissionBySubmitterResponse as hb, type BulkCreateSubmissionBySubmitterRequest as hc, type BulkCreateSubmissionBySubmitterData as hd, type BulkCreateSubmissionBySubmitterResponse as he, type BulkSubmissionResult as hf, type ItemMetadata as hg, type ApplicationError as hh, type BulkActionMetadata as hi, type GetSubmissionRequest as hj, type GetSubmissionResponse as hk, type GetSubmissionByCheckoutIdRequest as hl, type GetSubmissionByCheckoutIdResponse as hm, type UpdateSubmissionRequest as hn, type UpdateSubmissionResponse as ho, type ConfirmSubmissionRequest as hp, type DeleteSubmissionRequest as hq, type DeleteSubmissionResponse as hr, type BulkDeleteSubmissionRequest as hs, type BulkDeleteSubmissionResult as ht, type RestoreSubmissionFromTrashBinRequest as hu, type RemoveSubmissionFromTrashBinRequest as hv, type RemoveSubmissionFromTrashBinResponse as hw, type BulkRemoveSubmissionFromTrashBinRequest as hx, type BulkRemoveSubmissionFromTrashBinResult as hy, type ListDeletedSubmissionsRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type FontTypeWithLiterals as i$, type DownloadSubmissionRequest as i0, type HeadersEntry as i1, type GetFormattedSubmissionRequest as i2, type FormattedSubmission as i3, type ListFormattedSubmissionsRequest as i4, type ListFormattedSubmissionsResponse as i5, type FormattedFormSubmission as i6, type UpdateExtendedFieldsRequest as i7, type BulkUpdateFormSubmissionTagsRequest as i8, type BulkUpdateFormSubmissionTagsResult as i9, type StringComponentTypeWithLiterals as iA, type NodeTypeWithLiterals as iB, type BackgroundTypeWithLiterals as iC, type GradientTypeWithLiterals as iD, type WidthTypeWithLiterals as iE, type PluginContainerDataAlignmentWithLiterals as iF, type ButtonDataTypeWithLiterals as iG, type LinkTargetWithLiterals as iH, type TextAlignmentWithLiterals as iI, type LineStyleWithLiterals as iJ, type WidthWithLiterals as iK, type DividerDataAlignmentWithLiterals as iL, type ViewModeWithLiterals as iM, type LayoutTypeWithLiterals as iN, type OrientationWithLiterals as iO, type CropWithLiterals as iP, type ThumbnailsAlignmentWithLiterals as iQ, type GIFTypeWithLiterals as iR, type SourceWithLiterals as iS, type StylesPositionWithLiterals as iT, type MapTypeWithLiterals as iU, type ViewRoleWithLiterals as iV, type VoteRoleWithLiterals as iW, type PollLayoutTypeWithLiterals as iX, type PollLayoutDirectionWithLiterals as iY, type PollDesignBackgroundTypeWithLiterals as iZ, type DecorationTypeWithLiterals as i_, type BulkUpdateFormSubmissionTagsByFilterRequest as ia, type ValidateFormSubmissionRequest as ib, type FieldViolation as ic, type FieldViolationErrorDataOneOf as id, type SubmissionValidationErrors as ie, type SubmissionValidationError as ig, type SubmissionValidationErrorErrorMessageOneOf as ih, type BaseEventMetadata as ii, type EventMetadata as ij, type AccountInfoMetadata as ik, type FormSubmissionSearchSpec as il, type SubmissionsQueryResult as im, type FormSubmissionQuerySpec as io, utils as ip, type SubmissionStatusWithLiterals as iq, type OptInLevelWithLiterals as ir, type WebhookIdentityTypeWithLiterals as is, type StringTypeFormatEnumFormatWithLiterals as it, type DayOfWeekWithLiterals as iu, type ValidationFormatWithLiterals as iv, type ProductTypeWithLiterals as iw, type PriceTypeWithLiterals as ix, type FieldTypeWithLiterals as iy, type FormatEnumFormatWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type RequiredIndicatorWithLiterals as j$, type PositionWithLiterals as j0, type AspectRatioWithLiterals as j1, type ResizingWithLiterals as j2, type PlacementWithLiterals as j3, type CardStylesTypeWithLiterals as j4, type CardStylesAlignmentWithLiterals as j5, type LayoutWithLiterals as j6, type AppTypeWithLiterals as j7, type InitialExpandedItemsWithLiterals as j8, type DirectionWithLiterals as j9, type ArrayComponentTypeWithLiterals as jA, type WixFileComponentTypeWithLiterals as jB, type UploadFileFormatWithLiterals as jC, type PaymentComponentTypeWithLiterals as jD, type ComponentTypeWithLiterals as jE, type TypeWithLiterals as jF, type ObjectArrayComponentTypeWithLiterals as jG, type SchedulingComponentTypeWithLiterals as jH, type FormatWithLiterals as jI, type MeetingTypeWithLiterals as jJ, type StaffStrategySelectionWithLiterals as jK, type InputTypeWithLiterals as jL, type EmailInfoTagWithLiterals as jM, type PhoneInfoTagWithLiterals as jN, type TagWithLiterals as jO, type ConfirmationLevelWithLiterals as jP, type SubscriptionChannelWithLiterals as jQ, type ContactFieldWithLiterals as jR, type DisplayFieldTypeWithLiterals as jS, type OverrideEntityTypeWithLiterals as jT, type KindWithLiterals as jU, type FormFieldContactInfoEmailInfoTagWithLiterals as jV, type FormFieldContactInfoPhoneInfoTagWithLiterals as jW, type AddressInfoTagWithLiterals as jX, type SubscriptionInfoOptInLevelWithLiterals as jY, type FormFieldContactInfoContactFieldWithLiterals as jZ, type SpamFilterProtectionLevelWithLiterals as j_, type VerticalAlignmentWithLiterals as ja, type NullValueWithLiterals as jb, type ImageScalingScalingWithLiterals as jc, type LayoutDataImagePositionWithLiterals as jd, type OriginWithLiterals as je, type LayoutDataBackgroundTypeWithLiterals as jf, type BackdropTypeWithLiterals as jg, type VerticalAlignmentAlignmentWithLiterals as jh, type ResponsivenessBehaviourWithLiterals as ji, type DesignTargetWithLiterals as jj, type ScalingWithLiterals as jk, type ImagePositionPositionWithLiterals as jl, type CardDataBackgroundTypeWithLiterals as jm, type ListStyleWithLiterals as jn, type IndentationWithLiterals as jo, type SmartBlockDataTypeWithLiterals as jp, type ColumnSizeWithLiterals as jq, type ImagePositionWithLiterals as jr, type AlignmentWithLiterals as js, type ImageFitWithLiterals as jt, type NumberOfColumnsWithLiterals as ju, type FirstDayOfWeekWithLiterals as jv, type NumberComponentTypeWithLiterals as jw, type BooleanComponentTypeWithLiterals as jx, type ItemTypeWithLiterals as jy, type PropertiesTypeEnumWithLiterals as jz, type CursorQuery as k, type RequiredIndicatorPlacementWithLiterals as k0, type TargetWithLiterals as k1, type SubmitSuccessActionWithLiterals as k2, type ChangeablePropertyWithLiterals as k3, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as k4, type OperatorWithLiterals as k5, type ResultsDisplayWithLiterals as k6, type ContactAutofillWithLiterals as k7, type SubmissionAccessWithLiterals as k8, type IdentityTypeWithLiterals as k9, querySubmission as kA, querySubmissionsByNamespace as kB, countSubmissionsByFilter as kC, countSubmissions as kD, countDeletedSubmissions as kE, getMediaUploadUrl as kF, bulkMarkSubmissionsAsSeen as kG, getSubmissionDownloadUrl as kH, downloadSubmission as kI, getFormattedSubmission as kJ, updateExtendedFields as kK, bulkUpdateFormSubmissionTags as kL, bulkUpdateFormSubmissionTagsByFilter as kM, validateFormSubmission as kN, type ErrorTypeWithLiterals as ka, type SortOrderWithLiterals as kb, type ModeWithLiterals as kc, type StatusWithLiterals as kd, type SubmissionErrorTypeWithLiterals as ke, type CommonSearchWithEntityContext as kf, type CommonQueryWithEntityContext as kg, onSubmissionCreated as kh, onSubmissionDeleted as ki, onSubmissionRemovedSubmissionFromTrash as kj, onSubmissionStatusUpdated as kk, onSubmissionContactMapped as kl, onSubmissionContactMappingSkipped as km, onSubmissionUpdated as kn, upsertContactFromSubmission as ko, createSubmission as kp, getSubmission as kq, updateSubmission as kr, confirmSubmission as ks, deleteSubmission as kt, bulkDeleteSubmission as ku, restoreSubmissionFromTrashBin as kv, removeSubmissionFromTrashBin as kw, bulkRemoveSubmissionFromTrashBin as kx, listDeletedSubmissions as ky, getDeletedSubmission as kz, 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 };
|
|
9046
|
+
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, ColumnSize 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, FontType as aA, Position as aB, AspectRatio as aC, Resizing as aD, Placement as aE, CardStylesType as aF, CardStylesAlignment as aG, Layout as aH, AppType as aI, InitialExpandedItems as aJ, Direction as aK, VerticalAlignment as aL, NullValue as aM, ImageScalingScaling as aN, LayoutDataImagePosition as aO, Origin as aP, LayoutDataBackgroundType as aQ, BackdropType as aR, VerticalAlignmentAlignment as aS, ResponsivenessBehaviour as aT, DesignTarget as aU, Scaling as aV, ImagePositionPosition as aW, CardDataBackgroundType as aX, ListStyle as aY, Indentation as aZ, SmartBlockDataType as a_, NodeType as aa, BackgroundType as ab, GradientType as ac, WidthType as ad, PluginContainerDataAlignment as ae, ButtonDataType as af, LinkTarget as ag, TextAlignment as ah, LineStyle as ai, Width as aj, DividerDataAlignment as ak, ViewMode as al, LayoutType as am, Orientation as an, Crop as ao, ThumbnailsAlignment as ap, GIFType as aq, Source as ar, StylesPosition as as, MapType as at, ViewRole as au, VoteRole as av, PollLayoutType as aw, PollLayoutDirection as ax, PollDesignBackgroundType as ay, DecorationType as az, type CreateSubmissionApplicationErrors as b, type SubmitterSubmitterOneOf as b$, ImagePosition as b0, Alignment as b1, ImageFit as b2, NumberOfColumns as b3, FirstDayOfWeek as b4, NumberComponentType as b5, BooleanComponentType as b6, ItemType as b7, PropertiesTypeEnum as b8, ArrayComponentType as b9, RequiredIndicator as bA, RequiredIndicatorPlacement as bB, Target as bC, SubmitSuccessAction as bD, ChangeableProperty as bE, OverrideEntityTypeEnumOverrideEntityType as bF, Operator as bG, ResultsDisplay as bH, ContactAutofill as bI, SubmissionAccess as bJ, IdentityType as bK, SubscriptionStatus as bL, EmailDeliverabilityStatus as bM, PhoneTag as bN, PhoneDeliverabilityStatus as bO, AddressTag as bP, SubdivisionType as bQ, MemberStatus as bR, PrivacyStatus as bS, Role as bT, Action as bU, ErrorType as bV, SortOrder as bW, Mode as bX, Status as bY, SubmissionErrorType as bZ, type Submitter as b_, WixFileComponentType as ba, UploadFileFormat as bb, PaymentComponentType as bc, ComponentType as bd, Type as be, ObjectArrayComponentType as bf, SchedulingComponentType as bg, Format as bh, MeetingType as bi, StaffStrategySelection as bj, InputType as bk, EmailInfoTag as bl, PhoneInfoTag as bm, Tag as bn, ConfirmationLevel as bo, SubscriptionChannel as bp, ContactField as bq, DisplayFieldType as br, OverrideEntityType as bs, Kind as bt, FormFieldContactInfoEmailInfoTag as bu, FormFieldContactInfoPhoneInfoTag as bv, AddressInfoTag as bw, SubscriptionInfoOptInLevel as bx, FormFieldContactInfoContactField as by, SpamFilterProtectionLevel as bz, type CreateSubmissionValidationErrors as c, type NestedFormOverrides as c$, type ExtendedFields as c0, type OrderDetails as c1, type PublicTags as c2, type TagList as c3, type AppointmentDetails as c4, type FormSubmissionStatusUpdatedEvent as c5, type RemovedSubmissionFromTrash as c6, type SubmissionContactMapped as c7, type MarketingSubscriptionDetails as c8, type SubmissionContactMappingSkipped as c9, type IntegerType as cA, type FormFieldBooleanType as cB, type BooleanErrorMessages as cC, type FormFieldArrayType as cD, type FormFieldObjectType as cE, type ObjectTypePropertiesType as cF, type ObjectTypePropertiesTypePropertiesTypeOneOf as cG, type ObjectErrorMessages as cH, type ArrayTypeArrayItems as cI, type ArrayTypeArrayItemsItemsOneOf as cJ, type ArrayErrorMessages as cK, type PredefinedValidation as cL, type PredefinedValidationFormatOptionsOneOf as cM, type PaymentType as cN, type QuantityLimit as cO, type FixedPriceOptions as cP, type DynamicPriceOptions as cQ, type Product as cR, type ProductPriceOptionsOneOf as cS, type MultilineAddressValidation as cT, type FieldOverrides as cU, type FieldsOverrides as cV, type ObjectArrayType as cW, type NestedFormFieldOverrides as cX, type Validation as cY, type ValidationValidationOneOf as cZ, type DataExtensionsDetails as c_, type DomainEvent as ca, type DomainEventBodyOneOf as cb, type EntityCreatedEvent as cc, type RestoreInfo as cd, type EntityUpdatedEvent as ce, type EntityDeletedEvent as cf, type ActionEvent as cg, type MessageEnvelope as ch, type IdentificationData as ci, type IdentificationDataIdOneOf as cj, type AccountInfo as ck, type CreateCheckoutFromSubmissionRequest as cl, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as cm, type Form as cn, type FormField as co, type FormFieldStringType as cp, type FormFieldStringTypeFormatOptionsOneOf as cq, type StringErrorMessages as cr, type DateTimeAdvancedConstraints as cs, type Availability as ct, type DateRange as cu, type StringTypeDateTimeConstraints as cv, type StringTypePhoneConstraints as cw, type StringTypeValidationMessages as cx, type FormFieldNumberType as cy, type NumberErrorMessages as cz, type UpdateSubmission as d, type Permissions as d$, type Field as d0, type FieldFieldTypeOptionsOneOf as d1, type InputField as d2, type InputFieldInputTypeOptionsOneOf as d3, type StringCorrectAnswersList as d4, type StringType as d5, type StringTypeFormatOptionsOneOf as d6, type DateTimeConstraints as d7, type PhoneConstraints as d8, type ValidationMessages as d9, type FileSource as dA, type FileSourceDataOneOf as dB, type PDFSettings as dC, type GalleryData as dD, type Media as dE, type Image as dF, type Video as dG, type Item as dH, type ItemDataOneOf as dI, type GalleryOptions as dJ, type GalleryOptionsLayout as dK, type ItemStyle as dL, type Thumbnails as dM, type GIFData as dN, type GIF as dO, 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 PollData as d_, type StringQuizFieldSettings as da, type TextInput as db, type RichContent as dc, type Node as dd, type NodeDataOneOf as de, type NodeStyle as df, type ButtonData as dg, type Gradient as dh, type Stop as di, type Border as dj, type Colors as dk, type Background as dl, type PluginContainerData as dm, type PluginContainerDataWidth as dn, type PluginContainerDataWidthDataOneOf as dp, type Spoiler as dq, type Height as dr, type Styles as ds, type Link as dt, type LinkDataOneOf as du, type Rel as dv, type CodeBlockData as dw, type TextStyle as dx, type DividerData as dy, type FileData as dz, type UpdateSubmissionValidationErrors as e, type DocumentStyle as e$, type PollOption as e0, type Settings as e1, type PollLayout as e2, type OptionLayout as e3, type BackgroundGradient as e4, type PollDesignBackground as e5, type PollDesignBackgroundBackgroundOneOf as e6, type PollDesign as e7, type OptionDesign as e8, type Poll as e9, 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 LayoutDataBackgroundImage as eN, type Banner as eO, type LayoutDataBackground as eP, type Backdrop as eQ, type LayoutCellData as eR, type ShapeData as eS, type ShapeDataStyles as eT, type CardData as eU, type CardDataBackground as eV, type BackgroundImage as eW, type TocData as eX, type SmartBlockData as eY, type SmartBlockCellData as eZ, type Metadata as e_, type PollDataLayout as ea, type Design as eb, type TextData as ec, type Decoration as ed, type DecorationDataOneOf as ee, type AnchorData as ef, type ColorData as eg, type LinkData as eh, type MentionData as ei, type FontSizeData as ej, type SpoilerData as ek, type FontFamilyData as el, type AppEmbedData as em, type AppEmbedDataAppDataOneOf as en, type BookingData as eo, type EventData as ep, type ButtonStyles as eq, type ImageStyles as er, type RibbonStyles as es, type CardStyles as et, type PricingData as eu, type VideoData as ev, type PlaybackOptions as ew, type EmbedData as ex, type Oembed as ey, type CollapsibleListData as ez, type ConfirmSubmissionResponse as f, type InPersonOptions as f$, type TextNodeStyle as f0, type MediaItem as f1, type MediaItemMediaOneOf as f2, type MediaSettings as f3, type RadioGroup as f4, type RadioGroupOption as f5, type CustomOption as f6, type Dropdown as f7, type DropdownOption as f8, type DateTimeInput as f9, type ServicesCheckboxGroup as fA, type FileType as fB, type FileUpload as fC, type Signature as fD, type ProductCheckboxGroup as fE, type ProductCheckboxGroupOption as fF, type DonationInput as fG, type DonationInputOption as fH, type PaymentInput as fI, type FixedPayment as fJ, type MultilineAddress as fK, type AddressLine2 as fL, type DefaultCountryConfig as fM, type DefaultCountryConfigOptionsOneOf as fN, type FieldsSettings as fO, type Repeater as fP, type FormLayout as fQ, type BreakPoint as fR, type ItemLayout as fS, type ItemLayoutItemOneOf as fT, type Group as fU, type Margin as fV, type Section as fW, type Appointment as fX, type AppointmentFormatInfoOneOf as fY, type Location as fZ, type LocationLocationInfoOneOf as f_, type PhoneInput as fa, type DateInput as fb, type TimeInput as fc, type DatePicker as fd, type ServicesDropdown as fe, type ServiceOption as ff, type Password as fg, type NumberCorrectAnswersList as fh, type NumberType as fi, type NumberQuizFieldSettings as fj, type NumberInput as fk, type RatingInput as fl, type BooleanType as fm, type Checkbox as fn, type CorrectAnswersList as fo, type ArrayType as fp, type ObjectType as fq, type PropertiesType as fr, type PropertiesTypePropertiesTypeOptionsOneOf as fs, type ArrayItems as ft, type ArrayItemsItemTypeOptionsOneOf as fu, type QuizFieldSettings as fv, type CheckboxGroup as fw, type Option as fx, type ComponentsTags as fy, type TagsOption as fz, type BulkDeleteSubmissionResponse as g, type OrCondition as g$, type VideoConferenceOptions as g0, type PhoneOptions as g1, type FormFieldContactInfo as g2, type FormFieldContactInfoAdditionalInfoOneOf as g3, type EmailInfo as g4, type PhoneInfo as g5, type AddressInfo as g6, type CustomFieldInfo as g7, type SubscriptionInfo as g8, type _String as g9, type PostSubmissionTriggers as gA, type UpsertContact as gB, type V4FormFieldContactInfo as gC, type V4FormFieldContactInfoAdditionalInfoOneOf as gD, type FormFieldContactInfoEmailInfo as gE, type FormFieldContactInfoPhoneInfo as gF, type FormFieldContactInfoAddressInfo as gG, type FormFieldContactInfoCustomFieldInfo as gH, type FormFieldContactInfoSubscriptionInfo as gI, type NestedForm as gJ, type LimitationRule as gK, type RequiredIndicatorProperties as gL, type SubmitSettings as gM, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gN, type ThankYouMessageOptions as gO, type RedirectOptions as gP, type PopupOptions as gQ, type FieldGroup as gR, type Rule as gS, type RequiredOptions as gT, type HiddenOptions as gU, type AllowedValuesOptions as gV, type FieldOverride as gW, type FieldOverridePropertyTypeOptionsOneOf as gX, type ConditionNode as gY, type ConditionNodeNodeOneOf as gZ, type AndCondition as g_, type _StringComponentTypeOptionsOneOf as ga, type _Number as gb, type _NumberComponentTypeOptionsOneOf as gc, type _Boolean as gd, type _BooleanComponentTypeOptionsOneOf as ge, type _Array as gf, type _ArrayComponentTypeOptionsOneOf as gg, type _Object as gh, type WixFile as gi, type WixFileComponentTypeOptionsOneOf as gj, type Payment as gk, type PaymentComponentTypeOptionsOneOf as gl, type Scheduling as gm, type SchedulingComponentTypeOptionsOneOf as gn, type InputFieldAddress as go, type InputFieldAddressComponentTypeOptionsOneOf as gp, type ObjectArray as gq, type ObjectArrayComponentTypeOptionsOneOf as gr, type DisplayField as gs, type DisplayFieldDisplayFieldTypeOptionsOneOf as gt, type RichContentOptions as gu, type PageNavigationOptions as gv, type Step as gw, type FormRule as gx, type FormOverride as gy, type FormProperties as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DeleteSubmissionResponse as h$, type Condition as h0, type RuleFormOverride as h1, type RuleFormOverrideEntityTypeOptionsOneOf as h2, type Tags as h3, type TagsTagList as h4, type QuizSettings as h5, type QuizSettingsPassingCriteriaOneOf as h6, type QuizSettingsResultsDisplayOptionsOneOf as h7, type PassFailMessages as h8, type CreateCheckoutFromSubmissionResponse as h9, type ProfileInfo as hA, type UserInfo as hB, type SessionInfo as hC, type GroupInfo as hD, type PrivateTags as hE, type PrivateTagsTagList as hF, type CreateSubmissionRequest as hG, type CreateSubmissionResponse as hH, type SubmissionValidationErrorsDetails as hI, type ValidationError as hJ, type CreateSubmissionBySubmitterRequest as hK, type CreateSubmissionBySubmitterResponse as hL, type BulkCreateSubmissionBySubmitterRequest as hM, type BulkCreateSubmissionBySubmitterData as hN, type BulkCreateSubmissionBySubmitterResponse as hO, type BulkSubmissionResult as hP, type ItemMetadata as hQ, type ApplicationError as hR, type BulkActionMetadata as hS, type GetSubmissionRequest as hT, type GetSubmissionResponse as hU, type GetSubmissionByCheckoutIdRequest as hV, type GetSubmissionByCheckoutIdResponse as hW, type UpdateSubmissionRequest as hX, type UpdateSubmissionResponse as hY, type ConfirmSubmissionRequest as hZ, type DeleteSubmissionRequest as h_, type Checkout as ha, type IsFormSubmittableRequest as hb, type IsFormSubmittableResponse as hc, type Empty as hd, type UpsertContactFromSubmissionRequest as he, type SubmitContactResponse as hf, type UpsertContactResponse as hg, type Contact as hh, type ContactName as hi, type ContactEmail as hj, type ContactSubscription as hk, type AdditionalEmail as hl, type ContactPhone as hm, type AdditionalPhone as hn, type ContactAddress as ho, type Address as hp, type AddressStreetOneOf as hq, type StreetAddress as hr, type AddressLocation as hs, type Subdivision as ht, type StandardDetails as hu, type Recipient as hv, type ContactCompany as hw, type ContactSource as hx, type ContactActivity as hy, type MemberInfo as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type OptInLevelWithLiterals as i$, type BulkDeleteSubmissionRequest as i0, type BulkDeleteSubmissionResult as i1, type RestoreSubmissionFromTrashBinRequest as i2, type RemoveSubmissionFromTrashBinRequest as i3, type RemoveSubmissionFromTrashBinResponse as i4, type BulkRemoveSubmissionFromTrashBinRequest as i5, type BulkRemoveSubmissionFromTrashBinResult as i6, type ListDeletedSubmissionsRequest as i7, type CursorPaging as i8, type CursorPagingMetadata as i9, type SubmissionDocumentDocumentOneOf as iA, type DocumentReady as iB, type DownloadSubmissionRequest as iC, type HeadersEntry as iD, type GetFormattedSubmissionRequest as iE, type FormattedSubmission as iF, type ListFormattedSubmissionsRequest as iG, type ListFormattedSubmissionsResponse as iH, type FormattedFormSubmission as iI, type UpdateExtendedFieldsRequest as iJ, type BulkUpdateFormSubmissionTagsRequest as iK, type BulkUpdateFormSubmissionTagsResult as iL, type BulkUpdateFormSubmissionTagsByFilterRequest as iM, type ValidateFormSubmissionRequest as iN, type FieldViolation as iO, type FieldViolationErrorDataOneOf as iP, type SubmissionValidationErrors as iQ, type SubmissionValidationError as iR, type SubmissionValidationErrorErrorMessageOneOf as iS, type BaseEventMetadata as iT, type EventMetadata as iU, type AccountInfoMetadata as iV, type FormSubmissionSearchSpec as iW, type SubmissionsQueryResult as iX, type FormSubmissionQuerySpec as iY, utils as iZ, type SubmissionStatusWithLiterals as i_, type Cursors as ia, type GetDeletedSubmissionRequest as ib, type QuerySubmissionRequest as ic, type CursorQueryPagingMethodOneOf as id, type Sorting as ie, type SearchSubmissionsByNamespaceRequest as ig, type CursorSearch as ih, type CursorSearchPagingMethodOneOf as ii, type SearchDetails as ij, type SearchSubmissionsByNamespaceForExportRequest as ik, type SearchSubmissionsByNamespaceForExportResponse as il, type QuerySubmissionsByNamespaceRequest as im, type QuerySubmissionsByNamespaceResponse as io, type QuerySubmissionsByNamespaceForExportRequest as ip, type QuerySubmissionsByNamespaceForExportResponse as iq, type CountSubmissionsByFilterRequest as ir, type FormSubmissionsCount as is, type CountSubmissionsRequest as it, type CountDeletedSubmissionsRequest as iu, type FormDeletedSubmissionsCount as iv, type GetMediaUploadURLRequest as iw, type BulkMarkSubmissionsAsSeenRequest as ix, type GetSubmissionDownloadUrlRequest as iy, type SubmissionDocument as iz, type ListDeletedSubmissionsResponse as j, type ImagePositionWithLiterals as j$, type WebhookIdentityTypeWithLiterals as j0, type StringTypeFormatEnumFormatWithLiterals as j1, type DayOfWeekWithLiterals as j2, type ValidationFormatWithLiterals as j3, type ProductTypeWithLiterals as j4, type PriceTypeWithLiterals as j5, type FieldTypeWithLiterals as j6, type FormatEnumFormatWithLiterals as j7, type StringComponentTypeWithLiterals as j8, type NodeTypeWithLiterals as j9, type PositionWithLiterals as jA, type AspectRatioWithLiterals as jB, type ResizingWithLiterals as jC, type PlacementWithLiterals as jD, type CardStylesTypeWithLiterals as jE, type CardStylesAlignmentWithLiterals as jF, type LayoutWithLiterals as jG, type AppTypeWithLiterals as jH, type InitialExpandedItemsWithLiterals as jI, type DirectionWithLiterals as jJ, type VerticalAlignmentWithLiterals as jK, type NullValueWithLiterals as jL, type ImageScalingScalingWithLiterals as jM, type LayoutDataImagePositionWithLiterals as jN, type OriginWithLiterals as jO, type LayoutDataBackgroundTypeWithLiterals as jP, type BackdropTypeWithLiterals as jQ, type VerticalAlignmentAlignmentWithLiterals as jR, type ResponsivenessBehaviourWithLiterals as jS, type DesignTargetWithLiterals as jT, type ScalingWithLiterals as jU, type ImagePositionPositionWithLiterals as jV, type CardDataBackgroundTypeWithLiterals as jW, type ListStyleWithLiterals as jX, type IndentationWithLiterals as jY, type SmartBlockDataTypeWithLiterals as jZ, type ColumnSizeWithLiterals as j_, type BackgroundTypeWithLiterals as ja, type GradientTypeWithLiterals as jb, type WidthTypeWithLiterals as jc, type PluginContainerDataAlignmentWithLiterals as jd, type ButtonDataTypeWithLiterals as je, type LinkTargetWithLiterals as jf, type TextAlignmentWithLiterals as jg, type LineStyleWithLiterals as jh, type WidthWithLiterals as ji, type DividerDataAlignmentWithLiterals as jj, type ViewModeWithLiterals as jk, type LayoutTypeWithLiterals as jl, type OrientationWithLiterals as jm, type CropWithLiterals as jn, type ThumbnailsAlignmentWithLiterals as jo, type GIFTypeWithLiterals as jp, type SourceWithLiterals as jq, type StylesPositionWithLiterals as jr, type MapTypeWithLiterals as js, type ViewRoleWithLiterals as jt, type VoteRoleWithLiterals as ju, type PollLayoutTypeWithLiterals as jv, type PollLayoutDirectionWithLiterals as jw, type PollDesignBackgroundTypeWithLiterals as jx, type DecorationTypeWithLiterals as jy, type FontTypeWithLiterals as jz, type CursorQuery as k, onSubmissionCreated as k$, type AlignmentWithLiterals as k0, type ImageFitWithLiterals as k1, type NumberOfColumnsWithLiterals as k2, type FirstDayOfWeekWithLiterals as k3, type NumberComponentTypeWithLiterals as k4, type BooleanComponentTypeWithLiterals as k5, type ItemTypeWithLiterals as k6, type PropertiesTypeEnumWithLiterals as k7, type ArrayComponentTypeWithLiterals as k8, type WixFileComponentTypeWithLiterals as k9, type RequiredIndicatorPlacementWithLiterals as kA, type TargetWithLiterals as kB, type SubmitSuccessActionWithLiterals as kC, type ChangeablePropertyWithLiterals as kD, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as kE, type OperatorWithLiterals as kF, type ResultsDisplayWithLiterals as kG, type ContactAutofillWithLiterals as kH, type SubmissionAccessWithLiterals as kI, type IdentityTypeWithLiterals as kJ, type SubscriptionStatusWithLiterals as kK, type EmailDeliverabilityStatusWithLiterals as kL, type PhoneTagWithLiterals as kM, type PhoneDeliverabilityStatusWithLiterals as kN, type AddressTagWithLiterals as kO, type SubdivisionTypeWithLiterals as kP, type MemberStatusWithLiterals as kQ, type PrivacyStatusWithLiterals as kR, type RoleWithLiterals as kS, type ActionWithLiterals as kT, type ErrorTypeWithLiterals as kU, type SortOrderWithLiterals as kV, type ModeWithLiterals as kW, type StatusWithLiterals as kX, type SubmissionErrorTypeWithLiterals as kY, type CommonSearchWithEntityContext as kZ, type CommonQueryWithEntityContext as k_, type UploadFileFormatWithLiterals as ka, type PaymentComponentTypeWithLiterals as kb, type ComponentTypeWithLiterals as kc, type TypeWithLiterals as kd, type ObjectArrayComponentTypeWithLiterals as ke, type SchedulingComponentTypeWithLiterals as kf, type FormatWithLiterals as kg, type MeetingTypeWithLiterals as kh, type StaffStrategySelectionWithLiterals as ki, type InputTypeWithLiterals as kj, type EmailInfoTagWithLiterals as kk, type PhoneInfoTagWithLiterals as kl, type TagWithLiterals as km, type ConfirmationLevelWithLiterals as kn, type SubscriptionChannelWithLiterals as ko, type ContactFieldWithLiterals as kp, type DisplayFieldTypeWithLiterals as kq, type OverrideEntityTypeWithLiterals as kr, type KindWithLiterals as ks, type FormFieldContactInfoEmailInfoTagWithLiterals as kt, type FormFieldContactInfoPhoneInfoTagWithLiterals as ku, type AddressInfoTagWithLiterals as kv, type SubscriptionInfoOptInLevelWithLiterals as kw, type FormFieldContactInfoContactFieldWithLiterals as kx, type SpamFilterProtectionLevelWithLiterals as ky, type RequiredIndicatorWithLiterals as kz, type QuerySubmissionResponse as l, onSubmissionDeleted as l0, onSubmissionRemovedSubmissionFromTrash as l1, onSubmissionStatusUpdated as l2, onSubmissionContactMapped as l3, onSubmissionContactMappingSkipped as l4, onSubmissionUpdated as l5, upsertContactFromSubmission as l6, createSubmission as l7, getSubmission as l8, updateSubmission as l9, confirmSubmission as la, deleteSubmission as lb, bulkDeleteSubmission as lc, restoreSubmissionFromTrashBin as ld, removeSubmissionFromTrashBin as le, bulkRemoveSubmissionFromTrashBin as lf, listDeletedSubmissions as lg, getDeletedSubmission as lh, querySubmission as li, querySubmissionsByNamespace as lj, countSubmissionsByFilter as lk, countSubmissions as ll, countDeletedSubmissions as lm, getMediaUploadUrl as ln, bulkMarkSubmissionsAsSeen as lo, getSubmissionDownloadUrl as lp, downloadSubmission as lq, getFormattedSubmission as lr, updateExtendedFields as ls, bulkUpdateFormSubmissionTags as lt, bulkUpdateFormSubmissionTagsByFilter as lu, validateFormSubmission as lv, 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 };
|