@lanonasis/cli 3.6.3 → 3.6.4
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/dist/utils/config.js +2 -2
- package/package.json +5 -4
package/dist/utils/config.js
CHANGED
|
@@ -381,9 +381,9 @@ export class CLIConfig {
|
|
|
381
381
|
const axios = (await import('axios')).default;
|
|
382
382
|
// Ensure service discovery is done
|
|
383
383
|
await this.discoverServices();
|
|
384
|
-
const authBase = this.config.discoveredServices?.auth_base || 'https://
|
|
384
|
+
const authBase = this.config.discoveredServices?.auth_base || 'https://auth.lanonasis.com';
|
|
385
385
|
// Test vendor key with health endpoint
|
|
386
|
-
await axios.get(`${authBase}/
|
|
386
|
+
await axios.get(`${authBase}/health`, {
|
|
387
387
|
headers: {
|
|
388
388
|
'X-API-Key': vendorKey,
|
|
389
389
|
'X-Auth-Method': 'vendor_key',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lanonasis/cli",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.4",
|
|
4
4
|
"description": "LanOnasis Enterprise CLI - Memory as a Service, API Key Management, and Infrastructure Orchestration",
|
|
5
5
|
"main": "dist/index-simple.js",
|
|
6
6
|
"bin": {
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"build:mcp-client": "tsc src/mcp/client/enhanced-client.ts --outDir dist/mcp/client",
|
|
22
22
|
"start": "node dist/index.js",
|
|
23
23
|
"start:mcp-server": "node dist/mcp/server/lanonasis-server.js",
|
|
24
|
-
"test": "NODE_OPTIONS=--experimental-vm-modules jest
|
|
25
|
-
"test:
|
|
24
|
+
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
25
|
+
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\"integration|reliability|persistence\"",
|
|
26
26
|
"test:mcp": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=mcp",
|
|
27
27
|
"test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\"integration|reliability|persistence\"",
|
|
28
|
-
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage
|
|
28
|
+
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
|
|
29
29
|
"lint": "eslint .",
|
|
30
30
|
"type-check": "tsc --noEmit",
|
|
31
31
|
"prepare": "npm run build",
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
},
|
|
66
66
|
"homepage": "https://github.com/lanonasis/lanonasis-maas#readme",
|
|
67
67
|
"dependencies": {
|
|
68
|
+
"@lanonasis/cli": "^3.6.3",
|
|
68
69
|
"@modelcontextprotocol/sdk": "^1.17.4",
|
|
69
70
|
"@types/eventsource": "^1.1.15",
|
|
70
71
|
"@types/ws": "^8.18.1",
|