@openclaw/google-meet 2026.5.12-beta.8 → 2026.5.14-beta.1

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.
@@ -1,4 +1,4 @@
1
- import { _ as googleApiError } from "./chrome-create-D0XLX4Ed.js";
1
+ import { _ as googleApiError } from "./chrome-create-Bd4beDZU.js";
2
2
  import { fetchWithSsrFGuard } from "openclaw/plugin-sdk/ssrf-runtime";
3
3
  //#region extensions/google-meet/src/calendar.ts
4
4
  const GOOGLE_CALENDAR_API_BASE_URL = "https://www.googleapis.com/calendar/v3";
@@ -686,7 +686,11 @@ async function resolveChromeNode(params) {
686
686
  }
687
687
  function unwrapNodeInvokePayload(raw) {
688
688
  const record = raw && typeof raw === "object" ? raw : {};
689
- if (typeof record.payloadJSON === "string" && record.payloadJSON.trim()) return JSON.parse(record.payloadJSON);
689
+ if (typeof record.payloadJSON === "string" && record.payloadJSON.trim()) try {
690
+ return JSON.parse(record.payloadJSON);
691
+ } catch (error) {
692
+ throw new Error("Google Meet browser proxy returned malformed payloadJSON.", { cause: error });
693
+ }
690
694
  if ("payload" in record) return record.payload;
691
695
  return raw;
692
696
  }
@@ -1,7 +1,7 @@
1
- import { d as createGoogleMeetSpace, f as endGoogleMeetActiveConference, g as fetchLatestGoogleMeetConferenceRecord, h as fetchGoogleMeetSpace, m as fetchGoogleMeetAttendance, p as fetchGoogleMeetArtifacts, u as buildGoogleMeetPreflightReport } from "./chrome-create-D0XLX4Ed.js";
2
- import { n as findGoogleMeetCalendarEvent, r as listGoogleMeetCalendarEvents, t as buildGoogleMeetCalendarDayWindow } from "./calendar-DXHh6IyF.js";
1
+ import { d as createGoogleMeetSpace, f as endGoogleMeetActiveConference, g as fetchLatestGoogleMeetConferenceRecord, h as fetchGoogleMeetSpace, m as fetchGoogleMeetAttendance, p as fetchGoogleMeetArtifacts, u as buildGoogleMeetPreflightReport } from "./chrome-create-Bd4beDZU.js";
2
+ import { n as findGoogleMeetCalendarEvent, r as listGoogleMeetCalendarEvents, t as buildGoogleMeetCalendarDayWindow } from "./calendar-BMtsguNV.js";
3
3
  import { buildGoogleMeetAuthUrl, createGoogleMeetOAuthState, createGoogleMeetPkce, exchangeGoogleMeetAuthCode, resolveGoogleMeetAccessToken, waitForGoogleMeetAuthCode } from "./oauth-BJwzuzT-.js";
4
- import { hasCreateSpaceConfigInput, resolveCreateSpaceConfig } from "./create-DTXzAV4a.js";
4
+ import { hasCreateSpaceConfigInput, resolveCreateSpaceConfig } from "./create-CJGiIpwq.js";
5
5
  import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
6
6
  import { callGatewayFromCli } from "openclaw/plugin-sdk/gateway-runtime";
7
7
  import path from "node:path";
@@ -1,4 +1,4 @@
1
- import { d as createGoogleMeetSpace, t as createMeetWithBrowserProxyOnNode } from "./chrome-create-D0XLX4Ed.js";
1
+ import { d as createGoogleMeetSpace, t as createMeetWithBrowserProxyOnNode } from "./chrome-create-Bd4beDZU.js";
2
2
  import { resolveGoogleMeetAccessToken } from "./oauth-BJwzuzT-.js";
