@bobfrankston/iflow 1.0.33 → 1.0.37

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/index.js CHANGED
@@ -1,9 +1,16 @@
1
1
  // Main entry point for @bobfrankston/iflow package
2
2
  // Re-exports all public API from the library
3
+ // ── Existing API (imapflow-based, unchanged) ──
3
4
  export { ImapClient } from './imaplib/ImapClient.js';
4
5
  export { FetchedMessage as FetchedMessageClass } from './imaplib/types.js';
5
6
  // Auto-configuration support (handles OAuth/password automatically)
6
7
  export { createAutoImapConfig } from './imaplib/gmail.js';
7
8
  // Gmail OAuth support (for advanced usage)
8
9
  export { isGmailUser, isGmailServer, createImapConfig } from './imaplib/gmail.js';
10
+ // ── New native IMAP client (transport-agnostic, for Android + desktop) ──
11
+ export { NativeImapClient } from './imaplib/imap-native.js';
12
+ export { NodeTransport } from './imaplib/node-transport.js';
13
+ export { CompatImapClient } from './imaplib/imap-compat.js';
14
+ // BridgeTransport is imported directly by Android builds, not re-exported here
15
+ // (it references mailxapi.tcp which only exists in WebView context)
9
16
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/iflow",
3
- "version": "1.0.33",
3
+ "version": "1.0.37",
4
4
  "description": "IMAP client wrapper library",
5
5
  "main": "index.js",
6
6
  "types": "index.ts",
@@ -23,7 +23,7 @@
23
23
  "author": "",
24
24
  "license": "ISC",
25
25
  "dependencies": {
26
- "@bobfrankston/oauthsupport": "^1.0.17",
26
+ "@bobfrankston/oauthsupport": "^1.0.19",
27
27
  "imapflow": "^1.0.187"
28
28
  },
29
29
  "exports": {