@peninsula-med/beisen-ehr-plugin 1.0.6 → 1.1.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/README.md +79 -141
- package/dist/index.cjs.js +3704 -66
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -11
- package/dist/index.esm.js +3703 -64
- package/dist/index.esm.js.map +1 -1
- package/openclaw.plugin.json +36 -43
- package/package.json +3 -4
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { OpenClawPlugin } from 'openclaw/plugin-sdk';
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
declare const pluginId = "beisen-ehr-plugin";
|
|
11
|
-
declare const pluginVersion = "1.
|
|
11
|
+
declare const pluginVersion = "1.1.0";
|
|
12
12
|
/**
|
|
13
13
|
* 北森 EHR 插件配置接口
|
|
14
14
|
*/
|
|
@@ -31,20 +31,14 @@ interface BeisenEHRConfig {
|
|
|
31
31
|
*/
|
|
32
32
|
declare const defaultConfig: Partial<BeisenEHRConfig>;
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
* 当插件被激活时,自动配置 MCP 服务器
|
|
34
|
+
* 插件注册函数
|
|
37
35
|
*/
|
|
38
|
-
declare function
|
|
36
|
+
declare function register(api: any): Promise<void>;
|
|
39
37
|
/**
|
|
40
38
|
* 插件停用函数
|
|
41
39
|
*/
|
|
42
|
-
declare function
|
|
43
|
-
/**
|
|
44
|
-
* 配置变更回调
|
|
45
|
-
*/
|
|
46
|
-
declare function onConfigChange(config: BeisenEHRConfig): Promise<void>;
|
|
40
|
+
declare function unregister(): Promise<void>;
|
|
47
41
|
declare const plugin: OpenClawPlugin;
|
|
48
42
|
|
|
49
|
-
export {
|
|
43
|
+
export { plugin as default, defaultConfig, pluginId, pluginVersion, register, unregister };
|
|
50
44
|
export type { BeisenEHRConfig };
|