@ait-co/devtools 0.1.80 → 0.1.81

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 CHANGED
@@ -4717,7 +4717,7 @@ async function readMcpSdkVersion() {
4717
4717
  * some test environments that skip the build step).
4718
4718
  */
4719
4719
  function readDevtoolsVersion() {
4720
- return "0.1.80";
4720
+ return "0.1.81";
4721
4721
  }
4722
4722
  /**
4723
4723
  * Derives the next recommended action from a completed diagnostics snapshot.
@@ -5221,7 +5221,7 @@ function createDebugServer(deps) {
5221
5221
  const collector = collectorDep ?? new InMemoryDiagnosticsCollector();
5222
5222
  const server = new Server({
5223
5223
  name: "ait-debug",
5224
- version: "0.1.80"
5224
+ version: "0.1.81"
5225
5225
  }, { capabilities: { tools: { listChanged: true } } });
5226
5226
  server.setRequestHandler(ListToolsRequestSchema, () => {
5227
5227
  const conn = router.active;
@@ -7264,7 +7264,7 @@ function createDevServer(deps = {}) {
7264
7264
  const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
7265
7265
  const server = new Server({
7266
7266
  name: "ait-devtools",
7267
- version: "0.1.80"
7267
+ version: "0.1.81"
7268
7268
  }, { capabilities: { tools: {} } });
7269
7269
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
7270
7270
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
@@ -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.80"
967
+ version: "0.1.81"
968
968
  }, { capabilities: { tools: {} } });
969
969
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
970
970
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
@@ -26494,7 +26494,7 @@ function readGlobalString(key) {
26494
26494
  }
26495
26495
  const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
26496
26496
  function getVersion() {
26497
- return "0.1.80";
26497
+ return "0.1.81";
26498
26498
  }
26499
26499
  let panelVisibleSince = null;
26500
26500
  let accumulatedMs = 0;
@@ -30745,7 +30745,7 @@ function Panel() {
30745
30745
  color: "#666",
30746
30746
  fontWeight: 400
30747
30747
  },
30748
- children: ["v", "0.1.80"]
30748
+ children: ["v", "0.1.81"]
30749
30749
  }),
30750
30750
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
30751
30751
  type: "button",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ait-co/devtools",
3
- "version": "0.1.80",
3
+ "version": "0.1.81",
4
4
  "description": "Development tools for Apps in Toss mini-apps — mock SDK, floating devtools panel, and universal bundler plugin",
5
5
  "type": "module",
6
6
  "engines": {