Skip to content

Commit

Permalink
v4.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mathews-cometchat committed Aug 8, 2024
1 parent 89a240a commit 4d77640
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions CometChat.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3362,6 +3362,14 @@ export class MessageListener {
* This event is triggered when a reaction is removed.
*/
onMessageReactionRemoved?: Function;
/**
* This event is triggered when a message is delivered to all members in a group.
*/
onMessagesDeliveredToAll?: Function;
/**
* This event is triggered when a message is read by all members in a group.
*/
onMessagesReadByAll?: Function;
constructor(...args: any[]);
}

Expand Down Expand Up @@ -5820,8 +5828,10 @@ export interface ErrorModel {
*/
export class MessageReceipt {
RECEIPT_TYPE: {
READ_RECEIPT: string;
DELIVERY_RECEIPT: string;
READ_RECEIPT: string;
DELIVERY_RECEIPT: string;
READ_BY_ALL_RECEIPT: string;
DELIVERED_TO_ALL_RECEIPT: string;
};
/**
* Method to get receiver type of the message receipt.
Expand Down
2 changes: 1 addition & 1 deletion CometChat.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cometchat/chat-sdk-react-native",
"version": "4.0.10",
"version": "4.0.11",
"description": "A complete chat solution.",
"main": "CometChat.js",
"scripts": {
Expand Down

0 comments on commit 4d77640

Please sign in to comment.