diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-12-12 13:04:51 +0000 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-12-12 13:04:51 +0000 |
| commit | 6d4ae935921ef1dcc5c908f216f6e8affc6e60c3 (patch) | |
| tree | 6c1f7724b63efa8f48f1c9e21f2789f9d9c000b2 /packages/backend/src/models/Notification.ts | |
| parent | fix(backend): アドレス入力で直接ユーザのプロフィールペー... (diff) | |
| parent | merge: Schedule Notes (!804) (diff) | |
| download | sharkey-6d4ae935921ef1dcc5c908f216f6e8affc6e60c3.tar.gz sharkey-6d4ae935921ef1dcc5c908f216f6e8affc6e60c3.tar.bz2 sharkey-6d4ae935921ef1dcc5c908f216f6e8affc6e60c3.zip | |
Merge branch 'develop' into feature/2024.10
Diffstat (limited to 'packages/backend/src/models/Notification.ts')
| -rw-r--r-- | packages/backend/src/models/Notification.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/backend/src/models/Notification.ts b/packages/backend/src/models/Notification.ts index 7e835eb3ba..6d7a453879 100644 --- a/packages/backend/src/models/Notification.ts +++ b/packages/backend/src/models/Notification.ts @@ -126,6 +126,16 @@ export type MiNotification = { createdAt: string; notifierId: MiUser['id']; noteId: MiNote['id']; +} | { + type: 'scheduledNoteFailed'; + id: string; + createdAt: string; + reason: string; +} | { + type: 'scheduledNotePosted'; + id: string; + createdAt: string; + noteId: MiNote['id']; }; export type MiGroupedNotification = MiNotification | { |