@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.
@@ -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.100"
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) => {
@@ -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.100";
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.100"]
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ait-co/devtools",
3
- "version": "0.1.100",
3
+ "version": "0.1.101",
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": {