@bobfrankston/mailx-types 0.1.17 → 0.1.18

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 (2) hide show
  1. package/index.d.ts +1 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -115,6 +115,7 @@ export interface MessageEnvelope {
115
115
  flags: string[]; /** IMAP flags: ["\\Seen", "\\Flagged"] */
116
116
  size: number;
117
117
  hasAttachments: boolean;
118
+ isReplied?: boolean; /** Local DB knows the user (or anyone in this account) replied — derived from In-Reply-To linkage, independent of \Answered */
118
119
  preview: string; /** First ~200 chars of body text */
119
120
  bodyPath?: string; /** Local body location: "idb:..." or "gmail:<id>" */
120
121
  providerId?: string; /** Native server id (Gmail hex id, Outlook Graph id) — bypasses UID→id pagination on body fetch */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx-types",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",