@sanctuary-framework/mcp-server 0.10.6 → 1.0.0-rc.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/dist/cli.cjs +1907 -243
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1909 -245
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +1204 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1206 -10
- package/dist/index.js.map +1 -1
- package/package.json +21 -2
package/dist/index.d.cts
CHANGED
|
@@ -3076,6 +3076,12 @@ declare class DashboardApprovalChannel implements ApprovalChannel {
|
|
|
3076
3076
|
* Broadcast current protection status to connected dashboards.
|
|
3077
3077
|
*/
|
|
3078
3078
|
broadcastProtectionStatus(data: Record<string, unknown>): void;
|
|
3079
|
+
/** Push a Mesh Health snapshot (full re-render trigger on the client). */
|
|
3080
|
+
broadcastMeshHealth(snapshot: Record<string, unknown>): void;
|
|
3081
|
+
/** Push a single failure-mode alert (incremental client update). */
|
|
3082
|
+
broadcastMeshFailureModeAlert(alert: Record<string, unknown>): void;
|
|
3083
|
+
/** Push a post-recovery prompt update (master rotation hygiene flow). */
|
|
3084
|
+
broadcastMeshPostRecoveryPrompt(prompt: Record<string, unknown>): void;
|
|
3079
3085
|
/**
|
|
3080
3086
|
* Open a URL in the system's default browser.
|
|
3081
3087
|
* Cross-platform: macOS (open), Linux (xdg-open), Windows (start).
|
package/dist/index.d.ts
CHANGED
|
@@ -3076,6 +3076,12 @@ declare class DashboardApprovalChannel implements ApprovalChannel {
|
|
|
3076
3076
|
* Broadcast current protection status to connected dashboards.
|
|
3077
3077
|
*/
|
|
3078
3078
|
broadcastProtectionStatus(data: Record<string, unknown>): void;
|
|
3079
|
+
/** Push a Mesh Health snapshot (full re-render trigger on the client). */
|
|
3080
|
+
broadcastMeshHealth(snapshot: Record<string, unknown>): void;
|
|
3081
|
+
/** Push a single failure-mode alert (incremental client update). */
|
|
3082
|
+
broadcastMeshFailureModeAlert(alert: Record<string, unknown>): void;
|
|
3083
|
+
/** Push a post-recovery prompt update (master rotation hygiene flow). */
|
|
3084
|
+
broadcastMeshPostRecoveryPrompt(prompt: Record<string, unknown>): void;
|
|
3079
3085
|
/**
|
|
3080
3086
|
* Open a URL in the system's default browser.
|
|
3081
3087
|
* Cross-platform: macOS (open), Linux (xdg-open), Windows (start).
|