@agentvault/agentvault 0.20.3 → 0.20.5
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 -2
- package/dist/cli.js.map +2 -2
- package/dist/index.js +8 -2
- package/dist/index.js.map +2 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -65566,6 +65566,12 @@ var init_channel = __esm({
|
|
|
65566
65566
|
console.warn("[SecureChannel] Delivery pull on ping failed:", err);
|
|
65567
65567
|
});
|
|
65568
65568
|
}
|
|
65569
|
+
if (data.event === "mls_welcome_requested") {
|
|
65570
|
+
console.log(`[SecureChannel] mls_welcome_requested for group ${(data.data?.group_id || "").slice(0, 8)} \u2014 pulling deliveries`);
|
|
65571
|
+
this._pullDeliveryQueue().catch((err) => {
|
|
65572
|
+
console.warn("[SecureChannel] Delivery pull on welcome request failed:", err);
|
|
65573
|
+
});
|
|
65574
|
+
}
|
|
65569
65575
|
if (data.event === "mls_sync_response") {
|
|
65570
65576
|
try {
|
|
65571
65577
|
await this._handleMlsSyncResponse(data.data || data);
|
|
@@ -67342,7 +67348,7 @@ ${messageText}`;
|
|
|
67342
67348
|
Authorization: `Bearer ${this._deviceJwt}`,
|
|
67343
67349
|
"Content-Type": "application/json"
|
|
67344
67350
|
},
|
|
67345
|
-
body: JSON.stringify({ member_device_ids: [] })
|
|
67351
|
+
body: JSON.stringify({ member_device_ids: [this._persisted.deviceId] })
|
|
67346
67352
|
}
|
|
67347
67353
|
);
|
|
67348
67354
|
if (!mlsInitRes.ok) {
|
|
@@ -94488,7 +94494,7 @@ var init_index = __esm({
|
|
|
94488
94494
|
init_skill_invoker();
|
|
94489
94495
|
await init_skill_telemetry();
|
|
94490
94496
|
await init_policy_enforcer();
|
|
94491
|
-
VERSION = true ? "0.20.
|
|
94497
|
+
VERSION = true ? "0.20.5" : "0.0.0-dev";
|
|
94492
94498
|
}
|
|
94493
94499
|
});
|
|
94494
94500
|
await init_index();
|