@rongcloud/electron 5.24.2 → 5.26.0
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/binding/electron-darwin-arm64.node +0 -0
- package/binding/electron-darwin-x64.node +0 -0
- package/binding/electron-linux-arm64.node +0 -0
- package/binding/electron-linux-x64.node +0 -0
- package/binding/electron-win32-ia32.node +0 -0
- package/binding/electron-win32-x64.node +0 -0
- package/index.cjs +2 -2
- package/index.cjs.js +2 -2
- package/index.d.ts +6 -1
- package/index.esm.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/sub-process.cjs.js +1 -1
- package/sub-process.esm.js +1 -1
- package/cpp-service-process.cjs.js +0 -15
- package/cpp-service-process.esm.js +0 -15
package/index.d.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/** [EN]
|
|
2
|
+
* Log level definitions
|
|
3
|
+
* @category Enum
|
|
4
|
+
*/
|
|
1
5
|
/**
|
|
2
6
|
* 日志打印等级定义
|
|
3
7
|
* @category Enum
|
|
@@ -41,7 +45,7 @@ declare type EnableLogL = LogL.DEBUG | LogL.INFO | LogL.WARN | LogL.ERROR;
|
|
|
41
45
|
|
|
42
46
|
declare class RCMainProxy {
|
|
43
47
|
private _rcMain;
|
|
44
|
-
constructor(appkey: string, dbpath: string, logOutputLevel: EnableLogL,
|
|
48
|
+
constructor(appkey: string, dbpath: string, logOutputLevel: EnableLogL, enableSyncEmptyTopConversation: boolean, disableLogReport: boolean, eventLoopBlockingCheck: boolean);
|
|
45
49
|
/**
|
|
46
50
|
* @deprecated
|
|
47
51
|
*/
|
|
@@ -93,6 +97,7 @@ interface IInitOptions {
|
|
|
93
97
|
environment?: string;
|
|
94
98
|
/**
|
|
95
99
|
* 是否在主进程中运行,默认值为 `false`
|
|
100
|
+
* @deprecated 该参数已失效,SDK 不再支持多进程运行模式
|
|
96
101
|
*/
|
|
97
102
|
runInMainProcess?: boolean;
|
|
98
103
|
/**
|