antigravity-claude-proxy 1.2.1 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antigravity-claude-proxy",
3
- "version": "1.2.1",
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}`);