@eyeclaw/eyeclaw 2.0.9 → 2.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/channel.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyeclaw/eyeclaw",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
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",
package/src/channel.ts CHANGED
@@ -12,11 +12,11 @@ let _runtime: any = null
12
12
  /**
13
13
  * Set the plugin runtime (called during plugin registration)
14
14
  */
15
- function setRuntime(runtime: any) {
15
+ export function setRuntime(runtime: any) {
16
16
  _runtime = runtime
17
17
  }
18
18
 
19
- function getRuntime() {
19
+ export function getRuntime() {
20
20
  return _runtime
21
21
  }
22
22