@stagewhisper/stagewhisper 0.20.0 → 0.22.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.
- package/openclaw.plugin.json +2 -2
- package/package.json +1 -1
- package/plugin-main.ts +3 -2
- package/src/channel.ts +3 -3
package/openclaw.plugin.json
CHANGED
|
@@ -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.
|
|
5
|
+
"version": "0.22.0",
|
|
6
6
|
"channels": [
|
|
7
7
|
"stagewhisper"
|
|
8
8
|
],
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"apiBaseUrl": {
|
|
17
17
|
"type": "string",
|
|
18
18
|
"description": "StageWhisper backend URL (e.g. https://api.stagewhisper.io)",
|
|
19
|
-
"default": ""
|
|
19
|
+
"default": "https://api.stagewhisper.io"
|
|
20
20
|
},
|
|
21
21
|
"integrationId": {
|
|
22
22
|
"type": "string",
|
package/package.json
CHANGED
package/plugin-main.ts
CHANGED
|
@@ -23,9 +23,10 @@ export default definePluginEntry({
|
|
|
23
23
|
"Pair with StageWhisper using a pairing code from the desktop app",
|
|
24
24
|
)
|
|
25
25
|
.requiredOption("--code <code>", "Pairing code from Settings → Assistant")
|
|
26
|
-
.
|
|
26
|
+
.option(
|
|
27
27
|
"--api-url <url>",
|
|
28
|
-
"StageWhisper backend URL
|
|
28
|
+
"StageWhisper backend URL",
|
|
29
|
+
"https://api.stagewhisper.io",
|
|
29
30
|
)
|
|
30
31
|
.option("--label <label>", "Label for this OpenClaw host", "OpenClaw")
|
|
31
32
|
.action(
|
package/src/channel.ts
CHANGED
|
@@ -37,9 +37,9 @@ export function resolveAccount(
|
|
|
37
37
|
| undefined;
|
|
38
38
|
|
|
39
39
|
const apiBaseUrl =
|
|
40
|
-
(section["apiBaseUrl"] as string)
|
|
41
|
-
(swConfig?.["apiBaseUrl"] as string)
|
|
42
|
-
"";
|
|
40
|
+
(section["apiBaseUrl"] as string) ||
|
|
41
|
+
(swConfig?.["apiBaseUrl"] as string) ||
|
|
42
|
+
"https://api.stagewhisper.io";
|
|
43
43
|
const integrationId =
|
|
44
44
|
(section["integrationId"] as string) ??
|
|
45
45
|
(swConfig?.["integrationId"] as string) ??
|