@pouchy_ai/admin-sdk 0.19.0 → 0.20.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/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to `@pouchy_ai/admin-sdk` are documented here.
4
4
 
5
+ ## 0.20.0 — 2026-08-08
6
+
7
+ - **`ChannelTransportType` grows 10 members** (additive; nothing renamed or
8
+ removed): `vk`, `ok` (regional / CIS), `threads`, `threema`, `groupme`,
9
+ `mattermost`, `rocketchat`, `zulip` (self-hosted team chat), `farcaster`
10
+ (crypto-native), and `tiktok` (TikTok API for Business → Business Messaging,
11
+ the only official DM path; a geo-gated Beta requiring a data-security audit).
12
+ All are creatable via `createChannel`; per-transport `config` / `secret`
13
+ fields are documented at <https://pouchy.ai/docs/channel-setup>.
14
+
5
15
  ## 0.19.0 — 2026-08-08
6
16
 
7
17
  - **`ChannelTransportType` grows 17 members** (additive; nothing renamed or
package/README.md CHANGED
@@ -310,7 +310,7 @@ Reads (`GET`) are not covered by that bucket. `retryAfter` is available from
310
310
  | Escape hatch | `request(method, path, body?)` — any endpoint not yet typed |
311
311
 
312
312
  Channel types are checked at compile time: `createChannel` takes a
313
- `CreatableChannelType` (the platform's 47-transport union minus the adapterless
313
+ `CreatableChannelType` (the platform's 57-transport union minus the adapterless
314
314
  `internal-a2a`), and `secret` is a named `ChannelSecretInput`. Per-transport
315
315
  `secret.extra` fields are listed in <https://pouchy.ai/docs/channel-setup>.
316
316
 
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const ADMIN_SDK_VERSION = "0.19.0";
1
+ export declare const ADMIN_SDK_VERSION = "0.20.0";
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
@@ -332,7 +332,7 @@ export interface DeliveryOutcome {
332
332
  * (`channels/types.ts`) — this package is standalone and cannot import it, so
333
333
  * `admin-sdk-channel-types.drift.test.ts` binds the two and fails CI if either
334
334
  * side gains a transport the other lacks. */
335
- export type ChannelTransportType = 'echo' | 'matrix' | 'telegram' | 'web' | 'activitypub' | 'internal-a2a' | 'discord' | 'slack' | 'nostr' | 'atproto' | 'sms' | 'email' | 'whatsapp' | 'messenger' | 'instagram' | 'line' | 'teams' | 'wechat' | 'wecom' | 'feishu' | 'dingtalk' | 'twitter' | 'xmpp' | 'qq' | 'kakao' | 'viber' | 'signal' | 'weibo' | 'alexa' | 'google-assistant' | 'voice' | 'onlyfans' | 'fansly' | 'fanvue' | 'imessage' | 'rcs' | 'intercom' | 'twitch' | 'zalo' | 'douyin' | 'kick' | 'reddit' | 'xmtp' | 'guilded' | 'youtube-live' | 'bilibili-live' | 'minecraft' | 'steam';
335
+ export type ChannelTransportType = 'echo' | 'matrix' | 'telegram' | 'web' | 'activitypub' | 'internal-a2a' | 'discord' | 'slack' | 'nostr' | 'atproto' | 'sms' | 'email' | 'whatsapp' | 'messenger' | 'instagram' | 'line' | 'teams' | 'wechat' | 'wecom' | 'feishu' | 'dingtalk' | 'twitter' | 'xmpp' | 'qq' | 'kakao' | 'viber' | 'signal' | 'weibo' | 'alexa' | 'google-assistant' | 'voice' | 'onlyfans' | 'fansly' | 'fanvue' | 'imessage' | 'rcs' | 'intercom' | 'twitch' | 'zalo' | 'douyin' | 'kick' | 'reddit' | 'xmtp' | 'guilded' | 'youtube-live' | 'bilibili-live' | 'minecraft' | 'steam' | 'vk' | 'ok' | 'threads' | 'groupme' | 'threema' | 'mattermost' | 'rocketchat' | 'zulip' | 'farcaster' | 'tiktok';
336
336
  /** Transports `createChannel` accepts. `internal-a2a` is in the union but has
337
337
  * no adapter, so the server answers 400 — excluding it here turns a runtime
338
338
  * rejection into a compile error. */
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.19.0';
11
+ export const ADMIN_SDK_VERSION = '0.20.0';
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.19.0",
3
+ "version": "0.20.0",
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",