Files
openclaw/src/channels/read-only-account-inspect.ts

20 lines
677 B
TypeScript

import type { OpenClawConfig } from "../config/config.js";
import { getChannelPlugin } from "./plugins/registry.js";
import type { ChannelId } from "./plugins/types.js";
export type ReadOnlyInspectedAccount = Record<string, unknown>;
export async function inspectReadOnlyChannelAccount(params: {
channelId: ChannelId;
cfg: OpenClawConfig;
accountId?: string | null;
}): Promise<ReadOnlyInspectedAccount | null> {
const inspectAccount = getChannelPlugin(params.channelId)?.config.inspectAccount;
if (!inspectAccount) {
return null;
}
return (await Promise.resolve(
inspectAccount(params.cfg, params.accountId),
)) as ReadOnlyInspectedAccount | null;
}