2026-03-16 21:13:56 -07:00
|
|
|
import type { SlackAccountConfig } from "openclaw/plugin-sdk/config-runtime";
|
2026-03-14 02:47:04 -07:00
|
|
|
|
|
|
|
|
export type SlackAccountSurfaceFields = {
|
|
|
|
|
groupPolicy?: SlackAccountConfig["groupPolicy"];
|
|
|
|
|
textChunkLimit?: SlackAccountConfig["textChunkLimit"];
|
|
|
|
|
mediaMaxMb?: SlackAccountConfig["mediaMaxMb"];
|
|
|
|
|
reactionNotifications?: SlackAccountConfig["reactionNotifications"];
|
|
|
|
|
reactionAllowlist?: SlackAccountConfig["reactionAllowlist"];
|
|
|
|
|
replyToMode?: SlackAccountConfig["replyToMode"];
|
|
|
|
|
replyToModeByChatType?: SlackAccountConfig["replyToModeByChatType"];
|
|
|
|
|
actions?: SlackAccountConfig["actions"];
|
|
|
|
|
slashCommand?: SlackAccountConfig["slashCommand"];
|
|
|
|
|
dm?: SlackAccountConfig["dm"];
|
|
|
|
|
channels?: SlackAccountConfig["channels"];
|
|
|
|
|
};
|