@codingfactory/messenger-client 0.2.6 → 0.2.7

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.
@@ -3749,7 +3749,7 @@ export declare const useMessagingStore: import("pinia").StoreDefinition<"messagi
3749
3749
  fetchConversation(id: string): Promise<Conversation>;
3750
3750
  fetchRequests(cursor?: string): Promise<PaginatedResponse<Conversation>>;
3751
3751
  fetchMessages(conversationId: string, cursor?: string): Promise<PaginatedResponse<Message>>;
3752
- sendMessage(conversationId: string, body?: string, attachments?: File[], replyToId?: string | null, replyToPreview?: ReplyToPreview | null, sharedPostId?: string | null): Promise<Message>;
3752
+ sendMessage(conversationId: string, body?: string, attachments?: File[], replyToId?: string | null, replyToPreview?: ReplyToPreview | null, sharedPostId?: string | null, sharedPostPreview?: SharedPostPreview | null): Promise<Message>;
3753
3753
  editMessage(conversationId: string, messageId: string, body: string): Promise<Message>;
3754
3754
  deleteMessage(conversationId: string, messageId: string): Promise<void>;
3755
3755
  markAsRead(conversationId: string): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingfactory/messenger-client",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Shared messaging frontend state, API helpers, and realtime composables.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",