@ait-co/devtools 0.1.35 → 0.1.36
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 +2 -2
- package/dist/mcp/server.js +1 -1
- package/dist/panel/index.js +2 -2
- package/package.json +2 -2
package/dist/mcp/cli.js
CHANGED
|
@@ -1626,7 +1626,7 @@ function createDebugServer(deps) {
|
|
|
1626
1626
|
const { connection, aitSource, getTunnelStatus, waitForAttachTimeoutMs = 9e4 } = deps;
|
|
1627
1627
|
const server = new Server({
|
|
1628
1628
|
name: "ait-debug",
|
|
1629
|
-
version: "0.1.
|
|
1629
|
+
version: "0.1.36"
|
|
1630
1630
|
}, { capabilities: { tools: { listChanged: true } } });
|
|
1631
1631
|
server.setRequestHandler(ListToolsRequestSchema, () => {
|
|
1632
1632
|
return { tools: connection.listTargets().length > 0 ? DEBUG_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) : DEBUG_TOOL_DEFINITIONS.filter((tool) => BOOTSTRAP_TOOL_NAMES.has(tool.name)).map((tool) => ({ ...tool })) };
|
|
@@ -2169,7 +2169,7 @@ function createDevServer(deps = {}) {
|
|
|
2169
2169
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
2170
2170
|
const server = new Server({
|
|
2171
2171
|
name: "ait-devtools",
|
|
2172
|
-
version: "0.1.
|
|
2172
|
+
version: "0.1.36"
|
|
2173
2173
|
}, { capabilities: { tools: {} } });
|
|
2174
2174
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
2175
2175
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
package/dist/mcp/server.js
CHANGED
|
@@ -326,7 +326,7 @@ function createDevServer(deps = {}) {
|
|
|
326
326
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
327
327
|
const server = new Server({
|
|
328
328
|
name: "ait-devtools",
|
|
329
|
-
version: "0.1.
|
|
329
|
+
version: "0.1.36"
|
|
330
330
|
}, { capabilities: { tools: {} } });
|
|
331
331
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
332
332
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
package/dist/panel/index.js
CHANGED
|
@@ -1109,7 +1109,7 @@ function readGlobalString(key) {
|
|
|
1109
1109
|
}
|
|
1110
1110
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
1111
1111
|
function getVersion() {
|
|
1112
|
-
return "0.1.
|
|
1112
|
+
return "0.1.36";
|
|
1113
1113
|
}
|
|
1114
1114
|
let panelVisibleSince = null;
|
|
1115
1115
|
let accumulatedMs = 0;
|
|
@@ -4873,7 +4873,7 @@ function mount() {
|
|
|
4873
4873
|
mockBadge.textContent = aitState.state.panelEditable ? t("panel.editMode.on") : t("panel.editMode.off");
|
|
4874
4874
|
refreshPanel();
|
|
4875
4875
|
});
|
|
4876
|
-
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.
|
|
4876
|
+
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.36`), closeBtn);
|
|
4877
4877
|
const header = h("div", { className: "ait-panel-header" }, h("span", {}, t("panel.title")), headerRight);
|
|
4878
4878
|
tabsEl = h("div", { className: "ait-panel-tabs" });
|
|
4879
4879
|
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.
|
|
3
|
+
"version": "0.1.36",
|
|
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": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"peerDependenciesMeta": {
|
|
52
52
|
"@apps-in-toss/web-framework": {
|
|
53
|
-
"optional":
|
|
53
|
+
"optional": true
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|