fix: restore main verification gates

This commit is contained in:
Peter Steinberger
2026-04-10 09:20:54 +01:00
parent 782b5622b6
commit 1d310e2ab0
8 changed files with 44 additions and 51 deletions

View File

@@ -1,3 +1,5 @@
import type { OpenClawConfig as RuntimeApiOpenClawConfig } from "openclaw/plugin-sdk/config-runtime";
export {
DEFAULT_ACCOUNT_ID,
getChatChannelMeta,
@@ -29,4 +31,7 @@ export type { IMessageProbe } from "./src/probe.js";
export { sendMessageIMessage } from "./src/send.js";
export { setIMessageRuntime } from "./src/runtime.js";
export { chunkTextForOutbound } from "./src/channel-api.js";
export type { IMessageAccountConfig } from "./src/account-types.js";
export type IMessageAccountConfig = Omit<
NonNullable<NonNullable<RuntimeApiOpenClawConfig["channels"]>["imessage"]>,
"accounts" | "defaultAccount"
>;