3
3
  import { normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";
4
4
  //#region extensions/google-meet/src/create.ts
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import { a as isSameMeetUrlForReuse, c as resolveChromeNode, f as endGoogleMeetActiveConference, g as fetchLatestGoogleMeetConferenceRecord, h as fetchGoogleMeetSpace, i as callBrowserProxyOnNode, l as resolveChromeNodeInfo, m as fetchGoogleMeetAttendance, n as isGoogleMeetBrowserManualActionError, o as normalizeMeetUrlForReuse, p as fetchGoogleMeetArtifacts, r as asBrowserTabs, s as readBrowserTab, t as createMeetWithBrowserProxyOnNode, u as buildGoogleMeetPreflightReport } from "./chrome-create-D0XLX4Ed.js";
2
- import { n as findGoogleMeetCalendarEvent, r as listGoogleMeetCalendarEvents, t as buildGoogleMeetCalendarDayWindow } from "./calendar-DXHh6IyF.js";
1
+ import { a as isSameMeetUrlForReuse, c as resolveChromeNode, f as endGoogleMeetActiveConference, g as fetchLatestGoogleMeetConferenceRecord, h as fetchGoogleMeetSpace, i as callBrowserProxyOnNode, l as resolveChromeNodeInfo, m as fetchGoogleMeetAttendance, n as isGoogleMeetBrowserManualActionError, o as normalizeMeetUrlForReuse, p as fetchGoogleMeetArtifacts, r as asBrowserTabs, s as readBrowserTab, t as createMeetWithBrowserProxyOnNode, u as buildGoogleMeetPreflightReport } from "./chrome-create-Bd4beDZU.js";
2
+ import { n as findGoogleMeetCalendarEvent, r as listGoogleMeetCalendarEvents, t as buildGoogleMeetCalendarDayWindow } from "./calendar-BMtsguNV.js";
3
3
  import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
4
4
  import { ErrorCodes, GatewayClient, callGatewayFromCli, errorShape, startGatewayClientWhenEventLoopReady } from "openclaw/plugin-sdk/gateway-runtime";
5
5
  import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
@@ -2089,7 +2089,12 @@ function parseNodeStartResult(raw) {
2089
2089
  function parseMeetBrowserStatus(result) {
2090
2090
  const raw = (result && typeof result === "object" ? result : {}).result;
2091
2091
  if (typeof raw !== "string" || !raw.trim()) return;
2092
- const parsed = JSON.parse(raw);
2092
+ let parsed;
2093
+ try {
2094
+ parsed = JSON.parse(raw);
2095
+ } catch {
2096
+ throw new Error("Google Meet browser status JSON is malformed.");
2097
+ }
2093
2098
  return {
2094
2099
  inCall: parsed.inCall,
2095
2100
  micMuted: parsed.micMuted,
@@ -3048,7 +3053,13 @@ function stopChrome(params) {
3048
3053
  };
3049
3054
  }
3050
3055
  async function handleGoogleMeetNodeHostCommand(paramsJSON) {
3051
- const params = asRecord$1(paramsJSON ? JSON.parse(paramsJSON) : {});
3056
+ let raw = {};
3057
+ if (paramsJSON) try {
3058
+ raw = JSON.parse(paramsJSON);
3059
+ } catch {
3060
+ throw new Error("Google Meet node host received malformed params JSON.");
3061
+ }
3062
+ const params = asRecord$1(raw);
3052
3063
  const action = readString(params.action);
3053
3064
  let result;
3054
3065
  switch (action) {
@@ -4437,10 +4448,10 @@ async function callGoogleMeetGatewayFromTool(params) {
4437
4448
  }
4438
4449
  }
4439
4450
  async function createMeetFromParams(params) {
4440
- return (await import("./create-DTXzAV4a.js")).createMeetFromParams(params);
4451
+ return (await import("./create-CJGiIpwq.js")).createMeetFromParams(params);
4441
4452
  }
4442
4453
  async function createAndJoinMeetFromParams(params) {
4443
- return (await import("./create-DTXzAV4a.js")).createAndJoinMeetFromParams(params);
4454
+ return (await import("./create-CJGiIpwq.js")).createAndJoinMeetFromParams(params);
4444
4455
  }
4445
4456
  async function resolveGoogleMeetTokenFromParams(config, raw) {
4446
4457
  const { resolveGoogleMeetAccessToken } = await import("./oauth-BJwzuzT-.js");
@@ -4532,7 +4543,7 @@ async function exportGoogleMeetBundleFromParams(config, raw) {
4532
4543
  lateAfterMinutes: resolved.lateAfterMinutes,
4533
4544
  earlyBeforeMinutes: resolved.earlyBeforeMinutes
4534
4545
  })]);
4535
- const { buildGoogleMeetExportManifest, googleMeetExportFileNames, writeMeetExportBundle } = await import("./cli-CGPKAXd7.js");
4546
+ const { buildGoogleMeetExportManifest, googleMeetExportFileNames, writeMeetExportBundle } = await import("./cli-hjf5xNts.js");
4536
4547
  const calendarId = normalizeOptionalString(raw.calendarId);
4537
4548
  const request = {
4538
4549
  ...resolved.meeting ? { meeting: resolved.meeting } : {},
@@ -4948,7 +4959,7 @@ var google_meet_default = definePluginEntry({
4948
4959
  handle: handleGoogleMeetNodeHostCommand
4949
4960
  });
4950
4961
  api.registerCli(async ({ program }) => {
4951
- const { registerGoogleMeetCli } = await import("./cli-CGPKAXd7.js");
4962
+ const { registerGoogleMeetCli } = await import("./cli-hjf5xNts.js");
4952
4963
  registerGoogleMeetCli({
4953
4964
  program,
4954
4965
  config,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/google-meet",
3
- "version": "2026.5.12-beta.8",
3
+ "version": "2026.5.14-beta.1",
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.12-beta.8"
19
+ "openclaw": ">=2026.5.14-beta.1"
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.12-beta.8"
36
+ "pluginApi": ">=2026.5.14-beta.1"
37
37
  },
38
38
  "build": {
39
- "openclawVersion": "2026.5.12-beta.8"
39
+ "openclawVersion": "2026.5.14-beta.1"
40
40
  },
41
41
  "release": {
42
42
  "publishToClawHub": true,