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