@codingfactory/messenger-client 0.2.24 → 0.2.26

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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingfactory/messenger-client",
3
- "version": "0.2.24",
3
+ "version": "0.2.26",
4
4
  "description": "Shared messaging frontend state, API helpers, and realtime composables.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",