brakit 0.8.6 → 0.8.7
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 +7 -1
- package/dist/api.d.ts +4 -2
- package/dist/api.js +50 -27
- package/dist/bin/brakit.js +45 -10
- package/dist/dashboard-client.global.js +703 -0
- package/dist/dashboard.html +895 -2169
- package/dist/mcp/server.js +1 -1
- package/dist/runtime/index.js +1075 -3277
- package/package.json +4 -2
package/dist/mcp/server.js
CHANGED
|
@@ -51,7 +51,7 @@ var MAX_DISCOVERY_DEPTH = 5;
|
|
|
51
51
|
var MAX_TIMELINE_EVENTS = 20;
|
|
52
52
|
var MAX_RESOLVED_DISPLAY = 5;
|
|
53
53
|
var ENRICHMENT_SEVERITY_FILTER = ["critical", "warning"];
|
|
54
|
-
var MCP_SERVER_VERSION = "0.8.
|
|
54
|
+
var MCP_SERVER_VERSION = "0.8.7";
|
|
55
55
|
|
|
56
56
|
// src/mcp/client.ts
|
|
57
57
|
var BrakitClient = class {
|