diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2023-12-11 21:48:17 +0100 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2024-02-18 11:32:54 +0100 |
commit | 2fffaf06d19a96ac71fcc5616f01bea2a04e5d6d (patch) | |
tree | b85478bc2e447bf32a0638579398259928b24d43 /typings | |
parent | 3b98fbeff044299104f7d00a3c9b56d9a53b0df0 (diff) | |
download | wee-slack-2fffaf06d19a96ac71fcc5616f01bea2a04e5d6d.tar.gz |
Mark conversations info last_read as not required
It seems that if you request conversations.info right after joining a
channel, it's missing in the response.
Diffstat (limited to 'typings')
-rw-r--r-- | typings/slack_api/slack_conversations_info.pyi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/typings/slack_api/slack_conversations_info.pyi b/typings/slack_api/slack_conversations_info.pyi index 7566951..e3d6a84 100644 --- a/typings/slack_api/slack_conversations_info.pyi +++ b/typings/slack_api/slack_conversations_info.pyi @@ -27,7 +27,7 @@ class SlackConversationsInfoCommon(TypedDict): is_org_shared: bool context_team_id: str updated: int - last_read: str + last_read: NotRequired[str] class SlackConversationsInfoCommonNotIm(SlackConversationsInfoCommon): name: str |