@eyeclaw/eyeclaw 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/index.ts +3 -0
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -38,6 +38,9 @@ const plugin = {
38
38
  return
39
39
  }
40
40
 
41
+ // Convert botId to string (OpenClaw may auto-convert "1" to number 1)
42
+ eyeclawConfig.botId = String(eyeclawConfig.botId)
43
+
41
44
  // Set defaults
42
45
  eyeclawConfig.serverUrl = eyeclawConfig.serverUrl || 'http://localhost:3000'
43
46
  eyeclawConfig.reconnectInterval = eyeclawConfig.reconnectInterval || 5000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyeclaw/eyeclaw",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "EyeClaw channel plugin for OpenClaw - Connect your local OpenClaw instance to EyeClaw platform",
5
5
  "type": "module",
6
6
  "main": "./index.ts",