nothumanallowed 13.5.164 → 13.5.165

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.164",
3
+ "version": "13.5.165",
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/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.164';
8
+ export const VERSION = '13.5.165';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -1342,6 +1342,7 @@ function emailLoadGoogleMessages() {
1342
1342
  emailState.messages = (msgs || []).map(function(m) {
1343
1343
  return { id: m.id, subject: m.subject, from_name: m.from, from_address: m.from, internal_date: m.date, body_preview: m.snippet, is_read: !m.isUnread, is_starred: false, has_attachments: false, _google: true };
1344
1344
  });
1345
+ emailState.total = emailState.messages.length;
1345
1346
  emailRenderMessageList();
1346
1347
  });
1347
1348
  }).catch(function() {
@@ -1349,6 +1350,7 @@ function emailLoadGoogleMessages() {
1349
1350
  emailState.messages = (dash.emails || []).map(function(m) {
1350
1351
  return { id: m.id, subject: m.subject, from_name: m.from, from_address: m.from, internal_date: m.date, body_preview: m.snippet, is_read: !m.isUnread, is_starred: false, has_attachments: false, _google: true };
1351
1352
  });
1353
+ emailState.total = emailState.messages.length;
1352
1354
  emailRenderMessageList();
1353
1355
  });
1354
1356
  }