slack-ruby-client 0.14.4 → 0.14.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (255) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +19 -11
  3. data/.rubocop_todo.yml +66 -47
  4. data/CHANGELOG.md +8 -0
  5. data/Dangerfile +1 -0
  6. data/Gemfile +1 -0
  7. data/README.md +16 -9
  8. data/Rakefile +1 -0
  9. data/bin/commands.rb +6 -0
  10. data/bin/commands/admin_apps.rb +27 -0
  11. data/bin/commands/admin_apps_requests.rb +16 -0
  12. data/bin/commands/admin_users_session.rb +3 -2
  13. data/bin/commands/api.rb +3 -2
  14. data/bin/commands/apps.rb +3 -2
  15. data/bin/commands/apps_permissions.rb +5 -4
  16. data/bin/commands/apps_permissions_resources.rb +3 -2
  17. data/bin/commands/apps_permissions_scopes.rb +3 -2
  18. data/bin/commands/apps_permissions_users.rb +5 -4
  19. data/bin/commands/auth.rb +5 -4
  20. data/bin/commands/bots.rb +3 -2
  21. data/bin/commands/channels.rb +31 -30
  22. data/bin/commands/chat.rb +19 -18
  23. data/bin/commands/chat_scheduledMessages.rb +3 -2
  24. data/bin/commands/conversations.rb +35 -34
  25. data/bin/commands/dialog.rb +3 -2
  26. data/bin/commands/dnd.rb +9 -8
  27. data/bin/commands/emoji.rb +3 -2
  28. data/bin/commands/files.rb +13 -12
  29. data/bin/commands/files_comments.rb +3 -2
  30. data/bin/commands/files_remote.rb +78 -0
  31. data/bin/commands/groups.rb +33 -32
  32. data/bin/commands/im.rb +13 -12
  33. data/bin/commands/migration.rb +3 -2
  34. data/bin/commands/mpim.rb +11 -10
  35. data/bin/commands/oauth.rb +5 -4
  36. data/bin/commands/oauth_v2.rb +17 -0
  37. data/bin/commands/pins.rb +7 -8
  38. data/bin/commands/reactions.rb +10 -11
  39. data/bin/commands/reminders.rb +11 -10
  40. data/bin/commands/rtm.rb +5 -4
  41. data/bin/commands/search.rb +7 -6
  42. data/bin/commands/stars.rb +7 -6
  43. data/bin/commands/team.rb +9 -8
  44. data/bin/commands/team_profile.rb +3 -2
  45. data/bin/commands/usergroups.rb +11 -10
  46. data/bin/commands/usergroups_users.rb +5 -4
  47. data/bin/commands/users.rb +21 -20
  48. data/bin/commands/users_admin.rb +1 -0
  49. data/bin/commands/users_prefs.rb +1 -0
  50. data/bin/commands/users_profile.rb +5 -4
  51. data/bin/commands/views.rb +48 -0
  52. data/bin/slack +1 -2
  53. data/examples/hi_real_time/Gemfile +1 -0
  54. data/examples/hi_real_time/hi.rb +7 -3
  55. data/examples/hi_real_time_and_web/Gemfile +1 -0
  56. data/examples/hi_real_time_and_web/hi.rb +7 -3
  57. data/examples/hi_real_time_async_async/Gemfile +1 -0
  58. data/examples/hi_real_time_async_async/hi.rb +6 -2
  59. data/examples/hi_real_time_async_celluloid/Gemfile +1 -0
  60. data/examples/hi_real_time_async_celluloid/hi.rb +7 -3
  61. data/examples/hi_real_time_async_eventmachine/Gemfile +1 -0
  62. data/examples/hi_real_time_async_eventmachine/hi.rb +7 -3
  63. data/examples/hi_web/Gemfile +1 -0
  64. data/examples/hi_web/hi.rb +1 -0
  65. data/examples/new_ticket/Gemfile +1 -0
  66. data/examples/new_ticket/new_ticket.rb +1 -0
  67. data/lib/slack-ruby-client.rb +3 -2
  68. data/lib/slack.rb +1 -0
  69. data/lib/slack/config.rb +1 -0
  70. data/lib/slack/events/config.rb +1 -0
  71. data/lib/slack/events/request.rb +3 -1
  72. data/lib/slack/logger.rb +6 -5
  73. data/lib/slack/messages/formatting.rb +1 -0
  74. data/lib/slack/messages/message.rb +1 -0
  75. data/lib/slack/real_time/api/message.rb +3 -1
  76. data/lib/slack/real_time/api/message_id.rb +1 -0
  77. data/lib/slack/real_time/api/ping.rb +5 -2
  78. data/lib/slack/real_time/api/typing.rb +3 -1
  79. data/lib/slack/real_time/client.rb +19 -12
  80. data/lib/slack/real_time/concurrency.rb +1 -0
  81. data/lib/slack/real_time/concurrency/async.rb +15 -7
  82. data/lib/slack/real_time/concurrency/celluloid.rb +9 -3
  83. data/lib/slack/real_time/concurrency/eventmachine.rb +7 -4
  84. data/lib/slack/real_time/config.rb +6 -1
  85. data/lib/slack/real_time/models.rb +1 -0
  86. data/lib/slack/real_time/models/base.rb +1 -0
  87. data/lib/slack/real_time/models/bot.rb +1 -0
  88. data/lib/slack/real_time/models/channel.rb +1 -0
  89. data/lib/slack/real_time/models/group.rb +1 -0
  90. data/lib/slack/real_time/models/im.rb +1 -0
  91. data/lib/slack/real_time/models/team.rb +1 -0
  92. data/lib/slack/real_time/models/user.rb +1 -0
  93. data/lib/slack/real_time/socket.rb +14 -11
  94. data/lib/slack/real_time/stores.rb +1 -0
  95. data/lib/slack/real_time/stores/base.rb +1 -0
  96. data/lib/slack/real_time/stores/starter.rb +1 -0
  97. data/lib/slack/real_time/stores/store.rb +16 -25
  98. data/lib/slack/version.rb +2 -1
  99. data/lib/slack/web/api/endpoints.rb +11 -0
  100. data/lib/slack/web/api/endpoints/admin_apps.rb +42 -0
  101. data/lib/slack/web/api/endpoints/admin_apps_requests.rb +33 -0
  102. data/lib/slack/web/api/endpoints/admin_users_session.rb +2 -1
  103. data/lib/slack/web/api/endpoints/api.rb +2 -1
  104. data/lib/slack/web/api/endpoints/apps.rb +2 -1
  105. data/lib/slack/web/api/endpoints/apps_permissions.rb +3 -2
  106. data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +2 -1
  107. data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +2 -1
  108. data/lib/slack/web/api/endpoints/apps_permissions_users.rb +3 -2
  109. data/lib/slack/web/api/endpoints/auth.rb +3 -2
  110. data/lib/slack/web/api/endpoints/bots.rb +2 -1
  111. data/lib/slack/web/api/endpoints/channels.rb +16 -16
  112. data/lib/slack/web/api/endpoints/chat.rb +10 -9
  113. data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +2 -1
  114. data/lib/slack/web/api/endpoints/conversations.rb +18 -17
  115. data/lib/slack/web/api/endpoints/dialog.rb +2 -1
  116. data/lib/slack/web/api/endpoints/dnd.rb +5 -4
  117. data/lib/slack/web/api/endpoints/emoji.rb +2 -1
  118. data/lib/slack/web/api/endpoints/files.rb +7 -6
  119. data/lib/slack/web/api/endpoints/files_comments.rb +2 -1
  120. data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
  121. data/lib/slack/web/api/endpoints/groups.rb +17 -22
  122. data/lib/slack/web/api/endpoints/im.rb +7 -8
  123. data/lib/slack/web/api/endpoints/migration.rb +2 -1
  124. data/lib/slack/web/api/endpoints/mpim.rb +6 -7
  125. data/lib/slack/web/api/endpoints/oauth.rb +3 -2
  126. data/lib/slack/web/api/endpoints/oauth_v2.rb +30 -0
  127. data/lib/slack/web/api/endpoints/pins.rb +5 -9
  128. data/lib/slack/web/api/endpoints/reactions.rb +9 -12
  129. data/lib/slack/web/api/endpoints/reminders.rb +6 -5
  130. data/lib/slack/web/api/endpoints/rtm.rb +3 -2
  131. data/lib/slack/web/api/endpoints/search.rb +4 -3
  132. data/lib/slack/web/api/endpoints/stars.rb +4 -5
  133. data/lib/slack/web/api/endpoints/team.rb +5 -5
  134. data/lib/slack/web/api/endpoints/team_profile.rb +2 -1
  135. data/lib/slack/web/api/endpoints/usergroups.rb +6 -5
  136. data/lib/slack/web/api/endpoints/usergroups_users.rb +3 -2
  137. data/lib/slack/web/api/endpoints/users.rb +11 -16
  138. data/lib/slack/web/api/endpoints/users_admin.rb +1 -0
  139. data/lib/slack/web/api/endpoints/users_prefs.rb +1 -0
  140. data/lib/slack/web/api/endpoints/users_profile.rb +3 -2
  141. data/lib/slack/web/api/endpoints/views.rb +97 -0
  142. data/lib/slack/web/api/error.rb +1 -0
  143. data/lib/slack/web/api/errors/slack_error.rb +2 -1
  144. data/lib/slack/web/api/errors/too_many_requests_error.rb +1 -0
  145. data/lib/slack/web/api/mixins.rb +1 -0
  146. data/lib/slack/web/api/mixins/channels.id.rb +1 -0
  147. data/lib/slack/web/api/mixins/groups.id.rb +1 -0
  148. data/lib/slack/web/api/mixins/ids.id.rb +4 -1
  149. data/lib/slack/web/api/mixins/users.id.rb +1 -0
  150. data/lib/slack/web/api/mixins/users.search.rb +1 -0
  151. data/lib/slack/web/api/patches/views.1.view-json.patch +40 -0
  152. data/lib/slack/web/api/patches/views.1.views-published.patch +16 -0
  153. data/lib/slack/web/api/templates/command.erb +1 -0
  154. data/lib/slack/web/api/templates/commands.erb +1 -0
  155. data/lib/slack/web/api/templates/endpoints.erb +1 -0
  156. data/lib/slack/web/api/templates/method.erb +1 -0
  157. data/lib/slack/web/api/templates/method_spec.erb +1 -0
  158. data/lib/slack/web/client.rb +1 -0
  159. data/lib/slack/web/config.rb +1 -0
  160. data/lib/slack/web/faraday/connection.rb +1 -0
  161. data/lib/slack/web/faraday/request.rb +1 -0
  162. data/lib/slack/web/faraday/response/raise_error.rb +7 -6
  163. data/lib/slack/web/pagination/cursor.rb +1 -0
  164. data/lib/slack_ruby_client.rb +1 -0
  165. data/lib/tasks/git.rake +1 -0
  166. data/lib/tasks/real_time.rake +12 -4
  167. data/lib/tasks/update.rake +1 -0
  168. data/lib/tasks/web.rake +17 -6
  169. data/screenshots/create-app.png +0 -0
  170. data/slack-ruby-client.gemspec +4 -1
  171. data/spec/integration/integration_spec.rb +16 -17
  172. data/spec/slack/config_spec.rb +2 -0
  173. data/spec/slack/events/config_spec.rb +8 -4
  174. data/spec/slack/events/request_spec.rb +67 -37
  175. data/spec/slack/messages/formatting_spec.rb +25 -13
  176. data/spec/slack/real_time/api/message_spec.rb +6 -1
  177. data/spec/slack/real_time/api/ping_spec.rb +2 -0
  178. data/spec/slack/real_time/api/typing_spec.rb +5 -1
  179. data/spec/slack/real_time/client_spec.rb +137 -39
  180. data/spec/slack/real_time/concurrency/celluloid_spec.rb +11 -6
  181. data/spec/slack/real_time/concurrency/eventmachine_spec.rb +9 -1
  182. data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +2 -0
  183. data/spec/slack/real_time/event_handlers/bot_spec.rb +2 -1
  184. data/spec/slack/real_time/event_handlers/channel_spec.rb +9 -6
  185. data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +2 -1
  186. data/spec/slack/real_time/event_handlers/group_spec.rb +5 -4
  187. data/spec/slack/real_time/event_handlers/im_spec.rb +4 -3
  188. data/spec/slack/real_time/event_handlers/team_spec.rb +3 -1
  189. data/spec/slack/real_time/event_handlers/user_spec.rb +1 -0
  190. data/spec/slack/real_time/rtm_connect_spec.rb +1 -0
  191. data/spec/slack/real_time/rtm_start_spec.rb +1 -0
  192. data/spec/slack/real_time/store_spec.rb +2 -1
  193. data/spec/slack/slack_spec.rb +37 -5
  194. data/spec/slack/version_spec.rb +2 -1
  195. data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +8 -0
  196. data/spec/slack/web/api/endpoints/admin_apps_spec.rb +8 -0
  197. data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +1 -0
  198. data/spec/slack/web/api/endpoints/api_spec.rb +1 -0
  199. data/spec/slack/web/api/endpoints/apps_permissions_resources_spec.rb +1 -0
  200. data/spec/slack/web/api/endpoints/apps_permissions_scopes_spec.rb +1 -0
  201. data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +1 -0
  202. data/spec/slack/web/api/endpoints/apps_permissions_users_spec.rb +1 -0
  203. data/spec/slack/web/api/endpoints/apps_spec.rb +1 -0
  204. data/spec/slack/web/api/endpoints/bots_spec.rb +1 -0
  205. data/spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb +1 -0
  206. data/spec/slack/web/api/endpoints/conversations_spec.rb +1 -0
  207. data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +5 -1
  208. data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +2 -0
  209. data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +80 -25
  210. data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +12 -4
  211. data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +2 -0
  212. data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +6 -1
  213. data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +95 -0
  214. data/spec/slack/web/api/endpoints/dnd_spec.rb +1 -0
  215. data/spec/slack/web/api/endpoints/emoji_spec.rb +1 -0
  216. data/spec/slack/web/api/endpoints/files_comments_spec.rb +1 -0
  217. data/spec/slack/web/api/endpoints/files_remote_spec.rb +24 -0
  218. data/spec/slack/web/api/endpoints/files_spec.rb +1 -0
  219. data/spec/slack/web/api/endpoints/im_spec.rb +1 -0
  220. data/spec/slack/web/api/endpoints/migration_spec.rb +1 -0
  221. data/spec/slack/web/api/endpoints/mpim_spec.rb +1 -0
  222. data/spec/slack/web/api/endpoints/oauth_spec.rb +1 -0
  223. data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +13 -0
  224. data/spec/slack/web/api/endpoints/pins_spec.rb +5 -1
  225. data/spec/slack/web/api/endpoints/reactions_spec.rb +8 -1
  226. data/spec/slack/web/api/endpoints/reminders_spec.rb +1 -0
  227. data/spec/slack/web/api/endpoints/rtm_spec.rb +1 -0
  228. data/spec/slack/web/api/endpoints/search_spec.rb +1 -0
  229. data/spec/slack/web/api/endpoints/stars_spec.rb +1 -0
  230. data/spec/slack/web/api/endpoints/team_profile_spec.rb +1 -0
  231. data/spec/slack/web/api/endpoints/team_spec.rb +1 -0
  232. data/spec/slack/web/api/endpoints/usergroups_spec.rb +1 -0
  233. data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +1 -0
  234. data/spec/slack/web/api/endpoints/users_admin_spec.rb +1 -0
  235. data/spec/slack/web/api/endpoints/users_prefs_spec.rb +1 -0
  236. data/spec/slack/web/api/endpoints/users_profile_spec.rb +1 -0
  237. data/spec/slack/web/api/endpoints/views_spec.rb +29 -0
  238. data/spec/slack/web/api/error_spec.rb +4 -2
  239. data/spec/slack/web/api/errors/service_unavailable_spec.rb +6 -3
  240. data/spec/slack/web/api/errors/slack_error_spec.rb +4 -2
  241. data/spec/slack/web/api/mixins/channels_spec.rb +17 -7
  242. data/spec/slack/web/api/mixins/groups_spec.rb +17 -7
  243. data/spec/slack/web/api/mixins/users_spec.rb +17 -8
  244. data/spec/slack/web/api/pagination/cursor_spec.rb +40 -10
  245. data/spec/slack/web/client_spec.rb +45 -18
  246. data/spec/slack/web/faraday/response/raise_error_spec.rb +16 -5
  247. data/spec/spec_helper.rb +2 -1
  248. data/spec/support/queue_with_timeout.rb +1 -0
  249. data/spec/support/real_time/concurrency/mock.rb +1 -0
  250. data/spec/support/real_time/connected_client.rb +9 -3
  251. data/spec/support/real_time/event.rb +1 -0
  252. data/spec/support/token.rb +1 -0
  253. data/spec/support/vcr.rb +1 -0
  254. metadata +59 -7
  255. data/screenshots/register-bot.png +0 -0
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require_relative 'stores/base'
2
3
  require_relative 'stores/starter'
