dsh-codex-subscription 1.9.0 → 1.11.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/AGENTS.md +5 -5
- package/README.md +36 -44
- package/README.zh-CN.md +35 -43
- package/THIRD_PARTY_NOTICES.md +1 -0
- package/lib/client.js +458 -210
- package/lib/index.js +719 -51
- package/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-codex-subscription",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "Use ChatGPT and Codex subscriptions in DeepSeek Harness with OAuth, quota, safe resets, web search, images, and Fast mode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -113,6 +113,7 @@
|
|
|
113
113
|
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
|
|
114
114
|
"@deepseek-ai/dsh-llm-pi-ai": "0.1.1-rc.2",
|
|
115
115
|
"@deepseek-ai/dsh-settings": "0.1.1-rc.2",
|
|
116
|
+
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
|
|
116
117
|
"@deepseek-ai/dsh-tools": "0.1.1-rc.2",
|
|
117
118
|
"@deepseek-ai/dsh-web": "0.1.1-rc.2",
|
|
118
119
|
"@deepseek-ai/schemastery": "3.18.1",
|
|
@@ -123,10 +124,13 @@
|
|
|
123
124
|
"tsdown": "0.22.2"
|
|
124
125
|
},
|
|
125
126
|
"dependencies": {
|
|
127
|
+
"@deepseek-ai/dsh-home-paths": "0.1.1-rc.2",
|
|
126
128
|
"https-proxy-agent": "7.0.6"
|
|
127
129
|
},
|
|
128
130
|
"scripts": {
|
|
129
131
|
"build": "tsdown --config tsdown.config.mjs",
|
|
132
|
+
"test:behavior": "node --test tests/auth-security.test.mjs tests/cache-contract.test.mjs tests/codex-images.test.mjs tests/codex-search.test.mjs tests/image-edit.test.mjs tests/model-catalog.test.mjs tests/oauth-network.test.mjs tests/pi-ai-runtime.test.mjs tests/plugin-integration.test.mjs tests/reset-credits.test.mjs tests/sidebar-quota.test.mjs tests/transport-contract.test.mjs tests/usage.test.mjs",
|
|
133
|
+
"test:delivery": "node --test tests/ci-change-plan.test.mjs tests/client-contract.test.mjs tests/prepare-compat-release.test.mjs tests/publish-idempotency.test.mjs tests/release-contract.test.mjs tests/release-notes.test.mjs tests/support-intake.test.mjs",
|
|
130
134
|
"test": "node --test tests/*.test.mjs",
|
|
131
135
|
"check": "pnpm run test && pnpm run build && pnpm pack --pack-destination .artifacts"
|
|
132
136
|
}
|