Files
openclaw/test/helpers/channels/manifest.ts
2026-04-06 18:10:10 +01:00

24 lines
484 B
TypeScript

export const channelPluginSurfaceKeys = [
"actions",
"setup",
"status",
"outbound",
"messaging",
"threading",
"directory",
"gateway",
] as const;
export type ChannelPluginSurface = (typeof channelPluginSurfaceKeys)[number];
export const sessionBindingContractChannelIds = [
"bluebubbles",
"discord",
"feishu",
"imessage",
"matrix",
"telegram",
] as const;
export type SessionBindingContractChannelId = (typeof sessionBindingContractChannelIds)[number];