antigravity-claude-proxy 2.8.2 → 2.8.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": "antigravity-claude-proxy",
3
- "version": "2.8.2",
3
+ "version": "2.8.3",
4
4
  "description": "Proxy server to use Antigravity's Claude models with Claude Code CLI",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -9,8 +9,8 @@ import { existsSync } from 'fs';
9
9
  * Falls back to hard-coded stable versions if detection fails.
10
10
  */
11
11
 
12
- // Fallback constant
13
- const FALLBACK_ANTIGRAVITY_VERSION = '1.20.6';
12
+ // Fallback constant (can be overridden via FALLBACK_ANTIGRAVITY_VERSION env var)
13
+ const FALLBACK_ANTIGRAVITY_VERSION = process.env.FALLBACK_ANTIGRAVITY_VERSION || '1.23.2';
14
14
 
15
15
  // Cache for the generated User-Agent string
16
16
  let cachedUserAgent = null;