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.
Files changed (2) hide show
  1. package/dist/index.js +5 -2
  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.e2e.exchange",
1455
+ type: "relay.forward",
1456
1456
  userId,
1457
- publicKey: gatewayPublicKey
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squad-openclaw",
3
- "version": "2026.2.1813",
3
+ "version": "2026.2.1814",
4
4
  "description": "Entity registry, filesystem tools, and version management plugin for OpenClaw gateway",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",