@codingfactory/messenger-client 0.2.24 → 0.2.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1866 -1831
- package/dist/stores/messaging.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3773,6 +3773,7 @@ export declare const useMessagingStore: import("pinia").StoreDefinition<"messagi
|
|
|
3773
3773
|
removeMessage(conversationId: string, messageId: string): void;
|
|
3774
3774
|
toggleReaction(conversationId: string, messageId: string, reaction: ReactionType): Promise<void>;
|
|
3775
3775
|
updateMessageReactions(conversationId: string, messageId: string, reactions: ReactionSummary[] | null | undefined): void;
|
|
3776
|
+
applyMessageEdit(conversationId: string, messageId: string, body: string | undefined, editedAt: string | null | undefined, meta: Record<string, unknown> | undefined): void;
|
|
3776
3777
|
addTypingUser(conversationId: string, user: TypingUser): void;
|
|
3777
3778
|
removeTypingUser(conversationId: string, userId: string): void;
|
|
3778
3779
|
updateConversationLastMessage(conversationId: string, message: Message): void;
|