3
4
  require_relative 'stores/store'
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Slack
2
3
  module RealTime
3
4
  module Stores
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Slack
2
3
  module RealTime
3
4
  module Stores
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Slack
2
3
  module RealTime
3
4
  module Stores
@@ -26,39 +27,29 @@ module Slack
26
27
  @users = {}
27
28
  end
28
29
 
29
- if attrs.users
30
- attrs.users.each do |data|
31
- user = Models::User.new(data)
32
- @users[data.id] = @users.key?(data.id) ? @users[data.id].merge(user) : user
33
- end
30
+ attrs.users&.each do |data|
31
+ user = Models::User.new(data)
32
+ @users[data.id] = @users.key?(data.id) ? @users[data.id].merge(user) : user
34
33
  end
35
34
 
36
35
  @channels = {}
37
- if attrs.channels
38
- attrs.channels.each do |data|
39
- @channels[data.id] = Models::Channel.new(data)
40
- end
36
+ attrs.channels&.each do |data|
37
+ @channels[data.id] = Models::Channel.new(data)
41
38
  end
42
39
 
43
40
  @bots = {}
44
- if attrs.bots
45
- attrs.bots.each do |data|
46
- @bots[data.id] = Models::Bot.new(data)
47
- end
41
+ attrs.bots&.each do |data|
42
+ @bots[data.id] = Models::Bot.new(data)
48
43
  end
