@juspay/neurolink 11.17.2 → 11.17.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/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
- ## [11.17.2](https://github.com/juspay/neurolink/compare/v11.17.1...v11.17.2) (2026-08-22)
1
+ ## [11.17.3](https://github.com/juspay/neurolink/compare/v11.17.2...v11.17.3) (2026-08-22)
2
2
 
3
3
  ### Bug Fixes
4
4
 
5
- - **(test):** revive the multi-image JSON test and surface child stderr ([602484f](https://github.com/juspay/neurolink/commit/602484f9070b0e4f4df6598878b8aaaef3dcd674))
5
+ - **(proxy):** answer Codex model discovery instead of 404ing it ([ebadc9e](https://github.com/juspay/neurolink/commit/ebadc9eae2a6528808c58bce61a225aec6c54b32))
6
6
 
7
7
  ## [11.2.3](https://github.com/juspay/neurolink/compare/v11.2.2...v11.2.3) (2026-08-19)
8
8
 
@@ -19,6 +19,7 @@ export declare const CODEX_DEFAULT_SCOPES: readonly ["openid", "profile", "email
19
19
  export declare const CODEX_BACKEND_BASE_URL = "https://chatgpt.com/backend-api/codex";
20
20
  export declare const CODEX_RESPONSES_URL = "https://chatgpt.com/backend-api/codex/responses";
21
21
  export declare const CODEX_USAGE_URL = "https://chatgpt.com/backend-api/codex/usage";
22
+ export declare const CODEX_MODELS_URL = "https://chatgpt.com/backend-api/codex/models";
22
23
  export declare const CODEX_VERSION = "0.144.4";
23
24
  export declare const CODEX_USER_AGENT = "codex_cli_rs/0.144.4 (external; neurolink-proxy)";
24
25
  export declare const CODEX_ORIGINATOR = "codex_cli_rs";
@@ -29,6 +29,7 @@ export const CODEX_DEFAULT_SCOPES = [
29
29
  export const CODEX_BACKEND_BASE_URL = "https://chatgpt.com/backend-api/codex";
30
30
  export const CODEX_RESPONSES_URL = `${CODEX_BACKEND_BASE_URL}/responses`;
31
31
  export const CODEX_USAGE_URL = `${CODEX_BACKEND_BASE_URL}/usage`;
32
+ export const CODEX_MODELS_URL = `${CODEX_BACKEND_BASE_URL}/models`;
32
33
  // Client fingerprint. The real Codex CLI sends these; the proxy defaults them
33
34
  // only when a non-Codex client omits them.
34
35
  export const CODEX_VERSION = "0.144.4";