@rongcloud/engine 5.6.2-beem-alpha.2 → 5.6.2-beem-alpha.3
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 +6 -6
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1515,7 +1515,6 @@ declare enum LogTagId {
|
|
|
1515
1515
|
L_DESTROY_O = "L_DESTROY_O",
|
|
1516
1516
|
A_CONNECT_T = "A-connect-T",
|
|
1517
1517
|
A_CONNECT_R = "A-connect-R",
|
|
1518
|
-
A_CONNECT_S = "A-connect-S",
|
|
1519
1518
|
A_DISCONNECT_O = "A-disconnect-O",
|
|
1520
1519
|
A_RECONNECT_T = "A-reconnect-T",
|
|
1521
1520
|
A_RECONNECT_R = "A_RECONNECT_R",
|
|
@@ -1559,10 +1558,6 @@ declare enum LogTagId {
|
|
|
1559
1558
|
* 接收到直发消息
|
|
1560
1559
|
*/
|
|
1561
1560
|
L_RECV_S_MSG_O = "L-recv_s_msg-O",
|
|
1562
|
-
/**
|
|
1563
|
-
* 接收到消息,包括通知拉取、直发、多端同步
|
|
1564
|
-
*/
|
|
1565
|
-
L_RECV_MSG_O = "L-recv_msg-O",
|
|
1566
1561
|
A_DELETE_MESSAGES_S = "A-delete_messages-S",
|
|
1567
1562
|
P_DELETE_MSG_S = "P-delete_msg-S",
|
|
1568
1563
|
L_PULL_CONVERSATION_S = "L-pull_conversation-S",
|
|
@@ -1625,7 +1620,12 @@ declare enum LogTagId {
|
|
|
1625
1620
|
/** 版本号上报 */
|
|
1626
1621
|
L_VER_REPORT_T = "L-VER_REPORT-T",
|
|
1627
1622
|
/** 版本号上报结果 */
|
|
1628
|
-
L_VER_REPORT_R = "L-VER_REPORT-R"
|
|
1623
|
+
L_VER_REPORT_R = "L-VER_REPORT-R",
|
|
1624
|
+
/** 跨进程阻塞调用 */
|
|
1625
|
+
L_CALL_MAIN_SYNC_O = "L_CALL_MAIN_SYNC_O",
|
|
1626
|
+
/** 未知的通知 */
|
|
1627
|
+
L_UNSUPPORT_NTF_FROM_MAIN_E = "L_UNSUPPORT_NTF_FROM_MAIN_E",
|
|
1628
|
+
A_SET_MSG_CONTENT_O = "A_SET_MSG_CONTENT_O"
|
|
1629
1629
|
}
|
|
1630
1630
|
|
|
1631
1631
|
/**
|