From 4f7ec522d1a1412fe12b71d56caf62f06d7064e5 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 9 Feb 2026 22:27:30 +0000 Subject: [PATCH] hotfix: add missing ChatUpdate import - PRODUCTION DOWN URGENT: Production system down due to TypeScript compilation error. Error: src/Socket/chats.ts(1313,30): error TS2304: Cannot find name 'ChatUpdate' Fix: Added ChatUpdate to type imports (line 10) This was missed in the PR merge and is blocking npm install. https://claude.ai/code/session_01SoNUGBEWbJwWWws3F2fuzh --- src/Socket/chats.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Socket/chats.ts b/src/Socket/chats.ts index b0a0b0dc..897194e3 100644 --- a/src/Socket/chats.ts +++ b/src/Socket/chats.ts @@ -8,6 +8,7 @@ import type { CacheStore, ChatModification, ChatMutation, + ChatUpdate, LTHashState, MessageUpsertType, PresenceData,