mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-14 02:31:24 +00:00
24 lines
484 B
TypeScript
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];
|