@lanonasis/cli 3.0.6 → 3.0.7
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/index.js +1 -1
- package/dist/mcp/memory-state.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -453,8 +453,8 @@ program
|
|
|
453
453
|
.command('status')
|
|
454
454
|
.description('Show overall system status')
|
|
455
455
|
.action(async () => {
|
|
456
|
-
const isAuth = await cliConfig.isAuthenticated();
|
|
457
456
|
await cliConfig.init();
|
|
457
|
+
const isAuth = await cliConfig.isAuthenticated();
|
|
458
458
|
const apiUrl = cliConfig.getApiUrl();
|
|
459
459
|
console.log(chalk.blue.bold('MaaS CLI Status'));
|
|
460
460
|
console.log(`API URL: ${apiUrl}`);
|
package/dist/mcp/memory-state.js
CHANGED
|
@@ -296,6 +296,6 @@ export class MemoryStateManager {
|
|
|
296
296
|
return 'anonymous';
|
|
297
297
|
}
|
|
298
298
|
generateTransitionId() {
|
|
299
|
-
return `transition_${Date.now()}_${Math.random().toString(36).
|
|
299
|
+
return `transition_${Date.now()}_${Math.random().toString(36).substring(2, 11)}`;
|
|
300
300
|
}
|
|
301
301
|
}
|
package/package.json
CHANGED