@stagewhisper/stagewhisper 0.44.0 → 0.45.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.
@@ -2,7 +2,7 @@
2
2
  "id": "stagewhisper",
3
3
  "name": "StageWhisper",
4
4
  "description": "Turn live call moments into assistant tasks via StageWhisper",
5
- "version": "0.44.0",
5
+ "version": "0.45.0",
6
6
  "channels": [
7
7
  "stagewhisper"
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stagewhisper/stagewhisper",
3
- "version": "0.44.0",
3
+ "version": "0.45.0",
4
4
  "type": "module",
5
5
  "description": "OpenClaw channel plugin that connects StageWhisper live calls to your AI assistant",
6
6
  "license": "MIT",
@@ -11,9 +11,7 @@ function resolveGatewayConfig(api: OpenClawPluginApi): GatewayConfig {
11
11
  const explicitUrl = typeof gw?.url === "string" ? gw.url : null;
12
12
  const url = (explicitUrl ?? `http://127.0.0.1:${port}`).replace(/\/+$/, "");
13
13
 
14
- const token =
15
- (typeof auth?.token === "string" ? auth.token : null) ??
16
- (typeof process !== "undefined" ? process.env.OPENCLAW_GATEWAY_TOKEN ?? null : null);
14
+ const token = typeof auth?.token === "string" ? auth.token : null;
17
15
 
18
16
  return { url, apiKey: token };
19
17
  }