@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/index.js CHANGED
@@ -48885,6 +48885,9 @@ var init_channel = __esm({
48885
48885
  this._lastWakeTick = Date.now();
48886
48886
  try {
48887
48887
  const data = JSON.parse(raw.toString());
48888
+ if (data.event && data.event !== "ping" && data.event !== "typing") {
48889
+ console.log(`[SecureChannel] WS event: ${data.event} conv=${(data.conversation_id || data.data?.conversation_id || "").toString().slice(0, 8)}`);
48890
+ }
48888
48891
  if (data.event === "ping") {
48889
48892
  ws.send(JSON.stringify({ event: "pong" }));
48890
48893
  return;