hedgequantx 2.6.122 → 2.6.123

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.122",
3
+ "version": "2.6.123",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -517,9 +517,10 @@ const submitCallback = async (callbackUrl, provider = 'anthropic') => {
517
517
 
518
518
  // Each provider has its own OAuth callback port and path in CLIProxyAPI
519
519
  // We need to submit the callback to the correct port
520
+ // Ports are determined by the redirect_uri in the OAuth URL from CLIProxyAPI
520
521
  const providerConfig = {
521
522
  anthropic: { port: 54545, path: '/callback' },
522
- openai: { port: 16168, path: '/callback' },
523
+ openai: { port: 1455, path: '/auth/callback' },
523
524
  gemini: { port: 8085, path: '/oauth2callback' },
524
525
  qwen: { port: 8087, path: '/oauth2callback' },
525
526
  iflow: { port: 8088, path: '/callback' }