Skip to content

Commit d2fe445

Browse files
committed
Update API from slack-api-ref@a29b520 (2023-05-02)
1 parent 71d47e7 commit d2fe445

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
* [#452](https://github.com/slack-ruby/slack-ruby-client/pull/452): Automatically generate Web API multi-argument requirements from docs - [@jmanian](https://github.com/jmanian).
77
* [#448](https://github.com/slack-ruby/slack-ruby-client/pull/448), [#453](https://github.com/slack-ruby/slack-ruby-client/pull/453): Automatically convert more Web API arguments to JSON-encoded strings - [@jmanian](https://github.com/jmanian).
88
* [#465](https://github.com/slack-ruby-client/pulls/465): Update API from [slack-api-ref@878be8f](https://github.com/slack-ruby/slack-api-ref/commit/878be8f) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
9+
* [#473](https://github.com/slack-ruby-client/pulls/473): Update API from [slack-api-ref@a29b520](https://github.com/slack-ruby/slack-api-ref/commit/a29b520) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
910
* Your contribution here.
1011

1112
### 2.1.0 (2023/03/17)

bin/commands/admin_roles.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class App
2222
g.command 'listAssignments' do |c|
2323
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
2424
c.flag 'entity_ids', desc: 'The entities for which the roles apply.'
25-
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 100 both inclusive.'
25+
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 200 both inclusive.'
2626
c.flag 'role_ids', desc: 'collection of role ids to scope results by.'
2727
c.flag 'sort_dir', desc: 'Sort direction. Default is descending on date_create, can be either ASC or DESC.'
2828
c.action do |_global_options, options, _args|

lib/slack/web/api/endpoints/admin_roles.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def admin_roles_addAssignments(options = {})
3232
# @option options [array] :entity_ids
3333
# The entities for which the roles apply.
3434
# @option options [integer] :limit
35-
# The maximum number of items to return. Must be between 1 - 100 both inclusive.
35+
# The maximum number of items to return. Must be between 1 - 200 both inclusive.
3636
# @option options [array] :role_ids
3737
# collection of role ids to scope results by.
3838
# @option options [string] :sort_dir

0 commit comments

Comments
 (0)