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,6 +1,7 @@
1
1
### 3.1.1 (Next)
2
2
3
3
*[#581](https://github.com/slack-ruby/slack-ruby-client/pull/581): Migrate Danger to use danger-pr-comment workflow - [@dblock](https://github.com/dblock).
4
+
*[#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: bin/commands/chat.rb
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,7 @@ class App
103
103
c.flag'icon_url',desc: 'URL to an image to use as the icon for this message.'
104
104
c.flag'link_names',desc: 'Find and link user groups. No longer supports linking individual users; use syntax shown in Mentioning Users instead.'
105
105
c.flag'markdown_text',desc: 'Accepts message text formatted in markdown. This argument should not be used in conjunction with blocks or text. Limit this field to 12,000 characters.'
106
-
c.flag'metadata',desc: 'JSON object with event_type and event_payload fields, presented as a URL-encoded string. Metadata you post to Slack is accessible to any app or user who is a member of that workspace.'
106
+
c.flag'metadata',desc: 'JSON object with event_type and event_payload fields, presented as a URL-encoded string. You can also provide Work Object entity metadata using this parameter. Metadata you post to Slack is accessible to any app or user who is a member of that workspace.'
107
107
c.flag'mrkdwn',desc: 'Disable Slack markup parsing by setting to false. Enabled by default.'
108
108
c.flag'parse',desc: 'Change how messages are treated. See below.'
109
109
c.flag'reply_broadcast',desc: 'Used in conjunction with thread_ts and indicates whether reply should be made visible to everyone in the channel or conversation. Defaults to false.'
@@ -142,7 +142,7 @@ class App
142
142
g.desc'Starts a new streaming conversation.'
143
143
g.long_desc%( Starts a new streaming conversation. )
144
144
g.command'startStream'do |c|
145
-
c.flag'channel',desc: 'An encoded ID that represents a channel, private group, or DM.'
145
+
c.flag'channel',desc: 'An encoded ID that represents a channel thread or DM.'
146
146
c.flag'markdown_text',desc: 'Accepts message text formatted in markdown. Limit this field to 12,000 characters.'
147
147
c.flag'thread_ts',desc: "Provide another message's ts value to reply to. Streamed messages should always be replies to a user request."
148
148
c.flag'recipient_user_id',desc: 'The encoded ID of the user to receive the streaming text. Required when streaming to channels.'
@@ -177,7 +177,7 @@ class App
177
177
c.flag'user_auth_blocks',desc: 'Provide a JSON based array of structured blocks presented as URL-encoded string to send as an ephemeral message to the user as invitation to authenticate further and enable full unfurling behavior.'
178
178
c.flag'unfurl_id',desc: 'The ID of the link to unfurl. Both unfurl_id and source must be provided together, or channel and ts must be provided together.'
179
179
c.flag'source',desc: 'The source of the link to unfurl. The source may either be composer, when the link is inside the message composer, or conversations_history, when the link has been posted to a conversation.'
180
-
c.flag'metadata',desc: 'JSON object with entity_type and entity_payload fields, presented as a URL-encoded string. Either unfurls or metadata must be provided.'
180
+
c.flag'metadata',desc: 'JSON object with an entities field providing an array of Work Object entities. Either unfurls or metadata must be provided.'
Copy file name to clipboardExpand all lines: bin/commands/users.rb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ module Cli
6
6
classApp
7
7
desc'Users methods.'
8
8
command'users'do |g|
9
-
g.desc'List conversations the calling user may access.'
10
-
g.long_desc%( List conversations the calling user may access. )
9
+
g.desc'List conversations the calling user is a member of.'
10
+
g.long_desc%( List conversations the calling user is a member of. )
11
11
g.command'conversations'do |c|
12
12
c.flag'cursor',desc: "Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first 'page' of the collection. See pagination for more detail."
13
13
c.flag'exclude_archived',desc: 'Set to true to exclude archived channels from the list.'
0 commit comments