nothumanallowed 13.5.144 → 13.5.145

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nothumanallowed",
3
- "version": "13.5.144",
3
+ "version": "13.5.145",
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": {
@@ -5273,6 +5273,9 @@ module.exports = { validateEmail, sanitizeText, validatePassword, validateUserna
5273
5273
  [/require\(['"]\.\/middleware\/rateLimit['"]\)/g, "require('./middleware/security')"],
5274
5274
  [/require\(['"]\.\.\/middleware\/limiter['"]\)/g, "require('../middleware/security')"],
5275
5275
  [/require\(['"]\.\/middleware\/limiter['"]\)/g, "require('./middleware/security')"],
5276
+ // nodemailer: LLM calls createTransporter (wrong) instead of createTransport (correct)
5277
+ [/nodemailer\.createTransporter\s*\(/g, "nodemailer.createTransport("],
5278
+ [/\{createTransporter\s*:/g, "{createTransport:"],
5276
5279
  ];
5277
5280
  function patchJsFiles(dir, rootDir) {
5278
5281
  if (!fs.existsSync(dir)) return;
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.144';
8
+ export const VERSION = '13.5.145';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11