49
44
 
50
45
  @groups = {}
51
- if attrs.groups
52
- attrs.groups.each do |data|
53
- @groups[data.id] = Models::Group.new(data)
54
- end
46
+ attrs.groups&.each do |data|
47
+ @groups[data.id] = Models::Group.new(data)
55
48
  end
56
49
 
57
50
  @ims = {}
58
- if attrs.ims
59
- attrs.ims.each do |data|
60
- @ims[data.id] = Models::Im.new(data)
61
- end
51
+ attrs.ims&.each do |data|
52
+ @ims[data.id] = Models::Im.new(data)
62
53
  end
63
54
  end
64
55
 
@@ -161,7 +152,7 @@ module Slack
161
152
  # @see https://github.com/slack-ruby/slack-api-ref/blob/master/events/bot_changed.json
162
153
  on :bot_changed do |data|
163
154
  bot = bots[data.bot.id]
164
- bot.merge!(data.bot) if bot
155
+ bot&.merge!(data.bot)
165
156
  end
166
157
 
167
158
  # A team channel was archived.
@@ -343,7 +334,7 @@ module Slack
343
334
  # @see https://github.com/slack-ruby/slack-api-ref/blob/master/events/group_left.json
344
335
  on :group_left do |data|
345
336
  channel = groups[data.channel]
