@bobfrankston/mailx-imap 0.1.3 → 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/index.d.ts +357 -20
- package/index.js +3118 -460
- package/package.json +26 -10
- package/providers/gmail-api.d.ts +8 -0
- package/providers/gmail-api.js +8 -0
- package/providers/types.d.ts +9 -0
- package/providers/types.js +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/mailx-imap",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -9,12 +9,14 @@
|
|
|
9
9
|
},
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@bobfrankston/mailx-types": "^0.1.
|
|
13
|
-
"@bobfrankston/mailx-settings": "^0.1.
|
|
14
|
-
"@bobfrankston/mailx-store": "^0.1.
|
|
15
|
-
"@bobfrankston/iflow": "^1.
|
|
16
|
-
"@bobfrankston/
|
|
17
|
-
"
|
|
12
|
+
"@bobfrankston/mailx-types": "^0.1.5",
|
|
13
|
+
"@bobfrankston/mailx-settings": "^0.1.6",
|
|
14
|
+
"@bobfrankston/mailx-store": "^0.1.5",
|
|
15
|
+
"@bobfrankston/iflow-direct": "^0.1.27",
|
|
16
|
+
"@bobfrankston/tcp-transport": "^0.1.5",
|
|
17
|
+
"@bobfrankston/smtp-direct": "^0.1.5",
|
|
18
|
+
"@bobfrankston/mailx-sync": "^0.1.10",
|
|
19
|
+
"@bobfrankston/oauthsupport": "^1.0.25"
|
|
18
20
|
},
|
|
19
21
|
"repository": {
|
|
20
22
|
"type": "git",
|
|
@@ -24,8 +26,22 @@
|
|
|
24
26
|
"@bobfrankston/mailx-types": "file:../mailx-types",
|
|
25
27
|
"@bobfrankston/mailx-settings": "file:../mailx-settings",
|
|
26
28
|
"@bobfrankston/mailx-store": "file:../mailx-store",
|
|
27
|
-
"@bobfrankston/iflow": "file
|
|
28
|
-
"@bobfrankston/
|
|
29
|
-
"
|
|
29
|
+
"@bobfrankston/iflow-direct": "file:../../../../MailApps/iflow-direct",
|
|
30
|
+
"@bobfrankston/tcp-transport": "file:../../../../MailApps/tcp-transport",
|
|
31
|
+
"@bobfrankston/smtp-direct": "file:../../../../MailApps/smtp-direct",
|
|
32
|
+
"@bobfrankston/mailx-sync": "file:../../../../MailApps/mailx-sync",
|
|
33
|
+
"@bobfrankston/oauthsupport": "file:../../../../../projects/oauth/oauthsupport"
|
|
34
|
+
},
|
|
35
|
+
".transformedSnapshot": {
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@bobfrankston/mailx-types": "^0.1.5",
|
|
38
|
+
"@bobfrankston/mailx-settings": "^0.1.6",
|
|
39
|
+
"@bobfrankston/mailx-store": "^0.1.5",
|
|
40
|
+
"@bobfrankston/iflow-direct": "^0.1.27",
|
|
41
|
+
"@bobfrankston/tcp-transport": "^0.1.5",
|
|
42
|
+
"@bobfrankston/smtp-direct": "^0.1.5",
|
|
43
|
+
"@bobfrankston/mailx-sync": "^0.1.10",
|
|
44
|
+
"@bobfrankston/oauthsupport": "^1.0.25"
|
|
45
|
+
}
|
|
30
46
|
}
|
|
31
47
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Back-compat re-export. The canonical Gmail provider lives in
|
|
3
|
+
* @bobfrankston/mailx-sync. mailx-imap re-exports it under its old name so
|
|
4
|
+
* call sites here keep compiling. Both desktop (this package) and Android
|
|
5
|
+
* (mailx-store-web) consume the same single implementation now.
|
|
6
|
+
*/
|
|
7
|
+
export { GmailApiProvider } from "@bobfrankston/mailx-sync";
|
|
8
|
+
//# sourceMappingURL=gmail-api.d.ts.map
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Back-compat re-export. The canonical Gmail provider lives in
|
|
3
|
+
* @bobfrankston/mailx-sync. mailx-imap re-exports it under its old name so
|
|
4
|
+
* call sites here keep compiling. Both desktop (this package) and Android
|
|
5
|
+
* (mailx-store-web) consume the same single implementation now.
|
|
6
|
+
*/
|
|
7
|
+
export { GmailApiProvider } from "@bobfrankston/mailx-sync";
|
|
8
|
+
//# sourceMappingURL=gmail-api.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Back-compat re-export. The canonical mail provider types live in
|
|
3
|
+
* @bobfrankston/mailx-sync. New code should import from there directly.
|
|
4
|
+
*
|
|
5
|
+
* This shim keeps existing `import { ... } from "./types.js"` paths inside
|
|
6
|
+
* mailx-imap working without churn.
|
|
7
|
+
*/
|
|
8
|
+
export type { MailProvider, ProviderFolder, ProviderMessage, FetchOptions } from "@bobfrankston/mailx-sync";
|
|
9
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Back-compat re-export. The canonical mail provider types live in
|
|
3
|
+
* @bobfrankston/mailx-sync. New code should import from there directly.
|
|
4
|
+
*
|
|
5
|
+
* This shim keeps existing `import { ... } from "./types.js"` paths inside
|
|
6
|
+
* mailx-imap working without churn.
|
|
7
|
+
*/
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=types.js.map
|