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
@@ -2,6 +2,7 @@
2
2
3
3
*[#568](https://github.com/slack-ruby/slack-ruby-client/pull/568): Redact Authorization header in response stored in the error - [@levenleven](https://github.com/levenleven).
4
4
5
+
*[#558](https://github.com/slack-ruby/slack-ruby-client/pull/558): Update API from [slack-api-ref@c408935](https://github.com/slack-ruby/slack-api-ref/commit/c408935) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
Copy file name to clipboardExpand all lines: bin/commands/admin_analytics.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ class App
9
9
g.desc'Retrieve analytics data for a given date, presented as a compressed JSON file'
10
10
g.long_desc%( Retrieve analytics data for a given date, presented as a compressed JSON file )
11
11
g.command'getFile'do |c|
12
-
c.flag'type',desc: 'The type of analytics to retrieve. The options are currently limited to member (for grid member analytics) and public_channel (for public channel analytics).'
13
12
c.flag'date',desc: 'Date to retrieve the analytics data for, expressed as YYYY-MM-DD in UTC. Required unless metadata_only is set to true.'
14
13
c.flag'metadata_only',desc: 'Retrieve metadata for the type of analytics indicated. Can be used only with type set to public_channel analytics. See detail below. Omit the date parameter when using this argument.'
14
+
c.flag'type',desc: 'The type of analytics to retrieve. The options are currently limited to member (for Enterprise org member analytics) and public_channel (for public channel analytics).'
Copy file name to clipboardExpand all lines: bin/commands/admin_apps_activities.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ class App
10
10
g.long_desc%( Get logs for a specified team/org )
11
11
g.command'list'do |c|
12
12
c.flag'app_id',desc: 'The ID of the app to get activities from.'
13
-
c.flag'component_id',desc: 'The component ID of log events to be returned. Will be FnXXXXXX for functions, and WfXXXXXX for worflows.'
13
+
c.flag'component_id',desc: 'The component ID of log events to be returned. Will be FnXXXXXX for functions, and WfXXXXXX for workflows.'
14
14
c.flag'component_type',desc: 'The component type of log events to be returned. Acceptable values are events_api, workflows, functions and tables.'
15
15
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. See pagination for more detail."
16
16
c.flag'limit',desc: 'The maximum number of items to return.'
c.flag'app_id',desc: 'The encoded app ID to set the app config for.'
22
23
c.flag'domain_restrictions',desc: 'Domain restrictions for the app. Should be an object with two properties: urls and emails. Each is an array of strings, and each sets the allowed URLs and emails for connector authorization, respectively.'
24
+
c.flag'rich_link_preview_type',desc: 'Indicates the app-level override for rich link preview. Unsupported for free teams.'
23
25
c.flag'workflow_auth_strategy',desc: 'The workflow auth permission. Can be one of builder_choice or end_user_only.'
Copy file name to clipboardExpand all lines: bin/commands/admin_auth_policy.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,10 +20,10 @@ class App
20
20
g.desc'Fetch all the entities assigned to a particular authentication policy by name.'
21
21
g.long_desc%( Fetch all the entities assigned to a particular authentication policy by name. )
22
22
g.command'getEntities'do |c|
23
-
c.flag'policy_name',desc: 'The name of the policy to fetch entities for. Currently, email_password is the only policy that may be used with this method.'
24
23
c.flag'cursor',desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
25
24
c.flag'entity_type',desc: 'The type of entity to assign to the policy. Currently, USER is supported.'
26
25
c.flag'limit',desc: 'The maximum number of items to return. Must be between 1 and 1000, both inclusive.'
26
+
c.flag'policy_name',desc: 'The name of the policy to fetch entities for. Currently, email_password is the only policy that may be used with this method.'
Copy file name to clipboardExpand all lines: bin/commands/admin_conversations.rb
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -65,9 +65,9 @@ class App
65
65
g.desc'Create a public or private channel-based conversation.'
66
66
g.long_desc%( Create a public or private channel-based conversation. )
67
67
g.command'create'do |c|
68
+
c.flag'description',desc: 'Description of the public or private channel to create.'
68
69
c.flag'is_private',desc: 'When true, creates a private channel instead of a public channel.'
69
70
c.flag'name',desc: 'Name of the public or private channel to create.'
70
-
c.flag'description',desc: 'Description of the public or private channel to create.'
71
71
c.flag'org_wide',desc: 'When true, the channel will be available org-wide. Note: if the channel is not org_wide=true, you must specify a team_id for this channel.'
72
72
c.flag'team_id',desc: 'The workspace to create the channel in. Note: this argument is required unless you set org_wide=true.'
73
73
c.actiondo |_global_options,options,_args|
@@ -78,9 +78,9 @@ class App
78
78
g.desc'Create a Salesforce channel for the corresponding object provided.'
79
79
g.long_desc%( Create a Salesforce channel for the corresponding object provided. )
80
80
g.command'createForObjects'do |c|
81
+
c.flag'invite_object_team',desc: 'Optional flag to add all team members related to the object to the newly created Salesforce channel. When true, adds a maximum of 100 team members to the channel.'
81
82
c.flag'object_id',desc: 'Object / Record ID (15 or 18 digit accepted). See here for how to look up an ID.'
82
83
c.flag'salesforce_org_id',desc: 'Salesforce org ID (15 or 18 digit accepted). See here for how to look up Salesforce org ID.'
83
-
c.flag'invite_object_team',desc: 'Optional flag to add all team members related to the object to the newly created Salesforce channel. When true, adds a maximum of 100 team members to the channel.'
c.flag'limit',desc: 'Maximum number of items to be returned. Must be between 1 - 20 both inclusive. Default is 10.'
196
196
c.flag'query',desc: 'Name of the the channel to query by.'
197
197
c.flag'search_channel_types',desc: 'The type of channel to include or exclude in the search. For example private will search private channels, while private_exclude will exclude them. For a full list of types, check the Types section.'
198
-
c.flag'sort',desc: 'Possible values are relevant (search ranking based on what we think is closest), name (alphabetical), member_count (number of users in the channel), and created (date channel was created). You can optionally pair this with the sort_dir arg to change how it is sorted.'
198
+
c.flag'sort',desc: 'Possible values are relevant (search ranking based on what we think is closest), name (alphabetical), member_count (number of users in the channel), and created (date channel was created). You can optionally pair this with the sort_dir arg to change how it is sorted.'
199
199
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).'
200
200
c.flag'team_ids',desc: 'Comma separated string of team IDs, signifying the internal workspaces to search through.'
201
201
c.flag'total_count_only',desc: 'Only return the total_count of channels. Omits channel data and allows access for admins without channel manager permissions.'
@@ -224,8 +224,8 @@ class App
224
224
end
225
225
end
226
226
227
-
g.desc'Set the workspaces in an Enterprise grid org that connect to a public or private channel.'
228
-
g.long_desc%( Set the workspaces in an Enterprise grid org that connect to a public or private channel. )
227
+
g.desc'Set the workspaces in an Enterprise org that connect to a public or private channel.'
228
+
g.long_desc%( Set the workspaces in an Enterprise org that connect to a public or private channel. )
229
229
g.command'setTeams'do |c|
230
230
c.flag'channel_id',desc: 'The encoded channel_id to add or remove to workspaces.'
231
231
c.flag'org_channel',desc: 'True if channel has to be converted to an org channel.'
0 commit comments