@camstack/addon-provider-gree 0.2.12 → 0.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/addon.js +686 -42
- package/dist/addon.mjs +686 -42
- 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,53 @@ 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 WALL-CLOCK SECONDS FROM THE EXPORT'S OWN `fromMs`.
|
|
25148
|
+
*
|
|
25149
|
+
* **Wall clock, not ffmpeg's `t`** — and the recorder translates. A caller
|
|
25150
|
+
* derives these bounds from things that happened at a TIME (a track's
|
|
25151
|
+
* `firstSeen`), while `t` runs over the source playlist: the concatenation of
|
|
25152
|
+
* every segment present for the range, with each recording GAP removed. The
|
|
25153
|
+
* two agree only on a window that recorded without one interruption, and only
|
|
25154
|
+
* the render side knows the segments, so the translation lives there
|
|
25155
|
+
* (`export-dense-map.ts`, addon-pipeline).
|
|
25156
|
+
*
|
|
25157
|
+
* It was not always so. These seconds were fed to `between(t,…)` verbatim, and
|
|
25158
|
+
* on a 10 h window holding 29,393 s of footage every range landed late by the
|
|
25159
|
+
* gap accumulated before it — up to 6,607 s, well past EOF. Nothing matched,
|
|
25160
|
+
* the video was a uniform timelapse, and the log line reported the five ranges
|
|
25161
|
+
* that had been ASKED for (2026-08-13, export `57d14363`, camera 615).
|
|
25162
|
+
*
|
|
25163
|
+
* Relative and not absolute epoch, because an absolute epoch would make every
|
|
25164
|
+
* call site responsible for the same subtraction.
|
|
25165
|
+
*/
|
|
25166
|
+
var ExportDenseRangeSchema = object({
|
|
25167
|
+
fromSec: number().nonnegative(),
|
|
25168
|
+
toSec: number().nonnegative()
|
|
25169
|
+
}).refine((r) => r.toSec > r.fromSec, { message: "dense range must have toSec > fromSec" });
|
|
25170
|
+
/**
|
|
25171
|
+
* Dense-interval overlay for a timelapse: sample at `dense.everyMs` INSIDE the
|
|
25172
|
+
* listed ranges and at the base `everyMs` everywhere else.
|
|
25173
|
+
*
|
|
25174
|
+
* `everyMs` must be strictly smaller than the base cadence — a dense rate that
|
|
25175
|
+
* is not denser renders a uniform timelapse the operator believes is two-rate.
|
|
25176
|
+
*/
|
|
25177
|
+
var ExportDenseSchema = object({
|
|
25178
|
+
everyMs: number().int().positive(),
|
|
25179
|
+
ranges: array(ExportDenseRangeSchema).min(1).max(200)
|
|
25180
|
+
});
|
|
24769
25181
|
/** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
|
|
24770
25182
|
var ExportTimelapseSchema = object({
|
|
24771
25183
|
everyMs: number().int().positive(),
|
|
24772
|
-
outputFps: number().int().min(1).max(60).optional()
|
|
25184
|
+
outputFps: number().int().min(1).max(60).optional(),
|
|
25185
|
+
/** Optional second, FASTER rate over the intervals that matter. */
|
|
25186
|
+
dense: ExportDenseSchema.optional()
|
|
25187
|
+
}).superRefine((v, ctx) => {
|
|
25188
|
+
if (v.dense !== void 0 && v.dense.everyMs >= v.everyMs) ctx.addIssue({
|
|
25189
|
+
code: ZodIssueCode.custom,
|
|
25190
|
+
message: "dense.everyMs must be strictly smaller than the base everyMs",
|
|
25191
|
+
path: ["dense", "everyMs"]
|
|
25192
|
+
});
|
|
24773
25193
|
});
|
|
24774
25194
|
/**
|
|
24775
25195
|
* Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
|
|
@@ -24827,6 +25247,19 @@ var ExportDownloadSchema = object({
|
|
|
24827
25247
|
url: string(),
|
|
24828
25248
|
endpoints: array(string())
|
|
24829
25249
|
});
|
|
25250
|
+
/**
|
|
25251
|
+
* A finished export's bytes, inline.
|
|
25252
|
+
*
|
|
25253
|
+
* `bytes` is the DECODED length — the number the caller bounds and logs
|
|
25254
|
+
* against, so nobody has to infer it from the base64 length.
|
|
25255
|
+
*/
|
|
25256
|
+
var ExportBytesSchema = object({
|
|
25257
|
+
base64: string(),
|
|
25258
|
+
contentType: string(),
|
|
25259
|
+
/** Suggested filename, extension included. */
|
|
25260
|
+
name: string(),
|
|
25261
|
+
bytes: number().int().nonnegative()
|
|
25262
|
+
});
|
|
24830
25263
|
method(object({
|
|
24831
25264
|
deviceId: number(),
|
|
24832
25265
|
profile: string(),
|
|
@@ -24851,6 +25284,9 @@ method(object({
|
|
|
24851
25284
|
}), method(object({ exportId: string() }), ExportDownloadSchema, {
|
|
24852
25285
|
kind: "query",
|
|
24853
25286
|
auth: "protected"
|
|
25287
|
+
}), method(object({ exportId: string() }), ExportBytesSchema, {
|
|
25288
|
+
kind: "query",
|
|
25289
|
+
auth: "protected"
|
|
24854
25290
|
});
|
|
24855
25291
|
/**
|
|
24856
25292
|
* scene-monitor — device-scoped reference-region state cap. An operator marks
|
|
@@ -31528,6 +31964,12 @@ Object.freeze({
|
|
|
31528
31964
|
addonId: null,
|
|
31529
31965
|
access: "create"
|
|
31530
31966
|
},
|
|
31967
|
+
"recording.cancelRelocateJob": {
|
|
31968
|
+
capName: "recording",
|
|
31969
|
+
capScope: "system",
|
|
31970
|
+
addonId: null,
|
|
31971
|
+
access: "create"
|
|
31972
|
+
},
|
|
31531
31973
|
"recording.cancelStorageMigrationMove": {
|
|
31532
31974
|
capName: "recording",
|
|
31533
31975
|
capScope: "system",
|
|
@@ -31582,6 +32024,12 @@ Object.freeze({
|
|
|
31582
32024
|
addonId: null,
|
|
31583
32025
|
access: "view"
|
|
31584
32026
|
},
|
|
32027
|
+
"recording.listRelocateJobs": {
|
|
32028
|
+
capName: "recording",
|
|
32029
|
+
capScope: "system",
|
|
32030
|
+
addonId: null,
|
|
32031
|
+
access: "view"
|
|
32032
|
+
},
|
|
31585
32033
|
"recording.locateSegment": {
|
|
31586
32034
|
capName: "recording",
|
|
31587
32035
|
capScope: "system",
|
|
@@ -31594,6 +32042,12 @@ Object.freeze({
|
|
|
31594
32042
|
addonId: null,
|
|
31595
32043
|
access: "create"
|
|
31596
32044
|
},
|
|
32045
|
+
"recording.planStorageRebalance": {
|
|
32046
|
+
capName: "recording",
|
|
32047
|
+
capScope: "system",
|
|
32048
|
+
addonId: null,
|
|
32049
|
+
access: "view"
|
|
32050
|
+
},
|
|
31597
32051
|
"recording.pruneFootage": {
|
|
31598
32052
|
capName: "recording",
|
|
31599
32053
|
capScope: "system",
|
|
@@ -31618,6 +32072,12 @@ Object.freeze({
|
|
|
31618
32072
|
addonId: null,
|
|
31619
32073
|
access: "create"
|
|
31620
32074
|
},
|
|
32075
|
+
"recording.relocateFootage": {
|
|
32076
|
+
capName: "recording",
|
|
32077
|
+
capScope: "system",
|
|
32078
|
+
addonId: null,
|
|
32079
|
+
access: "create"
|
|
32080
|
+
},
|
|
31621
32081
|
"recording.renderClip": {
|
|
31622
32082
|
capName: "recording",
|
|
31623
32083
|
capScope: "system",
|
|
@@ -31654,38 +32114,50 @@ Object.freeze({
|
|
|
31654
32114
|
addonId: null,
|
|
31655
32115
|
access: "create"
|
|
31656
32116
|
},
|
|
32117
|
+
"recording.startStorageRebalance": {
|
|
32118
|
+
capName: "recording",
|
|
32119
|
+
capScope: "system",
|
|
32120
|
+
addonId: null,
|
|
32121
|
+
access: "create"
|
|
32122
|
+
},
|
|
31657
32123
|
"recordingExport.cancelExport": {
|
|
31658
|
-
capName: "
|
|
32124
|
+
capName: "recording-export",
|
|
31659
32125
|
capScope: "system",
|
|
31660
32126
|
addonId: null,
|
|
31661
32127
|
access: "create"
|
|
31662
32128
|
},
|
|
31663
32129
|
"recordingExport.createExport": {
|
|
31664
|
-
capName: "
|
|
32130
|
+
capName: "recording-export",
|
|
31665
32131
|
capScope: "system",
|
|
31666
32132
|
addonId: null,
|
|
31667
32133
|
access: "create"
|
|
31668
32134
|
},
|
|
31669
32135
|
"recordingExport.deleteExport": {
|
|
31670
|
-
capName: "
|
|
32136
|
+
capName: "recording-export",
|
|
31671
32137
|
capScope: "system",
|
|
31672
32138
|
addonId: null,
|
|
31673
32139
|
access: "delete"
|
|
31674
32140
|
},
|
|
31675
32141
|
"recordingExport.getDownloadUrl": {
|
|
31676
|
-
capName: "
|
|
32142
|
+
capName: "recording-export",
|
|
31677
32143
|
capScope: "system",
|
|
31678
32144
|
addonId: null,
|
|
31679
32145
|
access: "view"
|
|
31680
32146
|
},
|
|
31681
32147
|
"recordingExport.getExport": {
|
|
31682
|
-
capName: "
|
|
32148
|
+
capName: "recording-export",
|
|
31683
32149
|
capScope: "system",
|
|
31684
32150
|
addonId: null,
|
|
31685
32151
|
access: "view"
|
|
31686
32152
|
},
|
|
31687
32153
|
"recordingExport.listExports": {
|
|
31688
|
-
capName: "
|
|
32154
|
+
capName: "recording-export",
|
|
32155
|
+
capScope: "system",
|
|
32156
|
+
addonId: null,
|
|
32157
|
+
access: "view"
|
|
32158
|
+
},
|
|
32159
|
+
"recordingExport.readExportBytes": {
|
|
32160
|
+
capName: "recording-export",
|
|
31689
32161
|
capScope: "system",
|
|
31690
32162
|
addonId: null,
|
|
31691
32163
|
access: "view"
|
|
@@ -33062,6 +33534,104 @@ var FramerateField = number().int().min(1).max(60);
|
|
|
33062
33534
|
var TargetsField = array(NcRuleTargetSchema).min(1);
|
|
33063
33535
|
var PriorityField = number().int().min(1).max(5);
|
|
33064
33536
|
/**
|
|
33537
|
+
* Explicit override of the DENSE sampling cadence, seconds.
|
|
33538
|
+
*
|
|
33539
|
+
* Absent ⇒ derived as `max(1s, cadenceSec / 30)` — a 30 s base samples every
|
|
33540
|
+
* 1 s inside a detection range. (It was `base / 10` until 2026-08-12, which
|
|
33541
|
+
* made that same base 3 s and rendered a person pass as two frames.)
|
|
33542
|
+
*
|
|
33543
|
+
* THE ARITHMETIC. A detection range of `rangeSec` seconds sampled every
|
|
33544
|
+
* `denseCadenceSec` and played at `framerate` occupies
|
|
33545
|
+
*
|
|
33546
|
+
* outputSeconds = (rangeSec / denseCadenceSec) / framerate
|
|
33547
|
+
*
|
|
33548
|
+
* 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.
|
|
33549
|
+
* Halving this field doubles the frames INSIDE ranges only — the base cadence,
|
|
33550
|
+
* and therefore the length of a quiet night, does not move.
|
|
33551
|
+
*
|
|
33552
|
+
* Floored at {@link TIMELAPSE_DENSE_FLOOR_SEC}: asking for frames faster than
|
|
33553
|
+
* the recording has them returns the same frames, requested twice. Must be
|
|
33554
|
+
* STRICTLY smaller than `cadenceSec` — a dense rate that is not denser renders
|
|
33555
|
+
* a uniform video the operator believes is two-rate — and upsert refuses it
|
|
33556
|
+
* rather than letting the export cap reject the render hours after the window.
|
|
33557
|
+
*/
|
|
33558
|
+
var DenseCadenceSecField = number().min(.1).max(3600);
|
|
33559
|
+
/**
|
|
33560
|
+
* Minimum seconds of OUTPUT video each detection range must occupy.
|
|
33561
|
+
*
|
|
33562
|
+
* The operator-facing form of the arithmetic above: instead of solving for a
|
|
33563
|
+
* cadence, state the dwell and let the renderer solve. `minDwellSec: 1` on a
|
|
33564
|
+
* 30 s base at 12 fps turns a 7 s pass into a full second of video by sampling
|
|
33565
|
+
* that range every ~583 ms.
|
|
33566
|
+
*
|
|
33567
|
+
* ONE CADENCE SERVES EVERY RANGE. `ExportDenseSchema.everyMs` is global — the
|
|
33568
|
+
* ranges are terms of a single ffmpeg `select` expression that cannot vary rate
|
|
33569
|
+
* per term — so the MOST DEMANDING (shortest) range sets the rate and longer
|
|
33570
|
+
* ranges are sampled denser than they need. Per-range cadences require a cap
|
|
33571
|
+
* schema change and are the tracked follow-up.
|
|
33572
|
+
*
|
|
33573
|
+
* A range too short to reach the dwell even at {@link TIMELAPSE_DENSE_FLOOR_SEC}
|
|
33574
|
+
* is rendered with every frame that EXISTS and no more: the guarantee is capped
|
|
33575
|
+
* by real footage, never met by duplicating frames into motion that never
|
|
33576
|
+
* happened.
|
|
33577
|
+
*/
|
|
33578
|
+
var MinDwellSecField = number().min(0).max(60);
|
|
33579
|
+
/**
|
|
33580
|
+
* Caption burned into the notification's preview frame.
|
|
33581
|
+
*
|
|
33582
|
+
* Same `{{var}}` vocabulary as {@link TimelapseTemplateSchema} (`camera`,
|
|
33583
|
+
* `rule`, `from`, `to`) and rendered by the SAME renderer — a second
|
|
33584
|
+
* templating dialect for one field would be a second thing to explain.
|
|
33585
|
+
*
|
|
33586
|
+
* Absent ⇒ {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}. An EMPTY STRING is the
|
|
33587
|
+
* operator saying "the frame, no caption" — a distinct, reachable answer, and
|
|
33588
|
+
* the reason this is not `.min(1)`.
|
|
33589
|
+
*/
|
|
33590
|
+
var PreviewTextField = string().max(200);
|
|
33591
|
+
/**
|
|
33592
|
+
* Whether the notification's preview is a STILL or a short animation.
|
|
33593
|
+
*
|
|
33594
|
+
* The operator's ask, verbatim: *"inviato come gif o video (come per le altre
|
|
33595
|
+
* rule)"* — his Scrypted advanced-notifier has a `gifRule`, and a ten-hour
|
|
33596
|
+
* night reads better as three seconds of motion than as one frame of it. Both
|
|
33597
|
+
* modes get the SAME treatment (blurred frame, large centred title); `'gif'`
|
|
33598
|
+
* simply applies it to a dozen frames sampled across the render and assembles
|
|
33599
|
+
* them.
|
|
33600
|
+
*
|
|
33601
|
+
* `'image'` is the default and stays the default: a GIF costs a dozen ffmpeg
|
|
33602
|
+
* seeks and a palette pass, and no rule that never asked for one should start
|
|
33603
|
+
* paying that on the deploy that shipped it.
|
|
33604
|
+
*
|
|
33605
|
+
* A GIF that cannot be assembled DEGRADES to the still — never to nothing.
|
|
33606
|
+
*/
|
|
33607
|
+
var PreviewModeField = _enum(["image", "gif"]);
|
|
33608
|
+
/**
|
|
33609
|
+
* Which detection classes the notification reports counts for.
|
|
33610
|
+
*
|
|
33611
|
+
* The counts come from the tracks the render ALREADY fetched for its dense-range
|
|
33612
|
+
* plan — no second query — aggregated per class. Absent or empty means "every
|
|
33613
|
+
* class the window actually contained", which is what an operator who never
|
|
33614
|
+
* opened the field wants; a list narrows it (`['person']` on a driveway that
|
|
33615
|
+
* counts cars all night).
|
|
33616
|
+
*
|
|
33617
|
+
* Class names are the tracker's own (`person`, `vehicle`, `animal`, `package`,
|
|
33618
|
+
* …). An unknown name simply never matches and reports nothing — it is not an
|
|
33619
|
+
* error, because a rule may legitimately name a class this camera's model does
|
|
33620
|
+
* not emit.
|
|
33621
|
+
*
|
|
33622
|
+
* The counts are exposed to {@link TimelapseTemplateSchema} as:
|
|
33623
|
+
* - `{{detections}}` — total over the reported classes
|
|
33624
|
+
* - `{{detectionSummary}}` — `2 persone, 1 veicolo`
|
|
33625
|
+
* - `{{count_person}}` / `{{count_vehicle}}` / `{{count_animal}}` / … —
|
|
33626
|
+
* one per class, `count_` + the class name
|
|
33627
|
+
*
|
|
33628
|
+
* With NO custom body template the summary is appended to the derived body, and
|
|
33629
|
+
* only when the total is non-zero: a nightly `0 rilevamenti` is a line nobody
|
|
33630
|
+
* reads. With a custom template the operator owns every word — nothing is
|
|
33631
|
+
* appended, so `{{detectionSummary}}` is how he asks for it.
|
|
33632
|
+
*/
|
|
33633
|
+
var ReportClassesField = array(string().min(1).max(40)).max(20);
|
|
33634
|
+
/**
|
|
33065
33635
|
* Client-supplied timelapse-rule fields. The server stamps id / createdBy /
|
|
33066
33636
|
* createdAt / updatedAt / ownerUserId / lastGeneratedAt — none of them appear
|
|
33067
33637
|
* here (see the ownership note above).
|
|
@@ -33081,9 +33651,30 @@ var TimelapseRuleInputSchema = object({
|
|
|
33081
33651
|
cadenceSec: CadenceSecField.default(15),
|
|
33082
33652
|
/** Output frames per second of the assembled mp4 (predecessor parity). */
|
|
33083
33653
|
framerate: FramerateField.default(10),
|
|
33654
|
+
/**
|
|
33655
|
+
* Explicit dense cadence — see {@link DenseCadenceSecField}. Absent ⇒ derived
|
|
33656
|
+
* as `max(1s, cadenceSec / 30)`, which is what every rule written before this
|
|
33657
|
+
* field gets.
|
|
33658
|
+
*/
|
|
33659
|
+
denseCadenceSec: DenseCadenceSecField.optional(),
|
|
33660
|
+
/** Output-seconds guarantee per detection range — see {@link MinDwellSecField}. */
|
|
33661
|
+
minDwellSec: MinDwellSecField.optional(),
|
|
33084
33662
|
/** `notification-output` targets the finished video/thumbnail is sent to. */
|
|
33085
33663
|
targets: TargetsField,
|
|
33086
33664
|
template: TimelapseTemplateSchema.optional(),
|
|
33665
|
+
/**
|
|
33666
|
+
* Caption on the notification's PREVIEW FRAME — see {@link PreviewTextField}
|
|
33667
|
+
* and {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}.
|
|
33668
|
+
*
|
|
33669
|
+
* Deliberately NOT part of {@link TimelapseTemplateSchema}: that object is
|
|
33670
|
+
* the notification's title/body, and clearing it (`template: null`) must not
|
|
33671
|
+
* silently clear the caption too.
|
|
33672
|
+
*/
|
|
33673
|
+
previewText: PreviewTextField.optional(),
|
|
33674
|
+
/** Still or animation — see {@link PreviewModeField}. */
|
|
33675
|
+
previewMode: PreviewModeField.default("image"),
|
|
33676
|
+
/** Classes the notification counts — see {@link ReportClassesField}. */
|
|
33677
|
+
reportClasses: ReportClassesField.optional(),
|
|
33087
33678
|
/** Canonical notification priority ordinal (1..5); per-target overridable. */
|
|
33088
33679
|
priority: PriorityField.default(3)
|
|
33089
33680
|
});
|
|
@@ -33094,8 +33685,13 @@ object({
|
|
|
33094
33685
|
schedule: NcScheduleSchema.optional(),
|
|
33095
33686
|
cadenceSec: CadenceSecField.optional(),
|
|
33096
33687
|
framerate: FramerateField.optional(),
|
|
33688
|
+
denseCadenceSec: DenseCadenceSecField.optional(),
|
|
33689
|
+
minDwellSec: MinDwellSecField.optional(),
|
|
33097
33690
|
targets: TargetsField.optional(),
|
|
33098
33691
|
template: TimelapseTemplateSchema.nullable().optional(),
|
|
33692
|
+
previewText: PreviewTextField.optional(),
|
|
33693
|
+
previewMode: PreviewModeField.optional(),
|
|
33694
|
+
reportClasses: ReportClassesField.optional(),
|
|
33099
33695
|
priority: PriorityField.optional()
|
|
33100
33696
|
});
|
|
33101
33697
|
TimelapseRuleInputSchema.extend({
|
|
@@ -33107,10 +33703,28 @@ TimelapseRuleInputSchema.extend({
|
|
|
33107
33703
|
*/
|
|
33108
33704
|
ownerUserId: string().optional(),
|
|
33109
33705
|
/**
|
|
33110
|
-
* Epoch-ms of the
|
|
33111
|
-
*
|
|
33706
|
+
* Epoch-ms of the NEWEST successful generation across every camera of this
|
|
33707
|
+
* rule. What a UI shows, and the compatibility floor for
|
|
33708
|
+
* {@link readTimelapseGeneratedAt}. Absent = never generated.
|
|
33112
33709
|
*/
|
|
33113
33710
|
lastGeneratedAt: number().optional(),
|
|
33711
|
+
/**
|
|
33712
|
+
* PER-CAMERA generation state, keyed by `String(deviceId)` — the
|
|
33713
|
+
* re-generation guard's real durable state.
|
|
33714
|
+
*
|
|
33715
|
+
* One rule covers several cameras and each renders its own video, so a rule
|
|
33716
|
+
* -wide stamp is wrong in the direction that DESTROYS work: camera A
|
|
33717
|
+
* succeeding at 06:05 tells camera B, whose render failed, that it is
|
|
33718
|
+
* already done — and B's night is gone for good, because the window will not
|
|
33719
|
+
* come back.
|
|
33720
|
+
*
|
|
33721
|
+
* ADDITIVE, so the migration is free: a row written before this field simply
|
|
33722
|
+
* has no map, and {@link readTimelapseGeneratedAt} falls back to
|
|
33723
|
+
* {@link TimelapseRuleSchema.shape.lastGeneratedAt}. Reading an old row as
|
|
33724
|
+
* "never generated" would re-render and re-notify every camera of every rule
|
|
33725
|
+
* once, on the deploy that shipped the map.
|
|
33726
|
+
*/
|
|
33727
|
+
generatedByDevice: record(string(), number()).optional(),
|
|
33114
33728
|
/** userId of the caller who created the rule (server-stamped). */
|
|
33115
33729
|
createdBy: string(),
|
|
33116
33730
|
createdAt: number(),
|
|
@@ -33161,25 +33775,32 @@ object({
|
|
|
33161
33775
|
var NativeLeaseAdmissionSchema = _enum(["all", "inferred"]);
|
|
33162
33776
|
object({
|
|
33163
33777
|
/**
|
|
33164
|
-
* How
|
|
33778
|
+
* How many delivered frames the worker HOLDS at once, waiting for each one's
|
|
33779
|
+
* detection result.
|
|
33780
|
+
*
|
|
33781
|
+
* This replaced a TTL on 2026-08-13, and the replacement is the whole point:
|
|
33782
|
+
* a time window was never related to the event the pixels were waiting for.
|
|
33783
|
+
* A held frame now lives from delivery until the runner has its `FrameResult`
|
|
33784
|
+
* — at which moment the runner cuts the subject tiles it actually wanted and
|
|
33785
|
+
* releases the frame. The bound exists only so a runner that stops answering
|
|
33786
|
+
* cannot pin RAM: above it the OLDEST held frame is dropped and counted.
|
|
33165
33787
|
*
|
|
33166
|
-
*
|
|
33167
|
-
*
|
|
33168
|
-
*
|
|
33169
|
-
*
|
|
33170
|
-
*
|
|
33788
|
+
* Sizing: the steady state is `inferenceLatency × deliveredFps`, measured at
|
|
33789
|
+
* 40-160 ms × ≤25 fps = 1-4 frames. The default leaves headroom for a hiccup
|
|
33790
|
+
* without ever approaching the old resident set (43 frames × 24.9 MB at 4K).
|
|
33791
|
+
* Raising it does not buy hit rate — it buys tolerance for a slow runner, and
|
|
33792
|
+
* `holdOverflow` on the metrics line is what says you need it.
|
|
33171
33793
|
*/
|
|
33172
|
-
|
|
33794
|
+
holdFrames: number().int().min(1).max(64),
|
|
33173
33795
|
/**
|
|
33174
33796
|
* Hard per-decode-worker RAM ceiling for retained native frames, in MB.
|
|
33175
33797
|
*
|
|
33176
|
-
*
|
|
33177
|
-
*
|
|
33178
|
-
*
|
|
33179
|
-
*
|
|
33180
|
-
*
|
|
33181
|
-
*
|
|
33182
|
-
* rather than giving RAM back — lower this knob if RAM is what you wanted.
|
|
33798
|
+
* Since 2026-08-13 this is a SAFETY ceiling and nothing else: `holdFrames`
|
|
33799
|
+
* is what decides how much is held, and the ceiling is the number above which
|
|
33800
|
+
* something is wrong. Before that it was the effective cap — at 1024 MB with
|
|
33801
|
+
* a 2 800 ms TTL a 4K camera sat pinned at `leaseMb:1020, leaseFrames:43`
|
|
33802
|
+
* with the TTL expiring nothing, which is exactly the confusion the hold
|
|
33803
|
+
* removes. `leaseMb` / `leaseFrames` still say what is resident.
|
|
33183
33804
|
* `0` DISABLES the lease entirely and falls the worker back to the tiny
|
|
33184
33805
|
* leak-prone GPU surface ring (~85% crop miss; that is what the lease exists
|
|
33185
33806
|
* to replace).
|
|
@@ -33205,22 +33826,45 @@ object({
|
|
|
33205
33826
|
* there is the signal that some caller names frames outside the inference set
|
|
33206
33827
|
* and that this must go back to `all`.
|
|
33207
33828
|
*/
|
|
33208
|
-
admission: NativeLeaseAdmissionSchema
|
|
33829
|
+
admission: NativeLeaseAdmissionSchema,
|
|
33830
|
+
/**
|
|
33831
|
+
* RAM ceiling per decode worker, in MB, for the SUBJECT TILES — the
|
|
33832
|
+
* compressed native crops the worker cuts at the moment a frame's detection
|
|
33833
|
+
* result arrives, and keeps long after the frame itself is freed.
|
|
33834
|
+
*
|
|
33835
|
+
* This is the knob that replaced the old retention window, and it buys about
|
|
33836
|
+
* three orders of magnitude more of it: a tile is one subject at native
|
|
33837
|
+
* resolution, JPEG-encoded (~60-120 KB on a 4K person), against ~24.9 MB for
|
|
33838
|
+
* the frame it was cut from. A frame on which nothing was detected costs
|
|
33839
|
+
* nothing at all, which is the real change — the old lease paid per FRAME and
|
|
33840
|
+
* was interrogated per SUBJECT.
|
|
33841
|
+
*
|
|
33842
|
+
* `0` DISABLES tiles, leaving only the hold window and the ≤640 RAM
|
|
33843
|
+
* fallback — i.e. the pre-2026-08-13 miss profile. Set it there only to
|
|
33844
|
+
* reproduce that.
|
|
33845
|
+
*/
|
|
33846
|
+
tileBudgetMb: number().int().min(0).max(1024)
|
|
33209
33847
|
});
|
|
33210
33848
|
/**
|
|
33211
|
-
* The values in force when the operator has set nothing
|
|
33212
|
-
*
|
|
33213
|
-
*
|
|
33849
|
+
* The values in force when the operator has set nothing.
|
|
33850
|
+
*
|
|
33851
|
+
* `budgetMb` stays at 1024 on the day the hold landed, deliberately: it stopped
|
|
33852
|
+
* being the retention window and became the OOM ceiling, and lowering a ceiling
|
|
33853
|
+
* in the same change that redefines it would make a regression and a retune
|
|
33854
|
+
* indistinguishable. Cut it once `tileHits` / `holdOverflow` have been read on
|
|
33855
|
+
* live traffic.
|
|
33214
33856
|
*/
|
|
33215
33857
|
var DEFAULT_NATIVE_LEASE_SETTINGS = {
|
|
33216
|
-
|
|
33858
|
+
holdFrames: 8,
|
|
33217
33859
|
budgetMb: 1024,
|
|
33218
33860
|
activityMs: 15e3,
|
|
33861
|
+
tileBudgetMb: 64,
|
|
33219
33862
|
admission: "inferred"
|
|
33220
33863
|
};
|
|
33221
|
-
DEFAULT_NATIVE_LEASE_SETTINGS.
|
|
33864
|
+
DEFAULT_NATIVE_LEASE_SETTINGS.holdFrames;
|
|
33222
33865
|
DEFAULT_NATIVE_LEASE_SETTINGS.budgetMb;
|
|
33223
33866
|
DEFAULT_NATIVE_LEASE_SETTINGS.activityMs;
|
|
33867
|
+
DEFAULT_NATIVE_LEASE_SETTINGS.tileBudgetMb;
|
|
33224
33868
|
DEFAULT_NATIVE_LEASE_SETTINGS.admission;
|
|
33225
33869
|
//#endregion
|
|
33226
33870
|
//#region src/config.ts
|