From 84b7c012519adf2e6966bc55f1acd3735accdce2 Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Fri, 11 Jul 2025 03:28:50 +0200 Subject: [PATCH] feat: include new reply_to property in MessageResponse interface --- types/interfaces.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/interfaces.ts b/types/interfaces.ts index 0325e54..8921c72 100644 --- a/types/interfaces.ts +++ b/types/interfaces.ts @@ -44,7 +44,8 @@ export interface MessageResponse { channel_uuid: string, user_uuid: string, message: string, - user: UserResponse + reply_to: string | null, + user: UserResponse, } export interface InviteResponse {