@agentvault/agentvault 0.14.12 → 0.14.13
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/channel.d.ts.map +1 -1
- package/dist/cli.js +8 -0
- package/dist/cli.js.map +2 -2
- package/dist/index.js +8 -0
- package/dist/index.js.map +2 -2
- package/dist/openclaw-entry.d.ts.map +1 -1
- package/dist/openclaw-entry.js +27 -0
- package/dist/openclaw-entry.js.map +2 -2
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -47739,6 +47739,14 @@ var init_channel = __esm({
|
|
|
47739
47739
|
await this._persistState();
|
|
47740
47740
|
}
|
|
47741
47741
|
this.emit("a2a_channel_approved", channelData);
|
|
47742
|
+
if (this.config.onA2AChannelReady && convId) {
|
|
47743
|
+
this.config.onA2AChannelReady({
|
|
47744
|
+
channelId,
|
|
47745
|
+
peerHubAddress: peerHub,
|
|
47746
|
+
role,
|
|
47747
|
+
conversationId: convId
|
|
47748
|
+
});
|
|
47749
|
+
}
|
|
47742
47750
|
}
|
|
47743
47751
|
if (data.event === "a2a_channel_activated") {
|
|
47744
47752
|
const actData = data.data || data;
|