@pouchy_ai/admin-sdk 0.25.0 → 0.25.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to `@pouchy_ai/admin-sdk` are documented here.
4
4
 
5
+ ## 0.25.1 — 2026-08-09
6
+
7
+ - **Docs-only: the README's 409 vocabulary table gains the `one_shot_spent`
8
+ and `ghost_row` rows** that 0.25.0 added to `ADMIN_ERROR_CODES` — the
9
+ published package's own table stopped one release behind its own exports
10
+ (the 0.24.1/0.24.2 class). No code moved.
11
+
5
12
  ## 0.25.0 — 2026-08-09
6
13
 
7
14
  - **`ADMIN_ERROR_CODES` gains the two schedule-PATCH refusals** (additive;
package/README.md CHANGED
@@ -287,6 +287,8 @@ type), and is append-only:
287
287
  | `stale_token` | `resumeRun` | `getRun`, then answer the current `awaiting.token` |
288
288
  | `run_not_waiting` | `signalRun` | the wait ended; stop retrying |
289
289
  | `event_mismatch` | `signalRun` | the run wants a different key; your event is early or wrong |
290
+ | `one_shot_spent` | `updateSchedule` | the one-shot already fired — create a new schedule instead of re-enabling |
291
+ | `ghost_row` | `updateSchedule` | a legacy fieldless row that can never run — delete it, create a new schedule |
290
292
 
291
293
  `code` is `undefined` on every failure the server did not tag (400s, 404s, the
292
294
  429, transport errors), so always keep a `default` branch. The type has a
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const ADMIN_SDK_VERSION = "0.25.0";
1
+ export declare const ADMIN_SDK_VERSION = "0.25.1";
2
2
  export declare const DEFAULT_BASE_URL = "https://pouchy.ai/v1/admin";
3
3
  /** Deadline for the routes whose server handler declares `maxDuration: 300` —
4
4
  * the server's own ceiling plus headroom, so a client abort can only ever mean
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@
8
8
  // import { createAdminClient } from '@pouchy_ai/admin-sdk';
9
9
  // const admin = createAdminClient({ adminKey: process.env.POUCHY_ADMIN_KEY! });
10
10
  // const { agents } = await admin.listAgents();
11
- export const ADMIN_SDK_VERSION = '0.25.0';
11
+ export const ADMIN_SDK_VERSION = '0.25.1';
12
12
  export const DEFAULT_BASE_URL = 'https://pouchy.ai/v1/admin';
13
13
  /** Default per-request timeout (ms). A hung upstream otherwise never rejects. */
14
14
  const DEFAULT_TIMEOUT_MS = 30_000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pouchy_ai/admin-sdk",
3
- "version": "0.25.0",
3
+ "version": "0.25.1",
4
4
  "description": "Typed TypeScript client for the Pouchy Admin API \u2014 manage agents, keys, end users, knowledge, skills, channels, schedules, webhooks and credentials headlessly, with a project Admin key.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE",