@crossworks/client-types 0.232.23 → 0.232.36
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/package.json +1 -1
- package/src/index.ts +10 -0
- package/src/types/integrity.ts +3 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -2099,6 +2099,16 @@ export type SystemHealth = {
|
|
|
2099
2099
|
running: number | null;
|
|
2100
2100
|
disk: { usedBytes: number | null; budgetBytes: number } | null;
|
|
2101
2101
|
};
|
|
2102
|
+
/** Media sidecar (yt-dlp + ffmpeg) — the video_ingest fetch/transcode
|
|
2103
|
+
* engine, profile-gated like sandboxes, so `up: null` (muted pill) is the
|
|
2104
|
+
* resting state on a box without the `media` compose profile. Versions
|
|
2105
|
+
* come from its /healthz — that is what makes a stale or failed yt-dlp
|
|
2106
|
+
* self-update VISIBLE instead of silently breaking downloads. */
|
|
2107
|
+
media: {
|
|
2108
|
+
up: boolean | null;
|
|
2109
|
+
ytDlpVersion: string | null;
|
|
2110
|
+
ffmpegVersion: string | null;
|
|
2111
|
+
};
|
|
2102
2112
|
/** Tailscale / local network — the optional tailnet that lets a cloud VPS
|
|
2103
2113
|
* reach a LAN model box by MagicDNS name. Profile-gated and off by default
|
|
2104
2114
|
* in dev, so `up: null` (a muted/disabled pill) is the normal resting state;
|
package/src/types/integrity.ts
CHANGED
|
@@ -64,6 +64,9 @@ export type Capabilities = {
|
|
|
64
64
|
summarizer: Capability;
|
|
65
65
|
reflector: Capability;
|
|
66
66
|
stt: Capability;
|
|
67
|
+
/** The media sidecar (yt-dlp + ffmpeg) behind video_ingest — profile-gated,
|
|
68
|
+
* so "unavailable" is the normal resting state on a box without it. */
|
|
69
|
+
media: Capability;
|
|
67
70
|
};
|
|
68
71
|
|
|
69
72
|
// ─── live landed view ───────────────────────────────────────────────────────
|