openclaw-linso 1.0.2 → 1.0.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.
package/dist/src/types.js CHANGED
@@ -1,4 +1,4 @@
1
- const RELAY_URL = "ws://api.linso.ai";
1
+ const RELAY_URL = "wss://api.linso.ai";
2
2
  export function resolveLinsoConfig(cfg) {
3
3
  return cfg.channels?.linso ?? {};
4
4
  }
package/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "openclaw-linso",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Linso iOS App channel plugin for OpenClaw — connects via cloud Relay Server",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "openclaw": {
8
- "extensions": ["./dist/index.js"]
8
+ "extensions": [
9
+ "./dist/index.js"
10
+ ]
9
11
  },
10
12
  "files": [
11
13
  "dist/",
package/src/types.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { OpenClawConfig } from "openclaw/plugin-sdk";
2
2
 
3
- const RELAY_URL = "ws://api.linso.ai";
3
+ const RELAY_URL = "wss://api.linso.ai";
4
4
 
5
5
  export type LinsoChannelConfig = {
6
6
  enabled?: boolean;