@pouchy_ai/admin-sdk 0.19.0 → 0.23.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 +43 -0
- package/README.md +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,49 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@pouchy_ai/admin-sdk` are documented here.
|
|
4
4
|
|
|
5
|
+
## 0.23.0 — 2026-08-08
|
|
6
|
+
|
|
7
|
+
- **`ChannelTransportType` grows 6 members** (additive; nothing renamed or
|
|
8
|
+
removed): the developer-platform family — `github`, `gitlab`, `bitbucket`,
|
|
9
|
+
`jira`, `linear`, `discourse`. The agent answers in an issue / PR / ticket /
|
|
10
|
+
forum thread; these are thread-rooms (group mode on, mention-gated). All are
|
|
11
|
+
official-webhook adapters (no relay bridge), born closed (webhook signature
|
|
12
|
+
or a mandatory shared token), and creatable via `createChannel`;
|
|
13
|
+
per-transport `config` / `secret` fields are documented at
|
|
14
|
+
<https://pouchy.ai/docs/channel-setup>.
|
|
15
|
+
|
|
16
|
+
## 0.22.0 — 2026-08-08
|
|
17
|
+
|
|
18
|
+
- **`ChannelTransportType` grows 4 members** (additive; nothing renamed or
|
|
19
|
+
removed): `zoom` (Zoom Team Chat Chatbot), `line-works` (LINE WORKS Bot API),
|
|
20
|
+
`ringcentral` (RingCentral Team Messaging), and `vonage` (Vonage Messages
|
|
21
|
+
API, the `sms` sibling). All are official-webhook adapters (no relay bridge),
|
|
22
|
+
born closed (signature / verification-token / signed-JWT gate), and creatable
|
|
23
|
+
via `createChannel`; per-transport `config` / `secret` fields are documented
|
|
24
|
+
at <https://pouchy.ai/docs/channel-setup>.
|
|
25
|
+
|
|
26
|
+
## 0.21.0 — 2026-08-08
|
|
27
|
+
|
|
28
|
+
- **`ChannelTransportType` grows 15 members** (additive; nothing renamed or
|
|
29
|
+
removed): the customer-support inbox family — `crisp`, `freshchat`, `front`,
|
|
30
|
+
`gorgias`, `kustomer`, `helpscout`, `livechat`, `zohodesk`, `hubspot`,
|
|
31
|
+
`zendesk`, `salesforce` (the agent answers a support conversation, the
|
|
32
|
+
intercom template) — and four bot-token team chats — `webex`, `chatwork`,
|
|
33
|
+
`google-chat`, `zohocliq`. All are official-webhook adapters (no relay
|
|
34
|
+
bridge), born closed (the platform always authenticates), and creatable via
|
|
35
|
+
`createChannel`; per-transport `config` / `secret` fields are documented at
|
|
36
|
+
<https://pouchy.ai/docs/channel-setup>.
|
|
37
|
+
|
|
38
|
+
## 0.20.0 — 2026-08-08
|
|
39
|
+
|
|
40
|
+
- **`ChannelTransportType` grows 10 members** (additive; nothing renamed or
|
|
41
|
+
removed): `vk`, `ok` (regional / CIS), `threads`, `threema`, `groupme`,
|
|
42
|
+
`mattermost`, `rocketchat`, `zulip` (self-hosted team chat), `farcaster`
|
|
43
|
+
(crypto-native), and `tiktok` (TikTok API for Business → Business Messaging,
|
|
44
|
+
the only official DM path; a geo-gated Beta requiring a data-security audit).
|
|
45
|
+
All are creatable via `createChannel`; per-transport `config` / `secret`
|
|
46
|
+
fields are documented at <https://pouchy.ai/docs/channel-setup>.
|
|
47
|
+
|
|
5
48
|
## 0.19.0 — 2026-08-08
|
|
6
49
|
|
|
7
50
|
- **`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
|
|
313
|
+
`CreatableChannelType` (the platform's 82-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.
|
|
1
|
+
export declare const ADMIN_SDK_VERSION = "0.23.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' | 'crisp' | 'freshchat' | 'front' | 'gorgias' | 'kustomer' | 'helpscout' | 'livechat' | 'zohodesk' | 'hubspot' | 'zendesk' | 'salesforce' | 'webex' | 'chatwork' | 'google-chat' | 'zohocliq' | 'zoom' | 'line-works' | 'ringcentral' | 'vonage' | 'github' | 'gitlab' | 'bitbucket' | 'jira' | 'linear' | 'discourse';
|
|
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.
|
|
11
|
+
export const ADMIN_SDK_VERSION = '0.23.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.
|
|
3
|
+
"version": "0.23.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",
|