@agentforge/core 0.16.26 → 0.16.27
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/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4914,7 +4914,7 @@ interface InterruptEventData {
|
|
|
4914
4914
|
interface ResumeEventData {
|
|
4915
4915
|
type: 'resume';
|
|
4916
4916
|
interruptId: string;
|
|
4917
|
-
value:
|
|
4917
|
+
value: InterruptPayload;
|
|
4918
4918
|
threadId: string;
|
|
4919
4919
|
}
|
|
4920
4920
|
/**
|
|
@@ -4976,7 +4976,7 @@ declare function formatInterruptEvent(interrupt: AnyInterrupt, threadId: string)
|
|
|
4976
4976
|
* @param threadId - The thread ID
|
|
4977
4977
|
* @returns An SSE event
|
|
4978
4978
|
*/
|
|
4979
|
-
declare function formatResumeEvent(interruptId: string, value:
|
|
4979
|
+
declare function formatResumeEvent(interruptId: string, value: InterruptPayload, threadId: string): SSEEvent;
|
|
4980
4980
|
/**
|
|
4981
4981
|
* Format an agent waiting event as an SSE event
|
|
4982
4982
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -4914,7 +4914,7 @@ interface InterruptEventData {
|
|
|
4914
4914
|
interface ResumeEventData {
|
|
4915
4915
|
type: 'resume';
|
|
4916
4916
|
interruptId: string;
|
|
4917
|
-
value:
|
|
4917
|
+
value: InterruptPayload;
|
|
4918
4918
|
threadId: string;
|
|
4919
4919
|
}
|
|
4920
4920
|
/**
|
|
@@ -4976,7 +4976,7 @@ declare function formatInterruptEvent(interrupt: AnyInterrupt, threadId: string)
|
|
|
4976
4976
|
* @param threadId - The thread ID
|
|
4977
4977
|
* @returns An SSE event
|
|
4978
4978
|
*/
|
|
4979
|
-
declare function formatResumeEvent(interruptId: string, value:
|
|
4979
|
+
declare function formatResumeEvent(interruptId: string, value: InterruptPayload, threadId: string): SSEEvent;
|
|
4980
4980
|
/**
|
|
4981
4981
|
* Format an agent waiting event as an SSE event
|
|
4982
4982
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentforge/core",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.27",
|
|
4
4
|
"description": "Production-ready TypeScript agent framework built on LangGraph with orchestration, middleware, and typed abstractions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|