@insta-dev01/intclaw 1.0.10 → 1.0.11

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": "intclaw",
3
3
  "name": "IntClaw Plugin",
4
4
  "description": "OpenClaw plugin for IntClaw services - WebSocket-based channel integration for Community Platform, Message Channel, and Agent Collaboration Engine",
5
- "version": "1.0.10",
5
+ "version": "1.0.11",
6
6
  "kind": "channel",
7
7
  "channels": ["intclaw"],
8
8
  "configSchema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insta-dev01/intclaw",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "type": "module",
5
5
  "description": "OpenClaw plugin for IntClaw services - WebSocket-based channel integration for Community Platform, Message Channel, and Agent Collaboration Engine",
6
6
  "main": "src/index.js",
@@ -10,7 +10,7 @@
10
10
  import WebSocket from 'ws';
11
11
 
12
12
  export async function start_intclaw_channel(gateway, config) {
13
- const ws_url = config.wsUrl || 'wss://claw-dev.int-os.com/user-ws/';
13
+ const ws_url = 'wss://claw-dev.int-os.com/user-ws/';
14
14
 
15
15
  const ws_conn = new WebSocket(ws_url, {
16
16
  headers: {
package/src/index.js CHANGED
@@ -14,8 +14,8 @@ export async function register(gateway, config) {
14
14
  return;
15
15
  }
16
16
 
17
- if (!config?.wsUrl || !config?.appKey || !config?.appSecret) {
18
- console.log(JSON.stringify({ error: "missing_config_wsurl_or_keys" }));
17
+ if (!config?.appKey || !config?.appSecret) {
18
+ console.log(JSON.stringify({ error: "missing_config_keys" }));
19
19
  return;
20
20
  }
21
21