UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

12 lines (11 loc) 656 B
import { n as getBundledChannelAccountInspector } from "./bundled-DcYUmgzC.js"; import { n as getLoadedChannelPlugin } from "./registry-MkxNn1Ue.js"; //#region src/channels/read-only-account-inspect.ts /** Inspects channel account config without loading mutable runtime surfaces. */ async function inspectReadOnlyChannelAccount(params) { const inspectAccount = getLoadedChannelPlugin(params.channelId)?.config.inspectAccount ?? getBundledChannelAccountInspector(params.channelId); if (!inspectAccount) return null; return await Promise.resolve(inspectAccount(params.cfg, params.accountId)); } //#endregion export { inspectReadOnlyChannelAccount as t };