From f23121f0db1623633629f831c5e3b052f7f8842b Mon Sep 17 00:00:00 2001 From: Filip Maj Date: Mon, 28 Oct 2024 12:31:23 -0400 Subject: [PATCH] feat(web-api): add new `is_send_allowed` optional parameter to `assistant.threads.setStatus` method --- packages/web-api/src/types/request/assistant.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/web-api/src/types/request/assistant.ts b/packages/web-api/src/types/request/assistant.ts index e50dc9497..bc495ad39 100644 --- a/packages/web-api/src/types/request/assistant.ts +++ b/packages/web-api/src/types/request/assistant.ts @@ -8,6 +8,8 @@ export interface AssistantThreadsSetStatusArguments extends TokenOverridable { status: string; /** @description Message timestamp of the thread. */ thread_ts: string; + /** @description Whether or not the user is allowed to send a message while the status is being displayed. Defaults to `false`. */ + is_send_allowed?: boolean; } // https://api.slack.com/methods/assistant.threads.setSuggestedPrompts