@agentvault/agentvault 0.14.9 → 0.14.11

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
@@ -47280,7 +47280,8 @@ var init_channel = __esm({
47280
47280
  }
47281
47281
  const payload = {
47282
47282
  conversation_id: channelEntry.conversationId,
47283
- plaintext: text,
47283
+ channel_id: channelEntry.channelId,
47284
+ text,
47284
47285
  message_type: "a2a",
47285
47286
  parent_span_id: opts?.parentSpanId
47286
47287
  };
@@ -47545,6 +47546,11 @@ var init_channel = __esm({
47545
47546
  this._scanEngine = new ScanEngine();
47546
47547
  await this._fetchScanRules();
47547
47548
  }
47549
+ try {
47550
+ await this.listA2AChannels();
47551
+ } catch (err) {
47552
+ console.warn("[SecureChannel] A2A channel sync failed (non-fatal):", err);
47553
+ }
47548
47554
  if (!this._telemetryReporter && this._persisted?.deviceJwt && this._persisted?.hubId) {
47549
47555
  this._telemetryReporter = new TelemetryReporter({
47550
47556
  apiBase: this.config.apiUrl,