@opengate/openclaw 0.1.4 → 0.1.7

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/index.js CHANGED
@@ -296,7 +296,7 @@ function formatNotificationSummary(notifications) {
296
296
  }
297
297
 
298
298
  // src/index.ts
299
- var PKG_VERSION = "0.1.1";
299
+ var PKG_VERSION = "0.1.7";
300
300
  async function checkForUpdate() {
301
301
  try {
302
302
  const res = await fetch("https://registry.npmjs.org/@opengate/openclaw/latest", {
@@ -313,7 +313,7 @@ async function checkForUpdate() {
313
313
  }
314
314
  }
315
315
  var DEFAULT_POLL_INTERVAL_MS = 6e5;
316
- var SESSION_KEY = "opengate:inbox";
316
+ var SESSION_KEY = "agent:main:main";
317
317
  function register(api, config) {
318
318
  const mode = config.mode ?? "polling";
319
319
  const pollIntervalMs = config.pollIntervalMs ?? DEFAULT_POLL_INTERVAL_MS;
@@ -1,8 +1,8 @@
1
1
  {
2
- "id": "openclaw",
2
+ "id": "opengate",
3
3
  "name": "OpenGate",
4
4
  "description": "Real-time push notifications from OpenGate to agents via HTTP polling or WebSocket",
5
- "version": "0.1.2",
5
+ "version": "0.1.7",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengate/openclaw",
3
- "version": "0.1.4",
3
+ "version": "0.1.7",
4
4
  "description": "OpenClaw plugin for OpenGate \u2014 real-time agent notifications via HTTP polling or WebSocket",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",