mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-18 11:37:26 +00:00
Replace the built-in Feishu SDK with the community-maintained clawdbot-feishu plugin by @m1heng. Changes: - Remove src/feishu/ directory (19 files) - Remove src/channels/plugins/outbound/feishu.ts - Remove src/channels/plugins/normalize/feishu.ts - Remove src/config/types.feishu.ts - Remove feishu exports from plugin-sdk/index.ts - Remove FeishuConfig from types.channels.ts New features in community plugin: - Document tools (read/create/edit Feishu docs) - Wiki tools (navigate/manage knowledge base) - Drive tools (folder/file management) - Bitable tools (read/write table records) - Permission tools (collaborator management) - Emoji reactions support - Typing indicators - Rich media support (bidirectional image/file transfer) - @mention handling - Skills for feishu-doc, feishu-wiki, feishu-drive, feishu-perm Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import type { GroupPolicy } from "./types.base.js";
|
|
import type { DiscordConfig } from "./types.discord.js";
|
|
import type { GoogleChatConfig } from "./types.googlechat.js";
|
|
import type { IMessageConfig } from "./types.imessage.js";
|
|
import type { MSTeamsConfig } from "./types.msteams.js";
|
|
import type { SignalConfig } from "./types.signal.js";
|
|
import type { SlackConfig } from "./types.slack.js";
|
|
import type { TelegramConfig } from "./types.telegram.js";
|
|
import type { WhatsAppConfig } from "./types.whatsapp.js";
|
|
|
|
export type ChannelHeartbeatVisibilityConfig = {
|
|
/** Show HEARTBEAT_OK acknowledgments in chat (default: false). */
|
|
showOk?: boolean;
|
|
/** Show heartbeat alerts with actual content (default: true). */
|
|
showAlerts?: boolean;
|
|
/** Emit indicator events for UI status display (default: true). */
|
|
useIndicator?: boolean;
|
|
};
|
|
|
|
export type ChannelDefaultsConfig = {
|
|
groupPolicy?: GroupPolicy;
|
|
/** Default heartbeat visibility for all channels. */
|
|
heartbeat?: ChannelHeartbeatVisibilityConfig;
|
|
};
|
|
|
|
export type ChannelsConfig = {
|
|
defaults?: ChannelDefaultsConfig;
|
|
whatsapp?: WhatsAppConfig;
|
|
telegram?: TelegramConfig;
|
|
discord?: DiscordConfig;
|
|
googlechat?: GoogleChatConfig;
|
|
slack?: SlackConfig;
|
|
signal?: SignalConfig;
|
|
imessage?: IMessageConfig;
|
|
msteams?: MSTeamsConfig;
|
|
[key: string]: unknown;
|
|
};
|