@inline-openclaw/inline 0.0.38 → 0.0.40
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 +36 -25
- package/dist/account-inspect-api.js +34 -7
- package/dist/account-inspect-api.js.map +4 -4
- package/dist/approval-handler.runtime.js +1550 -205
- package/dist/approval-handler.runtime.js.map +16 -15
- package/dist/channel-plugin-api.js +2356 -364
- package/dist/channel-plugin-api.js.map +19 -17
- package/dist/index.d.ts +1 -1
- package/dist/inline/accounts.d.ts.map +1 -1
- package/dist/inline/actions.d.ts +1 -1
- package/dist/inline/actions.d.ts.map +1 -1
- package/dist/inline/approval-native.d.ts.map +1 -1
- package/dist/inline/channel.d.ts.map +1 -1
- package/dist/inline/config-schema.d.ts +125 -0
- package/dist/inline/config-schema.d.ts.map +1 -1
- package/dist/inline/exec-approvals.d.ts.map +1 -1
- package/dist/inline/message-tools.d.ts.map +1 -1
- package/dist/inline/monitor.d.ts.map +1 -1
- package/dist/inline/parent-context-tool.d.ts +10 -0
- package/dist/inline/parent-context-tool.d.ts.map +1 -0
- package/dist/inline/policy.d.ts +30 -1
- package/dist/inline/policy.d.ts.map +1 -1
- package/dist/inline/reply-threads.d.ts +12 -0
- package/dist/inline/reply-threads.d.ts.map +1 -1
- package/dist/inline/shared.d.ts +1 -1
- package/dist/inline/thread-participation.d.ts +10 -0
- package/dist/inline/thread-participation.d.ts.map +1 -0
- package/dist/inline/thread-routes.d.ts +28 -0
- package/dist/inline/thread-routes.d.ts.map +1 -0
- package/dist/inline/tool-targets.d.ts +36 -0
- package/dist/inline/tool-targets.d.ts.map +1 -0
- package/dist/runtime-register-api.d.ts.map +1 -1
- package/dist/runtime-register-api.js +1891 -152
- package/dist/runtime-register-api.js.map +19 -15
- package/dist/runtime-setter-api.js +11 -15
- package/dist/runtime-setter-api.js.map +3 -3
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.d.ts.map +1 -1
- package/dist/setup-entry.d.ts +1 -1
- package/dist/setup-plugin-api.js +34 -7
- package/dist/setup-plugin-api.js.map +4 -4
- package/openclaw.plugin.json +725 -58
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inline-openclaw/inline",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.40",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"zod": "4.4.3"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"openclaw": ">=2026.5.
|
|
32
|
+
"openclaw": ">=2026.5.28"
|
|
33
33
|
},
|
|
34
34
|
"peerDependenciesMeta": {
|
|
35
35
|
"openclaw": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "20.17.19",
|
|
41
41
|
"@vitest/coverage-v8": "4.0.16",
|
|
42
|
-
"openclaw": "2026.5.
|
|
42
|
+
"openclaw": "2026.5.28",
|
|
43
43
|
"typescript": "5.8.3",
|
|
44
44
|
"vitest": "4.0.16"
|
|
45
45
|
},
|
|
@@ -88,13 +88,13 @@
|
|
|
88
88
|
"npmSpec": "@inline-openclaw/inline",
|
|
89
89
|
"localPath": "packages/openclaw",
|
|
90
90
|
"defaultChoice": "npm",
|
|
91
|
-
"minHostVersion": ">=2026.5.
|
|
91
|
+
"minHostVersion": ">=2026.5.28"
|
|
92
92
|
},
|
|
93
93
|
"compat": {
|
|
94
|
-
"pluginApi": ">=2026.5.
|
|
94
|
+
"pluginApi": ">=2026.5.28"
|
|
95
95
|
},
|
|
96
96
|
"build": {
|
|
97
|
-
"openclawVersion": "2026.5.
|
|
97
|
+
"openclawVersion": "2026.5.28"
|
|
98
98
|
},
|
|
99
99
|
"release": {
|
|
100
100
|
"publishToClawHub": true,
|