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
@@ -3,6 +3,7 @@
3
3
*[#516](https://github.com/slack-ruby/slack-ruby-client/pull/516): Add support for Ruby 3.3 - [@olleolleolle](https://github.com/olleolleolle).
4
4
*[#520](https://github.com/slack-ruby/slack-ruby-client/pull/520): Add support for basic markdown formatting - [@nbgoodall](https://github.com/nbgoodall).
5
5
*[#523](https://github.com/slack-ruby/slack-ruby-client/pull/523): Fix coveralls handling parallel jobs - [@dblock](https://github.com/dblock).
6
+
*[#522](https://github.com/slack-ruby-client/pulls/522): Update API from [slack-api-ref@8a22e57](https://github.com/slack-ruby/slack-api-ref/commit/8a22e57) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
Copy file name to clipboardExpand all lines: bin/commands/admin_emoji.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ class App
9
9
g.desc'Add an emoji.'
10
10
g.long_desc%( Add an emoji. )
11
11
g.command'add'do |c|
12
-
c.flag'name',desc: 'The name of the emoji to be added. Colons (:myemoji:) around the value are not required, although they may be included.'
12
+
c.flag'name',desc: 'The name of the emoji to be added (using lower-case letters only). Colons (:myemoji:) around the value are not required, although they may be included.'
13
13
c.flag'url',desc: 'The URL of a file to use as an image for the emoji. Square images under 128KB and with transparent backgrounds work best.'
Copy file name to clipboardExpand all lines: bin/commands/admin_workflows.rb
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,17 @@ class App
10
10
g.long_desc%( Search workflows within the team or enterprise )
11
11
g.command'search'do |c|
12
12
c.flag'app_id',desc: 'The parent app ID for which to return workflows.'
13
-
c.flag'collaborator_ids',desc: 'Only include workflows by the collaborators inputted.'
13
+
c.flag'collaborator_ids',desc: 'Only include workflows where the provided user IDs are a manager/collaborator of that workflow.'
14
14
c.flag'cursor',desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
15
+
c.flag'is_sales_elevate',desc: 'Filter workflows by their Sales Elevate status.'
15
16
c.flag'limit',desc: 'The number of results that will be returned by the API on each invocation.'
16
17
c.flag'no_collaborators',desc: 'Only include workflows with no collaborators in the result; default is false.'
17
-
c.flag'num_trigger_ids',desc: 'Number of trigger IDs to fetch for each workflow; default is 0.'
18
+
c.flag'num_trigger_ids',desc: 'Number of trigger IDs to fetch for each workflow; default is 10.'
18
19
c.flag'query',desc: 'A search query to filter for workflow name or description.'
19
20
c.flag'sort',desc: 'The field used to sort the returned workflows.'
20
21
c.flag'sort_dir',desc: 'Sort direction. Possible values are asc for ascending order like (1, 2, 3) or (a, b, c), and desc for descending order like (3, 2, 1) or (c, b, a).'
21
22
c.flag'source',desc: 'Source of workflow creation, either from code or workflow builder.'
23
+
c.flag'trigger_type_id',desc: 'Only include workflows with this trigger type.'
Copy file name to clipboardExpand all lines: bin/commands/conversations.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ class App
77
77
c.flag'include_all_metadata',desc: 'Return all metadata associated with this message.'
78
78
c.flag'inclusive',desc: 'Include messages with oldest or latest timestamps in results. Ignored unless either timestamp is specified.'
79
79
c.flag'latest',desc: 'Only messages before this Unix timestamp will be included in results. Default is the current time.'
80
-
c.flag'limit',desc: "The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached."
80
+
c.flag'limit',desc: "The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the conversation history hasn't been reached. Maximum of 999."
81
81
c.flag'oldest',desc: 'Only messages after this Unix timestamp will be included in results.'
0 commit comments