@ait-co/devtools 0.1.79 → 0.1.80
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/devtools-opener-BbUXBzgA.js.map +1 -1
- package/dist/devtools-opener-Bp671YXu.cjs.map +1 -1
- package/dist/devtools-opener-D84kZFtR.js.map +1 -1
- package/dist/devtools-opener-h6A-UjzC.cjs.map +1 -1
- package/dist/mcp/cli.js +214 -55
- package/dist/mcp/cli.js.map +1 -1
- package/dist/mcp/server.js +1 -1
- package/dist/panel/index.js +6 -2
- package/dist/panel/index.js.map +1 -1
- package/dist/{qr-http-server-D2d44bv7.js → qr-http-server-DJ5K3Odk.js} +34 -1
- package/dist/qr-http-server-DJ5K3Odk.js.map +1 -0
- package/dist/{qr-http-server-Dx7KnQtg.js → qr-http-server-DkOFfZsR.js} +34 -1
- package/dist/qr-http-server-DkOFfZsR.js.map +1 -0
- package/dist/{qr-http-server-DOOLghY0.cjs → qr-http-server-Dkx2-pKF.cjs} +34 -1
- package/dist/qr-http-server-Dkx2-pKF.cjs.map +1 -0
- package/dist/{qr-http-server-oENyLvn9.cjs → qr-http-server-MIUHaiYw.cjs} +34 -1
- package/dist/qr-http-server-MIUHaiYw.cjs.map +1 -0
- package/dist/{relay-url-store-Cx_SqWtl.cjs → relay-url-store-BiEK9BN1.cjs} +3 -1
- package/dist/relay-url-store-BiEK9BN1.cjs.map +1 -0
- package/dist/{relay-url-store-CV8nScsn.js → relay-url-store-DH8-VUFc.js} +3 -1
- package/dist/relay-url-store-DH8-VUFc.js.map +1 -0
- package/dist/{relay-url-store-B_wrNe5A.js → relay-url-store-RKcao_yG.js} +6 -1
- package/dist/relay-url-store-RKcao_yG.js.map +1 -0
- package/dist/{tunnel-8h2r-ouK.js → tunnel-BTlq1mmH.js} +2 -2
- package/dist/{tunnel-8h2r-ouK.js.map → tunnel-BTlq1mmH.js.map} +1 -1
- package/dist/{tunnel-CInRDnKE.cjs → tunnel-C-AFdAVL.cjs} +2 -2
- package/dist/{tunnel-CInRDnKE.cjs.map → tunnel-C-AFdAVL.cjs.map} +1 -1
- package/dist/unplugin/index.cjs +6 -3
- package/dist/unplugin/index.cjs.map +1 -1
- package/dist/unplugin/index.d.cts.map +1 -1
- package/dist/unplugin/index.d.ts.map +1 -1
- package/dist/unplugin/index.js +6 -3
- package/dist/unplugin/index.js.map +1 -1
- package/dist/unplugin/tunnel.cjs +1 -1
- package/dist/unplugin/tunnel.js +1 -1
- package/package.json +1 -1
- package/dist/qr-http-server-D2d44bv7.js.map +0 -1
- package/dist/qr-http-server-DOOLghY0.cjs.map +0 -1
- package/dist/qr-http-server-Dx7KnQtg.js.map +0 -1
- package/dist/qr-http-server-oENyLvn9.cjs.map +0 -1
- package/dist/relay-url-store-B_wrNe5A.js.map +0 -1
- package/dist/relay-url-store-CV8nScsn.js.map +0 -1
- package/dist/relay-url-store-Cx_SqWtl.cjs.map +0 -1
package/dist/mcp/server.js
CHANGED
|
@@ -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.
|
|
967
|
+
version: "0.1.80"
|
|
968
968
|
}, { capabilities: { tools: {} } });
|
|
969
969
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
970
970
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
package/dist/panel/index.js
CHANGED
|
@@ -25381,6 +25381,8 @@ const en = {
|
|
|
25381
25381
|
"dashboard.inspector.section": "Inspector",
|
|
25382
25382
|
"dashboard.inspector.open": "Open inspector",
|
|
25383
25383
|
"dashboard.inspector.waiting": "Inspector URL pending — appears after a page attaches",
|
|
25384
|
+
"inspector.error.noTarget": "No page attached. Attach a device and try again.",
|
|
25385
|
+
"inspector.error.relayDown": "Relay is not active. Start a relay session first.",
|
|
25384
25386
|
"attach.title": "AIT Debug Session — QR Scan",
|
|
25385
25387
|
"attach.deployment": "deployment: {label}",
|
|
25386
25388
|
"attach.steps.section": "How to scan",
|
|
@@ -25617,6 +25619,8 @@ const ko = {
|
|
|
25617
25619
|
"dashboard.inspector.section": "인스펙터",
|
|
25618
25620
|
"dashboard.inspector.open": "인스펙터 열기",
|
|
25619
25621
|
"dashboard.inspector.waiting": "인스펙터 URL 대기 중 (페이지 attach 후 표시됩니다)",
|
|
25622
|
+
"inspector.error.noTarget": "연결된 페이지가 없습니다. 기기를 attach한 후 다시 시도하세요.",
|
|
25623
|
+
"inspector.error.relayDown": "relay가 활성화되지 않았습니다. start_debug로 relay를 기동하세요.",
|
|
25620
25624
|
"attach.title": "AIT 디버그 세션 — QR 스캔",
|
|
25621
25625
|
"attach.deployment": "deployment: {label}",
|
|
25622
25626
|
"attach.steps.section": "스캔 절차",
|
|
@@ -26490,7 +26494,7 @@ function readGlobalString(key) {
|
|
|
26490
26494
|
}
|
|
26491
26495
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
26492
26496
|
function getVersion() {
|
|
26493
|
-
return "0.1.
|
|
26497
|
+
return "0.1.80";
|
|
26494
26498
|
}
|
|
26495
26499
|
let panelVisibleSince = null;
|
|
26496
26500
|
let accumulatedMs = 0;
|
|
@@ -30741,7 +30745,7 @@ function Panel() {
|
|
|
30741
30745
|
color: "#666",
|
|
30742
30746
|
fontWeight: 400
|
|
30743
30747
|
},
|
|
30744
|
-
children: ["v", "0.1.
|
|
30748
|
+
children: ["v", "0.1.80"]
|
|
30745
30749
|
}),
|
|
30746
30750
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
|
|
30747
30751
|
type: "button",
|