@principal-ai/control-tower-core 0.1.23 → 0.1.24
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.mjs
CHANGED
|
@@ -5480,6 +5480,9 @@ class BaseServer extends TypedEventEmitter {
|
|
|
5480
5480
|
case "ping":
|
|
5481
5481
|
await this.sendToClient(clientId, { type: "pong", timestamp: Date.now() });
|
|
5482
5482
|
break;
|
|
5483
|
+
case "heartbeat":
|
|
5484
|
+
await this.sendToClient(clientId, { type: "heartbeat_ack", timestamp: Date.now() });
|
|
5485
|
+
break;
|
|
5483
5486
|
default:
|
|
5484
5487
|
await this.sendToClient(clientId, {
|
|
5485
5488
|
type: "error",
|
|
@@ -5887,4 +5890,4 @@ export {
|
|
|
5887
5890
|
BaseClient
|
|
5888
5891
|
};
|
|
5889
5892
|
|
|
5890
|
-
//# debugId=
|
|
5893
|
+
//# debugId=144E7B07131D042564756E2164756E21
|