346
- channel.members.delete(self.self.id) if channel && channel.key?(:members)
337
+ channel.members.delete(self.self.id) if channel&.key?(:members)
347
338
  end
348
339
 
349
340
  # A private group read marker was updated.
@@ -378,7 +369,7 @@ module Slack
378
369
  # @see https://api.slack.com/events/im_close
379
370
  # @see https://github.com/slack-ruby/slack-api-ref/blob/master/events/im_close.json
380
371
  on :im_close do |data|
381
- return unless ims && ims.key?(data.channel)
372
+ return unless ims&.key?(data.channel)
382
373
 
383
374
  ims[data.channel].is_open = false
384
375
  end
@@ -404,7 +395,7 @@ module Slack
404
395
  # @see https://api.slack.com/events/im_open
405
396
  # @see https://github.com/slack-ruby/slack-api-ref/blob/master/events/im_open.json
406
397
  on :im_open do |data|
407
- return unless ims && ims.key?(data.channel)
398
+ return unless ims&.key?(data.channel)
408
399
 
409
400
  ims[data.channel].is_open = true
410
401
  end
data/lib/slack/version.rb CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Slack
2
- VERSION = '0.14.4'.freeze
3
+ VERSION = '0.14.5'
3
4
  end
@@ -1,5 +1,8 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
4
+ require_relative 'endpoints/admin_apps'
5
+ require_relative 'endpoints/admin_apps_requests'
3
6
  require_relative 'endpoints/admin_users_session'
