openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
14 lines • 501 B
TypeScript
import { nt as GoogleChatAccountConfig } from "./types.channels-ClE80MLB.js";
//#region extensions/googlechat/src/accounts.d.ts
type GoogleChatCredentialSource = "file" | "inline" | "env" | "none";
type ResolvedGoogleChatAccount = {
accountId: string;
name?: string;
enabled: boolean;
config: GoogleChatAccountConfig;
credentialSource: GoogleChatCredentialSource;
credentials?: Record<string, unknown>;
credentialsFile?: string;
};
//#endregion
export { ResolvedGoogleChatAccount as t };