@rongcloud/electron 5.12.1 → 5.12.2
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/cppServiceProcess.js +1 -1
- package/index.d.ts +5 -1
- package/index.esm.js +2 -2
- package/index.js +1 -1
- package/package.json +2 -2
- package/sub-process.js +1 -1
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { EnableLogL } from '@rongcloud/engine';
|
|
|
2
2
|
|
|
3
3
|
declare class RCMainProxy {
|
|
4
4
|
private _rcMain;
|
|
5
|
-
constructor(appkey: string, dbpath: string, logOutputLevel: EnableLogL, runInMainProcess: boolean, enableSyncEmptyTopConversation: boolean);
|
|
5
|
+
constructor(appkey: string, dbpath: string, logOutputLevel: EnableLogL, runInMainProcess: boolean, enableSyncEmptyTopConversation: boolean, disableLogReport: boolean);
|
|
6
6
|
/**
|
|
7
7
|
* @deprecated
|
|
8
8
|
*/
|
|
@@ -60,6 +60,10 @@ interface IInitOptions {
|
|
|
60
60
|
* 是否同步空的置顶会话,默认值为 `false`
|
|
61
61
|
*/
|
|
62
62
|
enableSyncEmptyTopConversation?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* 是否关闭日志上报
|
|
65
|
+
*/
|
|
66
|
+
disableLogReport?: boolean;
|
|
63
67
|
}
|
|
64
68
|
declare const _default: (options: IInitOptions) => RCMainProxy;
|
|
65
69
|
|