blob: 1e0c105dcec4fba0601c54f5a62605a7a107cec9 (
plain) (
tree)
|
|
from slack_api.slack_conversations_history import (
SlackMessage,
SlackMessageStandardCommon,
SlackMessageSubtypeBotAdd,
SlackMessageSubtypeBotMessage,
SlackMessageSubtypeBotRemove,
SlackMessageSubtypeChannelJoin,
SlackMessageSubtypeChannelLeave,
SlackMessageThreadParentNotSubscribed,
SlackMessageThreadParentSubscribed,
SlackMessageWithFiles,
)
from typing_extensions import Literal, NotRequired, TypedDict, final
class SlackRtmHello(TypedDict):
type: Literal["hello"]
fast_reconnect: bool
region: str
start: bool
host_id: str
@final
class SlackMessageStandardRtm(SlackMessageStandardCommon):
channel: str
@final
class SlackMessageThreadParentNotSubscribedRtm(SlackMessageThreadParentNotSubscribed):
channel: str
@final
class SlackMessageThreadParentSubscribedRtm(SlackMessageThreadParentSubscribed):
channel: str
@final
class SlackMessageWithFilesRtm(SlackMessageWithFiles):
channel: str
@final
class SlackMessageSubtypeBotMessageRtm(SlackMessageSubtypeBotMessage):
channel: str
@final
class SlackMessageSubtypeBotRemoveRtm(SlackMessageSubtypeBotRemove):
channel: str
@final
class SlackMessageSubtypeBotAddRtm(SlackMessageSubtypeBotAdd):
channel: str
@final
class SlackMessageSubtypeChannelJoinRtm(SlackMessageSubtypeChannelJoin):
channel: str
@final
class SlackMessageSubtypeChannelLeaveRtm(SlackMessageSubtypeChannelLeave):
channel: str
@final
class SlackMessageChanged(TypedDict):
type: Literal["message"]
subtype: Literal["message_changed"]
message: SlackMessage
previous_message: SlackMessage
channel: str
hidden: bool
ts: str
event_ts: str
@final
class SlackMessageDeleted(TypedDict):
type: Literal["message"]
subtype: Literal["message_deleted"]
previous_message: SlackMessage
channel: str
hidden: bool
ts: str
deleted_ts: str
event_ts: str
@final
class SlackMessageReplied(TypedDict):
type: Literal["message"]
subtype: Literal["message_replied"]
message: SlackMessage
channel: str
hidden: bool
ts: str
event_ts: str
@final
class SlackUserTyping(TypedDict):
type: Literal["user_typing"]
channel: str
thread_ts: NotRequired[str]
id: int
user: str
SlackMessageRtm = (
SlackMessageStandardRtm
| SlackMessageThreadParentNotSubscribedRtm
| SlackMessageThreadParentSubscribedRtm
| SlackMessageWithFilesRtm
| SlackMessageSubtypeBotMessageRtm
| SlackMessageSubtypeBotRemoveRtm
| SlackMessageSubtypeBotAddRtm
| SlackMessageSubtypeChannelJoinRtm
| SlackMessageSubtypeChannelLeaveRtm
)
SlackRtmMessage = (
SlackRtmHello
| SlackMessageRtm
| SlackMessageChanged
| SlackMessageDeleted
| SlackMessageReplied
| SlackUserTyping
)
|