@tonyclaw/llm-inspector 1.19.1 → 1.19.3
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/.output/cli.js +146 -37
- package/.output/nitro.json +1 -1
- package/.output/public/assets/{CompareDrawer-DtERUdIt.js → CompareDrawer-AMCFfwDw.js} +1 -1
- package/.output/public/assets/{ProxyViewerContainer-DfxRK7Nt.js → ProxyViewerContainer-Bi1QXDYo.js} +9 -9
- package/.output/public/assets/{ReplayDialog-VMsGnJSI.js → ReplayDialog-C1x2-73A.js} +1 -1
- package/.output/public/assets/{RequestAnatomy-Cx_vluvK.js → RequestAnatomy-CBNqMbxo.js} +1 -1
- package/.output/public/assets/{ResponseView-5F8Ms5z4.js → ResponseView-BsBxYW8b.js} +1 -1
- package/.output/public/assets/{StreamingChunkSequence-CKDCWfu9.js → StreamingChunkSequence-BjX20-9R.js} +1 -1
- package/.output/public/assets/_sessionId-DE0J5YHU.js +1 -0
- package/.output/public/assets/{index-DeJyypsp.css → index-Bqi9RAGS.css} +1 -1
- package/.output/public/assets/index-DqgTchf4.js +1 -0
- package/.output/public/assets/{json-viewer-CztuZ9cT.js → json-viewer-CyJ5nYhX.js} +1 -1
- package/.output/public/assets/{main-CR9IJlz1.js → main-DpODUL6C.js} +4 -4
- package/.output/server/{_sessionId-DvWQaDEm.mjs → _sessionId-DJ9Eab2q.mjs} +4 -3
- package/.output/server/_ssr/{CompareDrawer-C5FsxSDS.mjs → CompareDrawer-CZjtgISX.mjs} +4 -4
- package/.output/server/_ssr/{ProxyViewerContainer-v0cvR8f5.mjs → ProxyViewerContainer-PjfpTAwC.mjs} +57 -9
- package/.output/server/_ssr/{ReplayDialog-C3KOv9OW.mjs → ReplayDialog-OiEK8Sbt.mjs} +5 -5
- package/.output/server/_ssr/{RequestAnatomy-BYRe33eG.mjs → RequestAnatomy-DN7d-srT.mjs} +4 -3
- package/.output/server/_ssr/{ResponseView-va7yQDeL.mjs → ResponseView-7iJG8mU_.mjs} +5 -5
- package/.output/server/_ssr/{StreamingChunkSequence-BJlI-gWl.mjs → StreamingChunkSequence-DgtV9nLT.mjs} +4 -4
- package/.output/server/_ssr/{index-CS0fA2GT.mjs → index-YZwFhEEr.mjs} +4 -3
- package/.output/server/_ssr/index.mjs +2 -2
- package/.output/server/_ssr/{json-viewer-Dg8rqrxL.mjs → json-viewer-0GHTWO7g.mjs} +4 -4
- package/.output/server/_ssr/{router-D_Boe9Bu.mjs → router-DCW8d1sw.mjs} +131 -106
- package/.output/server/{_tanstack-start-manifest_v-KFXyNRGC.mjs → _tanstack-start-manifest_v-CxTbhyJ_.mjs} +1 -1
- package/.output/server/index.mjs +75 -75
- package/README.md +22 -0
- package/package.json +4 -2
- package/src/assets/favicon.svg +18 -0
- package/src/cli/detect-tools.ts +1 -0
- package/src/cli/templates/skill-onboard.ts +6 -6
- package/src/cli.ts +152 -35
- package/src/components/ProxyViewerContainer.tsx +52 -0
- package/src/components/proxy-viewer/LogEntryHeader.tsx +1 -0
- package/src/proxy/logFinalizer.ts +7 -3
- package/src/proxy/sessionProcess.ts +14 -7
- package/src/proxy/sessionSupervisor.ts +3 -2
- package/src/proxy/socketTracker.ts +19 -7
- package/src/routes/__root.tsx +5 -1
- package/styles/globals.css +14 -7
- package/.output/public/assets/_sessionId-C-aKd1Ky.js +0 -1
- package/.output/public/assets/index-B8ttyigz.js +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { j as jsxRuntimeExports } from "./_libs/react.mjs";
|
|
2
|
-
import { P as ProxyViewerContainer } from "./_ssr/ProxyViewerContainer-
|
|
3
|
-
import { R as Route$j } from "./_ssr/router-
|
|
2
|
+
import { P as ProxyViewerContainer } from "./_ssr/ProxyViewerContainer-PjfpTAwC.mjs";
|
|
3
|
+
import { R as Route$j } from "./_ssr/router-DCW8d1sw.mjs";
|
|
4
4
|
import "./_libs/jszip.mjs";
|
|
5
5
|
import "./_libs/modelcontextprotocol__server.mjs";
|
|
6
6
|
import "./_libs/swr.mjs";
|
|
@@ -74,6 +74,8 @@ import "node:fs";
|
|
|
74
74
|
import "node:fs/promises";
|
|
75
75
|
import "node:buffer";
|
|
76
76
|
import "node:path";
|
|
77
|
+
import "node:child_process";
|
|
78
|
+
import "node:url";
|
|
77
79
|
import "./_libs/conf.mjs";
|
|
78
80
|
import "node:util";
|
|
79
81
|
import "node:process";
|
|
@@ -95,7 +97,6 @@ import "./_libs/debounce-fn.mjs";
|
|
|
95
97
|
import "./_libs/mimic-function.mjs";
|
|
96
98
|
import "./_libs/semver.mjs";
|
|
97
99
|
import "./_libs/uint8array-extras.mjs";
|
|
98
|
-
import "node:child_process";
|
|
99
100
|
import "node:worker_threads";
|
|
100
101
|
import "./_libs/readable-stream.mjs";
|
|
101
102
|
import "events";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { r as reactExports, j as jsxRuntimeExports } from "../_libs/react.mjs";
|
|
2
|
-
import { g as getLogFormatAdapter, r as resolveLogFormat, a as getConversationId, c as cn, B as Badge, f as formatTokens } from "./ProxyViewerContainer-
|
|
3
|
-
import { JsonViewerFromString } from "./json-viewer-
|
|
4
|
-
import "./router-
|
|
2
|
+
import { g as getLogFormatAdapter, r as resolveLogFormat, a as getConversationId, c as cn, B as Badge, f as formatTokens } from "./ProxyViewerContainer-PjfpTAwC.mjs";
|
|
3
|
+
import { JsonViewerFromString } from "./json-viewer-0GHTWO7g.mjs";
|
|
4
|
+
import "./router-DCW8d1sw.mjs";
|
|
5
5
|
import "../_libs/modelcontextprotocol__server.mjs";
|
|
6
6
|
import "../_libs/jszip.mjs";
|
|
7
7
|
import { X, J as Rows3, K as Columns2, m as Minus, P as Plus, l as Pencil, f as ChevronRight, N as Equal, C as Check, a as Copy } from "../_libs/lucide-react.mjs";
|
|
@@ -128,6 +128,7 @@ import "../_libs/isbot.mjs";
|
|
|
128
128
|
import "node:fs";
|
|
129
129
|
import "node:fs/promises";
|
|
130
130
|
import "node:buffer";
|
|
131
|
+
import "node:child_process";
|
|
131
132
|
import "../_libs/conf.mjs";
|
|
132
133
|
import "node:util";
|
|
133
134
|
import "node:crypto";
|
|
@@ -148,7 +149,6 @@ import "../_libs/debounce-fn.mjs";
|
|
|
148
149
|
import "../_libs/mimic-function.mjs";
|
|
149
150
|
import "../_libs/semver.mjs";
|
|
150
151
|
import "../_libs/uint8array-extras.mjs";
|
|
151
|
-
import "node:child_process";
|
|
152
152
|
import "node:worker_threads";
|
|
153
153
|
import "../_libs/readable-stream.mjs";
|
|
154
154
|
import "events";
|
package/.output/server/_ssr/{ProxyViewerContainer-v0cvR8f5.mjs → ProxyViewerContainer-PjfpTAwC.mjs}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { r as reactExports, j as jsxRuntimeExports, a as React } from "../_libs/react.mjs";
|
|
2
|
-
import { C as CapturedLogSchema, D as DEFAULT_SLOW_RESPONSE_THRESHOLD_SECONDS, a as RuntimeConfigSchema, r as requestFormatForPath, c as createPendingProviderTestResults, P as ProviderTestResultsSchema, d as createFailedProviderTestResults, M as MAX_SLOW_RESPONSE_THRESHOLD_SECONDS, g as getSessionPath, e as ProviderConfigSchema, s as stripClaudeCodeBillingHeader, p as parseOpenAIResponse, O as OpenAIRequestSchema, A as AnthropicResponseSchema$1, b as AnthropicRequestSchema } from "./router-
|
|
2
|
+
import { C as CapturedLogSchema, D as DEFAULT_SLOW_RESPONSE_THRESHOLD_SECONDS, a as RuntimeConfigSchema, r as requestFormatForPath, c as createPendingProviderTestResults, P as ProviderTestResultsSchema, d as createFailedProviderTestResults, M as MAX_SLOW_RESPONSE_THRESHOLD_SECONDS, g as getSessionPath, e as ProviderConfigSchema, s as stripClaudeCodeBillingHeader, p as parseOpenAIResponse, O as OpenAIRequestSchema, A as AnthropicResponseSchema$1, b as AnthropicRequestSchema } from "./router-DCW8d1sw.mjs";
|
|
3
3
|
import { u as useSWR, a as useSWRConfig } from "../_libs/swr.mjs";
|
|
4
4
|
import { J as JSZip } from "../_libs/jszip.mjs";
|
|
5
5
|
import { c as clsx } from "../_libs/clsx.mjs";
|
|
@@ -275,7 +275,7 @@ function getStatusCategory(status) {
|
|
|
275
275
|
if (status >= 500) return "server_error";
|
|
276
276
|
return "pending";
|
|
277
277
|
}
|
|
278
|
-
const version = "1.19.
|
|
278
|
+
const version = "1.19.3";
|
|
279
279
|
const packageJson = {
|
|
280
280
|
version
|
|
281
281
|
};
|
|
@@ -1343,27 +1343,27 @@ function useCopyFeedback(text) {
|
|
|
1343
1343
|
return { copied, copy };
|
|
1344
1344
|
}
|
|
1345
1345
|
const LazyCompareDrawer = reactExports.lazy(
|
|
1346
|
-
() => import("./CompareDrawer-
|
|
1346
|
+
() => import("./CompareDrawer-CZjtgISX.mjs").then((m) => ({ default: m.CompareDrawer }))
|
|
1347
1347
|
);
|
|
1348
1348
|
const LazyReplayDialog = reactExports.lazy(
|
|
1349
|
-
() => import("./ReplayDialog-
|
|
1349
|
+
() => import("./ReplayDialog-OiEK8Sbt.mjs").then((m) => ({ default: m.ReplayDialog }))
|
|
1350
1350
|
);
|
|
1351
1351
|
const LazyRequestAnatomy = reactExports.lazy(
|
|
1352
|
-
() => import("./RequestAnatomy-
|
|
1352
|
+
() => import("./RequestAnatomy-DN7d-srT.mjs").then((m) => ({ default: m.RequestAnatomy }))
|
|
1353
1353
|
);
|
|
1354
1354
|
const LazyResponseView = reactExports.lazy(
|
|
1355
|
-
() => import("./ResponseView-
|
|
1355
|
+
() => import("./ResponseView-7iJG8mU_.mjs").then((m) => ({ default: m.ResponseView }))
|
|
1356
1356
|
);
|
|
1357
1357
|
const LazyStreamingChunkSequence = reactExports.lazy(
|
|
1358
|
-
() => import("./StreamingChunkSequence-
|
|
1358
|
+
() => import("./StreamingChunkSequence-DgtV9nLT.mjs").then((m) => ({
|
|
1359
1359
|
default: m.StreamingChunkSequence
|
|
1360
1360
|
}))
|
|
1361
1361
|
);
|
|
1362
1362
|
const LazyJsonViewer = reactExports.lazy(
|
|
1363
|
-
() => import("./json-viewer-
|
|
1363
|
+
() => import("./json-viewer-0GHTWO7g.mjs").then((m) => ({ default: m.JsonViewer }))
|
|
1364
1364
|
);
|
|
1365
1365
|
const LazyJsonViewerFromString = reactExports.lazy(
|
|
1366
|
-
() => import("./json-viewer-
|
|
1366
|
+
() => import("./json-viewer-0GHTWO7g.mjs").then((m) => ({ default: m.JsonViewerFromString }))
|
|
1367
1367
|
);
|
|
1368
1368
|
const HIGHLIGHT_DURATION_MS = 1200;
|
|
1369
1369
|
const MAX_HIGHLIGHT_ATTEMPTS = 12;
|
|
@@ -1794,6 +1794,7 @@ const LogEntryHeader = reactExports.memo(function({
|
|
|
1794
1794
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(TooltipProvider, { children: /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
1795
1795
|
"div",
|
|
1796
1796
|
{
|
|
1797
|
+
id: `log-${log.id}`,
|
|
1797
1798
|
role: "button",
|
|
1798
1799
|
tabIndex: 0,
|
|
1799
1800
|
"data-nav-id": `log-${log.id}`,
|
|
@@ -5634,6 +5635,8 @@ function filterLogs(logs, selectedSession, selectedModel) {
|
|
|
5634
5635
|
});
|
|
5635
5636
|
}
|
|
5636
5637
|
const DEBOUNCE_MS = 50;
|
|
5638
|
+
const HASH_SCROLL_ATTEMPTS = 12;
|
|
5639
|
+
const HASH_HIGHLIGHT_MS = 1800;
|
|
5637
5640
|
function buildLogsStreamUrl(sessionId) {
|
|
5638
5641
|
if (sessionId === void 0) return "/api/logs/stream";
|
|
5639
5642
|
const params = new URLSearchParams({ sessionId });
|
|
@@ -5649,6 +5652,7 @@ function ProxyViewerContainer({
|
|
|
5649
5652
|
const [error, setError] = reactExports.useState(null);
|
|
5650
5653
|
const eventSourceRef = reactExports.useRef(null);
|
|
5651
5654
|
const reconnectTimeoutRef = reactExports.useRef(null);
|
|
5655
|
+
const handledHashRef = reactExports.useRef(null);
|
|
5652
5656
|
const logIndexRef = reactExports.useRef(/* @__PURE__ */ new Map());
|
|
5653
5657
|
const pendingUpdatesRef = reactExports.useRef([]);
|
|
5654
5658
|
const flushTimerRef = reactExports.useRef(null);
|
|
@@ -5749,6 +5753,50 @@ function ProxyViewerContainer({
|
|
|
5749
5753
|
}
|
|
5750
5754
|
};
|
|
5751
5755
|
}, [connectSSE]);
|
|
5756
|
+
reactExports.useEffect(() => {
|
|
5757
|
+
const hash = window.location.hash;
|
|
5758
|
+
if (!hash.startsWith("#log-")) return;
|
|
5759
|
+
if (handledHashRef.current === hash) return;
|
|
5760
|
+
const targetId = hash.slice(1);
|
|
5761
|
+
let cancelled = false;
|
|
5762
|
+
let attempts = 0;
|
|
5763
|
+
let highlightedTarget = null;
|
|
5764
|
+
let highlightTimer = null;
|
|
5765
|
+
const tryScrollToLog = () => {
|
|
5766
|
+
if (cancelled) return;
|
|
5767
|
+
const target = document.getElementById(targetId);
|
|
5768
|
+
if (target !== null) {
|
|
5769
|
+
handledHashRef.current = hash;
|
|
5770
|
+
target.scrollIntoView({ block: "center", behavior: "smooth" });
|
|
5771
|
+
if (target instanceof HTMLElement) {
|
|
5772
|
+
highlightedTarget = target;
|
|
5773
|
+
target.setAttribute("data-deep-link-highlight", "true");
|
|
5774
|
+
highlightTimer = window.setTimeout(() => {
|
|
5775
|
+
target.removeAttribute("data-deep-link-highlight");
|
|
5776
|
+
}, HASH_HIGHLIGHT_MS);
|
|
5777
|
+
target.focus({ preventScroll: true });
|
|
5778
|
+
if (target.getAttribute("data-nav-action") === "expand") {
|
|
5779
|
+
target.click();
|
|
5780
|
+
}
|
|
5781
|
+
}
|
|
5782
|
+
return;
|
|
5783
|
+
}
|
|
5784
|
+
attempts += 1;
|
|
5785
|
+
if (attempts < HASH_SCROLL_ATTEMPTS) {
|
|
5786
|
+
window.setTimeout(tryScrollToLog, 100);
|
|
5787
|
+
}
|
|
5788
|
+
};
|
|
5789
|
+
tryScrollToLog();
|
|
5790
|
+
return () => {
|
|
5791
|
+
cancelled = true;
|
|
5792
|
+
if (highlightTimer !== null) {
|
|
5793
|
+
window.clearTimeout(highlightTimer);
|
|
5794
|
+
}
|
|
5795
|
+
if (highlightedTarget !== null) {
|
|
5796
|
+
highlightedTarget.removeAttribute("data-deep-link-highlight");
|
|
5797
|
+
}
|
|
5798
|
+
};
|
|
5799
|
+
}, [logs.length]);
|
|
5752
5800
|
const handleClearAll = reactExports.useCallback(() => {
|
|
5753
5801
|
if (initialSessionId !== void 0 && allLogs.length === 0) return;
|
|
5754
5802
|
void (async () => {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { r as reactExports, j as jsxRuntimeExports } from "../_libs/react.mjs";
|
|
2
|
-
import { D as Dialog, b as DialogContent, d as DialogHeader, e as DialogTitle, T as Tabs, h as TabsList, i as TabsTrigger, j as TabsContent, k as TooltipProvider, l as Tooltip, m as TooltipTrigger, n as TooltipContent, o as Button } from "./ProxyViewerContainer-
|
|
3
|
-
import { ResponseView } from "./ResponseView-
|
|
4
|
-
import "./router-
|
|
2
|
+
import { D as Dialog, b as DialogContent, d as DialogHeader, e as DialogTitle, T as Tabs, h as TabsList, i as TabsTrigger, j as TabsContent, k as TooltipProvider, l as Tooltip, m as TooltipTrigger, n as TooltipContent, o as Button } from "./ProxyViewerContainer-PjfpTAwC.mjs";
|
|
3
|
+
import { ResponseView } from "./ResponseView-7iJG8mU_.mjs";
|
|
4
|
+
import "./router-DCW8d1sw.mjs";
|
|
5
5
|
import "../_libs/modelcontextprotocol__server.mjs";
|
|
6
6
|
import "../_libs/jszip.mjs";
|
|
7
|
-
import "./json-viewer-
|
|
7
|
+
import "./json-viewer-0GHTWO7g.mjs";
|
|
8
8
|
import { s as RotateCcw } from "../_libs/lucide-react.mjs";
|
|
9
9
|
import { d as object, c as boolean, n as number, b as string } from "../_libs/zod.mjs";
|
|
10
10
|
import "../_libs/swr.mjs";
|
|
@@ -132,6 +132,7 @@ import "../_libs/isbot.mjs";
|
|
|
132
132
|
import "node:fs";
|
|
133
133
|
import "node:fs/promises";
|
|
134
134
|
import "node:buffer";
|
|
135
|
+
import "node:child_process";
|
|
135
136
|
import "../_libs/conf.mjs";
|
|
136
137
|
import "node:util";
|
|
137
138
|
import "node:crypto";
|
|
@@ -152,7 +153,6 @@ import "../_libs/debounce-fn.mjs";
|
|
|
152
153
|
import "../_libs/mimic-function.mjs";
|
|
153
154
|
import "../_libs/semver.mjs";
|
|
154
155
|
import "../_libs/uint8array-extras.mjs";
|
|
155
|
-
import "node:child_process";
|
|
156
156
|
import "node:worker_threads";
|
|
157
157
|
import "../_libs/readable-stream.mjs";
|
|
158
158
|
import "events";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { r as reactExports, j as jsxRuntimeExports } from "../_libs/react.mjs";
|
|
2
|
-
import { k as TooltipProvider, f as formatTokens, c as cn, l as Tooltip, m as TooltipTrigger, n as TooltipContent } from "./ProxyViewerContainer-
|
|
3
|
-
import "./router-
|
|
2
|
+
import { k as TooltipProvider, f as formatTokens, c as cn, l as Tooltip, m as TooltipTrigger, n as TooltipContent } from "./ProxyViewerContainer-PjfpTAwC.mjs";
|
|
3
|
+
import "./router-DCW8d1sw.mjs";
|
|
4
4
|
import "../_libs/modelcontextprotocol__server.mjs";
|
|
5
5
|
import "../_libs/jszip.mjs";
|
|
6
6
|
import { Q as Info } from "../_libs/lucide-react.mjs";
|
|
@@ -74,6 +74,8 @@ import "node:fs";
|
|
|
74
74
|
import "node:fs/promises";
|
|
75
75
|
import "node:buffer";
|
|
76
76
|
import "node:path";
|
|
77
|
+
import "node:child_process";
|
|
78
|
+
import "node:url";
|
|
77
79
|
import "../_libs/conf.mjs";
|
|
78
80
|
import "node:util";
|
|
79
81
|
import "node:process";
|
|
@@ -95,7 +97,6 @@ import "../_libs/debounce-fn.mjs";
|
|
|
95
97
|
import "../_libs/mimic-function.mjs";
|
|
96
98
|
import "../_libs/semver.mjs";
|
|
97
99
|
import "../_libs/uint8array-extras.mjs";
|
|
98
|
-
import "node:child_process";
|
|
99
100
|
import "node:worker_threads";
|
|
100
101
|
import "../_libs/readable-stream.mjs";
|
|
101
102
|
import "events";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { r as reactExports, j as jsxRuntimeExports } from "../_libs/react.mjs";
|
|
2
|
-
import { g as getLogFormatAdapter, f as formatTokens, c as cn, p as getStatusCategory, B as Badge, s as safeJsonValue } from "./ProxyViewerContainer-
|
|
3
|
-
import { JsonViewer } from "./json-viewer-
|
|
4
|
-
import "./router-
|
|
2
|
+
import { g as getLogFormatAdapter, f as formatTokens, c as cn, p as getStatusCategory, B as Badge, s as safeJsonValue } from "./ProxyViewerContainer-PjfpTAwC.mjs";
|
|
3
|
+
import { JsonViewer } from "./json-viewer-0GHTWO7g.mjs";
|
|
4
|
+
import "./router-DCW8d1sw.mjs";
|
|
5
5
|
import "../_libs/modelcontextprotocol__server.mjs";
|
|
6
6
|
import "../_libs/jszip.mjs";
|
|
7
7
|
import { Z as Zap, i as TriangleAlert, V as CircleStop, Y as Brain, b as ChevronDown, f as ChevronRight, _ as Terminal } from "../_libs/lucide-react.mjs";
|
|
@@ -79,6 +79,8 @@ import "node:fs";
|
|
|
79
79
|
import "node:fs/promises";
|
|
80
80
|
import "node:buffer";
|
|
81
81
|
import "node:path";
|
|
82
|
+
import "node:child_process";
|
|
83
|
+
import "node:url";
|
|
82
84
|
import "../_libs/conf.mjs";
|
|
83
85
|
import "node:util";
|
|
84
86
|
import "node:process";
|
|
@@ -100,7 +102,6 @@ import "../_libs/debounce-fn.mjs";
|
|
|
100
102
|
import "../_libs/mimic-function.mjs";
|
|
101
103
|
import "../_libs/semver.mjs";
|
|
102
104
|
import "../_libs/uint8array-extras.mjs";
|
|
103
|
-
import "node:child_process";
|
|
104
105
|
import "node:worker_threads";
|
|
105
106
|
import "../_libs/readable-stream.mjs";
|
|
106
107
|
import "events";
|
|
@@ -125,7 +126,6 @@ import "../_libs/trough.mjs";
|
|
|
125
126
|
import "../_libs/vfile.mjs";
|
|
126
127
|
import "../_libs/vfile-message.mjs";
|
|
127
128
|
import "../_libs/unist-util-stringify-position.mjs";
|
|
128
|
-
import "node:url";
|
|
129
129
|
import "../_libs/remark-parse.mjs";
|
|
130
130
|
import "../_libs/mdast-util-from-markdown.mjs";
|
|
131
131
|
import "../_libs/micromark-util-decode-numeric-character-reference+[...].mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { r as reactExports, j as jsxRuntimeExports } from "../_libs/react.mjs";
|
|
2
|
-
import { k as TooltipProvider, l as Tooltip, m as TooltipTrigger, B as Badge, n as TooltipContent } from "./ProxyViewerContainer-
|
|
3
|
-
import { JsonViewer } from "./json-viewer-
|
|
4
|
-
import "./router-
|
|
2
|
+
import { k as TooltipProvider, l as Tooltip, m as TooltipTrigger, B as Badge, n as TooltipContent } from "./ProxyViewerContainer-PjfpTAwC.mjs";
|
|
3
|
+
import { JsonViewer } from "./json-viewer-0GHTWO7g.mjs";
|
|
4
|
+
import "./router-DCW8d1sw.mjs";
|
|
5
5
|
import "../_libs/modelcontextprotocol__server.mjs";
|
|
6
6
|
import "../_libs/jszip.mjs";
|
|
7
7
|
import { b as ChevronDown, f as ChevronRight, L as LoaderCircle } from "../_libs/lucide-react.mjs";
|
|
@@ -128,6 +128,7 @@ import "../_libs/isbot.mjs";
|
|
|
128
128
|
import "node:fs";
|
|
129
129
|
import "node:fs/promises";
|
|
130
130
|
import "node:buffer";
|
|
131
|
+
import "node:child_process";
|
|
131
132
|
import "../_libs/conf.mjs";
|
|
132
133
|
import "node:util";
|
|
133
134
|
import "node:crypto";
|
|
@@ -148,7 +149,6 @@ import "../_libs/debounce-fn.mjs";
|
|
|
148
149
|
import "../_libs/mimic-function.mjs";
|
|
149
150
|
import "../_libs/semver.mjs";
|
|
150
151
|
import "../_libs/uint8array-extras.mjs";
|
|
151
|
-
import "node:child_process";
|
|
152
152
|
import "node:worker_threads";
|
|
153
153
|
import "../_libs/readable-stream.mjs";
|
|
154
154
|
import "events";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProxyViewerContainer } from "./ProxyViewerContainer-
|
|
1
|
+
import { P as ProxyViewerContainer } from "./ProxyViewerContainer-PjfpTAwC.mjs";
|
|
2
2
|
import "../_libs/react.mjs";
|
|
3
|
-
import "./router-
|
|
3
|
+
import "./router-DCW8d1sw.mjs";
|
|
4
4
|
import "../_libs/modelcontextprotocol__server.mjs";
|
|
5
5
|
import "../_libs/jszip.mjs";
|
|
6
6
|
import "../_libs/swr.mjs";
|
|
@@ -74,6 +74,8 @@ import "node:fs";
|
|
|
74
74
|
import "node:fs/promises";
|
|
75
75
|
import "node:buffer";
|
|
76
76
|
import "node:path";
|
|
77
|
+
import "node:child_process";
|
|
78
|
+
import "node:url";
|
|
77
79
|
import "../_libs/conf.mjs";
|
|
78
80
|
import "node:util";
|
|
79
81
|
import "node:process";
|
|
@@ -95,7 +97,6 @@ import "../_libs/debounce-fn.mjs";
|
|
|
95
97
|
import "../_libs/mimic-function.mjs";
|
|
96
98
|
import "../_libs/semver.mjs";
|
|
97
99
|
import "../_libs/uint8array-extras.mjs";
|
|
98
|
-
import "node:child_process";
|
|
99
100
|
import "node:worker_threads";
|
|
100
101
|
import "../_libs/readable-stream.mjs";
|
|
101
102
|
import "events";
|
|
@@ -198,7 +198,7 @@ function getResponse() {
|
|
|
198
198
|
return event.res;
|
|
199
199
|
}
|
|
200
200
|
async function getStartManifest(matchedRoutes) {
|
|
201
|
-
const { tsrStartManifest } = await import("../_tanstack-start-manifest_v-
|
|
201
|
+
const { tsrStartManifest } = await import("../_tanstack-start-manifest_v-CxTbhyJ_.mjs");
|
|
202
202
|
const startManifest = tsrStartManifest();
|
|
203
203
|
const rootRoute = startManifest.routes[rootRouteId] = startManifest.routes[rootRouteId] || {};
|
|
204
204
|
rootRoute.assets = rootRoute.assets || [];
|
|
@@ -767,7 +767,7 @@ let entriesPromise;
|
|
|
767
767
|
let baseManifestPromise;
|
|
768
768
|
let cachedFinalManifestPromise;
|
|
769
769
|
async function loadEntries() {
|
|
770
|
-
const routerEntry = await import("./router-
|
|
770
|
+
const routerEntry = await import("./router-DCW8d1sw.mjs").then((n) => n.f);
|
|
771
771
|
const startEntry = await import("./start-HYkvq4Ni.mjs");
|
|
772
772
|
return { startEntry, routerEntry };
|
|
773
773
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { r as reactExports, j as jsxRuntimeExports } from "../_libs/react.mjs";
|
|
2
|
-
import { q as parseJsonText, c as cn, k as TooltipProvider, l as Tooltip, m as TooltipTrigger, n as TooltipContent } from "./ProxyViewerContainer-
|
|
3
|
-
import "./router-
|
|
2
|
+
import { q as parseJsonText, c as cn, k as TooltipProvider, l as Tooltip, m as TooltipTrigger, n as TooltipContent } from "./ProxyViewerContainer-PjfpTAwC.mjs";
|
|
3
|
+
import "./router-DCW8d1sw.mjs";
|
|
4
4
|
import "../_libs/modelcontextprotocol__server.mjs";
|
|
5
5
|
import "../_libs/jszip.mjs";
|
|
6
6
|
import { C as Check, a as Copy, b as ChevronDown, f as ChevronRight, q as ChevronsDown } from "../_libs/lucide-react.mjs";
|
|
@@ -75,6 +75,8 @@ import "node:fs";
|
|
|
75
75
|
import "node:fs/promises";
|
|
76
76
|
import "node:buffer";
|
|
77
77
|
import "node:path";
|
|
78
|
+
import "node:child_process";
|
|
79
|
+
import "node:url";
|
|
78
80
|
import "../_libs/conf.mjs";
|
|
79
81
|
import "node:util";
|
|
80
82
|
import "node:process";
|
|
@@ -96,7 +98,6 @@ import "../_libs/debounce-fn.mjs";
|
|
|
96
98
|
import "../_libs/mimic-function.mjs";
|
|
97
99
|
import "../_libs/semver.mjs";
|
|
98
100
|
import "../_libs/uint8array-extras.mjs";
|
|
99
|
-
import "node:child_process";
|
|
100
101
|
import "node:worker_threads";
|
|
101
102
|
import "../_libs/readable-stream.mjs";
|
|
102
103
|
import "events";
|
|
@@ -121,7 +122,6 @@ import "../_libs/trough.mjs";
|
|
|
121
122
|
import "../_libs/vfile.mjs";
|
|
122
123
|
import "../_libs/vfile-message.mjs";
|
|
123
124
|
import "../_libs/unist-util-stringify-position.mjs";
|
|
124
|
-
import "node:url";
|
|
125
125
|
import "../_libs/remark-parse.mjs";
|
|
126
126
|
import "../_libs/mdast-util-from-markdown.mjs";
|
|
127
127
|
import "../_libs/micromark-util-decode-numeric-character-reference+[...].mjs";
|