fix(slack): tighten threadId type to satisfy lint

This commit is contained in:
Peter Steinberger 2026-02-16 00:49:00 +00:00
parent 753491ab80
commit f03ea76db3
1 changed files with 1 additions and 1 deletions

View File

@ -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;