@ait-co/devtools 0.1.25 → 0.1.26

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
@@ -569,7 +569,7 @@ function createDebugServer(deps) {
569
569
  const { connection, aitSource, getTunnelStatus } = deps;
570
570
  const server = new Server({
571
571
  name: "ait-debug",
572
- version: "0.1.25"
572
+ version: "0.1.26"
573
573
  }, { capabilities: { tools: {} } });
574
574
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEBUG_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
575
575
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
@@ -816,7 +816,7 @@ function createDevServer(deps = {}) {
816
816
  const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
817
817
  const server = new Server({
818
818
  name: "ait-devtools",
819
- version: "0.1.25"
819
+ version: "0.1.26"
820
820
  }, { capabilities: { tools: {} } });
821
821
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
822
822
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
@@ -222,7 +222,7 @@ function createDevServer(deps = {}) {
222
222
  const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
223
223
  const server = new Server({
224
224
  name: "ait-devtools",
225
- version: "0.1.25"
225
+ version: "0.1.26"
226
226
  }, { capabilities: { tools: {} } });
227
227
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
228
228
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
@@ -1050,7 +1050,7 @@ function readGlobalString(key) {
1050
1050
  }
1051
1051
  const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
1052
1052
  function getVersion() {
1053
- return "0.1.25";
1053
+ return "0.1.26";
1054
1054
  }
1055
1055
  let panelVisibleSince = null;
1056
1056
  let accumulatedMs = 0;
@@ -4182,7 +4182,7 @@ function mount() {
4182
4182
  mockBadge.textContent = aitState.state.panelEditable ? t("panel.editMode.on") : t("panel.editMode.off");
4183
4183
  refreshPanel();
4184
4184
  });
4185
- const headerRight = h("span", { style: "display:flex;align-items:center;gap:6px" }, mockBadge, h("span", { style: "font-size:11px;color:#666;font-weight:400" }, `v0.1.25`), closeBtn);
4185
+ const headerRight = h("span", { style: "display:flex;align-items:center;gap:6px" }, mockBadge, h("span", { style: "font-size:11px;color:#666;font-weight:400" }, `v0.1.26`), closeBtn);
4186
4186
  const header = h("div", { className: "ait-panel-header" }, h("span", {}, t("panel.title")), headerRight);
4187
4187
  tabsEl = h("div", { className: "ait-panel-tabs" });
4188
4188
  for (const tab of getTabs()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ait-co/devtools",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
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": {