dsh-codex-subscription 1.0.5 → 1.0.6

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 CHANGED
@@ -6,7 +6,7 @@ Use this guide when a user asks an Agent to install, update, verify, or remove
6
6
  ## Safety
7
7
 
8
8
  - Confirm the target DSH installation and profile. Use `web` only when it is the user's target.
9
- - Use the exact `1.0.5` package below; do not install a moving branch.
9
+ - Use the exact `1.0.6` package below; do not install a moving branch.
10
10
  - Never print OAuth credentials, account IDs, authorization callbacks, or credential-store contents.
11
11
  - Preserve the DSH profile, unrelated plugins, sessions, and saved sign-in.
12
12
  - Do not start, stop, or restart DSH without explicit permission.
@@ -31,13 +31,13 @@ instead of recreating its package-manager environment in this installer.
31
31
  With an existing `dsh` command:
32
32
 
33
33
  ```sh
34
- dsh plugin --profile web add dsh-codex-subscription@1.0.5
34
+ dsh plugin --profile web add dsh-codex-subscription@1.0.6
35
35
  ```
36
36
 
37
37
  From a DSH-Portable folder:
38
38
 
39
39
  ```powershell
40
- .\dsh.exe plugin --profile web add dsh-codex-subscription@1.0.5
40
+ .\dsh.exe plugin --profile web add dsh-codex-subscription@1.0.6
41
41
  ```
42
42
 
43
43
  Use the same `add` command to update or repair. This is the complete package-changing operation.
@@ -61,7 +61,7 @@ dsh --profile web --dump-config
61
61
 
62
62
  For DSH-Portable, replace `dsh` with `.\dsh.exe`. Static acceptance requires:
63
63
 
64
- 1. `dsh-codex-subscription` version `1.0.5` appears exactly once.
64
+ 1. `dsh-codex-subscription` version `1.0.6` appears exactly once.
65
65
  2. `codex-subscription` appears exactly once in the composed config.
66
66
  3. The legacy package is absent after a migration.
67
67
  4. No unrelated plugin or profile was changed and DSH was not restarted.
package/lib/index.js CHANGED
@@ -463,7 +463,7 @@ function openaiCodexSubscriptionProvider() {
463
463
  })
464
464
  });
465
465
  }
466
- const USER_AGENT = `dsh-codex-subscription/1.0.5`;
466
+ const USER_AGENT = `dsh-codex-subscription/1.0.6`;
467
467
  //#endregion
468
468
  //#region src/codex-search.js
469
469
  const CODEX_SEARCH_PROVIDER_ID = "codex-subscription";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-codex-subscription",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "packageManager": "pnpm@11.19.0",
5
5
  "description": "ChatGPT and Codex subscriptions for DeepSeek Harness with OAuth login, image generation, quota, and subscription web search",
6
6
  "type": "module",