From 36e2297526682276c4e597fd171c27d115ba0bb6 Mon Sep 17 00:00:00 2001 From: nhannah Date: Thu, 31 Dec 2020 12:04:49 -0700 Subject: [PATCH] add total_unread_count and unread_channels to event type --- src/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types.ts b/src/types.ts index 9b58926dd..b3713dc94 100644 --- a/src/types.ts +++ b/src/types.ts @@ -903,6 +903,8 @@ export type Event< parent_id?: string; reaction?: ReactionResponse; received_at?: string | Date; + total_unread_count?: number; + unread_channels?: number; unread_count?: number; user?: UserResponse; user_id?: string;