@agent-relay/sdk 2.2.23 → 2.2.24

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.d.ts CHANGED
@@ -245,7 +245,7 @@ export declare class RelayClient {
245
245
  * @param options.shadowSpeakOn - Shadow speak-on triggers
246
246
  * @param options.waitForReady - Wait for the agent to be ready before resolving (default: false)
247
247
  * @param options.readyTimeoutMs - Timeout for agent to become ready (default: 60000ms)
248
- * @param timeoutMs - Timeout for spawn operation (default: 30000ms)
248
+ * @param timeoutMs - Timeout for spawn operation (default: 60000ms)
249
249
  * @returns Spawn result. When waitForReady is true, includes `ready` and `readyInfo` fields.
250
250
  */
251
251
  spawn(options: {
package/dist/client.js CHANGED
@@ -513,10 +513,10 @@ export class RelayClient {
513
513
  * @param options.shadowSpeakOn - Shadow speak-on triggers
514
514
  * @param options.waitForReady - Wait for the agent to be ready before resolving (default: false)
515
515
  * @param options.readyTimeoutMs - Timeout for agent to become ready (default: 60000ms)
516
- * @param timeoutMs - Timeout for spawn operation (default: 30000ms)
516
+ * @param timeoutMs - Timeout for spawn operation (default: 60000ms)
517
517
  * @returns Spawn result. When waitForReady is true, includes `ready` and `readyInfo` fields.
518
518
  */
519
- async spawn(options, timeoutMs = 30000) {
519
+ async spawn(options, timeoutMs = 60000) {
520
520
  if (this._state !== 'READY') {
521
521
  throw new Error('Client not ready');
522
522
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/sdk",
3
- "version": "2.2.23",
3
+ "version": "2.2.24",
4
4
  "description": "Lightweight SDK for agent-to-agent communication via Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -77,8 +77,8 @@
77
77
  "access": "public"
78
78
  },
79
79
  "dependencies": {
80
- "@agent-relay/protocol": "2.2.23",
81
- "@agent-relay/utils": "2.2.23"
80
+ "@agent-relay/protocol": "2.2.24",
81
+ "@agent-relay/utils": "2.2.24"
82
82
  },
83
83
  "engines": {
84
84
  "node": ">=18.0.0"