@agent-relay/wrapper 2.1.27-beta.2 → 2.1.27

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/client.js CHANGED
@@ -568,7 +568,7 @@ export class RelayClient {
568
568
  shadowTriggers: options.shadowTriggers,
569
569
  shadowSpeakOn: options.shadowSpeakOn,
570
570
  };
571
- const result = await this.requestResponse('SPAWN', payload, 60000 // 60 second timeout for spawn
571
+ const result = await this.requestResponse('SPAWN', payload, 30000 // 30 second timeout for spawn
572
572
  );
573
573
  return toSpawnResult(result);
574
574
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/wrapper",
3
- "version": "2.1.27-beta.2",
3
+ "version": "2.1.27",
4
4
  "description": "CLI agent wrappers for Agent Relay - tmux, pty integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -30,11 +30,11 @@
30
30
  "clean": "rm -rf dist"
31
31
  },
32
32
  "dependencies": {
33
- "@agent-relay/api-types": "2.1.27-beta.2",
34
- "@agent-relay/protocol": "2.1.27-beta.2",
35
- "@agent-relay/config": "2.1.27-beta.2",
36
- "@agent-relay/continuity": "2.1.27-beta.2",
37
- "@agent-relay/resiliency": "2.1.27-beta.2",
33
+ "@agent-relay/api-types": "2.1.27",
34
+ "@agent-relay/protocol": "2.1.27",
35
+ "@agent-relay/config": "2.1.27",
36
+ "@agent-relay/continuity": "2.1.27",
37
+ "@agent-relay/resiliency": "2.1.27",
38
38
  "zod": "^3.23.8"
39
39
  },
40
40
  "devDependencies": {
@@ -290,7 +290,7 @@ describe('RelayClient', () => {
290
290
  model: 'opus',
291
291
  cwd: '/test/path',
292
292
  }),
293
- 60000
293
+ 30000
294
294
  );
295
295
  expect(result.success).toBe(true);
296
296
  });
package/src/client.ts CHANGED
@@ -750,7 +750,7 @@ export class RelayClient {
750
750
  const result = await this.requestResponse<SpawnResultPayload>(
751
751
  'SPAWN',
752
752
  payload as unknown as Record<string, unknown>,
753
- 60000 // 60 second timeout for spawn
753
+ 30000 // 30 second timeout for spawn
754
754
  );
755
755
 
756
756
  return toSpawnResult(result);