4
7
  require_relative 'endpoints/api'
5
8
  require_relative 'endpoints/apps'
@@ -18,11 +21,13 @@ require_relative 'endpoints/dnd'
18
21
  require_relative 'endpoints/emoji'
19
22
  require_relative 'endpoints/files'
20
23
  require_relative 'endpoints/files_comments'
24
+ require_relative 'endpoints/files_remote'
21
25
  require_relative 'endpoints/groups'
22
26
  require_relative 'endpoints/im'
23
27
  require_relative 'endpoints/migration'
24
28
  require_relative 'endpoints/mpim'
25
29
  require_relative 'endpoints/oauth'
30
+ require_relative 'endpoints/oauth_v2'
26
31
  require_relative 'endpoints/pins'
27
32
  require_relative 'endpoints/reactions'
28
33
  require_relative 'endpoints/reminders'
@@ -37,6 +42,7 @@ require_relative 'endpoints/users'
37
42
  require_relative 'endpoints/users_admin'
38
43
  require_relative 'endpoints/users_prefs'
39
44
  require_relative 'endpoints/users_profile'
45
+ require_relative 'endpoints/views'
40
46
 
41
47
  module Slack
42
48
  module Web
@@ -46,6 +52,8 @@ module Slack
46
52
  include Slack::Web::Api::Mixins::Users
