@ascegu/teamily 1.0.7 → 1.0.8

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/monitor.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ascegu/teamily",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "OpenClaw Teamily channel plugin - Team instant messaging server integration",
5
5
  "keywords": [
6
6
  "channel",
package/src/monitor.ts CHANGED
@@ -107,7 +107,10 @@ export class TeamilyMonitor {
107
107
  this.setState("connecting");
108
108
 
109
109
  const wsUrl = new URL(this.account.wsURL);
110
+ wsUrl.searchParams.set("sendID", this.account.userID);
110
111
  wsUrl.searchParams.set("token", this.account.token);
112
+ wsUrl.searchParams.set("platformID", "5");
113
+ wsUrl.searchParams.set("sdkType", "js");
111
114
 
112
115
  try {
113
116
  const ws = new this.wsImpl(wsUrl.toString()) as WebSocket & { isMock?: boolean };