@bobfrankston/mailx-store 0.1.37 → 0.1.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/store.d.ts +5 -0
- package/store.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/mailx-store",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.38",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@bobfrankston/mailx-types": "^0.1.18",
|
|
13
|
-
"@bobfrankston/mailx-settings": "^0.1.
|
|
13
|
+
"@bobfrankston/mailx-settings": "^0.1.24",
|
|
14
14
|
"@bobfrankston/mailx-bus": "^0.1.2",
|
|
15
15
|
"mailparser": "^3.7.2"
|
|
16
16
|
},
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
".transformedSnapshot": {
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@bobfrankston/mailx-types": "^0.1.18",
|
|
33
|
-
"@bobfrankston/mailx-settings": "^0.1.
|
|
33
|
+
"@bobfrankston/mailx-settings": "^0.1.24",
|
|
34
34
|
"@bobfrankston/mailx-bus": "^0.1.2",
|
|
35
35
|
"mailparser": "^3.7.2"
|
|
36
36
|
}
|
package/store.d.ts
CHANGED
|
@@ -58,6 +58,11 @@ export interface StoreMessage extends MessageEnvelope {
|
|
|
58
58
|
listUnsubscribeOneClick: boolean;
|
|
59
59
|
emlPath: string;
|
|
60
60
|
isFlagged: boolean;
|
|
61
|
+
/** X-Mailx-Draft-ID header value (empty for non-draft messages). When
|
|
62
|
+
* the user re-opens a draft for edit, the compose layer threads this
|
|
63
|
+
* back into saveDraft so the server-side dedup keeps replacing the
|
|
64
|
+
* same draft instead of stacking up a new one every save. */
|
|
65
|
+
mailxDraftId: string;
|
|
61
66
|
}
|
|
62
67
|
export declare class Store {
|
|
63
68
|
/** SQLite metadata index. Exposed as a public field — sync clients
|
package/store.js
CHANGED
|
@@ -400,6 +400,7 @@ export class Store {
|
|
|
400
400
|
return String(v);
|
|
401
401
|
};
|
|
402
402
|
const returnPath = hdr("return-path").replace(/[<>]/g, "");
|
|
403
|
+
const mailxDraftId = hdr("x-mailx-draft-id").trim();
|
|
403
404
|
const { listUnsubscribeMail, listUnsubscribeHttp, listUnsubscribeOneClick } = parseListUnsubscribe(parsed.headers);
|
|
404
405
|
const listUnsubscribe = listUnsubscribeHttp || listUnsubscribeMail;
|
|
405
406
|
const result = {
|
|
@@ -416,6 +417,7 @@ export class Store {
|
|
|
416
417
|
// basePath every time.
|
|
417
418
|
emlPath: this.bodyStore.absolutePath(storedPath),
|
|
418
419
|
isFlagged,
|
|
420
|
+
mailxDraftId,
|
|
419
421
|
};
|
|
420
422
|
// Memoize for instant re-view of the same message. cacheKey is
|
|
421
423
|
// path+mtime so a re-fetch (mtime changes) invalidates naturally.
|