@wix/auto_sdk_forms_submissions 1.0.116 → 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.
Files changed (53) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-B1vkVcUV.d.ts → forms-v4-submission-submissions.universal-C1P4RpS_.d.ts} +784 -10
  2. package/build/cjs/index.d.ts +3 -3
  3. package/build/cjs/index.js +182 -2
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +182 -2
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +823 -9
  9. package/build/cjs/meta.js +163 -1
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/cjs/schemas.d.ts +175 -3
  12. package/build/cjs/schemas.js +250 -1
  13. package/build/cjs/schemas.js.map +1 -1
  14. package/build/es/{forms-v4-submission-submissions.universal-B1vkVcUV.d.mts → forms-v4-submission-submissions.universal-C1P4RpS_.d.mts} +784 -10
  15. package/build/es/index.d.mts +3 -3
  16. package/build/es/index.mjs +170 -2
  17. package/build/es/index.mjs.map +1 -1
  18. package/build/es/index.typings.d.mts +2 -2
  19. package/build/es/index.typings.mjs +170 -2
  20. package/build/es/index.typings.mjs.map +1 -1
  21. package/build/es/meta.d.mts +823 -9
  22. package/build/es/meta.mjs +151 -1
  23. package/build/es/meta.mjs.map +1 -1
  24. package/build/es/schemas.d.mts +175 -3
  25. package/build/es/schemas.mjs +250 -1
  26. package/build/es/schemas.mjs.map +1 -1
  27. package/build/internal/cjs/{forms-v4-submission-submissions.universal-DF4f6MQ-.d.ts → forms-v4-submission-submissions.universal-D6YYlji6.d.ts} +784 -10
  28. package/build/internal/cjs/index.d.ts +3 -3
  29. package/build/internal/cjs/index.js +182 -2
  30. package/build/internal/cjs/index.js.map +1 -1
  31. package/build/internal/cjs/index.typings.d.ts +2 -2
  32. package/build/internal/cjs/index.typings.js +182 -2
  33. package/build/internal/cjs/index.typings.js.map +1 -1
  34. package/build/internal/cjs/meta.d.ts +823 -9
  35. package/build/internal/cjs/meta.js +163 -1
  36. package/build/internal/cjs/meta.js.map +1 -1
  37. package/build/internal/cjs/schemas.d.ts +175 -3
  38. package/build/internal/cjs/schemas.js +250 -1
  39. package/build/internal/cjs/schemas.js.map +1 -1
  40. package/build/internal/es/{forms-v4-submission-submissions.universal-DF4f6MQ-.d.mts → forms-v4-submission-submissions.universal-D6YYlji6.d.mts} +784 -10
  41. package/build/internal/es/index.d.mts +3 -3
  42. package/build/internal/es/index.mjs +170 -2
  43. package/build/internal/es/index.mjs.map +1 -1
  44. package/build/internal/es/index.typings.d.mts +2 -2
  45. package/build/internal/es/index.typings.mjs +170 -2
  46. package/build/internal/es/index.typings.mjs.map +1 -1
  47. package/build/internal/es/meta.d.mts +823 -9
  48. package/build/internal/es/meta.mjs +151 -1
  49. package/build/internal/es/meta.mjs.map +1 -1
  50. package/build/internal/es/schemas.d.mts +175 -3
  51. package/build/internal/es/schemas.mjs +250 -1
  52. package/build/internal/es/schemas.mjs.map +1 -1
  53. 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?: Address;
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?: Address;
1281
+ addressOptions?: InputFieldAddress;
1282
1282
  }
