@inline-openclaw/inline 0.0.58 → 0.0.60
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 +5 -5
- package/dist/approval-handler.runtime.js +1304 -17
- package/dist/approval-handler.runtime.js.map +10 -9
- package/dist/channel-plugin-api.js +1506 -88
- package/dist/channel-plugin-api.js.map +13 -11
- package/dist/runtime-register-api.js +1304 -14
- package/dist/runtime-register-api.js.map +7 -7
- package/docs/openclaw-setup.md +1 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
package/docs/openclaw-setup.md
CHANGED
|
@@ -13,8 +13,7 @@ openclaw plugins install @inline-openclaw/inline
|
|
|
13
13
|
If already installed, update to latest:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
openclaw
|
|
17
|
-
openclaw plugins update inline
|
|
16
|
+
openclaw plugins install --force @inline-openclaw/inline@latest
|
|
18
17
|
openclaw gateway restart
|
|
19
18
|
openclaw plugins list
|
|
20
19
|
openclaw channels status
|
package/openclaw.plugin.json
CHANGED
|
@@ -1070,7 +1070,7 @@
|
|
|
1070
1070
|
},
|
|
1071
1071
|
"parseMarkdown": {
|
|
1072
1072
|
"label": "Inline Markdown",
|
|
1073
|
-
"help": "Parse
|
|
1073
|
+
"help": "Parse Inline's supported Markdown surface for outgoing text. Defaults to true; false disables Inline parsing."
|
|
1074
1074
|
},
|
|
1075
1075
|
"mediaMaxMb": {
|
|
1076
1076
|
"label": "Inline Media Limit",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inline-openclaw/inline",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.60",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"check": "bun run typecheck && bun run lint && bun run test && bun run build"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@inline-chat/realtime-sdk": "0.0.
|
|
38
|
+
"@inline-chat/realtime-sdk": "0.0.16",
|
|
39
39
|
"zod": "4.4.3"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|