openclaw-channel-basicops 0.1.2 → 0.1.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.
@@ -2,7 +2,7 @@
2
2
  "id": "basicops",
3
3
  "name": "BasicOps",
4
4
  "description": "BasicOps messaging channel connector (webhooks inbound + MCP outbound)",
5
- "version": "0.1.2",
5
+ "version": "0.1.3",
6
6
  "entry": "dist/index.js",
7
7
  "tags": [
8
8
  "channel",
@@ -14,8 +14,73 @@
14
14
  },
15
15
  "configSchema": {
16
16
  "type": "object",
17
- "properties": {},
18
- "additionalProperties": true,
19
- "description": "BasicOps channel plugin configuration (placeholder)."
17
+ "properties": {
18
+ "channels": {
19
+ "type": "object",
20
+ "properties": {
21
+ "basicops": {
22
+ "type": "object",
23
+ "properties": {
24
+ "accounts": {
25
+ "type": "object",
26
+ "description": "BasicOps accounts keyed by id (e.g. default).",
27
+ "additionalProperties": {
28
+ "type": "object",
29
+ "properties": {
30
+ "enabled": {
31
+ "type": "boolean",
32
+ "default": true
33
+ },
34
+ "agentUsername": {
35
+ "type": "string",
36
+ "default": "Gus"
37
+ },
38
+ "respondOnlyWhenMentioned": {
39
+ "type": "boolean",
40
+ "default": true
41
+ },
42
+ "mcp": {
43
+ "type": "object",
44
+ "properties": {
45
+ "accessToken": {
46
+ "type": "string",
47
+ "title": "BasicOps MCP access token"
48
+ },
49
+ "baseUrl": {
50
+ "type": "string",
51
+ "default": "https://app.basicops.com/mcp/sse"
52
+ }
53
+ },
54
+ "required": [
55
+ "accessToken"
56
+ ]
57
+ },
58
+ "webhooks": {
59
+ "type": "object",
60
+ "properties": {
61
+ "enabled": {
62
+ "type": "boolean",
63
+ "default": true
64
+ },
65
+ "pathToken": {
66
+ "type": "string",
67
+ "title": "Webhook path token"
68
+ }
69
+ },
70
+ "required": [
71
+ "pathToken"
72
+ ]
73
+ }
74
+ },
75
+ "required": [
76
+ "enabled"
77
+ ]
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
83
+ }
84
+ }
20
85
  }
21
86
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-channel-basicops",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "BasicOps messaging channel connector for OpenClaw (webhooks inbound + MCP outbound)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",