feat(web): improve message UX, voice gestures, and attachments
Some checks failed
CI / test (push) Failing after 21s

This commit is contained in:
2026-03-08 10:20:52 +03:00
parent 52c41b6958
commit 6a96a99775
9 changed files with 857 additions and 212 deletions

View File

@@ -97,3 +97,13 @@ export interface ChatInviteLink {
token: string;
invite_url: string;
}
export interface ChatAttachment {
id: number;
message_id: number;
sender_id: number;
message_created_at: string;
file_url: string;
file_type: string;
file_size: number;
}