bingocode 1.1.200-beta.2 → 1.1.200-beta.3

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": "bingocode",
3
- "version": "1.1.200-beta.2",
3
+ "version": "1.1.200-beta.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -638,16 +638,10 @@ export class ProviderService {
638
638
  try {
639
639
  const raw = await fs.readFile(settingsPath, "utf-8")
640
640
  const settings = JSON.parse(raw)
641
- // Point away from bingo proxy to official Anthropic API.
642
- // env vars take precedence over ~/.claude/bingo/settings.json
643
- // so the spawned CLI does NOT route through bingo.
644
- settings.claudeCode = {
645
- preferredLocation: "panel",
646
- disableLoginPrompt: true,
647
- environmentVariables: [
648
- { name: "ANTHROPIC_BASE_URL", value: "https://api.anthropic.com" },
649
- ],
650
- }
641
+ // Remove claudeCode entirely so VS Code falls back to its default
642
+ // the Claude login screen. Without this key the extension behaves
643
+ // as if bingo was never configured.
644
+ delete settings.claudeCode
651
645
  await fs.writeFile(settingsPath, JSON.stringify(settings, null, 4) + '
652
646
  ')
653
647
  } catch {