aboutsummaryrefslogtreecommitdiffstats
path: root/typings
diff options
context:
space:
mode:
authorTrygve Aaberge <trygveaa@gmail.com>2024-01-07 15:51:33 +0100
committerTrygve Aaberge <trygveaa@gmail.com>2024-02-18 11:32:54 +0100
commita46a81e29e2eb6df2e77f3fae13ffad690688e88 (patch)
treee14b90089ab128180b65381b28936d087aed37cc /typings
parent07a14fdc3a6476b65e3d19f79c20769f80fb5d31 (diff)
downloadwee-slack-a46a81e29e2eb6df2e77f3fae13ffad690688e88.tar.gz
Only open channels for the current sub workspace
It's possible to have a token that's only for one workspace in an enterprise grid. For me with such a token, it returns channels in all workspaces in client.userBoot, but only channels in the tokens workspace in client.counts. This meant that we didn't get last_read for all channels we opened, and additionally some methods like conversations.members would fail with "channel_not_found" for those channels. This filters the channels from client.userBoot by checking that the channel is in the current sub workspace, if the token we're using is not an org level (for all workspaces the user is in) token. Additionally it raises an error if any of the channels to open isn't included in the response from client.counts to prevent missing last_read for any channels if there are other channels that isn't included. I could have filtered the list of channels to open by the channels included from client.counts, but I don't want any channels to just silently be ignored.
Diffstat (limited to 'typings')
-rw-r--r--typings/slack_api/slack_team_info.pyi43
1 files changed, 43 insertions, 0 deletions
diff --git a/typings/slack_api/slack_team_info.pyi b/typings/slack_api/slack_team_info.pyi
new file mode 100644
index 0000000..124eaac
--- /dev/null
+++ b/typings/slack_api/slack_team_info.pyi
@@ -0,0 +1,43 @@
+from __future__ import annotations
+
+from slack_api.slack_common import SlackErrorResponse
+from typing_extensions import Literal, NotRequired, TypedDict, final
+
+@final
+class SlackTeamInfoIcon(TypedDict):
+ image_default: bool
+ image_34: str
+ image_44: str
+ image_68: str
+ image_88: str
+ image_102: str
+ image_230: str
+ image_132: str
+
+@final
+class SlackTeamInfo(TypedDict):
+ id: str
+ name: str
+ url: str
+ domain: str
+ email_domain: str
+ icon: SlackTeamInfoIcon
+ avatar_base_url: str
+ is_verified: bool
+
+ # For enterprise grid
+ public_url: NotRequired[str]
+ discoverable: NotRequired[str]
+ # sso_provider
+ # pay_prod_cur
+ locale: NotRequired[str]
+ enterprise_id: NotRequired[str]
+ enterprise_name: NotRequired[str]
+ enterprise_domain: NotRequired[str]
+
+@final
+class SlackTeamInfoSuccessResponse(TypedDict):
+ ok: Literal[True]
+ team: SlackTeamInfo
+
+SlackTeamInfoResponse = SlackTeamInfoSuccessResponse | SlackErrorResponse