We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2066b77 commit 0096e3dCopy full SHA for 0096e3d
zulipterminal/api_types.py
@@ -503,6 +503,15 @@ class RealmUserEvent(TypedDict):
503
person: RealmUserEventPerson
504
505
506
+class SubmessageEvent(TypedDict):
507
+ type: Literal["submessage"]
508
+ msg_type: str
509
+ message_id: int
510
+ submessage_id: int
511
+ sender_id: int
512
+ content: str
513
+
514
515
# -----------------------------------------------------------------------------
516
# See https://zulip.com/api/get-events#subscription-update
517
# (also -peer_add and -peer_remove; FIXME: -add & -remove are not yet supported)
@@ -619,6 +628,7 @@ class UpdateDisplaySettingsEvent(TypedDict):
619
628
UpdateMessageContentEvent,
620
629
UpdateMessagesLocationEvent,
621
630
ReactionEvent,
631
+ SubmessageEvent,
622
632
SubscriptionUpdateEvent,
623
633
SubscriptionPeerAddRemoveEvent,
624
634
TypingEvent,
0 commit comments