clawgram 2.3.1 → 2.3.3
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/channel.js +5 -0
- package/openclaw.plugin.json +10 -1
- package/package.json +1 -1
package/dist/channel.js
CHANGED
|
@@ -121,6 +121,11 @@ const createChannelPlugin = (runtimes) => {
|
|
|
121
121
|
enabled: account?.enabled,
|
|
122
122
|
accountId,
|
|
123
123
|
proxy: (0, proxy_config_1.resolveProxyConfig)(account?.proxy),
|
|
124
|
+
// Field-by-field construction means every new account setting has to
|
|
125
|
+
// be listed here as well: 2.3.1 shipped replyParseMode read by the
|
|
126
|
+
// client from a config object this function had already stripped it
|
|
127
|
+
// from, so the setting validated, deployed and did nothing.
|
|
128
|
+
replyParseMode: account?.replyParseMode,
|
|
124
129
|
};
|
|
125
130
|
},
|
|
126
131
|
},
|
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.3",
|
|
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