agenticmail 0.5.55 → 0.5.56
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/dist/cli.js +3 -3
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -5957,7 +5957,7 @@ async function cmdOpenClaw() {
|
|
|
5957
5957
|
if (gvEmail.trim() && gvEmail.toLowerCase().includes("@gmail.com")) {
|
|
5958
5958
|
log2("");
|
|
5959
5959
|
log2(` ${c2.dim("Get an app password at:")} ${c2.cyan("https://myaccount.google.com/apppasswords")}`);
|
|
5960
|
-
const gvPass = await
|
|
5960
|
+
const gvPass = await askSecret(` ${c2.green(c2.bold("App password for"))} ${c2.bold(gvEmail.trim())}: `);
|
|
5961
5961
|
if (gvPass.trim()) {
|
|
5962
5962
|
forwardingEmail = gvEmail.trim();
|
|
5963
5963
|
forwardingPassword = gvPass.trim();
|
|
@@ -5990,7 +5990,7 @@ async function cmdOpenClaw() {
|
|
|
5990
5990
|
} else {
|
|
5991
5991
|
log2("");
|
|
5992
5992
|
log2(` ${c2.dim("Get an app password at:")} ${c2.cyan("https://myaccount.google.com/apppasswords")}`);
|
|
5993
|
-
const gvPass = await
|
|
5993
|
+
const gvPass = await askSecret(` ${c2.green(c2.bold("App password for"))} ${c2.bold(gvEmail.trim())}: `);
|
|
5994
5994
|
if (gvPass.trim()) {
|
|
5995
5995
|
forwardingEmail = gvEmail.trim();
|
|
5996
5996
|
forwardingPassword = gvPass.trim();
|
|
@@ -6016,7 +6016,7 @@ async function cmdOpenClaw() {
|
|
|
6016
6016
|
if (gvEmail.trim() && gvEmail.toLowerCase().includes("@gmail.com")) {
|
|
6017
6017
|
log2("");
|
|
6018
6018
|
log2(` ${c2.dim("Get an app password at:")} ${c2.cyan("https://myaccount.google.com/apppasswords")}`);
|
|
6019
|
-
const gvPass = await
|
|
6019
|
+
const gvPass = await askSecret(` ${c2.green(c2.bold("App password for"))} ${c2.bold(gvEmail.trim())}: `);
|
|
6020
6020
|
if (gvPass.trim()) {
|
|
6021
6021
|
forwardingEmail = gvEmail.trim();
|
|
6022
6022
|
forwardingPassword = gvPass.trim();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agenticmail",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.56",
|
|
4
4
|
"description": "Email and SMS infrastructure for AI agents — the first platform to give agents real email addresses and phone numbers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"prepublishOnly": "npm run build"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@agenticmail/api": "^0.5.
|
|
31
|
+
"@agenticmail/api": "^0.5.56",
|
|
32
32
|
"@agenticmail/core": "^0.5.0",
|
|
33
33
|
"json5": "^2.2.3"
|
|
34
34
|
},
|