jmap-kit 1.0.2 → 1.0.3

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.
@@ -27,7 +27,7 @@ export type EmailAddress = {
27
27
  /**
28
28
  * The addr-spec of the mailbox {@link https://www.rfc-editor.org/rfc/rfc5322.html RFC 5322}.
29
29
  */
30
- value: string;
30
+ email: string;
31
31
  };
32
32
  /**
33
33
  * Header fields parsed as an address-list value, as specified in
@@ -465,7 +465,7 @@ export type EmailImport = {
465
465
  /**
466
466
  * (default: {}) The keywords to apply to the Email.
467
467
  */
468
- keywords?: Record<string, boolean>;
468
+ keywords?: Record<string, true>;
469
469
  /**
470
470
  * (default: time of most recent Received header, or time of import on server
471
471
  * if none) The receivedAt date to set on the Email.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jmap-kit",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "packageManager": "yarn@4.13.0",
5
5
  "author": "Lachlan Hunt <lachlan.hunt@lachy.id.au> (https://lachy.id.au)",
6
6
  "description": "A comprehensive, type-safe JMAP SDK for building JMAP-based client applications",