antigravity-claude-proxy 1.2.0 → 1.2.2

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/bin/cli.js CHANGED
@@ -84,7 +84,7 @@ async function main() {
84
84
  // Pass remaining args to accounts CLI
85
85
  const subCommand = args[1] || 'add';
86
86
  process.argv = ['node', 'accounts-cli.js', subCommand, ...args.slice(2)];
87
- await import('../src/accounts-cli.js');
87
+ await import('../src/cli/accounts.js');
88
88
  break;
89
89
  }
90
90
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antigravity-claude-proxy",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
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",
@@ -51,6 +51,7 @@ export function clearExpiredLimits(accounts) {
51
51
 
52
52
  for (const account of accounts) {
53
53
  if (account.isRateLimited && account.rateLimitResetTime && account.rateLimitResetTime <= now) {
54
+ account.isRateLimited = false;
54
55
  account.rateLimitResetTime = null;
55
56
  cleared++;
56
57
  logger.success(`[AccountManager] Rate limit expired for: ${account.email}`);