agent-relay-runner 0.121.0 → 0.121.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-relay-runner",
|
|
3
|
-
"version": "0.121.
|
|
3
|
+
"version": "0.121.1",
|
|
4
4
|
"description": "Unified provider lifecycle runner for Agent Relay",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"agent-relay-providers": "0.104.3",
|
|
24
|
-
"agent-relay-sdk": "0.2.
|
|
24
|
+
"agent-relay-sdk": "0.2.113",
|
|
25
25
|
"callmux": "0.23.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
@@ -606,6 +606,10 @@ class RelayBusClient extends EventEmitter {
|
|
|
606
606
|
if (frame.type === "resumed") {
|
|
607
607
|
for (const event of frame.payload.events)
|
|
608
608
|
await this.handleEvent(event);
|
|
609
|
+
if (frame.payload.truncated) {
|
|
610
|
+
const nextSince = typeof frame.payload.nextSince === "number" ? frame.payload.nextSince : frame.payload.toSeq;
|
|
611
|
+
this.send({ type: "resume", id: crypto.randomUUID(), payload: { since: nextSince } });
|
|
612
|
+
}
|
|
609
613
|
return;
|
|
610
614
|
}
|
|
611
615
|
if (frame.type === "command.result") {
|