camstack 1.1.12 → 1.1.14
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.
|
@@ -15517,7 +15517,21 @@ var StorageLocationDeclarationSchema = external_exports.object({
|
|
|
15517
15517
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
15518
15518
|
* configure the primary location.
|
|
15519
15519
|
*/
|
|
15520
|
-
defaultsTo: external_exports.string().optional()
|
|
15520
|
+
defaultsTo: external_exports.string().optional(),
|
|
15521
|
+
/**
|
|
15522
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
15523
|
+
* FRESH install:
|
|
15524
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
15525
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
15526
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
15527
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
15528
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
15529
|
+
*
|
|
15530
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
15531
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
15532
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
15533
|
+
*/
|
|
15534
|
+
defaultRoot: external_exports.enum(["data", "media"]).optional()
|
|
15521
15535
|
});
|
|
15522
15536
|
var DecoderStatsSchema = external_exports.object({
|
|
15523
15537
|
inputFps: external_exports.number(),
|
|
@@ -16514,6 +16528,10 @@ var RtspRestreamEntrySchema = external_exports.object({
|
|
|
16514
16528
|
var BrokerRtspClientSchema = external_exports.object({
|
|
16515
16529
|
sessionId: external_exports.string(),
|
|
16516
16530
|
remoteAddr: external_exports.string(),
|
|
16531
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
16532
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
16533
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
16534
|
+
userAgent: external_exports.string().nullish(),
|
|
16517
16535
|
playing: external_exports.boolean(),
|
|
16518
16536
|
muted: external_exports.boolean(),
|
|
16519
16537
|
connectedAt: external_exports.number(),
|
|
@@ -21200,6 +21218,7 @@ var audioCodecCapability = {
|
|
|
21200
21218
|
name: "audio-codec",
|
|
21201
21219
|
scope: "system",
|
|
21202
21220
|
mode: "singleton",
|
|
21221
|
+
preferredProvider: "audio-codec-ffmpeg",
|
|
21203
21222
|
methods: {
|
|
21204
21223
|
/** Probe the local runtime and return the supported codec matrix. */
|
|
21205
21224
|
listSupportedCodecs: method(external_exports.void(), external_exports.array(AudioCodecInfoSchema).readonly()),
|
|
@@ -21711,6 +21730,7 @@ var decoderCapability = {
|
|
|
21711
21730
|
name: "decoder",
|
|
21712
21731
|
scope: "system",
|
|
21713
21732
|
mode: "singleton",
|
|
21733
|
+
preferredProvider: "decoder-ffmpeg",
|
|
21714
21734
|
methods: {
|
|
21715
21735
|
supportsCodec: method(external_exports.object({ codec: external_exports.string() }), external_exports.boolean()),
|
|
21716
21736
|
getInfo: method(external_exports.void(), external_exports.object({
|
|
@@ -23909,6 +23929,7 @@ var pipelineOrchestratorCapability = {
|
|
|
23909
23929
|
name: "pipeline-orchestrator",
|
|
23910
23930
|
scope: "system",
|
|
23911
23931
|
mode: "singleton",
|
|
23932
|
+
nodeIdMode: "data",
|
|
23912
23933
|
exposesDeviceSettings: true,
|
|
23913
23934
|
methods: {
|
|
23914
23935
|
/**
|
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-5ISU3PLN.js";
|
|
5
5
|
import "./chunk-K3NQKI34.js";
|
|
6
6
|
|
|
7
7
|
// src/cli.ts
|
|
@@ -608,7 +608,7 @@ function isUnknown(_value) {
|
|
|
608
608
|
return true;
|
|
609
609
|
}
|
|
610
610
|
async function resolveServerInteractive(presetNamespace) {
|
|
611
|
-
const { discoverNodes, resolveHubFromDiscovered } = await import("./discover-
|
|
611
|
+
const { discoverNodes, resolveHubFromDiscovered } = await import("./discover-QBXUYFLV.js");
|
|
612
612
|
if (presetNamespace) {
|
|
613
613
|
const spinner4 = clack.spinner();
|
|
614
614
|
spinner4.start(`Discovering hub on LAN (namespace "${presetNamespace}")`);
|