@bobfrankston/mailx-sync 0.1.10 → 0.1.13

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/gmail.js +7 -1
  2. package/package.json +3 -3
package/gmail.js CHANGED
@@ -196,7 +196,13 @@ export class GmailApiProvider {
196
196
  name,
197
197
  delimiter: "/",
198
198
  specialUse,
199
- flags: label.type === "system" ? ["\\Noselect"] : [],
199
+ // No \\Noselect on Gmail labels: the unwanted system labels
200
+ // (UNREAD/STARRED/IMPORTANT/CATEGORY_*/CHAT) are filtered
201
+ // above, leaving INBOX/SENT/DRAFT/TRASH/SPAM and user labels —
202
+ // ALL of which are selectable. The previous \\Noselect tag
203
+ // on system labels caused mailx-imap to skip them entirely,
204
+ // so INBOX never appeared in the folder tree.
205
+ flags: [],
200
206
  });
201
207
  }
202
208
  return folders;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx-sync",
3
- "version": "0.1.10",
3
+ "version": "0.1.13",
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,7 +19,7 @@
19
19
  "author": "Bob Frankston",
20
20
  "license": "ISC",
21
21
  "dependencies": {
22
- "@bobfrankston/iflow-direct": "^0.1.27",
22
+ "@bobfrankston/iflow-direct": "^0.1.28",
23
23
  "@bobfrankston/tcp-transport": "^0.1.5"
24
24
  },
25
25
  "exports": {
@@ -44,7 +44,7 @@
44
44
  },
45
45
  ".transformedSnapshot": {
46
46
  "dependencies": {
47
- "@bobfrankston/iflow-direct": "^0.1.27",
47
+ "@bobfrankston/iflow-direct": "^0.1.28",
48
48
  "@bobfrankston/tcp-transport": "^0.1.5"
49
49
  }
50
50
  }