@cometchat/chat-sdk-javascript 4.0.8 → 4.0.9
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/CometChat.d.ts +10 -0
- package/CometChat.js +1 -1
- package/package.json +1 -1
package/CometChat.d.ts
CHANGED
|
@@ -4067,6 +4067,14 @@ export class MessageListener {
|
|
|
4067
4067
|
* This event is triggered when a reaction is removed.
|
|
4068
4068
|
*/
|
|
4069
4069
|
onMessageReactionRemoved?: Function;
|
|
4070
|
+
/**
|
|
4071
|
+
* This event is triggered when a message is delivered to all members in a group.
|
|
4072
|
+
*/
|
|
4073
|
+
onMessagesDeliveredToAll?: Function;
|
|
4074
|
+
/**
|
|
4075
|
+
* This event is triggered when a message is read by all members in a group.
|
|
4076
|
+
*/
|
|
4077
|
+
onMessagesReadByAll?: Function;
|
|
4070
4078
|
constructor(...args: any[]);
|
|
4071
4079
|
}
|
|
4072
4080
|
export class CallListener {
|
|
@@ -7551,6 +7559,8 @@ export class MessageReceipt {
|
|
|
7551
7559
|
RECEIPT_TYPE: {
|
|
7552
7560
|
READ_RECEIPT: string;
|
|
7553
7561
|
DELIVERY_RECEIPT: string;
|
|
7562
|
+
READ_BY_ALL_RECEIPT: string;
|
|
7563
|
+
DELIVERED_TO_ALL_RECEIPT: string;
|
|
7554
7564
|
};
|
|
7555
7565
|
/**
|
|
7556
7566
|
* Method to get receiver type of the message receipt.
|