Google Chat: restore public sdk exports

This commit is contained in:
scoootscooob
2026-03-17 22:51:44 -07:00
parent 373cadde8b
commit fad6e71c64
6 changed files with 22 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
import { createAccountListHelpers } from "openclaw/plugin-sdk/account-helpers";
import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "openclaw/plugin-sdk/account-id";
import { isSecretRef, createAccountListHelpers, type OpenClawConfig } from "../runtime-api.js";
import { isSecretRef, type OpenClawConfig } from "openclaw/plugin-sdk/core";
import type { GoogleChatAccountConfig } from "./types.config.js";
export type GoogleChatCredentialSource = "file" | "inline" | "env" | "none";

View File

@@ -1,5 +1,5 @@
import { resolveChannelGroupRequireMention } from "openclaw/plugin-sdk/channel-policy";
import type { OpenClawConfig } from "../runtime-api.js";
import type { OpenClawConfig } from "openclaw/plugin-sdk/core";
type GoogleChatGroupContext = {
cfg: OpenClawConfig;

View File

@@ -1,4 +1,4 @@
import type { OpenClawConfig } from "../runtime-api.js";
import type { OpenClawConfig } from "openclaw/plugin-sdk/core";
import type { ResolvedGoogleChatAccount } from "./accounts.js";
import type { GoogleChatAudienceType } from "./auth.js";
import { getGoogleChatRuntime } from "./runtime.js";

View File

@@ -54,6 +54,7 @@ export type {
PluginInteractiveTelegramHandlerContext,
} from "../plugins/types.js";
export type { OpenClawConfig } from "../config/config.js";
export { isSecretRef } from "../config/types.secrets.js";
export type { GatewayRequestHandlerOptions } from "../gateway/server-methods/types.js";
export type {
ChannelOutboundSessionRoute,

View File

@@ -20,6 +20,7 @@ export {
export { buildComputedAccountStatusSnapshot } from "./status-helpers.js";
export { buildChannelConfigSchema } from "../channels/plugins/config-schema.js";
export { createAccountStatusSink, runPassiveAccountLifecycle } from "./channel-lifecycle.js";
export { resolveGoogleChatGroupRequireMention } from "../../extensions/googlechat/src/group-policy.js";
export { formatPairingApproveHint } from "../channels/plugins/helpers.js";
export { resolveChannelMediaMaxBytes } from "../channels/plugins/media-limits.js";
export {
@@ -64,6 +65,8 @@ export { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../routing/session-key.j
export { resolveDmGroupAccessWithLists } from "../security/dm-policy-shared.js";
export { formatDocsLink } from "../terminal/links.js";
export type { WizardPrompter } from "../wizard/prompts.js";
export { googlechatSetupAdapter } from "../../extensions/googlechat/api.js";
export { googlechatSetupWizard } from "../../extensions/googlechat/api.js";
export { resolveInboundRouteEnvelopeBuilderWithRuntime } from "./inbound-envelope.js";
export { createScopedPairingAccess } from "./pairing-access.js";
export { issuePairingChallenge } from "../pairing/pairing-challenge.js";

View File

@@ -73,6 +73,7 @@ describe("plugin-sdk subpath exports", () => {
expect(typeof coreSdk.defineChannelPluginEntry).toBe("function");
expect(typeof coreSdk.defineSetupPluginEntry).toBe("function");
expect(typeof coreSdk.createChannelPluginBase).toBe("function");
expect(typeof coreSdk.isSecretRef).toBe("function");
expect(typeof coreSdk.optionalStringEnum).toBe("function");
expect("runPassiveAccountLifecycle" in asExports(coreSdk)).toBe(false);
expect("createLoggerBackedRuntime" in asExports(coreSdk)).toBe(false);
@@ -262,6 +263,19 @@ describe("plugin-sdk subpath exports", () => {
expect(typeof googlechatSdk.buildChannelConfigSchema).toBe("function");
expect(typeof googlechatSdk.createWebhookInFlightLimiter).toBe("function");
expect(typeof googlechatSdk.fetchWithSsrFGuard).toBe("function");
expect(typeof googlechatSdk.googlechatSetupWizard).toBe("object");
expect(typeof googlechatSdk.googlechatSetupAdapter).toBe("object");
expect(typeof googlechatSdk.resolveGoogleChatGroupRequireMention).toBe("function");
});
it("keeps the Google Chat runtime seam aligned with the public SDK subpath", async () => {
const googlechatRuntimeApi = await import("../../extensions/googlechat/runtime-api.js");
expect(typeof googlechatRuntimeApi.buildChannelConfigSchema).toBe("function");
expect(typeof googlechatRuntimeApi.createWebhookInFlightLimiter).toBe("function");
expect(typeof googlechatRuntimeApi.fetchWithSsrFGuard).toBe("function");
expect(typeof googlechatRuntimeApi.createActionGate).toBe("function");
expect(typeof googlechatRuntimeApi.resolveWebhookTargetWithAuthOrReject).toBe("function");
});
it("exports Zalo helpers", async () => {