dev #1

Merged
sauceyred merged 36 commits from dev into main 2025-05-29 03:01:50 +00:00
Showing only changes of commit 46483c336a - Show all commits

View file

@ -32,10 +32,11 @@ export interface ChannelResponse {
} }
export interface MessageResponse { export interface MessageResponse {
uuid: string uuid: string,
channel_uuid: string channel_uuid: string,
user_uuid: string user_uuid: string,
message: string message: string,
user: UserResponse
} }
export interface InviteResponse { export interface InviteResponse {
@ -49,6 +50,6 @@ export interface UserResponse {
username: string, username: string,
display_name: string | null, display_name: string | null,
avatar: string | null, avatar: string | null,
email: string, email?: string,
email_verified: boolean email_verified?: boolean
} }