fix(mattermost): add actions config typing

This commit is contained in:
Peter Steinberger
2026-02-16 22:59:53 +00:00
parent 9f0fc74d10
commit 2fa9ddebdb

View File

@@ -44,6 +44,11 @@ export type MattermostAccountConfig = {
blockStreamingCoalesce?: BlockStreamingCoalesceConfig;
/** Outbound response prefix override for this channel/account. */
responsePrefix?: string;
/** Action toggles for this account. */
actions?: {
/** Enable message reaction actions. Default: true. */
reactions?: boolean;
};
};
export type MattermostConfig = {