feat(chats): add per-user chat archive support

This commit is contained in:
2026-03-08 09:53:28 +03:00
parent 76f008d635
commit fdf973eeab
10 changed files with 248 additions and 16 deletions

View File

@@ -12,6 +12,7 @@ export interface Chat {
description?: string | null;
is_public?: boolean;
is_saved?: boolean;
archived?: boolean;
unread_count?: number;
pinned_message_id?: number | null;
members_count?: number | null;