@agentis-hq/cli 0.1.5 → 0.1.6

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/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -575,20 +575,20 @@ async function walletList() {
575
575
  console.log("\nNo hosted wallets found.");
576
576
  }
577
577
  } else if (res.status === 401) {
578
- console.error(`
578
+ console.log(`
579
579
  Could not list hosted wallets: stored login is expired or invalid. Run \`agentis logout\` and then \`agentis login\`.`);
580
580
  } else {
581
581
  const data = await res.json().catch(() => ({}));
582
- console.error(`
582
+ console.log(`
583
583
  Could not list hosted wallets from ${API_BASE}: ${data.error ?? res.statusText}`);
584
584
  }
585
585
  } catch (err) {
586
586
  const message = err instanceof Error ? err.message : String(err);
587
- console.error(`
587
+ console.log(`
588
588
  Could not list hosted wallets from ${API_BASE}: ${message}`);
589
589
  }
590
590
  } else {
591
- console.error("\nNot logged in. Run `agentis login` to list hosted wallets.");
591
+ console.log("\nNot logged in. Run `agentis login` to list hosted wallets.");
592
592
  }
593
593
  if (localWallets.length > 0) {
594
594
  console.log("\nLocal wallets:");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentis-hq/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "agentis": "dist/index.js"