@goodandready/dsh-subscriptions 0.4.4 → 0.4.5

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/README.md CHANGED
@@ -153,7 +153,7 @@ From the chat, without opening Settings:
153
153
 
154
154
  ## /subscriptions page
155
155
 
156
- A localhost-only summary page at `/subscriptions` lists every account slot,
156
+ A localhost-only summary page at `/dsh-subscriptions/subscriptions` lists every account slot,
157
157
  connection status, usage percent, remaining quota and reset time across all
158
158
  providers. Requests from non-loopback hosts get 403.
159
159
 
package/lib/index.js CHANGED
@@ -871,7 +871,7 @@ export function apply(ctx, config) {
871
871
  // #50: сводная страница /subscriptions (localhost-only).
872
872
  ctx.effect(() => ctx.webServer.register({
873
873
  kind: 'exact',
874
- path: '/subscriptions',
874
+ path: '/dsh-subscriptions/subscriptions',
875
875
  handler: async (req, res) => {
876
876
  if (req.method !== 'GET') {
877
877
  writeJson(res, 405, { ok: false, error: { code: 'method', message: 'GET only' } })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-subscriptions",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "Use ChatGPT Codex, Claude, Grok, and Antigravity subscriptions as DeepSeek Harness LLM providers via OAuth.",
5
5
  "license": "MIT",
6
6
  "type": "module",