@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>;
@@ -8247,4 +9021,4 @@ interface ValidateFormSubmissionOptions {
8247
9021
  fieldsToValidate?: string[];
8248
9022
  }
8249
9023
 
8250
- 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, NumberComponentType 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, ImagePosition as aW, Alignment as aX, ImageFit as aY, NumberOfColumns as aZ, FirstDayOfWeek 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 EntityDeletedEvent as b$, BooleanComponentType as b0, ItemType as b1, PropertiesTypeEnum as b2, ArrayComponentType as b3, WixFileComponentType as b4, UploadFileFormat as b5, PaymentComponentType as b6, ComponentType as b7, Type as b8, ObjectArrayComponentType as b9, Operator as bA, ResultsDisplay as bB, ContactAutofill as bC, SubmissionAccess as bD, IdentityType as bE, ErrorType as bF, SortOrder as bG, Mode as bH, Status as bI, SubmissionErrorType as bJ, type Submitter as bK, type SubmitterSubmitterOneOf as bL, type ExtendedFields as bM, type OrderDetails as bN, type PublicTags as bO, type TagList as bP, type AppointmentDetails as bQ, type FormSubmissionStatusUpdatedEvent as bR, type RemovedSubmissionFromTrash as bS, type SubmissionContactMapped as bT, type MarketingSubscriptionDetails as bU, type SubmissionContactMappingSkipped as bV, type DomainEvent as bW, type DomainEventBodyOneOf as bX, type EntityCreatedEvent as bY, type RestoreInfo as bZ, type EntityUpdatedEvent as b_, SchedulingComponentType as ba, Format as bb, MeetingType as bc, StaffStrategySelection as bd, InputType as be, EmailInfoTag as bf, PhoneInfoTag as bg, Tag as bh, ConfirmationLevel as bi, SubscriptionChannel as bj, ContactField as bk, DisplayFieldType as bl, OverrideEntityType as bm, Kind as bn, FormFieldContactInfoEmailInfoTag as bo, FormFieldContactInfoPhoneInfoTag as bp, AddressInfoTag as bq, SubscriptionInfoOptInLevel as br, FormFieldContactInfoContactField as bs, SpamFilterProtectionLevel as bt, RequiredIndicator as bu, RequiredIndicatorPlacement as bv, Target as bw, SubmitSuccessAction as bx, ChangeableProperty as by, OverrideEntityTypeEnumOverrideEntityType as bz, type CreateSubmissionValidationErrors as c, type NodeStyle as c$, type ActionEvent as c0, type MessageEnvelope as c1, type IdentificationData as c2, type IdentificationDataIdOneOf as c3, type AccountInfo as c4, type CreateCheckoutFromSubmissionRequest as c5, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c6, type Form as c7, type FormField as c8, type FormFieldStringType as c9, type DynamicPriceOptions as cA, type Product as cB, type ProductPriceOptionsOneOf as cC, type MultilineAddressValidation as cD, type FieldOverrides as cE, type FieldsOverrides as cF, type ObjectArrayType as cG, type NestedFormFieldOverrides as cH, type Validation as cI, type ValidationValidationOneOf as cJ, type DataExtensionsDetails as cK, type NestedFormOverrides as cL, type Field as cM, type FieldFieldTypeOptionsOneOf as cN, type InputField as cO, type InputFieldInputTypeOptionsOneOf as cP, type StringCorrectAnswersList as cQ, type StringType as cR, type StringTypeFormatOptionsOneOf as cS, type DateTimeConstraints as cT, type PhoneConstraints as cU, type ValidationMessages as cV, type StringQuizFieldSettings as cW, type TextInput as cX, type RichContent as cY, type Node as cZ, type NodeDataOneOf as c_, type FormFieldStringTypeFormatOptionsOneOf as ca, type StringErrorMessages as cb, type DateTimeAdvancedConstraints as cc, type Availability as cd, type DateRange as ce, type StringTypeDateTimeConstraints as cf, type StringTypePhoneConstraints as cg, type StringTypeValidationMessages as ch, type FormFieldNumberType as ci, type NumberErrorMessages as cj, type IntegerType as ck, type FormFieldBooleanType as cl, type BooleanErrorMessages as cm, type FormFieldArrayType as cn, type FormFieldObjectType as co, type ObjectTypePropertiesType as cp, type ObjectTypePropertiesTypePropertiesTypeOneOf as cq, type ObjectErrorMessages as cr, type ArrayTypeArrayItems as cs, type ArrayTypeArrayItemsItemsOneOf as ct, type ArrayErrorMessages as cu, type PredefinedValidation as cv, type PredefinedValidationFormatOptionsOneOf as cw, type PaymentType as cx, type QuantityLimit as cy, type FixedPriceOptions as cz, type UpdateSubmission as d, type AnchorData as d$, type ButtonData as d0, type Gradient as d1, type Stop as d2, type Border as d3, type Colors as d4, type Background as d5, type PluginContainerData as d6, type PluginContainerDataWidth as d7, type PluginContainerDataWidthDataOneOf as d8, type Spoiler as d9, type HTMLData as dA, type HTMLDataDataOneOf as dB, type ImageData as dC, type StylesBorder as dD, type ImageDataStyles as dE, type LinkPreviewData as dF, type LinkPreviewDataStyles as dG, type MapData as dH, type MapSettings as dI, type ParagraphData as dJ, type PollData as dK, type Permissions as dL, type PollOption as dM, type Settings as dN, type PollLayout as dO, type OptionLayout as dP, type BackgroundGradient as dQ, type PollDesignBackground as dR, type PollDesignBackgroundBackgroundOneOf as dS, type PollDesign as dT, type OptionDesign as dU, type Poll as dV, type PollDataLayout as dW, type Design as dX, type TextData as dY, type Decoration as dZ, type DecorationDataOneOf as d_, type Height as da, type Styles as db, type Link as dc, type LinkDataOneOf as dd, type Rel as de, type CodeBlockData as df, type TextStyle as dg, type DividerData as dh, type FileData as di, type FileSource as dj, type FileSourceDataOneOf as dk, type PDFSettings as dl, type GalleryData as dm, type Media as dn, type Image as dp, type Video as dq, type Item as dr, type ItemDataOneOf as ds, type GalleryOptions as dt, type GalleryOptionsLayout as du, type ItemStyle as dv, type Thumbnails as dw, type GIFData as dx, type GIF as dy, type HeadingData as dz, type UpdateSubmissionValidationErrors as e, type NumberCorrectAnswersList as e$, type ColorData as e0, type LinkData as e1, type MentionData as e2, type FontSizeData as e3, type SpoilerData as e4, type FontFamilyData as e5, type AppEmbedData as e6, type AppEmbedDataAppDataOneOf as e7, type BookingData as e8, type EventData as e9, type Backdrop as eA, type LayoutCellData as eB, type ShapeData as eC, type ShapeDataStyles as eD, type CardData as eE, type CardDataBackground as eF, type BackgroundImage as eG, type TocData as eH, type Metadata as eI, type DocumentStyle as eJ, type TextNodeStyle as eK, type MediaItem as eL, type MediaItemMediaOneOf as eM, type MediaSettings as eN, type RadioGroup as eO, type RadioGroupOption as eP, type CustomOption as eQ, type Dropdown as eR, type DropdownOption as eS, type DateTimeInput as eT, type PhoneInput as eU, type DateInput as eV, type TimeInput as eW, type DatePicker as eX, type ServicesDropdown as eY, type ServiceOption as eZ, type Password as e_, type ButtonStyles as ea, type ImageStyles as eb, type RibbonStyles as ec, type CardStyles as ed, type PricingData as ee, type VideoData as ef, type PlaybackOptions as eg, type EmbedData as eh, type Oembed as ei, type CollapsibleListData as ej, type TableData as ek, type Dimensions as el, type TableCellData as em, type CellStyle as en, type BorderColors as eo, type BorderWidths as ep, type ListValue as eq, type AudioData as er, type OrderedListData as es, type BulletedListData as et, type BlockquoteData as eu, type CaptionData as ev, type LayoutData as ew, type LayoutDataBackgroundImage as ex, type Banner as ey, type LayoutDataBackground as ez, type ConfirmSubmissionResponse as f, type _Object as f$, type NumberType as f0, type NumberQuizFieldSettings as f1, type NumberInput as f2, type RatingInput as f3, type BooleanType as f4, type Checkbox as f5, type CorrectAnswersList as f6, type ArrayType as f7, type ObjectType as f8, type PropertiesType as f9, type ItemLayout as fA, type ItemLayoutItemOneOf as fB, type Group as fC, type Margin as fD, type Section as fE, type Appointment as fF, type AppointmentFormatInfoOneOf as fG, type Location as fH, type LocationLocationInfoOneOf as fI, type InPersonOptions as fJ, type VideoConferenceOptions as fK, type PhoneOptions as fL, type FormFieldContactInfo as fM, type FormFieldContactInfoAdditionalInfoOneOf as fN, type EmailInfo as fO, type PhoneInfo as fP, type AddressInfo as fQ, type CustomFieldInfo as fR, type SubscriptionInfo as fS, type _String as fT, type _StringComponentTypeOptionsOneOf as fU, type _Number as fV, type _NumberComponentTypeOptionsOneOf as fW, type _Boolean as fX, type _BooleanComponentTypeOptionsOneOf as fY, type _Array as fZ, type _ArrayComponentTypeOptionsOneOf as f_, type PropertiesTypePropertiesTypeOptionsOneOf as fa, type ArrayItems as fb, type ArrayItemsItemTypeOptionsOneOf as fc, type QuizFieldSettings as fd, type CheckboxGroup as fe, type Option as ff, type ComponentsTags as fg, type TagsOption as fh, type ServicesCheckboxGroup as fi, type FileType as fj, type FileUpload as fk, type Signature as fl, type ProductCheckboxGroup as fm, type ProductCheckboxGroupOption as fn, type DonationInput as fo, type DonationInputOption as fp, type PaymentInput as fq, type FixedPayment as fr, type MultilineAddress as fs, type AddressLine2 as ft, type DefaultCountryConfig as fu, type DefaultCountryConfigOptionsOneOf as fv, type FieldsSettings as fw, type Repeater as fx, type FormLayout as fy, type BreakPoint as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionResponse as g$, type WixFile as g0, type WixFileComponentTypeOptionsOneOf as g1, type Payment as g2, type PaymentComponentTypeOptionsOneOf as g3, type Scheduling as g4, type SchedulingComponentTypeOptionsOneOf as g5, type Address as g6, type AddressComponentTypeOptionsOneOf as g7, type ObjectArray as g8, type ObjectArrayComponentTypeOptionsOneOf as g9, type Rule as gA, type RequiredOptions as gB, type HiddenOptions as gC, type AllowedValuesOptions as gD, type FieldOverride as gE, type FieldOverridePropertyTypeOptionsOneOf as gF, type ConditionNode as gG, type ConditionNodeNodeOneOf as gH, type AndCondition as gI, type OrCondition as gJ, type Condition as gK, type RuleFormOverride as gL, type RuleFormOverrideEntityTypeOptionsOneOf as gM, type Tags as gN, type TagsTagList as gO, type QuizSettings as gP, type QuizSettingsPassingCriteriaOneOf as gQ, type QuizSettingsResultsDisplayOptionsOneOf as gR, type PassFailMessages as gS, type CreateCheckoutFromSubmissionResponse as gT, type Checkout as gU, type IsFormSubmittableRequest as gV, type IsFormSubmittableResponse as gW, type Empty as gX, type UpsertContactFromSubmissionRequest as gY, type SubmitContactResponse as gZ, type CreateSubmissionRequest as g_, type DisplayField as ga, type DisplayFieldDisplayFieldTypeOptionsOneOf as gb, type RichContentOptions as gc, type PageNavigationOptions as gd, type Step as ge, type FormRule as gf, type FormOverride as gg, type FormProperties as gh, type PostSubmissionTriggers as gi, type UpsertContact as gj, type V4FormFieldContactInfo as gk, type V4FormFieldContactInfoAdditionalInfoOneOf as gl, type FormFieldContactInfoEmailInfo as gm, type FormFieldContactInfoPhoneInfo as gn, type FormFieldContactInfoAddressInfo as go, type FormFieldContactInfoCustomFieldInfo as gp, type FormFieldContactInfoSubscriptionInfo as gq, type NestedForm as gr, type LimitationRule as gs, type RequiredIndicatorProperties as gt, type SubmitSettings as gu, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gv, type ThankYouMessageOptions as gw, type RedirectOptions as gx, type PopupOptions as gy, type FieldGroup as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type UpdateExtendedFieldsRequest as h$, type SubmissionValidationErrorsDetails as h0, type ValidationError as h1, type CreateSubmissionBySubmitterRequest as h2, type CreateSubmissionBySubmitterResponse as h3, type BulkCreateSubmissionBySubmitterRequest as h4, type BulkCreateSubmissionBySubmitterData as h5, type BulkCreateSubmissionBySubmitterResponse as h6, type BulkSubmissionResult as h7, type ItemMetadata as h8, type ApplicationError as h9, type CursorSearch as hA, type CursorSearchPagingMethodOneOf as hB, type SearchDetails as hC, type SearchSubmissionsByNamespaceForExportRequest as hD, type SearchSubmissionsByNamespaceForExportResponse as hE, type QuerySubmissionsByNamespaceRequest as hF, type QuerySubmissionsByNamespaceResponse as hG, type QuerySubmissionsByNamespaceForExportRequest as hH, type QuerySubmissionsByNamespaceForExportResponse as hI, type CountSubmissionsByFilterRequest as hJ, type FormSubmissionsCount as hK, type CountSubmissionsRequest as hL, type CountDeletedSubmissionsRequest as hM, type FormDeletedSubmissionsCount as hN, type GetMediaUploadURLRequest as hO, type BulkMarkSubmissionsAsSeenRequest as hP, type GetSubmissionDownloadUrlRequest as hQ, type SubmissionDocument as hR, type SubmissionDocumentDocumentOneOf as hS, type DocumentReady as hT, type DownloadSubmissionRequest as hU, type HeadersEntry as hV, type GetFormattedSubmissionRequest as hW, type FormattedSubmission as hX, type ListFormattedSubmissionsRequest as hY, type ListFormattedSubmissionsResponse as hZ, type FormattedFormSubmission as h_, type BulkActionMetadata as ha, type GetSubmissionRequest as hb, type GetSubmissionResponse as hc, type GetSubmissionByCheckoutIdRequest as hd, type GetSubmissionByCheckoutIdResponse as he, type UpdateSubmissionRequest as hf, type UpdateSubmissionResponse as hg, type ConfirmSubmissionRequest as hh, type DeleteSubmissionRequest as hi, type DeleteSubmissionResponse as hj, type BulkDeleteSubmissionRequest as hk, type BulkDeleteSubmissionResult as hl, type RestoreSubmissionFromTrashBinRequest as hm, type RemoveSubmissionFromTrashBinRequest as hn, type RemoveSubmissionFromTrashBinResponse as ho, type BulkRemoveSubmissionFromTrashBinRequest as hp, type BulkRemoveSubmissionFromTrashBinResult as hq, type ListDeletedSubmissionsRequest as hr, type CursorPaging as hs, type CursorPagingMetadata as ht, type Cursors as hu, type GetDeletedSubmissionRequest as hv, type QuerySubmissionRequest as hw, type CursorQueryPagingMethodOneOf as hx, type Sorting as hy, type SearchSubmissionsByNamespaceRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PlacementWithLiterals as i$, type BulkUpdateFormSubmissionTagsRequest as i0, type BulkUpdateFormSubmissionTagsResponse as i1, type BulkUpdateFormSubmissionTagsResult as i2, type BulkUpdateFormSubmissionTagsByFilterRequest as i3, type BulkUpdateFormSubmissionTagsByFilterResponse as i4, type ValidateFormSubmissionRequest as i5, type FieldViolation as i6, type FieldViolationErrorDataOneOf as i7, type SubmissionValidationErrors as i8, type SubmissionValidationError 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 SubmissionValidationErrorErrorMessageOneOf as ia, type BaseEventMetadata as ib, type EventMetadata as ic, type AccountInfoMetadata as id, type FormSubmissionSearchSpec as ie, type SubmissionsQueryResult as ig, type FormSubmissionQuerySpec as ih, type BulkUpdateFormSubmissionTagsOptions as ii, type BulkUpdateFormSubmissionTagsByFilterOptions 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, validateFormSubmission as kF, 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 };
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 };