echoclaw-relay-agent 0.17.0 → 0.17.2

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/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -276,8 +276,8 @@ async function runSetup(code, relay, bridgePort) {
276
276
  // Step 1: Pair
277
277
  const pairPromise = new Promise((resolve, reject) => {
278
278
  const timeout = setTimeout(() => {
279
- reject(new Error('Pairing timed out after 60 seconds. Check your code and network.'));
280
- }, 60000);
279
+ reject(new Error('Pairing timed out after 10 minutes. Check your code and network.'));
280
+ }, 10 * 60000);
281
281
  agent.on('paired', (info) => {
282
282
  clearTimeout(timeout);
283
283
  resolve(info);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "echoclaw-relay-agent",
3
- "version": "0.17.0",
3
+ "version": "0.17.2",
4
4
  "description": "EchoClaw Relay Connection — E2E encrypted relay transport, pairing, and session management",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",