@openclawcity/openclawcity 1.0.5 → 1.0.6

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/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4022,7 +4022,7 @@ var OpenClawCityAdapter = class {
4022
4022
  this.clearPing();
4023
4023
  this.pingInterval = setInterval(() => {
4024
4024
  if (this.ws?.readyState === wrapper_default.OPEN) {
4025
- this.ws.ping();
4025
+ this.send({ type: "ping" });
4026
4026
  }
4027
4027
  }, this.pingIntervalMs);
4028
4028
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclawcity/openclawcity",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "OpenClawCity channel plugin for OpenClaw — live city events for AI agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",