slack-ruby-client 0.13.1 → 2.0.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/FUNDING.yml +1 -0
- data/.github/workflows/integration_test.yml +26 -0
- data/.github/workflows/lint.yml +14 -0
- data/.github/workflows/pr_lint.yml +21 -0
- data/.github/workflows/test.yml +36 -0
- data/.gitignore +5 -3
- data/.rubocop.yml +34 -5
- data/.rubocop_todo.yml +180 -46
- data/.ruby-version +1 -0
- data/CHANGELOG.md +119 -2
- data/CONTRIBUTING.md +23 -11
- data/Dangerfile +2 -0
- data/Gemfile +22 -5
- data/Gemfile.danger +6 -0
- data/LICENSE.md +1 -1
- data/README.md +236 -101
- data/RELEASING.md +2 -2
- data/Rakefile +2 -1
- data/UPGRADING.md +100 -2
- data/bin/commands/admin_analytics.rb +16 -0
- data/bin/commands/admin_apps.rb +51 -0
- data/bin/commands/admin_apps_approved.rb +17 -0
- data/bin/commands/admin_apps_requests.rb +28 -0
- data/bin/commands/admin_apps_restricted.rb +17 -0
- data/bin/commands/admin_audit_anomaly_allow.rb +23 -0
- data/bin/commands/admin_auth_policy.rb +39 -0
- data/bin/commands/admin_barriers.rb +47 -0
- data/bin/commands/admin_conversations.rb +171 -0
- data/bin/commands/admin_conversations_ekm.rb +17 -0
- data/bin/commands/admin_conversations_restrictAccess.rb +37 -0
- data/bin/commands/admin_emoji.rb +54 -0
- data/bin/commands/admin_inviteRequests.rb +36 -0
- data/bin/commands/admin_inviteRequests_approved.rb +16 -0
- data/bin/commands/admin_inviteRequests_denied.rb +16 -0
- data/bin/commands/admin_teams.rb +27 -0
- data/bin/commands/admin_teams_admins.rb +16 -0
- data/bin/commands/admin_teams_owners.rb +16 -0
- data/bin/commands/admin_teams_settings.rb +64 -0
- data/bin/commands/admin_usergroups.rb +48 -0
- data/bin/commands/admin_users.rb +98 -0
- data/bin/commands/admin_users_session.rb +78 -0
- data/bin/commands/admin_users_unsupportedVersions.rb +15 -0
- data/bin/commands/api.rb +1 -1
- data/bin/commands/apps.rb +15 -0
- data/bin/commands/apps_connections.rb +13 -0
- data/bin/commands/apps_event_authorizations.rb +16 -0
- data/bin/commands/apps_manifest.rb +52 -0
- data/bin/commands/auth.rb +1 -0
- data/bin/commands/auth_teams.rb +16 -0
- data/bin/commands/bookmarks.rb +53 -0
- data/bin/commands/bots.rb +2 -0
- data/bin/commands/calls.rb +52 -0
- data/bin/commands/calls_participants.rb +25 -0
- data/bin/commands/chat.rb +61 -14
- data/bin/commands/chat_scheduledMessages.rb +19 -0
- data/bin/commands/conversations.rb +82 -10
- data/bin/commands/dialog.rb +1 -0
- data/bin/commands/dnd.rb +6 -3
- data/bin/commands/emoji.rb +1 -0
- data/bin/commands/files.rb +34 -18
- data/bin/commands/files_comments.rb +1 -21
- data/bin/commands/files_remote.rb +78 -0
- data/bin/commands/migration.rb +2 -0
- data/bin/commands/oauth.rb +2 -14
- data/bin/commands/oauth_v2.rb +29 -0
- data/bin/commands/openid_connect.rb +27 -0
- data/bin/commands/pins.rb +3 -6
- data/bin/commands/reactions.rb +3 -3
- data/bin/commands/reminders.rb +7 -0
- data/bin/commands/rtm.rb +1 -15
- data/bin/commands/search.rb +6 -1
- data/bin/commands/stars.rb +8 -6
- data/bin/commands/team.rb +6 -0
- data/bin/commands/team_billing.rb +13 -0
- data/bin/commands/team_preferences.rb +13 -0
- data/bin/commands/team_profile.rb +1 -0
- data/bin/commands/tooling_tokens.rb +14 -0
- data/bin/commands/usergroups.rb +7 -1
- data/bin/commands/usergroups_users.rb +3 -0
- data/bin/commands/users.rb +6 -4
- data/bin/commands/users_admin.rb +1 -0
- data/bin/commands/users_prefs.rb +1 -0
- data/bin/commands/users_profile.rb +6 -5
- data/bin/commands/views.rb +50 -0
- data/bin/commands/workflows.rb +38 -0
- data/bin/commands.rb +41 -8
- data/bin/slack +3 -4
- data/examples/hi_real_time_and_web/Gemfile +1 -0
- data/examples/hi_real_time_and_web/hi.rb +7 -3
- data/examples/hi_real_time_async_async/Gemfile +1 -0
- data/examples/hi_real_time_async_async/hi.rb +6 -2
- data/examples/hi_web/Gemfile +1 -0
- data/examples/hi_web/hi.rb +1 -0
- data/examples/new_ticket/Gemfile +1 -0
- data/examples/new_ticket/new_ticket.rb +1 -0
- data/lib/slack/config.rb +2 -2
- data/lib/slack/events/config.rb +32 -0
- data/lib/slack/events/request.rb +72 -0
- data/lib/slack/logger.rb +6 -5
- data/lib/slack/messages/formatting.rb +1 -0
- data/lib/slack/messages/message.rb +1 -4
- data/lib/slack/real_time/api/message.rb +6 -3
- data/lib/slack/real_time/api/message_id.rb +1 -0
- data/lib/slack/real_time/api/ping.rb +5 -2
- data/lib/slack/real_time/api/templates/event_handler.erb +5 -1
- data/lib/slack/real_time/api/typing.rb +5 -2
- data/lib/slack/real_time/client.rb +105 -54
- data/lib/slack/real_time/concurrency/async.rb +77 -6
- data/lib/slack/real_time/concurrency.rb +1 -2
- data/lib/slack/real_time/config.rb +9 -13
- data/lib/slack/real_time/models/base.rb +1 -4
- data/lib/slack/real_time/models/bot.rb +1 -0
- data/lib/slack/real_time/models/channel.rb +5 -0
- data/lib/slack/real_time/models/im.rb +1 -0
- data/lib/slack/real_time/models/{group.rb → mpim.rb} +2 -1
- data/lib/slack/real_time/models/team.rb +1 -0
- data/lib/slack/real_time/models/user.rb +1 -0
- data/lib/slack/real_time/models.rb +3 -1
- data/lib/slack/real_time/socket.rb +45 -17
- data/lib/slack/real_time/stores/base.rb +28 -14
- data/lib/slack/real_time/stores/starter.rb +325 -297
- data/lib/slack/real_time/stores/store.rb +271 -196
- data/lib/slack/real_time/stores.rb +2 -7
- data/lib/slack/version.rb +2 -1
- data/lib/slack/web/api/endpoints/admin_analytics.rb +28 -0
- data/lib/slack/web/api/endpoints/admin_apps.rb +78 -0
- data/lib/slack/web/api/endpoints/admin_apps_approved.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_apps_requests.rb +51 -0
- data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_audit_anomaly_allow.rb +34 -0
- data/lib/slack/web/api/endpoints/admin_auth_policy.rb +72 -0
- data/lib/slack/web/api/endpoints/admin_barriers.rb +82 -0
- data/lib/slack/web/api/endpoints/admin_conversations.rb +264 -0
- data/lib/slack/web/api/endpoints/admin_conversations_ekm.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_conversations_restrictAccess.rb +61 -0
- data/lib/slack/web/api/endpoints/admin_emoji.rb +88 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests.rb +61 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests_approved.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests_denied.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_teams.rb +50 -0
- data/lib/slack/web/api/endpoints/admin_teams_admins.rb +34 -0
- data/lib/slack/web/api/endpoints/admin_teams_owners.rb +34 -0
- data/lib/slack/web/api/endpoints/admin_teams_settings.rb +99 -0
- data/lib/slack/web/api/endpoints/admin_usergroups.rb +77 -0
- data/lib/slack/web/api/endpoints/admin_users.rb +163 -0
- data/lib/slack/web/api/endpoints/admin_users_session.rb +122 -0
- data/lib/slack/web/api/endpoints/admin_users_unsupportedVersions.rb +25 -0
- data/lib/slack/web/api/endpoints/api.rb +2 -3
- data/lib/slack/web/api/endpoints/apps.rb +27 -0
- data/lib/slack/web/api/endpoints/apps_connections.rb +21 -0
- data/lib/slack/web/api/endpoints/apps_event_authorizations.rb +34 -0
- data/lib/slack/web/api/endpoints/apps_manifest.rb +77 -0
- data/lib/slack/web/api/endpoints/auth.rb +2 -1
- data/lib/slack/web/api/endpoints/auth_teams.rb +33 -0
- data/lib/slack/web/api/endpoints/bookmarks.rb +88 -0
- data/lib/slack/web/api/endpoints/bots.rb +4 -1
- data/lib/slack/web/api/endpoints/calls.rb +83 -0
- data/lib/slack/web/api/endpoints/calls_participants.rb +42 -0
- data/lib/slack/web/api/endpoints/chat.rb +168 -65
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +40 -0
- data/lib/slack/web/api/endpoints/conversations.rb +182 -67
- data/lib/slack/web/api/endpoints/dialog.rb +5 -4
- data/lib/slack/web/api/endpoints/dnd.rb +9 -4
- data/lib/slack/web/api/endpoints/emoji.rb +1 -0
- data/lib/slack/web/api/endpoints/files.rb +69 -37
- data/lib/slack/web/api/endpoints/files_comments.rb +4 -36
- data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
- data/lib/slack/web/api/endpoints/migration.rb +6 -3
- data/lib/slack/web/api/endpoints/oauth.rb +7 -31
- data/lib/slack/web/api/endpoints/oauth_v2.rb +48 -0
- data/lib/slack/web/api/endpoints/openid_connect.rb +42 -0
- data/lib/slack/web/api/endpoints/pins.rb +11 -18
- data/lib/slack/web/api/endpoints/reactions.rb +22 -21
- data/lib/slack/web/api/endpoints/reminders.rb +23 -10
- data/lib/slack/web/api/endpoints/rtm.rb +3 -25
- data/lib/slack/web/api/endpoints/search.rb +31 -16
- data/lib/slack/web/api/endpoints/stars.rb +14 -11
- data/lib/slack/web/api/endpoints/team.rb +15 -4
- 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 +2 -1
- data/lib/slack/web/api/endpoints/tooling_tokens.rb +24 -0
- data/lib/slack/web/api/endpoints/usergroups.rb +31 -20
- data/lib/slack/web/api/endpoints/usergroups_users.rb +13 -8
- data/lib/slack/web/api/endpoints/users.rb +24 -23
- data/lib/slack/web/api/endpoints/users_admin.rb +3 -2
- data/lib/slack/web/api/endpoints/users_prefs.rb +1 -0
- data/lib/slack/web/api/endpoints/users_profile.rb +8 -7
- data/lib/slack/web/api/endpoints/views.rb +102 -0
- data/lib/slack/web/api/endpoints/workflows.rb +61 -0
- data/lib/slack/web/api/endpoints.rb +82 -18
- data/lib/slack/web/api/error.rb +1 -0
- data/lib/slack/web/api/errors/server_error.rb +37 -0
- data/lib/slack/web/api/errors/slack_error.rb +14 -1
- data/lib/slack/web/api/errors/too_many_requests_error.rb +2 -4
- data/lib/slack/web/api/errors.rb +1116 -0
- data/lib/slack/web/api/mixins/{channels.id.rb → conversations.id.rb} +5 -6
- data/lib/slack/web/api/mixins/ids.id.rb +3 -2
- data/lib/slack/web/api/mixins/users.id.rb +3 -4
- data/lib/slack/web/api/mixins/users.search.rb +3 -1
- data/lib/slack/web/api/mixins.rb +2 -2
- data/lib/slack/web/api/patches/chat.attachments-blocks.patch +69 -0
- data/lib/slack/web/api/patches/{dialog.1.open-json-support.patch → dialog.encoded-json.patch} +4 -4
- data/lib/slack/web/api/patches/views.view-json.patch +55 -0
- data/lib/slack/web/api/templates/command.erb +1 -0
- data/lib/slack/web/api/templates/commands.erb +1 -0
- data/lib/slack/web/api/templates/endpoints.erb +2 -2
- data/lib/slack/web/api/templates/errors.erb +20 -0
- data/lib/slack/web/api/templates/method.erb +6 -2
- data/lib/slack/web/api/templates/method_spec.erb +2 -1
- data/lib/slack/web/client.rb +2 -1
- data/lib/slack/web/config.rb +5 -2
- data/lib/slack/web/faraday/connection.rb +24 -20
- data/lib/slack/web/faraday/request.rb +5 -1
- data/lib/slack/web/faraday/response/raise_error.rb +14 -7
- data/lib/slack/web/faraday/response/wrap_error.rb +24 -0
- data/lib/slack/web/pagination/cursor.rb +7 -7
- data/lib/slack-ruby-client.rb +12 -5
- data/lib/slack.rb +1 -0
- data/lib/slack_ruby_client.rb +1 -0
- data/lib/tasks/git.rake +1 -0
- data/lib/tasks/real_time.rake +51 -21
- data/lib/tasks/update.rake +1 -0
- data/lib/tasks/web.rake +48 -12
- data/screenshots/create-app.png +0 -0
- data/slack-ruby-client.gemspec +7 -12
- 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 +84 -0
- data/spec/fixtures/slack/web/conversations_setTopic_one_page.yml +172 -0
- data/spec/fixtures/slack/web/conversations_setTopic_paginated.yml +253 -0
- data/spec/fixtures/slack/web/paginated_users_list.yml +501 -69
- data/spec/fixtures/slack/web/rtm_connect.yml +347 -26
- 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 +83 -0
- data/spec/integration/integration_spec.rb +115 -47
- data/spec/slack/config_spec.rb +2 -0
- data/spec/slack/events/config_spec.rb +35 -0
- data/spec/slack/events/request_spec.rb +188 -0
- data/spec/slack/messages/formatting_spec.rb +35 -13
- data/spec/slack/real_time/api/message_spec.rb +7 -2
- data/spec/slack/real_time/api/ping_spec.rb +3 -1
- data/spec/slack/real_time/api/typing_spec.rb +6 -2
- data/spec/slack/real_time/client_spec.rb +300 -142
- data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +2 -0
- 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 +20 -17
- data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +3 -2
- data/spec/slack/real_time/event_handlers/im_spec.rb +31 -27
- data/spec/slack/real_time/event_handlers/{group_spec.rb → private_channel_spec.rb} +36 -27
- data/spec/slack/real_time/event_handlers/{channel_spec.rb → public_channel_spec.rb} +31 -24
- data/spec/slack/real_time/event_handlers/team_spec.rb +8 -7
- data/spec/slack/real_time/event_handlers/user_spec.rb +7 -5
- data/spec/slack/real_time/rtm_connect_spec.rb +2 -1
- data/spec/slack/real_time/stores/store_spec.rb +50 -0
- data/spec/slack/slack_spec.rb +41 -6
- data/spec/slack/version_spec.rb +2 -1
- data/spec/slack/web/api/endpoints/admin_analytics_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_apps_approved_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_apps_restricted_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_spec.rb +18 -0
- data/spec/slack/web/api/endpoints/admin_audit_anomaly_allow_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_auth_policy_spec.rb +35 -0
- data/spec/slack/web/api/endpoints/admin_barriers_spec.rb +38 -0
- data/spec/slack/web/api/endpoints/admin_conversations_ekm_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_conversations_restrictAccess_spec.rb +32 -0
- data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +98 -0
- data/spec/slack/web/api/endpoints/admin_emoji_spec.rb +37 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_approved_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_denied_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_spec.rb +18 -0
- data/spec/slack/web/api/endpoints/admin_teams_admins_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_teams_owners_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_teams_settings_spec.rb +53 -0
- data/spec/slack/web/api/endpoints/admin_teams_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/admin_usergroups_spec.rb +37 -0
- data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +41 -0
- data/spec/slack/web/api/endpoints/admin_users_spec.rb +67 -0
- data/spec/slack/web/api/endpoints/admin_users_unsupportedVersions_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/api_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_connections_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/apps_event_authorizations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/apps_manifest_spec.rb +36 -0
- data/spec/slack/web/api/endpoints/apps_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/{apps_permissions_resources_spec.rb → auth_teams_spec.rb} +2 -1
- data/spec/slack/web/api/endpoints/bookmarks_spec.rb +40 -0
- data/spec/slack/web/api/endpoints/bots_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/calls_participants_spec.rb +24 -0
- data/spec/slack/web/api/endpoints/calls_spec.rb +31 -0
- data/spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +9 -7
- data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +144 -40
- data/spec/slack/web/api/endpoints/custom_specs/conversations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +18 -6
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +8 -3
- data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +112 -0
- data/spec/slack/web/api/endpoints/dnd_spec.rb +4 -3
- data/spec/slack/web/api/endpoints/emoji_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +3 -21
- data/spec/slack/web/api/endpoints/files_remote_spec.rb +24 -0
- data/spec/slack/web/api/endpoints/files_spec.rb +18 -4
- data/spec/slack/web/api/endpoints/migration_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/oauth_spec.rb +1 -22
- data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/openid_connect_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/pins_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/reactions_spec.rb +8 -1
- data/spec/slack/web/api/endpoints/reminders_spec.rb +3 -2
- data/spec/slack/web/api/endpoints/rtm_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/search_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/stars_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/{apps_permissions_scopes_spec.rb → team_billing_spec.rb} +2 -1
- data/spec/slack/web/api/endpoints/team_preferences_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/team_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/team_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/tooling_tokens_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/usergroups_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +3 -2
- data/spec/slack/web/api/endpoints/users_admin_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_prefs_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/workflows_spec.rb +26 -0
- data/spec/slack/web/api/error_spec.rb +7 -7
- data/spec/slack/web/api/errors/slack_error_spec.rb +26 -7
- data/spec/slack/web/api/mixins/conversations_list_spec.rb +21 -0
- data/spec/slack/web/api/mixins/conversations_spec.rb +45 -0
- data/spec/slack/web/api/mixins/users_spec.rb +19 -8
- data/spec/slack/web/api/pagination/cursor_spec.rb +47 -15
- data/spec/slack/web/client_spec.rb +199 -22
- data/spec/slack/web/faraday/request_spec.rb +80 -0
- data/spec/slack/web/faraday/response/raise_error_spec.rb +48 -12
- data/spec/spec_helper.rb +9 -2
- data/spec/support/queue_with_timeout.rb +5 -4
- data/spec/support/real_time/concurrency/mock.rb +1 -0
- data/spec/support/real_time/connected_client.rb +6 -6
- data/spec/support/real_time/event.rb +1 -0
- data/spec/support/real_time/loaded_client.rb +120 -0
- data/spec/support/token.rb +1 -0
- data/spec/support/vcr.rb +37 -1
- metadata +174 -262
- data/.travis.yml +0 -32
- data/bin/commands/apps_permissions.rb +0 -22
- data/bin/commands/apps_permissions_resources.rb +0 -14
- data/bin/commands/apps_permissions_scopes.rb +0 -12
- data/bin/commands/apps_permissions_users.rb +0 -25
- data/bin/commands/channels.rb +0 -175
- data/bin/commands/groups.rb +0 -174
- data/bin/commands/im.rb +0 -67
- data/bin/commands/mpim.rb +0 -65
- data/examples/hi_real_time/Gemfile +0 -5
- data/examples/hi_real_time/hi.gif +0 -0
- data/examples/hi_real_time/hi.rb +0 -37
- data/examples/hi_real_time_async_celluloid/Gemfile +0 -6
- data/examples/hi_real_time_async_celluloid/Procfile +0 -2
- data/examples/hi_real_time_async_celluloid/hi.rb +0 -35
- data/examples/hi_real_time_async_eventmachine/Gemfile +0 -6
- data/examples/hi_real_time_async_eventmachine/Procfile +0 -2
- data/examples/hi_real_time_async_eventmachine/hi.rb +0 -35
- data/lib/slack/real_time/concurrency/celluloid.rb +0 -118
- data/lib/slack/real_time/concurrency/eventmachine.rb +0 -66
- data/lib/slack/web/api/endpoints/apps_permissions.rb +0 -35
- data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +0 -30
- data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +0 -20
- data/lib/slack/web/api/endpoints/apps_permissions_users.rb +0 -49
- data/lib/slack/web/api/endpoints/channels.rb +0 -266
- data/lib/slack/web/api/endpoints/groups.rb +0 -265
- data/lib/slack/web/api/endpoints/im.rb +0 -113
- data/lib/slack/web/api/endpoints/mpim.rb +0 -108
- data/lib/slack/web/api/endpoints/presence.rb +0 -23
- data/lib/slack/web/api/mixins/channels.id.json +0 -20
- data/lib/slack/web/api/mixins/groups.id.json +0 -20
- data/lib/slack/web/api/mixins/groups.id.rb +0 -26
- data/lib/slack/web/api/patches/chat.1.text-attachments-required.patch +0 -13
- data/lib/slack/web/api/patches/chat.2.attachments-json.patch +0 -17
- data/lib/slack/web/api/patches/chat.3.update-attachments-support.patch +0 -21
- data/lib/slack/web/api/patches/chat.4.postEphemeral-attachments-support.patch +0 -17
- data/lib/slack/web/api/patches/chat.5.postEphemeral-text-or-attachments.patch +0 -13
- data/screenshots/register-bot.png +0 -0
- data/spec/fixtures/slack/web/503_error.yml +0 -14
- data/spec/fixtures/slack/web/channels_info.yml +0 -46
- data/spec/fixtures/slack/web/groups_info.yml +0 -43
- data/spec/fixtures/slack/web/rtm_start.yml +0 -104
- data/spec/slack/real_time/concurrency/celluloid_spec.rb +0 -106
- data/spec/slack/real_time/concurrency/eventmachine_spec.rb +0 -47
- data/spec/slack/real_time/rtm_start_spec.rb +0 -13
- data/spec/slack/real_time/store_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +0 -15
- data/spec/slack/web/api/endpoints/apps_permissions_users_spec.rb +0 -18
- data/spec/slack/web/api/endpoints/conversations_spec.rb +0 -100
- data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/im_spec.rb +0 -38
- data/spec/slack/web/api/endpoints/mpim_spec.rb +0 -38
- data/spec/slack/web/api/errors/service_unavailable_spec.rb +0 -14
- data/spec/slack/web/api/mixins/channels_spec.rb +0 -33
- data/spec/slack/web/api/mixins/groups_spec.rb +0 -33
data/UPGRADING.md
CHANGED
|
@@ -1,6 +1,106 @@
|
|
|
1
1
|
Upgrading Slack-Ruby-Client
|
|
2
2
|
===========================
|
|
3
3
|
|
|
4
|
+
### Upgrading to >= 2.0.0
|
|
5
|
+
|
|
6
|
+
[#416](https://github.com/slack-ruby/slack-ruby-client/pull/416) Removes default values for Faraday's SSL settings `ca_file` and `ca_path`.
|
|
7
|
+
|
|
8
|
+
If you previously relied on `OpenSSL::X509::DEFAULT_CERT_FILE` or `OpenSSL::X509::DEFAULT_CERT_DIR` to set these values you must now do so explicitly. E.g.:
|
|
9
|
+
|
|
10
|
+
```ruby
|
|
11
|
+
Slack::Web::Client.configure do |config|
|
|
12
|
+
config.ca_file = OpenSSL::X509::DEFAULT_CERT_FILE
|
|
13
|
+
config.ca_path = OpenSSL::X509::DEFAULT_CERT_DIR
|
|
14
|
+
end
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
or
|
|
18
|
+
|
|
19
|
+
```ruby
|
|
20
|
+
client = Slack::Web::Client.new(ca_file: OpenSSL::X509::DEFAULT_CERT_FILE, ca_path: OpenSSL::X509::DEFAULT_CERT_DIR)
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
#### RealTime Stores
|
|
24
|
+
|
|
25
|
+
Slack has deprecated the `rtm.start` method and [replaced its response](https://api.slack.com/changelog/2021-10-rtm-start-to-stop) with that of `rtm.connect`, so it has been removed from the library along with the `start_method` configuration ([#419](https://github.com/slack-ruby/slack-ruby-client/pull/419)) and `Slack::RealTime::Stores::Starter` is now the default store.
|
|
26
|
+
If your app still relies on the old `rtm.start` behavior, you can achieve a similar result with `Slack::RealTime::Stores::Store`, which initializes itself using Web API methods (see [README](README.md#slackrealtimestoresstore)).
|
|
27
|
+
|
|
28
|
+
The names of the Store caches `channels` and `groups` have been changed to `public_channels` and `private_channels` to reflect their true meaning.
|
|
29
|
+
This is consistent with the [Slack Web API](https://api.slack.com/methods/conversations.list#arg_types), although [event types for private channels](https://api.slack.com/events?query=group) still use the term `group`.
|
|
30
|
+
In both cases, private channels consist of both [conversation types](https://api.slack.com/types/conversation) (`id: 'C...'', is_channel: true, is_group: false, is_private: true`) and [group types](https://api.slack.com/types/group) (`id: 'G...', is_channel: false, is_group: true, is_private: true`) depending whether the object was created before or after March 2021.
|
|
31
|
+
|
|
32
|
+
### Upgrading to >= 1.0.0
|
|
33
|
+
|
|
34
|
+
#### Deprecated Methods
|
|
35
|
+
|
|
36
|
+
Slack has deprecated all `channel` and `group` methods, which have been removed from the library.
|
|
37
|
+
|
|
38
|
+
See [this announcement from Slack](https://api.slack.com/changelog/2020-01-deprecating-antecedents-to-the-conversations-api) for details.
|
|
39
|
+
|
|
40
|
+
#### Error Handling
|
|
41
|
+
|
|
42
|
+
As of 1.0.0 `Slack::Web::Api::Errors::ServerError` and its subclasses (introduced in 0.16.0) no longer extend `Slack::Web::Api::Errors::InternalError` or its parent `Slack::Web::Api::Errors::SlackError`. If you are rescuing `SlackError` or `InternalError` with the intention of including `ServerError` and its subclasses you should adjust your code to explicitly rescue `Slack::Web::Api::Errors::ServerError`.
|
|
43
|
+
|
|
44
|
+
```ruby
|
|
45
|
+
# Before
|
|
46
|
+
begin
|
|
47
|
+
client.auth_test
|
|
48
|
+
rescue Slack::Web::Api::Errors::SlackError
|
|
49
|
+
# Includes all server errors
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# After
|
|
53
|
+
begin
|
|
54
|
+
client.auth_test
|
|
55
|
+
rescue Slack::Web::Api::Errors::SlackError, Slack::Web::Api::Errors::ServerError
|
|
56
|
+
# Need to rescue the server errors separately from SlackError
|
|
57
|
+
end
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Additionally the `initialize` method for `ParsingError`, `TimeoutError`, and `UnavailableError` have changed from `new(message, response)` to `new(response)`. The `message` is now built into the definition of these classes. If you are instantiating or raising these errors in your code (perhaps in tests) you will need to update your code.
|
|
61
|
+
|
|
62
|
+
```ruby
|
|
63
|
+
# Before
|
|
64
|
+
error = Slack::Web::Api::Errors::TimeoutError.new('timeout_error', response)
|
|
65
|
+
error.message
|
|
66
|
+
# => 'timeout_error'
|
|
67
|
+
|
|
68
|
+
# After
|
|
69
|
+
error = Slack::Web::Api::Errors::TimeoutError.new(response)
|
|
70
|
+
error.message
|
|
71
|
+
# => 'timeout_error'
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Upgrading to >= 0.16.0
|
|
75
|
+
|
|
76
|
+
#### Removed Celluloid and Faye-Websocket Concurrency Support
|
|
77
|
+
|
|
78
|
+
Concurrency support for `celluloid-io` and `faye-websocket` has been removed. If you are running a RealTime bot on Celluloid or Faye, you must upgrade to `async-websocket`. Please note that RealTime bots are deprecated by Slack, and we generally recommend you [migrate your classic, RealTime bot, to granular permissions](https://code.dblock.org/2020/11/30/migrating-classic-slack-ruby-bots-to-granular-permissions.html).
|
|
79
|
+
|
|
80
|
+
See [#338](https://github.com/slack-ruby/slack-ruby-client/issues/338) for more information.
|
|
81
|
+
|
|
82
|
+
#### Error Handling
|
|
83
|
+
|
|
84
|
+
As of 0.16.0 `Faraday::Error` exceptions sans `Faraday::ClientError` are wrapped into `Slack::Web::Api::Errors::ServerError`, so if you're rescuing `Faraday::Error` — you should adjust your code to use `Slack::Web::Api::Errors::ServerError` and use `exception.cause` if underlying `Faraday::Error` is needed.
|
|
85
|
+
|
|
86
|
+
See [README#other-errors](README.md#other-errors) and [#350](https://github.com/slack-ruby/slack-ruby-client/pull/350) for more information.
|
|
87
|
+
|
|
88
|
+
### Upgrading to >= 0.15.0
|
|
89
|
+
|
|
90
|
+
As of 0.15.0, `activesupport` is no longer required. Add `gem 'activesupport'` to your Gemfile if you required ActiveSupport via this library.
|
|
91
|
+
|
|
92
|
+
See [#325](https://github.com/slack-ruby/slack-ruby-client/pull/325) for more information.
|
|
93
|
+
|
|
94
|
+
### Upgrading to >= 0.14.0
|
|
95
|
+
|
|
96
|
+
If you are using async-websocket, lock down its version to 0.8.0 as newer versions are currently incompatible.
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
gem 'async-websocket', '~> 0.8.0'
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
See [#282](https://github.com/slack-ruby/slack-ruby-client/issues/282) for more information.
|
|
103
|
+
|
|
4
104
|
### Upgrading to >= 0.13.0
|
|
5
105
|
|
|
6
106
|
#### Recommended Async Library
|
|
@@ -114,5 +214,3 @@ gem 'celluloid-io'
|
|
|
114
214
|
When in doubt, use `faye-websocket`.
|
|
115
215
|
|
|
116
216
|
See [#5](https://github.com/slack-ruby/slack-ruby-client/issues/5) for more information.
|
|
117
|
-
|
|
118
|
-
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminAnalytics methods.'
|
|
5
|
+
command 'admin_analytics' do |g|
|
|
6
|
+
g.desc 'Retrieve analytics data for a given date, presented as a compressed JSON file'
|
|
7
|
+
g.long_desc %( Retrieve analytics data for a given date, presented as a compressed JSON file )
|
|
8
|
+
g.command 'getFile' do |c|
|
|
9
|
+
c.flag 'type', desc: 'The type of analytics to retrieve. The options are currently limited to member (for grid member analytics) and public_channel (for public channel analytics).'
|
|
10
|
+
c.flag 'date', desc: 'Date to retrieve the analytics data for, expressed as YYYY-MM-DD in UTC.'
|
|
11
|
+
c.flag 'metadata_only', desc: 'Retrieve metadata for the type of analytics indicated. Can be used only with type set to public_channel analytics. See detail below. Omit the date parameter when using this argument.'
|
|
12
|
+
c.action do |_global_options, options, _args|
|
|
13
|
+
puts JSON.dump($client.admin_analytics_getFile(options))
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminApps methods.'
|
|
5
|
+
command 'admin_apps' do |g|
|
|
6
|
+
g.desc 'Approve an app for installation on a workspace.'
|
|
7
|
+
g.long_desc %( Approve an app for installation on a workspace. )
|
|
8
|
+
g.command 'approve' do |c|
|
|
9
|
+
c.flag 'app_id', desc: 'The id of the app to approve.'
|
|
10
|
+
c.flag 'enterprise_id', desc: 'The ID of the enterprise to approve the app on.'
|
|
11
|
+
c.flag 'request_id', desc: 'The id of the request to approve.'
|
|
12
|
+
c.flag 'team_id', desc: 'The ID of the workspace to approve the app on.'
|
|
13
|
+
c.action do |_global_options, options, _args|
|
|
14
|
+
puts JSON.dump($client.admin_apps_approve(options))
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
g.desc 'Clear an app resolution'
|
|
19
|
+
g.long_desc %( Clear an app resolution )
|
|
20
|
+
g.command 'clearResolution' do |c|
|
|
21
|
+
c.flag 'app_id', desc: 'The id of the app whose resolution you want to clear/undo.'
|
|
22
|
+
c.flag 'enterprise_id', desc: 'The enterprise to clear the app resolution from.'
|
|
23
|
+
c.flag 'team_id', desc: 'The workspace to clear the app resolution from.'
|
|
24
|
+
c.action do |_global_options, options, _args|
|
|
25
|
+
puts JSON.dump($client.admin_apps_clearResolution(options))
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
g.desc 'Restrict an app for installation on a workspace.'
|
|
30
|
+
g.long_desc %( Restrict an app for installation on a workspace. )
|
|
31
|
+
g.command 'restrict' do |c|
|
|
32
|
+
c.flag 'app_id', desc: 'The id of the app to restrict.'
|
|
33
|
+
c.flag 'enterprise_id', desc: 'The ID of the enterprise to approve the app on.'
|
|
34
|
+
c.flag 'request_id', desc: 'The id of the request to restrict.'
|
|
35
|
+
c.flag 'team_id', desc: 'The ID of the workspace to approve the app on.'
|
|
36
|
+
c.action do |_global_options, options, _args|
|
|
37
|
+
puts JSON.dump($client.admin_apps_restrict(options))
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
g.desc 'Uninstall an app from one or many workspaces, or an entire enterprise organization.'
|
|
42
|
+
g.long_desc %( Uninstall an app from one or many workspaces, or an entire enterprise organization. )
|
|
43
|
+
g.command 'uninstall' do |c|
|
|
44
|
+
c.flag 'app_id', desc: 'The ID of the app to uninstall.'
|
|
45
|
+
c.flag 'enterprise_id', desc: 'The enterprise to completely uninstall the application from (across all workspaces). With an org-level token, this or team_ids is required.'
|
|
46
|
+
c.flag 'team_ids', desc: 'IDs of the teams to uninstall from (max 100). With an org-level token, this or enterprise_id is required.'
|
|
47
|
+
c.action do |_global_options, options, _args|
|
|
48
|
+
puts JSON.dump($client.admin_apps_uninstall(options))
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminAppsApproved methods.'
|
|
5
|
+
command 'admin_apps_approved' do |g|
|
|
6
|
+
g.desc 'List approved apps for an org or workspace.'
|
|
7
|
+
g.long_desc %( List approved apps for an org or workspace. )
|
|
8
|
+
g.command 'list' do |c|
|
|
9
|
+
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
|
|
10
|
+
c.flag 'enterprise_id', desc: '.'
|
|
11
|
+
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.'
|
|
12
|
+
c.flag 'team_id', desc: '.'
|
|
13
|
+
c.action do |_global_options, options, _args|
|
|
14
|
+
puts JSON.dump($client.admin_apps_approved_list(options))
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminAppsRequests methods.'
|
|
5
|
+
command 'admin_apps_requests' do |g|
|
|
6
|
+
g.desc 'Cancel approval request for team'
|
|
7
|
+
g.long_desc %( Cancel approval request for team )
|
|
8
|
+
g.command 'cancel' do |c|
|
|
9
|
+
c.flag 'request_id', desc: 'The id of the request to cancel.'
|
|
10
|
+
c.flag 'enterprise_id', desc: 'The ID of the enterprise where this request belongs.'
|
|
11
|
+
c.flag 'team_id', desc: 'The ID of the workspace where this request belongs.'
|
|
12
|
+
c.action do |_global_options, options, _args|
|
|
13
|
+
puts JSON.dump($client.admin_apps_requests_cancel(options))
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
g.desc 'List app requests for a team/workspace.'
|
|
18
|
+
g.long_desc %( List app requests for a team/workspace. )
|
|
19
|
+
g.command 'list' do |c|
|
|
20
|
+
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
|
|
21
|
+
c.flag 'enterprise_id', desc: '.'
|
|
22
|
+
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.'
|
|
23
|
+
c.flag 'team_id', desc: '.'
|
|
24
|
+
c.action do |_global_options, options, _args|
|
|
25
|
+
puts JSON.dump($client.admin_apps_requests_list(options))
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminAppsRestricted methods.'
|
|
5
|
+
command 'admin_apps_restricted' do |g|
|
|
6
|
+
g.desc 'List restricted apps for an org or workspace.'
|
|
7
|
+
g.long_desc %( List restricted apps for an org or workspace. )
|
|
8
|
+
g.command 'list' do |c|
|
|
9
|
+
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
|
|
10
|
+
c.flag 'enterprise_id', desc: '.'
|
|
11
|
+
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.'
|
|
12
|
+
c.flag 'team_id', desc: '.'
|
|
13
|
+
c.action do |_global_options, options, _args|
|
|
14
|
+
puts JSON.dump($client.admin_apps_restricted_list(options))
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminAuditAnomalyAllow methods.'
|
|
5
|
+
command 'admin_audit_anomaly_allow' do |g|
|
|
6
|
+
g.desc 'API to allow enterprise grid admins to read the allow list of IP blocks and ASNs from the enterprise configuration.'
|
|
7
|
+
g.long_desc %( API to allow enterprise grid admins to read the allow list of IP blocks and ASNs from the enterprise configuration. )
|
|
8
|
+
g.command 'getItem' do |c|
|
|
9
|
+
c.action do |_global_options, options, _args|
|
|
10
|
+
puts JSON.dump($client.admin_audit_anomaly_allow_getItem(options))
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
g.desc 'API to allow enterprise grid admins to write/overwrite the allow list of IP blocks and ASNs from the enterprise configuration.'
|
|
15
|
+
g.long_desc %( API to allow enterprise grid admins to write/overwrite the allow list of IP blocks and ASNs from the enterprise configuration. )
|
|
16
|
+
g.command 'updateItem' do |c|
|
|
17
|
+
c.flag 'trusted_asns', desc: 'allow list of Autonomous System Numbers (ASN) in the enterprise grid configuarion.'
|
|
18
|
+
c.flag 'trusted_cidr', desc: 'allow list of IPv4 addressses using cidr notation in the enterprise grid configuarion.'
|
|
19
|
+
c.action do |_global_options, options, _args|
|
|
20
|
+
puts JSON.dump($client.admin_audit_anomaly_allow_updateItem(options))
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminAuthPolicy methods.'
|
|
5
|
+
command 'admin_auth_policy' do |g|
|
|
6
|
+
g.desc 'Assign entities to a particular authentication policy.'
|
|
7
|
+
g.long_desc %( Assign entities to a particular authentication policy. )
|
|
8
|
+
g.command 'assignEntities' do |c|
|
|
9
|
+
c.flag 'entity_ids', desc: 'Array of IDs to assign to the policy.'
|
|
10
|
+
c.flag 'entity_type', desc: 'The type of entity to assign to the policy. Currently, USER is supported.'
|
|
11
|
+
c.flag 'policy_name', desc: 'The name of the authentication policy to assign the entities to. Currently, email_password is the only policy that may be used with this method.'
|
|
12
|
+
c.action do |_global_options, options, _args|
|
|
13
|
+
puts JSON.dump($client.admin_auth_policy_assignEntities(options))
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
g.desc 'Fetch all the entities assigned to a particular authentication policy by name.'
|
|
18
|
+
g.long_desc %( Fetch all the entities assigned to a particular authentication policy by name. )
|
|
19
|
+
g.command 'getEntities' do |c|
|
|
20
|
+
c.flag 'policy_name', desc: 'The name of the policy to fetch entities for. Currently, email_password is the only policy that may be used with this method.'
|
|
21
|
+
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
|
|
22
|
+
c.flag 'entity_type', desc: 'The type of entity to assign to the policy. Currently, USER is supported.'
|
|
23
|
+
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 and 1000, both inclusive.'
|
|
24
|
+
c.action do |_global_options, options, _args|
|
|
25
|
+
puts JSON.dump($client.admin_auth_policy_getEntities(options))
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
g.desc 'Remove specified entities from a specified authentication policy.'
|
|
30
|
+
g.long_desc %( Remove specified entities from a specified authentication policy. )
|
|
31
|
+
g.command 'removeEntities' do |c|
|
|
32
|
+
c.flag 'entity_ids', desc: "Encoded IDs of the entities you'd like to remove from the policy."
|
|
33
|
+
c.flag 'entity_type', desc: 'The type of entity to assign to the policy. Currently, USER is supported.'
|
|
34
|
+
c.flag 'policy_name', desc: 'The name of the policy to remove entities from. Currently, email_password is the only policy that may be used with this method.'
|
|
35
|
+
c.action do |_global_options, options, _args|
|
|
36
|
+
puts JSON.dump($client.admin_auth_policy_removeEntities(options))
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminBarriers methods.'
|
|
5
|
+
command 'admin_barriers' do |g|
|
|
6
|
+
g.desc 'Create an Information Barrier'
|
|
7
|
+
g.long_desc %( Create an Information Barrier )
|
|
8
|
+
g.command 'create' do |c|
|
|
9
|
+
c.flag 'barriered_from_usergroup_ids', desc: 'A list of IDP Groups ids that the primary usergroup is to be barriered from.'
|
|
10
|
+
c.flag 'primary_usergroup_id', desc: 'The id of the primary IDP Group.'
|
|
11
|
+
c.flag 'restricted_subjects', desc: 'What kind of interactions are blocked by this barrier? For v1, we only support a list of all 3, eg im, mpim, call.'
|
|
12
|
+
c.action do |_global_options, options, _args|
|
|
13
|
+
puts JSON.dump($client.admin_barriers_create(options))
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
g.desc 'Delete an existing Information Barrier'
|
|
18
|
+
g.long_desc %( Delete an existing Information Barrier )
|
|
19
|
+
g.command 'delete' do |c|
|
|
20
|
+
c.flag 'barrier_id', desc: "The ID of the barrier you're trying to delete."
|
|
21
|
+
c.action do |_global_options, options, _args|
|
|
22
|
+
puts JSON.dump($client.admin_barriers_delete(options))
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
g.desc 'Get all Information Barriers for your organization'
|
|
27
|
+
g.long_desc %( Get all Information Barriers for your organization )
|
|
28
|
+
g.command 'list' do |c|
|
|
29
|
+
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
|
|
30
|
+
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.'
|
|
31
|
+
c.action do |_global_options, options, _args|
|
|
32
|
+
puts JSON.dump($client.admin_barriers_list(options))
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
g.desc 'Update an existing Information Barrier'
|
|
37
|
+
g.long_desc %( Update an existing Information Barrier )
|
|
38
|
+
g.command 'update' do |c|
|
|
39
|
+
c.flag 'barrier_id', desc: "The ID of the barrier you're trying to modify."
|
|
40
|
+
c.flag 'barriered_from_usergroup_ids', desc: 'A list of IDP Groups ids that the primary usergroup is to be barriered from.'
|
|
41
|
+
c.flag 'primary_usergroup_id', desc: 'The id of the primary IDP Group.'
|
|
42
|
+
c.flag 'restricted_subjects', desc: 'What kind of interactions are blocked by this barrier? For v1, we only support a list of all 3, eg im, mpim, call.'
|
|
43
|
+
c.action do |_global_options, options, _args|
|
|
44
|
+
puts JSON.dump($client.admin_barriers_update(options))
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminConversations methods.'
|
|
5
|
+
command 'admin_conversations' do |g|
|
|
6
|
+
g.desc 'Archive a public or private channel.'
|
|
7
|
+
g.long_desc %( Archive a public or private channel. )
|
|
8
|
+
g.command 'archive' do |c|
|
|
9
|
+
c.flag 'channel_id', desc: 'The channel to archive.'
|
|
10
|
+
c.action do |_global_options, options, _args|
|
|
11
|
+
puts JSON.dump($client.admin_conversations_archive(options))
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
g.desc 'Convert a public channel to a private channel.'
|
|
16
|
+
g.long_desc %( Convert a public channel to a private channel. )
|
|
17
|
+
g.command 'convertToPrivate' do |c|
|
|
18
|
+
c.flag 'channel_id', desc: 'The channel to convert to private.'
|
|
19
|
+
c.flag 'name', desc: 'Name of private channel to create. Only respected when converting an MPIM.'
|
|
20
|
+
c.action do |_global_options, options, _args|
|
|
21
|
+
puts JSON.dump($client.admin_conversations_convertToPrivate(options))
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
g.desc 'Create a public or private channel-based conversation.'
|
|
26
|
+
g.long_desc %( Create a public or private channel-based conversation. )
|
|
27
|
+
g.command 'create' do |c|
|
|
28
|
+
c.flag 'is_private', desc: 'When true, creates a private channel instead of a public channel.'
|
|
29
|
+
c.flag 'name', desc: 'Name of the public or private channel to create.'
|
|
30
|
+
c.flag 'description', desc: 'Description of the public or private channel to create.'
|
|
31
|
+
c.flag 'org_wide', desc: 'When true, the channel will be available org-wide. Note: if the channel is not org_wide=true, you must specify a team_id for this channel.'
|
|
32
|
+
c.flag 'team_id', desc: 'The workspace to create the channel in. Note: this argument is required unless you set org_wide=true.'
|
|
33
|
+
c.action do |_global_options, options, _args|
|
|
34
|
+
puts JSON.dump($client.admin_conversations_create(options))
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
g.desc 'Delete a public or private channel.'
|
|
39
|
+
g.long_desc %( Delete a public or private channel. )
|
|
40
|
+
g.command 'delete' do |c|
|
|
41
|
+
c.flag 'channel_id', desc: 'The channel to delete.'
|
|
42
|
+
c.action do |_global_options, options, _args|
|
|
43
|
+
puts JSON.dump($client.admin_conversations_delete(options))
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
g.desc 'Disconnect a connected channel from one or more workspaces.'
|
|
48
|
+
g.long_desc %( Disconnect a connected channel from one or more workspaces. )
|
|
49
|
+
g.command 'disconnectShared' do |c|
|
|
50
|
+
c.flag 'channel_id', desc: 'The channel to be disconnected from some workspaces.'
|
|
51
|
+
c.flag 'leaving_team_ids', desc: 'team IDs getting removed from the channel, optional if there are only two teams in the channel.'
|
|
52
|
+
c.action do |_global_options, options, _args|
|
|
53
|
+
puts JSON.dump($client.admin_conversations_disconnectShared(options))
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
g.desc 'Get conversation preferences for a public or private channel.'
|
|
58
|
+
g.long_desc %( Get conversation preferences for a public or private channel. )
|
|
59
|
+
g.command 'getConversationPrefs' do |c|
|
|
60
|
+
c.flag 'channel_id', desc: 'The channel to get preferences for.'
|
|
61
|
+
c.action do |_global_options, options, _args|
|
|
62
|
+
puts JSON.dump($client.admin_conversations_getConversationPrefs(options))
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
g.desc "This API endpoint can be used by any admin to get a conversation's retention policy."
|
|
67
|
+
g.long_desc %( This API endpoint can be used by any admin to get a conversation's retention policy. )
|
|
68
|
+
g.command 'getCustomRetention' do |c|
|
|
69
|
+
c.flag 'channel_id', desc: 'The conversation to get the retention policy for.'
|
|
70
|
+
c.action do |_global_options, options, _args|
|
|
71
|
+
puts JSON.dump($client.admin_conversations_getCustomRetention(options))
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
g.desc 'Get all the workspaces a given public or private channel is connected to within this Enterprise org.'
|
|
76
|
+
g.long_desc %( Get all the workspaces a given public or private channel is connected to within this Enterprise org. )
|
|
77
|
+
g.command 'getTeams' do |c|
|
|
78
|
+
c.flag 'channel_id', desc: 'The channel to determine connected workspaces within the organization for.'
|
|
79
|
+
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
|
|
80
|
+
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.'
|
|
81
|
+
c.action do |_global_options, options, _args|
|
|
82
|
+
puts JSON.dump($client.admin_conversations_getTeams(options))
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
g.desc 'Invite a user to a public or private channel.'
|
|
87
|
+
g.long_desc %( Invite a user to a public or private channel. )
|
|
88
|
+
g.command 'invite' do |c|
|
|
89
|
+
c.flag 'channel_id', desc: 'The channel that the users will be invited to.'
|
|
90
|
+
c.flag 'user_ids', desc: 'The users to invite.'
|
|
91
|
+
c.action do |_global_options, options, _args|
|
|
92
|
+
puts JSON.dump($client.admin_conversations_invite(options))
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
g.desc "This API endpoint can be used by any admin to remove a conversation's retention policy."
|
|
97
|
+
g.long_desc %( This API endpoint can be used by any admin to remove a conversation's retention policy. )
|
|
98
|
+
g.command 'removeCustomRetention' do |c|
|
|
99
|
+
c.flag 'channel_id', desc: 'The conversation to set the retention policy for.'
|
|
100
|
+
c.action do |_global_options, options, _args|
|
|
101
|
+
puts JSON.dump($client.admin_conversations_removeCustomRetention(options))
|
|
102
|
+
end
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
g.desc 'Rename a public or private channel.'
|
|
106
|
+
g.long_desc %( Rename a public or private channel. )
|
|
107
|
+
g.command 'rename' do |c|
|
|
108
|
+
c.flag 'channel_id', desc: 'The channel to rename.'
|
|
109
|
+
c.flag 'name', desc: '.'
|
|
110
|
+
c.action do |_global_options, options, _args|
|
|
111
|
+
puts JSON.dump($client.admin_conversations_rename(options))
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
g.desc 'Search for public or private channels in an Enterprise organization.'
|
|
116
|
+
g.long_desc %( Search for public or private channels in an Enterprise organization. )
|
|
117
|
+
g.command 'search' do |c|
|
|
118
|
+
c.flag 'connected_team_ids', desc: 'Array of encoded team IDs, signifying the external orgs to search through.'
|
|
119
|
+
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
|
|
120
|
+
c.flag 'limit', desc: 'Maximum number of items to be returned. Must be between 1 - 20 both inclusive. Default is 10.'
|
|
121
|
+
c.flag 'query', desc: 'Name of the the channel to query by.'
|
|
122
|
+
c.flag 'search_channel_types', desc: 'The type of channel to include or exclude in the search. For example private will search private channels, while private_exclude will exclude them. For a full list of types, check the Types section.'
|
|
123
|
+
c.flag 'sort', desc: 'Possible values are relevant (search ranking based on what we think is closest), name (alphabetical), member_count (number of users in the channel), and created (date channel was created). You can optionally pair this with the sort_dir arg to change how it is sorted.'
|
|
124
|
+
c.flag 'sort_dir', desc: 'Sort direction. Possible values are asc for ascending order like (1, 2, 3) or (a, b, c), and desc for descending order like (3, 2, 1) or (c, b, a).'
|
|
125
|
+
c.flag 'team_ids', desc: 'Comma separated string of team IDs, signifying the internal workspaces to search through.'
|
|
126
|
+
c.action do |_global_options, options, _args|
|
|
127
|
+
puts JSON.dump($client.admin_conversations_search(options))
|
|
128
|
+
end
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
g.desc 'Set the posting permissions for a public or private channel.'
|
|
132
|
+
g.long_desc %( Set the posting permissions for a public or private channel. )
|
|
133
|
+
g.command 'setConversationPrefs' do |c|
|
|
134
|
+
c.flag 'channel_id', desc: 'The channel to set the prefs for.'
|
|
135
|
+
c.flag 'prefs', desc: 'The prefs for this channel in a stringified JSON format.'
|
|
136
|
+
c.action do |_global_options, options, _args|
|
|
137
|
+
puts JSON.dump($client.admin_conversations_setConversationPrefs(options))
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
g.desc "This API endpoint can be used by any admin to set a conversation's retention policy."
|
|
142
|
+
g.long_desc %( This API endpoint can be used by any admin to set a conversation's retention policy. )
|
|
143
|
+
g.command 'setCustomRetention' do |c|
|
|
144
|
+
c.flag 'channel_id', desc: 'The conversation to set the retention policy for.'
|
|
145
|
+
c.flag 'duration_days', desc: 'The message retention duration in days to set for this conversation.'
|
|
146
|
+
c.action do |_global_options, options, _args|
|
|
147
|
+
puts JSON.dump($client.admin_conversations_setCustomRetention(options))
|
|
148
|
+
end
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
g.desc 'Set the workspaces in an Enterprise grid org that connect to a public or private channel.'
|
|
152
|
+
g.long_desc %( Set the workspaces in an Enterprise grid org that connect to a public or private channel. )
|
|
153
|
+
g.command 'setTeams' do |c|
|
|
154
|
+
c.flag 'channel_id', desc: 'The encoded channel_id to add or remove to workspaces.'
|
|
155
|
+
c.flag 'org_channel', desc: 'True if channel has to be converted to an org channel.'
|
|
156
|
+
c.flag 'target_team_ids', desc: 'A comma-separated list of workspaces to which the channel should be shared. Not required if the channel is being shared org-wide.'
|
|
157
|
+
c.flag 'team_id', desc: 'The workspace to which the channel belongs. Omit this argument if the channel is a cross-workspace shared channel.'
|
|
158
|
+
c.action do |_global_options, options, _args|
|
|
159
|
+
puts JSON.dump($client.admin_conversations_setTeams(options))
|
|
160
|
+
end
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
g.desc 'Unarchive a public or private channel.'
|
|
164
|
+
g.long_desc %( Unarchive a public or private channel. )
|
|
165
|
+
g.command 'unarchive' do |c|
|
|
166
|
+
c.flag 'channel_id', desc: 'The channel to unarchive.'
|
|
167
|
+
c.action do |_global_options, options, _args|
|
|
168
|
+
puts JSON.dump($client.admin_conversations_unarchive(options))
|
|
169
|
+
end
|
|
170
|
+
end
|
|
171
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminConversationsEkm methods.'
|
|
5
|
+
command 'admin_conversations_ekm' do |g|
|
|
6
|
+
g.desc 'List all disconnected channels—i.e., channels that were once connected to other workspaces and then disconnected—and the corresponding original channel IDs for key revocation with EKM.'
|
|
7
|
+
g.long_desc %( List all disconnected channels—i.e., channels that were once connected to other workspaces and then disconnected—and the corresponding original channel IDs for key revocation with EKM. )
|
|
8
|
+
g.command 'listOriginalConnectedChannelInfo' do |c|
|
|
9
|
+
c.flag 'channel_ids', desc: 'A comma-separated list of channels to filter to.'
|
|
10
|
+
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
|
|
11
|
+
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.'
|
|
12
|
+
c.flag 'team_ids', desc: 'A comma-separated list of the workspaces to which the channels you would like returned belong.'
|
|
13
|
+
c.action do |_global_options, options, _args|
|
|
14
|
+
puts JSON.dump($client.admin_conversations_ekm_listOriginalConnectedChannelInfo(options))
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminConversationsRestrictaccess methods.'
|
|
5
|
+
command 'admin_conversations_restrictAccess' do |g|
|
|
6
|
+
g.desc 'Add an allowlist of IDP groups for accessing a channel'
|
|
7
|
+
g.long_desc %( Add an allowlist of IDP groups for accessing a channel )
|
|
8
|
+
g.command 'addGroup' do |c|
|
|
9
|
+
c.flag 'channel_id', desc: 'The channel to link this group to.'
|
|
10
|
+
c.flag 'group_id', desc: 'The IDP Group ID to be an allowlist for the private channel.'
|
|
11
|
+
c.flag 'team_id', desc: 'The workspace where the channel exists. This argument is required for channels only tied to one workspace, and optional for channels that are shared across an organization.'
|
|
12
|
+
c.action do |_global_options, options, _args|
|
|
13
|
+
puts JSON.dump($client.admin_conversations_restrictAccess_addGroup(options))
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
g.desc 'List all IDP Groups linked to a channel'
|
|
18
|
+
g.long_desc %( List all IDP Groups linked to a channel )
|
|
19
|
+
g.command 'listGroups' do |c|
|
|
20
|
+
c.flag 'channel_id', desc: '.'
|
|
21
|
+
c.flag 'team_id', desc: 'The workspace where the channel exists. This argument is required for channels only tied to one workspace, and optional for channels that are shared across an organization.'
|
|
22
|
+
c.action do |_global_options, options, _args|
|
|
23
|
+
puts JSON.dump($client.admin_conversations_restrictAccess_listGroups(options))
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
g.desc 'Remove a linked IDP group linked from a private channel'
|
|
28
|
+
g.long_desc %( Remove a linked IDP group linked from a private channel )
|
|
29
|
+
g.command 'removeGroup' do |c|
|
|
30
|
+
c.flag 'channel_id', desc: 'The channel to remove the linked group from.'
|
|
31
|
+
c.flag 'group_id', desc: 'The IDP Group ID to remove from the private channel.'
|
|
32
|
+
c.flag 'team_id', desc: 'The workspace where the channel exists. This argument is required for channels only tied to one workspace, and optional for channels that are shared across an organization.'
|
|
33
|
+
c.action do |_global_options, options, _args|
|
|
34
|
+
puts JSON.dump($client.admin_conversations_restrictAccess_removeGroup(options))
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminEmoji methods.'
|
|
5
|
+
command 'admin_emoji' do |g|
|
|
6
|
+
g.desc 'Add an emoji.'
|
|
7
|
+
g.long_desc %( Add an emoji. )
|
|
8
|
+
g.command 'add' do |c|
|
|
9
|
+
c.flag 'name', desc: 'The name of the emoji to be added. Colons (:myemoji:) around the value are not required, although they may be included.'
|
|
10
|
+
c.flag 'url', desc: 'The URL of a file to use as an image for the emoji. Square images under 128KB and with transparent backgrounds work best.'
|
|
11
|
+
c.action do |_global_options, options, _args|
|
|
12
|
+
puts JSON.dump($client.admin_emoji_add(options))
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
g.desc 'Add an emoji alias.'
|
|
17
|
+
g.long_desc %( Add an emoji alias. )
|
|
18
|
+
g.command 'addAlias' do |c|
|
|
19
|
+
c.flag 'alias_for', desc: 'Name of the emoji for which the alias is being made. Any wrapping whitespace or colons will be automatically trimmed.'
|
|
20
|
+
c.flag 'name', desc: 'The new alias for the specified emoji. Any wrapping whitespace or colons will be automatically trimmed.'
|
|
21
|
+
c.action do |_global_options, options, _args|
|
|
22
|
+
puts JSON.dump($client.admin_emoji_addAlias(options))
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
g.desc 'List emoji for an Enterprise Grid organization.'
|
|
27
|
+
g.long_desc %( List emoji for an Enterprise Grid organization. )
|
|
28
|
+
g.command 'list' do |c|
|
|
29
|
+
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
|
|
30
|
+
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.'
|
|
31
|
+
c.action do |_global_options, options, _args|
|
|
32
|
+
puts JSON.dump($client.admin_emoji_list(options))
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
g.desc 'Remove an emoji across an Enterprise Grid organization'
|
|
37
|
+
g.long_desc %( Remove an emoji across an Enterprise Grid organization )
|
|
38
|
+
g.command 'remove' do |c|
|
|
39
|
+
c.flag 'name', desc: 'The name of the emoji to be removed. Colons (:myemoji:) around the value are not required, although they may be included.'
|
|
40
|
+
c.action do |_global_options, options, _args|
|
|
41
|
+
puts JSON.dump($client.admin_emoji_remove(options))
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
g.desc 'Rename an emoji.'
|
|
46
|
+
g.long_desc %( Rename an emoji. )
|
|
47
|
+
g.command 'rename' do |c|
|
|
48
|
+
c.flag 'name', desc: 'The name of the emoji to be renamed. Colons (:myemoji:) around the value are not required, although they may be included.'
|
|
49
|
+
c.flag 'new_name', desc: 'The new name of the emoji.'
|
|
50
|
+
c.action do |_global_options, options, _args|
|
|
51
|
+
puts JSON.dump($client.admin_emoji_rename(options))
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|