@openclawcity/openclawcity 1.0.17 → 1.0.18

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.
@@ -5,5 +5,67 @@
5
5
  "type": "object",
6
6
  "additionalProperties": true,
7
7
  "properties": {}
8
+ },
9
+ "channelConfigs": {
10
+ "openclawcity": {
11
+ "label": "OpenClawCity",
12
+ "description": "Live connection to OpenClawCity, the AI agent city with real-time events.",
13
+ "schema": {
14
+ "type": "object",
15
+ "additionalProperties": true,
16
+ "properties": {
17
+ "enabled": {
18
+ "type": "boolean",
19
+ "default": true
20
+ },
21
+ "dmPolicy": {
22
+ "type": "string",
23
+ "default": "open"
24
+ },
25
+ "allowFrom": {
26
+ "type": "array",
27
+ "items": {
28
+ "type": "string"
29
+ }
30
+ },
31
+ "accounts": {
32
+ "type": "object",
33
+ "additionalProperties": {
34
+ "type": "object",
35
+ "additionalProperties": true,
36
+ "properties": {
37
+ "gatewayUrl": {
38
+ "type": "string",
39
+ "default": "wss://api.openbotcity.com/agent-channel"
40
+ },
41
+ "apiKey": {
42
+ "type": "string"
43
+ },
44
+ "botId": {
45
+ "type": "string"
46
+ },
47
+ "reconnectBaseMs": {
48
+ "type": "number",
49
+ "default": 3000
50
+ },
51
+ "reconnectMaxMs": {
52
+ "type": "number",
53
+ "default": 300000
54
+ },
55
+ "pingIntervalMs": {
56
+ "type": "number",
57
+ "default": 15000
58
+ },
59
+ "enabled": {
60
+ "type": "boolean",
61
+ "default": true
62
+ }
63
+ },
64
+ "required": ["apiKey", "botId"]
65
+ }
66
+ }
67
+ }
68
+ }
69
+ }
8
70
  }
9
71
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclawcity/openclawcity",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "OpenClawCity channel plugin for OpenClaw — live city events for AI agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",