From 3b401816694b6b433addd8d9c0098623220ea8c7 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Wed, 24 Sep 2025 09:57:35 +0900 Subject: [PATCH] Update Notification.ts --- packages/backend/src/models/Notification.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/backend/src/models/Notification.ts b/packages/backend/src/models/Notification.ts index 0b4eeb3455..fffd7fb4c3 100644 --- a/packages/backend/src/models/Notification.ts +++ b/packages/backend/src/models/Notification.ts @@ -60,6 +60,11 @@ export type MiNotification = { createdAt: string; notifierId: MiUser['id']; noteId: MiNote['id']; +} | { + type: 'scheduledNotePosted'; + id: string; + createdAt: string; + noteId: MiNote['id']; } | { type: 'receiveFollowRequest'; id: string;