@camstack/addon-provider-gree 0.2.12 → 0.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/addon.js +625 -22
- package/dist/addon.mjs +625 -22
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -7222,8 +7222,31 @@ var AdoptionJobSchema = object({
|
|
|
7222
7222
|
error: string().nullable()
|
|
7223
7223
|
});
|
|
7224
7224
|
/**
|
|
7225
|
-
* Per-camera FUNCTION SWITCHES
|
|
7226
|
-
*
|
|
7225
|
+
* Per-camera FUNCTION SWITCHES.
|
|
7226
|
+
*
|
|
7227
|
+
* ## The aggregate group is being withdrawn — the BADGE is not (D113)
|
|
7228
|
+
*
|
|
7229
|
+
* This file shipped as "the one coherent on/off surface over the pipeline
|
|
7230
|
+
* functions an operator thinks in terms of". The operator's verdict on
|
|
7231
|
+
* 2026-08-12 was that the coherent surface bought complexity and no clarity:
|
|
7232
|
+
* every function already had a settings page of its own, and a second place to
|
|
7233
|
+
* turn it off is a second place to look. Each switch is going back to its own
|
|
7234
|
+
* component's original options — detection to the detection-pipeline wrapper
|
|
7235
|
+
* binding, audio analysis to its own, recording to `RecordingConfig.enabled`
|
|
7236
|
+
* (which was always first-class; the switch was a veneer over
|
|
7237
|
+
* `recording.setDeviceConfig`), notifications to a notification-center
|
|
7238
|
+
* per-device setting, the two camera planes to their own components.
|
|
7239
|
+
*
|
|
7240
|
+
* What survives is {@link composeSwitchedOff}: `CameraStatus.switchedOff`, the
|
|
7241
|
+
* thing that lets a status surface say DISABLED instead of BROKEN, recomposed
|
|
7242
|
+
* straight from the authorities with no group in the middle. That rule was
|
|
7243
|
+
* never about a control panel.
|
|
7244
|
+
*
|
|
7245
|
+
* Everything else here — {@link CAMERA_SWITCH_CATALOG}, {@link CameraSwitch},
|
|
7246
|
+
* {@link deriveCameraSwitches}, the `pipelineOrchestrator.getCameraSwitches` /
|
|
7247
|
+
* `setCameraSwitch` pair — is a COMPATIBILITY surface for as long as deployed
|
|
7248
|
+
* viewers (v1.0.305) and the admin UI still call it. It is deleted when they
|
|
7249
|
+
* stop; nothing new may be built on it.
|
|
7227
7250
|
*
|
|
7228
7251
|
* ## This file adds no state
|
|
7229
7252
|
*
|
|
@@ -7574,7 +7597,15 @@ var RecordingConfigSchema = object({
|
|
|
7574
7597
|
* Each completed/failed run also lands one durable ops-log row on its owning
|
|
7575
7598
|
* addon surface.
|
|
7576
7599
|
*/
|
|
7600
|
+
/**
|
|
7601
|
+
* `queued` exists because the recorder mover is SINGLE-FLIGHT and an operator
|
|
7602
|
+
* rebalance enqueues one job per (camera, profile). Refusing the second job —
|
|
7603
|
+
* what the engine did before — turned a fifteen-camera rebalance into fifteen
|
|
7604
|
+
* manual retries. Queued jobs run FIFO; a queued job that is cancelled never
|
|
7605
|
+
* runs at all.
|
|
7606
|
+
*/
|
|
7577
7607
|
var RelocateJobStateSchema = _enum([
|
|
7608
|
+
"queued",
|
|
7578
7609
|
"running",
|
|
7579
7610
|
"done",
|
|
7580
7611
|
"failed",
|
|
@@ -7609,6 +7640,15 @@ var RelocateFootageInputSchema = object({
|
|
|
7609
7640
|
/** Limits relocation to the logical profile class. Omit only for the
|
|
7610
7641
|
* pre-orchestration compatibility path. */
|
|
7611
7642
|
footageClass: RelocateFootageClassSchema.optional(),
|
|
7643
|
+
/** Scope the move to ONE camera. Absent = every camera on the source, which
|
|
7644
|
+
* is what a whole-disk drain means. The rebalance path always sets it: its
|
|
7645
|
+
* unit is a (camera, profile) pile, not a disk. */
|
|
7646
|
+
deviceId: number().int().optional(),
|
|
7647
|
+
/** Scope the move to specific segment profiles (`high` / `mid` / `low`).
|
|
7648
|
+
* Finer than `footageClass`, which cannot separate high from mid — and the
|
|
7649
|
+
* placement plan assigns those two independently, so a rebalance that could
|
|
7650
|
+
* only say "recordings" would move footage the plan never asked to move. */
|
|
7651
|
+
profiles: array(string()).optional(),
|
|
7612
7652
|
/** Copy throttle in MB/s (default 40) — the drain is a background chore,
|
|
7613
7653
|
* never allowed to starve live writers. */
|
|
7614
7654
|
throttleMbps: number().min(1).max(1e3).optional()
|
|
@@ -7744,6 +7784,21 @@ var StorageLocationSchema = object({
|
|
|
7744
7784
|
nodeId: string().optional(),
|
|
7745
7785
|
isDefault: boolean().default(false),
|
|
7746
7786
|
isSystem: boolean().default(false),
|
|
7787
|
+
/**
|
|
7788
|
+
* Operator opt-in: whether consumers that BALANCE across several locations
|
|
7789
|
+
* of a type may write here. Recordings reads it today; event media and
|
|
7790
|
+
* backups are the next consumers, which is why the flag lives on the
|
|
7791
|
+
* location rather than in any one addon's store — nothing has to be
|
|
7792
|
+
* extended to add the next consumer.
|
|
7793
|
+
*
|
|
7794
|
+
* OPTIONAL, and ABSENT MEANS ACTIVE. Every location persisted before the
|
|
7795
|
+
* flag existed reads back with no flag and keeps working exactly as before;
|
|
7796
|
+
* that is the whole compat story, and it is why no migration ships with it.
|
|
7797
|
+
* A newly CREATED sibling is stamped `false` by the orchestrator (creating a
|
|
7798
|
+
* disk must not silently start writing to it); the default of a type is
|
|
7799
|
+
* always stamped `true`.
|
|
7800
|
+
*/
|
|
7801
|
+
enabled: boolean().optional(),
|
|
7747
7802
|
/** COMPUTED at read time by the orchestrator (statfs of the backing volume
|
|
7748
7803
|
* for node-local locations it can reach) — never persisted, absent when the
|
|
7749
7804
|
* volume is remote/unreachable. The single capacity truth every UI reads. */
|
|
@@ -12296,7 +12351,8 @@ method(object({
|
|
|
12296
12351
|
}), EmbeddingResultSchema), method(object({ text: string() }), EmbeddingResultSchema), method(_void(), EmbeddingInfoSchema);
|
|
12297
12352
|
/**
|
|
12298
12353
|
* filesystem-browse — per-node capability for browsing the node's local
|
|
12299
|
-
* filesystem
|
|
12354
|
+
* filesystem. Reads are unconfined (whole filesystem, from `/` down); WRITES
|
|
12355
|
+
* are sandboxed to operator-configured allowed roots (D115). Used by the
|
|
12300
12356
|
* admin "Add filesystem location" flow to pick a node + path. `mode:'per-node'`
|
|
12301
12357
|
* (one provider per node); the hub calls it with `{nodeId}` so the codegen
|
|
12302
12358
|
* routes to that exact node (default `nodeIdMode:'routing'`).
|
|
@@ -14137,6 +14193,13 @@ var MaskGridDimsSchema = object({
|
|
|
14137
14193
|
* `package-event` are pure trigger kinds (no urgency dimension). Extending
|
|
14138
14194
|
* this one field keeps the schema additive — a rule still declares exactly
|
|
14139
14195
|
* one trigger.
|
|
14196
|
+
*
|
|
14197
|
+
* AUDIO rules add no member here, for the reason occupancy added none: the
|
|
14198
|
+
* enum is mirrored by hand in the viewer (`scripts/check-viewer-condition-
|
|
14199
|
+
* mirror.ts` fails the build on a member the app cannot render) and every
|
|
14200
|
+
* member costs a release train. A sustained-sound rule is therefore an
|
|
14201
|
+
* `immediate` rule carrying {@link NcConditions.audio} — the condition is the
|
|
14202
|
+
* trigger discriminator, exactly as `occupancy` is on `device-event`.
|
|
14140
14203
|
*/
|
|
14141
14204
|
var NcDeliverySchema = _enum([
|
|
14142
14205
|
"immediate",
|
|
@@ -14151,15 +14214,32 @@ var NcDeliverySchema = _enum([
|
|
|
14151
14214
|
* depend on a provider's raw event name or payload shape.
|
|
14152
14215
|
*/
|
|
14153
14216
|
var NcSystemEventKindSchema = _enum([
|
|
14154
|
-
"
|
|
14155
|
-
"
|
|
14217
|
+
"device-online",
|
|
14218
|
+
"device-offline",
|
|
14219
|
+
"device-disabled",
|
|
14220
|
+
"device-enabled",
|
|
14156
14221
|
"stream-online",
|
|
14157
14222
|
"stream-offline",
|
|
14158
14223
|
"node-online",
|
|
14159
14224
|
"node-offline",
|
|
14160
14225
|
"addon-update-available",
|
|
14161
|
-
"server-update-available"
|
|
14226
|
+
"server-update-available",
|
|
14227
|
+
"alarm-triggered",
|
|
14228
|
+
"alarm-armed",
|
|
14229
|
+
"alarm-disarmed",
|
|
14230
|
+
"camera-online",
|
|
14231
|
+
"camera-offline",
|
|
14232
|
+
"camera-disabled",
|
|
14233
|
+
"camera-enabled"
|
|
14234
|
+
]);
|
|
14235
|
+
/** The legacy tail of {@link NcSystemEventKindSchema} — see its docblock. */
|
|
14236
|
+
var NC_LEGACY_SYSTEM_EVENT_KINDS = new Set([
|
|
14237
|
+
"camera-online",
|
|
14238
|
+
"camera-offline",
|
|
14239
|
+
"camera-disabled",
|
|
14240
|
+
"camera-enabled"
|
|
14162
14241
|
]);
|
|
14242
|
+
NcSystemEventKindSchema.options.filter((kind) => !NC_LEGACY_SYSTEM_EVENT_KINDS.has(kind));
|
|
14163
14243
|
/**
|
|
14164
14244
|
* One coherent system-event condition. `kinds` is the required opt-in safety
|
|
14165
14245
|
* gate; the remaining lists are optional narrowing filters relevant to the
|
|
@@ -14168,6 +14248,18 @@ var NcSystemEventKindSchema = _enum([
|
|
|
14168
14248
|
var NcSystemEventConditionSchema = object({
|
|
14169
14249
|
kinds: array(NcSystemEventKindSchema).min(1),
|
|
14170
14250
|
deviceIds: array(number().int()).min(1).optional(),
|
|
14251
|
+
/**
|
|
14252
|
+
* Narrow a `device-*` kind to these device TYPES (`DeviceType` values —
|
|
14253
|
+
* `camera`, `switch`, `sensor`, `container`, …). Absent = every type, which
|
|
14254
|
+
* is what a liveness rule means when nobody said otherwise.
|
|
14255
|
+
*
|
|
14256
|
+
* This is where "only my cameras" is expressed, and it lives on the rule for
|
|
14257
|
+
* one reason: the intake cannot know which devices this household cares
|
|
14258
|
+
* about, and a producer-side filter is one no operator can change. Fails
|
|
14259
|
+
* CLOSED — a subject whose device type is unknown (an id the device mirror
|
|
14260
|
+
* does not carry) matches no `deviceTypes` list.
|
|
14261
|
+
*/
|
|
14262
|
+
deviceTypes: array(string().min(1)).min(1).optional(),
|
|
14171
14263
|
nodeIds: array(string().min(1)).min(1).optional(),
|
|
14172
14264
|
packageNames: array(string().min(1)).min(1).optional()
|
|
14173
14265
|
});
|
|
@@ -14218,6 +14310,47 @@ var NcOccupancyConditionSchema = object({
|
|
|
14218
14310
|
sustainSeconds: number().int().min(0).max(3600).default(15)
|
|
14219
14311
|
});
|
|
14220
14312
|
/**
|
|
14313
|
+
* Audio condition (IMMEDIATE trigger) — a rule on SOUND, not on a picture.
|
|
14314
|
+
*
|
|
14315
|
+
* Operator-approved vocabulary (2026-08-12, option A — the same one the
|
|
14316
|
+
* reference notifier uses, so an operator moving between them re-uses what
|
|
14317
|
+
* they already know): a rule matches when, over a sampling window of
|
|
14318
|
+
* `samplingSeconds`, at least `hitPercent`% of the audio samples in that
|
|
14319
|
+
* window are HITS. A sample is a hit when it satisfies BOTH present filters:
|
|
14320
|
+
*
|
|
14321
|
+
* - `dbThreshold` — its level is at or above this many dBFS (see
|
|
14322
|
+
* {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale);
|
|
14323
|
+
* - `labels` — the classifier put at least one of these labels on it.
|
|
14324
|
+
*
|
|
14325
|
+
* Both are OPTIONAL and independent, which is the point of the shape: a
|
|
14326
|
+
* loudness rule ("something loud at 3am") needs no model to be right, and a
|
|
14327
|
+
* label rule ("a dog barked") needs no threshold. **Fail-closed when NEITHER
|
|
14328
|
+
* is given** — a window in which every sample is trivially a hit would fire on
|
|
14329
|
+
* silence, so the engine refuses such a condition rather than notifying on
|
|
14330
|
+
* nothing (the schema cannot express "at least one of" without becoming a
|
|
14331
|
+
* ZodEffects the cap path would have to special-case).
|
|
14332
|
+
*
|
|
14333
|
+
* `hitPercent` is over the samples the window actually HOLDS, and the window
|
|
14334
|
+
* must be FULL before it can match — a window that has been open for two
|
|
14335
|
+
* seconds of its ten is 100% of nothing, and firing on it would make
|
|
14336
|
+
* `samplingSeconds` decorative.
|
|
14337
|
+
*
|
|
14338
|
+
* Labels are the audio macro classes (`AUDIO_MACRO_LABELS` / the NC taxonomy's
|
|
14339
|
+
* `audio-*` ids). Both spellings are accepted — the matcher normalizes the
|
|
14340
|
+
* `audio-` prefix away on both sides, so a picker that offers taxonomy ids and
|
|
14341
|
+
* an operator who typed `dog` mean the same thing.
|
|
14342
|
+
*/
|
|
14343
|
+
var NcAudioConditionSchema = object({
|
|
14344
|
+
/** Audio macro labels; absent = any sound (level-only rule). */
|
|
14345
|
+
labels: array(string().min(1)).min(1).optional(),
|
|
14346
|
+
/** Level floor in dBFS (negative-going, `0` = full scale); absent = any level. */
|
|
14347
|
+
dbThreshold: number().min(-96).max(0).optional(),
|
|
14348
|
+
/** Percentage of the window's samples that must be hits (1–100). */
|
|
14349
|
+
hitPercent: number().int().min(1).max(100).default(60),
|
|
14350
|
+
/** Length of the sampling window in seconds. */
|
|
14351
|
+
samplingSeconds: number().int().min(1).max(300).default(10)
|
|
14352
|
+
});
|
|
14353
|
+
/**
|
|
14221
14354
|
* Which zone-crossing DIRECTION a rule accepts (`ObjectEvent.zoneCrossing`).
|
|
14222
14355
|
*
|
|
14223
14356
|
* The values are not symmetric, and deliberately so — the absent value has to
|
|
@@ -14490,7 +14623,33 @@ var NcConditionsSchema = object({
|
|
|
14490
14623
|
* threshold and holds for `sustainSeconds`. Fail-closed on missing
|
|
14491
14624
|
* substrate (no snapshot / missing zone). See {@link NcOccupancyCondition}.
|
|
14492
14625
|
*/
|
|
14493
|
-
occupancy: NcOccupancyConditionSchema.optional()
|
|
14626
|
+
occupancy: NcOccupancyConditionSchema.optional(),
|
|
14627
|
+
/**
|
|
14628
|
+
* IMMEDIATE only. Sustained-sound matcher — `hitPercent` of the samples in a
|
|
14629
|
+
* `samplingSeconds` window clear the optional `dbThreshold` and carry one of
|
|
14630
|
+
* the optional `labels`. Fail-closed on missing substrate (no audio samples,
|
|
14631
|
+
* a window that is not full yet, neither filter given). See
|
|
14632
|
+
* {@link NcAudioCondition}.
|
|
14633
|
+
*
|
|
14634
|
+
* Presence of this key is what makes a rule an AUDIO rule: the engine fires
|
|
14635
|
+
* it ONLY on a confirmed audio window, and a rule carrying it never fires on
|
|
14636
|
+
* a detection, a track or a device event (the same fail-closed pairing
|
|
14637
|
+
* `occupancy` has with the `device-event` trigger). That is how audio labels
|
|
14638
|
+
* leave `classes`: an audio rule names its sounds HERE, and the legacy path
|
|
14639
|
+
* (an `immediate` rule naming an `audio-*` class, one notification per
|
|
14640
|
+
* classified sample) stays exactly as it was for rules that already use it.
|
|
14641
|
+
*
|
|
14642
|
+
* NOT in {@link NC_CONDITION_CATALOG} yet, and that is the sequencing rule
|
|
14643
|
+
* rather than an oversight: the viewer mirrors the descriptor enums BY HAND
|
|
14644
|
+
* (`camstack/src/data/notification-center.ts`, guarded by
|
|
14645
|
+
* `scripts/check-viewer-condition-mirror.ts`) and its rule editor STRIPS the
|
|
14646
|
+
* condition fields it does not know when a rule is saved from the phone.
|
|
14647
|
+
* Publishing an editor for a condition the app cannot round-trip is how an
|
|
14648
|
+
* operator loses a rule's conditions by opening it — so the descriptor, the
|
|
14649
|
+
* admin widget and the viewer mirror land together (P2 + P3), and only then
|
|
14650
|
+
* does an audio rule become authorable.
|
|
14651
|
+
*/
|
|
14652
|
+
audio: NcAudioConditionSchema.optional()
|
|
14494
14653
|
});
|
|
14495
14654
|
/** One delivery target: a `notification-output` Target ref + passthrough params. */
|
|
14496
14655
|
var NcRuleTargetSchema = object({
|
|
@@ -14604,6 +14763,73 @@ var NcThrottleSchema = object({
|
|
|
14604
14763
|
*/
|
|
14605
14764
|
granularity: NcThrottleGranularitySchema.optional()
|
|
14606
14765
|
});
|
|
14766
|
+
/**
|
|
14767
|
+
* How long the confirm gate may hold ONE notification, and how big the picture
|
|
14768
|
+
* it judges may be.
|
|
14769
|
+
*
|
|
14770
|
+
* The clamp is the product decision, not a coincidence of the model: p50 was
|
|
14771
|
+
* 4.9 s warm and 15.3 s cold against qwen3-vl-8b, and a notification that
|
|
14772
|
+
* arrives after the visitor has gone is not a notification. 448 px was enough
|
|
14773
|
+
* to score 16/16 on the operator's parking scenario — bigger costs latency and
|
|
14774
|
+
* tokens for pixels the model pools away.
|
|
14775
|
+
*/
|
|
14776
|
+
var NC_CONFIRM_MIN_TIMEOUT_MS = 1e3;
|
|
14777
|
+
var NC_CONFIRM_MAX_TIMEOUT_MS = 2e4;
|
|
14778
|
+
var NC_CONFIRM_DEFAULT_TIMEOUT_MS = 8e3;
|
|
14779
|
+
/** Comparison the model's COUNT must satisfy for the notification to fire. */
|
|
14780
|
+
var NcConfirmExpectSchema = object({
|
|
14781
|
+
op: _enum([
|
|
14782
|
+
">=",
|
|
14783
|
+
">",
|
|
14784
|
+
"<=",
|
|
14785
|
+
"<",
|
|
14786
|
+
"=="
|
|
14787
|
+
]),
|
|
14788
|
+
count: number().int().min(0).max(1e3)
|
|
14789
|
+
});
|
|
14790
|
+
/**
|
|
14791
|
+
* AI CONFIRM — a vision model looks at the picture this notification is about
|
|
14792
|
+
* to ship and says whether it agrees with the rule.
|
|
14793
|
+
*
|
|
14794
|
+
* It runs AFTER the attachments resolve, deliberately: the crop JUDGED is the
|
|
14795
|
+
* crop SHIPPED (D52). A verdict about a different pixel rectangle than the one
|
|
14796
|
+
* on the operator's phone is not a verdict about this notification.
|
|
14797
|
+
*
|
|
14798
|
+
* FAIL-OPEN is the only safe default. A gate that cannot reach its model, or
|
|
14799
|
+
* whose model is cold, must not silence a camera — so `onTimeout: 'fire'` is
|
|
14800
|
+
* the default and every fail-open is COUNTED, because a gate that always fails
|
|
14801
|
+
* open looks in the log exactly like a gate that works.
|
|
14802
|
+
*
|
|
14803
|
+
* Every field is `.optional()` rather than relied on as a Zod default at the
|
|
14804
|
+
* runtime seam: a Zod default does NOT run on the addon→addon cap path (three
|
|
14805
|
+
* production failures in one day), so the gate reads absent as the constant
|
|
14806
|
+
* above rather than trusting a parse it may never have seen.
|
|
14807
|
+
*/
|
|
14808
|
+
var NcConfirmSchema = object({
|
|
14809
|
+
/** Off unless asked for. An absent `confirm` and `enabled:false` are the
|
|
14810
|
+
* same thing, and both mean "deliver exactly as before". */
|
|
14811
|
+
enabled: boolean().default(false),
|
|
14812
|
+
/** Explicit vision profile; absent = the `purpose:'vision'` cluster default. */
|
|
14813
|
+
profileId: string().optional(),
|
|
14814
|
+
/**
|
|
14815
|
+
* The operator's question, in his own words. Absent = a question derived
|
|
14816
|
+
* from the rule (its class and its expectation).
|
|
14817
|
+
*
|
|
14818
|
+
* NEVER composed with text READ OUT OF THE FRAME. The model reads OSD
|
|
14819
|
+
* banners, signage and plates as instructions if you let them reach the
|
|
14820
|
+
* prompt — proven live — so the authoritative contract stays in the system
|
|
14821
|
+
* turn and only rule-authored words land here.
|
|
14822
|
+
*/
|
|
14823
|
+
prompt: string().max(1e3).optional(),
|
|
14824
|
+
/** Fire only when the model's count satisfies this. Absent = the model's
|
|
14825
|
+
* own boolean verdict decides. */
|
|
14826
|
+
expect: NcConfirmExpectSchema.optional(),
|
|
14827
|
+
timeoutMs: number().int().min(NC_CONFIRM_MIN_TIMEOUT_MS).max(NC_CONFIRM_MAX_TIMEOUT_MS).default(NC_CONFIRM_DEFAULT_TIMEOUT_MS),
|
|
14828
|
+
/** What a timeout / unreachable model MEANS. `fire` (default) = fail-open. */
|
|
14829
|
+
onTimeout: _enum(["fire", "suppress"]).default("fire"),
|
|
14830
|
+
/** Longest edge the judged image is downscaled to before it is sent. */
|
|
14831
|
+
maxImagePx: number().int().min(64).max(2048).default(448)
|
|
14832
|
+
});
|
|
14607
14833
|
/** Client-supplied rule fields (server stamps id/createdBy/createdAt/updatedAt). */
|
|
14608
14834
|
var NcRuleInputSchema = object({
|
|
14609
14835
|
name: string().min(1).max(200),
|
|
@@ -14664,7 +14890,13 @@ var NcRuleInputSchema = object({
|
|
|
14664
14890
|
* `{ cap: 'alarm-panel', method: 'arm', args: { mode: 'away' } }`, the same
|
|
14665
14891
|
* shape as every other actuation.
|
|
14666
14892
|
*/
|
|
14667
|
-
actions: NcRuleActionsSchema.optional()
|
|
14893
|
+
actions: NcRuleActionsSchema.optional(),
|
|
14894
|
+
/**
|
|
14895
|
+
* AI CONFIRM — see {@link NcConfirmSchema}. `.optional()`, never defaulted:
|
|
14896
|
+
* a rule that predates the gate must keep delivering byte-for-byte as it
|
|
14897
|
+
* did, and absent is the only way to say that without a migration.
|
|
14898
|
+
*/
|
|
14899
|
+
confirm: NcConfirmSchema.optional()
|
|
14668
14900
|
});
|
|
14669
14901
|
/**
|
|
14670
14902
|
* Partial patch for `updateRule` — any subset of the input fields, plus the
|
|
@@ -14675,7 +14907,37 @@ var NcRuleInputSchema = object({
|
|
|
14675
14907
|
* still flow through `nc.setRuleTargetEnabled` (owner-checked), never a raw
|
|
14676
14908
|
* `updateRule` patch.
|
|
14677
14909
|
*/
|
|
14678
|
-
var NcRulePatchSchema = NcRuleInputSchema.partial().extend({
|
|
14910
|
+
var NcRulePatchSchema = NcRuleInputSchema.partial().extend({
|
|
14911
|
+
disabledTargetIds: array(string()).optional(),
|
|
14912
|
+
/**
|
|
14913
|
+
* `.partial()` DOES NOT REMOVE A FIELD'S `.default()`.
|
|
14914
|
+
*
|
|
14915
|
+
* It makes the key optional to SUPPLY; the parse still materialises the
|
|
14916
|
+
* default when the key is absent. And `NcRuleStore.update` merges with
|
|
14917
|
+
* `{ ...existing, ...patch }`, so a materialised key OVERWRITES the stored
|
|
14918
|
+
* one — which made every partial edit destructive:
|
|
14919
|
+
*
|
|
14920
|
+
* nc.updateRule({ throttle }) → conditions reset to `{}`
|
|
14921
|
+
* nc.setRuleTargetEnabled(...) → conditions reset to `{}`
|
|
14922
|
+
* setEnabled(ruleId, false) → conditions reset to `{}`
|
|
14923
|
+
*
|
|
14924
|
+
* A rule scoped to one camera and one zone silently became a rule that
|
|
14925
|
+
* matches EVERY event on EVERY camera, and lost its `media` policy
|
|
14926
|
+
* (zoneCrop / gif / clip / frame) and its `priority` at the same time. Seen
|
|
14927
|
+
* live on 2026-08-12: a rule scoped to device 617 fired on 590 and 615
|
|
14928
|
+
* within a minute of a two-field patch.
|
|
14929
|
+
*
|
|
14930
|
+
* So every defaulted field is re-declared here WITHOUT its default. The
|
|
14931
|
+
* inner defaults still apply when the caller DOES send the key — `{}` for
|
|
14932
|
+
* conditions remains a real instruction ("clear them") — and only the
|
|
14933
|
+
* absent key is now genuinely absent.
|
|
14934
|
+
*/
|
|
14935
|
+
enabled: boolean().optional(),
|
|
14936
|
+
conditions: NcConditionsSchema.optional(),
|
|
14937
|
+
media: NcMediaPolicySchema.optional(),
|
|
14938
|
+
throttle: NcThrottleSchema.optional(),
|
|
14939
|
+
priority: number().int().min(1).max(5).optional()
|
|
14940
|
+
});
|
|
14679
14941
|
/** A persisted rule. */
|
|
14680
14942
|
var NcRuleSchema = NcRuleInputSchema.extend({
|
|
14681
14943
|
id: string(),
|
|
@@ -14976,6 +15238,25 @@ var NcAlarmSettingsPatchSchema = NcAlarmSettingsSchema.partial();
|
|
|
14976
15238
|
* Never authored, never stored — see `alarm-mode-coverage.ts` for why a stored
|
|
14977
15239
|
* copy would lie the first time a rule is disabled.
|
|
14978
15240
|
*/
|
|
15241
|
+
/**
|
|
15242
|
+
* Why a device a mode NAMES is nonetheless not armed by it.
|
|
15243
|
+
*
|
|
15244
|
+
* Each value is an existing authority, never a new flag (D62): `muted` is the
|
|
15245
|
+
* per-camera notification switch the Notification Center already owns,
|
|
15246
|
+
* `detection-off` is the device's own detection binding being inactive, and
|
|
15247
|
+
* `offline` is the device manager's liveness. A fourth reason would mean a
|
|
15248
|
+
* fourth authority, and inventing one here is how a panel starts disagreeing
|
|
15249
|
+
* with the switches the operator actually used.
|
|
15250
|
+
*/
|
|
15251
|
+
var NcAlarmSkipReasonSchema = _enum([
|
|
15252
|
+
"muted",
|
|
15253
|
+
"detection-off",
|
|
15254
|
+
"offline"
|
|
15255
|
+
]);
|
|
15256
|
+
var NcAlarmSkippedDeviceSchema = object({
|
|
15257
|
+
deviceId: number().int(),
|
|
15258
|
+
reason: NcAlarmSkipReasonSchema
|
|
15259
|
+
});
|
|
14979
15260
|
var NcAlarmModeCoverageSchema = object({
|
|
14980
15261
|
mode: AlarmArmModeSchema,
|
|
14981
15262
|
/** Enabled rules gated on `armed_<mode>`. Zero means the mode does nothing. */
|
|
@@ -14983,7 +15264,18 @@ var NcAlarmModeCoverageSchema = object({
|
|
|
14983
15264
|
/** At least one covering rule has no device scope, so the mode covers all. */
|
|
14984
15265
|
allDevices: boolean(),
|
|
14985
15266
|
/** Ids named by the covering rules. A SUBSET when `allDevices` is true. */
|
|
14986
|
-
deviceIds: array(number().int())
|
|
15267
|
+
deviceIds: array(number().int()),
|
|
15268
|
+
/**
|
|
15269
|
+
* Devices this mode NAMES but cannot actually arm, each with the switch that
|
|
15270
|
+
* excludes it.
|
|
15271
|
+
*
|
|
15272
|
+
* "Away armed — 12 cameras" is a promise, and a muted camera among those
|
|
15273
|
+
* twelve makes it false in exactly the way nobody notices until an incident.
|
|
15274
|
+
* Defaulted to `[]` so a coverage answer computed before this field existed
|
|
15275
|
+
* still parses as "nothing known to be skipped" rather than failing the whole
|
|
15276
|
+
* alarm tab.
|
|
15277
|
+
*/
|
|
15278
|
+
skippedDevices: array(NcAlarmSkippedDeviceSchema).default([])
|
|
14987
15279
|
});
|
|
14988
15280
|
var NcAlarmConfigSchema = object({
|
|
14989
15281
|
/**
|
|
@@ -17815,9 +18107,16 @@ var CameraStatusSchema = object({
|
|
|
17815
18107
|
audio: CameraAudioStatusSchema.nullable(),
|
|
17816
18108
|
recording: CameraRecordingStatusSchema.nullable(),
|
|
17817
18109
|
/**
|
|
17818
|
-
* Per-camera
|
|
18110
|
+
* Per-camera functions an OPERATOR has turned off
|
|
17819
18111
|
* ([D61](../../../../docs/decisions/adr-0067.md)).
|
|
17820
18112
|
*
|
|
18113
|
+
* Composed from the AUTHORITIES themselves — the wrapper bindings,
|
|
18114
|
+
* `RecordingConfig.enabled`, the notification mute, the broker's audio
|
|
18115
|
+
* policy, the camera's own microphone — via `composeSwitchedOff`, not from
|
|
18116
|
+
* the deprecated `getCameraSwitches` group ([D113](../../../../docs/decisions/adr-0113.md)).
|
|
18117
|
+
* The badge outlives the control panel: the panel was a convenience, this is
|
|
18118
|
+
* the difference between a camera being off and a camera being dead.
|
|
18119
|
+
*
|
|
17821
18120
|
* This is the difference between DISABLED and BROKEN. A camera whose
|
|
17822
18121
|
* `detection` block reports zero fps and whose `switchedOff` contains
|
|
17823
18122
|
* `'object-detection'` was switched off by a person; the same camera with an
|
|
@@ -24559,7 +24858,19 @@ var RecordingManifestSchema = object({
|
|
|
24559
24858
|
* profiles/subtrees/locations on this node). */
|
|
24560
24859
|
var RecordingDeviceUsageSchema = object({
|
|
24561
24860
|
deviceId: number(),
|
|
24562
|
-
usedBytes: number()
|
|
24861
|
+
usedBytes: number(),
|
|
24862
|
+
/**
|
|
24863
|
+
* Start of this camera's OLDEST indexed segment, across every profile and
|
|
24864
|
+
* location — the "Oldest footage" column in Recordings → Storage, and the
|
|
24865
|
+
* only honest answer to "is retention actually holding?" per camera.
|
|
24866
|
+
*
|
|
24867
|
+
* `null` = the camera has no footage. OPTIONAL because a recorder that
|
|
24868
|
+
* predates this field omits it entirely, and a hub whose types carry the
|
|
24869
|
+
* field must keep validating that older provider's payload: the framework
|
|
24870
|
+
* (types) and the addon ship on different trains, and the addon is usually
|
|
24871
|
+
* the later of the two.
|
|
24872
|
+
*/
|
|
24873
|
+
oldestMs: number().nullable().optional()
|
|
24563
24874
|
});
|
|
24564
24875
|
/** Recording storage usage + capacity for one storage location. */
|
|
24565
24876
|
var RecordingLocationUsageSchema = object({
|
|
@@ -24587,6 +24898,57 @@ var RecordingStorageUsageSchema = object({
|
|
|
24587
24898
|
locations: array(RecordingLocationUsageSchema)
|
|
24588
24899
|
});
|
|
24589
24900
|
/**
|
|
24901
|
+
* The OPERATOR-ARMED half of multi-location recordings (D116).
|
|
24902
|
+
*
|
|
24903
|
+
* The placement plan decides where NEW writes go and moves nothing. A rebalance
|
|
24904
|
+
* is the operator asking for the EXISTING archive to be brought into line with
|
|
24905
|
+
* that plan: one relocate job per (camera, profile) pile that sits on the wrong
|
|
24906
|
+
* location, run FIFO behind the single-flight mover.
|
|
24907
|
+
*
|
|
24908
|
+
* `plan…` and `start…` return the SAME shape deliberately — what the operator
|
|
24909
|
+
* confirms is exactly what gets enqueued, and `jobIds` is the only difference
|
|
24910
|
+
* (empty on the plan).
|
|
24911
|
+
*/
|
|
24912
|
+
var RecordingRebalanceMoveSchema = object({
|
|
24913
|
+
deviceId: number(),
|
|
24914
|
+
profile: string(),
|
|
24915
|
+
fromLocationId: string(),
|
|
24916
|
+
toLocationId: string(),
|
|
24917
|
+
bytes: number(),
|
|
24918
|
+
files: number().int()
|
|
24919
|
+
});
|
|
24920
|
+
/** Why a pile that is out of place is staying there. Every refusal is
|
|
24921
|
+
* reported: a rebalance that silently drops a camera reads exactly like one
|
|
24922
|
+
* that had nothing to do. */
|
|
24923
|
+
var RecordingRebalanceSkipReasonSchema = _enum([
|
|
24924
|
+
"unassigned",
|
|
24925
|
+
"target-not-writable",
|
|
24926
|
+
"below-threshold",
|
|
24927
|
+
"no-headroom"
|
|
24928
|
+
]);
|
|
24929
|
+
var RecordingRebalanceSkipSchema = object({
|
|
24930
|
+
deviceId: number(),
|
|
24931
|
+
profile: string(),
|
|
24932
|
+
fromLocationId: string(),
|
|
24933
|
+
/** The location the plan wants; null when the camera has no assignment. */
|
|
24934
|
+
toLocationId: string().nullable(),
|
|
24935
|
+
bytes: number(),
|
|
24936
|
+
reason: RecordingRebalanceSkipReasonSchema
|
|
24937
|
+
});
|
|
24938
|
+
var RecordingRebalancePlanSchema = object({
|
|
24939
|
+
moves: array(RecordingRebalanceMoveSchema),
|
|
24940
|
+
skipped: array(RecordingRebalanceSkipSchema),
|
|
24941
|
+
bytesToMove: number(),
|
|
24942
|
+
/** Relocate job ids enqueued. Always empty for the plan (dry-run) call. */
|
|
24943
|
+
jobIds: array(string())
|
|
24944
|
+
});
|
|
24945
|
+
var RecordingRebalanceInputSchema = object({
|
|
24946
|
+
/** Copy throttle in MB/s (default 40) — a rebalance is a background chore. */
|
|
24947
|
+
throttleMbps: number().min(1).max(1e3).optional(),
|
|
24948
|
+
/** Ignore piles smaller than this (default 1 GB). */
|
|
24949
|
+
minMoveGb: number().min(0).optional()
|
|
24950
|
+
});
|
|
24951
|
+
/**
|
|
24590
24952
|
* Result of locating footage at a wall-clock instant for one device/profile.
|
|
24591
24953
|
* `segment` carries the covering segment's window; `gap` reports the forward
|
|
24592
24954
|
* nearest covered edge (`null` past the end of footage / when none exists)
|
|
@@ -24749,9 +25111,24 @@ method(object({
|
|
|
24749
25111
|
}), method(object({ jobId: string() }), RelocateJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
24750
25112
|
kind: "mutation",
|
|
24751
25113
|
auth: "admin"
|
|
25114
|
+
}), method(RelocateFootageInputSchema, object({ jobId: string() }), {
|
|
25115
|
+
kind: "mutation",
|
|
25116
|
+
auth: "admin"
|
|
25117
|
+
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
25118
|
+
kind: "query",
|
|
25119
|
+
auth: "admin"
|
|
25120
|
+
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
25121
|
+
kind: "mutation",
|
|
25122
|
+
auth: "admin"
|
|
25123
|
+
}), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
|
|
25124
|
+
kind: "query",
|
|
25125
|
+
auth: "admin"
|
|
25126
|
+
}), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
|
|
25127
|
+
kind: "mutation",
|
|
25128
|
+
auth: "admin"
|
|
24752
25129
|
});
|
|
24753
25130
|
/**
|
|
24754
|
-
* `
|
|
25131
|
+
* `recording-export` cap — render a footage time range into a single downloadable
|
|
24755
25132
|
* MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
|
|
24756
25133
|
* bounded lifetime with a durable history, auto-expiry, and optional
|
|
24757
25134
|
* delete-after-download.
|
|
@@ -24766,10 +25143,42 @@ method(object({
|
|
|
24766
25143
|
*/
|
|
24767
25144
|
/** Playback-speed multiplier for the render (1 = realtime). */
|
|
24768
25145
|
var ExportSpeedSchema = number().min(.25).max(32);
|
|
25146
|
+
/**
|
|
25147
|
+
* One dense interval, in SECONDS FROM THE EXPORT'S OWN `fromMs`.
|
|
25148
|
+
*
|
|
25149
|
+
* Relative and not absolute epoch on purpose: the renderer's frame-select
|
|
25150
|
+
* expression sees ffmpeg's `t`, which starts at 0 for the export's source
|
|
25151
|
+
* playlist. Handing it absolute epochs would make every call site responsible
|
|
25152
|
+
* for the same subtraction, and the one that forgot would emit a filter that
|
|
25153
|
+
* selects nothing — silently, as a uniform timelapse.
|
|
25154
|
+
*/
|
|
25155
|
+
var ExportDenseRangeSchema = object({
|
|
25156
|
+
fromSec: number().nonnegative(),
|
|
25157
|
+
toSec: number().nonnegative()
|
|
25158
|
+
}).refine((r) => r.toSec > r.fromSec, { message: "dense range must have toSec > fromSec" });
|
|
25159
|
+
/**
|
|
25160
|
+
* Dense-interval overlay for a timelapse: sample at `dense.everyMs` INSIDE the
|
|
25161
|
+
* listed ranges and at the base `everyMs` everywhere else.
|
|
25162
|
+
*
|
|
25163
|
+
* `everyMs` must be strictly smaller than the base cadence — a dense rate that
|
|
25164
|
+
* is not denser renders a uniform timelapse the operator believes is two-rate.
|
|
25165
|
+
*/
|
|
25166
|
+
var ExportDenseSchema = object({
|
|
25167
|
+
everyMs: number().int().positive(),
|
|
25168
|
+
ranges: array(ExportDenseRangeSchema).min(1).max(200)
|
|
25169
|
+
});
|
|
24769
25170
|
/** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
|
|
24770
25171
|
var ExportTimelapseSchema = object({
|
|
24771
25172
|
everyMs: number().int().positive(),
|
|
24772
|
-
outputFps: number().int().min(1).max(60).optional()
|
|
25173
|
+
outputFps: number().int().min(1).max(60).optional(),
|
|
25174
|
+
/** Optional second, FASTER rate over the intervals that matter. */
|
|
25175
|
+
dense: ExportDenseSchema.optional()
|
|
25176
|
+
}).superRefine((v, ctx) => {
|
|
25177
|
+
if (v.dense !== void 0 && v.dense.everyMs >= v.everyMs) ctx.addIssue({
|
|
25178
|
+
code: ZodIssueCode.custom,
|
|
25179
|
+
message: "dense.everyMs must be strictly smaller than the base everyMs",
|
|
25180
|
+
path: ["dense", "everyMs"]
|
|
25181
|
+
});
|
|
24773
25182
|
});
|
|
24774
25183
|
/**
|
|
24775
25184
|
* Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
|
|
@@ -24827,6 +25236,19 @@ var ExportDownloadSchema = object({
|
|
|
24827
25236
|
url: string(),
|
|
24828
25237
|
endpoints: array(string())
|
|
24829
25238
|
});
|
|
25239
|
+
/**
|
|
25240
|
+
* A finished export's bytes, inline.
|
|
25241
|
+
*
|
|
25242
|
+
* `bytes` is the DECODED length — the number the caller bounds and logs
|
|
25243
|
+
* against, so nobody has to infer it from the base64 length.
|
|
25244
|
+
*/
|
|
25245
|
+
var ExportBytesSchema = object({
|
|
25246
|
+
base64: string(),
|
|
25247
|
+
contentType: string(),
|
|
25248
|
+
/** Suggested filename, extension included. */
|
|
25249
|
+
name: string(),
|
|
25250
|
+
bytes: number().int().nonnegative()
|
|
25251
|
+
});
|
|
24830
25252
|
method(object({
|
|
24831
25253
|
deviceId: number(),
|
|
24832
25254
|
profile: string(),
|
|
@@ -24851,6 +25273,9 @@ method(object({
|
|
|
24851
25273
|
}), method(object({ exportId: string() }), ExportDownloadSchema, {
|
|
24852
25274
|
kind: "query",
|
|
24853
25275
|
auth: "protected"
|
|
25276
|
+
}), method(object({ exportId: string() }), ExportBytesSchema, {
|
|
25277
|
+
kind: "query",
|
|
25278
|
+
auth: "protected"
|
|
24854
25279
|
});
|
|
24855
25280
|
/**
|
|
24856
25281
|
* scene-monitor — device-scoped reference-region state cap. An operator marks
|
|
@@ -31528,6 +31953,12 @@ Object.freeze({
|
|
|
31528
31953
|
addonId: null,
|
|
31529
31954
|
access: "create"
|
|
31530
31955
|
},
|
|
31956
|
+
"recording.cancelRelocateJob": {
|
|
31957
|
+
capName: "recording",
|
|
31958
|
+
capScope: "system",
|
|
31959
|
+
addonId: null,
|
|
31960
|
+
access: "create"
|
|
31961
|
+
},
|
|
31531
31962
|
"recording.cancelStorageMigrationMove": {
|
|
31532
31963
|
capName: "recording",
|
|
31533
31964
|
capScope: "system",
|
|
@@ -31582,6 +32013,12 @@ Object.freeze({
|
|
|
31582
32013
|
addonId: null,
|
|
31583
32014
|
access: "view"
|
|
31584
32015
|
},
|
|
32016
|
+
"recording.listRelocateJobs": {
|
|
32017
|
+
capName: "recording",
|
|
32018
|
+
capScope: "system",
|
|
32019
|
+
addonId: null,
|
|
32020
|
+
access: "view"
|
|
32021
|
+
},
|
|
31585
32022
|
"recording.locateSegment": {
|
|
31586
32023
|
capName: "recording",
|
|
31587
32024
|
capScope: "system",
|
|
@@ -31594,6 +32031,12 @@ Object.freeze({
|
|
|
31594
32031
|
addonId: null,
|
|
31595
32032
|
access: "create"
|
|
31596
32033
|
},
|
|
32034
|
+
"recording.planStorageRebalance": {
|
|
32035
|
+
capName: "recording",
|
|
32036
|
+
capScope: "system",
|
|
32037
|
+
addonId: null,
|
|
32038
|
+
access: "view"
|
|
32039
|
+
},
|
|
31597
32040
|
"recording.pruneFootage": {
|
|
31598
32041
|
capName: "recording",
|
|
31599
32042
|
capScope: "system",
|
|
@@ -31618,6 +32061,12 @@ Object.freeze({
|
|
|
31618
32061
|
addonId: null,
|
|
31619
32062
|
access: "create"
|
|
31620
32063
|
},
|
|
32064
|
+
"recording.relocateFootage": {
|
|
32065
|
+
capName: "recording",
|
|
32066
|
+
capScope: "system",
|
|
32067
|
+
addonId: null,
|
|
32068
|
+
access: "create"
|
|
32069
|
+
},
|
|
31621
32070
|
"recording.renderClip": {
|
|
31622
32071
|
capName: "recording",
|
|
31623
32072
|
capScope: "system",
|
|
@@ -31654,38 +32103,50 @@ Object.freeze({
|
|
|
31654
32103
|
addonId: null,
|
|
31655
32104
|
access: "create"
|
|
31656
32105
|
},
|
|
32106
|
+
"recording.startStorageRebalance": {
|
|
32107
|
+
capName: "recording",
|
|
32108
|
+
capScope: "system",
|
|
32109
|
+
addonId: null,
|
|
32110
|
+
access: "create"
|
|
32111
|
+
},
|
|
31657
32112
|
"recordingExport.cancelExport": {
|
|
31658
|
-
capName: "
|
|
32113
|
+
capName: "recording-export",
|
|
31659
32114
|
capScope: "system",
|
|
31660
32115
|
addonId: null,
|
|
31661
32116
|
access: "create"
|
|
31662
32117
|
},
|
|
31663
32118
|
"recordingExport.createExport": {
|
|
31664
|
-
capName: "
|
|
32119
|
+
capName: "recording-export",
|
|
31665
32120
|
capScope: "system",
|
|
31666
32121
|
addonId: null,
|
|
31667
32122
|
access: "create"
|
|
31668
32123
|
},
|
|
31669
32124
|
"recordingExport.deleteExport": {
|
|
31670
|
-
capName: "
|
|
32125
|
+
capName: "recording-export",
|
|
31671
32126
|
capScope: "system",
|
|
31672
32127
|
addonId: null,
|
|
31673
32128
|
access: "delete"
|
|
31674
32129
|
},
|
|
31675
32130
|
"recordingExport.getDownloadUrl": {
|
|
31676
|
-
capName: "
|
|
32131
|
+
capName: "recording-export",
|
|
31677
32132
|
capScope: "system",
|
|
31678
32133
|
addonId: null,
|
|
31679
32134
|
access: "view"
|
|
31680
32135
|
},
|
|
31681
32136
|
"recordingExport.getExport": {
|
|
31682
|
-
capName: "
|
|
32137
|
+
capName: "recording-export",
|
|
31683
32138
|
capScope: "system",
|
|
31684
32139
|
addonId: null,
|
|
31685
32140
|
access: "view"
|
|
31686
32141
|
},
|
|
31687
32142
|
"recordingExport.listExports": {
|
|
31688
|
-
capName: "
|
|
32143
|
+
capName: "recording-export",
|
|
32144
|
+
capScope: "system",
|
|
32145
|
+
addonId: null,
|
|
32146
|
+
access: "view"
|
|
32147
|
+
},
|
|
32148
|
+
"recordingExport.readExportBytes": {
|
|
32149
|
+
capName: "recording-export",
|
|
31689
32150
|
capScope: "system",
|
|
31690
32151
|
addonId: null,
|
|
31691
32152
|
access: "view"
|
|
@@ -33062,6 +33523,104 @@ var FramerateField = number().int().min(1).max(60);
|
|
|
33062
33523
|
var TargetsField = array(NcRuleTargetSchema).min(1);
|
|
33063
33524
|
var PriorityField = number().int().min(1).max(5);
|
|
33064
33525
|
/**
|
|
33526
|
+
* Explicit override of the DENSE sampling cadence, seconds.
|
|
33527
|
+
*
|
|
33528
|
+
* Absent ⇒ derived as `max(1s, cadenceSec / 30)` — a 30 s base samples every
|
|
33529
|
+
* 1 s inside a detection range. (It was `base / 10` until 2026-08-12, which
|
|
33530
|
+
* made that same base 3 s and rendered a person pass as two frames.)
|
|
33531
|
+
*
|
|
33532
|
+
* THE ARITHMETIC. A detection range of `rangeSec` seconds sampled every
|
|
33533
|
+
* `denseCadenceSec` and played at `framerate` occupies
|
|
33534
|
+
*
|
|
33535
|
+
* outputSeconds = (rangeSec / denseCadenceSec) / framerate
|
|
33536
|
+
*
|
|
33537
|
+
* 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.
|
|
33538
|
+
* Halving this field doubles the frames INSIDE ranges only — the base cadence,
|
|
33539
|
+
* and therefore the length of a quiet night, does not move.
|
|
33540
|
+
*
|
|
33541
|
+
* Floored at {@link TIMELAPSE_DENSE_FLOOR_SEC}: asking for frames faster than
|
|
33542
|
+
* the recording has them returns the same frames, requested twice. Must be
|
|
33543
|
+
* STRICTLY smaller than `cadenceSec` — a dense rate that is not denser renders
|
|
33544
|
+
* a uniform video the operator believes is two-rate — and upsert refuses it
|
|
33545
|
+
* rather than letting the export cap reject the render hours after the window.
|
|
33546
|
+
*/
|
|
33547
|
+
var DenseCadenceSecField = number().min(.1).max(3600);
|
|
33548
|
+
/**
|
|
33549
|
+
* Minimum seconds of OUTPUT video each detection range must occupy.
|
|
33550
|
+
*
|
|
33551
|
+
* The operator-facing form of the arithmetic above: instead of solving for a
|
|
33552
|
+
* cadence, state the dwell and let the renderer solve. `minDwellSec: 1` on a
|
|
33553
|
+
* 30 s base at 12 fps turns a 7 s pass into a full second of video by sampling
|
|
33554
|
+
* that range every ~583 ms.
|
|
33555
|
+
*
|
|
33556
|
+
* ONE CADENCE SERVES EVERY RANGE. `ExportDenseSchema.everyMs` is global — the
|
|
33557
|
+
* ranges are terms of a single ffmpeg `select` expression that cannot vary rate
|
|
33558
|
+
* per term — so the MOST DEMANDING (shortest) range sets the rate and longer
|
|
33559
|
+
* ranges are sampled denser than they need. Per-range cadences require a cap
|
|
33560
|
+
* schema change and are the tracked follow-up.
|
|
33561
|
+
*
|
|
33562
|
+
* A range too short to reach the dwell even at {@link TIMELAPSE_DENSE_FLOOR_SEC}
|
|
33563
|
+
* is rendered with every frame that EXISTS and no more: the guarantee is capped
|
|
33564
|
+
* by real footage, never met by duplicating frames into motion that never
|
|
33565
|
+
* happened.
|
|
33566
|
+
*/
|
|
33567
|
+
var MinDwellSecField = number().min(0).max(60);
|
|
33568
|
+
/**
|
|
33569
|
+
* Caption burned into the notification's preview frame.
|
|
33570
|
+
*
|
|
33571
|
+
* Same `{{var}}` vocabulary as {@link TimelapseTemplateSchema} (`camera`,
|
|
33572
|
+
* `rule`, `from`, `to`) and rendered by the SAME renderer — a second
|
|
33573
|
+
* templating dialect for one field would be a second thing to explain.
|
|
33574
|
+
*
|
|
33575
|
+
* Absent ⇒ {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}. An EMPTY STRING is the
|
|
33576
|
+
* operator saying "the frame, no caption" — a distinct, reachable answer, and
|
|
33577
|
+
* the reason this is not `.min(1)`.
|
|
33578
|
+
*/
|
|
33579
|
+
var PreviewTextField = string().max(200);
|
|
33580
|
+
/**
|
|
33581
|
+
* Whether the notification's preview is a STILL or a short animation.
|
|
33582
|
+
*
|
|
33583
|
+
* The operator's ask, verbatim: *"inviato come gif o video (come per le altre
|
|
33584
|
+
* rule)"* — his Scrypted advanced-notifier has a `gifRule`, and a ten-hour
|
|
33585
|
+
* night reads better as three seconds of motion than as one frame of it. Both
|
|
33586
|
+
* modes get the SAME treatment (blurred frame, large centred title); `'gif'`
|
|
33587
|
+
* simply applies it to a dozen frames sampled across the render and assembles
|
|
33588
|
+
* them.
|
|
33589
|
+
*
|
|
33590
|
+
* `'image'` is the default and stays the default: a GIF costs a dozen ffmpeg
|
|
33591
|
+
* seeks and a palette pass, and no rule that never asked for one should start
|
|
33592
|
+
* paying that on the deploy that shipped it.
|
|
33593
|
+
*
|
|
33594
|
+
* A GIF that cannot be assembled DEGRADES to the still — never to nothing.
|
|
33595
|
+
*/
|
|
33596
|
+
var PreviewModeField = _enum(["image", "gif"]);
|
|
33597
|
+
/**
|
|
33598
|
+
* Which detection classes the notification reports counts for.
|
|
33599
|
+
*
|
|
33600
|
+
* The counts come from the tracks the render ALREADY fetched for its dense-range
|
|
33601
|
+
* plan — no second query — aggregated per class. Absent or empty means "every
|
|
33602
|
+
* class the window actually contained", which is what an operator who never
|
|
33603
|
+
* opened the field wants; a list narrows it (`['person']` on a driveway that
|
|
33604
|
+
* counts cars all night).
|
|
33605
|
+
*
|
|
33606
|
+
* Class names are the tracker's own (`person`, `vehicle`, `animal`, `package`,
|
|
33607
|
+
* …). An unknown name simply never matches and reports nothing — it is not an
|
|
33608
|
+
* error, because a rule may legitimately name a class this camera's model does
|
|
33609
|
+
* not emit.
|
|
33610
|
+
*
|
|
33611
|
+
* The counts are exposed to {@link TimelapseTemplateSchema} as:
|
|
33612
|
+
* - `{{detections}}` — total over the reported classes
|
|
33613
|
+
* - `{{detectionSummary}}` — `2 persone, 1 veicolo`
|
|
33614
|
+
* - `{{count_person}}` / `{{count_vehicle}}` / `{{count_animal}}` / … —
|
|
33615
|
+
* one per class, `count_` + the class name
|
|
33616
|
+
*
|
|
33617
|
+
* With NO custom body template the summary is appended to the derived body, and
|
|
33618
|
+
* only when the total is non-zero: a nightly `0 rilevamenti` is a line nobody
|
|
33619
|
+
* reads. With a custom template the operator owns every word — nothing is
|
|
33620
|
+
* appended, so `{{detectionSummary}}` is how he asks for it.
|
|
33621
|
+
*/
|
|
33622
|
+
var ReportClassesField = array(string().min(1).max(40)).max(20);
|
|
33623
|
+
/**
|
|
33065
33624
|
* Client-supplied timelapse-rule fields. The server stamps id / createdBy /
|
|
33066
33625
|
* createdAt / updatedAt / ownerUserId / lastGeneratedAt — none of them appear
|
|
33067
33626
|
* here (see the ownership note above).
|
|
@@ -33081,9 +33640,30 @@ var TimelapseRuleInputSchema = object({
|
|
|
33081
33640
|
cadenceSec: CadenceSecField.default(15),
|
|
33082
33641
|
/** Output frames per second of the assembled mp4 (predecessor parity). */
|
|
33083
33642
|
framerate: FramerateField.default(10),
|
|
33643
|
+
/**
|
|
33644
|
+
* Explicit dense cadence — see {@link DenseCadenceSecField}. Absent ⇒ derived
|
|
33645
|
+
* as `max(1s, cadenceSec / 30)`, which is what every rule written before this
|
|
33646
|
+
* field gets.
|
|
33647
|
+
*/
|
|
33648
|
+
denseCadenceSec: DenseCadenceSecField.optional(),
|
|
33649
|
+
/** Output-seconds guarantee per detection range — see {@link MinDwellSecField}. */
|
|
33650
|
+
minDwellSec: MinDwellSecField.optional(),
|
|
33084
33651
|
/** `notification-output` targets the finished video/thumbnail is sent to. */
|
|
33085
33652
|
targets: TargetsField,
|
|
33086
33653
|
template: TimelapseTemplateSchema.optional(),
|
|
33654
|
+
/**
|
|
33655
|
+
* Caption on the notification's PREVIEW FRAME — see {@link PreviewTextField}
|
|
33656
|
+
* and {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}.
|
|
33657
|
+
*
|
|
33658
|
+
* Deliberately NOT part of {@link TimelapseTemplateSchema}: that object is
|
|
33659
|
+
* the notification's title/body, and clearing it (`template: null`) must not
|
|
33660
|
+
* silently clear the caption too.
|
|
33661
|
+
*/
|
|
33662
|
+
previewText: PreviewTextField.optional(),
|
|
33663
|
+
/** Still or animation — see {@link PreviewModeField}. */
|
|
33664
|
+
previewMode: PreviewModeField.default("image"),
|
|
33665
|
+
/** Classes the notification counts — see {@link ReportClassesField}. */
|
|
33666
|
+
reportClasses: ReportClassesField.optional(),
|
|
33087
33667
|
/** Canonical notification priority ordinal (1..5); per-target overridable. */
|
|
33088
33668
|
priority: PriorityField.default(3)
|
|
33089
33669
|
});
|
|
@@ -33094,8 +33674,13 @@ object({
|
|
|
33094
33674
|
schedule: NcScheduleSchema.optional(),
|
|
33095
33675
|
cadenceSec: CadenceSecField.optional(),
|
|
33096
33676
|
framerate: FramerateField.optional(),
|
|
33677
|
+
denseCadenceSec: DenseCadenceSecField.optional(),
|
|
33678
|
+
minDwellSec: MinDwellSecField.optional(),
|
|
33097
33679
|
targets: TargetsField.optional(),
|
|
33098
33680
|
template: TimelapseTemplateSchema.nullable().optional(),
|
|
33681
|
+
previewText: PreviewTextField.optional(),
|
|
33682
|
+
previewMode: PreviewModeField.optional(),
|
|
33683
|
+
reportClasses: ReportClassesField.optional(),
|
|
33099
33684
|
priority: PriorityField.optional()
|
|
33100
33685
|
});
|
|
33101
33686
|
TimelapseRuleInputSchema.extend({
|
|
@@ -33107,10 +33692,28 @@ TimelapseRuleInputSchema.extend({
|
|
|
33107
33692
|
*/
|
|
33108
33693
|
ownerUserId: string().optional(),
|
|
33109
33694
|
/**
|
|
33110
|
-
* Epoch-ms of the
|
|
33111
|
-
*
|
|
33695
|
+
* Epoch-ms of the NEWEST successful generation across every camera of this
|
|
33696
|
+
* rule. What a UI shows, and the compatibility floor for
|
|
33697
|
+
* {@link readTimelapseGeneratedAt}. Absent = never generated.
|
|
33112
33698
|
*/
|
|
33113
33699
|
lastGeneratedAt: number().optional(),
|
|
33700
|
+
/**
|
|
33701
|
+
* PER-CAMERA generation state, keyed by `String(deviceId)` — the
|
|
33702
|
+
* re-generation guard's real durable state.
|
|
33703
|
+
*
|
|
33704
|
+
* One rule covers several cameras and each renders its own video, so a rule
|
|
33705
|
+
* -wide stamp is wrong in the direction that DESTROYS work: camera A
|
|
33706
|
+
* succeeding at 06:05 tells camera B, whose render failed, that it is
|
|
33707
|
+
* already done — and B's night is gone for good, because the window will not
|
|
33708
|
+
* come back.
|
|
33709
|
+
*
|
|
33710
|
+
* ADDITIVE, so the migration is free: a row written before this field simply
|
|
33711
|
+
* has no map, and {@link readTimelapseGeneratedAt} falls back to
|
|
33712
|
+
* {@link TimelapseRuleSchema.shape.lastGeneratedAt}. Reading an old row as
|
|
33713
|
+
* "never generated" would re-render and re-notify every camera of every rule
|
|
33714
|
+
* once, on the deploy that shipped the map.
|
|
33715
|
+
*/
|
|
33716
|
+
generatedByDevice: record(string(), number()).optional(),
|
|
33114
33717
|
/** userId of the caller who created the rule (server-stamped). */
|
|
33115
33718
|
createdBy: string(),
|
|
33116
33719
|
createdAt: number(),
|