slack-ruby-client 0.16.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/danger.yml +19 -0
- data/.github/workflows/integtest.yml +25 -0
- data/.github/workflows/rubocop.yml +13 -0
- data/.github/workflows/test.yml +34 -0
- data/.gitignore +5 -3
- data/.rubocop.yml +6 -0
- data/.rubocop_todo.yml +137 -43
- data/CHANGELOG.md +34 -3
- data/CONTRIBUTING.md +4 -4
- data/Gemfile +18 -1
- data/Gemfile.danger +6 -0
- data/LICENSE.md +1 -1
- data/README.md +13 -12
- data/RELEASING.md +1 -1
- data/UPGRADING.md +42 -0
- data/bin/commands/admin_analytics.rb +2 -1
- data/bin/commands/admin_apps.rb +11 -0
- data/bin/commands/admin_apps_requests.rb +12 -0
- data/bin/commands/admin_auth_policy.rb +39 -0
- data/bin/commands/admin_conversations.rb +2 -1
- data/bin/commands/admin_conversations_restrictAccess.rb +1 -1
- data/bin/commands/admin_emoji.rb +2 -2
- data/bin/commands/admin_teams.rb +1 -1
- data/bin/commands/admin_users.rb +1 -0
- data/bin/commands/admin_users_session.rb +40 -0
- data/bin/commands/admin_users_unsupportedVersions.rb +15 -0
- data/bin/commands/apps_manifest.rb +52 -0
- data/bin/commands/bookmarks.rb +52 -0
- data/bin/commands/channels.rb +0 -157
- data/bin/commands/chat.rb +14 -9
- data/bin/commands/conversations.rb +61 -4
- data/bin/commands/dnd.rb +3 -1
- data/bin/commands/files.rb +2 -1
- data/bin/commands/groups.rb +0 -163
- data/bin/commands/im.rb +0 -62
- data/bin/commands/mpim.rb +0 -60
- data/bin/commands/oauth.rb +0 -13
- data/bin/commands/oauth_v2.rb +13 -1
- data/bin/commands/openid_connect.rb +27 -0
- data/bin/commands/pins.rb +2 -2
- data/bin/commands/reminders.rb +6 -0
- data/bin/commands/rtm.rb +2 -2
- data/bin/commands/search.rb +2 -1
- data/bin/commands/stars.rb +7 -6
- data/bin/commands/team.rb +1 -0
- data/bin/commands/team_billing.rb +13 -0
- data/bin/commands/team_preferences.rb +13 -0
- data/bin/commands/tooling_tokens.rb +14 -0
- data/bin/commands/usergroups.rb +1 -1
- data/bin/commands/users.rb +1 -1
- data/bin/commands/views.rb +1 -1
- data/bin/commands.rb +8 -9
- data/lib/slack/config.rb +1 -2
- data/lib/slack/events/request.rb +5 -3
- data/lib/slack/real_time/client.rb +6 -7
- data/lib/slack/real_time/concurrency/async.rb +6 -8
- data/lib/slack/real_time/config.rb +3 -13
- data/lib/slack/real_time/socket.rb +1 -2
- data/lib/slack/real_time/stores/base.rb +1 -6
- data/lib/slack/real_time/stores/starter.rb +6 -3
- data/lib/slack/real_time/stores/store.rb +5 -0
- data/lib/slack/version.rb +1 -1
- data/lib/slack/web/api/endpoints/admin_analytics.rb +5 -3
- data/lib/slack/web/api/endpoints/admin_apps.rb +21 -5
- data/lib/slack/web/api/endpoints/admin_apps_approved.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_apps_requests.rb +20 -2
- data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_auth_policy.rb +72 -0
- data/lib/slack/web/api/endpoints/admin_barriers.rb +6 -6
- data/lib/slack/web/api/endpoints/admin_conversations.rb +28 -26
- data/lib/slack/web/api/endpoints/admin_conversations_ekm.rb +4 -4
- data/lib/slack/web/api/endpoints/admin_emoji.rb +11 -11
- data/lib/slack/web/api/endpoints/admin_inviteRequests.rb +7 -7
- data/lib/slack/web/api/endpoints/admin_inviteRequests_approved.rb +3 -3
- data/lib/slack/web/api/endpoints/admin_inviteRequests_denied.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_teams.rb +7 -7
- data/lib/slack/web/api/endpoints/admin_teams_admins.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_teams_owners.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_teams_settings.rb +5 -5
- data/lib/slack/web/api/endpoints/admin_usergroups.rb +10 -10
- data/lib/slack/web/api/endpoints/admin_users.rb +20 -18
- data/lib/slack/web/api/endpoints/admin_users_session.rb +65 -9
- data/lib/slack/web/api/endpoints/admin_users_unsupportedVersions.rb +25 -0
- data/lib/slack/web/api/endpoints/api.rb +1 -1
- data/lib/slack/web/api/endpoints/apps.rb +2 -2
- data/lib/slack/web/api/endpoints/apps_event_authorizations.rb +3 -3
- data/lib/slack/web/api/endpoints/apps_manifest.rb +77 -0
- data/lib/slack/web/api/endpoints/auth.rb +1 -1
- data/lib/slack/web/api/endpoints/auth_teams.rb +3 -3
- data/lib/slack/web/api/endpoints/bookmarks.rb +86 -0
- data/lib/slack/web/api/endpoints/bots.rb +2 -2
- data/lib/slack/web/api/endpoints/calls.rb +15 -15
- data/lib/slack/web/api/endpoints/calls_participants.rb +4 -4
- data/lib/slack/web/api/endpoints/channels.rb +0 -265
- data/lib/slack/web/api/endpoints/chat.rb +67 -57
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +3 -3
- data/lib/slack/web/api/endpoints/conversations.rb +117 -27
- data/lib/slack/web/api/endpoints/dialog.rb +2 -2
- data/lib/slack/web/api/endpoints/dnd.rb +6 -3
- data/lib/slack/web/api/endpoints/files.rb +16 -14
- data/lib/slack/web/api/endpoints/files_comments.rb +1 -1
- data/lib/slack/web/api/endpoints/files_remote.rb +20 -20
- data/lib/slack/web/api/endpoints/groups.rb +0 -273
- data/lib/slack/web/api/endpoints/im.rb +0 -107
- data/lib/slack/web/api/endpoints/migration.rb +3 -3
- data/lib/slack/web/api/endpoints/mpim.rb +0 -102
- data/lib/slack/web/api/endpoints/oauth.rb +5 -27
- data/lib/slack/web/api/endpoints/oauth_v2.rb +24 -6
- data/lib/slack/web/api/endpoints/openid_connect.rb +42 -0
- data/lib/slack/web/api/endpoints/pins.rb +4 -4
- data/lib/slack/web/api/endpoints/reactions.rb +12 -12
- data/lib/slack/web/api/endpoints/reminders.rb +17 -5
- data/lib/slack/web/api/endpoints/rtm.rb +10 -10
- data/lib/slack/web/api/endpoints/search.rb +24 -16
- data/lib/slack/web/api/endpoints/stars.rb +11 -9
- data/lib/slack/web/api/endpoints/team.rb +10 -8
- data/lib/slack/web/api/endpoints/team_billing.rb +21 -0
- data/lib/slack/web/api/endpoints/team_preferences.rb +21 -0
- data/lib/slack/web/api/endpoints/team_profile.rb +1 -1
- data/lib/slack/web/api/endpoints/tooling_tokens.rb +24 -0
- data/lib/slack/web/api/endpoints/usergroups.rb +19 -19
- data/lib/slack/web/api/endpoints/usergroups_users.rb +7 -7
- data/lib/slack/web/api/endpoints/users.rb +16 -16
- data/lib/slack/web/api/endpoints/users_profile.rb +4 -4
- data/lib/slack/web/api/endpoints/views.rb +12 -12
- data/lib/slack/web/api/endpoints/workflows.rb +9 -9
- data/lib/slack/web/api/endpoints.rb +16 -20
- data/lib/slack/web/api/errors/server_error.rb +37 -0
- data/lib/slack/web/api/errors/too_many_requests_error.rb +1 -4
- data/lib/slack/web/api/errors.rb +232 -16
- data/lib/slack/web/api/mixins.rb +0 -2
- data/lib/slack/web/api/patches/chat.1.patch +7 -9
- data/lib/slack/web/api/templates/endpoints.erb +0 -2
- data/lib/slack/web/faraday/connection.rb +5 -5
- data/lib/slack/web/faraday/request.rb +4 -1
- data/lib/slack/web/faraday/response/raise_error.rb +2 -14
- data/lib/slack/web/faraday/response/wrap_error.rb +11 -5
- data/lib/slack/web/pagination/cursor.rb +1 -5
- data/lib/slack-ruby-client.rb +3 -2
- data/lib/tasks/real_time.rake +1 -3
- data/lib/tasks/web.rake +4 -0
- data/slack-ruby-client.gemspec +5 -14
- data/spec/fixtures/slack/web/429_error.yml +50 -54
- data/spec/fixtures/slack/web/auth_test_error.yml +51 -18
- data/spec/fixtures/slack/web/auth_test_success.yml +50 -26
- data/spec/fixtures/slack/web/conversations_info.yml +167 -0
- data/spec/fixtures/slack/web/conversations_setTopic.yml +42 -27
- data/spec/fixtures/slack/web/conversations_setTopic_one_page.yml +89 -59
- data/spec/fixtures/slack/web/conversations_setTopic_paginated.yml +131 -86
- data/spec/fixtures/slack/web/paginated_users_list.yml +501 -69
- data/spec/fixtures/slack/web/rtm_connect.yml +267 -30
- data/spec/fixtures/slack/web/rtm_start.yml +771 -60
- data/spec/fixtures/slack/web/users_info.yml +153 -69
- data/spec/fixtures/slack/web/users_list.yml +102 -41
- data/spec/fixtures/slack/web/views_open_error.yml +49 -42
- data/spec/integration/integration_spec.rb +1 -1
- data/spec/slack/events/request_spec.rb +7 -6
- data/spec/slack/real_time/client_spec.rb +37 -39
- data/spec/slack/real_time/concurrency/with_concurrency_spec.rb +10 -0
- data/spec/slack/real_time/concurrency/without_concurrency_spec.rb +10 -0
- data/spec/slack/real_time/event_handlers/bot_spec.rb +1 -1
- data/spec/slack/real_time/event_handlers/channel_spec.rb +9 -9
- data/spec/slack/real_time/event_handlers/group_spec.rb +2 -2
- data/spec/slack/real_time/event_handlers/im_spec.rb +7 -7
- data/spec/slack/real_time/event_handlers/user_spec.rb +2 -2
- data/spec/slack/real_time/rtm_connect_spec.rb +1 -1
- data/spec/slack/real_time/rtm_start_spec.rb +1 -1
- data/spec/slack/real_time/store_spec.rb +2 -2
- data/spec/slack/slack_spec.rb +7 -5
- data/spec/slack/version_spec.rb +1 -1
- data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +5 -0
- data/spec/slack/web/api/endpoints/admin_apps_spec.rb +5 -0
- data/spec/slack/web/api/endpoints/admin_auth_policy_spec.rb +35 -0
- data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +9 -9
- data/spec/slack/web/api/endpoints/admin_teams_settings_spec.rb +1 -1
- data/spec/slack/web/api/endpoints/admin_usergroups_spec.rb +6 -6
- data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +22 -2
- data/spec/slack/web/api/endpoints/admin_users_spec.rb +8 -8
- data/spec/slack/web/api/endpoints/admin_users_unsupportedVersions_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/apps_manifest_spec.rb +36 -0
- data/spec/slack/web/api/endpoints/apps_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/bookmarks_spec.rb +40 -0
- data/spec/slack/web/api/endpoints/calls_participants_spec.rb +4 -4
- data/spec/slack/web/api/endpoints/calls_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +4 -6
- data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +28 -16
- data/spec/slack/web/api/endpoints/custom_specs/conversations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +4 -2
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +22 -14
- data/spec/slack/web/api/endpoints/dnd_spec.rb +0 -5
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/files_remote_spec.rb +3 -3
- data/spec/slack/web/api/endpoints/oauth_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +6 -3
- data/spec/slack/web/api/endpoints/{apps_permissions_scopes_spec.rb → openid_connect_spec.rb} +1 -1
- data/spec/slack/web/api/endpoints/reactions_spec.rb +3 -3
- data/spec/slack/web/api/endpoints/reminders_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/{apps_permissions_resources_spec.rb → team_billing_spec.rb} +1 -1
- data/spec/slack/web/api/endpoints/team_preferences_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/tooling_tokens_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +2 -2
- data/spec/slack/web/api/error_spec.rb +5 -7
- data/spec/slack/web/api/errors/slack_error_spec.rb +21 -26
- data/spec/slack/web/api/mixins/conversations_list_spec.rb +1 -1
- data/spec/slack/web/api/pagination/cursor_spec.rb +8 -10
- data/spec/slack/web/client_spec.rb +46 -32
- data/spec/slack/web/faraday/request_spec.rb +80 -0
- data/spec/slack/web/faraday/response/raise_error_spec.rb +2 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/support/real_time/connected_client.rb +2 -8
- data/spec/support/vcr.rb +33 -2
- metadata +50 -297
- data/.travis.yml +0 -28
- data/lib/slack/web/api/errors/internal_error.rb +0 -14
- data/lib/slack/web/api/mixins/channels.id.json +0 -20
- data/lib/slack/web/api/mixins/channels.id.rb +0 -25
- data/lib/slack/web/api/mixins/groups.id.json +0 -20
- data/lib/slack/web/api/mixins/groups.id.rb +0 -25
- data/spec/fixtures/slack/web/503_error.yml +0 -14
- data/spec/fixtures/slack/web/channels_info.yml +0 -139
- data/spec/fixtures/slack/web/groups_info.yml +0 -43
- data/spec/slack/web/api/endpoints/admin_conversations_whitelist_spec.rb +0 -32
- data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +0 -16
- data/spec/slack/web/api/endpoints/apps_permissions_users_spec.rb +0 -19
- data/spec/slack/web/api/endpoints/conversations_spec.rb +0 -109
- data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/im_spec.rb +0 -39
- data/spec/slack/web/api/endpoints/mpim_spec.rb +0 -39
- data/spec/slack/web/api/endpoints/views_spec.rb +0 -29
- data/spec/slack/web/api/mixins/channels_spec.rb +0 -43
- data/spec/slack/web/api/mixins/groups_spec.rb +0 -43
@@ -6,6 +6,42 @@ module Slack
|
|
6
6
|
module Api
|
7
7
|
module Endpoints
|
8
8
|
module Conversations
|
9
|
+
#
|
10
|
+
# Accepts an invitation to a Slack Connect channel.
|
11
|
+
#
|
12
|
+
# @option options [string] :channel_name
|
13
|
+
# Name of the channel. If the channel does not exist already in your workspace, this name is the one that the channel will take.
|
14
|
+
# @option options [Object] :channel_id
|
15
|
+
# ID of the channel that you'd like to accept. Must provide either invite_id or channel_id.
|
16
|
+
# @option options [boolean] :free_trial_accepted
|
17
|
+
# Whether you'd like to use your workspace's free trial to begin using Slack Connect.
|
18
|
+
# @option options [Object] :invite_id
|
19
|
+
# See the shared_channel_invite_received event payload for more details on how to retrieve the ID of the invitation.
|
20
|
+
# @option options [boolean] :is_private
|
21
|
+
# Whether the channel should be private.
|
22
|
+
# @option options [string] :team_id
|
23
|
+
# The ID of the workspace to accept the channel in. If an org-level token is used to call this method, the team_id argument is required.
|
24
|
+
# @see https://api.slack.com/methods/conversations.acceptSharedInvite
|
25
|
+
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.acceptSharedInvite.json
|
26
|
+
def conversations_acceptSharedInvite(options = {})
|
27
|
+
throw ArgumentError.new('Required arguments :channel_name missing') if options[:channel_name].nil?
|
28
|
+
post('conversations.acceptSharedInvite', options)
|
29
|
+
end
|
30
|
+
|
31
|
+
#
|
32
|
+
# Approves an invitation to a Slack Connect channel
|
33
|
+
#
|
34
|
+
# @option options [Object] :invite_id
|
35
|
+
# ID of the shared channel invite to approve.
|
36
|
+
# @option options [Object] :target_team
|
37
|
+
# The team or enterprise id of the other party involved in the invitation you are approving.
|
38
|
+
# @see https://api.slack.com/methods/conversations.approveSharedInvite
|
39
|
+
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.approveSharedInvite.json
|
40
|
+
def conversations_approveSharedInvite(options = {})
|
41
|
+
throw ArgumentError.new('Required arguments :invite_id missing') if options[:invite_id].nil?
|
42
|
+
post('conversations.approveSharedInvite', options)
|
43
|
+
end
|
44
|
+
|
9
45
|
#
|
10
46
|
# Archives a conversation.
|
11
47
|
#
|
@@ -35,11 +71,11 @@ module Slack
|
|
35
71
|
#
|
36
72
|
# Initiates a public or private channel-based conversation
|
37
73
|
#
|
38
|
-
# @option options [
|
74
|
+
# @option options [string] :name
|
39
75
|
# Name of the public or private channel to create.
|
40
|
-
# @option options [
|
76
|
+
# @option options [boolean] :is_private
|
41
77
|
# Create a private channel instead of a public one.
|
42
|
-
# @option options [
|
78
|
+
# @option options [string] :team_id
|
43
79
|
# encoded team id to create the channel in, required if org token is used.
|
44
80
|
# @see https://api.slack.com/methods/conversations.create
|
45
81
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.create.json
|
@@ -48,18 +84,32 @@ module Slack
|
|
48
84
|
post('conversations.create', options)
|
49
85
|
end
|
50
86
|
|
87
|
+
#
|
88
|
+
# Declines a Slack Connect channel invite.
|
89
|
+
#
|
90
|
+
# @option options [Object] :invite_id
|
91
|
+
# ID of the Slack Connect invite to decline. Subscribe to the shared_channel_invite_accepted event to receive IDs of Slack Connect channel invites that have been accepted and are awaiting approval.
|
92
|
+
# @option options [Object] :target_team
|
93
|
+
# The team or enterprise id of the other party involved in the invitation you are declining.
|
94
|
+
# @see https://api.slack.com/methods/conversations.declineSharedInvite
|
95
|
+
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.declineSharedInvite.json
|
96
|
+
def conversations_declineSharedInvite(options = {})
|
97
|
+
throw ArgumentError.new('Required arguments :invite_id missing') if options[:invite_id].nil?
|
98
|
+
post('conversations.declineSharedInvite', options)
|
99
|
+
end
|
100
|
+
|
51
101
|
#
|
52
102
|
# Fetches a conversation's history of messages and events.
|
53
103
|
#
|
54
104
|
# @option options [channel] :channel
|
55
105
|
# Conversation ID to fetch history for.
|
56
|
-
# @option options [
|
106
|
+
# @option options [string] :cursor
|
57
107
|
# 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.
|
58
|
-
# @option options [
|
108
|
+
# @option options [boolean] :inclusive
|
59
109
|
# Include messages with latest or oldest timestamp in results only when either timestamp is specified.
|
60
110
|
# @option options [timestamp] :latest
|
61
|
-
# End of time range of messages to include in results.
|
62
|
-
# @option options [
|
111
|
+
# End of time range of messages to include in results. Default is the current time.
|
112
|
+
# @option options [number] :limit
|
63
113
|
# The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached.
|
64
114
|
# @option options [timestamp] :oldest
|
65
115
|
# Start of time range of messages to include in results.
|
@@ -82,9 +132,9 @@ module Slack
|
|
82
132
|
#
|
83
133
|
# @option options [channel] :channel
|
84
134
|
# Conversation ID to learn more about.
|
85
|
-
# @option options [
|
135
|
+
# @option options [boolean] :include_locale
|
86
136
|
# Set this to true to receive the locale for this conversation. Defaults to false.
|
87
|
-
# @option options [
|
137
|
+
# @option options [boolean] :include_num_members
|
88
138
|
# Set to true to include the member count for the specified conversation. Defaults to false.
|
89
139
|
# @see https://api.slack.com/methods/conversations.info
|
90
140
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.info.json
|
@@ -99,7 +149,7 @@ module Slack
|
|
99
149
|
#
|
100
150
|
# @option options [channel] :channel
|
101
151
|
# The ID of the public or private channel to invite user(s) to.
|
102
|
-
# @option options [
|
152
|
+
# @option options [string] :users
|
103
153
|
# A comma separated list of user IDs. Up to 1000 users may be listed.
|
104
154
|
# @see https://api.slack.com/methods/conversations.invite
|
105
155
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.invite.json
|
@@ -110,6 +160,25 @@ module Slack
|
|
110
160
|
post('conversations.invite', options)
|
111
161
|
end
|
112
162
|
|
163
|
+
#
|
164
|
+
# Sends an invitation to a Slack Connect channel
|
165
|
+
#
|
166
|
+
# @option options [channel] :channel
|
167
|
+
# ID of the channel on your team that you'd like to share.
|
168
|
+
# @option options [array] :emails
|
169
|
+
# Optional email to receive this invite. Either emails or user_ids must be provided.
|
170
|
+
# @option options [boolean] :external_limited
|
171
|
+
# Optional boolean on whether invite is to a external limited member. Defaults to true.
|
172
|
+
# @option options [array] :user_ids
|
173
|
+
# Optional user_id to receive this invite. Either emails or user_ids must be provided.
|
174
|
+
# @see https://api.slack.com/methods/conversations.inviteShared
|
175
|
+
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.inviteShared.json
|
176
|
+
def conversations_inviteShared(options = {})
|
177
|
+
throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil?
|
178
|
+
options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
|
179
|
+
post('conversations.inviteShared', options)
|
180
|
+
end
|
181
|
+
|
113
182
|
#
|
114
183
|
# Joins an existing conversation.
|
115
184
|
#
|
@@ -156,15 +225,15 @@ module Slack
|
|
156
225
|
#
|
157
226
|
# Lists all channels in a Slack team.
|
158
227
|
#
|
159
|
-
# @option options [
|
228
|
+
# @option options [string] :cursor
|
160
229
|
# 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.
|
161
|
-
# @option options [
|
230
|
+
# @option options [boolean] :exclude_archived
|
162
231
|
# Set to true to exclude archived channels from the list.
|
163
|
-
# @option options [
|
232
|
+
# @option options [number] :limit
|
164
233
|
# The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the list hasn't been reached. Must be an integer no larger than 1000.
|
165
|
-
# @option options [
|
166
|
-
# encoded team id to list channels in, required if
|
167
|
-
# @option options [
|
234
|
+
# @option options [string] :team_id
|
235
|
+
# encoded team id to list channels in, required if token belongs to org-wide app.
|
236
|
+
# @option options [string] :types
|
168
237
|
# Mix and match channel types by providing a comma-separated list of any combination of public_channel, private_channel, mpim, im.
|
169
238
|
# @see https://api.slack.com/methods/conversations.list
|
170
239
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.list.json
|
@@ -178,6 +247,25 @@ module Slack
|
|
178
247
|
end
|
179
248
|
end
|
180
249
|
|
250
|
+
#
|
251
|
+
# Lists shared channel invites that have been generated or received but have not been approved by all parties
|
252
|
+
#
|
253
|
+
# @option options [string] :cursor
|
254
|
+
# Set to next_cursor returned by previous call to list items in subsequent page.
|
255
|
+
# @option options [string] :team_id
|
256
|
+
# Encoded team id for the workspace to retrieve invites for, required if org token is used.
|
257
|
+
# @see https://api.slack.com/methods/conversations.listConnectInvites
|
258
|
+
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.listConnectInvites.json
|
259
|
+
def conversations_listConnectInvites(options = {})
|
260
|
+
if block_given?
|
261
|
+
Pagination::Cursor.new(self, :conversations_listConnectInvites, options).each do |page|
|
262
|
+
yield page
|
263
|
+
end
|
264
|
+
else
|
265
|
+
post('conversations.listConnectInvites', options)
|
266
|
+
end
|
267
|
+
end
|
268
|
+
|
181
269
|
#
|
182
270
|
# Sets the read cursor in a channel.
|
183
271
|
#
|
@@ -199,9 +287,9 @@ module Slack
|
|
199
287
|
#
|
200
288
|
# @option options [channel] :channel
|
201
289
|
# ID of the conversation to retrieve members for.
|
202
|
-
# @option options [
|
290
|
+
# @option options [string] :cursor
|
203
291
|
# 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.
|
204
|
-
# @option options [
|
292
|
+
# @option options [number] :limit
|
205
293
|
# The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached.
|
206
294
|
# @see https://api.slack.com/methods/conversations.members
|
207
295
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.members.json
|
@@ -222,9 +310,11 @@ module Slack
|
|
222
310
|
#
|
223
311
|
# @option options [channel] :channel
|
224
312
|
# Resume a conversation by supplying an im or mpim's ID. Or provide the users field instead.
|
225
|
-
# @option options [
|
313
|
+
# @option options [boolean] :prevent_creation
|
314
|
+
# Do not create a direct message or multi-person direct message. This is used to see if there is an existing dm or mpdm.
|
315
|
+
# @option options [boolean] :return_im
|
226
316
|
# Boolean, indicates you want the full IM channel definition in the response.
|
227
|
-
# @option options [
|
317
|
+
# @option options [string] :users
|
228
318
|
# Comma separated lists of users. If only one user is included, this creates a 1:1 DM. The ordering of the users is preserved whenever a multi-person direct message is returned. Supply a channel when not supplying users.
|
229
319
|
# @see https://api.slack.com/methods/conversations.open
|
230
320
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.open.json
|
@@ -238,7 +328,7 @@ module Slack
|
|
238
328
|
#
|
239
329
|
# @option options [channel] :channel
|
240
330
|
# ID of conversation to rename.
|
241
|
-
# @option options [
|
331
|
+
# @option options [string] :name
|
242
332
|
# New name for conversation.
|
243
333
|
# @see https://api.slack.com/methods/conversations.rename
|
244
334
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.rename.json
|
@@ -255,14 +345,14 @@ module Slack
|
|
255
345
|
# @option options [channel] :channel
|
256
346
|
# Conversation ID to fetch thread from.
|
257
347
|
# @option options [timestamp] :ts
|
258
|
-
# Unique identifier of a thread's parent message. ts must be the timestamp of an existing message with 0 or more replies. If there are no replies then just the single message referenced by ts will return - it is just an ordinary, unthreaded message.
|
259
|
-
# @option options [
|
348
|
+
# Unique identifier of either a thread's parent message or a message in the thread. ts must be the timestamp of an existing message with 0 or more replies. If there are no replies then just the single message referenced by ts will return - it is just an ordinary, unthreaded message.
|
349
|
+
# @option options [string] :cursor
|
260
350
|
# 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.
|
261
|
-
# @option options [
|
351
|
+
# @option options [boolean] :inclusive
|
262
352
|
# Include messages with latest or oldest timestamp in results only when either timestamp is specified.
|
263
353
|
# @option options [timestamp] :latest
|
264
354
|
# End of time range of messages to include in results.
|
265
|
-
# @option options [
|
355
|
+
# @option options [number] :limit
|
266
356
|
# The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached.
|
267
357
|
# @option options [timestamp] :oldest
|
268
358
|
# Start of time range of messages to include in results.
|
@@ -286,7 +376,7 @@ module Slack
|
|
286
376
|
#
|
287
377
|
# @option options [channel] :channel
|
288
378
|
# Conversation to set the purpose of.
|
289
|
-
# @option options [
|
379
|
+
# @option options [string] :purpose
|
290
380
|
# A new, specialer purpose.
|
291
381
|
# @see https://api.slack.com/methods/conversations.setPurpose
|
292
382
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.setPurpose.json
|
@@ -302,7 +392,7 @@ module Slack
|
|
302
392
|
#
|
303
393
|
# @option options [channel] :channel
|
304
394
|
# Conversation to set the topic of.
|
305
|
-
# @option options [
|
395
|
+
# @option options [string] :topic
|
306
396
|
# The new topic string. Does not support formatting or linkification.
|
307
397
|
# @see https://api.slack.com/methods/conversations.setTopic
|
308
398
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.setTopic.json
|
@@ -9,9 +9,9 @@ module Slack
|
|
9
9
|
#
|
10
10
|
# Open a dialog with a user
|
11
11
|
#
|
12
|
-
# @option options [
|
12
|
+
# @option options [string] :dialog
|
13
13
|
# The dialog definition. This must be a JSON-encoded string.
|
14
|
-
# @option options [
|
14
|
+
# @option options [string] :trigger_id
|
15
15
|
# Exchange a trigger to post to the user.
|
16
16
|
# @see https://api.slack.com/methods/dialog.open
|
17
17
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/dialog/dialog.open.json
|
@@ -27,6 +27,8 @@ module Slack
|
|
27
27
|
#
|
28
28
|
# Retrieves a user's current Do Not Disturb status.
|
29
29
|
#
|
30
|
+
# @option options [string] :team_id
|
31
|
+
# Encoded team id where passed in user param belongs, required if org token is used. If no user param is passed, then a team which has access to the app should be passed.
|
30
32
|
# @option options [user] :user
|
31
33
|
# User to fetch status for (defaults to current user).
|
32
34
|
# @see https://api.slack.com/methods/dnd.info
|
@@ -39,20 +41,21 @@ module Slack
|
|
39
41
|
#
|
40
42
|
# Turns on Do Not Disturb mode for the current user, or changes its duration.
|
41
43
|
#
|
42
|
-
# @option options [
|
44
|
+
# @option options [string] :num_minutes
|
43
45
|
# Number of minutes, from now, to snooze until.
|
44
46
|
# @see https://api.slack.com/methods/dnd.setSnooze
|
45
47
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/dnd/dnd.setSnooze.json
|
46
48
|
def dnd_setSnooze(options = {})
|
47
|
-
throw ArgumentError.new('Required arguments :num_minutes missing') if options[:num_minutes].nil?
|
48
49
|
post('dnd.setSnooze', options)
|
49
50
|
end
|
50
51
|
|
51
52
|
#
|
52
53
|
# Retrieves the Do Not Disturb status for up to 50 users on a team.
|
53
54
|
#
|
54
|
-
# @option options [
|
55
|
+
# @option options [string] :users
|
55
56
|
# Comma-separated list of users to fetch Do Not Disturb status for.
|
57
|
+
# @option options [string] :team_id
|
58
|
+
# Encoded team id where passed in users belong, required if org token is used.
|
56
59
|
# @see https://api.slack.com/methods/dnd.teamInfo
|
57
60
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/dnd/dnd.teamInfo.json
|
58
61
|
def dnd_teamInfo(options = {})
|
@@ -40,9 +40,9 @@ module Slack
|
|
40
40
|
#
|
41
41
|
# @option options [file] :file
|
42
42
|
# Specify a file by providing its ID.
|
43
|
-
# @option options [
|
43
|
+
# @option options [string] :cursor
|
44
44
|
# Parameter for pagination. File comments are paginated for a single file. Set cursor equal to the next_cursor attribute returned by the previous request's response_metadata. This parameter is optional, but pagination is mandatory: the default value simply fetches the first "page" of the collection of comments. See pagination for more details.
|
45
|
-
# @option options [
|
45
|
+
# @option options [integer] :limit
|
46
46
|
# The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the list hasn't been reached.
|
47
47
|
# @see https://api.slack.com/methods/files.info
|
48
48
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/files/files.info.json
|
@@ -62,15 +62,17 @@ module Slack
|
|
62
62
|
#
|
63
63
|
# @option options [channel] :channel
|
64
64
|
# Filter files appearing in a specific channel, indicated by its ID.
|
65
|
-
# @option options [
|
65
|
+
# @option options [string] :files
|
66
|
+
# .
|
67
|
+
# @option options [boolean] :show_files_hidden_by_limit
|
66
68
|
# Show truncated file info for files hidden due to being too old, and the team who owns the file being over the file limit.
|
67
|
-
# @option options [
|
69
|
+
# @option options [string] :team_id
|
68
70
|
# encoded team id to list files in, required if org token is used.
|
69
|
-
# @option options [
|
71
|
+
# @option options [string] :ts_from
|
70
72
|
# Filter files created after this timestamp (inclusive).
|
71
|
-
# @option options [
|
73
|
+
# @option options [string] :ts_to
|
72
74
|
# Filter files created before this timestamp (inclusive).
|
73
|
-
# @option options [
|
75
|
+
# @option options [string] :types
|
74
76
|
# Filter files by type (see below). You can pass multiple values in the types argument, like types=spaces,snippets.The default value is all, which does not filter the list.
|
75
77
|
# @option options [user] :user
|
76
78
|
# Filter files created by a single user.
|
@@ -125,21 +127,21 @@ module Slack
|
|
125
127
|
#
|
126
128
|
# Uploads or creates a file.
|
127
129
|
#
|
128
|
-
# @option options [
|
130
|
+
# @option options [string] :channels
|
129
131
|
# Comma-separated list of channel names or IDs where the file will be shared.
|
130
|
-
# @option options [
|
132
|
+
# @option options [string] :content
|
131
133
|
# File contents via a POST variable. If omitting this parameter, you must provide a file.
|
132
134
|
# @option options [file] :file
|
133
135
|
# File contents via multipart/form-data. If omitting this parameter, you must submit content.
|
134
|
-
# @option options [
|
136
|
+
# @option options [string] :filename
|
135
137
|
# Filename of file.
|
136
|
-
# @option options [
|
138
|
+
# @option options [string] :filetype
|
137
139
|
# A file type identifier.
|
138
|
-
# @option options [
|
140
|
+
# @option options [string] :initial_comment
|
139
141
|
# The message text introducing the file in specified channels.
|
140
|
-
# @option options [
|
142
|
+
# @option options [string] :thread_ts
|
141
143
|
# Provide another message's ts value to upload this file as a reply. Never use a reply's ts value; use its parent instead.
|
142
|
-
# @option options [
|
144
|
+
# @option options [string] :title
|
143
145
|
# Title of file.
|
144
146
|
# @see https://api.slack.com/methods/files.upload
|
145
147
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/files/files.upload.json
|
@@ -11,7 +11,7 @@ module Slack
|
|
11
11
|
#
|
12
12
|
# @option options [file] :file
|
13
13
|
# File to delete a comment from.
|
14
|
-
# @option options [
|
14
|
+
# @option options [string] :id
|
15
15
|
# The comment to delete.
|
16
16
|
# @see https://api.slack.com/methods/files.comments.delete
|
17
17
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/files.comments/files.comments.delete.json
|
@@ -9,17 +9,17 @@ module Slack
|
|
9
9
|
#
|
10
10
|
# Adds a file from a remote service
|
11
11
|
#
|
12
|
-
# @option options [
|
12
|
+
# @option options [string] :external_id
|
13
13
|
# Creator defined GUID for the file.
|
14
|
-
# @option options [
|
14
|
+
# @option options [string] :external_url
|
15
15
|
# URL of the remote file.
|
16
|
-
# @option options [
|
16
|
+
# @option options [string] :title
|
17
17
|
# Title of the file being shared.
|
18
|
-
# @option options [
|
18
|
+
# @option options [string] :filetype
|
19
19
|
# type of file.
|
20
|
-
# @option options [
|
20
|
+
# @option options [string] :indexable_file_contents
|
21
21
|
# A text file (txt, pdf, doc, etc.) containing textual search terms that are used to improve discovery of the remote file.
|
22
|
-
# @option options [
|
22
|
+
# @option options [string] :preview_image
|
23
23
|
# Preview of the document via multipart/form-data.
|
24
24
|
# @see https://api.slack.com/methods/files.remote.add
|
25
25
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/files.remote/files.remote.add.json
|
@@ -33,7 +33,7 @@ module Slack
|
|
33
33
|
#
|
34
34
|
# Retrieve information about a remote file added to Slack
|
35
35
|
#
|
36
|
-
# @option options [
|
36
|
+
# @option options [string] :external_id
|
37
37
|
# Creator defined GUID for the file.
|
38
38
|
# @option options [file] :file
|
39
39
|
# Specify a file by providing its ID.
|
@@ -48,13 +48,13 @@ module Slack
|
|
48
48
|
#
|
49
49
|
# @option options [channel] :channel
|
50
50
|
# Filter files appearing in a specific channel, indicated by its ID.
|
51
|
-
# @option options [
|
51
|
+
# @option options [string] :cursor
|
52
52
|
# 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.
|
53
|
-
# @option options [
|
53
|
+
# @option options [integer] :limit
|
54
54
|
# The maximum number of items to return.
|
55
|
-
# @option options [
|
55
|
+
# @option options [string] :ts_from
|
56
56
|
# Filter files created after this timestamp (inclusive).
|
57
|
-
# @option options [
|
57
|
+
# @option options [string] :ts_to
|
58
58
|
# Filter files created before this timestamp (inclusive).
|
59
59
|
# @see https://api.slack.com/methods/files.remote.list
|
60
60
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/files.remote/files.remote.list.json
|
@@ -72,7 +72,7 @@ module Slack
|
|
72
72
|
#
|
73
73
|
# Remove a remote file.
|
74
74
|
#
|
75
|
-
# @option options [
|
75
|
+
# @option options [string] :external_id
|
76
76
|
# Creator defined GUID for the file.
|
77
77
|
# @option options [file] :file
|
78
78
|
# Specify a file by providing its ID.
|
@@ -85,9 +85,9 @@ module Slack
|
|
85
85
|
#
|
86
86
|
# Share a remote file into a channel.
|
87
87
|
#
|
88
|
-
# @option options [
|
88
|
+
# @option options [string] :channels
|
89
89
|
# Comma-separated list of channel IDs where the file will be shared.
|
90
|
-
# @option options [
|
90
|
+
# @option options [string] :external_id
|
91
91
|
# The globally unique identifier (GUID) for the file, as set by the app registering the file with Slack. Either this field or file or both are required.
|
92
92
|
# @option options [file] :file
|
93
93
|
# Specify a file registered with Slack by providing its ID. Either this field or external_id or both are required.
|
@@ -101,19 +101,19 @@ module Slack
|
|
101
101
|
#
|
102
102
|
# Updates an existing remote file.
|
103
103
|
#
|
104
|
-
# @option options [
|
104
|
+
# @option options [string] :external_id
|
105
105
|
# Creator defined GUID for the file.
|
106
|
-
# @option options [
|
106
|
+
# @option options [string] :external_url
|
107
107
|
# URL of the remote file.
|
108
108
|
# @option options [file] :file
|
109
109
|
# Specify a file by providing its ID.
|
110
|
-
# @option options [
|
110
|
+
# @option options [string] :filetype
|
111
111
|
# type of file.
|
112
|
-
# @option options [
|
112
|
+
# @option options [string] :indexable_file_contents
|
113
113
|
# File containing contents that can be used to improve searchability for the remote file.
|
114
|
-
# @option options [
|
114
|
+
# @option options [string] :preview_image
|
115
115
|
# Preview of the document via multipart/form-data.
|
116
|
-
# @option options [
|
116
|
+
# @option options [string] :title
|
117
117
|
# Title of the file being shared.
|
118
118
|
# @see https://api.slack.com/methods/files.remote.update
|
119
119
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/files.remote/files.remote.update.json
|