Skip to content

Commit d1d74a2

Browse files
authored
Merge pull request #475 from slack-ruby/automated-api-update
Update API from slack-api-ref@977dad5
2 parents d3f58ba + c36f689 commit d1d74a2

File tree

6 files changed

+8
-1
lines changed

6 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
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).
99
* [#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).
1010
* [#474](https://github.com/slack-ruby-client/pulls/474): Update API from [slack-api-ref@629967e](https://github.com/slack-ruby/slack-api-ref/commit/629967e) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
11+
* [#475](https://github.com/slack-ruby-client/pulls/475): Update API from [slack-api-ref@977dad5](https://github.com/slack-ruby/slack-api-ref/commit/977dad5) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
1112
* Your contribution here.
1213

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

bin/commands/admin_apps_approved.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class App
99
g.desc 'List approved apps for an org or workspace.'
1010
g.long_desc %( List approved apps for an org or workspace. )
1111
g.command 'list' do |c|
12+
c.flag 'certified', desc: 'Only return certified apps when true, return only non-certified apps when false.'
1213
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
1314
c.flag 'enterprise_id', desc: '.'
1415
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.'

bin/commands/admin_apps_restricted.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class App
99
g.desc 'List restricted apps for an org or workspace.'
1010
g.long_desc %( List restricted apps for an org or workspace. )
1111
g.command 'list' do |c|
12+
c.flag 'certified', desc: 'Only return certified apps when true, return only non-certified apps when false.'
1213
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
1314
c.flag 'enterprise_id', desc: '.'
1415
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.'

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ module AdminAppsApproved
99
#
1010
# List approved apps for an org or workspace.
1111
#
12+
# @option options [boolean] :certified
13+
# Only return certified apps when true, return only non-certified apps when false.
1214
# @option options [string] :cursor
1315
# Set cursor to next_cursor returned by the previous call to list items in the next page.
1416
# @option options [Object] :enterprise_id

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ module AdminAppsRestricted
99
#
1010
# List restricted apps for an org or workspace.
1111
#
12+
# @option options [boolean] :certified
13+
# Only return certified apps when true, return only non-certified apps when false.
1214
# @option options [string] :cursor
1315
# Set cursor to next_cursor returned by the previous call to list items in the next page.
1416
# @option options [Object] :enterprise_id

0 commit comments

Comments
 (0)