Temporarily remove Slack mpim:write scope (#482)

This commit is contained in:
Renato Byrro 2025-07-11 18:57:24 -03:00 committed by GitHub
parent 64c7771e36
commit 1b0547090c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -37,7 +37,7 @@ from arcade_slack.utils import (
"users:read",
"users:read.email",
"chat:write",
"mpim:write",
# "mpim:write",
"im:write",
],
)
@ -454,7 +454,7 @@ async def list_conversations(
"users:read",
"users:read.email",
"chat:write",
"mpim:write",
# "mpim:write",
"im:write",
],
)
@ -491,7 +491,7 @@ async def send_dm_to_user(
"users:read",
"users:read.email",
"chat:write",
"mpim:write",
# "mpim:write",
"im:write",
],
)

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "arcade_slack"
version = "0.5.0"
version = "0.5.1"
description = "Arcade.dev LLM tools for Slack"
requires-python = ">=3.10"
dependencies = [ "aiodns>=1.0,<2.0.0", "typing; python_version < '3.7'", "aiohttp>=3.7.3,<4.0.0", "arcade-tdk>=2.0.0,<3.0.0", "slack-sdk>=3.31.0,<4.0.0",]