openclaw-zulip 0.2.2 → 0.2.4

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.
@@ -3,7 +3,6 @@
3
3
  "channels": ["zulip"],
4
4
  "configSchema": {
5
5
  "type": "object",
6
- "additionalProperties": false,
7
6
  "properties": {
8
7
  "serverUrl": {
9
8
  "type": "string",
@@ -29,5 +28,39 @@
29
28
  "default": "bot"
30
29
  }
31
30
  }
31
+ },
32
+ "channelConfigs": {
33
+ "zulip": {
34
+ "label": "Zulip",
35
+ "description": "Zulip bot or user account",
36
+ "schema": {
37
+ "type": "object",
38
+ "properties": {
39
+ "serverUrl": {
40
+ "type": "string",
41
+ "title": "Server URL",
42
+ "description": "Zulip server URL (e.g. https://org.zulipchat.com)"
43
+ },
44
+ "email": {
45
+ "type": "string",
46
+ "title": "Bot email",
47
+ "description": "Bot email address for Zulip API authentication"
48
+ },
49
+ "apiKey": {
50
+ "type": "string",
51
+ "title": "API key",
52
+ "description": "Zulip bot API key",
53
+ "sensitive": true
54
+ },
55
+ "mode": {
56
+ "type": "string",
57
+ "title": "Account mode",
58
+ "description": "bot (default) or user",
59
+ "enum": ["bot", "user"],
60
+ "default": "bot"
61
+ }
62
+ }
63
+ }
64
+ }
32
65
  }
33
66
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-zulip",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "OpenClaw channel plugin for Zulip — clean-room implementation with ACP topic bindings",
5
5
  "license": "MIT",
6
6
  "author": "whizzlefred",