@askalf/dario 6.8.12 → 6.8.13
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/dist/codex-backend.js +5 -1
- package/package.json +1 -1
package/dist/codex-backend.js
CHANGED
|
@@ -37,7 +37,11 @@ const CODEX_ORIGINATOR = 'codex_cli_rs';
|
|
|
37
37
|
* value tracks a released codex CLI. Bump it when the backend starts gating on
|
|
38
38
|
* a newer one — it is a constant precisely so that stays a one-line change.
|
|
39
39
|
*/
|
|
40
|
-
|
|
40
|
+
// The backend gates newer models by the client version it is told: the same
|
|
41
|
+
// seat lists `gpt-6-astra` from 0.153.0 and not before, so an old default
|
|
42
|
+
// hides a model the plan already includes. Keep this at a released Codex CLI
|
|
43
|
+
// version.
|
|
44
|
+
export const CODEX_CLIENT_VERSION = process.env.DARIO_CODEX_CLIENT_VERSION || '0.155.0';
|
|
41
45
|
/**
|
|
42
46
|
* Which models a subscription may use is decided by the backend, not by us, and
|
|
43
47
|
* the set moves (it is per-account, and changes as new slugs ship). Hardcoded
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askalf/dario",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.13",
|
|
4
4
|
"description": "Use your Claude and ChatGPT subscriptions in Cursor, Cline, Aider, Claude Code and the Agent SDK — at subscription pricing, not per-token API bills. One local Anthropic + OpenAI-compatible endpoint: either plan answers either wire shape, with automatic failover when one hits its limit.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|