@rongcloud/engine 5.3.0 → 5.3.1
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/index.d.ts +9 -1
- package/index.esm.js +3 -3
- package/index.js +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -820,6 +820,10 @@ interface IRecallMsgOptions {
|
|
|
820
820
|
* 其他拓展信息
|
|
821
821
|
*/
|
|
822
822
|
extra?: string;
|
|
823
|
+
/**
|
|
824
|
+
* 是否删除原始消息(在移动端会使用到),为 true 时移动端会不显示小灰条提示
|
|
825
|
+
*/
|
|
826
|
+
isDelete?: boolean;
|
|
823
827
|
}
|
|
824
828
|
interface IRecallMsgContent {
|
|
825
829
|
conversationType: number;
|
|
@@ -839,6 +843,10 @@ interface IRecallMsgContent {
|
|
|
839
843
|
* 发送消息携带的用户信息
|
|
840
844
|
*/
|
|
841
845
|
user?: IUserProfile;
|
|
846
|
+
/**
|
|
847
|
+
* 是否删除原始消息(在移动端会使用到),为 true 时移动端会不显示小灰条提示
|
|
848
|
+
*/
|
|
849
|
+
isDelete?: boolean;
|
|
842
850
|
}
|
|
843
851
|
/**
|
|
844
852
|
* 发送消息时的可选项信息
|
|
@@ -1646,7 +1654,7 @@ declare enum NotificationLevel {
|
|
|
1646
1654
|
/**
|
|
1647
1655
|
* @ 群全员通知
|
|
1648
1656
|
*/
|
|
1649
|
-
|
|
1657
|
+
AT_GROUP_ALL_USER_NOTIFICATION = 4,
|
|
1650
1658
|
/**
|
|
1651
1659
|
* 消息通知被屏蔽,即不接收消息通知
|
|
1652
1660
|
*/
|