nothumanallowed 6.6.2 → 6.6.3

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": "6.6.2",
3
+ "version": "6.6.3",
4
4
  "description": "NotHumanAllowed — 38 AI agents for security, code, DevOps, data & daily ops. Per-agent memory, Telegram + Discord auto-responder, proactive intelligence daemon, voice chat, plugin system.",
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 = '6.6.2';
8
+ export const VERSION = '6.6.3';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -14,9 +14,10 @@ import { info, ok, fail, warn } from '../ui.mjs';
14
14
  // NHA published OAuth client (Desktop app type — client_id is not a secret)
15
15
  const DEFAULT_CLIENT_ID = ''; // Will be set when Google Cloud project is verified
16
16
  const SCOPES = [
17
- 'https://www.googleapis.com/auth/gmail.readonly',
17
+ 'https://www.googleapis.com/auth/gmail.modify',
18
18
  'https://www.googleapis.com/auth/gmail.send',
19
19
  'https://www.googleapis.com/auth/gmail.compose',
20
+ 'https://www.googleapis.com/auth/gmail.labels',
20
21
  'https://www.googleapis.com/auth/calendar.readonly',
21
22
  'https://www.googleapis.com/auth/calendar.events',
22
23
  'https://www.googleapis.com/auth/userinfo.email',