hedgequantx 2.6.116 → 2.6.117

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.6.116",
3
+ "version": "2.6.117",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -1066,7 +1066,9 @@ const setupProxyOAuth = async (provider, config) => {
1066
1066
  }
1067
1067
 
1068
1068
  // Debug: show what we got
1069
- console.log(chalk.gray(` [DEBUG] Got: "${callbackUrl ? callbackUrl.substring(0, 50) + '...' : 'EMPTY'}"`));
1069
+ console.log(chalk.yellow(` [DEBUG] Got: "${callbackUrl || 'EMPTY'}"`));
1070
+ console.log(chalk.yellow(` [DEBUG] Length: ${callbackUrl ? callbackUrl.length : 0}`));
1071
+ await prompts.waitForEnter(' [DEBUG] Press Enter to continue...');
1070
1072
 
1071
1073
  if (callbackUrl && callbackUrl.trim()) {
1072
1074
  const submitSpinner = ora({ text: 'Submitting callback...', color: 'cyan' }).start();