neonctl 1.34.0 → 1.35.0

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.
Files changed (2) hide show
  1. package/auth.js +5 -0
  2. package/package.json +1 -1
package/auth.js CHANGED
@@ -19,6 +19,11 @@ const NEONCTL_SCOPES = [
19
19
  'urn:neoncloud:projects:read',
20
20
  'urn:neoncloud:projects:update',
21
21
  'urn:neoncloud:projects:delete',
22
+ 'urn:neoncloud:orgs:create',
23
+ 'urn:neoncloud:orgs:read',
24
+ 'urn:neoncloud:orgs:update',
25
+ 'urn:neoncloud:orgs:delete',
26
+ 'urn:neoncloud:orgs:permission',
22
27
  ];
23
28
  const AUTH_TIMEOUT_SECONDS = 60;
24
29
  export const defaultClientID = 'neonctl';
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "git+ssh://git@github.com/neondatabase/neonctl.git"
6
6
  },
7
7
  "type": "module",
8
- "version": "1.34.0",
8
+ "version": "1.35.0",
9
9
  "description": "CLI tool for NeonDB Cloud management",
10
10
  "main": "index.js",
11
11
  "author": "NeonDB",