@ait-co/devtools 0.1.48 → 0.1.49

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
@@ -3611,7 +3611,7 @@ function createDebugServer(deps) {
3611
3611
  const collector = collectorDep ?? new InMemoryDiagnosticsCollector();
3612
3612
  const server = new Server({
3613
3613
  name: "ait-debug",
3614
- version: "0.1.48"
3614
+ version: "0.1.49"
3615
3615
  }, { capabilities: { tools: { listChanged: true } } });
3616
3616
  server.setRequestHandler(ListToolsRequestSchema, () => {
3617
3617
  const env = resolveEnvironment();
@@ -4658,7 +4658,7 @@ function createDevServer(deps = {}) {
4658
4658
  const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
4659
4659
  const server = new Server({
4660
4660
  name: "ait-devtools",
4661
- version: "0.1.48"
4661
+ version: "0.1.49"
4662
4662
  }, { capabilities: { tools: {} } });
4663
4663
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
4664
4664
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
@@ -929,7 +929,7 @@ function createDevServer(deps = {}) {
929
929
  const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
930
930
  const server = new Server({
931
931
  name: "ait-devtools",
932
- version: "0.1.48"
932
+ version: "0.1.49"
933
933
  }, { capabilities: { tools: {} } });
934
934
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
935
935
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
@@ -1108,7 +1108,7 @@ function readGlobalString(key) {
1108
1108
  }
1109
1109
  const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
1110
1110
  function getVersion() {
1111
- return "0.1.48";
1111
+ return "0.1.49";
1112
1112
  }
1113
1113
  let panelVisibleSince = null;
1114
1114
  let accumulatedMs = 0;
@@ -4861,7 +4861,7 @@ function mount() {
4861
4861
  mockBadge.textContent = aitState.state.panelEditable ? t("panel.editMode.on") : t("panel.editMode.off");
4862
4862
  refreshPanel();
4863
4863
  });
4864
- 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.48`), closeBtn);
4864
+ 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.49`), closeBtn);
4865
4865
  const header = h("div", { className: "ait-panel-header" }, h("span", {}, t("panel.title")), headerRight);
4866
4866
  tabsEl = h("div", { className: "ait-panel-tabs" });
4867
4867
  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.48",
3
+ "version": "0.1.49",
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": {