feat: Implement conversation mute and favorite features with UI, API, and state management.

This commit is contained in:
pradeepkumar
2026-03-19 17:03:25 +05:30
parent 51fd050945
commit 19b90285da
5 changed files with 99 additions and 4 deletions

View File

@@ -30,6 +30,10 @@ export interface Conversation {
userUnreadCount: number;
agentUnreadCount: number;
unreadCount: number;
userMuted: boolean;
agentMuted: boolean;
userFavorited: boolean;
agentFavorited: boolean;
createdAt: string;
updatedAt: string;
otherParty: OtherParty;