@ait-co/devtools 0.1.90 → 0.1.91
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/mcp/cli.js +3 -3
- package/dist/mcp/server.js +1 -1
- package/dist/panel/index.js +2 -2
- package/package.json +1 -1
package/dist/mcp/cli.js
CHANGED
|
@@ -4844,7 +4844,7 @@ async function readMcpSdkVersion() {
|
|
|
4844
4844
|
* some test environments that skip the build step).
|
|
4845
4845
|
*/
|
|
4846
4846
|
function readDevtoolsVersion() {
|
|
4847
|
-
return "0.1.
|
|
4847
|
+
return "0.1.91";
|
|
4848
4848
|
}
|
|
4849
4849
|
/**
|
|
4850
4850
|
* Derives the next recommended action from a completed diagnostics snapshot.
|
|
@@ -5390,7 +5390,7 @@ function createDebugServer(deps) {
|
|
|
5390
5390
|
const collector = collectorDep ?? new InMemoryDiagnosticsCollector();
|
|
5391
5391
|
const server = new Server({
|
|
5392
5392
|
name: "ait-debug",
|
|
5393
|
-
version: "0.1.
|
|
5393
|
+
version: "0.1.91"
|
|
5394
5394
|
}, { capabilities: { tools: { listChanged: true } } });
|
|
5395
5395
|
server.setRequestHandler(ListToolsRequestSchema, () => {
|
|
5396
5396
|
const conn = router.active;
|
|
@@ -7489,7 +7489,7 @@ function createDevServer(deps = {}) {
|
|
|
7489
7489
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
7490
7490
|
const server = new Server({
|
|
7491
7491
|
name: "ait-devtools",
|
|
7492
|
-
version: "0.1.
|
|
7492
|
+
version: "0.1.91"
|
|
7493
7493
|
}, { capabilities: { tools: {} } });
|
|
7494
7494
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
7495
7495
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
package/dist/mcp/server.js
CHANGED
|
@@ -968,7 +968,7 @@ function createDevServer(deps = {}) {
|
|
|
968
968
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
969
969
|
const server = new Server({
|
|
970
970
|
name: "ait-devtools",
|
|
971
|
-
version: "0.1.
|
|
971
|
+
version: "0.1.91"
|
|
972
972
|
}, { capabilities: { tools: {} } });
|
|
973
973
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
974
974
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
package/dist/panel/index.js
CHANGED
|
@@ -26561,7 +26561,7 @@ function readGlobalString(key) {
|
|
|
26561
26561
|
}
|
|
26562
26562
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
26563
26563
|
function getVersion() {
|
|
26564
|
-
return "0.1.
|
|
26564
|
+
return "0.1.91";
|
|
26565
26565
|
}
|
|
26566
26566
|
let panelVisibleSince = null;
|
|
26567
26567
|
let accumulatedMs = 0;
|
|
@@ -30848,7 +30848,7 @@ function Panel() {
|
|
|
30848
30848
|
color: "#666",
|
|
30849
30849
|
fontWeight: 400
|
|
30850
30850
|
},
|
|
30851
|
-
children: ["v", "0.1.
|
|
30851
|
+
children: ["v", "0.1.91"]
|
|
30852
30852
|
}),
|
|
30853
30853
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
|
|
30854
30854
|
type: "button",
|
package/package.json
CHANGED