@librechat/agents-types 3.0.19 → 3.0.21

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/package.json +1 -1
  2. package/stream.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@librechat/agents-types",
3
- "version": "3.0.19",
3
+ "version": "3.0.21",
4
4
  "description": "Type definitions for @librechat/agents",
5
5
  "types": "index.d.ts",
6
6
  "scripts": {
package/stream.ts CHANGED
@@ -116,7 +116,7 @@ export type ToolErrorData = {
116
116
  export type ToolEndCallback = (
117
117
  data: ToolEndData,
118
118
  metadata?: Record<string, unknown>
119
- ) => void;
119
+ ) => Promise<void>;
120
120
 
121
121
  export type ProcessedToolCall = {
122
122
  name: string;