codex-to-im 1.0.40 → 1.0.41
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/daemon.mjs +920 -139
- package/package.json +2 -2
- package/scripts/patch-codex-sdk-windows-hide.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codex-to-im",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.41",
|
|
4
4
|
"description": "Installable Codex-to-IM bridge with local setup UI and background service",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/zhangle1987/codex-to-im#readme",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@anthropic-ai/claude-agent-sdk": "^0.2.62",
|
|
44
44
|
"@larksuiteoapi/node-sdk": "^1.59.0",
|
|
45
|
-
"@openai/codex-sdk": "^0.
|
|
45
|
+
"@openai/codex-sdk": "^0.122.0",
|
|
46
46
|
"discord.js": "^14.25.1",
|
|
47
47
|
"markdown-it": "^14.1.1",
|
|
48
48
|
"qrcode": "^1.5.4",
|
|
@@ -15,7 +15,7 @@ import path from 'node:path';
|
|
|
15
15
|
* - If upstream adds `windowsHide` natively, remove this script.
|
|
16
16
|
*/
|
|
17
17
|
const PATCH_MARKER = 'windowsHide: process.platform === "win32"';
|
|
18
|
-
const SUPPORTED_SDK_VERSION = /^0\.11\d\.\d+$/;
|
|
18
|
+
const SUPPORTED_SDK_VERSION = /^0\.(11\d|12\d)\.\d+$/;
|
|
19
19
|
|
|
20
20
|
function logSkip(message) {
|
|
21
21
|
console.warn(`[postinstall] ${message}`);
|