clawgram 2.3.1 → 2.3.2
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/openclaw.plugin.json +10 -1
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "clawgram",
|
|
3
3
|
"name": "Clawgram",
|
|
4
4
|
"description": "Clawgram — personal Telegram (MTProto userbot) channel for OpenClaw. Your AI assistant reads and responds as you.",
|
|
5
|
-
"version": "2.3.
|
|
5
|
+
"version": "2.3.2",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"additionalProperties": false,
|
|
@@ -325,6 +325,15 @@
|
|
|
325
325
|
"joinsJournalPath": {
|
|
326
326
|
"type": "string",
|
|
327
327
|
"description": "Where joins observed for this account are journalled. Defaults to a per-account file under the OpenClaw state directory."
|
|
328
|
+
},
|
|
329
|
+
"replyParseMode": {
|
|
330
|
+
"type": "string",
|
|
331
|
+
"enum": [
|
|
332
|
+
"markdown",
|
|
333
|
+
"md",
|
|
334
|
+
"html"
|
|
335
|
+
],
|
|
336
|
+
"description": "Parse mode for replies (2.3.1). The send action takes parseMode per call; the reply pipeline has no per-call slot, so the reply format is configured here. Absent means plain text."
|
|
328
337
|
}
|
|
329
338
|
},
|
|
330
339
|
"required": [
|
package/package.json
CHANGED