camstack 1.1.27 → 1.1.28
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.
|
@@ -14522,7 +14522,7 @@ function date4(params) {
|
|
|
14522
14522
|
// ../../node_modules/zod/v4/classic/external.js
|
|
14523
14523
|
config(en_default());
|
|
14524
14524
|
|
|
14525
|
-
// ../types/dist/sleep-
|
|
14525
|
+
// ../types/dist/sleep-B3OHhFkL.mjs
|
|
14526
14526
|
var WELL_KNOWN_TABS = [
|
|
14527
14527
|
{
|
|
14528
14528
|
id: "overview",
|
|
@@ -15540,6 +15540,13 @@ var RecordingRetentionSchema = external_exports.object({
|
|
|
15540
15540
|
maxAgeDays: external_exports.number().min(0).optional(),
|
|
15541
15541
|
maxSizeGb: external_exports.number().min(0).optional()
|
|
15542
15542
|
});
|
|
15543
|
+
var ScrubThumbnailPresetSchema = external_exports.enum([
|
|
15544
|
+
"minimal",
|
|
15545
|
+
"low",
|
|
15546
|
+
"standard",
|
|
15547
|
+
"high",
|
|
15548
|
+
"max"
|
|
15549
|
+
]);
|
|
15543
15550
|
var RecordingConfigSchema = external_exports.object({
|
|
15544
15551
|
enabled: external_exports.boolean(),
|
|
15545
15552
|
/** Authoritative storage mode. Absent on legacy targets → derived once via
|
|
@@ -15569,7 +15576,14 @@ var RecordingConfigSchema = external_exports.object({
|
|
|
15569
15576
|
* derived into bands once via `migrateConfigToBands`.
|
|
15570
15577
|
*/
|
|
15571
15578
|
bands: external_exports.array(RecordingBandSchema).optional(),
|
|
15572
|
-
retention: RecordingRetentionSchema.optional()
|
|
15579
|
+
retention: RecordingRetentionSchema.optional(),
|
|
15580
|
+
/**
|
|
15581
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
15582
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
15583
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
15584
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
15585
|
+
*/
|
|
15586
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
15573
15587
|
});
|
|
15574
15588
|
var StorageLocationTypeSchema = external_exports.string().regex(/^[a-z][a-zA-Z0-9-]*$/);
|
|
15575
15589
|
var StorageLocationSchema = external_exports.object({
|
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-REYL2W37.js";
|
|
5
5
|
import "./chunk-K3NQKI34.js";
|
|
6
6
|
|
|
7
7
|
// src/cli.ts
|
|
@@ -1079,7 +1079,7 @@ function isUnknown(_value) {
|
|
|
1079
1079
|
return true;
|
|
1080
1080
|
}
|
|
1081
1081
|
async function resolveServerInteractive(presetNamespace) {
|
|
1082
|
-
const { discoverNodes, resolveHubFromDiscovered, filterHubNodes, DEFAULT_HUB_HTTPS_PORT } = await import("./discover-
|
|
1082
|
+
const { discoverNodes, resolveHubFromDiscovered, filterHubNodes, DEFAULT_HUB_HTTPS_PORT } = await import("./discover-OTKOLUJJ.js");
|
|
1083
1083
|
if (presetNamespace) {
|
|
1084
1084
|
const spinner4 = clack.spinner();
|
|
1085
1085
|
spinner4.start(`Discovering hub on LAN (namespace "${presetNamespace}")`);
|