refactor: tighten plugin boundary surfaces

This commit is contained in:
Peter Steinberger
2026-04-27 11:18:54 +01:00
parent c4fe72b8d6
commit 9b0a0fb0a7
33 changed files with 157 additions and 69 deletions

View File

@@ -1,5 +1,5 @@
import { GoogleChatConfigSchema } from "openclaw/plugin-sdk/googlechat";
import { describe, expect, it } from "vitest";
import { GoogleChatConfigSchema } from "../runtime-api.js";
describe("googlechat config schema", () => {
it("accepts serviceAccount refs", () => {

View File

@@ -1,3 +1,3 @@
import { buildChannelConfigSchema, GoogleChatConfigSchema } from "openclaw/plugin-sdk/googlechat";
import { buildChannelConfigSchema, GoogleChatConfigSchema } from "../runtime-api.js";
export const GoogleChatChannelConfigSchema = buildChannelConfigSchema(GoogleChatConfigSchema);