47
53
  include Slack::Web::Api::Mixins::Groups
48
54
 
55
+ include AdminApps
56
+ include AdminAppsRequests
49
57
  include AdminUsersSession
50
58
  include Api
51
59
  include Apps
@@ -64,11 +72,13 @@ module Slack
64
72
  include Emoji
65
73
  include Files
66
74
  include FilesComments
75
+ include FilesRemote
67
76
  include Groups
68
77
  include Im
69
78
  include Migration
70
79
  include Mpim
71
80
  include Oauth
81
+ include OauthV2
72
82
  include Pins
73
83
  include Reactions
74
84
  include Reminders
@@ -83,6 +93,7 @@ module Slack
83
93
  include UsersAdmin
84
94
  include UsersPrefs
85
95
  include UsersProfile
96
+ include Views
86
97
  end
87
98
  end
88
99
  end
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+ # This file was auto-generated by lib/tasks/web.rake
3
+
4
+ module Slack
5
+ module Web
6
+ module Api
7
+ module Endpoints
8
+ module AdminApps
9
+ #
10
+ # Approve an app for installation on a workspace.
11
+ #
12
+ # @option options [Object] :app_id
13
+ # The id of the app to approve.
14
+ # @option options [Object] :request_id
15
+ # The id of the request to approve.
16
+ # @option options [Object] :team_id
17
+ # .
18
+ # @see https://api.slack.com/methods/admin.apps.approve
19
+ # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.apps/admin.apps.approve.json
20
+ def admin_apps_approve(options = {})
21
+ post('admin.apps.approve', options)
22
+ end
23
+
24
+ #
25
+ # Restrict an app for installation on a workspace.
26
+ #
27
+ # @option options [Object] :app_id
28
+ # The id of the app to restrict.
29
+ # @option options [Object] :request_id
30
+ # The id of the request to restrict.
31
+ # @option options [Object] :team_id
32
+ # .
33
+ # @see https://api.slack.com/methods/admin.apps.restrict
34
+ # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.apps/admin.apps.restrict.json
35
+ def admin_apps_restrict(options = {})
36
+ post('admin.apps.restrict', options)
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+ # This file was auto-generated by lib/tasks/web.rake
3
+
4
+ module Slack
5
+ module Web
6
+ module Api
7
+ module Endpoints
8
+ module AdminAppsRequests
9
+ #
10
+ # List app requests for a team/workspace.
11
+ #
12
+ # @option options [Object] :cursor
13
+ # Set cursor to next_cursor returned by the previous call to list items in the next page.
14
+ # @option options [Object] :limit
15
+ # The maximum number of items to return. Must be between 1 - 1000 both inclusive.
16
+ # @option options [Object] :team_id
17
+ # .
18
+ # @see https://api.slack.com/methods/admin.apps.requests.list
19
+ # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.apps.requests/admin.apps.requests.list.json
20
+ def admin_apps_requests_list(options = {})
21
+ if block_given?
22
+ Pagination::Cursor.new(self, :admin_apps_requests_list, options).each do |page|
23
+ yield page
24
+ end
25
+ else
26
+ post('admin.apps.requests.list', options)
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module AdminUsersSession
8
9
  #
9
- # This method wipes a user session, leaving the user unauthenticated. The user's Slack client will reset its local cache.
10
+ # Wipes all valid sessions on all devices for a given user
10
11
  #
