slack-ruby-client 2.3.0 → 2.4.0
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.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +22 -12
- data/.github/workflows/update_api.yml +1 -1
- data/.gitignore +1 -0
- data/CHANGELOG.md +7 -0
- data/README.md +26 -1
- data/bin/commands/admin_emoji.rb +1 -1
- data/bin/commands/admin_users.rb +4 -4
- data/bin/commands/admin_workflows.rb +4 -2
- data/bin/commands/admin_workflows_triggers_types_permissions.rb +31 -0
- data/bin/commands/apps_datastore.rb +46 -0
- data/bin/commands/canvases.rb +40 -0
- data/bin/commands/canvases_access.rb +34 -0
- data/bin/commands/canvases_sections.rb +21 -0
- data/bin/commands/conversations.rb +1 -1
- data/bin/commands/conversations_canvases.rb +21 -0
- data/bin/commands/conversations_externalInvitePermissions.rb +22 -0
- data/bin/commands/functions_distributions_permissions.rb +59 -0
- data/bin/commands/oauth.rb +2 -2
- data/bin/commands/oauth_v2.rb +2 -2
- data/bin/commands/reminders.rb +1 -1
- data/bin/commands/team_externalTeams.rb +35 -0
- data/bin/commands/users_discoverableContacts.rb +20 -0
- data/bin/commands/workflows_triggers_permissions.rb +60 -0
- data/lib/slack/messages/formatting.rb +13 -0
- data/lib/slack/version.rb +1 -1
- data/lib/slack/web/api/endpoints/admin_emoji.rb +1 -1
- data/lib/slack/web/api/endpoints/admin_users.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_workflows.rb +6 -2
- data/lib/slack/web/api/endpoints/admin_workflows_triggers_types_permissions.rb +41 -0
- data/lib/slack/web/api/endpoints/apps_datastore.rb +71 -0
- data/lib/slack/web/api/endpoints/canvases.rb +52 -0
- data/lib/slack/web/api/endpoints/canvases_access.rb +47 -0
- data/lib/slack/web/api/endpoints/canvases_sections.rb +27 -0
- data/lib/slack/web/api/endpoints/conversations.rb +1 -1
- data/lib/slack/web/api/endpoints/conversations_canvases.rb +26 -0
- data/lib/slack/web/api/endpoints/conversations_externalInvitePermissions.rb +31 -0
- data/lib/slack/web/api/endpoints/dnd.rb +1 -0
- data/lib/slack/web/api/endpoints/functions_distributions_permissions.rb +80 -0
- data/lib/slack/web/api/endpoints/oauth.rb +2 -2
- data/lib/slack/web/api/endpoints/oauth_v2.rb +2 -2
- data/lib/slack/web/api/endpoints/reminders.rb +1 -1
- data/lib/slack/web/api/endpoints/team_externalTeams.rb +53 -0
- data/lib/slack/web/api/endpoints/users_discoverableContacts.rb +24 -0
- data/lib/slack/web/api/endpoints/workflows_triggers_permissions.rb +87 -0
- data/lib/slack/web/api/endpoints.rb +20 -0
- data/lib/slack/web/api/errors.rb +70 -4
- data/lib/slack/web/api/templates/method.erb +1 -0
- data/lib/slack/web/api/templates/method_spec.erb +2 -1
- data/spec/slack/messages/formatting_spec.rb +32 -0
- data/spec/slack/web/api/endpoints/admin_workflows_triggers_types_permissions_spec.rb +21 -0
- data/spec/slack/web/api/endpoints/apps_datastore_spec.rb +29 -0
- data/spec/slack/web/api/endpoints/canvases_access_spec.rb +21 -0
- data/spec/slack/web/api/endpoints/canvases_sections_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/canvases_spec.rb +21 -0
- data/spec/slack/web/api/endpoints/conversations_canvases_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/conversations_externalInvitePermissions_spec.rb +19 -0
- data/spec/slack/web/api/endpoints/dnd_spec.rb +5 -0
- data/spec/slack/web/api/endpoints/functions_distributions_permissions_spec.rb +10 -0
- data/spec/slack/web/api/endpoints/team_externalTeams_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/users_discoverableContacts_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/workflows_triggers_permissions_spec.rb +31 -0
- metadata +32 -2
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::AdminWorkflowsTriggersTypesPermissions do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'admin.workflows.triggers.types.permissions_lookup' do
|
9
|
+
it 'requires trigger_type_ids' do
|
10
|
+
expect { client.admin_workflows_triggers_types_permissions_lookup }.to raise_error ArgumentError, /Required arguments :trigger_type_ids missing/
|
11
|
+
end
|
12
|
+
end
|
13
|
+
context 'admin.workflows.triggers.types.permissions_set' do
|
14
|
+
it 'requires id' do
|
15
|
+
expect { client.admin_workflows_triggers_types_permissions_set(visibility: %q[]) }.to raise_error ArgumentError, /Required arguments :id missing/
|
16
|
+
end
|
17
|
+
it 'requires visibility' do
|
18
|
+
expect { client.admin_workflows_triggers_types_permissions_set(id: %q[['FTT01', 'FTT02', 'FTT03']]) }.to raise_error ArgumentError, /Required arguments :visibility missing/
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -5,6 +5,35 @@ require 'spec_helper'
|
|
5
5
|
|
6
6
|
RSpec.describe Slack::Web::Api::Endpoints::AppsDatastore do
|
7
7
|
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'apps.datastore_bulkDelete' do
|
9
|
+
it 'requires datastore' do
|
10
|
+
expect { client.apps_datastore_bulkDelete(ids: %q[["7c6dd137", "c7d6d731"]]) }.to raise_error ArgumentError, /Required arguments :datastore missing/
|
11
|
+
end
|
12
|
+
it 'requires ids' do
|
13
|
+
expect { client.apps_datastore_bulkDelete(datastore: %q[]) }.to raise_error ArgumentError, /Required arguments :ids missing/
|
14
|
+
end
|
15
|
+
end
|
16
|
+
context 'apps.datastore_bulkGet' do
|
17
|
+
it 'requires datastore' do
|
18
|
+
expect { client.apps_datastore_bulkGet(ids: %q[["7c6dd137", "c7d6d731"]]) }.to raise_error ArgumentError, /Required arguments :datastore missing/
|
19
|
+
end
|
20
|
+
it 'requires ids' do
|
21
|
+
expect { client.apps_datastore_bulkGet(datastore: %q[]) }.to raise_error ArgumentError, /Required arguments :ids missing/
|
22
|
+
end
|
23
|
+
end
|
24
|
+
context 'apps.datastore_bulkPut' do
|
25
|
+
it 'requires datastore' do
|
26
|
+
expect { client.apps_datastore_bulkPut(items: %q[[{"id": "7c6dd137", "favourite_meal": "Shawarma", "reason": "Who doesn't like Shawarma?"}]]) }.to raise_error ArgumentError, /Required arguments :datastore missing/
|
27
|
+
end
|
28
|
+
it 'requires items' do
|
29
|
+
expect { client.apps_datastore_bulkPut(datastore: %q[]) }.to raise_error ArgumentError, /Required arguments :items missing/
|
30
|
+
end
|
31
|
+
end
|
32
|
+
context 'apps.datastore_count' do
|
33
|
+
it 'requires datastore' do
|
34
|
+
expect { client.apps_datastore_count }.to raise_error ArgumentError, /Required arguments :datastore missing/
|
35
|
+
end
|
36
|
+
end
|
8
37
|
context 'apps.datastore_delete' do
|
9
38
|
it 'requires datastore' do
|
10
39
|
expect { client.apps_datastore_delete(id: %q[]) }.to raise_error ArgumentError, /Required arguments :datastore missing/
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::CanvasesAccess do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'canvases.access_delete' do
|
9
|
+
it 'requires canvas_id' do
|
10
|
+
expect { client.canvases_access_delete }.to raise_error ArgumentError, /Required arguments :canvas_id missing/
|
11
|
+
end
|
12
|
+
end
|
13
|
+
context 'canvases.access_set' do
|
14
|
+
it 'requires access_level' do
|
15
|
+
expect { client.canvases_access_set(canvas_id: %q[F1234ABCD]) }.to raise_error ArgumentError, /Required arguments :access_level missing/
|
16
|
+
end
|
17
|
+
it 'requires canvas_id' do
|
18
|
+
expect { client.canvases_access_set(access_level: %q[]) }.to raise_error ArgumentError, /Required arguments :canvas_id missing/
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::CanvasesSections do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'canvases.sections_lookup' do
|
9
|
+
it 'requires canvas_id' do
|
10
|
+
expect { client.canvases_sections_lookup(criteria: %q[{"section_types": ["any_header"], "contains_text": "CAN Report"}]) }.to raise_error ArgumentError, /Required arguments :canvas_id missing/
|
11
|
+
end
|
12
|
+
it 'requires criteria' do
|
13
|
+
expect { client.canvases_sections_lookup(canvas_id: %q[F1234ABCD]) }.to raise_error ArgumentError, /Required arguments :criteria missing/
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::Canvases do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'canvases_delete' do
|
9
|
+
it 'requires canvas_id' do
|
10
|
+
expect { client.canvases_delete }.to raise_error ArgumentError, /Required arguments :canvas_id missing/
|
11
|
+
end
|
12
|
+
end
|
13
|
+
context 'canvases_edit' do
|
14
|
+
it 'requires canvas_id' do
|
15
|
+
expect { client.canvases_edit(changes: %q[[{"operation":"insert_before","document_content":{"type":"markdown","markdown":"Example content"},"section_id":"temp:C:AAAAAAAAAAAAAAAAAAAAAAAAAAAA"}]]) }.to raise_error ArgumentError, /Required arguments :canvas_id missing/
|
16
|
+
end
|
17
|
+
it 'requires changes' do
|
18
|
+
expect { client.canvases_edit(canvas_id: %q[F1234ABCD]) }.to raise_error ArgumentError, /Required arguments :changes missing/
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::ConversationsCanvases do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'conversations.canvases_create' do
|
9
|
+
it 'requires channel_id' do
|
10
|
+
expect { client.conversations_canvases_create }.to raise_error ArgumentError, /Required arguments :channel_id missing/
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::ConversationsExternalinvitepermissions do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'conversations.externalInvitePermissions_set' do
|
9
|
+
it 'requires action' do
|
10
|
+
expect { client.conversations_externalInvitePermissions_set(channel: %q[C123456], target_team: %q[T726G27TT]) }.to raise_error ArgumentError, /Required arguments :action missing/
|
11
|
+
end
|
12
|
+
it 'requires channel' do
|
13
|
+
expect { client.conversations_externalInvitePermissions_set(action: %q[upgrade], target_team: %q[T726G27TT]) }.to raise_error ArgumentError, /Required arguments :channel missing/
|
14
|
+
end
|
15
|
+
it 'requires target_team' do
|
16
|
+
expect { client.conversations_externalInvitePermissions_set(action: %q[upgrade], channel: %q[C123456]) }.to raise_error ArgumentError, /Required arguments :target_team missing/
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -5,6 +5,11 @@ require 'spec_helper'
|
|
5
5
|
|
6
6
|
RSpec.describe Slack::Web::Api::Endpoints::Dnd do
|
7
7
|
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'dnd_setSnooze' do
|
9
|
+
it 'requires num_minutes' do
|
10
|
+
expect { client.dnd_setSnooze }.to raise_error ArgumentError, /Required arguments :num_minutes missing/
|
11
|
+
end
|
12
|
+
end
|
8
13
|
context 'dnd_teamInfo' do
|
9
14
|
it 'requires users' do
|
10
15
|
expect { client.dnd_teamInfo }.to raise_error ArgumentError, /Required arguments :users missing/
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::FunctionsDistributionsPermissions do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'functions.distributions.permissions_set' do
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::TeamExternalteams do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'team.externalTeams_disconnect' do
|
9
|
+
it 'requires target_team' do
|
10
|
+
expect { client.team_externalTeams_disconnect }.to raise_error ArgumentError, /Required arguments :target_team missing/
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::UsersDiscoverablecontacts do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'users.discoverableContacts_lookup' do
|
9
|
+
it 'requires email' do
|
10
|
+
expect { client.users_discoverableContacts_lookup }.to raise_error ArgumentError, /Required arguments :email missing/
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
3
|
+
|
4
|
+
require 'spec_helper'
|
5
|
+
|
6
|
+
RSpec.describe Slack::Web::Api::Endpoints::WorkflowsTriggersPermissions do
|
7
|
+
let(:client) { Slack::Web::Client.new }
|
8
|
+
context 'workflows.triggers.permissions_add' do
|
9
|
+
it 'requires trigger_id' do
|
10
|
+
expect { client.workflows_triggers_permissions_add }.to raise_error ArgumentError, /Required arguments :trigger_id missing/
|
11
|
+
end
|
12
|
+
end
|
13
|
+
context 'workflows.triggers.permissions_list' do
|
14
|
+
it 'requires trigger_id' do
|
15
|
+
expect { client.workflows_triggers_permissions_list }.to raise_error ArgumentError, /Required arguments :trigger_id missing/
|
16
|
+
end
|
17
|
+
end
|
18
|
+
context 'workflows.triggers.permissions_remove' do
|
19
|
+
it 'requires trigger_id' do
|
20
|
+
expect { client.workflows_triggers_permissions_remove }.to raise_error ArgumentError, /Required arguments :trigger_id missing/
|
21
|
+
end
|
22
|
+
end
|
23
|
+
context 'workflows.triggers.permissions_set' do
|
24
|
+
it 'requires permission_type' do
|
25
|
+
expect { client.workflows_triggers_permissions_set(trigger_id: %q[Ft0000000001]) }.to raise_error ArgumentError, /Required arguments :permission_type missing/
|
26
|
+
end
|
27
|
+
it 'requires trigger_id' do
|
28
|
+
expect { client.workflows_triggers_permissions_set(permission_type: %q[]) }.to raise_error ArgumentError, /Required arguments :trigger_id missing/
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slack-ruby-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Doubrovkine
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -143,6 +143,7 @@ files:
|
|
143
143
|
- bin/commands/admin_workflows.rb
|
144
144
|
- bin/commands/admin_workflows_collaborators.rb
|
145
145
|
- bin/commands/admin_workflows_permissions.rb
|
146
|
+
- bin/commands/admin_workflows_triggers_types_permissions.rb
|
146
147
|
- bin/commands/api.rb
|
147
148
|
- bin/commands/apps.rb
|
148
149
|
- bin/commands/apps_activities.rb
|
@@ -157,9 +158,14 @@ files:
|
|
157
158
|
- bin/commands/bots.rb
|
158
159
|
- bin/commands/calls.rb
|
159
160
|
- bin/commands/calls_participants.rb
|
161
|
+
- bin/commands/canvases.rb
|
162
|
+
- bin/commands/canvases_access.rb
|
163
|
+
- bin/commands/canvases_sections.rb
|
160
164
|
- bin/commands/chat.rb
|
161
165
|
- bin/commands/chat_scheduledMessages.rb
|
162
166
|
- bin/commands/conversations.rb
|
167
|
+
- bin/commands/conversations_canvases.rb
|
168
|
+
- bin/commands/conversations_externalInvitePermissions.rb
|
163
169
|
- bin/commands/dialog.rb
|
164
170
|
- bin/commands/dnd.rb
|
165
171
|
- bin/commands/emoji.rb
|
@@ -167,6 +173,7 @@ files:
|
|
167
173
|
- bin/commands/files_comments.rb
|
168
174
|
- bin/commands/files_remote.rb
|
169
175
|
- bin/commands/functions.rb
|
176
|
+
- bin/commands/functions_distributions_permissions.rb
|
170
177
|
- bin/commands/functions_workflows_steps.rb
|
171
178
|
- bin/commands/functions_workflows_steps_responses.rb
|
172
179
|
- bin/commands/migration.rb
|
@@ -181,6 +188,7 @@ files:
|
|
181
188
|
- bin/commands/stars.rb
|
182
189
|
- bin/commands/team.rb
|
183
190
|
- bin/commands/team_billing.rb
|
191
|
+
- bin/commands/team_externalTeams.rb
|
184
192
|
- bin/commands/team_preferences.rb
|
185
193
|
- bin/commands/team_profile.rb
|
186
194
|
- bin/commands/tooling_tokens.rb
|
@@ -188,10 +196,12 @@ files:
|
|
188
196
|
- bin/commands/usergroups_users.rb
|
189
197
|
- bin/commands/users.rb
|
190
198
|
- bin/commands/users_admin.rb
|
199
|
+
- bin/commands/users_discoverableContacts.rb
|
191
200
|
- bin/commands/users_prefs.rb
|
192
201
|
- bin/commands/users_profile.rb
|
193
202
|
- bin/commands/views.rb
|
194
203
|
- bin/commands/workflows.rb
|
204
|
+
- bin/commands/workflows_triggers_permissions.rb
|
195
205
|
- bin/slack
|
196
206
|
- examples/hi_real_time_and_web/Gemfile
|
197
207
|
- examples/hi_real_time_and_web/hi.gif
|
@@ -268,6 +278,7 @@ files:
|
|
268
278
|
- lib/slack/web/api/endpoints/admin_workflows.rb
|
269
279
|
- lib/slack/web/api/endpoints/admin_workflows_collaborators.rb
|
270
280
|
- lib/slack/web/api/endpoints/admin_workflows_permissions.rb
|
281
|
+
- lib/slack/web/api/endpoints/admin_workflows_triggers_types_permissions.rb
|
271
282
|
- lib/slack/web/api/endpoints/api.rb
|
272
283
|
- lib/slack/web/api/endpoints/apps.rb
|
273
284
|
- lib/slack/web/api/endpoints/apps_activities.rb
|
@@ -282,9 +293,14 @@ files:
|
|
282
293
|
- lib/slack/web/api/endpoints/bots.rb
|
283
294
|
- lib/slack/web/api/endpoints/calls.rb
|
284
295
|
- lib/slack/web/api/endpoints/calls_participants.rb
|
296
|
+
- lib/slack/web/api/endpoints/canvases.rb
|
297
|
+
- lib/slack/web/api/endpoints/canvases_access.rb
|
298
|
+
- lib/slack/web/api/endpoints/canvases_sections.rb
|
285
299
|
- lib/slack/web/api/endpoints/chat.rb
|
286
300
|
- lib/slack/web/api/endpoints/chat_scheduledMessages.rb
|
287
301
|
- lib/slack/web/api/endpoints/conversations.rb
|
302
|
+
- lib/slack/web/api/endpoints/conversations_canvases.rb
|
303
|
+
- lib/slack/web/api/endpoints/conversations_externalInvitePermissions.rb
|
288
304
|
- lib/slack/web/api/endpoints/dialog.rb
|
289
305
|
- lib/slack/web/api/endpoints/dnd.rb
|
290
306
|
- lib/slack/web/api/endpoints/emoji.rb
|
@@ -292,6 +308,7 @@ files:
|
|
292
308
|
- lib/slack/web/api/endpoints/files_comments.rb
|
293
309
|
- lib/slack/web/api/endpoints/files_remote.rb
|
294
310
|
- lib/slack/web/api/endpoints/functions.rb
|
311
|
+
- lib/slack/web/api/endpoints/functions_distributions_permissions.rb
|
295
312
|
- lib/slack/web/api/endpoints/functions_workflows_steps.rb
|
296
313
|
- lib/slack/web/api/endpoints/functions_workflows_steps_responses.rb
|
297
314
|
- lib/slack/web/api/endpoints/migration.rb
|
@@ -306,6 +323,7 @@ files:
|
|
306
323
|
- lib/slack/web/api/endpoints/stars.rb
|
307
324
|
- lib/slack/web/api/endpoints/team.rb
|
308
325
|
- lib/slack/web/api/endpoints/team_billing.rb
|
326
|
+
- lib/slack/web/api/endpoints/team_externalTeams.rb
|
309
327
|
- lib/slack/web/api/endpoints/team_preferences.rb
|
310
328
|
- lib/slack/web/api/endpoints/team_profile.rb
|
311
329
|
- lib/slack/web/api/endpoints/tooling_tokens.rb
|
@@ -313,10 +331,12 @@ files:
|
|
313
331
|
- lib/slack/web/api/endpoints/usergroups_users.rb
|
314
332
|
- lib/slack/web/api/endpoints/users.rb
|
315
333
|
- lib/slack/web/api/endpoints/users_admin.rb
|
334
|
+
- lib/slack/web/api/endpoints/users_discoverableContacts.rb
|
316
335
|
- lib/slack/web/api/endpoints/users_prefs.rb
|
317
336
|
- lib/slack/web/api/endpoints/users_profile.rb
|
318
337
|
- lib/slack/web/api/endpoints/views.rb
|
319
338
|
- lib/slack/web/api/endpoints/workflows.rb
|
339
|
+
- lib/slack/web/api/endpoints/workflows_triggers_permissions.rb
|
320
340
|
- lib/slack/web/api/error.rb
|
321
341
|
- lib/slack/web/api/errors.rb
|
322
342
|
- lib/slack/web/api/errors/server_error.rb
|
@@ -420,6 +440,7 @@ files:
|
|
420
440
|
- spec/slack/web/api/endpoints/admin_workflows_collaborators_spec.rb
|
421
441
|
- spec/slack/web/api/endpoints/admin_workflows_permissions_spec.rb
|
422
442
|
- spec/slack/web/api/endpoints/admin_workflows_spec.rb
|
443
|
+
- spec/slack/web/api/endpoints/admin_workflows_triggers_types_permissions_spec.rb
|
423
444
|
- spec/slack/web/api/endpoints/api_spec.rb
|
424
445
|
- spec/slack/web/api/endpoints/apps_activities_spec.rb
|
425
446
|
- spec/slack/web/api/endpoints/apps_auth_external_spec.rb
|
@@ -434,8 +455,13 @@ files:
|
|
434
455
|
- spec/slack/web/api/endpoints/bots_spec.rb
|
435
456
|
- spec/slack/web/api/endpoints/calls_participants_spec.rb
|
436
457
|
- spec/slack/web/api/endpoints/calls_spec.rb
|
458
|
+
- spec/slack/web/api/endpoints/canvases_access_spec.rb
|
459
|
+
- spec/slack/web/api/endpoints/canvases_sections_spec.rb
|
460
|
+
- spec/slack/web/api/endpoints/canvases_spec.rb
|
437
461
|
- spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb
|
438
462
|
- spec/slack/web/api/endpoints/chat_spec.rb
|
463
|
+
- spec/slack/web/api/endpoints/conversations_canvases_spec.rb
|
464
|
+
- spec/slack/web/api/endpoints/conversations_externalInvitePermissions_spec.rb
|
439
465
|
- spec/slack/web/api/endpoints/conversations_spec.rb
|
440
466
|
- spec/slack/web/api/endpoints/custom_specs/auth_spec.rb
|
441
467
|
- spec/slack/web/api/endpoints/custom_specs/chat_spec.rb
|
@@ -449,6 +475,7 @@ files:
|
|
449
475
|
- spec/slack/web/api/endpoints/files_comments_spec.rb
|
450
476
|
- spec/slack/web/api/endpoints/files_remote_spec.rb
|
451
477
|
- spec/slack/web/api/endpoints/files_spec.rb
|
478
|
+
- spec/slack/web/api/endpoints/functions_distributions_permissions_spec.rb
|
452
479
|
- spec/slack/web/api/endpoints/functions_spec.rb
|
453
480
|
- spec/slack/web/api/endpoints/functions_workflows_steps_responses_spec.rb
|
454
481
|
- spec/slack/web/api/endpoints/functions_workflows_steps_spec.rb
|
@@ -463,6 +490,7 @@ files:
|
|
463
490
|
- spec/slack/web/api/endpoints/search_spec.rb
|
464
491
|
- spec/slack/web/api/endpoints/stars_spec.rb
|
465
492
|
- spec/slack/web/api/endpoints/team_billing_spec.rb
|
493
|
+
- spec/slack/web/api/endpoints/team_externalTeams_spec.rb
|
466
494
|
- spec/slack/web/api/endpoints/team_preferences_spec.rb
|
467
495
|
- spec/slack/web/api/endpoints/team_profile_spec.rb
|
468
496
|
- spec/slack/web/api/endpoints/team_spec.rb
|
@@ -470,11 +498,13 @@ files:
|
|
470
498
|
- spec/slack/web/api/endpoints/usergroups_spec.rb
|
471
499
|
- spec/slack/web/api/endpoints/usergroups_users_spec.rb
|
472
500
|
- spec/slack/web/api/endpoints/users_admin_spec.rb
|
501
|
+
- spec/slack/web/api/endpoints/users_discoverableContacts_spec.rb
|
473
502
|
- spec/slack/web/api/endpoints/users_prefs_spec.rb
|
474
503
|
- spec/slack/web/api/endpoints/users_profile_spec.rb
|
475
504
|
- spec/slack/web/api/endpoints/users_spec.rb
|
476
505
|
- spec/slack/web/api/endpoints/views_spec.rb
|
477
506
|
- spec/slack/web/api/endpoints/workflows_spec.rb
|
507
|
+
- spec/slack/web/api/endpoints/workflows_triggers_permissions_spec.rb
|
478
508
|
- spec/slack/web/api/error_spec.rb
|
479
509
|
- spec/slack/web/api/errors/slack_error_spec.rb
|
480
510
|
- spec/slack/web/api/mixins/conversations_list_spec.rb
|