@pikoloo/codex-proxy 1.0.7 → 1.1.0

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/docs/API.md CHANGED
@@ -115,21 +115,6 @@ Content-Type: application/json
115
115
  }
116
116
  ```
117
117
 
118
- ### Account Selection Strategy
119
-
120
- Requests use the active account only by default. Account rotation settings are inert unless `CODEX_CLAUDE_PROXY_ENABLE_MULTI_ACCOUNT_ROTATION=true` is set.
121
-
122
- ```bash
123
- GET /settings/account-strategy
124
-
125
- # Response
126
- {
127
- "success": true,
128
- "accountStrategy": "sticky",
129
- "rotationEnabled": false
130
- }
131
- ```
132
-
133
118
  ### Switch Account
134
119
 
135
120
  ```bash
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikoloo/codex-proxy",
3
- "version": "1.0.7",
3
+ "version": "1.1.0",
4
4
  "description": "Local personal proxy for OpenAI Codex models with Claude API compatibility",
5
5
  "author": "Suraj Mandal <surajmandalcell@gmail.com>",
6
6
  "type": "module",
@@ -38,7 +38,7 @@
38
38
  "accounts:list": "node src/cli/accounts.js list",
39
39
  "accounts:remove": "node src/cli/accounts.js remove",
40
40
  "accounts:verify": "node src/cli/accounts.js verify",
41
- "build": "find src bin -name '*.js' -print0 | xargs -0 -n1 node --check",
41
+ "build": "find src bin scripts \\( -name '*.js' -o -name '*.mjs' \\) -print0 | xargs -0 -n1 node --check",
42
42
  "test": "node --test tests/*.test.js",
43
43
  "test:unit": "node --test tests/unit/*.test.js",
44
44
  "test:all": "node --test tests/unit/*.test.js tests/*.test.js",
@@ -57,6 +57,13 @@
57
57
  "path-to-regexp": "0.1.13",
58
58
  "qs": "6.15.2"
59
59
  },
60
- "keywords": ["codex", "openai", "proxy", "claude", "chatgpt", "oauth"],
60
+ "keywords": [
61
+ "codex",
62
+ "openai",
63
+ "proxy",
64
+ "claude",
65
+ "chatgpt",
66
+ "oauth"
67
+ ],
61
68
  "license": "MIT"
62
69
  }