@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 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}`);
@@ -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).substr(2, 9)}`;
299
+ return `transition_${Date.now()}_${Math.random().toString(36).substring(2, 11)}`;
300
300
  }
301
301
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lanonasis/cli",
3
- "version": "3.0.6",
3
+ "version": "3.0.7",
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": {