diff options
Diffstat (limited to 'typings')
-rw-r--r-- | typings/slack_api/slack_conversations_history.pyi | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/typings/slack_api/slack_conversations_history.pyi b/typings/slack_api/slack_conversations_history.pyi index 4f0cfa8..6799f02 100644 --- a/typings/slack_api/slack_conversations_history.pyi +++ b/typings/slack_api/slack_conversations_history.pyi @@ -9,10 +9,10 @@ from typing_extensions import Literal, NotRequired, TypedDict, final @final class SlackMessageBlockRichTextElementTextStyle(TypedDict): - bold: bool - italic: bool - strike: bool - code: bool + bold: NotRequired[bool] + italic: NotRequired[bool] + strike: NotRequired[bool] + code: NotRequired[bool] @final class SlackMessageBlockRichTextElementText(TypedDict): @@ -32,7 +32,7 @@ class SlackMessageBlockRichTextElementEmoji(TypedDict): type: Literal["emoji"] name: str unicode: str - skin_tone: int + skin_tone: NotRequired[int] @final class SlackMessageBlockRichTextElementChannel(TypedDict): @@ -75,6 +75,7 @@ class SlackMessageBlockRichTextPreformatted(TypedDict): elements: List[ SlackMessageBlockRichTextElementText | SlackMessageBlockRichTextElementLink ] + border: int @final class SlackMessageBlockRichTextQuote(TypedDict): @@ -87,7 +88,7 @@ class SlackMessageBlockRichTextList(TypedDict): elements: List[SlackMessageBlockRichTextSection] style: Literal["ordered", "bullet"] indent: int - offset: int + offset: NotRequired[int] border: int @final |