feat: include new reply_to property in MessageResponse interface

This commit is contained in:
SauceyRed 2025-07-11 03:28:50 +02:00
parent 5958697b6c
commit 84b7c01251
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7

View file

@ -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 {