@rubytech/create-realagent 1.0.845 → 1.0.846
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/__tests__/port-canonicalisation.test.js +1 -0
- package/dist/index.js +45 -2
- package/dist/port-resolution.js +2 -1
- package/package.json +1 -1
- package/payload/platform/config/brand.json +1 -0
- package/payload/platform/lib/oauth-llm/dist/index.d.ts.map +1 -1
- package/payload/platform/lib/oauth-llm/dist/index.js +11 -1
- package/payload/platform/lib/oauth-llm/dist/index.js.map +1 -1
- package/payload/platform/lib/oauth-llm/src/index.ts +11 -1
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.d.ts +1 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.d.ts.map +1 -1
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.js +14 -17
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.js.map +1 -1
- package/payload/platform/plugins/cloudflare/references/manual-setup.md +5 -2
- package/payload/platform/plugins/cloudflare/scripts/setup-tunnel.sh +32 -13
- package/payload/platform/plugins/docs/references/troubleshooting.md +5 -0
- package/payload/platform/scripts/check-sdk-oauth.mjs +13 -6
- package/payload/platform/scripts/vnc.sh +95 -36
- package/payload/platform/templates/systemd/edge.service.template +1 -1
- package/payload/server/chunk-6NZQKUSW.js +1577 -0
- package/payload/server/chunk-HPQ67IIU.js +10412 -0
- package/payload/server/client-pool-2H6JWYC3.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-6NZQKUSW.js";
|
|
17
|
+
import "./chunk-CJWFM3WX.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
|
+
};
|
|
@@ -15,10 +15,10 @@ import {
|
|
|
15
15
|
sanitizeClientCorrId,
|
|
16
16
|
streamActionEvents,
|
|
17
17
|
vncLog
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-HPQ67IIU.js";
|
|
19
19
|
import {
|
|
20
20
|
LOG_DIR
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-6NZQKUSW.js";
|
|
22
22
|
import "./chunk-CJWFM3WX.js";
|
|
23
23
|
import "./chunk-JSBRDJBE.js";
|
|
24
24
|
|
package/payload/server/server.js
CHANGED
|
@@ -45,7 +45,7 @@ import {
|
|
|
45
45
|
vncLog,
|
|
46
46
|
waitForExit,
|
|
47
47
|
writeChromiumWrapper
|
|
48
|
-
} from "./chunk-
|
|
48
|
+
} from "./chunk-HPQ67IIU.js";
|
|
49
49
|
import {
|
|
50
50
|
ACCOUNTS_DIR,
|
|
51
51
|
COMMERCIAL_MODE,
|
|
@@ -88,7 +88,7 @@ import {
|
|
|
88
88
|
unregisterSession,
|
|
89
89
|
validateAgentSlug,
|
|
90
90
|
validateSession
|
|
91
|
-
} from "./chunk-
|
|
91
|
+
} from "./chunk-6NZQKUSW.js";
|
|
92
92
|
import {
|
|
93
93
|
CLOUDFLARE_TASK_DIAGNOSTICS,
|
|
94
94
|
appendCloudflareSteps,
|
|
@@ -7511,7 +7511,7 @@ var app11 = new Hono();
|
|
|
7511
7511
|
app11.post("/cancel", requireAdminSession, async (c) => {
|
|
7512
7512
|
const session_key = c.var.sessionKey;
|
|
7513
7513
|
try {
|
|
7514
|
-
const { interruptClient: interruptClient2 } = await import("./client-pool-
|
|
7514
|
+
const { interruptClient: interruptClient2 } = await import("./client-pool-2H6JWYC3.js");
|
|
7515
7515
|
await interruptClient2(session_key);
|
|
7516
7516
|
return c.json({ ok: true });
|
|
7517
7517
|
} catch (err) {
|