@rongcloud/engine 5.20.0-enterprise-alpha.2 → 5.20.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.cjs +1 -1
- package/index.cjs.js +1 -1
- package/index.d.ts +2 -12
- package/index.esm.js +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -251,7 +251,6 @@ declare const LogTagId: {
|
|
|
251
251
|
readonly L_EVENT_LOOP_BLOCKING_S: "L-event_loop_blocking-S";
|
|
252
252
|
readonly A_E_SEARCH_CONVERSATION_BY_CONTENT_T: "A-e_search_conversation_by_content-T";
|
|
253
253
|
readonly A_E_SEARCH_CONVERSATION_BY_CONTENT_R: "A-e_search_conversation_by_content-R";
|
|
254
|
-
readonly P_GET_SYS_VERSION_E: "P-get_sys_version-E";
|
|
255
254
|
};
|
|
256
255
|
|
|
257
256
|
/**
|
|
@@ -8746,13 +8745,13 @@ interface ISSEClientInitOpts extends ISSERequestOpts {
|
|
|
8746
8745
|
}
|
|
8747
8746
|
declare abstract class SSEClient {
|
|
8748
8747
|
#private;
|
|
8749
|
-
/** 平台标识,用于请求时携带 */
|
|
8750
|
-
protected abstract _platform: string;
|
|
8751
8748
|
protected readonly _logger: ILogger;
|
|
8752
8749
|
constructor(
|
|
8753
8750
|
/** 初始化参数 */
|
|
8754
8751
|
initOpts: ISSEClientInitOpts);
|
|
8755
8752
|
/**
|
|
8753
|
+
* 子类实现 SSE 请求:
|
|
8754
|
+
* * 需在因客户端网络问题导致的请求失败时返回 -1,以便于换地址重试
|
|
8756
8755
|
* @param url - 服务地址
|
|
8757
8756
|
* @param opts
|
|
8758
8757
|
*/
|
|
@@ -9534,15 +9533,6 @@ interface IAPIContextOption {
|
|
|
9534
9533
|
* 启动线程阻塞检查
|
|
9535
9534
|
*/
|
|
9536
9535
|
eventLoopBlockingCheck?: boolean;
|
|
9537
|
-
/**
|
|
9538
|
-
* 开启已读回执信息本地存储
|
|
9539
|
-
*/
|
|
9540
|
-
enableReadReceiptStorage: boolean;
|
|
9541
|
-
/**
|
|
9542
|
-
* 启动导航服务 V2,默认关闭,仅私有云有效
|
|
9543
|
-
* @since 5.22.0
|
|
9544
|
-
*/
|
|
9545
|
-
useNaviV2?: boolean;
|
|
9546
9536
|
}
|
|
9547
9537
|
interface IConnectResult {
|
|
9548
9538
|
/**
|