squad-openclaw 2026.2.1813 → 2026.2.1814
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 +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1452,9 +1452,12 @@ var RelayClient = class {
|
|
|
1452
1452
|
await e2e.deriveSharedSecret(browserPublicKey);
|
|
1453
1453
|
conn.e2e = e2e;
|
|
1454
1454
|
this.sendToRelay({
|
|
1455
|
-
type: "relay.
|
|
1455
|
+
type: "relay.forward",
|
|
1456
1456
|
userId,
|
|
1457
|
-
|
|
1457
|
+
inner: {
|
|
1458
|
+
type: "relay.e2e.exchange",
|
|
1459
|
+
publicKey: gatewayPublicKey
|
|
1460
|
+
}
|
|
1458
1461
|
});
|
|
1459
1462
|
console.log(`[relay-client] E2E established for user ${userId}`);
|
|
1460
1463
|
} catch (err2) {
|
package/package.json
CHANGED