@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>;
|
|
@@ -8343,4 +9021,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
8343
9021
|
fieldsToValidate?: string[];
|
|
8344
9022
|
}
|
|
8345
9023
|
|
|
8346
|
-
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, NumberOfColumns as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, BackgroundType as a7, GradientType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, ImageScalingScaling as aJ, LayoutDataImagePosition as aK, Origin as aL, LayoutDataBackgroundType as aM, BackdropType as aN, VerticalAlignmentAlignment as aO, ResponsivenessBehaviour as aP, DesignTarget as aQ, Scaling as aR, ImagePositionPosition as aS, CardDataBackgroundType as aT, ListStyle as aU, Indentation as aV, SmartBlockDataType as aW, ColumnSize as aX, ImagePosition as aY, Alignment as aZ, ImageFit as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, PollDesignBackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type RestoreInfo as b$, FirstDayOfWeek as b0, NumberComponentType as b1, BooleanComponentType as b2, ItemType as b3, PropertiesTypeEnum as b4, ArrayComponentType as b5, WixFileComponentType as b6, UploadFileFormat as b7, PaymentComponentType as b8, ComponentType as b9, ChangeableProperty as bA, OverrideEntityTypeEnumOverrideEntityType as bB, Operator as bC, ResultsDisplay as bD, ContactAutofill as bE, SubmissionAccess as bF, IdentityType as bG, ErrorType as bH, SortOrder as bI, Mode as bJ, Status as bK, SubmissionErrorType as bL, type Submitter as bM, type SubmitterSubmitterOneOf as bN, type ExtendedFields as bO, type OrderDetails as bP, type PublicTags as bQ, type TagList as bR, type AppointmentDetails as bS, type FormSubmissionStatusUpdatedEvent as bT, type RemovedSubmissionFromTrash as bU, type SubmissionContactMapped as bV, type MarketingSubscriptionDetails as bW, type SubmissionContactMappingSkipped as bX, type DomainEvent as bY, type DomainEventBodyOneOf as bZ, type EntityCreatedEvent as b_, Type as ba, ObjectArrayComponentType as bb, SchedulingComponentType as bc, Format as bd, MeetingType as be, StaffStrategySelection as bf, InputType as bg, EmailInfoTag as bh, PhoneInfoTag as bi, Tag as bj, ConfirmationLevel as bk, SubscriptionChannel as bl, ContactField as bm, DisplayFieldType as bn, OverrideEntityType as bo, Kind as bp, FormFieldContactInfoEmailInfoTag as bq, FormFieldContactInfoPhoneInfoTag as br, AddressInfoTag as bs, SubscriptionInfoOptInLevel as bt, FormFieldContactInfoContactField as bu, SpamFilterProtectionLevel as bv, RequiredIndicator as bw, RequiredIndicatorPlacement as bx, Target as by, SubmitSuccessAction as bz, type CreateSubmissionValidationErrors as c, type Node as c$, type EntityUpdatedEvent as c0, type EntityDeletedEvent as c1, type ActionEvent as c2, type MessageEnvelope as c3, type IdentificationData as c4, type IdentificationDataIdOneOf as c5, type AccountInfo as c6, type CreateCheckoutFromSubmissionRequest as c7, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c8, type Form as c9, type QuantityLimit as cA, type FixedPriceOptions as cB, type DynamicPriceOptions as cC, type Product as cD, type ProductPriceOptionsOneOf as cE, type MultilineAddressValidation as cF, type FieldOverrides as cG, type FieldsOverrides as cH, type ObjectArrayType as cI, type NestedFormFieldOverrides as cJ, type Validation as cK, type ValidationValidationOneOf as cL, type DataExtensionsDetails as cM, type NestedFormOverrides as cN, type Field as cO, type FieldFieldTypeOptionsOneOf as cP, type InputField as cQ, type InputFieldInputTypeOptionsOneOf as cR, type StringCorrectAnswersList as cS, type StringType as cT, type StringTypeFormatOptionsOneOf as cU, type DateTimeConstraints as cV, type PhoneConstraints as cW, type ValidationMessages as cX, type StringQuizFieldSettings as cY, type TextInput as cZ, type RichContent as c_, type FormField as ca, type FormFieldStringType as cb, type FormFieldStringTypeFormatOptionsOneOf as cc, type StringErrorMessages as cd, type DateTimeAdvancedConstraints as ce, type Availability as cf, type DateRange as cg, type StringTypeDateTimeConstraints as ch, type StringTypePhoneConstraints as ci, type StringTypeValidationMessages as cj, type FormFieldNumberType as ck, type NumberErrorMessages as cl, type IntegerType as cm, type FormFieldBooleanType as cn, type BooleanErrorMessages as co, type FormFieldArrayType as cp, type FormFieldObjectType as cq, type ObjectTypePropertiesType as cr, type ObjectTypePropertiesTypePropertiesTypeOneOf as cs, type ObjectErrorMessages as ct, type ArrayTypeArrayItems as cu, type ArrayTypeArrayItemsItemsOneOf as cv, type ArrayErrorMessages as cw, type PredefinedValidation as cx, type PredefinedValidationFormatOptionsOneOf as cy, type PaymentType as cz, type UpdateSubmission as d, type Decoration as d$, type NodeDataOneOf as d0, type NodeStyle as d1, type ButtonData as d2, type Gradient as d3, type Stop as d4, type Border as d5, type Colors as d6, type Background as d7, type PluginContainerData as d8, type PluginContainerDataWidth as d9, type GIF as dA, type HeadingData as dB, type HTMLData as dC, type HTMLDataDataOneOf as dD, type ImageData as dE, type StylesBorder as dF, type ImageDataStyles as dG, type LinkPreviewData as dH, type LinkPreviewDataStyles as dI, type MapData as dJ, type MapSettings as dK, type ParagraphData as dL, type PollData as dM, type Permissions as dN, type PollOption as dO, type Settings as dP, type PollLayout as dQ, type OptionLayout as dR, type BackgroundGradient as dS, type PollDesignBackground as dT, type PollDesignBackgroundBackgroundOneOf as dU, type PollDesign as dV, type OptionDesign as dW, type Poll as dX, type PollDataLayout as dY, type Design as dZ, type TextData as d_, type PluginContainerDataWidthDataOneOf as da, type Spoiler as db, type Height as dc, type Styles as dd, type Link as de, type LinkDataOneOf as df, type Rel as dg, type CodeBlockData as dh, type TextStyle as di, type DividerData as dj, type FileData as dk, type FileSource as dl, type FileSourceDataOneOf as dm, type PDFSettings as dn, type GalleryData as dp, type Media as dq, type Image as dr, type Video as ds, type Item as dt, type ItemDataOneOf as du, type GalleryOptions as dv, type GalleryOptionsLayout as dw, type ItemStyle as dx, type Thumbnails as dy, type GIFData as dz, type UpdateSubmissionValidationErrors as e, type DatePicker as e$, type DecorationDataOneOf as e0, type AnchorData as e1, type ColorData as e2, type LinkData as e3, type MentionData as e4, type FontSizeData as e5, type SpoilerData as e6, type FontFamilyData as e7, type AppEmbedData as e8, type AppEmbedDataAppDataOneOf as e9, type Banner as eA, type LayoutDataBackground as eB, type Backdrop as eC, type LayoutCellData as eD, type ShapeData as eE, type ShapeDataStyles as eF, type CardData as eG, type CardDataBackground as eH, type BackgroundImage as eI, type TocData as eJ, type SmartBlockData as eK, type SmartBlockCellData as eL, type Metadata as eM, type DocumentStyle as eN, type TextNodeStyle as eO, type MediaItem as eP, type MediaItemMediaOneOf as eQ, type MediaSettings as eR, type RadioGroup as eS, type RadioGroupOption as eT, type CustomOption as eU, type Dropdown as eV, type DropdownOption as eW, type DateTimeInput as eX, type PhoneInput as eY, type DateInput as eZ, type TimeInput as e_, type BookingData as ea, type EventData as eb, type ButtonStyles as ec, type ImageStyles as ed, type RibbonStyles as ee, type CardStyles as ef, type PricingData as eg, type VideoData as eh, type PlaybackOptions as ei, type EmbedData as ej, type Oembed as ek, type CollapsibleListData as el, type TableData as em, type Dimensions as en, type TableCellData as eo, type CellStyle as ep, type BorderColors as eq, type BorderWidths as er, type ListValue as es, type AudioData as et, type OrderedListData as eu, type BulletedListData as ev, type BlockquoteData as ew, type CaptionData as ex, type LayoutData as ey, type LayoutDataBackgroundImage as ez, type ConfirmSubmissionResponse as f, type _Boolean as f$, type ServicesDropdown as f0, type ServiceOption as f1, type Password as f2, type NumberCorrectAnswersList as f3, type NumberType as f4, type NumberQuizFieldSettings as f5, type NumberInput as f6, type RatingInput as f7, type BooleanType as f8, type Checkbox as f9, type FieldsSettings as fA, type Repeater as fB, type FormLayout as fC, type BreakPoint as fD, type ItemLayout as fE, type ItemLayoutItemOneOf as fF, type Group as fG, type Margin as fH, type Section as fI, type Appointment as fJ, type AppointmentFormatInfoOneOf as fK, type Location as fL, type LocationLocationInfoOneOf as fM, type InPersonOptions as fN, type VideoConferenceOptions as fO, type PhoneOptions as fP, type FormFieldContactInfo as fQ, type FormFieldContactInfoAdditionalInfoOneOf as fR, type EmailInfo as fS, type PhoneInfo as fT, type AddressInfo as fU, type CustomFieldInfo as fV, type SubscriptionInfo as fW, type _String as fX, type _StringComponentTypeOptionsOneOf as fY, type _Number as fZ, type _NumberComponentTypeOptionsOneOf as f_, type CorrectAnswersList as fa, type ArrayType as fb, type ObjectType as fc, type PropertiesType as fd, type PropertiesTypePropertiesTypeOptionsOneOf as fe, type ArrayItems as ff, type ArrayItemsItemTypeOptionsOneOf as fg, type QuizFieldSettings as fh, type CheckboxGroup as fi, type Option as fj, type ComponentsTags as fk, type TagsOption as fl, type ServicesCheckboxGroup as fm, type FileType as fn, type FileUpload as fo, type Signature as fp, type ProductCheckboxGroup as fq, type ProductCheckboxGroupOption as fr, type DonationInput as fs, type DonationInputOption as ft, type PaymentInput as fu, type FixedPayment as fv, type MultilineAddress as fw, type AddressLine2 as fx, type DefaultCountryConfig as fy, type DefaultCountryConfigOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type Empty as g$, type _BooleanComponentTypeOptionsOneOf as g0, type _Array as g1, type _ArrayComponentTypeOptionsOneOf as g2, type _Object as g3, type WixFile as g4, type WixFileComponentTypeOptionsOneOf as g5, type Payment as g6, type PaymentComponentTypeOptionsOneOf as g7, type Scheduling as g8, type SchedulingComponentTypeOptionsOneOf as g9, type ThankYouMessageOptions as gA, type RedirectOptions as gB, type PopupOptions as gC, type FieldGroup as gD, type Rule as gE, type RequiredOptions as gF, type HiddenOptions as gG, type AllowedValuesOptions as gH, type FieldOverride as gI, type FieldOverridePropertyTypeOptionsOneOf as gJ, type ConditionNode as gK, type ConditionNodeNodeOneOf as gL, type AndCondition as gM, type OrCondition as gN, type Condition as gO, type RuleFormOverride as gP, type RuleFormOverrideEntityTypeOptionsOneOf as gQ, type Tags as gR, type TagsTagList as gS, type QuizSettings as gT, type QuizSettingsPassingCriteriaOneOf as gU, type QuizSettingsResultsDisplayOptionsOneOf as gV, type PassFailMessages as gW, type CreateCheckoutFromSubmissionResponse as gX, type Checkout as gY, type IsFormSubmittableRequest as gZ, type IsFormSubmittableResponse as g_, type Address as ga, type AddressComponentTypeOptionsOneOf as gb, type ObjectArray as gc, type ObjectArrayComponentTypeOptionsOneOf as gd, type DisplayField as ge, type DisplayFieldDisplayFieldTypeOptionsOneOf as gf, type RichContentOptions as gg, type PageNavigationOptions as gh, type Step as gi, type FormRule as gj, type FormOverride as gk, type FormProperties as gl, type PostSubmissionTriggers as gm, type UpsertContact as gn, type V4FormFieldContactInfo as go, type V4FormFieldContactInfoAdditionalInfoOneOf as gp, type FormFieldContactInfoEmailInfo as gq, type FormFieldContactInfoPhoneInfo as gr, type FormFieldContactInfoAddressInfo as gs, type FormFieldContactInfoCustomFieldInfo as gt, type FormFieldContactInfoSubscriptionInfo as gu, type NestedForm as gv, type LimitationRule as gw, type RequiredIndicatorProperties as gx, type SubmitSettings as gy, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type FormattedSubmission as h$, type UpsertContactFromSubmissionRequest as h0, type SubmitContactResponse as h1, type CreateSubmissionRequest as h2, type CreateSubmissionResponse as h3, type SubmissionValidationErrorsDetails as h4, type ValidationError as h5, type CreateSubmissionBySubmitterRequest as h6, type CreateSubmissionBySubmitterResponse as h7, type BulkCreateSubmissionBySubmitterRequest as h8, type BulkCreateSubmissionBySubmitterData as h9, type QuerySubmissionRequest as hA, type CursorQueryPagingMethodOneOf as hB, type Sorting as hC, type SearchSubmissionsByNamespaceRequest as hD, type CursorSearch as hE, type CursorSearchPagingMethodOneOf as hF, type SearchDetails as hG, type SearchSubmissionsByNamespaceForExportRequest as hH, type SearchSubmissionsByNamespaceForExportResponse as hI, type QuerySubmissionsByNamespaceRequest as hJ, type QuerySubmissionsByNamespaceResponse as hK, type QuerySubmissionsByNamespaceForExportRequest as hL, type QuerySubmissionsByNamespaceForExportResponse as hM, type CountSubmissionsByFilterRequest as hN, type FormSubmissionsCount as hO, type CountSubmissionsRequest as hP, type CountDeletedSubmissionsRequest as hQ, type FormDeletedSubmissionsCount as hR, type GetMediaUploadURLRequest as hS, type BulkMarkSubmissionsAsSeenRequest as hT, type GetSubmissionDownloadUrlRequest as hU, type SubmissionDocument as hV, type SubmissionDocumentDocumentOneOf as hW, type DocumentReady as hX, type DownloadSubmissionRequest as hY, type HeadersEntry as hZ, type GetFormattedSubmissionRequest as h_, type BulkCreateSubmissionBySubmitterResponse as ha, type BulkSubmissionResult as hb, type ItemMetadata as hc, type ApplicationError as hd, type BulkActionMetadata as he, type GetSubmissionRequest as hf, type GetSubmissionResponse as hg, type GetSubmissionByCheckoutIdRequest as hh, type GetSubmissionByCheckoutIdResponse as hi, type UpdateSubmissionRequest as hj, type UpdateSubmissionResponse as hk, type ConfirmSubmissionRequest as hl, type DeleteSubmissionRequest as hm, type DeleteSubmissionResponse as hn, type BulkDeleteSubmissionRequest as ho, type BulkDeleteSubmissionResult as hp, type RestoreSubmissionFromTrashBinRequest as hq, type RemoveSubmissionFromTrashBinRequest as hr, type RemoveSubmissionFromTrashBinResponse as hs, type BulkRemoveSubmissionFromTrashBinRequest as ht, type BulkRemoveSubmissionFromTrashBinResult as hu, type ListDeletedSubmissionsRequest as hv, type CursorPaging as hw, type CursorPagingMetadata as hx, type Cursors as hy, type GetDeletedSubmissionRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type FontTypeWithLiterals as i$, type ListFormattedSubmissionsRequest as i0, type ListFormattedSubmissionsResponse as i1, type FormattedFormSubmission as i2, type UpdateExtendedFieldsRequest as i3, type BulkUpdateFormSubmissionTagsRequest as i4, type BulkUpdateFormSubmissionTagsResponse as i5, type BulkUpdateFormSubmissionTagsResult as i6, type BulkUpdateFormSubmissionTagsByFilterRequest as i7, type BulkUpdateFormSubmissionTagsByFilterResponse as i8, type ValidateFormSubmissionRequest 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 FieldViolation as ia, type FieldViolationErrorDataOneOf as ib, type SubmissionValidationErrors as ic, type SubmissionValidationError as id, type SubmissionValidationErrorErrorMessageOneOf as ie, type BaseEventMetadata as ig, type EventMetadata as ih, type AccountInfoMetadata as ii, type FormSubmissionSearchSpec as ij, type SubmissionsQueryResult as ik, type FormSubmissionQuerySpec as il, type BulkUpdateFormSubmissionTagsOptions as im, type BulkUpdateFormSubmissionTagsByFilterOptions 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, validateFormSubmission as kL, 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 };
|
|
9024
|
+
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, NumberOfColumns as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, BackgroundType as a7, GradientType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, ImageScalingScaling as aJ, LayoutDataImagePosition as aK, Origin as aL, LayoutDataBackgroundType as aM, BackdropType as aN, VerticalAlignmentAlignment as aO, ResponsivenessBehaviour as aP, DesignTarget as aQ, Scaling as aR, ImagePositionPosition as aS, CardDataBackgroundType as aT, ListStyle as aU, Indentation as aV, SmartBlockDataType as aW, ColumnSize as aX, ImagePosition as aY, Alignment as aZ, ImageFit as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, PollDesignBackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type TagList as b$, FirstDayOfWeek as b0, NumberComponentType as b1, BooleanComponentType as b2, ItemType as b3, PropertiesTypeEnum as b4, ArrayComponentType as b5, WixFileComponentType as b6, UploadFileFormat as b7, PaymentComponentType as b8, ComponentType as b9, ChangeableProperty as bA, OverrideEntityTypeEnumOverrideEntityType as bB, Operator as bC, ResultsDisplay as bD, ContactAutofill as bE, SubmissionAccess as bF, IdentityType as bG, SubscriptionStatus as bH, EmailDeliverabilityStatus as bI, PhoneTag as bJ, PhoneDeliverabilityStatus as bK, AddressTag as bL, SubdivisionType as bM, MemberStatus as bN, PrivacyStatus as bO, Role as bP, Action as bQ, ErrorType as bR, SortOrder as bS, Mode as bT, Status as bU, SubmissionErrorType as bV, type Submitter as bW, type SubmitterSubmitterOneOf as bX, type ExtendedFields as bY, type OrderDetails as bZ, type PublicTags as b_, Type as ba, ObjectArrayComponentType as bb, SchedulingComponentType as bc, Format as bd, MeetingType as be, StaffStrategySelection as bf, InputType as bg, EmailInfoTag as bh, PhoneInfoTag as bi, Tag as bj, ConfirmationLevel as bk, SubscriptionChannel as bl, ContactField as bm, DisplayFieldType as bn, OverrideEntityType as bo, Kind as bp, FormFieldContactInfoEmailInfoTag as bq, FormFieldContactInfoPhoneInfoTag as br, AddressInfoTag as bs, SubscriptionInfoOptInLevel as bt, FormFieldContactInfoContactField as bu, SpamFilterProtectionLevel as bv, RequiredIndicator as bw, RequiredIndicatorPlacement as bx, Target as by, SubmitSuccessAction as bz, type CreateSubmissionValidationErrors as c, type InputFieldInputTypeOptionsOneOf as c$, type AppointmentDetails as c0, type FormSubmissionStatusUpdatedEvent as c1, type RemovedSubmissionFromTrash as c2, type SubmissionContactMapped as c3, type MarketingSubscriptionDetails as c4, type SubmissionContactMappingSkipped as c5, type DomainEvent as c6, type DomainEventBodyOneOf as c7, type EntityCreatedEvent as c8, type RestoreInfo as c9, type FormFieldObjectType as cA, type ObjectTypePropertiesType as cB, type ObjectTypePropertiesTypePropertiesTypeOneOf as cC, type ObjectErrorMessages as cD, type ArrayTypeArrayItems as cE, type ArrayTypeArrayItemsItemsOneOf as cF, type ArrayErrorMessages as cG, type PredefinedValidation as cH, type PredefinedValidationFormatOptionsOneOf as cI, type PaymentType as cJ, type QuantityLimit as cK, type FixedPriceOptions as cL, type DynamicPriceOptions as cM, type Product as cN, type ProductPriceOptionsOneOf as cO, type MultilineAddressValidation as cP, type FieldOverrides as cQ, type FieldsOverrides as cR, type ObjectArrayType as cS, type NestedFormFieldOverrides as cT, type Validation as cU, type ValidationValidationOneOf as cV, type DataExtensionsDetails as cW, type NestedFormOverrides as cX, type Field as cY, type FieldFieldTypeOptionsOneOf as cZ, type InputField as c_, type EntityUpdatedEvent as ca, type EntityDeletedEvent as cb, type ActionEvent as cc, type MessageEnvelope as cd, type IdentificationData as ce, type IdentificationDataIdOneOf as cf, type AccountInfo as cg, type CreateCheckoutFromSubmissionRequest as ch, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as ci, type Form as cj, type FormField as ck, type FormFieldStringType as cl, type FormFieldStringTypeFormatOptionsOneOf as cm, type StringErrorMessages as cn, type DateTimeAdvancedConstraints as co, type Availability as cp, type DateRange as cq, type StringTypeDateTimeConstraints as cr, type StringTypePhoneConstraints as cs, type StringTypeValidationMessages as ct, type FormFieldNumberType as cu, type NumberErrorMessages as cv, type IntegerType as cw, type FormFieldBooleanType as cx, type BooleanErrorMessages as cy, type FormFieldArrayType as cz, type UpdateSubmission as d, type OptionLayout as d$, type StringCorrectAnswersList as d0, type StringType as d1, type StringTypeFormatOptionsOneOf as d2, type DateTimeConstraints as d3, type PhoneConstraints as d4, type ValidationMessages as d5, type StringQuizFieldSettings as d6, type TextInput as d7, type RichContent as d8, type Node as d9, type Media as dA, type Image as dB, type Video as dC, type Item as dD, type ItemDataOneOf as dE, type GalleryOptions as dF, type GalleryOptionsLayout as dG, type ItemStyle as dH, type Thumbnails as dI, type GIFData as dJ, type GIF as dK, type HeadingData as dL, type HTMLData as dM, type HTMLDataDataOneOf as dN, type ImageData as dO, type StylesBorder as dP, type ImageDataStyles as dQ, type LinkPreviewData as dR, type LinkPreviewDataStyles as dS, type MapData as dT, type MapSettings as dU, type ParagraphData as dV, type PollData as dW, type Permissions as dX, type PollOption as dY, type Settings as dZ, type PollLayout as d_, type NodeDataOneOf as da, type NodeStyle as db, type ButtonData as dc, type Gradient as dd, type Stop as de, type Border as df, type Colors as dg, type Background as dh, type PluginContainerData as di, type PluginContainerDataWidth as dj, type PluginContainerDataWidthDataOneOf as dk, type Spoiler as dl, type Height as dm, type Styles as dn, type Link as dp, type LinkDataOneOf as dq, type Rel as dr, type CodeBlockData as ds, type TextStyle as dt, type DividerData as du, type FileData as dv, type FileSource as dw, type FileSourceDataOneOf as dx, type PDFSettings as dy, type GalleryData as dz, type UpdateSubmissionValidationErrors as e, type MediaSettings as e$, type BackgroundGradient as e0, type PollDesignBackground as e1, type PollDesignBackgroundBackgroundOneOf as e2, type PollDesign as e3, type OptionDesign as e4, type Poll as e5, type PollDataLayout as e6, type Design as e7, type TextData as e8, type Decoration as e9, type BorderColors as eA, type BorderWidths as eB, type ListValue as eC, type AudioData as eD, type OrderedListData as eE, type BulletedListData as eF, type BlockquoteData as eG, type CaptionData as eH, type LayoutData as eI, type LayoutDataBackgroundImage as eJ, type Banner as eK, type LayoutDataBackground as eL, type Backdrop as eM, type LayoutCellData as eN, type ShapeData as eO, type ShapeDataStyles as eP, type CardData as eQ, type CardDataBackground as eR, type BackgroundImage as eS, type TocData as eT, type SmartBlockData as eU, type SmartBlockCellData as eV, type Metadata as eW, type DocumentStyle as eX, type TextNodeStyle as eY, type MediaItem as eZ, type MediaItemMediaOneOf as e_, type DecorationDataOneOf as ea, type AnchorData as eb, type ColorData as ec, type LinkData as ed, type MentionData as ee, type FontSizeData as ef, type SpoilerData as eg, type FontFamilyData as eh, type AppEmbedData as ei, type AppEmbedDataAppDataOneOf as ej, type BookingData as ek, type EventData as el, type ButtonStyles as em, type ImageStyles as en, type RibbonStyles as eo, type CardStyles as ep, type PricingData as eq, type VideoData as er, type PlaybackOptions as es, type EmbedData as et, type Oembed as eu, type CollapsibleListData as ev, type TableData as ew, type Dimensions as ex, type TableCellData as ey, type CellStyle as ez, type ConfirmSubmissionResponse as f, type FormFieldContactInfoAdditionalInfoOneOf as f$, type RadioGroup as f0, type RadioGroupOption as f1, type CustomOption as f2, type Dropdown as f3, type DropdownOption as f4, type DateTimeInput as f5, type PhoneInput as f6, type DateInput as f7, type TimeInput as f8, type DatePicker as f9, type ProductCheckboxGroup as fA, type ProductCheckboxGroupOption as fB, type DonationInput as fC, type DonationInputOption as fD, type PaymentInput as fE, type FixedPayment as fF, type MultilineAddress as fG, type AddressLine2 as fH, type DefaultCountryConfig as fI, type DefaultCountryConfigOptionsOneOf as fJ, type FieldsSettings as fK, type Repeater as fL, type FormLayout as fM, type BreakPoint as fN, type ItemLayout as fO, type ItemLayoutItemOneOf as fP, type Group as fQ, type Margin as fR, type Section as fS, type Appointment as fT, type AppointmentFormatInfoOneOf as fU, type Location as fV, type LocationLocationInfoOneOf as fW, type InPersonOptions as fX, type VideoConferenceOptions as fY, type PhoneOptions as fZ, type FormFieldContactInfo as f_, type ServicesDropdown as fa, type ServiceOption as fb, type Password as fc, type NumberCorrectAnswersList as fd, type NumberType as fe, type NumberQuizFieldSettings as ff, type NumberInput as fg, type RatingInput as fh, type BooleanType as fi, type Checkbox as fj, type CorrectAnswersList as fk, type ArrayType as fl, type ObjectType as fm, type PropertiesType as fn, type PropertiesTypePropertiesTypeOptionsOneOf as fo, type ArrayItems as fp, type ArrayItemsItemTypeOptionsOneOf as fq, type QuizFieldSettings as fr, type CheckboxGroup as fs, type Option as ft, type ComponentsTags as fu, type TagsOption as fv, type ServicesCheckboxGroup as fw, type FileType as fx, type FileUpload as fy, type Signature as fz, type BulkDeleteSubmissionResponse as g, type Tags as g$, type EmailInfo as g0, type PhoneInfo as g1, type AddressInfo as g2, type CustomFieldInfo as g3, type SubscriptionInfo as g4, type _String as g5, type _StringComponentTypeOptionsOneOf as g6, type _Number as g7, type _NumberComponentTypeOptionsOneOf as g8, type _Boolean as g9, type FormFieldContactInfoEmailInfo as gA, type FormFieldContactInfoPhoneInfo as gB, type FormFieldContactInfoAddressInfo as gC, type FormFieldContactInfoCustomFieldInfo as gD, type FormFieldContactInfoSubscriptionInfo as gE, type NestedForm as gF, type LimitationRule as gG, type RequiredIndicatorProperties as gH, type SubmitSettings as gI, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gJ, type ThankYouMessageOptions as gK, type RedirectOptions as gL, type PopupOptions as gM, type FieldGroup as gN, type Rule as gO, type RequiredOptions as gP, type HiddenOptions as gQ, type AllowedValuesOptions as gR, type FieldOverride as gS, type FieldOverridePropertyTypeOptionsOneOf as gT, type ConditionNode as gU, type ConditionNodeNodeOneOf as gV, type AndCondition as gW, type OrCondition as gX, type Condition as gY, type RuleFormOverride as gZ, type RuleFormOverrideEntityTypeOptionsOneOf as g_, type _BooleanComponentTypeOptionsOneOf as ga, type _Array as gb, type _ArrayComponentTypeOptionsOneOf as gc, type _Object as gd, type WixFile as ge, type WixFileComponentTypeOptionsOneOf as gf, type Payment as gg, type PaymentComponentTypeOptionsOneOf as gh, type Scheduling as gi, type SchedulingComponentTypeOptionsOneOf as gj, type InputFieldAddress as gk, type InputFieldAddressComponentTypeOptionsOneOf as gl, type ObjectArray as gm, type ObjectArrayComponentTypeOptionsOneOf as gn, type DisplayField as go, type DisplayFieldDisplayFieldTypeOptionsOneOf as gp, type RichContentOptions as gq, type PageNavigationOptions as gr, type Step as gs, type FormRule as gt, type FormOverride as gu, type FormProperties as gv, type PostSubmissionTriggers as gw, type UpsertContact as gx, type V4FormFieldContactInfo as gy, type V4FormFieldContactInfoAdditionalInfoOneOf as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type RemoveSubmissionFromTrashBinRequest as h$, type TagsTagList as h0, type QuizSettings as h1, type QuizSettingsPassingCriteriaOneOf as h2, type QuizSettingsResultsDisplayOptionsOneOf as h3, type PassFailMessages as h4, type CreateCheckoutFromSubmissionResponse as h5, type Checkout as h6, type IsFormSubmittableRequest as h7, type IsFormSubmittableResponse as h8, type Empty as h9, type PrivateTags as hA, type PrivateTagsTagList as hB, type CreateSubmissionRequest as hC, type CreateSubmissionResponse as hD, type SubmissionValidationErrorsDetails as hE, type ValidationError as hF, type CreateSubmissionBySubmitterRequest as hG, type CreateSubmissionBySubmitterResponse as hH, type BulkCreateSubmissionBySubmitterRequest as hI, type BulkCreateSubmissionBySubmitterData as hJ, type BulkCreateSubmissionBySubmitterResponse as hK, type BulkSubmissionResult as hL, type ItemMetadata as hM, type ApplicationError as hN, type BulkActionMetadata as hO, type GetSubmissionRequest as hP, type GetSubmissionResponse as hQ, type GetSubmissionByCheckoutIdRequest as hR, type GetSubmissionByCheckoutIdResponse as hS, type UpdateSubmissionRequest as hT, type UpdateSubmissionResponse as hU, type ConfirmSubmissionRequest as hV, type DeleteSubmissionRequest as hW, type DeleteSubmissionResponse as hX, type BulkDeleteSubmissionRequest as hY, type BulkDeleteSubmissionResult as hZ, type RestoreSubmissionFromTrashBinRequest as h_, type UpsertContactFromSubmissionRequest as ha, type SubmitContactResponse as hb, type UpsertContactResponse as hc, type Contact as hd, type ContactName as he, type ContactEmail as hf, type ContactSubscription as hg, type AdditionalEmail as hh, type ContactPhone as hi, type AdditionalPhone as hj, type ContactAddress as hk, type Address as hl, type AddressStreetOneOf as hm, type StreetAddress as hn, type AddressLocation as ho, type Subdivision as hp, type StandardDetails as hq, type Recipient as hr, type ContactCompany as hs, type ContactSource as ht, type ContactActivity as hu, type MemberInfo as hv, type ProfileInfo as hw, type UserInfo as hx, type SessionInfo as hy, type GroupInfo as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type OptInLevelWithLiterals as i$, type RemoveSubmissionFromTrashBinResponse as i0, type BulkRemoveSubmissionFromTrashBinRequest as i1, type BulkRemoveSubmissionFromTrashBinResult as i2, type ListDeletedSubmissionsRequest as i3, type CursorPaging as i4, type CursorPagingMetadata as i5, type Cursors as i6, type GetDeletedSubmissionRequest as i7, type QuerySubmissionRequest as i8, type CursorQueryPagingMethodOneOf as i9, type GetFormattedSubmissionRequest as iA, type FormattedSubmission as iB, type ListFormattedSubmissionsRequest as iC, type ListFormattedSubmissionsResponse as iD, type FormattedFormSubmission as iE, type UpdateExtendedFieldsRequest as iF, type BulkUpdateFormSubmissionTagsRequest as iG, type BulkUpdateFormSubmissionTagsResponse as iH, type BulkUpdateFormSubmissionTagsResult as iI, type BulkUpdateFormSubmissionTagsByFilterRequest as iJ, type BulkUpdateFormSubmissionTagsByFilterResponse as iK, type ValidateFormSubmissionRequest as iL, type FieldViolation as iM, type FieldViolationErrorDataOneOf as iN, type SubmissionValidationErrors as iO, type SubmissionValidationError as iP, type SubmissionValidationErrorErrorMessageOneOf as iQ, type BaseEventMetadata as iR, type EventMetadata as iS, type AccountInfoMetadata as iT, type FormSubmissionSearchSpec as iU, type SubmissionsQueryResult as iV, type FormSubmissionQuerySpec as iW, type BulkUpdateFormSubmissionTagsOptions as iX, type BulkUpdateFormSubmissionTagsByFilterOptions as iY, utils as iZ, type SubmissionStatusWithLiterals as i_, type Sorting as ia, type SearchSubmissionsByNamespaceRequest as ib, type CursorSearch as ic, type CursorSearchPagingMethodOneOf as id, type SearchDetails as ie, type SearchSubmissionsByNamespaceForExportRequest as ig, type SearchSubmissionsByNamespaceForExportResponse as ih, type QuerySubmissionsByNamespaceRequest as ii, type QuerySubmissionsByNamespaceResponse as ij, type QuerySubmissionsByNamespaceForExportRequest as ik, type QuerySubmissionsByNamespaceForExportResponse as il, type CountSubmissionsByFilterRequest as im, type FormSubmissionsCount as io, type CountSubmissionsRequest as ip, type CountDeletedSubmissionsRequest as iq, type FormDeletedSubmissionsCount as ir, type GetMediaUploadURLRequest as is, type BulkMarkSubmissionsAsSeenRequest as it, type GetSubmissionDownloadUrlRequest as iu, type SubmissionDocument as iv, type SubmissionDocumentDocumentOneOf as iw, type DocumentReady as ix, type DownloadSubmissionRequest as iy, type HeadersEntry 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, validateFormSubmission as lt, 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 };
|