feat: Implement message delivered event handling to update message statuses in conversations.

This commit is contained in:
pradeepkumar
2026-03-28 02:03:04 +05:30
parent 3f9554c8ba
commit bd40eaeb0c
3 changed files with 40 additions and 0 deletions

View File

@@ -99,6 +99,13 @@ export interface MessagesReadEvent {
readAt: string;
}
export interface MessageDeliveredEvent {
messageId?: string;
messageIds?: string[];
conversationId: string;
deliveredAt: string;
}
export interface PaginationInfo {
page: number;
limit: number;