@ait-co/devtools 0.1.64 → 0.1.65
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 +9 -4
- package/dist/mcp/cli.js.map +1 -1
- package/dist/mcp/server.js +1 -1
- package/dist/panel/index.js +2 -2
- package/package.json +1 -1
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.65"
|
|
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
|
@@ -26432,7 +26432,7 @@ function readGlobalString(key) {
|
|
|
26432
26432
|
}
|
|
26433
26433
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
26434
26434
|
function getVersion() {
|
|
26435
|
-
return "0.1.
|
|
26435
|
+
return "0.1.65";
|
|
26436
26436
|
}
|
|
26437
26437
|
let panelVisibleSince = null;
|
|
26438
26438
|
let accumulatedMs = 0;
|
|
@@ -30683,7 +30683,7 @@ function Panel() {
|
|
|
30683
30683
|
color: "#666",
|
|
30684
30684
|
fontWeight: 400
|
|
30685
30685
|
},
|
|
30686
|
-
children: ["v", "0.1.
|
|
30686
|
+
children: ["v", "0.1.65"]
|
|
30687
30687
|
}),
|
|
30688
30688
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
|
|
30689
30689
|
type: "button",
|
package/package.json
CHANGED