@agentvault/agentvault 0.19.28 → 0.19.30

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
@@ -48759,7 +48759,9 @@ var init_channel = __esm({
48759
48759
  console.log(`[SecureChannel] A2A sync complete: ${a2aCount} channels`);
48760
48760
  this.emit("a2a_channels_synced", { count: a2aCount });
48761
48761
  if (this._persisted?.a2aChannels) {
48762
- const channelsNeedingKx = Object.entries(this._persisted.a2aChannels).filter(
48762
+ const allEntries = Object.entries(this._persisted.a2aChannels);
48763
+ console.log(`[SecureChannel] A2A key exchange check: ${allEntries.length} channels, details=${JSON.stringify(allEntries.map(([id, e]) => ({ id: id.slice(0, 8), session: !!e.session, pending: !!e.pendingEphemeralPrivateKey, convId: !!e.conversationId })))}`);
48764
+ const channelsNeedingKx = allEntries.filter(
48763
48765
  ([_2, entry]) => !entry.session && !entry.pendingEphemeralPrivateKey && entry.conversationId
48764
48766
  );
48765
48767
  if (channelsNeedingKx.length > 0) {