1283
1283
  interface StringCorrectAnswersList {
1284
1284
  /**
@@ -1547,6 +1547,10 @@ interface Node extends NodeDataOneOf {
1547
1547
  cardData?: CardData;
1548
1548
  /** Data for a table of contents node. */
1549
1549
  tocData?: TocData;
1550
+ /** Data for a smart block node. */
1551
+ smartBlockData?: SmartBlockData;
1552
+ /** Data for a smart block cell node. */
1553
+ smartBlockCellData?: SmartBlockCellData;
1550
1554
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
1551
1555
  type?: NodeTypeWithLiterals;
1552
1556
  /** Node ID. */
@@ -1620,6 +1624,10 @@ interface NodeDataOneOf {
1620
1624
  cardData?: CardData;
1621
1625
  /** Data for a table of contents node. */
1622
1626
  tocData?: TocData;
1627
+ /** Data for a smart block node. */
1628
+ smartBlockData?: SmartBlockData;
1629
+ /** Data for a smart block cell node. */
1630
+ smartBlockCellData?: SmartBlockCellData;
1623
1631
  }
1624
1632
  declare enum NodeType {
1625
1633
  PARAGRAPH = "PARAGRAPH",
@@ -1658,10 +1666,12 @@ declare enum NodeType {
1658
1666
  LAYOUT_CELL = "LAYOUT_CELL",
1659
1667
  SHAPE = "SHAPE",
1660
1668
  CARD = "CARD",
1661
- TOC = "TOC"
1669
+ TOC = "TOC",
1670
+ SMART_BLOCK = "SMART_BLOCK",
1671
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
1662
1672
  }
1663
1673
  /** @enumType */
1664
- type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
1674
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
1665
1675
  interface NodeStyle {
1666
1676
  /** The top padding value in pixels. */
1667
1677
  paddingTop?: string | null;
@@ -2279,6 +2289,8 @@ interface HeadingData {
2279
2289
  textStyle?: TextStyle;
2280
2290
  /** Indentation level from 1-4. */
2281
2291
  indentation?: number | null;
2292
+ /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
2293
+ renderedLevel?: number | null;
2282
2294
  }
2283
2295
  interface HTMLData extends HTMLDataDataOneOf {
2284
2296
  /** The URL for the HTML code for the node. */
@@ -3152,6 +3164,8 @@ interface TableData {
3152
3164
  * @maxSize 4
3153
3165
  */
3154
3166
  cellPadding?: number[];
3167
+ /** Table's alternative text. */
3168
+ altText?: string | null;
3155
3169
  }
3156
3170
  interface Dimensions {
3157
3171
  /** An array representing relative width of each column in relation to the other columns. */
@@ -3593,6 +3607,88 @@ declare enum Indentation {
3593
3607
  }
3594
3608
  /** @enumType */
3595
3609
  type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
3610
+ /** Data for a smart block node. */
3611
+ interface SmartBlockData {
3612
+ /** The type of the smart block. */
3613
+ type?: SmartBlockDataTypeWithLiterals;
3614
+ /** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
3615
+ orientation?: string | null;
3616
+ /** Column size controlling cells per row. */
3617
+ columnSize?: ColumnSizeWithLiterals;
3618
+ /** Border color (for SOLID_JOINED_BOXES variant). */
3619
+ borderColor?: string | null;
3620
+ /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
3621
+ borderWidth?: number | null;
3622
+ /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
3623
+ borderRadius?: number | null;
3624
+ }
3625
+ /** Layout type of the smart block */
3626
+ declare enum SmartBlockDataType {
3627
+ /** Grid-based layouts with solid box items containing title, body, and icon/image. */
3628
+ SOLID_BOXES = "SOLID_BOXES",
3629
+ /** Numbered boxes. */
3630
+ NUMBERED_BOXES = "NUMBERED_BOXES",
3631
+ /** Statistics display with large numbers/values. */
3632
+ STATS = "STATS",
3633
+ /** Statistics with circular visual elements. */
3634
+ CIRCLE_STATS = "CIRCLE_STATS",
3635
+ /** Staggered/zigzag grid layout with alternating box positions. */
3636
+ SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
3637
+ /** Grid layout with boxes visually joined (no gaps, shared container border). */
3638
+ SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
3639
+ /** Transparent cells with only a left side line. */
3640
+ SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
3641
+ /** Transparent cells with only a top line. */
3642
+ TOP_LINE_TEXT = "TOP_LINE_TEXT",
3643
+ /** Outlined boxes with a numbered/icon circle at the top. */
3644
+ OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
3645
+ /** Large icon bullets with text content. */
3646
+ BIG_BULLETS = "BIG_BULLETS",
3647
+ /** Small dot bullets with text content. */
3648
+ SMALL_BULLETS = "SMALL_BULLETS",
3649
+ /** Arrow icon bullets with text content. */
3650
+ ARROW_BULLETS = "ARROW_BULLETS",
3651
+ /** Process steps with numbered/icon labels above a horizontal line. */
3652
+ PROCESS_STEPS = "PROCESS_STEPS",
3653
+ /** Statistics with bar visual elements. */
3654
+ BAR_STATS = "BAR_STATS"
3655
+ }
3656
+ /** @enumType */
3657
+ type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
3658
+ /** Column size controlling how many cells appear per row. */
3659
+ declare enum ColumnSize {
3660
+ /** Up to 4 cells in a row. */
3661
+ SMALL = "SMALL",
3662
+ /** Up to 3 cells in a row (default). */
3663
+ MEDIUM = "MEDIUM",
3664
+ /** Up to 2 cells in a row. */
3665
+ LARGE = "LARGE",
3666
+ /** 1 cell in a row. */
3667
+ EXTRA_LARGE = "EXTRA_LARGE"
3668
+ }
3669
+ /** @enumType */
3670
+ type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
3671
+ /** Data for a smart block cell node. */
3672
+ interface SmartBlockCellData {
3673
+ /** Optional label text for the cell (e.g., for stats variants). */
3674
+ label?: string | null;
3675
+ /** Shape file details. */
3676
+ shape?: Media;
3677
+ /** Border color of the cell. */
3678
+ borderColor?: string | null;
3679
+ /** Border width in pixels. */
3680
+ borderWidth?: number | null;
3681
+ /** Border radius in pixels. */
3682
+ borderRadius?: number | null;
3683
+ /** The type of the parent smart block (must match parent). */
3684
+ type?: SmartBlockDataTypeWithLiterals;
3685
+ /** Accent color for non-background variants (e.g., line, bullet, label color). */
3686
+ accentColor?: string | null;
3687
+ /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
3688
+ backgroundColor?: string | null;
3689
+ /** Shape fill color as a hexadecimal value. */
3690
+ shapeColor?: string | null;
3691
+ }
3596
3692
  interface Metadata {
3597
3693
  /** Schema version. */
3598
3694
  version?: number;
@@ -5334,7 +5430,7 @@ interface SchedulingComponentTypeOptionsOneOf {
5334
5430
  /** Appointment component settings. */
5335
5431
  appointmentOptions?: Appointment;
5336
5432
  }
5337
- interface Address extends AddressComponentTypeOptionsOneOf {
5433
+ interface InputFieldAddress extends InputFieldAddressComponentTypeOptionsOneOf {
5338
5434
  /** Multiline address component settings. */
5339
5435
  multilineAddressOptions?: MultilineAddress;
5340
5436
  /**
@@ -5346,7 +5442,7 @@ interface Address extends AddressComponentTypeOptionsOneOf {
5346
5442
  validation?: MultilineAddressValidation;
5347
5443
  }
5348
5444
  /** @oneof */
5349
- interface AddressComponentTypeOptionsOneOf {
5445
+ interface InputFieldAddressComponentTypeOptionsOneOf {
5350
5446
  /** Multiline address component settings. */
5351
5447
  multilineAddressOptions?: MultilineAddress;
5352
5448
  }
@@ -6152,8 +6248,15 @@ interface UpsertContactFromSubmissionRequest {
6152
6248
  emailVerified?: boolean;
6153
6249
  }
6154
6250
  interface UpsertContactFromSubmissionResponse {
6155
- /** Submit contact response. */
6251
+ /**
6252
+ * Submit contact response.
6253
+ * @deprecated
6254
+ * @replacedBy wix.forms.v4.UpsertContactFromSubmissionResponse.upsert_contact_response
6255
+ * @targetRemovalDate 2026-08-05
6256
+ */
6156
6257
  submitContactResponse?: SubmitContactResponse;
6258
+ /** Upsert contact response. */
6259
+ upsertContactResponse?: UpsertContactResponse;
6157
6260
  }
6158
6261
  interface SubmitContactResponse {
6159
6262
  /**
@@ -6188,6 +6291,678 @@ declare enum IdentityType {
6188
6291
  }
6189
6292
  /** @enumType */
6190
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';
6191
6966
  interface CreateSubmissionRequest {
6192
6967
  /** Submission to create. */
6193
6968
  submission: FormSubmission;
@@ -7463,7 +8238,7 @@ declare function onSubmissionUpdated(handler: (event: SubmissionUpdatedEnvelope)
7463
8238
  * @applicableIdentity APP
7464
8239
  * @fqn wix.forms.v4.FormSubmissionContactUpsertService.UpsertContactFromSubmission
7465
8240
  */
7466
- declare function upsertContactFromSubmission(submissionId: string, options?: UpsertContactFromSubmissionOptions): Promise<NonNullablePaths<UpsertContactFromSubmissionResponse, `submitContactResponse.contactId` | `submitContactResponse.identityType` | `submitContactResponse.newContact`, 3>>;
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>>;
7467
8242
  interface UpsertContactFromSubmissionOptions {
7468
8243
  /**
7469
8244
  * Optional contact id to which submission should be mapped.
@@ -7864,7 +8639,6 @@ type FormSubmissionSearch = {
7864
8639
  declare const utils: {
7865
8640
  search: {
7866
8641
  SearchBuilder: () => _wix_sdk_types.SearchBuilder<FormSubmission, FormSubmissionSearchSpec, FormSubmissionSearch>;
7867
- /** @enumType */
7868
8642
  Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionSearchSpec>;
7869
8643
  Sort: _wix_sdk_types.SortFactory<FormSubmissionSearchSpec>;
7870
8644
  SearchParams: _wix_sdk_types.SearchParamsFactory<FormSubmissionSearchSpec>;
@@ -8269,4 +9043,4 @@ interface ValidateFormSubmissionOptions {
8269
9043
  fieldsToValidate?: string[];
8270
9044
  }
8271
9045
 
8272
- 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, Alignment 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, ImagePosition 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 DomainEventBodyOneOf as b$, ImageFit as b0, NumberOfColumns as b1, FirstDayOfWeek as b2, NumberComponentType as b3, BooleanComponentType as b4, ItemType as b5, PropertiesTypeEnum as b6, ArrayComponentType as b7, WixFileComponentType as b8, UploadFileFormat as b9, Target as bA, SubmitSuccessAction as bB, ChangeableProperty as bC, OverrideEntityTypeEnumOverrideEntityType as bD, Operator as bE, ResultsDisplay as bF, ContactAutofill as bG, SubmissionAccess as bH, IdentityType as bI, ErrorType as bJ, SortOrder as bK, Mode as bL, Status as bM, SubmissionErrorType as bN, type Submitter as bO, type SubmitterSubmitterOneOf as bP, type ExtendedFields as bQ, type OrderDetails as bR, type PublicTags as bS, type TagList as bT, type AppointmentDetails as bU, type FormSubmissionStatusUpdatedEvent as bV, type RemovedSubmissionFromTrash as bW, type SubmissionContactMapped as bX, type MarketingSubscriptionDetails as bY, type SubmissionContactMappingSkipped as bZ, type DomainEvent as b_, PaymentComponentType as ba, ComponentType as bb, Type as bc, ObjectArrayComponentType as bd, SchedulingComponentType as be, Format as bf, MeetingType as bg, StaffStrategySelection as bh, InputType as bi, EmailInfoTag as bj, PhoneInfoTag as bk, Tag as bl, ConfirmationLevel as bm, SubscriptionChannel as bn, ContactField as bo, DisplayFieldType as bp, OverrideEntityType as bq, Kind as br, FormFieldContactInfoEmailInfoTag as bs, FormFieldContactInfoPhoneInfoTag as bt, AddressInfoTag as bu, SubscriptionInfoOptInLevel as bv, FormFieldContactInfoContactField as bw, SpamFilterProtectionLevel as bx, RequiredIndicator as by, RequiredIndicatorPlacement as bz, type CreateSubmissionValidationErrors as c, type TextInput as c$, type EntityCreatedEvent as c0, type RestoreInfo as c1, type EntityUpdatedEvent as c2, type EntityDeletedEvent as c3, type ActionEvent as c4, type MessageEnvelope as c5, type IdentificationData as c6, type IdentificationDataIdOneOf as c7, type AccountInfo as c8, type CreateCheckoutFromSubmissionRequest as c9, type PredefinedValidationFormatOptionsOneOf as cA, type PaymentType as cB, type QuantityLimit as cC, type FixedPriceOptions as cD, type DynamicPriceOptions as cE, type Product as cF, type ProductPriceOptionsOneOf as cG, type MultilineAddressValidation as cH, type FieldOverrides as cI, type FieldsOverrides as cJ, type ObjectArrayType as cK, type NestedFormFieldOverrides as cL, type Validation as cM, type ValidationValidationOneOf as cN, type DataExtensionsDetails as cO, type NestedFormOverrides as cP, type Field as cQ, type FieldFieldTypeOptionsOneOf as cR, type InputField as cS, type InputFieldInputTypeOptionsOneOf as cT, type StringCorrectAnswersList as cU, type StringType as cV, type StringTypeFormatOptionsOneOf as cW, type DateTimeConstraints as cX, type PhoneConstraints as cY, type ValidationMessages as cZ, type StringQuizFieldSettings as c_, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as ca, type Form as cb, type FormField as cc, type FormFieldStringType as cd, type FormFieldStringTypeFormatOptionsOneOf as ce, type StringErrorMessages as cf, type DateTimeAdvancedConstraints as cg, type Availability as ch, type DateRange as ci, type StringTypeDateTimeConstraints as cj, type StringTypePhoneConstraints as ck, type StringTypeValidationMessages as cl, type FormFieldNumberType as cm, type NumberErrorMessages as cn, type IntegerType as co, type FormFieldBooleanType as cp, type BooleanErrorMessages as cq, type FormFieldArrayType as cr, type FormFieldObjectType as cs, type ObjectTypePropertiesType as ct, type ObjectTypePropertiesTypePropertiesTypeOneOf as cu, type ObjectErrorMessages as cv, type ArrayTypeArrayItems as cw, type ArrayTypeArrayItemsItemsOneOf as cx, type ArrayErrorMessages as cy, type PredefinedValidation as cz, type UpdateSubmission as d, type Design as d$, type RichContent as d0, type Node as d1, type NodeDataOneOf as d2, type NodeStyle as d3, type ButtonData as d4, type Gradient as d5, type Stop as d6, type Border as d7, type Colors as d8, type Background as d9, type Thumbnails as dA, type GIFData as dB, type GIF as dC, type HeadingData as dD, type HTMLData as dE, type HTMLDataDataOneOf as dF, type ImageData as dG, type StylesBorder as dH, type ImageDataStyles as dI, type LinkPreviewData as dJ, type LinkPreviewDataStyles as dK, type MapData as dL, type MapSettings as dM, type ParagraphData as dN, type PollData as dO, type Permissions as dP, type PollOption as dQ, type Settings as dR, type PollLayout as dS, type OptionLayout as dT, type BackgroundGradient as dU, type PollDesignBackground as dV, type PollDesignBackgroundBackgroundOneOf as dW, type PollDesign as dX, type OptionDesign as dY, type Poll as dZ, type PollDataLayout as d_, type PluginContainerData as da, type PluginContainerDataWidth as db, type PluginContainerDataWidthDataOneOf as dc, type Spoiler as dd, type Height as de, type Styles as df, type Link as dg, type LinkDataOneOf as dh, type Rel as di, type CodeBlockData as dj, type TextStyle as dk, type DividerData as dl, type FileData as dm, type FileSource as dn, type FileSourceDataOneOf as dp, type PDFSettings as dq, type GalleryData as dr, type Media as ds, type Image as dt, type Video as du, type Item as dv, type ItemDataOneOf as dw, type GalleryOptions as dx, type GalleryOptionsLayout as dy, type ItemStyle as dz, type UpdateSubmissionValidationErrors as e, type DatePicker as e$, type TextData as e0, type Decoration as e1, type DecorationDataOneOf as e2, type AnchorData as e3, type ColorData as e4, type LinkData as e5, type MentionData as e6, type FontSizeData as e7, type SpoilerData as e8, type FontFamilyData as e9, type LayoutData as eA, type LayoutDataBackgroundImage as eB, type Banner as eC, type LayoutDataBackground as eD, type Backdrop as eE, type LayoutCellData as eF, type ShapeData as eG, type ShapeDataStyles as eH, type CardData as eI, type CardDataBackground as eJ, type BackgroundImage as eK, type TocData 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 AppEmbedData as ea, type AppEmbedDataAppDataOneOf as eb, type BookingData as ec, type EventData as ed, type ButtonStyles as ee, type ImageStyles as ef, type RibbonStyles as eg, type CardStyles as eh, type PricingData as ei, type VideoData as ej, type PlaybackOptions as ek, type EmbedData as el, type Oembed as em, type CollapsibleListData as en, type TableData as eo, type Dimensions as ep, type TableCellData as eq, type CellStyle as er, type BorderColors as es, type BorderWidths as et, type ListValue as eu, type AudioData as ev, type OrderedListData as ew, type BulletedListData as ex, type BlockquoteData as ey, type CaptionData 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 PlacementWithLiterals as i$, type ListFormattedSubmissionsRequest as i0, type ListFormattedSubmissionsResponse as i1, type FormattedFormSubmission as i2, type UpdateExtendedFieldsRequest as i3, type BulkUpdateFormSubmissionTagsRequest as i4, type BulkUpdateFormSubmissionTagsResult as i5, type BulkUpdateFormSubmissionTagsByFilterRequest as i6, type ValidateFormSubmissionRequest as i7, type FieldViolation as i8, type FieldViolationErrorDataOneOf as i9, type WidthTypeWithLiterals as iA, type PluginContainerDataAlignmentWithLiterals as iB, type ButtonDataTypeWithLiterals as iC, type LinkTargetWithLiterals as iD, type TextAlignmentWithLiterals as iE, type LineStyleWithLiterals as iF, type WidthWithLiterals as iG, type DividerDataAlignmentWithLiterals as iH, type ViewModeWithLiterals as iI, type LayoutTypeWithLiterals as iJ, type OrientationWithLiterals as iK, type CropWithLiterals as iL, type ThumbnailsAlignmentWithLiterals as iM, type GIFTypeWithLiterals as iN, type SourceWithLiterals as iO, type StylesPositionWithLiterals as iP, type MapTypeWithLiterals as iQ, type ViewRoleWithLiterals as iR, type VoteRoleWithLiterals as iS, type PollLayoutTypeWithLiterals as iT, type PollLayoutDirectionWithLiterals as iU, type PollDesignBackgroundTypeWithLiterals as iV, type DecorationTypeWithLiterals as iW, type FontTypeWithLiterals as iX, type PositionWithLiterals as iY, type AspectRatioWithLiterals as iZ, type ResizingWithLiterals as i_, type SubmissionValidationErrors as ia, type SubmissionValidationError as ib, type SubmissionValidationErrorErrorMessageOneOf as ic, type BaseEventMetadata as id, type EventMetadata as ie, type AccountInfoMetadata as ig, type FormSubmissionSearchSpec as ih, type SubmissionsQueryResult as ii, type FormSubmissionQuerySpec as ij, utils as ik, type SubmissionStatusWithLiterals as il, type OptInLevelWithLiterals as im, type WebhookIdentityTypeWithLiterals as io, type StringTypeFormatEnumFormatWithLiterals as ip, type DayOfWeekWithLiterals as iq, type ValidationFormatWithLiterals as ir, type ProductTypeWithLiterals as is, type PriceTypeWithLiterals as it, type FieldTypeWithLiterals as iu, type FormatEnumFormatWithLiterals as iv, type StringComponentTypeWithLiterals as iw, type NodeTypeWithLiterals as ix, type BackgroundTypeWithLiterals as iy, type GradientTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type OperatorWithLiterals as j$, type CardStylesTypeWithLiterals as j0, type CardStylesAlignmentWithLiterals as j1, type LayoutWithLiterals as j2, type AppTypeWithLiterals as j3, type InitialExpandedItemsWithLiterals as j4, type DirectionWithLiterals as j5, type VerticalAlignmentWithLiterals as j6, type NullValueWithLiterals as j7, type ImageScalingScalingWithLiterals as j8, type LayoutDataImagePositionWithLiterals as j9, type ObjectArrayComponentTypeWithLiterals as jA, type SchedulingComponentTypeWithLiterals as jB, type FormatWithLiterals as jC, type MeetingTypeWithLiterals as jD, type StaffStrategySelectionWithLiterals as jE, type InputTypeWithLiterals as jF, type EmailInfoTagWithLiterals as jG, type PhoneInfoTagWithLiterals as jH, type TagWithLiterals as jI, type ConfirmationLevelWithLiterals as jJ, type SubscriptionChannelWithLiterals as jK, type ContactFieldWithLiterals as jL, type DisplayFieldTypeWithLiterals as jM, type OverrideEntityTypeWithLiterals as jN, type KindWithLiterals as jO, type FormFieldContactInfoEmailInfoTagWithLiterals as jP, type FormFieldContactInfoPhoneInfoTagWithLiterals as jQ, type AddressInfoTagWithLiterals as jR, type SubscriptionInfoOptInLevelWithLiterals as jS, type FormFieldContactInfoContactFieldWithLiterals as jT, type SpamFilterProtectionLevelWithLiterals as jU, type RequiredIndicatorWithLiterals as jV, type RequiredIndicatorPlacementWithLiterals as jW, type TargetWithLiterals as jX, type SubmitSuccessActionWithLiterals as jY, type ChangeablePropertyWithLiterals as jZ, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j_, type OriginWithLiterals as ja, type LayoutDataBackgroundTypeWithLiterals as jb, type BackdropTypeWithLiterals as jc, type VerticalAlignmentAlignmentWithLiterals as jd, type ResponsivenessBehaviourWithLiterals as je, type DesignTargetWithLiterals as jf, type ScalingWithLiterals as jg, type ImagePositionPositionWithLiterals as jh, type CardDataBackgroundTypeWithLiterals as ji, type ListStyleWithLiterals as jj, type IndentationWithLiterals as jk, type ImagePositionWithLiterals as jl, type AlignmentWithLiterals as jm, type ImageFitWithLiterals as jn, type NumberOfColumnsWithLiterals as jo, type FirstDayOfWeekWithLiterals as jp, type NumberComponentTypeWithLiterals as jq, type BooleanComponentTypeWithLiterals as jr, type ItemTypeWithLiterals as js, type PropertiesTypeEnumWithLiterals as jt, type ArrayComponentTypeWithLiterals as ju, type WixFileComponentTypeWithLiterals as jv, type UploadFileFormatWithLiterals as jw, type PaymentComponentTypeWithLiterals as jx, type ComponentTypeWithLiterals as jy, type TypeWithLiterals as jz, type CursorQuery as k, type ResultsDisplayWithLiterals as k0, type ContactAutofillWithLiterals as k1, type SubmissionAccessWithLiterals as k2, type IdentityTypeWithLiterals as k3, type ErrorTypeWithLiterals as k4, type SortOrderWithLiterals as k5, type ModeWithLiterals as k6, type StatusWithLiterals as k7, type SubmissionErrorTypeWithLiterals as k8, type CommonSearchWithEntityContext as k9, bulkMarkSubmissionsAsSeen as kA, getSubmissionDownloadUrl as kB, downloadSubmission as kC, getFormattedSubmission as kD, updateExtendedFields as kE, bulkUpdateFormSubmissionTags as kF, bulkUpdateFormSubmissionTagsByFilter as kG, validateFormSubmission as kH, type CommonQueryWithEntityContext as ka, onSubmissionCreated as kb, onSubmissionDeleted as kc, onSubmissionRemovedSubmissionFromTrash as kd, onSubmissionStatusUpdated as ke, onSubmissionContactMapped as kf, onSubmissionContactMappingSkipped as kg, onSubmissionUpdated as kh, upsertContactFromSubmission as ki, createSubmission as kj, getSubmission as kk, updateSubmission as kl, confirmSubmission as km, deleteSubmission as kn, bulkDeleteSubmission as ko, restoreSubmissionFromTrashBin as kp, removeSubmissionFromTrashBin as kq, bulkRemoveSubmissionFromTrashBin as kr, listDeletedSubmissions as ks, getDeletedSubmission as kt, querySubmission as ku, querySubmissionsByNamespace as kv, countSubmissionsByFilter as kw, countSubmissions as kx, countDeletedSubmissions as ky, getMediaUploadUrl 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 };