diff --git a/src/streaming.types.ts b/src/streaming.types.ts index 947e55e25f..f711b8d6eb 100644 --- a/src/streaming.types.ts +++ b/src/streaming.types.ts @@ -122,6 +122,13 @@ export type NoteUpdatedEvent = { reaction: string; userId: User['id']; }; +} | { + id: Note['id']; + type: 'unreacted'; + body: { + reaction: string; + userId: User['id']; + }; } | { id: Note['id']; type: 'deleted';