@quilltap/plugin-types 1.17.0 → 1.17.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.
@@ -103,6 +103,8 @@ interface ToolCallRequest {
103
103
  name: string;
104
104
  /** Parsed arguments object */
105
105
  arguments: Record<string, unknown>;
106
+ /** Provider-assigned call ID for correlating results to calls (optional for backward compat) */
107
+ callId?: string;
106
108
  }
107
109
  /**
108
110
  * Tool result to send back to the model
@@ -103,6 +103,8 @@ interface ToolCallRequest {
103
103
  name: string;
104
104
  /** Parsed arguments object */
105
105
  arguments: Record<string, unknown>;
106
+ /** Provider-assigned call ID for correlating results to calls (optional for backward compat) */
107
+ callId?: string;
106
108
  }
107
109
  /**
108
110
  * Tool result to send back to the model
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/plugin-types",
3
- "version": "1.17.0",
3
+ "version": "1.17.1",
4
4
  "description": "Type definitions for Quilltap plugin development",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",