@camstack/addon-decoder-ffmpeg 1.2.12 → 1.2.13
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/index.js +625 -22
- package/dist/index.mjs +625 -22
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7206,8 +7206,31 @@ var AdoptionJobSchema = object({
|
|
|
7206
7206
|
error: string().nullable()
|
|
7207
7207
|
});
|
|
7208
7208
|
/**
|
|
7209
|
-
* Per-camera FUNCTION SWITCHES
|
|
7210
|
-
*
|
|
7209
|
+
* Per-camera FUNCTION SWITCHES.
|
|
7210
|
+
*
|
|
7211
|
+
* ## The aggregate group is being withdrawn — the BADGE is not (D113)
|
|
7212
|
+
*
|
|
7213
|
+
* This file shipped as "the one coherent on/off surface over the pipeline
|
|
7214
|
+
* functions an operator thinks in terms of". The operator's verdict on
|
|
7215
|
+
* 2026-08-12 was that the coherent surface bought complexity and no clarity:
|
|
7216
|
+
* every function already had a settings page of its own, and a second place to
|
|
7217
|
+
* turn it off is a second place to look. Each switch is going back to its own
|
|
7218
|
+
* component's original options — detection to the detection-pipeline wrapper
|
|
7219
|
+
* binding, audio analysis to its own, recording to `RecordingConfig.enabled`
|
|
7220
|
+
* (which was always first-class; the switch was a veneer over
|
|
7221
|
+
* `recording.setDeviceConfig`), notifications to a notification-center
|
|
7222
|
+
* per-device setting, the two camera planes to their own components.
|
|
7223
|
+
*
|
|
7224
|
+
* What survives is {@link composeSwitchedOff}: `CameraStatus.switchedOff`, the
|
|
7225
|
+
* thing that lets a status surface say DISABLED instead of BROKEN, recomposed
|
|
7226
|
+
* straight from the authorities with no group in the middle. That rule was
|
|
7227
|
+
* never about a control panel.
|
|
7228
|
+
*
|
|
7229
|
+
* Everything else here — {@link CAMERA_SWITCH_CATALOG}, {@link CameraSwitch},
|
|
7230
|
+
* {@link deriveCameraSwitches}, the `pipelineOrchestrator.getCameraSwitches` /
|
|
7231
|
+
* `setCameraSwitch` pair — is a COMPATIBILITY surface for as long as deployed
|
|
7232
|
+
* viewers (v1.0.305) and the admin UI still call it. It is deleted when they
|
|
7233
|
+
* stop; nothing new may be built on it.
|
|
7211
7234
|
*
|
|
7212
7235
|
* ## This file adds no state
|
|
7213
7236
|
*
|
|
@@ -7558,7 +7581,15 @@ var RecordingConfigSchema = object({
|
|
|
7558
7581
|
* Each completed/failed run also lands one durable ops-log row on its owning
|
|
7559
7582
|
* addon surface.
|
|
7560
7583
|
*/
|
|
7584
|
+
/**
|
|
7585
|
+
* `queued` exists because the recorder mover is SINGLE-FLIGHT and an operator
|
|
7586
|
+
* rebalance enqueues one job per (camera, profile). Refusing the second job —
|
|
7587
|
+
* what the engine did before — turned a fifteen-camera rebalance into fifteen
|
|
7588
|
+
* manual retries. Queued jobs run FIFO; a queued job that is cancelled never
|
|
7589
|
+
* runs at all.
|
|
7590
|
+
*/
|
|
7561
7591
|
var RelocateJobStateSchema = _enum([
|
|
7592
|
+
"queued",
|
|
7562
7593
|
"running",
|
|
7563
7594
|
"done",
|
|
7564
7595
|
"failed",
|
|
@@ -7593,6 +7624,15 @@ var RelocateFootageInputSchema = object({
|
|
|
7593
7624
|
/** Limits relocation to the logical profile class. Omit only for the
|
|
7594
7625
|
* pre-orchestration compatibility path. */
|
|
7595
7626
|
footageClass: RelocateFootageClassSchema.optional(),
|
|
7627
|
+
/** Scope the move to ONE camera. Absent = every camera on the source, which
|
|
7628
|
+
* is what a whole-disk drain means. The rebalance path always sets it: its
|
|
7629
|
+
* unit is a (camera, profile) pile, not a disk. */
|
|
7630
|
+
deviceId: number().int().optional(),
|
|
7631
|
+
/** Scope the move to specific segment profiles (`high` / `mid` / `low`).
|
|
7632
|
+
* Finer than `footageClass`, which cannot separate high from mid — and the
|
|
7633
|
+
* placement plan assigns those two independently, so a rebalance that could
|
|
7634
|
+
* only say "recordings" would move footage the plan never asked to move. */
|
|
7635
|
+
profiles: array(string()).optional(),
|
|
7596
7636
|
/** Copy throttle in MB/s (default 40) — the drain is a background chore,
|
|
7597
7637
|
* never allowed to starve live writers. */
|
|
7598
7638
|
throttleMbps: number().min(1).max(1e3).optional()
|
|
@@ -7728,6 +7768,21 @@ var StorageLocationSchema = object({
|
|
|
7728
7768
|
nodeId: string().optional(),
|
|
7729
7769
|
isDefault: boolean().default(false),
|
|
7730
7770
|
isSystem: boolean().default(false),
|
|
7771
|
+
/**
|
|
7772
|
+
* Operator opt-in: whether consumers that BALANCE across several locations
|
|
7773
|
+
* of a type may write here. Recordings reads it today; event media and
|
|
7774
|
+
* backups are the next consumers, which is why the flag lives on the
|
|
7775
|
+
* location rather than in any one addon's store — nothing has to be
|
|
7776
|
+
* extended to add the next consumer.
|
|
7777
|
+
*
|
|
7778
|
+
* OPTIONAL, and ABSENT MEANS ACTIVE. Every location persisted before the
|
|
7779
|
+
* flag existed reads back with no flag and keeps working exactly as before;
|
|
7780
|
+
* that is the whole compat story, and it is why no migration ships with it.
|
|
7781
|
+
* A newly CREATED sibling is stamped `false` by the orchestrator (creating a
|
|
7782
|
+
* disk must not silently start writing to it); the default of a type is
|
|
7783
|
+
* always stamped `true`.
|
|
7784
|
+
*/
|
|
7785
|
+
enabled: boolean().optional(),
|
|
7731
7786
|
/** COMPUTED at read time by the orchestrator (statfs of the backing volume
|
|
7732
7787
|
* for node-local locations it can reach) — never persisted, absent when the
|
|
7733
7788
|
* volume is remote/unreachable. The single capacity truth every UI reads. */
|
|
@@ -12160,7 +12215,8 @@ method(object({
|
|
|
12160
12215
|
}), EmbeddingResultSchema), method(object({ text: string() }), EmbeddingResultSchema), method(_void(), EmbeddingInfoSchema);
|
|
12161
12216
|
/**
|
|
12162
12217
|
* filesystem-browse — per-node capability for browsing the node's local
|
|
12163
|
-
* filesystem
|
|
12218
|
+
* filesystem. Reads are unconfined (whole filesystem, from `/` down); WRITES
|
|
12219
|
+
* are sandboxed to operator-configured allowed roots (D115). Used by the
|
|
12164
12220
|
* admin "Add filesystem location" flow to pick a node + path. `mode:'per-node'`
|
|
12165
12221
|
* (one provider per node); the hub calls it with `{nodeId}` so the codegen
|
|
12166
12222
|
* routes to that exact node (default `nodeIdMode:'routing'`).
|
|
@@ -13973,6 +14029,13 @@ var MaskGridDimsSchema = object({
|
|
|
13973
14029
|
* `package-event` are pure trigger kinds (no urgency dimension). Extending
|
|
13974
14030
|
* this one field keeps the schema additive — a rule still declares exactly
|
|
13975
14031
|
* one trigger.
|
|
14032
|
+
*
|
|
14033
|
+
* AUDIO rules add no member here, for the reason occupancy added none: the
|
|
14034
|
+
* enum is mirrored by hand in the viewer (`scripts/check-viewer-condition-
|
|
14035
|
+
* mirror.ts` fails the build on a member the app cannot render) and every
|
|
14036
|
+
* member costs a release train. A sustained-sound rule is therefore an
|
|
14037
|
+
* `immediate` rule carrying {@link NcConditions.audio} — the condition is the
|
|
14038
|
+
* trigger discriminator, exactly as `occupancy` is on `device-event`.
|
|
13976
14039
|
*/
|
|
13977
14040
|
var NcDeliverySchema = _enum([
|
|
13978
14041
|
"immediate",
|
|
@@ -13987,15 +14050,32 @@ var NcDeliverySchema = _enum([
|
|
|
13987
14050
|
* depend on a provider's raw event name or payload shape.
|
|
13988
14051
|
*/
|
|
13989
14052
|
var NcSystemEventKindSchema = _enum([
|
|
13990
|
-
"
|
|
13991
|
-
"
|
|
14053
|
+
"device-online",
|
|
14054
|
+
"device-offline",
|
|
14055
|
+
"device-disabled",
|
|
14056
|
+
"device-enabled",
|
|
13992
14057
|
"stream-online",
|
|
13993
14058
|
"stream-offline",
|
|
13994
14059
|
"node-online",
|
|
13995
14060
|
"node-offline",
|
|
13996
14061
|
"addon-update-available",
|
|
13997
|
-
"server-update-available"
|
|
14062
|
+
"server-update-available",
|
|
14063
|
+
"alarm-triggered",
|
|
14064
|
+
"alarm-armed",
|
|
14065
|
+
"alarm-disarmed",
|
|
14066
|
+
"camera-online",
|
|
14067
|
+
"camera-offline",
|
|
14068
|
+
"camera-disabled",
|
|
14069
|
+
"camera-enabled"
|
|
14070
|
+
]);
|
|
14071
|
+
/** The legacy tail of {@link NcSystemEventKindSchema} — see its docblock. */
|
|
14072
|
+
var NC_LEGACY_SYSTEM_EVENT_KINDS = new Set([
|
|
14073
|
+
"camera-online",
|
|
14074
|
+
"camera-offline",
|
|
14075
|
+
"camera-disabled",
|
|
14076
|
+
"camera-enabled"
|
|
13998
14077
|
]);
|
|
14078
|
+
NcSystemEventKindSchema.options.filter((kind) => !NC_LEGACY_SYSTEM_EVENT_KINDS.has(kind));
|
|
13999
14079
|
/**
|
|
14000
14080
|
* One coherent system-event condition. `kinds` is the required opt-in safety
|
|
14001
14081
|
* gate; the remaining lists are optional narrowing filters relevant to the
|
|
@@ -14004,6 +14084,18 @@ var NcSystemEventKindSchema = _enum([
|
|
|
14004
14084
|
var NcSystemEventConditionSchema = object({
|
|
14005
14085
|
kinds: array(NcSystemEventKindSchema).min(1),
|
|
14006
14086
|
deviceIds: array(number().int()).min(1).optional(),
|
|
14087
|
+
/**
|
|
14088
|
+
* Narrow a `device-*` kind to these device TYPES (`DeviceType` values —
|
|
14089
|
+
* `camera`, `switch`, `sensor`, `container`, …). Absent = every type, which
|
|
14090
|
+
* is what a liveness rule means when nobody said otherwise.
|
|
14091
|
+
*
|
|
14092
|
+
* This is where "only my cameras" is expressed, and it lives on the rule for
|
|
14093
|
+
* one reason: the intake cannot know which devices this household cares
|
|
14094
|
+
* about, and a producer-side filter is one no operator can change. Fails
|
|
14095
|
+
* CLOSED — a subject whose device type is unknown (an id the device mirror
|
|
14096
|
+
* does not carry) matches no `deviceTypes` list.
|
|
14097
|
+
*/
|
|
14098
|
+
deviceTypes: array(string().min(1)).min(1).optional(),
|
|
14007
14099
|
nodeIds: array(string().min(1)).min(1).optional(),
|
|
14008
14100
|
packageNames: array(string().min(1)).min(1).optional()
|
|
14009
14101
|
});
|
|
@@ -14054,6 +14146,47 @@ var NcOccupancyConditionSchema = object({
|
|
|
14054
14146
|
sustainSeconds: number().int().min(0).max(3600).default(15)
|
|
14055
14147
|
});
|
|
14056
14148
|
/**
|
|
14149
|
+
* Audio condition (IMMEDIATE trigger) — a rule on SOUND, not on a picture.
|
|
14150
|
+
*
|
|
14151
|
+
* Operator-approved vocabulary (2026-08-12, option A — the same one the
|
|
14152
|
+
* reference notifier uses, so an operator moving between them re-uses what
|
|
14153
|
+
* they already know): a rule matches when, over a sampling window of
|
|
14154
|
+
* `samplingSeconds`, at least `hitPercent`% of the audio samples in that
|
|
14155
|
+
* window are HITS. A sample is a hit when it satisfies BOTH present filters:
|
|
14156
|
+
*
|
|
14157
|
+
* - `dbThreshold` — its level is at or above this many dBFS (see
|
|
14158
|
+
* {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale);
|
|
14159
|
+
* - `labels` — the classifier put at least one of these labels on it.
|
|
14160
|
+
*
|
|
14161
|
+
* Both are OPTIONAL and independent, which is the point of the shape: a
|
|
14162
|
+
* loudness rule ("something loud at 3am") needs no model to be right, and a
|
|
14163
|
+
* label rule ("a dog barked") needs no threshold. **Fail-closed when NEITHER
|
|
14164
|
+
* is given** — a window in which every sample is trivially a hit would fire on
|
|
14165
|
+
* silence, so the engine refuses such a condition rather than notifying on
|
|
14166
|
+
* nothing (the schema cannot express "at least one of" without becoming a
|
|
14167
|
+
* ZodEffects the cap path would have to special-case).
|
|
14168
|
+
*
|
|
14169
|
+
* `hitPercent` is over the samples the window actually HOLDS, and the window
|
|
14170
|
+
* must be FULL before it can match — a window that has been open for two
|
|
14171
|
+
* seconds of its ten is 100% of nothing, and firing on it would make
|
|
14172
|
+
* `samplingSeconds` decorative.
|
|
14173
|
+
*
|
|
14174
|
+
* Labels are the audio macro classes (`AUDIO_MACRO_LABELS` / the NC taxonomy's
|
|
14175
|
+
* `audio-*` ids). Both spellings are accepted — the matcher normalizes the
|
|
14176
|
+
* `audio-` prefix away on both sides, so a picker that offers taxonomy ids and
|
|
14177
|
+
* an operator who typed `dog` mean the same thing.
|
|
14178
|
+
*/
|
|
14179
|
+
var NcAudioConditionSchema = object({
|
|
14180
|
+
/** Audio macro labels; absent = any sound (level-only rule). */
|
|
14181
|
+
labels: array(string().min(1)).min(1).optional(),
|
|
14182
|
+
/** Level floor in dBFS (negative-going, `0` = full scale); absent = any level. */
|
|
14183
|
+
dbThreshold: number().min(-96).max(0).optional(),
|
|
14184
|
+
/** Percentage of the window's samples that must be hits (1–100). */
|
|
14185
|
+
hitPercent: number().int().min(1).max(100).default(60),
|
|
14186
|
+
/** Length of the sampling window in seconds. */
|
|
14187
|
+
samplingSeconds: number().int().min(1).max(300).default(10)
|
|
14188
|
+
});
|
|
14189
|
+
/**
|
|
14057
14190
|
* Which zone-crossing DIRECTION a rule accepts (`ObjectEvent.zoneCrossing`).
|
|
14058
14191
|
*
|
|
14059
14192
|
* The values are not symmetric, and deliberately so — the absent value has to
|
|
@@ -14326,7 +14459,33 @@ var NcConditionsSchema = object({
|
|
|
14326
14459
|
* threshold and holds for `sustainSeconds`. Fail-closed on missing
|
|
14327
14460
|
* substrate (no snapshot / missing zone). See {@link NcOccupancyCondition}.
|
|
14328
14461
|
*/
|
|
14329
|
-
occupancy: NcOccupancyConditionSchema.optional()
|
|
14462
|
+
occupancy: NcOccupancyConditionSchema.optional(),
|
|
14463
|
+
/**
|
|
14464
|
+
* IMMEDIATE only. Sustained-sound matcher — `hitPercent` of the samples in a
|
|
14465
|
+
* `samplingSeconds` window clear the optional `dbThreshold` and carry one of
|
|
14466
|
+
* the optional `labels`. Fail-closed on missing substrate (no audio samples,
|
|
14467
|
+
* a window that is not full yet, neither filter given). See
|
|
14468
|
+
* {@link NcAudioCondition}.
|
|
14469
|
+
*
|
|
14470
|
+
* Presence of this key is what makes a rule an AUDIO rule: the engine fires
|
|
14471
|
+
* it ONLY on a confirmed audio window, and a rule carrying it never fires on
|
|
14472
|
+
* a detection, a track or a device event (the same fail-closed pairing
|
|
14473
|
+
* `occupancy` has with the `device-event` trigger). That is how audio labels
|
|
14474
|
+
* leave `classes`: an audio rule names its sounds HERE, and the legacy path
|
|
14475
|
+
* (an `immediate` rule naming an `audio-*` class, one notification per
|
|
14476
|
+
* classified sample) stays exactly as it was for rules that already use it.
|
|
14477
|
+
*
|
|
14478
|
+
* NOT in {@link NC_CONDITION_CATALOG} yet, and that is the sequencing rule
|
|
14479
|
+
* rather than an oversight: the viewer mirrors the descriptor enums BY HAND
|
|
14480
|
+
* (`camstack/src/data/notification-center.ts`, guarded by
|
|
14481
|
+
* `scripts/check-viewer-condition-mirror.ts`) and its rule editor STRIPS the
|
|
14482
|
+
* condition fields it does not know when a rule is saved from the phone.
|
|
14483
|
+
* Publishing an editor for a condition the app cannot round-trip is how an
|
|
14484
|
+
* operator loses a rule's conditions by opening it — so the descriptor, the
|
|
14485
|
+
* admin widget and the viewer mirror land together (P2 + P3), and only then
|
|
14486
|
+
* does an audio rule become authorable.
|
|
14487
|
+
*/
|
|
14488
|
+
audio: NcAudioConditionSchema.optional()
|
|
14330
14489
|
});
|
|
14331
14490
|
/** One delivery target: a `notification-output` Target ref + passthrough params. */
|
|
14332
14491
|
var NcRuleTargetSchema = object({
|
|
@@ -14440,6 +14599,73 @@ var NcThrottleSchema = object({
|
|
|
14440
14599
|
*/
|
|
14441
14600
|
granularity: NcThrottleGranularitySchema.optional()
|
|
14442
14601
|
});
|
|
14602
|
+
/**
|
|
14603
|
+
* How long the confirm gate may hold ONE notification, and how big the picture
|
|
14604
|
+
* it judges may be.
|
|
14605
|
+
*
|
|
14606
|
+
* The clamp is the product decision, not a coincidence of the model: p50 was
|
|
14607
|
+
* 4.9 s warm and 15.3 s cold against qwen3-vl-8b, and a notification that
|
|
14608
|
+
* arrives after the visitor has gone is not a notification. 448 px was enough
|
|
14609
|
+
* to score 16/16 on the operator's parking scenario — bigger costs latency and
|
|
14610
|
+
* tokens for pixels the model pools away.
|
|
14611
|
+
*/
|
|
14612
|
+
var NC_CONFIRM_MIN_TIMEOUT_MS = 1e3;
|
|
14613
|
+
var NC_CONFIRM_MAX_TIMEOUT_MS = 2e4;
|
|
14614
|
+
var NC_CONFIRM_DEFAULT_TIMEOUT_MS = 8e3;
|
|
14615
|
+
/** Comparison the model's COUNT must satisfy for the notification to fire. */
|
|
14616
|
+
var NcConfirmExpectSchema = object({
|
|
14617
|
+
op: _enum([
|
|
14618
|
+
">=",
|
|
14619
|
+
">",
|
|
14620
|
+
"<=",
|
|
14621
|
+
"<",
|
|
14622
|
+
"=="
|
|
14623
|
+
]),
|
|
14624
|
+
count: number().int().min(0).max(1e3)
|
|
14625
|
+
});
|
|
14626
|
+
/**
|
|
14627
|
+
* AI CONFIRM — a vision model looks at the picture this notification is about
|
|
14628
|
+
* to ship and says whether it agrees with the rule.
|
|
14629
|
+
*
|
|
14630
|
+
* It runs AFTER the attachments resolve, deliberately: the crop JUDGED is the
|
|
14631
|
+
* crop SHIPPED (D52). A verdict about a different pixel rectangle than the one
|
|
14632
|
+
* on the operator's phone is not a verdict about this notification.
|
|
14633
|
+
*
|
|
14634
|
+
* FAIL-OPEN is the only safe default. A gate that cannot reach its model, or
|
|
14635
|
+
* whose model is cold, must not silence a camera — so `onTimeout: 'fire'` is
|
|
14636
|
+
* the default and every fail-open is COUNTED, because a gate that always fails
|
|
14637
|
+
* open looks in the log exactly like a gate that works.
|
|
14638
|
+
*
|
|
14639
|
+
* Every field is `.optional()` rather than relied on as a Zod default at the
|
|
14640
|
+
* runtime seam: a Zod default does NOT run on the addon→addon cap path (three
|
|
14641
|
+
* production failures in one day), so the gate reads absent as the constant
|
|
14642
|
+
* above rather than trusting a parse it may never have seen.
|
|
14643
|
+
*/
|
|
14644
|
+
var NcConfirmSchema = object({
|
|
14645
|
+
/** Off unless asked for. An absent `confirm` and `enabled:false` are the
|
|
14646
|
+
* same thing, and both mean "deliver exactly as before". */
|
|
14647
|
+
enabled: boolean().default(false),
|
|
14648
|
+
/** Explicit vision profile; absent = the `purpose:'vision'` cluster default. */
|
|
14649
|
+
profileId: string().optional(),
|
|
14650
|
+
/**
|
|
14651
|
+
* The operator's question, in his own words. Absent = a question derived
|
|
14652
|
+
* from the rule (its class and its expectation).
|
|
14653
|
+
*
|
|
14654
|
+
* NEVER composed with text READ OUT OF THE FRAME. The model reads OSD
|
|
14655
|
+
* banners, signage and plates as instructions if you let them reach the
|
|
14656
|
+
* prompt — proven live — so the authoritative contract stays in the system
|
|
14657
|
+
* turn and only rule-authored words land here.
|
|
14658
|
+
*/
|
|
14659
|
+
prompt: string().max(1e3).optional(),
|
|
14660
|
+
/** Fire only when the model's count satisfies this. Absent = the model's
|
|
14661
|
+
* own boolean verdict decides. */
|
|
14662
|
+
expect: NcConfirmExpectSchema.optional(),
|
|
14663
|
+
timeoutMs: number().int().min(NC_CONFIRM_MIN_TIMEOUT_MS).max(NC_CONFIRM_MAX_TIMEOUT_MS).default(NC_CONFIRM_DEFAULT_TIMEOUT_MS),
|
|
14664
|
+
/** What a timeout / unreachable model MEANS. `fire` (default) = fail-open. */
|
|
14665
|
+
onTimeout: _enum(["fire", "suppress"]).default("fire"),
|
|
14666
|
+
/** Longest edge the judged image is downscaled to before it is sent. */
|
|
14667
|
+
maxImagePx: number().int().min(64).max(2048).default(448)
|
|
14668
|
+
});
|
|
14443
14669
|
/** Client-supplied rule fields (server stamps id/createdBy/createdAt/updatedAt). */
|
|
14444
14670
|
var NcRuleInputSchema = object({
|
|
14445
14671
|
name: string().min(1).max(200),
|
|
@@ -14500,7 +14726,13 @@ var NcRuleInputSchema = object({
|
|
|
14500
14726
|
* `{ cap: 'alarm-panel', method: 'arm', args: { mode: 'away' } }`, the same
|
|
14501
14727
|
* shape as every other actuation.
|
|
14502
14728
|
*/
|
|
14503
|
-
actions: NcRuleActionsSchema.optional()
|
|
14729
|
+
actions: NcRuleActionsSchema.optional(),
|
|
14730
|
+
/**
|
|
14731
|
+
* AI CONFIRM — see {@link NcConfirmSchema}. `.optional()`, never defaulted:
|
|
14732
|
+
* a rule that predates the gate must keep delivering byte-for-byte as it
|
|
14733
|
+
* did, and absent is the only way to say that without a migration.
|
|
14734
|
+
*/
|
|
14735
|
+
confirm: NcConfirmSchema.optional()
|
|
14504
14736
|
});
|
|
14505
14737
|
/**
|
|
14506
14738
|
* Partial patch for `updateRule` — any subset of the input fields, plus the
|
|
@@ -14511,7 +14743,37 @@ var NcRuleInputSchema = object({
|
|
|
14511
14743
|
* still flow through `nc.setRuleTargetEnabled` (owner-checked), never a raw
|
|
14512
14744
|
* `updateRule` patch.
|
|
14513
14745
|
*/
|
|
14514
|
-
var NcRulePatchSchema = NcRuleInputSchema.partial().extend({
|
|
14746
|
+
var NcRulePatchSchema = NcRuleInputSchema.partial().extend({
|
|
14747
|
+
disabledTargetIds: array(string()).optional(),
|
|
14748
|
+
/**
|
|
14749
|
+
* `.partial()` DOES NOT REMOVE A FIELD'S `.default()`.
|
|
14750
|
+
*
|
|
14751
|
+
* It makes the key optional to SUPPLY; the parse still materialises the
|
|
14752
|
+
* default when the key is absent. And `NcRuleStore.update` merges with
|
|
14753
|
+
* `{ ...existing, ...patch }`, so a materialised key OVERWRITES the stored
|
|
14754
|
+
* one — which made every partial edit destructive:
|
|
14755
|
+
*
|
|
14756
|
+
* nc.updateRule({ throttle }) → conditions reset to `{}`
|
|
14757
|
+
* nc.setRuleTargetEnabled(...) → conditions reset to `{}`
|
|
14758
|
+
* setEnabled(ruleId, false) → conditions reset to `{}`
|
|
14759
|
+
*
|
|
14760
|
+
* A rule scoped to one camera and one zone silently became a rule that
|
|
14761
|
+
* matches EVERY event on EVERY camera, and lost its `media` policy
|
|
14762
|
+
* (zoneCrop / gif / clip / frame) and its `priority` at the same time. Seen
|
|
14763
|
+
* live on 2026-08-12: a rule scoped to device 617 fired on 590 and 615
|
|
14764
|
+
* within a minute of a two-field patch.
|
|
14765
|
+
*
|
|
14766
|
+
* So every defaulted field is re-declared here WITHOUT its default. The
|
|
14767
|
+
* inner defaults still apply when the caller DOES send the key — `{}` for
|
|
14768
|
+
* conditions remains a real instruction ("clear them") — and only the
|
|
14769
|
+
* absent key is now genuinely absent.
|
|
14770
|
+
*/
|
|
14771
|
+
enabled: boolean().optional(),
|
|
14772
|
+
conditions: NcConditionsSchema.optional(),
|
|
14773
|
+
media: NcMediaPolicySchema.optional(),
|
|
14774
|
+
throttle: NcThrottleSchema.optional(),
|
|
14775
|
+
priority: number().int().min(1).max(5).optional()
|
|
14776
|
+
});
|
|
14515
14777
|
/** A persisted rule. */
|
|
14516
14778
|
var NcRuleSchema = NcRuleInputSchema.extend({
|
|
14517
14779
|
id: string(),
|
|
@@ -14812,6 +15074,25 @@ var NcAlarmSettingsPatchSchema = NcAlarmSettingsSchema.partial();
|
|
|
14812
15074
|
* Never authored, never stored — see `alarm-mode-coverage.ts` for why a stored
|
|
14813
15075
|
* copy would lie the first time a rule is disabled.
|
|
14814
15076
|
*/
|
|
15077
|
+
/**
|
|
15078
|
+
* Why a device a mode NAMES is nonetheless not armed by it.
|
|
15079
|
+
*
|
|
15080
|
+
* Each value is an existing authority, never a new flag (D62): `muted` is the
|
|
15081
|
+
* per-camera notification switch the Notification Center already owns,
|
|
15082
|
+
* `detection-off` is the device's own detection binding being inactive, and
|
|
15083
|
+
* `offline` is the device manager's liveness. A fourth reason would mean a
|
|
15084
|
+
* fourth authority, and inventing one here is how a panel starts disagreeing
|
|
15085
|
+
* with the switches the operator actually used.
|
|
15086
|
+
*/
|
|
15087
|
+
var NcAlarmSkipReasonSchema = _enum([
|
|
15088
|
+
"muted",
|
|
15089
|
+
"detection-off",
|
|
15090
|
+
"offline"
|
|
15091
|
+
]);
|
|
15092
|
+
var NcAlarmSkippedDeviceSchema = object({
|
|
15093
|
+
deviceId: number().int(),
|
|
15094
|
+
reason: NcAlarmSkipReasonSchema
|
|
15095
|
+
});
|
|
14815
15096
|
var NcAlarmModeCoverageSchema = object({
|
|
14816
15097
|
mode: AlarmArmModeSchema,
|
|
14817
15098
|
/** Enabled rules gated on `armed_<mode>`. Zero means the mode does nothing. */
|
|
@@ -14819,7 +15100,18 @@ var NcAlarmModeCoverageSchema = object({
|
|
|
14819
15100
|
/** At least one covering rule has no device scope, so the mode covers all. */
|
|
14820
15101
|
allDevices: boolean(),
|
|
14821
15102
|
/** Ids named by the covering rules. A SUBSET when `allDevices` is true. */
|
|
14822
|
-
deviceIds: array(number().int())
|
|
15103
|
+
deviceIds: array(number().int()),
|
|
15104
|
+
/**
|
|
15105
|
+
* Devices this mode NAMES but cannot actually arm, each with the switch that
|
|
15106
|
+
* excludes it.
|
|
15107
|
+
*
|
|
15108
|
+
* "Away armed — 12 cameras" is a promise, and a muted camera among those
|
|
15109
|
+
* twelve makes it false in exactly the way nobody notices until an incident.
|
|
15110
|
+
* Defaulted to `[]` so a coverage answer computed before this field existed
|
|
15111
|
+
* still parses as "nothing known to be skipped" rather than failing the whole
|
|
15112
|
+
* alarm tab.
|
|
15113
|
+
*/
|
|
15114
|
+
skippedDevices: array(NcAlarmSkippedDeviceSchema).default([])
|
|
14823
15115
|
});
|
|
14824
15116
|
var NcAlarmConfigSchema = object({
|
|
14825
15117
|
/**
|
|
@@ -17618,9 +17910,16 @@ var CameraStatusSchema = object({
|
|
|
17618
17910
|
audio: CameraAudioStatusSchema.nullable(),
|
|
17619
17911
|
recording: CameraRecordingStatusSchema.nullable(),
|
|
17620
17912
|
/**
|
|
17621
|
-
* Per-camera
|
|
17913
|
+
* Per-camera functions an OPERATOR has turned off
|
|
17622
17914
|
* ([D61](../../../../docs/decisions/adr-0067.md)).
|
|
17623
17915
|
*
|
|
17916
|
+
* Composed from the AUTHORITIES themselves — the wrapper bindings,
|
|
17917
|
+
* `RecordingConfig.enabled`, the notification mute, the broker's audio
|
|
17918
|
+
* policy, the camera's own microphone — via `composeSwitchedOff`, not from
|
|
17919
|
+
* the deprecated `getCameraSwitches` group ([D113](../../../../docs/decisions/adr-0113.md)).
|
|
17920
|
+
* The badge outlives the control panel: the panel was a convenience, this is
|
|
17921
|
+
* the difference between a camera being off and a camera being dead.
|
|
17922
|
+
*
|
|
17624
17923
|
* This is the difference between DISABLED and BROKEN. A camera whose
|
|
17625
17924
|
* `detection` block reports zero fps and whose `switchedOff` contains
|
|
17626
17925
|
* `'object-detection'` was switched off by a person; the same camera with an
|
|
@@ -23129,7 +23428,19 @@ var RecordingManifestSchema = object({
|
|
|
23129
23428
|
* profiles/subtrees/locations on this node). */
|
|
23130
23429
|
var RecordingDeviceUsageSchema = object({
|
|
23131
23430
|
deviceId: number(),
|
|
23132
|
-
usedBytes: number()
|
|
23431
|
+
usedBytes: number(),
|
|
23432
|
+
/**
|
|
23433
|
+
* Start of this camera's OLDEST indexed segment, across every profile and
|
|
23434
|
+
* location — the "Oldest footage" column in Recordings → Storage, and the
|
|
23435
|
+
* only honest answer to "is retention actually holding?" per camera.
|
|
23436
|
+
*
|
|
23437
|
+
* `null` = the camera has no footage. OPTIONAL because a recorder that
|
|
23438
|
+
* predates this field omits it entirely, and a hub whose types carry the
|
|
23439
|
+
* field must keep validating that older provider's payload: the framework
|
|
23440
|
+
* (types) and the addon ship on different trains, and the addon is usually
|
|
23441
|
+
* the later of the two.
|
|
23442
|
+
*/
|
|
23443
|
+
oldestMs: number().nullable().optional()
|
|
23133
23444
|
});
|
|
23134
23445
|
/** Recording storage usage + capacity for one storage location. */
|
|
23135
23446
|
var RecordingLocationUsageSchema = object({
|
|
@@ -23157,6 +23468,57 @@ var RecordingStorageUsageSchema = object({
|
|
|
23157
23468
|
locations: array(RecordingLocationUsageSchema)
|
|
23158
23469
|
});
|
|
23159
23470
|
/**
|
|
23471
|
+
* The OPERATOR-ARMED half of multi-location recordings (D116).
|
|
23472
|
+
*
|
|
23473
|
+
* The placement plan decides where NEW writes go and moves nothing. A rebalance
|
|
23474
|
+
* is the operator asking for the EXISTING archive to be brought into line with
|
|
23475
|
+
* that plan: one relocate job per (camera, profile) pile that sits on the wrong
|
|
23476
|
+
* location, run FIFO behind the single-flight mover.
|
|
23477
|
+
*
|
|
23478
|
+
* `plan…` and `start…` return the SAME shape deliberately — what the operator
|
|
23479
|
+
* confirms is exactly what gets enqueued, and `jobIds` is the only difference
|
|
23480
|
+
* (empty on the plan).
|
|
23481
|
+
*/
|
|
23482
|
+
var RecordingRebalanceMoveSchema = object({
|
|
23483
|
+
deviceId: number(),
|
|
23484
|
+
profile: string(),
|
|
23485
|
+
fromLocationId: string(),
|
|
23486
|
+
toLocationId: string(),
|
|
23487
|
+
bytes: number(),
|
|
23488
|
+
files: number().int()
|
|
23489
|
+
});
|
|
23490
|
+
/** Why a pile that is out of place is staying there. Every refusal is
|
|
23491
|
+
* reported: a rebalance that silently drops a camera reads exactly like one
|
|
23492
|
+
* that had nothing to do. */
|
|
23493
|
+
var RecordingRebalanceSkipReasonSchema = _enum([
|
|
23494
|
+
"unassigned",
|
|
23495
|
+
"target-not-writable",
|
|
23496
|
+
"below-threshold",
|
|
23497
|
+
"no-headroom"
|
|
23498
|
+
]);
|
|
23499
|
+
var RecordingRebalanceSkipSchema = object({
|
|
23500
|
+
deviceId: number(),
|
|
23501
|
+
profile: string(),
|
|
23502
|
+
fromLocationId: string(),
|
|
23503
|
+
/** The location the plan wants; null when the camera has no assignment. */
|
|
23504
|
+
toLocationId: string().nullable(),
|
|
23505
|
+
bytes: number(),
|
|
23506
|
+
reason: RecordingRebalanceSkipReasonSchema
|
|
23507
|
+
});
|
|
23508
|
+
var RecordingRebalancePlanSchema = object({
|
|
23509
|
+
moves: array(RecordingRebalanceMoveSchema),
|
|
23510
|
+
skipped: array(RecordingRebalanceSkipSchema),
|
|
23511
|
+
bytesToMove: number(),
|
|
23512
|
+
/** Relocate job ids enqueued. Always empty for the plan (dry-run) call. */
|
|
23513
|
+
jobIds: array(string())
|
|
23514
|
+
});
|
|
23515
|
+
var RecordingRebalanceInputSchema = object({
|
|
23516
|
+
/** Copy throttle in MB/s (default 40) — a rebalance is a background chore. */
|
|
23517
|
+
throttleMbps: number().min(1).max(1e3).optional(),
|
|
23518
|
+
/** Ignore piles smaller than this (default 1 GB). */
|
|
23519
|
+
minMoveGb: number().min(0).optional()
|
|
23520
|
+
});
|
|
23521
|
+
/**
|
|
23160
23522
|
* Result of locating footage at a wall-clock instant for one device/profile.
|
|
23161
23523
|
* `segment` carries the covering segment's window; `gap` reports the forward
|
|
23162
23524
|
* nearest covered edge (`null` past the end of footage / when none exists)
|
|
@@ -23319,9 +23681,24 @@ method(object({
|
|
|
23319
23681
|
}), method(object({ jobId: string() }), RelocateJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
23320
23682
|
kind: "mutation",
|
|
23321
23683
|
auth: "admin"
|
|
23684
|
+
}), method(RelocateFootageInputSchema, object({ jobId: string() }), {
|
|
23685
|
+
kind: "mutation",
|
|
23686
|
+
auth: "admin"
|
|
23687
|
+
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
23688
|
+
kind: "query",
|
|
23689
|
+
auth: "admin"
|
|
23690
|
+
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
23691
|
+
kind: "mutation",
|
|
23692
|
+
auth: "admin"
|
|
23693
|
+
}), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
|
|
23694
|
+
kind: "query",
|
|
23695
|
+
auth: "admin"
|
|
23696
|
+
}), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
|
|
23697
|
+
kind: "mutation",
|
|
23698
|
+
auth: "admin"
|
|
23322
23699
|
});
|
|
23323
23700
|
/**
|
|
23324
|
-
* `
|
|
23701
|
+
* `recording-export` cap — render a footage time range into a single downloadable
|
|
23325
23702
|
* MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
|
|
23326
23703
|
* bounded lifetime with a durable history, auto-expiry, and optional
|
|
23327
23704
|
* delete-after-download.
|
|
@@ -23336,10 +23713,42 @@ method(object({
|
|
|
23336
23713
|
*/
|
|
23337
23714
|
/** Playback-speed multiplier for the render (1 = realtime). */
|
|
23338
23715
|
var ExportSpeedSchema = number().min(.25).max(32);
|
|
23716
|
+
/**
|
|
23717
|
+
* One dense interval, in SECONDS FROM THE EXPORT'S OWN `fromMs`.
|
|
23718
|
+
*
|
|
23719
|
+
* Relative and not absolute epoch on purpose: the renderer's frame-select
|
|
23720
|
+
* expression sees ffmpeg's `t`, which starts at 0 for the export's source
|
|
23721
|
+
* playlist. Handing it absolute epochs would make every call site responsible
|
|
23722
|
+
* for the same subtraction, and the one that forgot would emit a filter that
|
|
23723
|
+
* selects nothing — silently, as a uniform timelapse.
|
|
23724
|
+
*/
|
|
23725
|
+
var ExportDenseRangeSchema = object({
|
|
23726
|
+
fromSec: number().nonnegative(),
|
|
23727
|
+
toSec: number().nonnegative()
|
|
23728
|
+
}).refine((r) => r.toSec > r.fromSec, { message: "dense range must have toSec > fromSec" });
|
|
23729
|
+
/**
|
|
23730
|
+
* Dense-interval overlay for a timelapse: sample at `dense.everyMs` INSIDE the
|
|
23731
|
+
* listed ranges and at the base `everyMs` everywhere else.
|
|
23732
|
+
*
|
|
23733
|
+
* `everyMs` must be strictly smaller than the base cadence — a dense rate that
|
|
23734
|
+
* is not denser renders a uniform timelapse the operator believes is two-rate.
|
|
23735
|
+
*/
|
|
23736
|
+
var ExportDenseSchema = object({
|
|
23737
|
+
everyMs: number().int().positive(),
|
|
23738
|
+
ranges: array(ExportDenseRangeSchema).min(1).max(200)
|
|
23739
|
+
});
|
|
23339
23740
|
/** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
|
|
23340
23741
|
var ExportTimelapseSchema = object({
|
|
23341
23742
|
everyMs: number().int().positive(),
|
|
23342
|
-
outputFps: number().int().min(1).max(60).optional()
|
|
23743
|
+
outputFps: number().int().min(1).max(60).optional(),
|
|
23744
|
+
/** Optional second, FASTER rate over the intervals that matter. */
|
|
23745
|
+
dense: ExportDenseSchema.optional()
|
|
23746
|
+
}).superRefine((v, ctx) => {
|
|
23747
|
+
if (v.dense !== void 0 && v.dense.everyMs >= v.everyMs) ctx.addIssue({
|
|
23748
|
+
code: ZodIssueCode.custom,
|
|
23749
|
+
message: "dense.everyMs must be strictly smaller than the base everyMs",
|
|
23750
|
+
path: ["dense", "everyMs"]
|
|
23751
|
+
});
|
|
23343
23752
|
});
|
|
23344
23753
|
/**
|
|
23345
23754
|
* Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
|
|
@@ -23397,6 +23806,19 @@ var ExportDownloadSchema = object({
|
|
|
23397
23806
|
url: string(),
|
|
23398
23807
|
endpoints: array(string())
|
|
23399
23808
|
});
|
|
23809
|
+
/**
|
|
23810
|
+
* A finished export's bytes, inline.
|
|
23811
|
+
*
|
|
23812
|
+
* `bytes` is the DECODED length — the number the caller bounds and logs
|
|
23813
|
+
* against, so nobody has to infer it from the base64 length.
|
|
23814
|
+
*/
|
|
23815
|
+
var ExportBytesSchema = object({
|
|
23816
|
+
base64: string(),
|
|
23817
|
+
contentType: string(),
|
|
23818
|
+
/** Suggested filename, extension included. */
|
|
23819
|
+
name: string(),
|
|
23820
|
+
bytes: number().int().nonnegative()
|
|
23821
|
+
});
|
|
23400
23822
|
method(object({
|
|
23401
23823
|
deviceId: number(),
|
|
23402
23824
|
profile: string(),
|
|
@@ -23421,6 +23843,9 @@ method(object({
|
|
|
23421
23843
|
}), method(object({ exportId: string() }), ExportDownloadSchema, {
|
|
23422
23844
|
kind: "query",
|
|
23423
23845
|
auth: "protected"
|
|
23846
|
+
}), method(object({ exportId: string() }), ExportBytesSchema, {
|
|
23847
|
+
kind: "query",
|
|
23848
|
+
auth: "protected"
|
|
23424
23849
|
});
|
|
23425
23850
|
/**
|
|
23426
23851
|
* scene-monitor — device-scoped reference-region state cap. An operator marks
|
|
@@ -28614,6 +29039,12 @@ Object.freeze({
|
|
|
28614
29039
|
addonId: null,
|
|
28615
29040
|
access: "create"
|
|
28616
29041
|
},
|
|
29042
|
+
"recording.cancelRelocateJob": {
|
|
29043
|
+
capName: "recording",
|
|
29044
|
+
capScope: "system",
|
|
29045
|
+
addonId: null,
|
|
29046
|
+
access: "create"
|
|
29047
|
+
},
|
|
28617
29048
|
"recording.cancelStorageMigrationMove": {
|
|
28618
29049
|
capName: "recording",
|
|
28619
29050
|
capScope: "system",
|
|
@@ -28668,6 +29099,12 @@ Object.freeze({
|
|
|
28668
29099
|
addonId: null,
|
|
28669
29100
|
access: "view"
|
|
28670
29101
|
},
|
|
29102
|
+
"recording.listRelocateJobs": {
|
|
29103
|
+
capName: "recording",
|
|
29104
|
+
capScope: "system",
|
|
29105
|
+
addonId: null,
|
|
29106
|
+
access: "view"
|
|
29107
|
+
},
|
|
28671
29108
|
"recording.locateSegment": {
|
|
28672
29109
|
capName: "recording",
|
|
28673
29110
|
capScope: "system",
|
|
@@ -28680,6 +29117,12 @@ Object.freeze({
|
|
|
28680
29117
|
addonId: null,
|
|
28681
29118
|
access: "create"
|
|
28682
29119
|
},
|
|
29120
|
+
"recording.planStorageRebalance": {
|
|
29121
|
+
capName: "recording",
|
|
29122
|
+
capScope: "system",
|
|
29123
|
+
addonId: null,
|
|
29124
|
+
access: "view"
|
|
29125
|
+
},
|
|
28683
29126
|
"recording.pruneFootage": {
|
|
28684
29127
|
capName: "recording",
|
|
28685
29128
|
capScope: "system",
|
|
@@ -28704,6 +29147,12 @@ Object.freeze({
|
|
|
28704
29147
|
addonId: null,
|
|
28705
29148
|
access: "create"
|
|
28706
29149
|
},
|
|
29150
|
+
"recording.relocateFootage": {
|
|
29151
|
+
capName: "recording",
|
|
29152
|
+
capScope: "system",
|
|
29153
|
+
addonId: null,
|
|
29154
|
+
access: "create"
|
|
29155
|
+
},
|
|
28707
29156
|
"recording.renderClip": {
|
|
28708
29157
|
capName: "recording",
|
|
28709
29158
|
capScope: "system",
|
|
@@ -28740,38 +29189,50 @@ Object.freeze({
|
|
|
28740
29189
|
addonId: null,
|
|
28741
29190
|
access: "create"
|
|
28742
29191
|
},
|
|
29192
|
+
"recording.startStorageRebalance": {
|
|
29193
|
+
capName: "recording",
|
|
29194
|
+
capScope: "system",
|
|
29195
|
+
addonId: null,
|
|
29196
|
+
access: "create"
|
|
29197
|
+
},
|
|
28743
29198
|
"recordingExport.cancelExport": {
|
|
28744
|
-
capName: "
|
|
29199
|
+
capName: "recording-export",
|
|
28745
29200
|
capScope: "system",
|
|
28746
29201
|
addonId: null,
|
|
28747
29202
|
access: "create"
|
|
28748
29203
|
},
|
|
28749
29204
|
"recordingExport.createExport": {
|
|
28750
|
-
capName: "
|
|
29205
|
+
capName: "recording-export",
|
|
28751
29206
|
capScope: "system",
|
|
28752
29207
|
addonId: null,
|
|
28753
29208
|
access: "create"
|
|
28754
29209
|
},
|
|
28755
29210
|
"recordingExport.deleteExport": {
|
|
28756
|
-
capName: "
|
|
29211
|
+
capName: "recording-export",
|
|
28757
29212
|
capScope: "system",
|
|
28758
29213
|
addonId: null,
|
|
28759
29214
|
access: "delete"
|
|
28760
29215
|
},
|
|
28761
29216
|
"recordingExport.getDownloadUrl": {
|
|
28762
|
-
capName: "
|
|
29217
|
+
capName: "recording-export",
|
|
28763
29218
|
capScope: "system",
|
|
28764
29219
|
addonId: null,
|
|
28765
29220
|
access: "view"
|
|
28766
29221
|
},
|
|
28767
29222
|
"recordingExport.getExport": {
|
|
28768
|
-
capName: "
|
|
29223
|
+
capName: "recording-export",
|
|
28769
29224
|
capScope: "system",
|
|
28770
29225
|
addonId: null,
|
|
28771
29226
|
access: "view"
|
|
28772
29227
|
},
|
|
28773
29228
|
"recordingExport.listExports": {
|
|
28774
|
-
capName: "
|
|
29229
|
+
capName: "recording-export",
|
|
29230
|
+
capScope: "system",
|
|
29231
|
+
addonId: null,
|
|
29232
|
+
access: "view"
|
|
29233
|
+
},
|
|
29234
|
+
"recordingExport.readExportBytes": {
|
|
29235
|
+
capName: "recording-export",
|
|
28775
29236
|
capScope: "system",
|
|
28776
29237
|
addonId: null,
|
|
28777
29238
|
access: "view"
|
|
@@ -30148,6 +30609,104 @@ var FramerateField = number().int().min(1).max(60);
|
|
|
30148
30609
|
var TargetsField = array(NcRuleTargetSchema).min(1);
|
|
30149
30610
|
var PriorityField = number().int().min(1).max(5);
|
|
30150
30611
|
/**
|
|
30612
|
+
* Explicit override of the DENSE sampling cadence, seconds.
|
|
30613
|
+
*
|
|
30614
|
+
* Absent ⇒ derived as `max(1s, cadenceSec / 30)` — a 30 s base samples every
|
|
30615
|
+
* 1 s inside a detection range. (It was `base / 10` until 2026-08-12, which
|
|
30616
|
+
* made that same base 3 s and rendered a person pass as two frames.)
|
|
30617
|
+
*
|
|
30618
|
+
* THE ARITHMETIC. A detection range of `rangeSec` seconds sampled every
|
|
30619
|
+
* `denseCadenceSec` and played at `framerate` occupies
|
|
30620
|
+
*
|
|
30621
|
+
* outputSeconds = (rangeSec / denseCadenceSec) / framerate
|
|
30622
|
+
*
|
|
30623
|
+
* so a 7 s pass at 1 s / 12 fps is 0.58 s of video, and at 0.5 s it is 1.17 s.
|
|
30624
|
+
* Halving this field doubles the frames INSIDE ranges only — the base cadence,
|
|
30625
|
+
* and therefore the length of a quiet night, does not move.
|
|
30626
|
+
*
|
|
30627
|
+
* Floored at {@link TIMELAPSE_DENSE_FLOOR_SEC}: asking for frames faster than
|
|
30628
|
+
* the recording has them returns the same frames, requested twice. Must be
|
|
30629
|
+
* STRICTLY smaller than `cadenceSec` — a dense rate that is not denser renders
|
|
30630
|
+
* a uniform video the operator believes is two-rate — and upsert refuses it
|
|
30631
|
+
* rather than letting the export cap reject the render hours after the window.
|
|
30632
|
+
*/
|
|
30633
|
+
var DenseCadenceSecField = number().min(.1).max(3600);
|
|
30634
|
+
/**
|
|
30635
|
+
* Minimum seconds of OUTPUT video each detection range must occupy.
|
|
30636
|
+
*
|
|
30637
|
+
* The operator-facing form of the arithmetic above: instead of solving for a
|
|
30638
|
+
* cadence, state the dwell and let the renderer solve. `minDwellSec: 1` on a
|
|
30639
|
+
* 30 s base at 12 fps turns a 7 s pass into a full second of video by sampling
|
|
30640
|
+
* that range every ~583 ms.
|
|
30641
|
+
*
|
|
30642
|
+
* ONE CADENCE SERVES EVERY RANGE. `ExportDenseSchema.everyMs` is global — the
|
|
30643
|
+
* ranges are terms of a single ffmpeg `select` expression that cannot vary rate
|
|
30644
|
+
* per term — so the MOST DEMANDING (shortest) range sets the rate and longer
|
|
30645
|
+
* ranges are sampled denser than they need. Per-range cadences require a cap
|
|
30646
|
+
* schema change and are the tracked follow-up.
|
|
30647
|
+
*
|
|
30648
|
+
* A range too short to reach the dwell even at {@link TIMELAPSE_DENSE_FLOOR_SEC}
|
|
30649
|
+
* is rendered with every frame that EXISTS and no more: the guarantee is capped
|
|
30650
|
+
* by real footage, never met by duplicating frames into motion that never
|
|
30651
|
+
* happened.
|
|
30652
|
+
*/
|
|
30653
|
+
var MinDwellSecField = number().min(0).max(60);
|
|
30654
|
+
/**
|
|
30655
|
+
* Caption burned into the notification's preview frame.
|
|
30656
|
+
*
|
|
30657
|
+
* Same `{{var}}` vocabulary as {@link TimelapseTemplateSchema} (`camera`,
|
|
30658
|
+
* `rule`, `from`, `to`) and rendered by the SAME renderer — a second
|
|
30659
|
+
* templating dialect for one field would be a second thing to explain.
|
|
30660
|
+
*
|
|
30661
|
+
* Absent ⇒ {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}. An EMPTY STRING is the
|
|
30662
|
+
* operator saying "the frame, no caption" — a distinct, reachable answer, and
|
|
30663
|
+
* the reason this is not `.min(1)`.
|
|
30664
|
+
*/
|
|
30665
|
+
var PreviewTextField = string().max(200);
|
|
30666
|
+
/**
|
|
30667
|
+
* Whether the notification's preview is a STILL or a short animation.
|
|
30668
|
+
*
|
|
30669
|
+
* The operator's ask, verbatim: *"inviato come gif o video (come per le altre
|
|
30670
|
+
* rule)"* — his Scrypted advanced-notifier has a `gifRule`, and a ten-hour
|
|
30671
|
+
* night reads better as three seconds of motion than as one frame of it. Both
|
|
30672
|
+
* modes get the SAME treatment (blurred frame, large centred title); `'gif'`
|
|
30673
|
+
* simply applies it to a dozen frames sampled across the render and assembles
|
|
30674
|
+
* them.
|
|
30675
|
+
*
|
|
30676
|
+
* `'image'` is the default and stays the default: a GIF costs a dozen ffmpeg
|
|
30677
|
+
* seeks and a palette pass, and no rule that never asked for one should start
|
|
30678
|
+
* paying that on the deploy that shipped it.
|
|
30679
|
+
*
|
|
30680
|
+
* A GIF that cannot be assembled DEGRADES to the still — never to nothing.
|
|
30681
|
+
*/
|
|
30682
|
+
var PreviewModeField = _enum(["image", "gif"]);
|
|
30683
|
+
/**
|
|
30684
|
+
* Which detection classes the notification reports counts for.
|
|
30685
|
+
*
|
|
30686
|
+
* The counts come from the tracks the render ALREADY fetched for its dense-range
|
|
30687
|
+
* plan — no second query — aggregated per class. Absent or empty means "every
|
|
30688
|
+
* class the window actually contained", which is what an operator who never
|
|
30689
|
+
* opened the field wants; a list narrows it (`['person']` on a driveway that
|
|
30690
|
+
* counts cars all night).
|
|
30691
|
+
*
|
|
30692
|
+
* Class names are the tracker's own (`person`, `vehicle`, `animal`, `package`,
|
|
30693
|
+
* …). An unknown name simply never matches and reports nothing — it is not an
|
|
30694
|
+
* error, because a rule may legitimately name a class this camera's model does
|
|
30695
|
+
* not emit.
|
|
30696
|
+
*
|
|
30697
|
+
* The counts are exposed to {@link TimelapseTemplateSchema} as:
|
|
30698
|
+
* - `{{detections}}` — total over the reported classes
|
|
30699
|
+
* - `{{detectionSummary}}` — `2 persone, 1 veicolo`
|
|
30700
|
+
* - `{{count_person}}` / `{{count_vehicle}}` / `{{count_animal}}` / … —
|
|
30701
|
+
* one per class, `count_` + the class name
|
|
30702
|
+
*
|
|
30703
|
+
* With NO custom body template the summary is appended to the derived body, and
|
|
30704
|
+
* only when the total is non-zero: a nightly `0 rilevamenti` is a line nobody
|
|
30705
|
+
* reads. With a custom template the operator owns every word — nothing is
|
|
30706
|
+
* appended, so `{{detectionSummary}}` is how he asks for it.
|
|
30707
|
+
*/
|
|
30708
|
+
var ReportClassesField = array(string().min(1).max(40)).max(20);
|
|
30709
|
+
/**
|
|
30151
30710
|
* Client-supplied timelapse-rule fields. The server stamps id / createdBy /
|
|
30152
30711
|
* createdAt / updatedAt / ownerUserId / lastGeneratedAt — none of them appear
|
|
30153
30712
|
* here (see the ownership note above).
|
|
@@ -30167,9 +30726,30 @@ var TimelapseRuleInputSchema = object({
|
|
|
30167
30726
|
cadenceSec: CadenceSecField.default(15),
|
|
30168
30727
|
/** Output frames per second of the assembled mp4 (predecessor parity). */
|
|
30169
30728
|
framerate: FramerateField.default(10),
|
|
30729
|
+
/**
|
|
30730
|
+
* Explicit dense cadence — see {@link DenseCadenceSecField}. Absent ⇒ derived
|
|
30731
|
+
* as `max(1s, cadenceSec / 30)`, which is what every rule written before this
|
|
30732
|
+
* field gets.
|
|
30733
|
+
*/
|
|
30734
|
+
denseCadenceSec: DenseCadenceSecField.optional(),
|
|
30735
|
+
/** Output-seconds guarantee per detection range — see {@link MinDwellSecField}. */
|
|
30736
|
+
minDwellSec: MinDwellSecField.optional(),
|
|
30170
30737
|
/** `notification-output` targets the finished video/thumbnail is sent to. */
|
|
30171
30738
|
targets: TargetsField,
|
|
30172
30739
|
template: TimelapseTemplateSchema.optional(),
|
|
30740
|
+
/**
|
|
30741
|
+
* Caption on the notification's PREVIEW FRAME — see {@link PreviewTextField}
|
|
30742
|
+
* and {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}.
|
|
30743
|
+
*
|
|
30744
|
+
* Deliberately NOT part of {@link TimelapseTemplateSchema}: that object is
|
|
30745
|
+
* the notification's title/body, and clearing it (`template: null`) must not
|
|
30746
|
+
* silently clear the caption too.
|
|
30747
|
+
*/
|
|
30748
|
+
previewText: PreviewTextField.optional(),
|
|
30749
|
+
/** Still or animation — see {@link PreviewModeField}. */
|
|
30750
|
+
previewMode: PreviewModeField.default("image"),
|
|
30751
|
+
/** Classes the notification counts — see {@link ReportClassesField}. */
|
|
30752
|
+
reportClasses: ReportClassesField.optional(),
|
|
30173
30753
|
/** Canonical notification priority ordinal (1..5); per-target overridable. */
|
|
30174
30754
|
priority: PriorityField.default(3)
|
|
30175
30755
|
});
|
|
@@ -30180,8 +30760,13 @@ object({
|
|
|
30180
30760
|
schedule: NcScheduleSchema.optional(),
|
|
30181
30761
|
cadenceSec: CadenceSecField.optional(),
|
|
30182
30762
|
framerate: FramerateField.optional(),
|
|
30763
|
+
denseCadenceSec: DenseCadenceSecField.optional(),
|
|
30764
|
+
minDwellSec: MinDwellSecField.optional(),
|
|
30183
30765
|
targets: TargetsField.optional(),
|
|
30184
30766
|
template: TimelapseTemplateSchema.nullable().optional(),
|
|
30767
|
+
previewText: PreviewTextField.optional(),
|
|
30768
|
+
previewMode: PreviewModeField.optional(),
|
|
30769
|
+
reportClasses: ReportClassesField.optional(),
|
|
30185
30770
|
priority: PriorityField.optional()
|
|
30186
30771
|
});
|
|
30187
30772
|
TimelapseRuleInputSchema.extend({
|
|
@@ -30193,10 +30778,28 @@ TimelapseRuleInputSchema.extend({
|
|
|
30193
30778
|
*/
|
|
30194
30779
|
ownerUserId: string().optional(),
|
|
30195
30780
|
/**
|
|
30196
|
-
* Epoch-ms of the
|
|
30197
|
-
*
|
|
30781
|
+
* Epoch-ms of the NEWEST successful generation across every camera of this
|
|
30782
|
+
* rule. What a UI shows, and the compatibility floor for
|
|
30783
|
+
* {@link readTimelapseGeneratedAt}. Absent = never generated.
|
|
30198
30784
|
*/
|
|
30199
30785
|
lastGeneratedAt: number().optional(),
|
|
30786
|
+
/**
|
|
30787
|
+
* PER-CAMERA generation state, keyed by `String(deviceId)` — the
|
|
30788
|
+
* re-generation guard's real durable state.
|
|
30789
|
+
*
|
|
30790
|
+
* One rule covers several cameras and each renders its own video, so a rule
|
|
30791
|
+
* -wide stamp is wrong in the direction that DESTROYS work: camera A
|
|
30792
|
+
* succeeding at 06:05 tells camera B, whose render failed, that it is
|
|
30793
|
+
* already done — and B's night is gone for good, because the window will not
|
|
30794
|
+
* come back.
|
|
30795
|
+
*
|
|
30796
|
+
* ADDITIVE, so the migration is free: a row written before this field simply
|
|
30797
|
+
* has no map, and {@link readTimelapseGeneratedAt} falls back to
|
|
30798
|
+
* {@link TimelapseRuleSchema.shape.lastGeneratedAt}. Reading an old row as
|
|
30799
|
+
* "never generated" would re-render and re-notify every camera of every rule
|
|
30800
|
+
* once, on the deploy that shipped the map.
|
|
30801
|
+
*/
|
|
30802
|
+
generatedByDevice: record(string(), number()).optional(),
|
|
30200
30803
|
/** userId of the caller who created the rule (server-stamped). */
|
|
30201
30804
|
createdBy: string(),
|
|
30202
30805
|
createdAt: number(),
|