@vellumai/plugin-api 0.10.6-dev.202607062043.72bc40b → 0.10.6-dev.202607062136.26c976d

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/index.d.ts +11 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -4194,7 +4194,17 @@ export declare interface ToolContext {
4194
4194
  */
4195
4195
  requesterDisplayName?: string;
4196
4196
  /**
4197
- * Slack channel ID for channel-scoped permission enforcement. When set, tools are checked against the channel's permission profile.
4197
+ * Conversation type of the current channel chat on the permission-matrix
4198
+ * axis (dm | private | public). Feeds the channel-type tier of matrix cell
4199
+ * resolution; undefined when the chat type is unknown or ambiguous.
4200
+ * @legacy
4201
+ */
4202
+ channelConversationType?: "dm" | "private" | "public";
4203
+ /**
4204
+ * External channel/conversation ID of the current chat (the binding's
4205
+ * external chat id — Slack channel, Telegram chat, …). Keys the channel
4206
+ * tier of permission-matrix cell resolution for every channel adapter;
4207
+ * for Slack it also drives the legacy per-tool channel gate.
4198
4208
  * @legacy
4199
4209
  */
4200
4210
  channelPermissionChannelId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.6-dev.202607062043.72bc40b",
3
+ "version": "0.10.6-dev.202607062136.26c976d",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",