11
12
  # @option options [Object] :user_id
12
13
  # The ID of the user to wipe sessions for.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module Api
8
9
  #
9
- # This method helps you test your calling code.
10
+ # Checks API calling code.
10
11
  #
11
12
  # @option options [Object] :error
12
13
  # Error response to return.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module Apps
8
9
  #
9
- # This method uninstalls an app. Unlike auth.revoke, which revokes a single token, this method revokes all tokens associated with a single installation of an app.
10
+ # Uninstalls your app from a workspace.
10
11
  #
11
12
  # @option options [Object] :client_id
12
13
  # Issued when you created your application.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module AppsPermissions
8
9
  #
9
- # This feature was exclusive to our workspace apps developer preview. The preview has now ended, but fan-favorite features such as token rotation and the Conversations API will become available to classic Slack apps over the coming months.
10
+ # Returns list of permissions this app has on a team.
10
11
  #
11
12
  # @see https://api.slack.com/methods/apps.permissions.info
12
13
  # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/apps.permissions/apps.permissions.info.json
@@ -15,7 +16,7 @@ module Slack
15
16
  end
16
17
 
17
18
  #
18
- # This feature was exclusive to our workspace apps developer preview. The preview has now ended, but fan-favorite features such as token rotation and the Conversations API will become available to classic Slack apps over the coming months.
19
+ # Allows an app to request additional scopes
19
20
  #
20
21
  # @option options [Object] :scopes
21
22
  # A comma separated list of scopes to request for.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module AppsPermissionsResources
8
9
  #
9
- # This feature was exclusive to our workspace apps developer preview. The preview has now ended, but fan-favorite features such as token rotation and the Conversations API will become available to classic Slack apps over the coming months.
10
+ # Returns list of resource grants this app has on a team.
10
11
  #
11
12
  # @option options [Object] :cursor
12
13
  # Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module AppsPermissionsScopes
8
9
  #
9
- # This feature was exclusive to our workspace apps developer preview. The preview has now ended, but fan-favorite features such as token rotation and the Conversations API will become available to classic Slack apps over the coming months.
10
+ # Returns list of scopes this app has on a team.
10
11
  #
11
12
  # @see https://api.slack.com/methods/apps.permissions.scopes.list
12
13
  # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/apps.permissions.scopes/apps.permissions.scopes.list.json
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module AppsPermissionsUsers
8
9
  #
9
- # This feature was exclusive to our workspace apps developer preview. The preview has now ended, but fan-favorite features such as token rotation and the Conversations API will become available to classic Slack apps over the coming months.
10
+ # Returns list of user grants and corresponding scopes this app has on a team.
10
11
  #
11
12
  # @option options [Object] :cursor
12
13
  # Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
@@ -25,7 +26,7 @@ module Slack
25
26
  end
26
27
 
27
28
  #
28
- # This feature was exclusive to our workspace apps developer preview. The preview has now ended, but fan-favorite features such as token rotation and the Conversations API will become available to classic Slack apps over the coming months.
29
+ # Enables an app to trigger a permissions modal to grant an app access to a user access scope.
29
30
  #
30
31
  # @option options [Object] :scopes
31
32
  # A comma separated list of user scopes to request for.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module Auth
8
9
  #
9
- # This method revokes an access token. Use it when you no longer need a token. For example, with a Sign In With Slack app, call this to log a user out.
10
+ # Revokes a token.
10
11
  #
11
12
  # @option options [Object] :test
12
13
  # Setting this parameter to 1 triggers a testing mode where the specified token will not actually be revoked.
@@ -17,7 +18,7 @@ module Slack
17
18
  end
18
19
 
19
20
  #
20
- # This method checks authentication and tells "you" who you are, even if you might be a bot.
21
+ # Checks authentication & identity.
21
22
  #
22
23
  # @see https://api.slack.com/methods/auth.test
23
24
  # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/auth/auth.test.json
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module Bots
8
9
  #
9
- # This method returns extended information about a bot user.
10
+ # Gets information about a bot user.
10
11
  #
11
12
  # @option options [Object] :bot
12
13
  # Bot user to get info on.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  module Slack
@@ -6,7 +7,7 @@ module Slack
6
7
  module Endpoints
7
8
  module Channels
8
9
  #
9
- # This method archives a channel.
10
+ # Archives a channel.
10
11
  #
