diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-02-03 02:24:42 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-02-03 02:24:42 +0900 |
| commit | 5531a1fdf21926bb1801b0d8e02fb88680332358 (patch) | |
| tree | 969e8288fbbf448b7536899180b89d99cfb83007 /src | |
| parent | Update .eslintrc.js (diff) | |
| download | misskey-5531a1fdf21926bb1801b0d8e02fb88680332358.tar.gz misskey-5531a1fdf21926bb1801b0d8e02fb88680332358.tar.bz2 misskey-5531a1fdf21926bb1801b0d8e02fb88680332358.zip | |
NoteUpdatedEvent に unreacted を追加
Fix #43
Diffstat (limited to 'src')
| -rw-r--r-- | src/streaming.types.ts | 7 |
1 files changed, 7 insertions, 0 deletions
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 @@ -124,6 +124,13 @@ export type NoteUpdatedEvent = { }; } | { id: Note['id']; + type: 'unreacted'; + body: { + reaction: string; + userId: User['id']; + }; +} | { + id: Note['id']; type: 'deleted'; body: { deletedAt: string; |