skydive-cli 0.5.0-beta.21 → 0.5.0-beta.22
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/js/bin.mjs +7 -7
- package/dist/js/{boot-DcQhJadu.mjs → boot-DdYXpKMY.mjs} +3 -3
- package/dist/js/{daemon-C6tZH1dO.mjs → daemon-CzhmKp_H.mjs} +1 -1
- package/dist/js/{daemon-Dj9tGT12.mjs → daemon-Dnv9p14X.mjs} +1 -1
- package/dist/js/{daemon-client-BNK77jX_.mjs → daemon-client-Bb-6i20B.mjs} +1 -1
- package/dist/js/daemon-client-JDBIWms7.mjs +7 -0
- package/dist/js/{profiler-Bl25cyUp.mjs → profiler-zp3MKUcM.mjs} +1 -1
- package/package.json +1 -1
- package/dist/js/daemon-client-CgpMgM8Q.mjs +0 -7
package/dist/js/bin.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { A as setActiveWorkspace, D as getActiveWorkspaceId, E as ensureActiveOrganization, M as version, O as getSessionIdentity, S as themes, T as machineOsFromPlatform, a as installCrashHandler, j as name, k as listWorkspaces, t as maybeStartProfiling, u as brandHelpArt, w as buildImportSeedPrompt } from "./profiler-
|
|
2
|
+
import { A as setActiveWorkspace, D as getActiveWorkspaceId, E as ensureActiveOrganization, M as version, O as getSessionIdentity, S as themes, T as machineOsFromPlatform, a as installCrashHandler, j as name, k as listWorkspaces, t as maybeStartProfiling, u as brandHelpArt, w as buildImportSeedPrompt } from "./profiler-zp3MKUcM.mjs";
|
|
3
3
|
import { A as getStoredApiKeyId, B as saveConfig, C as getDefaultAgent, E as getPromptHistoryPath, F as resolveChatAuth, I as resolveConfig, L as resolveManagementAuth, M as getUpdateCheckDisabled, P as resolveAppUrl, R as resolveSession, S as getConfigPath, T as getPreference, U as setLastSeenVersion, V as saveSession, _ as API_KEY_PREFIX, b as PREFERENCES, g as API_KEY_FAMILY_PREFIX, h as API_KEYS_URL, i as resolveAgent, j as getStoredApiKeyWorkspaceName, k as getShareMachineDefault, v as DEFAULT_API_URL, w as getLastSeenVersion, x as deleteConfig } from "./print-OvYyj6Uk.mjs";
|
|
4
4
|
import { n as printError, r as printTable, t as output } from "./output-DYzzdXYV.mjs";
|
|
5
5
|
import { t as HttpError } from "./http-error-DzyrsLAZ.mjs";
|
|
6
6
|
import { t as createRestClient } from "./rest-Dx6b-Nq_.mjs";
|
|
7
7
|
import "./billing-blocked-2wju4gC_.mjs";
|
|
8
8
|
import { r as resolveMachineIdentity } from "./client-DbqRBquD.mjs";
|
|
9
|
-
import { i as queryDaemonStatus, l as PORTAL_DAEMON_FLAG, n as ensureDaemonRunning, s as stopDaemon, u as daemonPaths } from "./daemon-
|
|
9
|
+
import { i as queryDaemonStatus, l as PORTAL_DAEMON_FLAG, n as ensureDaemonRunning, s as stopDaemon, u as daemonPaths } from "./daemon-Dnv9p14X.mjs";
|
|
10
10
|
import { i as grantPortalAccess, n as fetchPortalDevices, o as registerPortalDevice, r as findThisDevice, s as revokePortalAccess } from "./api-DG5W6iwx.mjs";
|
|
11
11
|
import { t as SandboxStream } from "./client-c4c5MmgN.mjs";
|
|
12
12
|
import { hideBin } from "yargs/helpers";
|
|
@@ -1504,7 +1504,7 @@ const importCommand = {
|
|
|
1504
1504
|
process.exit(1);
|
|
1505
1505
|
}
|
|
1506
1506
|
}
|
|
1507
|
-
const { runChat } = await import("./boot-
|
|
1507
|
+
const { runChat } = await import("./boot-DdYXpKMY.mjs");
|
|
1508
1508
|
await runChat({
|
|
1509
1509
|
appUrl,
|
|
1510
1510
|
sessionToken: session.value.sessionToken,
|
|
@@ -1922,7 +1922,7 @@ const chatCommand = {
|
|
|
1922
1922
|
sessionToken: auth.value.token,
|
|
1923
1923
|
agentSelector: argv.agent ?? null
|
|
1924
1924
|
});
|
|
1925
|
-
const { runChat } = await import("./boot-
|
|
1925
|
+
const { runChat } = await import("./boot-DdYXpKMY.mjs");
|
|
1926
1926
|
await runChat({
|
|
1927
1927
|
appUrl: auth.value.appUrl,
|
|
1928
1928
|
sessionToken: auth.value.token,
|
|
@@ -2297,7 +2297,7 @@ const switchCommand = {
|
|
|
2297
2297
|
printError("The workspace picker needs the Bun runtime and it could not be set up automatically. Pass a workspace slug instead, or install Bun and retry.");
|
|
2298
2298
|
process.exit(1);
|
|
2299
2299
|
}
|
|
2300
|
-
const { runWorkspacePicker } = await import("./boot-
|
|
2300
|
+
const { runWorkspacePicker } = await import("./boot-DdYXpKMY.mjs");
|
|
2301
2301
|
await runWorkspacePicker(session);
|
|
2302
2302
|
return;
|
|
2303
2303
|
}
|
|
@@ -2376,7 +2376,7 @@ const openCommand = {
|
|
|
2376
2376
|
const agent = argv.agent ? resolveAgent((await fetchPortalDevices(session)).agents, argv.agent) : null;
|
|
2377
2377
|
const cwd = argv.cwd ? path.resolve(argv.cwd) : process.cwd();
|
|
2378
2378
|
const { machineName } = await resolveMachineIdentity(null);
|
|
2379
|
-
const { PortalDaemonClient } = await import("./daemon-client-
|
|
2379
|
+
const { PortalDaemonClient } = await import("./daemon-client-JDBIWms7.mjs");
|
|
2380
2380
|
let lastLine = "";
|
|
2381
2381
|
let signalConnected;
|
|
2382
2382
|
const connected = new Promise((resolve) => {
|
|
@@ -4222,7 +4222,7 @@ if (process.argv.includes(UPDATE_WORKER_FLAG)) {
|
|
|
4222
4222
|
process.exit(0);
|
|
4223
4223
|
}
|
|
4224
4224
|
if (process.argv.includes(PORTAL_DAEMON_FLAG)) {
|
|
4225
|
-
const { runPortalDaemon } = await import("./daemon-
|
|
4225
|
+
const { runPortalDaemon } = await import("./daemon-CzhmKp_H.mjs");
|
|
4226
4226
|
runPortalDaemon(process.argv);
|
|
4227
4227
|
} else runCli();
|
|
4228
4228
|
function runCli() {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { A as setActiveWorkspace, C as themesForMode, D as getActiveWorkspaceId, T as machineOsFromPlatform, _ as theme, a as installCrashHandler, b as themeModeFromColorFgBg, c as MARK_CELLS, d as splashFitsWidth, f as DEFAULT_THEME_ID, g as noColorRequested, h as monoTheme, i as writeArtifact, k as listWorkspaces, l as WORDMARK, m as findTheme, n as profilingEnabled, o as buildCrashReport, p as applyTheme, r as record, s as writeCrashReport, v as themeForMode, x as themeVersion, y as themeMode } from "./profiler-
|
|
2
|
+
import { A as setActiveWorkspace, C as themesForMode, D as getActiveWorkspaceId, T as machineOsFromPlatform, _ as theme, a as installCrashHandler, b as themeModeFromColorFgBg, c as MARK_CELLS, d as splashFitsWidth, f as DEFAULT_THEME_ID, g as noColorRequested, h as monoTheme, i as writeArtifact, k as listWorkspaces, l as WORDMARK, m as findTheme, n as profilingEnabled, o as buildCrashReport, p as applyTheme, r as record, s as writeCrashReport, v as themeForMode, x as themeVersion, y as themeMode } from "./profiler-zp3MKUcM.mjs";
|
|
3
3
|
import { D as getReviewStateDir, H as saveTheme, N as recordDefaultAgent, O as getSavedTheme, S as getConfigPath, c as cardActionErrorMessage, d as reconcileMaskedInput, f as resolveConnectUrl, i as resolveAgent, l as parseExternalOauthConnectParams, m as specKeyFor, p as parseConnectCard, s as MASK_CHAR, u as parseOauthConnectParams, v as DEFAULT_API_URL, y as DEFAULT_APP_URL, z as resolveWebUrl } from "./print-OvYyj6Uk.mjs";
|
|
4
4
|
import { t as HttpError } from "./http-error-DzyrsLAZ.mjs";
|
|
5
5
|
import { a as isRecord, i as errorMessage, n as errorDetail, r as sendErrorMessage, t as createRestClient } from "./rest-Dx6b-Nq_.mjs";
|
|
6
6
|
import { i as billingBlockedOutcomeFromSendResponse } from "./billing-blocked-2wju4gC_.mjs";
|
|
7
7
|
import { t as PortalClient } from "./client-DbqRBquD.mjs";
|
|
8
|
-
import "./daemon-
|
|
8
|
+
import "./daemon-Dnv9p14X.mjs";
|
|
9
9
|
import "./api-DG5W6iwx.mjs";
|
|
10
10
|
import { t as SandboxStream } from "./client-c4c5MmgN.mjs";
|
|
11
|
-
import { t as PortalDaemonClient } from "./daemon-client-
|
|
11
|
+
import { t as PortalDaemonClient } from "./daemon-client-Bb-6i20B.mjs";
|
|
12
12
|
import { t as runRawPtyPassthrough } from "./raw-pty-DY4KelZW.mjs";
|
|
13
13
|
import * as os$1 from "node:os";
|
|
14
14
|
import { homedir, platform, release, tmpdir } from "node:os";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import "./client-DbqRBquD.mjs";
|
|
3
|
-
import { a as runPortalDaemon, i as queryDaemonStatus, n as ensureDaemonRunning, o as startPortalDaemon, r as isDaemonListening, s as stopDaemon, t as PortalDaemon } from "./daemon-
|
|
3
|
+
import { a as runPortalDaemon, i as queryDaemonStatus, n as ensureDaemonRunning, o as startPortalDaemon, r as isDaemonListening, s as stopDaemon, t as PortalDaemon } from "./daemon-Dnv9p14X.mjs";
|
|
4
4
|
import "./api-DG5W6iwx.mjs";
|
|
5
5
|
|
|
6
6
|
export { runPortalDaemon };
|
|
@@ -20,7 +20,7 @@ import { access, appendFile, mkdir, readFile, unlink, writeFile } from "node:fs/
|
|
|
20
20
|
* the commit time of the built tree is one monotonic clock they share.
|
|
21
21
|
*/
|
|
22
22
|
function portalDaemonBuild() {
|
|
23
|
-
return "
|
|
23
|
+
return "1786692209";
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
26
|
* Whether a client carrying `mine` should replace a running daemon carrying
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { c as LOCAL_PROTOCOL_VERSION, d as encodeLine, f as makeLineParser, n as ensureDaemonRunning, p as parseDaemonMessage, u as daemonPaths } from "./daemon-
|
|
2
|
+
import { c as LOCAL_PROTOCOL_VERSION, d as encodeLine, f as makeLineParser, n as ensureDaemonRunning, p as parseDaemonMessage, u as daemonPaths } from "./daemon-Dnv9p14X.mjs";
|
|
3
3
|
import { randomUUID } from "node:crypto";
|
|
4
4
|
import { connect } from "node:net";
|
|
5
5
|
|
package/package.json
CHANGED