@dcrays/mbh-chat 0.1.4 → 0.1.5-beta.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/README.md +1 -1
- package/bridge/index.js +129 -126
- package/package.json +3 -3
- package/plugin/index.d.ts +1 -1
- package/plugin/index.js +23 -23
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcrays/mbh-chat",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "DeepSeek Harness host plugin and headless sidecar bridge for MBHChat/Mobook
|
|
3
|
+
"version": "0.1.5-beta.2",
|
|
4
|
+
"description": "DeepSeek Harness host plugin and headless sidecar bridge for MBHChat/Mobook",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "plugin/index.js",
|
|
7
7
|
"types": "plugin/index.d.ts",
|
|
@@ -47,4 +47,4 @@
|
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
}
|
|
50
|
-
}
|
|
50
|
+
}
|
package/plugin/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import type { Context } from '@deepseek-ai/cordis';
|
|
|
2
2
|
import type { WebRoute } from '@deepseek-ai/dsh-host-webserver';
|
|
3
3
|
import z from '@deepseek-ai/schemastery';
|
|
4
4
|
import type { MbhchatBridgeStatus } from '../src/host/bridge-status.js';
|
|
5
|
-
export { DEFAULT_BUILD_ENV } from '../src/config/env-config.js';
|
|
6
5
|
export declare const name = "mbh-chat";
|
|
7
6
|
export declare const inject: string[];
|
|
8
7
|
export declare const MBHCHAT_STATUS_ROUTE = "/api/mobook/mbhchat/status";
|
|
@@ -34,3 +33,4 @@ export declare function shouldStartSidecar(config: Config, dshHome?: string): bo
|
|
|
34
33
|
/** Exponential backoff with a floor of restartDelayMs; attempt 0 still waits the full base delay. */
|
|
35
34
|
export declare function restartBackoffDelayMs(restartDelayMs: number, restartMaxDelayMs: number, restartAttempt: number): number;
|
|
36
35
|
export declare function apply(ctx: Context, config: Config): void;
|
|
36
|
+
export {};
|