openclaw-channel-basicops 0.1.0 → 0.1.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 +12 -2
- package/package.json +7 -2
package/openclaw.plugin.json
CHANGED
|
@@ -2,10 +2,20 @@
|
|
|
2
2
|
"id": "basicops",
|
|
3
3
|
"name": "BasicOps",
|
|
4
4
|
"description": "BasicOps messaging channel connector (webhooks inbound + MCP outbound)",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.2",
|
|
6
6
|
"entry": "dist/index.js",
|
|
7
|
-
"tags": [
|
|
7
|
+
"tags": [
|
|
8
|
+
"channel",
|
|
9
|
+
"basicops",
|
|
10
|
+
"messaging"
|
|
11
|
+
],
|
|
8
12
|
"docs": {
|
|
9
13
|
"channelDocsPath": "/channels/basicops"
|
|
14
|
+
},
|
|
15
|
+
"configSchema": {
|
|
16
|
+
"type": "object",
|
|
17
|
+
"properties": {},
|
|
18
|
+
"additionalProperties": true,
|
|
19
|
+
"description": "BasicOps channel plugin configuration (placeholder)."
|
|
10
20
|
}
|
|
11
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-channel-basicops",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "BasicOps messaging channel connector for OpenClaw (webhooks inbound + MCP outbound)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,5 +25,10 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"typescript": "^5.9.2"
|
|
27
27
|
},
|
|
28
|
-
"license": "MIT"
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"openclaw": {
|
|
30
|
+
"extensions": [
|
|
31
|
+
"./dist/index.js"
|
|
32
|
+
]
|
|
33
|
+
}
|
|
29
34
|
}
|