11
12
  # @option options [channel] :channel
12
13
  # Channel to archive.
@@ -19,7 +20,7 @@ module Slack
19
20
  end
20
21
 
21
22
  #
22
- # This method is used to create a channel.
23
+ # Creates a channel.
23
24
  #
24
25
  # @option options [Object] :name
25
26
  # Name of channel to create.
@@ -46,7 +47,7 @@ module Slack
46
47
  end
47
48
 
48
49
  #
49
- # This method returns a portion of message events from the specified public channel.
50
+ # Fetches history of messages and events from a channel.
50
51
  #
51
52
  # @option options [channel] :channel
52
53
  # Channel to fetch history for.
@@ -67,7 +68,7 @@ module Slack
67
68
  end
68
69
 
69
70
  #
70
- # This method returns information about a team channel.
71
+ # Gets information about a channel.
71
72
  #
72
73
  # @option options [channel] :channel
73
74
  # Channel to get info on.
@@ -82,7 +83,7 @@ module Slack
82
83
  end
83
84
 
84
85
  #
85
- # This method is used to invite a user to a channel. The calling user must be a member of the channel.
86
+ # Invites a user to a channel.
86
87
  #
87
88
  # @option options [channel] :channel
88
89
  # Channel to invite user to.
@@ -99,8 +100,7 @@ module Slack
99
100
  end
100
101
 
101
102
  #
102
- # This method is used to join a channel. If the channel does not exist, it is
103
- # created.
103
+ # Joins a channel, creating it if needed.
104
104
  #
105
105
  # @option options [Object] :name
106
106
  # Name of channel to join.
@@ -114,7 +114,7 @@ module Slack
114
114
  end
115
115
 
116
116
  #
117
- # This method allows a user to remove another member from a team channel.
117
+ # Removes a user from a channel.
118
118
  #
119
119
  # @option options [channel] :channel
120
120
  # Channel to remove user from.
@@ -131,7 +131,7 @@ module Slack
131
131
  end
132
132
 
133
133
  #
134
- # This method is used to leave a channel.
134
+ # Leaves a channel.
135
135
  #
136
136
  # @option options [channel] :channel
137
137
  # Channel to leave.
@@ -144,7 +144,7 @@ module Slack
144
144
  end
145
145
 
146
146
  #
147
- # Don't use this method. Use conversations.list instead.
147
+ # Lists all channels in a Slack team.
148
148
  #
149
149
  # @option options [Object] :cursor
150
150
  # Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
@@ -167,7 +167,7 @@ module Slack
167
167
  end
168
168
 
169
169
  #
170
- # This method moves the read cursor in a channel.
170
+ # Sets the read cursor in a channel.
171
171
  #
172
172
  # @option options [channel] :channel
173
173
  # Channel to set reading cursor in.
@@ -183,7 +183,7 @@ module Slack
183
183
  end
184
184
 
185
185
  #
186
- # This method renames a team channel.
186
+ # Renames a channel.
187
187
  #
188
188
  # @option options [channel] :channel
189
189
  # Channel to rename.
@@ -201,7 +201,7 @@ module Slack
201
201
  end
202
202
 
203
203
  #
204
- # This method returns an entire thread (a message plus all the messages in reply to it).
204
+ # Retrieve a thread of messages posted to a channel
205
205
  #
206
206
  # @option options [channel] :channel
207
207
  # Channel to fetch thread from.
@@ -217,7 +217,7 @@ module Slack
217
217
  end
218
218
 
219
219
  #
220
- # This method is used to change the purpose of a channel. The calling user must be a member of the channel.
220
+ # Sets the purpose for a channel.
221
221
  #
222
222
  # @option options [channel] :channel
223
223
  # Channel to set the purpose of.
@@ -235,7 +235,7 @@ module Slack
235
235
  end
236
236
 
237
237
  #
238
- # This method is used to change the topic of a channel. The calling user must be a member of the channel.
238
+ # Sets the topic for a channel.
239
239
  #
240
240
  # @option options [channel] :channel
241
241
  # Channel to set the topic of.
@@ -251,7 +251,7 @@ module Slack
251
251
  end
252
252
 
253
253
  #
254
- # This method unarchives a channel. The calling user is added to the channel.
254
+ # Unarchives a channel.
255
255
  #
256
256
  # @option options [channel] :channel
257
257
  # Channel to unarchive.