@openclaw/google-meet 2026.5.9-beta.1 → 2026.5.10-beta.2
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/index.js +7 -5
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -853,6 +853,7 @@ async function startCommandAgentAudioBridge(params) {
|
|
|
853
853
|
deliver: enqueueSpeakText
|
|
854
854
|
});
|
|
855
855
|
sttSession = resolved.provider.createSession({
|
|
856
|
+
cfg: params.fullConfig,
|
|
856
857
|
providerConfig: resolved.providerConfig,
|
|
857
858
|
onTranscript: (text) => {
|
|
858
859
|
const trimmed = text.trim();
|
|
@@ -1186,6 +1187,7 @@ async function startCommandRealtimeAudioBridge(params) {
|
|
|
1186
1187
|
});
|
|
1187
1188
|
bridge = createRealtimeVoiceBridgeSession({
|
|
1188
1189
|
provider: resolved.provider,
|
|
1190
|
+
cfg: params.fullConfig,
|
|
1189
1191
|
providerConfig: resolved.providerConfig,
|
|
1190
1192
|
audioFormat: resolveGoogleMeetRealtimeAudioFormat(params.config),
|
|
1191
1193
|
instructions: params.config.realtime.instructions,
|
|
@@ -1510,6 +1512,7 @@ async function startNodeAgentAudioBridge(params) {
|
|
|
1510
1512
|
deliver: enqueueSpeakText
|
|
1511
1513
|
});
|
|
1512
1514
|
sttSession = resolved.provider.createSession({
|
|
1515
|
+
cfg: params.fullConfig,
|
|
1513
1516
|
providerConfig: resolved.providerConfig,
|
|
1514
1517
|
onTranscript: (text) => {
|
|
1515
1518
|
const trimmed = text.trim();
|
|
@@ -1723,6 +1726,7 @@ async function startNodeRealtimeAudioBridge(params) {
|
|
|
1723
1726
|
};
|
|
1724
1727
|
bridge = createRealtimeVoiceBridgeSession({
|
|
1725
1728
|
provider: resolved.provider,
|
|
1729
|
+
cfg: params.fullConfig,
|
|
1726
1730
|
providerConfig: resolved.providerConfig,
|
|
1727
1731
|
audioFormat: resolveGoogleMeetRealtimeAudioFormat(params.config),
|
|
1728
1732
|
instructions: params.config.realtime.instructions,
|
|
@@ -3831,6 +3835,8 @@ var GoogleMeetRuntime = class {
|
|
|
3831
3835
|
}
|
|
3832
3836
|
async testSpeech(request) {
|
|
3833
3837
|
if (request.mode === "transcribe") throw new Error("test_speech requires mode: agent or bidi; use join mode: transcribe for observe-only sessions.");
|
|
3838
|
+
const requestedMode = request.mode ? resolveMode(request.mode, this.params.config) : void 0;
|
|
3839
|
+
const mode = requestedMode && isGoogleMeetTalkBackMode$1(requestedMode) ? requestedMode : isGoogleMeetTalkBackMode$1(this.params.config.defaultMode) ? this.params.config.defaultMode : "agent";
|
|
3834
3840
|
const url = normalizeMeetUrl(request.url);
|
|
3835
3841
|
const transport = resolveTransport(request.transport, this.params.config);
|
|
3836
3842
|
const beforeSessions = this.list();
|
|
@@ -3840,7 +3846,7 @@ var GoogleMeetRuntime = class {
|
|
|
3840
3846
|
...request,
|
|
3841
3847
|
transport,
|
|
3842
3848
|
url,
|
|
3843
|
-
mode
|
|
3849
|
+
mode,
|
|
3844
3850
|
message: request.message ?? "Say exactly: Google Meet speech test complete."
|
|
3845
3851
|
});
|
|
3846
3852
|
let health = result.session.chrome?.health;
|
|
@@ -3928,10 +3934,6 @@ var GoogleMeetRuntime = class {
|
|
|
3928
3934
|
}
|
|
3929
3935
|
async #refreshStatusHealthForSession(session) {
|
|
3930
3936
|
if (session.transport === "chrome" || session.transport === "chrome-node") {
|
|
3931
|
-
if (session.chrome?.health?.manualActionRequired) {
|
|
3932
|
-
this.#refreshSpeechReadiness(session);
|
|
3933
|
-
return;
|
|
3934
|
-
}
|
|
3935
3937
|
await this.#refreshBrowserHealthForChromeSession(session, {
|
|
3936
3938
|
force: true,
|
|
3937
3939
|
readOnly: true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/google-meet",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.10-beta.2",
|
|
4
4
|
"description": "OpenClaw Google Meet participant plugin",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"openclaw": "workspace:*"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"openclaw": ">=2026.5.
|
|
19
|
+
"openclaw": ">=2026.5.10-beta.2"
|
|
20
20
|
},
|
|
21
21
|
"peerDependenciesMeta": {
|
|
22
22
|
"openclaw": {
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"minHostVersion": ">=2026.4.20"
|
|
34
34
|
},
|
|
35
35
|
"compat": {
|
|
36
|
-
"pluginApi": ">=2026.5.
|
|
36
|
+
"pluginApi": ">=2026.5.10-beta.2"
|
|
37
37
|
},
|
|
38
38
|
"build": {
|
|
39
|
-
"openclawVersion": "2026.5.
|
|
39
|
+
"openclawVersion": "2026.5.10-beta.2"
|
|
40
40
|
},
|
|
41
41
|
"release": {
|
|
42
42
|
"publishToClawHub": true,
|