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: bin/commands/admin_conversations.rb
+1-1
Original file line number
Diff line number
Diff line change
@@ -219,7 +219,7 @@ class App
219
219
c.flag'channel_id',desc: 'The encoded channel_id to add or remove to workspaces.'
220
220
c.flag'org_channel',desc: 'True if channel has to be converted to an org channel.'
221
221
c.flag'target_team_ids',desc: 'A comma-separated list of workspaces to which the channel should be shared. Not required if the channel is being shared org-wide.'
222
-
c.flag'team_id',desc: 'The workspace to which the channel belongs. Omit this argument if the channel is a cross-workspace shared channel.'
222
+
c.flag'team_id',desc: 'The workspace to which the channel belongs if the channel is a local workspace channel. Omit this argument if the channel is a cross-workspace or org-wide shared channel.'
Copy file name to clipboardexpand all lines: bin/commands/admin_users.rb
+1-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ class App
44
44
c.flag'include_deactivated_user_workspaces',desc: 'Only applies with org token and no team_id. If true, return workspaces for a user even if they may be deactivated on them. If false, return workspaces for a user only when user is active on them. Default is false.'
45
45
c.flag'is_active',desc: 'If true, only active users will be returned. If false, only deactivated users will be returned. Default is true.'
46
46
c.flag'limit',desc: 'Limit for how many users to be retrieved per page.'
47
-
c.flag'team_id',desc: 'The ID (T1234) of the workspace. The team_id is required if you use an org-level token.'
47
+
c.flag'team_id',desc: 'The ID (T1234) of a workspace. Filters results to just the specified workspace.'
# This file was auto-generated by lib/tasks/web.rake
3
+
4
+
moduleSlack
5
+
moduleCli
6
+
classApp
7
+
desc'AssistantSearch methods.'
8
+
command'assistant_search'do |g|
9
+
g.desc'Searches messages across your Slack organization—perfect for broad, specific, and real-time data retrieval.'
10
+
g.long_desc%( Searches messages across your Slack organization—perfect for broad, specific, and real-time data retrieval. )
11
+
g.command'context'do |c|
12
+
c.flag'query',desc: 'User prompt or search query.'
13
+
c.flag'action_token',desc: 'Send action_token as received in a message event.'
14
+
c.flag'channel_types',desc: 'Mix and match channel types by providing a comma-separated list of any combination of public_channel, private_channel, mpim, im.'
15
+
c.flag'content_types',desc: 'Content types to include, a comma-separated list of any combination of messages, files.'
16
+
c.flag'context_channel_id',desc: 'Context channel ID to support scoping the search when applicable.'
17
+
c.flag'cursor',desc: 'The cursor returned by the API. Leave this blank for the first request, and use this to get the next page of results.'
18
+
c.flag'include_bots',desc: 'If you want the results to include bots.'
19
+
c.flag'limit',desc: 'Number of results to return, up to a max of 20. Defaults to 20.'
Copy file name to clipboardexpand all lines: bin/commands/functions_distributions_permissions.rb
+6-4
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@ class App
18
18
end
19
19
end
20
20
21
-
g.desc'List the access type of a custom slack function and include the users with access if its permission_type is set to named_entities'
22
-
g.long_desc%( List the access type of a custom slack function and include the users with access if its permission_type is set to named_entities )
21
+
g.desc'List the access type of a custom slack function and include the users or team or org ids with access if its permission_type is set to named_entities'
22
+
g.long_desc%( List the access type of a custom slack function and include the users or team or org ids with access if its permission_type is set to named_entities )
23
23
g.command'list'do |c|
24
24
c.flag'function_app_id',desc: 'The encoded ID of the app.'
25
25
c.flag'function_callback_id',desc: "The callback ID defined in the function's definition file."
@@ -41,13 +41,15 @@ class App
41
41
end
42
42
end
43
43
44
-
g.desc'Set the access type of a custom slack function and define the users to be granted access if permission_type is set to named_entities'
45
-
g.long_desc%( Set the access type of a custom slack function and define the users to be granted access if permission_type is set to named_entities )
44
+
g.desc'Set the access type of a custom slack function and define the users or team or org ids to be granted access if permission_type is set to named_entities'
45
+
g.long_desc%( Set the access type of a custom slack function and define the users or team or org ids to be granted access if permission_type is set to named_entities )
46
46
g.command'set'do |c|
47
47
c.flag'permission_type',desc: 'The type of permission that defines how the function can be distributed.'
48
48
c.flag'function_app_id',desc: 'The encoded ID of the app.'
49
49
c.flag'function_callback_id',desc: "The callback ID defined in the function's definition file."
50
50
c.flag'function_id',desc: 'The encoded ID of the function.'
51
+
c.flag'org_ids',desc: 'List of org IDs to allow for named_entities permission.'
52
+
c.flag'team_ids',desc: 'List of team IDs to allow for named_entities permission.'
51
53
c.flag'user_ids',desc: 'List of encoded user IDs.'
# A comma-separated list of workspaces to which the channel should be shared. Not required if the channel is being shared org-wide.
340
340
# @option options [Object] :team_id
341
-
# The workspace to which the channel belongs. Omit this argument if the channel is a cross-workspace shared channel.
341
+
# The workspace to which the channel belongs if the channel is a local workspace channel. Omit this argument if the channel is a cross-workspace or org-wide shared channel.
# Set the access type of a custom slack function and define the users to be granted access if permission_type is set to named_entities
59
+
# Set the access type of a custom slack function and define the users or team or org ids to be granted access if permission_type is set to named_entities
60
60
#
61
61
# @option options [enum] :permission_type
62
62
# The type of permission that defines how the function can be distributed.
0 commit comments