diff --git a/src/channels/plugins/outbound/slack.ts b/src/channels/plugins/outbound/slack.ts index 946f77483..b5bd4273f 100644 --- a/src/channels/plugins/outbound/slack.ts +++ b/src/channels/plugins/outbound/slack.ts @@ -54,7 +54,7 @@ async function sendSlackOutboundMessage(params: { accountId?: string | null; deps?: { sendSlack?: typeof sendMessageSlack } | null; replyToId?: string | null; - threadId?: unknown; + threadId?: string | number | null; identity?: OutboundIdentity; }) { const send = params.deps?.sendSlack ?? sendMessageSlack;