@rongcloud/engine 5.9.9-enterprise-alpha.10 → 5.9.9-enterprise-alpha.12
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 +11 -0
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5840,6 +5840,11 @@ declare abstract class AConnectionMgr {
|
|
|
5840
5840
|
*/
|
|
5841
5841
|
protected updateCmpWeight(cmpUrl: string, isRise: boolean, isQuick?: boolean): void;
|
|
5842
5842
|
private clearCmpWeightCache;
|
|
5843
|
+
/**
|
|
5844
|
+
* 用于子进程崩溃重启后调用重连
|
|
5845
|
+
* @param code 错误码
|
|
5846
|
+
*/
|
|
5847
|
+
reconnect(token: string, reconnectKickEnable: boolean, openCallPlus: boolean, code: ErrorCode): void;
|
|
5843
5848
|
}
|
|
5844
5849
|
|
|
5845
5850
|
/**
|
|
@@ -7300,6 +7305,12 @@ interface IAPIContextOption {
|
|
|
7300
7305
|
* 私有云环境配置
|
|
7301
7306
|
*/
|
|
7302
7307
|
environment?: string;
|
|
7308
|
+
/**
|
|
7309
|
+
* 开启已读回执信息本地存储,开启后离线量大时会有性能问题
|
|
7310
|
+
* 私有云默认值为 false,多数客户已自行实现
|
|
7311
|
+
* 公有云默认值为 true
|
|
7312
|
+
*/
|
|
7313
|
+
enableReadReceiptStorage: boolean;
|
|
7303
7314
|
}
|
|
7304
7315
|
|
|
7305
7316
|
interface IPluginGenerator<API, InitOption> {
|