feat: add waveform voice messages end-to-end
All checks were successful
CI / test (push) Successful in 23s

This commit is contained in:
2026-03-08 12:40:49 +03:00
parent 3b82b5e558
commit 30169a3a27
13 changed files with 361 additions and 19 deletions

View File

@@ -62,6 +62,7 @@ export interface Message {
client_message_id?: string;
delivery_status?: DeliveryStatus;
is_pending?: boolean;
attachment_waveform?: number[] | null;
}
export interface MessageReaction {
@@ -123,4 +124,5 @@ export interface ChatAttachment {
file_url: string;
file_type: string;
file_size: number;
waveform_points?: number[] | null;
}