@ait-co/devtools 0.1.100 → 0.1.101
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 +90 -9
- 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
|
@@ -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.101"
|
|
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
|
@@ -26575,7 +26575,7 @@ function readGlobalString(key) {
|
|
|
26575
26575
|
}
|
|
26576
26576
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
26577
26577
|
function getVersion() {
|
|
26578
|
-
return "0.1.
|
|
26578
|
+
return "0.1.101";
|
|
26579
26579
|
}
|
|
26580
26580
|
let panelVisibleSince = null;
|
|
26581
26581
|
let accumulatedMs = 0;
|
|
@@ -30861,7 +30861,7 @@ function Panel() {
|
|
|
30861
30861
|
color: "#666",
|
|
30862
30862
|
fontWeight: 400
|
|
30863
30863
|
},
|
|
30864
|
-
children: ["v", "0.1.
|
|
30864
|
+
children: ["v", "0.1.101"]
|
|
30865
30865
|
}),
|
|
30866
30866
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
|
|
30867
30867
|
type: "button",
|
package/package.json
CHANGED