Skip to content

Commit c6cfad8

Browse files
author
Slack API Ref Buildbot
committed
Updated from Slack docs, 2025/10/02
1 parent a2d8b1d commit c6cfad8

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

docs.slack.dev/methods/assistant.threads.setStatus.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
},
2626
"channel_id": {
2727
"desc": "Channel ID containing the assistant thread.",
28+
"type": "string",
2829
"subtype": "channel",
2930
"schema": "channel"
3031
},
@@ -35,6 +36,17 @@
3536
"status": {
3637
"type": "string",
3738
"desc": "Status of the specified bot user, e.g. 'is thinking...'"
39+
},
40+
"loading_messages": {
41+
"type": "array",
42+
"desc": "The list of messages to rotate through as a loading indicator.",
43+
"minItems": 1,
44+
"maxItems": 10,
45+
"items": {
46+
"type": "string",
47+
"minLength": 1,
48+
"maxLength": 50
49+
}
3850
}
3951
}
4052
},

methods/assistant/assistant.threads.setStatus.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"args": {
77
"channel_id": {
88
"required": true,
9-
"desc": "Channel ID containing the assistant thread."
9+
"desc": "Channel ID containing the assistant thread.",
10+
"type": "string"
1011
},
1112
"thread_ts": {
1213
"required": true,
@@ -17,6 +18,11 @@
1718
"required": true,
1819
"desc": "Status of the specified bot user, e.g. 'is thinking...'.",
1920
"type": "string"
21+
},
22+
"loading_messages": {
23+
"required": false,
24+
"desc": "The list of messages to rotate through as a loading indicator.",
25+
"type": "array"
2026
}
2127
},
2228
"response": {

0 commit comments

Comments
 (0)