camstack 1.1.21 → 1.1.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.
|
@@ -26882,7 +26882,15 @@ var FrameworkPackageStatusSchema = external_exports.object({
|
|
|
26882
26882
|
latestVersion: external_exports.string().nullable(),
|
|
26883
26883
|
hasUpdate: external_exports.boolean(),
|
|
26884
26884
|
/** Optional manifest description for the row tooltip. */
|
|
26885
|
-
description: external_exports.string().optional()
|
|
26885
|
+
description: external_exports.string().optional(),
|
|
26886
|
+
/**
|
|
26887
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
26888
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
26889
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
26890
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
26891
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
26892
|
+
*/
|
|
26893
|
+
buildId: external_exports.string().nullable()
|
|
26886
26894
|
});
|
|
26887
26895
|
var LogStreamEntrySchema = external_exports.object({
|
|
26888
26896
|
timestamp: external_exports.string(),
|
package/dist/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
runDiscover
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-CFJI2NBD.js";
|
|
5
5
|
import "./chunk-K3NQKI34.js";
|
|
6
6
|
|
|
7
7
|
// src/cli.ts
|
|
@@ -680,7 +680,7 @@ function isUnknown(_value) {
|
|
|
680
680
|
return true;
|
|
681
681
|
}
|
|
682
682
|
async function resolveServerInteractive(presetNamespace) {
|
|
683
|
-
const { discoverNodes, resolveHubFromDiscovered, filterHubNodes, DEFAULT_HUB_HTTPS_PORT } = await import("./discover-
|
|
683
|
+
const { discoverNodes, resolveHubFromDiscovered, filterHubNodes, DEFAULT_HUB_HTTPS_PORT } = await import("./discover-3UG2FF36.js");
|
|
684
684
|
if (presetNamespace) {
|
|
685
685
|
const spinner4 = clack.spinner();
|
|
686
686
|
spinner4.start(`Discovering hub on LAN (namespace "${presetNamespace}")`);
|