hedgequantx 2.6.115 → 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 +1 -1
- package/src/menus/ai-agent.js +5 -0
package/package.json
CHANGED
package/src/menus/ai-agent.js
CHANGED
|
@@ -1065,6 +1065,11 @@ const setupProxyOAuth = async (provider, config) => {
|
|
|
1065
1065
|
});
|
|
1066
1066
|
}
|
|
1067
1067
|
|
|
1068
|
+
// Debug: show what we got
|
|
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...');
|
|
1072
|
+
|
|
1068
1073
|
if (callbackUrl && callbackUrl.trim()) {
|
|
1069
1074
|
const submitSpinner = ora({ text: 'Submitting callback...', color: 'cyan' }).start();
|
|
1070
1075
|
try {
|