nothumanallowed 13.5.146 → 13.5.147
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/package.json +1 -1
- package/src/commands/ui.mjs +7 -1
- package/src/constants.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.147",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents, 80 tools, Studio (visual agentic workflows). Email, calendar, browser automation, screen capture, canvas, cron/heartbeat, Alexandria E2E messaging, GitHub, Notion, Slack, voice chat, free AI (Liara), 28 languages. Zero-dependency CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/commands/ui.mjs
CHANGED
|
@@ -5244,9 +5244,15 @@ module.exports = { validateEmail, sanitizeText, validatePassword, validateUserna
|
|
|
5244
5244
|
[/require\(['"]\.\/config\/redis['"]\)/g, "require('../services/cache')"],
|
|
5245
5245
|
[/require\(['"]\.\.\/services\/redis['"]\)/g, "require('../services/cache')"],
|
|
5246
5246
|
[/require\(['"]\.\/services\/redis['"]\)/g, "require('../services/cache')"],
|
|
5247
|
-
// email utils: LLM puts utils/email but file is
|
|
5247
|
+
// email utils: LLM puts utils/email or services/emailService but file is services/email
|
|
5248
5248
|
[/require\(['"]\.\.\/utils\/email['"]\)/g, "require('../services/email')"],
|
|
5249
5249
|
[/require\(['"]\.\/utils\/email['"]\)/g, "require('./services/email')"],
|
|
5250
|
+
[/require\(['"]\.\.\/services\/emailService['"]\)/g, "require('../services/email')"],
|
|
5251
|
+
[/require\(['"]\.\/services\/emailService['"]\)/g, "require('./services/email')"],
|
|
5252
|
+
[/require\(['"]\.\.\/services\/mailer['"]\)/g, "require('../services/email')"],
|
|
5253
|
+
[/require\(['"]\.\/services\/mailer['"]\)/g, "require('./services/email')"],
|
|
5254
|
+
[/require\(['"]\.\.\/utils\/mailer['"]\)/g, "require('../services/email')"],
|
|
5255
|
+
[/require\(['"]\.\/utils\/mailer['"]\)/g, "require('./services/email')"],
|
|
5250
5256
|
// config module: LLM generates require('../../config') or require('../config')
|
|
5251
5257
|
[/require\(['"]\.\.\/\.\.\/config['"]\)/g, "{env:process.env}"],
|
|
5252
5258
|
[/require\(['"]\.\.\/config['"]\)/g, "{env:process.env}"],
|
package/src/constants.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';
|
|
|
5
5
|
const __filename = fileURLToPath(import.meta.url);
|
|
6
6
|
const __dirname = path.dirname(__filename);
|
|
7
7
|
|
|
8
|
-
export const VERSION = '13.5.
|
|
8
|
+
export const VERSION = '13.5.147';
|
|
9
9
|
export const BASE_URL = 'https://nothumanallowed.com/cli';
|
|
10
10
|
export const API_BASE = 'https://nothumanallowed.com/api/v1';
|
|
11
11
|
|