@ait-co/devtools 0.1.68 → 0.1.69
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
|
@@ -4381,7 +4381,7 @@ async function readMcpSdkVersion() {
|
|
|
4381
4381
|
* some test environments that skip the build step).
|
|
4382
4382
|
*/
|
|
4383
4383
|
function readDevtoolsVersion() {
|
|
4384
|
-
return "0.1.
|
|
4384
|
+
return "0.1.69";
|
|
4385
4385
|
}
|
|
4386
4386
|
/**
|
|
4387
4387
|
* Derives the next recommended action from a completed diagnostics snapshot.
|
|
@@ -4885,7 +4885,7 @@ function createDebugServer(deps) {
|
|
|
4885
4885
|
const collector = collectorDep ?? new InMemoryDiagnosticsCollector();
|
|
4886
4886
|
const server = new Server({
|
|
4887
4887
|
name: "ait-debug",
|
|
4888
|
-
version: "0.1.
|
|
4888
|
+
version: "0.1.69"
|
|
4889
4889
|
}, { capabilities: { tools: { listChanged: true } } });
|
|
4890
4890
|
server.setRequestHandler(ListToolsRequestSchema, () => {
|
|
4891
4891
|
const conn = router.active;
|
|
@@ -6761,7 +6761,7 @@ function createDevServer(deps = {}) {
|
|
|
6761
6761
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
6762
6762
|
const server = new Server({
|
|
6763
6763
|
name: "ait-devtools",
|
|
6764
|
-
version: "0.1.
|
|
6764
|
+
version: "0.1.69"
|
|
6765
6765
|
}, { capabilities: { tools: {} } });
|
|
6766
6766
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
6767
6767
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
package/dist/mcp/server.js
CHANGED
|
@@ -964,7 +964,7 @@ function createDevServer(deps = {}) {
|
|
|
964
964
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
965
965
|
const server = new Server({
|
|
966
966
|
name: "ait-devtools",
|
|
967
|
-
version: "0.1.
|
|
967
|
+
version: "0.1.69"
|
|
968
968
|
}, { capabilities: { tools: {} } });
|
|
969
969
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
970
970
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
package/dist/panel/index.js
CHANGED
|
@@ -26472,7 +26472,7 @@ function readGlobalString(key) {
|
|
|
26472
26472
|
}
|
|
26473
26473
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
26474
26474
|
function getVersion() {
|
|
26475
|
-
return "0.1.
|
|
26475
|
+
return "0.1.69";
|
|
26476
26476
|
}
|
|
26477
26477
|
let panelVisibleSince = null;
|
|
26478
26478
|
let accumulatedMs = 0;
|
|
@@ -30723,7 +30723,7 @@ function Panel() {
|
|
|
30723
30723
|
color: "#666",
|
|
30724
30724
|
fontWeight: 400
|
|
30725
30725
|
},
|
|
30726
|
-
children: ["v", "0.1.
|
|
30726
|
+
children: ["v", "0.1.69"]
|
|
30727
30727
|
}),
|
|
30728
30728
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
|
|
30729
30729
|
type: "button",
|
package/package.json
CHANGED