@rongcloud/engine 5.4.2-beem.6 → 5.4.2-beem.8
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 +13 -2
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -656,6 +656,10 @@ declare enum ErrorCode {
|
|
|
656
656
|
* token平台验证失败
|
|
657
657
|
*/
|
|
658
658
|
RC_PLATFORM_ERROR = 31028,
|
|
659
|
+
/**
|
|
660
|
+
* 证书过期,SDK不会重连
|
|
661
|
+
*/
|
|
662
|
+
RC_LICENSE_EXPIRED = 31030,
|
|
659
663
|
/**
|
|
660
664
|
* 协议层内部错误。query,上传下载过程中数据错误。
|
|
661
665
|
*/
|
|
@@ -1024,7 +1028,11 @@ declare enum ConnectionStatus {
|
|
|
1024
1028
|
/**
|
|
1025
1029
|
* 请求导航超时
|
|
1026
1030
|
*/
|
|
1027
|
-
RESPONSE_NAVI_TIMEOUT = 204
|
|
1031
|
+
RESPONSE_NAVI_TIMEOUT = 204,
|
|
1032
|
+
/**
|
|
1033
|
+
* 证书过期,SDK不会重连
|
|
1034
|
+
*/
|
|
1035
|
+
RC_LICENSE_EXPIRED = 31030
|
|
1028
1036
|
}
|
|
1029
1037
|
|
|
1030
1038
|
declare enum ReceivedStatus {
|
|
@@ -1421,7 +1429,10 @@ declare enum LogTagId {
|
|
|
1421
1429
|
L_GET_HISTORY_MSG_T = "L-get_history_msg-T",
|
|
1422
1430
|
L_GET_HISTORY_MSG_R = "L-get_history_msg-R",
|
|
1423
1431
|
A_CALLBACK_O = "A-callback-O",
|
|
1424
|
-
A_CALLBACK_E = "A-callback-E"
|
|
1432
|
+
A_CALLBACK_E = "A-callback-E",
|
|
1433
|
+
L_REPORT_FULL_LOG_O = "L-report_full_log-O",
|
|
1434
|
+
L_REPORT_FULL_LOG_T = "L-report_full_log-T",
|
|
1435
|
+
L_REPORT_FULL_LOG_R = "L-report_full_log-R"
|
|
1425
1436
|
}
|
|
1426
1437
|
|
|
1427
1438
|
/**
|