openclaw-app 1.1.9 → 1.2.0
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/README.md +3 -3
- package/index.js +1377 -0
- package/index.ts +13 -7
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -142,13 +142,13 @@ The relay is a Cloudflare Worker with a Durable Object (`RelayRoom`):
|
|
|
142
142
|
"type": "message",
|
|
143
143
|
"content": "Hello",
|
|
144
144
|
"sessionKey": "relay-session",
|
|
145
|
-
"senderId": "
|
|
146
|
-
"senderName": "
|
|
145
|
+
"senderId": "openclaw-app-user",
|
|
146
|
+
"senderName": "openclaw-app-user"
|
|
147
147
|
}
|
|
148
148
|
```
|
|
149
149
|
|
|
150
150
|
- `sessionKey` — the app's local session identifier; the plugin echoes it back in replies so the app can match them
|
|
151
|
-
- `senderId` / `senderName` — optional; defaults to `"
|
|
151
|
+
- `senderId` / `senderName` — optional; defaults to `"openclaw-app-user"` / `"openclaw-app-user"`
|
|
152
152
|
|
|
153
153
|
### Plugin → App (via relay)
|
|
154
154
|
|