-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmethods.ts
More file actions
124 lines (124 loc) · 2.93 KB
/
methods.ts
File metadata and controls
124 lines (124 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// Known Slack Web API methods available to bot tokens.
// This list is used for the list-methods command and help text.
// The CLI is not limited to these — any method string is passed to apiCall().
export const KNOWN_METHODS = [
'api.test',
'assistant.threads.setStatus',
'assistant.threads.setSuggestedPrompts',
'assistant.threads.setTitle',
'auth.revoke',
'auth.teams.list',
'auth.test',
'bookmarks.add',
'bookmarks.edit',
'bookmarks.list',
'bookmarks.remove',
'bots.info',
'calls.add',
'calls.end',
'calls.info',
'calls.participants.add',
'calls.participants.remove',
'calls.update',
'canvases.access.delete',
'canvases.access.set',
'canvases.create',
'canvases.delete',
'canvases.edit',
'canvases.sections.lookup',
'chat.delete',
'chat.deleteScheduledMessage',
'chat.getPermalink',
'chat.meMessage',
'chat.postEphemeral',
'chat.postMessage',
'chat.scheduleMessage',
'chat.scheduledMessages.list',
'chat.unfurl',
'chat.update',
'conversations.acceptSharedInvite',
'conversations.approveSharedInvite',
'conversations.archive',
'conversations.canvases.create',
'conversations.close',
'conversations.create',
'conversations.declineSharedInvite',
'conversations.history',
'conversations.info',
'conversations.invite',
'conversations.inviteShared',
'conversations.join',
'conversations.kick',
'conversations.leave',
'conversations.list',
'conversations.listConnectInvites',
'conversations.mark',
'conversations.members',
'conversations.open',
'conversations.rename',
'conversations.replies',
'conversations.setPurpose',
'conversations.setTopic',
'conversations.unarchive',
'dialog.open',
'dnd.endDnd',
'dnd.endSnooze',
'dnd.info',
'dnd.setSnooze',
'dnd.teamInfo',
'emoji.list',
'files.completeUploadExternal',
'files.comments.delete',
'files.delete',
'files.getUploadURLExternal',
'files.info',
'files.list',
'files.remote.add',
'files.remote.info',
'files.remote.list',
'files.remote.remove',
'files.remote.share',
'files.remote.update',
'files.revokePublicURL',
'files.sharedPublicURL',
'files.upload',
'migration.exchange',
'pins.add',
'pins.list',
'pins.remove',
'reactions.add',
'reactions.get',
'reactions.list',
'reactions.remove',
'reminders.add',
'reminders.complete',
'reminders.delete',
'reminders.info',
'reminders.list',
'team.accessLogs',
'team.billableInfo',
'team.info',
'team.integrationLogs',
'team.profile.get',
'usergroups.create',
'usergroups.disable',
'usergroups.enable',
'usergroups.list',
'usergroups.update',
'usergroups.users.list',
'usergroups.users.update',
'users.conversations',
'users.getPresence',
'users.info',
'users.list',
'users.lookupByEmail',
'users.profile.get',
'users.setPresence',
'views.open',
'views.publish',
'views.push',
'views.update',
'workflows.stepCompleted',
'workflows.stepFailed',
'workflows.updateStep',
];