@kartik.doda/openclaw-plugin-test 1.0.5 → 1.1.0

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.
Files changed (45) hide show
  1. package/.skillsignore +5 -0
  2. package/dist/cli/accounts.d.ts +3 -0
  3. package/dist/cli/accounts.d.ts.map +1 -0
  4. package/dist/cli/accounts.js +25 -0
  5. package/dist/cli/accounts.js.map +1 -0
  6. package/dist/cli/bot.d.ts.map +1 -1
  7. package/dist/cli/bot.js +8 -1
  8. package/dist/cli/bot.js.map +1 -1
  9. package/dist/cli/config-updater.d.ts +12 -0
  10. package/dist/cli/config-updater.d.ts.map +1 -1
  11. package/dist/cli/config-updater.js +85 -27
  12. package/dist/cli/config-updater.js.map +1 -1
  13. package/dist/cli/rate-limiter.d.ts +3 -3
  14. package/dist/cli/rate-limiter.d.ts.map +1 -1
  15. package/dist/client/ddp.d.ts +3 -3
  16. package/dist/client/ddp.d.ts.map +1 -1
  17. package/dist/client/ddp.js +2 -1
  18. package/dist/client/ddp.js.map +2 -2
  19. package/dist/config/schema.d.ts +5 -4
  20. package/dist/config/schema.d.ts.map +1 -1
  21. package/dist/config/schema.js +5 -4
  22. package/dist/config/schema.js.map +1 -1
  23. package/dist/index.d.ts.map +1 -1
  24. package/dist/index.js +20 -0
  25. package/dist/index.js.map +1 -1
  26. package/dist/plugin.d.ts.map +1 -1
  27. package/dist/plugin.js +5 -3
  28. package/dist/plugin.js.map +1 -1
  29. package/dist/service/channel.d.ts +6 -0
  30. package/dist/service/channel.d.ts.map +1 -1
  31. package/dist/service/channel.js +78 -42
  32. package/dist/service/channel.js.map +1 -1
  33. package/dist/service/gateway.d.ts +10 -0
  34. package/dist/service/gateway.d.ts.map +1 -1
  35. package/dist/service/gateway.js +196 -52
  36. package/dist/service/gateway.js.map +1 -1
  37. package/dist/service/inbound.d.ts.map +1 -1
  38. package/dist/service/inbound.js +1 -0
  39. package/dist/service/inbound.js.map +1 -1
  40. package/dist/service/turn-limiter.d.ts +9 -0
  41. package/dist/service/turn-limiter.d.ts.map +1 -0
  42. package/dist/service/turn-limiter.js +33 -0
  43. package/dist/service/turn-limiter.js.map +1 -0
  44. package/openclaw.plugin.json +10 -9
  45. package/package.json +2 -2
@@ -2,7 +2,7 @@
2
2
  "id": "rocketchat",
3
3
  "name": "Rocket.Chat",
4
4
  "description": "Rocket.Chat channel plugin with DDP/websocket outbound/inbound",
5
- "version": "1.0.5",
5
+ "version": "1.1.0",
6
6
  "kind": "channel",
7
7
  "channels": [
8
8
  "rocketchat"
@@ -133,28 +133,29 @@
133
133
  "type": "object",
134
134
  "properties": {
135
135
  "maxAccounts": {
136
- "default": 10,
137
136
  "type": "integer",
138
137
  "exclusiveMinimum": 0,
139
- "maximum": 9007199254740991
138
+ "maximum": 50
140
139
  },
141
140
  "maxBotsPerServer": {
142
- "default": 5,
143
141
  "type": "integer",
144
142
  "exclusiveMinimum": 0,
145
- "maximum": 9007199254740991
143
+ "maximum": 25
146
144
  },
147
145
  "botCreationCooldownMs": {
148
- "default": 60000,
149
146
  "type": "integer",
150
- "exclusiveMinimum": 0,
147
+ "minimum": 5000,
151
148
  "maximum": 9007199254740991
152
149
  },
153
150
  "maxReconnects": {
154
- "default": 20,
155
151
  "type": "integer",
156
152
  "exclusiveMinimum": 0,
157
- "maximum": 9007199254740991
153
+ "maximum": 100
154
+ },
155
+ "maxConcurrentTurns": {
156
+ "type": "integer",
157
+ "minimum": 1,
158
+ "maximum": 32
158
159
  }
159
160
  },
160
161
  "additionalProperties": false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kartik.doda/openclaw-plugin-test",
3
- "version": "1.0.5",
3
+ "version": "1.1.0",
4
4
  "description": "A fully unified plugin for integrating Rocket.Chat with OpenClaw. This plugin eliminates the need for an external bridging server, providing a direct, single-place architecture for inbounds, outbounds, session management, and CLI configuration.",
5
5
  "main": "dist/index.js",
6
6
  "openclaw": {
@@ -35,7 +35,7 @@
35
35
  "url": "https://github.com/RocketChat/OpenClaw.Plugin/issues"
36
36
  },
37
37
  "homepage": "https://github.com/RocketChat/OpenClaw.Plugin#readme",
38
- "files": ["dist", "openclaw.plugin.json", "README.md"],
38
+ "files": ["dist", "openclaw.plugin.json", "README.md", ".skillsignore"],
39
39
  "publishConfig": { "access": "public" },
40
40
  "devDependencies": {
41
41
  "@clack/core": "1.4.3",