@bobfrankston/mailx-sync 0.1.10 → 0.1.11
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 +10 -0
- package/package.json +3 -13
package/gmail.js
CHANGED
|
@@ -196,7 +196,17 @@ export class GmailApiProvider {
|
|
|
196
196
|
name,
|
|
197
197
|
delimiter: "/",
|
|
198
198
|
specialUse,
|
|
199
|
+
<<<<<<< HEAD
|
|
199
200
|
flags: label.type === "system" ? ["\\Noselect"] : [],
|
|
201
|
+
=======
|
|
202
|
+
// No \\Noselect on Gmail labels: the unwanted system labels
|
|
203
|
+
// (UNREAD/STARRED/IMPORTANT/CATEGORY_*/CHAT) are filtered
|
|
204
|
+
// above, leaving INBOX/SENT/DRAFT/TRASH/SPAM and user labels —
|
|
205
|
+
// ALL of which are selectable. The previous \\Noselect tag
|
|
206
|
+
// on system labels caused mailx-imap to skip them entirely,
|
|
207
|
+
// so INBOX never appeared in the folder tree.
|
|
208
|
+
flags: [],
|
|
209
|
+
>>>>>>> 4b735cd (Initial commit)
|
|
200
210
|
});
|
|
201
211
|
}
|
|
202
212
|
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.11",
|
|
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": "file:../iflow-direct",
|
|
23
|
+
"@bobfrankston/tcp-transport": "file:../tcp-transport"
|
|
24
24
|
},
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
@@ -37,15 +37,5 @@
|
|
|
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.27",
|
|
48
|
-
"@bobfrankston/tcp-transport": "^0.1.5"
|
|
49
|
-
}
|
|
50
40
|
}
|
|
51
41
|
}
|