You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
### 3.1.1 (Next)
2
2
3
+
*[#578](https://github.com/slack-ruby/slack-ruby-client/pull/578): Update API from [slack-api-ref@3275786](https://github.com/slack-ruby/slack-api-ref/commit/3275786) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
Copy file name to clipboardExpand all lines: bin/commands/assistant_threads.rb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@ class App
11
11
g.command'setStatus'do |c|
12
12
c.flag'channel_id',desc: 'Channel ID containing the assistant thread.'
13
13
c.flag'thread_ts',desc: 'Message timestamp of the thread of where to set the status.'
14
-
c.flag'status',desc: "Status of the specified bot user, e.g. 'is thinking...'."
15
-
c.flag'loading_messages',desc: 'The list of messages to rotate through as a loading indicator.'
14
+
c.flag'status',desc: "Status of the specified bot user, e.g., 'is thinking...'. A two minute timeout applies, which will cause the status to be removed if no message has been sent."
15
+
c.flag'loading_messages',desc: 'The list of messages to rotate through as a loading indicator. Maximum of 10 messages.'
Copy file name to clipboardExpand all lines: lib/slack/web/api/endpoints/assistant_threads.rb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ module AssistantThreads
14
14
# @option options [string] :thread_ts
15
15
# Message timestamp of the thread of where to set the status.
16
16
# @option options [string] :status
17
-
# Status of the specified bot user, e.g. 'is thinking...'.
17
+
# Status of the specified bot user, e.g., 'is thinking...'. A two minute timeout applies, which will cause the status to be removed if no message has been sent.
18
18
# @option options [array] :loading_messages
19
-
# The list of messages to rotate through as a loading indicator.
19
+
# The list of messages to rotate through as a loading indicator. Maximum of 10 messages.
0 commit comments