@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.
- package/index.d.ts +11 -1
- 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
|
-
*
|
|
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