@invizi/cli 0.1.9 → 0.1.10

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/auth.js CHANGED
@@ -199,9 +199,6 @@ async function status() {
199
199
  if (email) {
200
200
  console.log(`Email: ${email}`);
201
201
  }
202
- if (Array.isArray(me.permissions) && me.permissions.length > 0) {
203
- console.log(`Permissions: ${me.permissions.join(', ')}`);
204
- }
205
202
  return 0;
206
203
  }
207
204
  function logout() {
package/dist/invizi.js CHANGED
@@ -9,14 +9,15 @@ function showLocalHelp() {
9
9
  Invizi CLI
10
10
 
11
11
  Data:
12
- invizi context Market overview, macro, yields, options, HLP
13
- invizi context -c SOL + coin data, flow, positions, trade history
12
+ invizi market Market overview — prices, macro, yields, funding
13
+ invizi market -c SOL + coin deep dive (RSI, taker flow, whale imb)
14
+ invizi market list All tradeable assets with prices
14
15
  invizi scout <COIN> Quick coin scan (price, funding, RSI, OBI)
15
- invizi market BTC/ETH/SOL prices, fear/greed, funding extremes
16
16
  invizi trades Analyze past trades — P&L by coin (local)
17
17
 
18
18
  Account:
19
- invizi auth login Login
19
+ invizi login Login
20
+ invizi logout Logout
20
21
  invizi auth status Show current identity
21
22
  invizi connect <address> Connect a wallet address
22
23
 
@@ -131,6 +132,10 @@ export async function main(rawArgs = process.argv.slice(2)) {
131
132
  }
132
133
  if (command === 'auth')
133
134
  return auth(args.slice(1));
135
+ if (command === 'login')
136
+ return auth(['login']);
137
+ if (command === 'logout')
138
+ return auth(['logout']);
134
139
  if (command === 'connect')
135
140
  return connect(args.slice(1));
136
141
  if (command === 'trades')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@invizi/cli",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Invizi CLI",
5
5
  "type": "module",
6
6
  "bin": {