From b39c7d8fe809ec5f7eea7475e7abe945ca1deb59 Mon Sep 17 00:00:00 2001 From: Domagoj Kriskovic Date: Mon, 12 Jan 2026 16:50:42 +0100 Subject: [PATCH] Add comment resolved hook for email notifications GitOrigin-RevId: 426162e4ca03dbb8459c990ae56ff8d12ba2d8b4 --- services/web/types/module-hooks.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/services/web/types/module-hooks.ts b/services/web/types/module-hooks.ts index 1dea7cb3ac..9d35ad3fd8 100644 --- a/services/web/types/module-hooks.ts +++ b/services/web/types/module-hooks.ts @@ -9,6 +9,12 @@ export type CommentAddedEvent = { messageId: string } +export type CommentResolvedEvent = { + projectId: string + userId: string + threadId: string +} + export type ProjectModifiedEvent = { projectId: string timestamp: number