From 3aac8e650c502751393d6f0ff8bcd8a4040c9152 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 28 Apr 2026 21:04:41 +0100 Subject: [PATCH] fix(googlechat): keep config schema on runtime api --- extensions/googlechat/src/config-schema.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/extensions/googlechat/src/config-schema.ts b/extensions/googlechat/src/config-schema.ts index 3f112de823c..93c43b2e25c 100644 --- a/extensions/googlechat/src/config-schema.ts +++ b/extensions/googlechat/src/config-schema.ts @@ -1,6 +1,3 @@ -import { - buildChannelConfigSchema, - GoogleChatConfigSchema, -} from "openclaw/plugin-sdk/bundled-channel-config-schema"; +import { buildChannelConfigSchema, GoogleChatConfigSchema } from "../runtime-api.js"; export const GoogleChatChannelConfigSchema = buildChannelConfigSchema(GoogleChatConfigSchema);