Skip to content

Commit b9b3709

Browse files
v4.0.9
1 parent 4cbc273 commit b9b3709

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CometChat.d.ts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3303,6 +3303,14 @@ export class MessageListener {
33033303
* This event is triggered when a reaction is removed.
33043304
*/
33053305
onMessageReactionRemoved?: Function;
3306+
/**
3307+
* This event is triggered when a message is delivered to all members in a group.
3308+
*/
3309+
onMessagesDeliveredToAll?: Function;
3310+
/**
3311+
* This event is triggered when a message is read by all members in a group.
3312+
*/
3313+
onMessagesReadByAll?: Function;
33063314
constructor(...args: any[]);
33073315
}
33083316

@@ -5763,8 +5771,10 @@ export interface ErrorModel {
57635771
*/
57645772
export class MessageReceipt {
57655773
RECEIPT_TYPE: {
5766-
READ_RECEIPT: string;
5767-
DELIVERY_RECEIPT: string;
5774+
READ_RECEIPT: string;
5775+
DELIVERY_RECEIPT: string;
5776+
READ_BY_ALL_RECEIPT: string;
5777+
DELIVERED_TO_ALL_RECEIPT: string;
57685778
};
57695779
/**
57705780
* Method to get receiver type of the message receipt.

CometChat.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cometchat/chat-sdk-ionic",
3-
"version": "4.0.8",
3+
"version": "4.0.9",
44
"description": "A complete chat solution.",
55
"main": "CometChat.js",
66
"scripts": {

0 commit comments

Comments
 (0)