@goodandready/dsh-subscriptions 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -626,7 +626,7 @@ export function apply(ctx, config) {
626
626
  // Токен наружу не отдаётся — наружу только ответ провайдера.
627
627
  ctx.effect(() => ctx.webServer.register({
628
628
  kind: 'prefix',
629
- path: '/dsh-subscriptions/proxy/',
629
+ path: '/dsh-subscriptions/proxy',
630
630
  handler: async (req, res) => {
631
631
  if (req.method !== 'POST' && req.method !== 'GET') {
632
632
  writeJson(res, 405, { ok: false, error: { code: 'method', message: 'GET or POST' } })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-subscriptions",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
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",