hedgequantx 2.9.20 → 2.9.21

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/package.json +1 -1
  2. package/src/app.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.9.20",
3
+ "version": "2.9.21",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
package/src/app.js CHANGED
@@ -160,15 +160,15 @@ const run = async () => {
160
160
  await bannerClosed();
161
161
 
162
162
  // Restore session
163
- const spinner = ora({ text: 'Restoring session...', color: 'yellow' }).start();
163
+ const spinner = ora({ text: 'Testing connections...', color: 'yellow' }).start();
164
164
  const restored = await connections.restoreFromStorage();
165
165
 
166
166
  if (restored) {
167
- spinner.succeed('Session restored');
167
+ spinner.succeed('Connected');
168
168
  currentService = connections.getAll()[0].service;
169
169
  await refreshStats();
170
170
  } else {
171
- spinner.info('No active session');
171
+ spinner.info('No saved connections');
172
172
  }
173
173
 
174
174
  // Main loop