@eyeclaw/eyeclaw 2.2.0 → 2.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyeclaw/eyeclaw",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "EyeClaw plugin for OpenClaw - HTTP SSE streaming + WebSocket client",
5
5
  "type": "module",
6
6
  "main": "./index.ts",
@@ -284,7 +284,7 @@ export class EyeClawWebSocketClient {
284
284
  private startPing() {
285
285
  this.pingInterval = setInterval(() => {
286
286
  this.send({ type: 'ping' })
287
- }, 30000)
287
+ }, 60000) // 60秒心跳一次
288
288
  }
289
289
 
290
290
  /**