@ait-co/devtools 0.1.62 → 0.1.63

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.
@@ -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.62"
967
+ version: "0.1.63"
968
968
  }, { capabilities: { tools: {} } });
969
969
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
970
970
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
@@ -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.62";
26435
+ return "0.1.63";
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.62"]
30686
+ children: ["v", "0.1.63"]
30687
30687
  }),
30688
30688
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
30689
30689
  type: "button",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ait-co/devtools",
3
- "version": "0.1.62",
3
+ "version": "0.1.63",
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": {