@agentvault/agentvault 0.19.33 → 0.19.34

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/cli.js CHANGED
@@ -48824,6 +48824,9 @@ var init_channel = __esm({
48824
48824
  this._lastWakeTick = Date.now();
48825
48825
  try {
48826
48826
  const data = JSON.parse(raw.toString());
48827
+ if (data.event && data.event !== "ping" && data.event !== "typing") {
48828
+ console.log(`[SecureChannel] WS event: ${data.event} conv=${(data.conversation_id || data.data?.conversation_id || "").toString().slice(0, 8)}`);
48829
+ }
48827
48830
  if (data.event === "ping") {
48828
48831
  ws.send(JSON.stringify({ event: "pong" }));
48829
48832
  return;