@rubytech/create-maxy 1.0.891 → 1.0.892
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/package.json +1 -1
- package/payload/platform/plugins/admin/mcp/dist/skill-resolution.d.ts.map +1 -1
- package/payload/platform/plugins/admin/mcp/dist/skill-resolution.js.map +1 -1
- package/payload/server/chunk-73V6BIF6.js +9865 -0
- package/payload/server/chunk-XTNLCFCG.js +3572 -0
- package/payload/server/client-pool-MZQ7CDG3.js +34 -0
- package/payload/server/maxy-edge.js +2 -2
- package/payload/server/server.js +3 -3
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
_evictAllForTest,
|
|
3
|
+
_poolSnapshotForTest,
|
|
4
|
+
acquireClient,
|
|
5
|
+
acquireOneShotClient,
|
|
6
|
+
evictClient,
|
|
7
|
+
getActiveClient,
|
|
8
|
+
interruptClient,
|
|
9
|
+
pushUserMessage,
|
|
10
|
+
pushUserToolResult,
|
|
11
|
+
recordCachedTokens,
|
|
12
|
+
recordCrash,
|
|
13
|
+
setInflight,
|
|
14
|
+
startIdleEvictTick,
|
|
15
|
+
stopIdleEvictTick
|
|
16
|
+
} from "./chunk-XTNLCFCG.js";
|
|
17
|
+
import "./chunk-FBTNBSB4.js";
|
|
18
|
+
import "./chunk-JSBRDJBE.js";
|
|
19
|
+
export {
|
|
20
|
+
_evictAllForTest,
|
|
21
|
+
_poolSnapshotForTest,
|
|
22
|
+
acquireClient,
|
|
23
|
+
acquireOneShotClient,
|
|
24
|
+
evictClient,
|
|
25
|
+
getActiveClient,
|
|
26
|
+
interruptClient,
|
|
27
|
+
pushUserMessage,
|
|
28
|
+
pushUserToolResult,
|
|
29
|
+
recordCachedTokens,
|
|
30
|
+
recordCrash,
|
|
31
|
+
setInflight,
|
|
32
|
+
startIdleEvictTick,
|
|
33
|
+
stopIdleEvictTick
|
|
34
|
+
};
|
|
@@ -16,11 +16,11 @@ import {
|
|
|
16
16
|
streamActionEvents,
|
|
17
17
|
vncLog,
|
|
18
18
|
websockifyLog
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-73V6BIF6.js";
|
|
20
20
|
import {
|
|
21
21
|
LOG_DIR,
|
|
22
22
|
WEBSOCKIFY_PORT
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-XTNLCFCG.js";
|
|
24
24
|
import "./chunk-O7DTMDJM.js";
|
|
25
25
|
import "./chunk-FBTNBSB4.js";
|
|
26
26
|
import "./chunk-JSBRDJBE.js";
|
package/payload/server/server.js
CHANGED
|
@@ -60,7 +60,7 @@ import {
|
|
|
60
60
|
vncLog,
|
|
61
61
|
waitForExit,
|
|
62
62
|
writeChromiumWrapper
|
|
63
|
-
} from "./chunk-
|
|
63
|
+
} from "./chunk-73V6BIF6.js";
|
|
64
64
|
import {
|
|
65
65
|
ACCOUNTS_DIR,
|
|
66
66
|
CDP_PORT,
|
|
@@ -118,7 +118,7 @@ import {
|
|
|
118
118
|
validateAgentSlug,
|
|
119
119
|
validateSession,
|
|
120
120
|
walkPremiumBundles
|
|
121
|
-
} from "./chunk-
|
|
121
|
+
} from "./chunk-XTNLCFCG.js";
|
|
122
122
|
import {
|
|
123
123
|
CLOUDFLARE_TASK_DIAGNOSTICS,
|
|
124
124
|
appendCloudflareSteps,
|
|
@@ -7480,7 +7480,7 @@ var app11 = new Hono();
|
|
|
7480
7480
|
app11.post("/cancel", requireAdminSession, async (c) => {
|
|
7481
7481
|
const session_key = c.var.cacheKey;
|
|
7482
7482
|
try {
|
|
7483
|
-
const { interruptClient: interruptClient2 } = await import("./client-pool-
|
|
7483
|
+
const { interruptClient: interruptClient2 } = await import("./client-pool-MZQ7CDG3.js");
|
|
7484
7484
|
await interruptClient2(session_key);
|
|
7485
7485
|
return c.json({ ok: true });
|
|
7486
7486
|
} catch (err) {
|