@bitkyc08/opencodex 2.24.0 → 2.24.1

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.
@@ -16,7 +16,7 @@
16
16
  } catch (e) {}
17
17
  })();
18
18
  </script>
19
- <script type="module" crossorigin src="/assets/index-CFqJKF2L.js"></script>
19
+ <script type="module" crossorigin src="/assets/index-C3FiAveG.js"></script>
20
20
  <link rel="stylesheet" crossorigin href="/assets/index-DQsMZzI5.css">
21
21
  </head>
22
22
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitkyc08/opencodex",
3
- "version": "2.24.0",
3
+ "version": "2.24.1",
4
4
  "description": "Universal provider proxy for OpenAI Codex & Claude Code — use any LLM with Codex CLI/App/SDK and Claude Code",
5
5
  "type": "module",
6
6
  "main": "./bin/package-main.mjs",
@@ -79,9 +79,11 @@ function canonicalConfigEncoding(value: unknown, ancestors = new Set<object>()):
79
79
  }
80
80
 
81
81
  if (ancestors.has(value)) throw new TypeError("Catalog config identity cannot encode a cyclic graph.");
82
- if (Object.getOwnPropertySymbols(value).length > 0) {
83
- throw new TypeError("Catalog config identity cannot encode symbol keys.");
84
- }
82
+ // Symbol keys are process-local metadata (e.g. the user-cost-overlay
83
+ // preservation-owner tag) that JSON.stringify omits and no persist path
84
+ // writes. They must not change the durable config identity, so encoding
85
+ // proceeds over the enumerable string-keyed properties below (Object.keys
86
+ // already ignores symbols). Symbol VALUES are still refused above.
85
87
  ancestors.add(value);
86
88
  try {
87
89
  if (Array.isArray(value)) {
@@ -10,7 +10,7 @@
10
10
  },
11
11
  {
12
12
  "path": "package.json",
13
- "sha256": "82a2b976e7b6e80afbf2b72f446758665ef0c78c83adf116f1cad43f2cfbc34b"
13
+ "sha256": "550826e575297c9f0bd8f16cea06355c50bb78bacf4b9382c1d077520683177d"
14
14
  },
15
15
  {
16
16
  "path": "scripts/model-metadata.source.json",
@@ -650,7 +650,7 @@
650
650
  },
651
651
  {
652
652
  "path": "src/codex/catalog-admission.ts",
653
- "sha256": "7410dcb4e9ebfab045144d383d91655dc6be3c4fd3d57a8b2414fd1b2db6cb8d"
653
+ "sha256": "56409c9d41b58e990a35f8b4305ec58ff1ffad173e2a43a7ff0e0b671546b2ba"
654
654
  },
655
655
  {
656
656
  "path": "src/codex/catalog-refresh-status.ts",