@naylence/agent-sdk 0.3.9 → 0.3.10

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.
@@ -15692,12 +15692,12 @@
15692
15692
  // --- END ENV SHIM ---
15693
15693
 
15694
15694
  // This file is auto-generated during build - do not edit manually
15695
- // Generated from package.json version: 0.3.10
15695
+ // Generated from package.json version: 0.3.11
15696
15696
  /**
15697
15697
  * The package version, injected at build time.
15698
15698
  * @internal
15699
15699
  */
15700
- const VERSION$1 = '0.3.10';
15700
+ const VERSION$1 = '0.3.11';
15701
15701
 
15702
15702
  /**
15703
15703
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -34611,7 +34611,8 @@
34611
34611
  throw new FameTransportClose('WebSocket object is null', 1006);
34612
34612
  }
34613
34613
  // Use a timeout to prevent hanging during shutdown scenarios
34614
- const receiveTimeout = 30000; // 30 seconds
34614
+ // Increased to 1 hour to match server-side keep-alive and prevent idle disconnects
34615
+ const receiveTimeout = 3600000; // 1 hour
34615
34616
  if (this._isFastApiLike && this._websocket.receive_bytes) {
34616
34617
  // FastAPI-style server WebSocket
34617
34618
  const receiveMethod = this._websocket.receive_bytes;