@bobfrankston/mailx-sync 0.1.11 → 0.1.14
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/gmail.js +0 -4
- package/package.json +13 -3
package/gmail.js
CHANGED
|
@@ -196,9 +196,6 @@ export class GmailApiProvider {
|
|
|
196
196
|
name,
|
|
197
197
|
delimiter: "/",
|
|
198
198
|
specialUse,
|
|
199
|
-
<<<<<<< HEAD
|
|
200
|
-
flags: label.type === "system" ? ["\\Noselect"] : [],
|
|
201
|
-
=======
|
|
202
199
|
// No \\Noselect on Gmail labels: the unwanted system labels
|
|
203
200
|
// (UNREAD/STARRED/IMPORTANT/CATEGORY_*/CHAT) are filtered
|
|
204
201
|
// above, leaving INBOX/SENT/DRAFT/TRASH/SPAM and user labels —
|
|
@@ -206,7 +203,6 @@ export class GmailApiProvider {
|
|
|
206
203
|
// on system labels caused mailx-imap to skip them entirely,
|
|
207
204
|
// so INBOX never appeared in the folder tree.
|
|
208
205
|
flags: [],
|
|
209
|
-
>>>>>>> 4b735cd (Initial commit)
|
|
210
206
|
});
|
|
211
207
|
}
|
|
212
208
|
return folders;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/mailx-sync",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Platform-agnostic mail provider implementations + sync orchestration. Single source of truth for Gmail/IMAP/Outlook protocol code, consumed by both desktop (Node) and Android (WebView) — eliminates the parallel mailx-imap/mailx-store-web Gmail providers that drifted in practice.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.ts",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"author": "Bob Frankston",
|
|
20
20
|
"license": "ISC",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@bobfrankston/iflow-direct": "
|
|
23
|
-
"@bobfrankston/tcp-transport": "
|
|
22
|
+
"@bobfrankston/iflow-direct": "^0.1.28",
|
|
23
|
+
"@bobfrankston/tcp-transport": "^0.1.5"
|
|
24
24
|
},
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
@@ -37,5 +37,15 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^25.6.0"
|
|
40
|
+
},
|
|
41
|
+
".dependencies": {
|
|
42
|
+
"@bobfrankston/iflow-direct": "file:../iflow-direct",
|
|
43
|
+
"@bobfrankston/tcp-transport": "file:../tcp-transport"
|
|
44
|
+
},
|
|
45
|
+
".transformedSnapshot": {
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@bobfrankston/iflow-direct": "^0.1.28",
|
|
48
|
+
"@bobfrankston/tcp-transport": "^0.1.5"
|
|
49
|
+
}
|
|
40
50
|
}
|
|
41
51
|
}
|