@camstack/addon-provider-dreo 0.2.6 → 0.2.8
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 +463 -76
- package/dist/addon.mjs +463 -76
- package/package.json +1 -1
package/dist/addon.mjs
CHANGED
|
@@ -36,7 +36,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
36
36
|
var __toCommonJS = (mod) => __hasOwnProp.call(mod, "module.exports") ? mod["module.exports"] : __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
37
37
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
38
38
|
//#endregion
|
|
39
|
-
//#region ../types/dist/event-category-
|
|
39
|
+
//#region ../types/dist/event-category-Bz24uP1U.mjs
|
|
40
40
|
var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
41
41
|
EventCategory["SystemBoot"] = "system.boot";
|
|
42
42
|
EventCategory["SystemAddonsReady"] = "system.addons-ready";
|
|
@@ -307,6 +307,19 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
307
307
|
*/
|
|
308
308
|
EventCategory["DeviceStateChanged"] = "device.state-changed";
|
|
309
309
|
/**
|
|
310
|
+
* Frame occupancy for a camera CHANGED — a tracked object was gained or
|
|
311
|
+
* lost. Carries `{ deviceId, totalObjects, byClass, zones }`.
|
|
312
|
+
*
|
|
313
|
+
* Emitted only on a change, so a steady scene is silent. It exists so a
|
|
314
|
+
* client can stop polling `zoneAnalytics.getCurrentSnapshot`: that was the
|
|
315
|
+
* one live badge with no push signal at all, and it cost a request every
|
|
316
|
+
* four seconds per visible camera.
|
|
317
|
+
*
|
|
318
|
+
* Like every event it is telemetry and may be dropped ([D8]) — a consumer
|
|
319
|
+
* keeps a slow reconcile rather than trusting it alone.
|
|
320
|
+
*/
|
|
321
|
+
EventCategory["ZoneAnalyticsOccupancyChanged"] = "zone-analytics.occupancy-changed";
|
|
322
|
+
/**
|
|
310
323
|
* Cap event fired by every device that registers the `battery`
|
|
311
324
|
* capability. Mirrors the cap definition's `onStatusChanged`. Carries
|
|
312
325
|
* `{ deviceId, status: BatteryStatus }`. Subscribers (alert center,
|
|
@@ -7236,35 +7249,22 @@ var ConvertResultSchema = object({
|
|
|
7236
7249
|
*/
|
|
7237
7250
|
var RecordingWeekdaySchema = number().int().min(0).max(6);
|
|
7238
7251
|
var HHMM = /^([01]\d|2[0-3]):[0-5]\d$/;
|
|
7239
|
-
var RecordingScheduleSchema = discriminatedUnion("kind", [object({ kind: literal("always") }), object({
|
|
7240
|
-
kind: literal("timeOfDay"),
|
|
7241
|
-
start: string().regex(HHMM),
|
|
7242
|
-
end: string().regex(HHMM),
|
|
7243
|
-
/** Restrict to these weekdays; omit = every day. */
|
|
7244
|
-
days: array(RecordingWeekdaySchema).optional()
|
|
7245
|
-
})]);
|
|
7246
|
-
var RecordingModeSchema = _enum([
|
|
7247
|
-
"continuous",
|
|
7248
|
-
"onMotion",
|
|
7249
|
-
"onAudioThreshold"
|
|
7250
|
-
]);
|
|
7251
7252
|
/**
|
|
7252
|
-
*
|
|
7253
|
-
*
|
|
7254
|
-
* - `off` —
|
|
7255
|
-
* - `events` —
|
|
7256
|
-
*
|
|
7257
|
-
* - `continuous` — record 24/7 within the schedule.
|
|
7253
|
+
* DERIVED per-camera storage summary — the single field cheap consumers read
|
|
7254
|
+
* (the viewer's status dot, the camera list) instead of walking `bands`:
|
|
7255
|
+
* - `off` — no band covers the camera (or it is disabled).
|
|
7256
|
+
* - `events` — every band records around triggers only.
|
|
7257
|
+
* - `continuous` — at least one band records continuously.
|
|
7258
7258
|
*
|
|
7259
|
-
*
|
|
7260
|
-
*
|
|
7259
|
+
* NEVER authored: the recorder stamps it from the authoritative `bands` on
|
|
7260
|
+
* every save (`activeModeForConfig`). Writing it has no effect.
|
|
7261
7261
|
*/
|
|
7262
7262
|
var RecordingStorageModeSchema = _enum([
|
|
7263
7263
|
"off",
|
|
7264
7264
|
"events",
|
|
7265
7265
|
"continuous"
|
|
7266
7266
|
]);
|
|
7267
|
-
/** Which detectors trigger an `events`-mode
|
|
7267
|
+
/** Which detectors trigger an `events`-mode band. */
|
|
7268
7268
|
var RecordingTriggersSchema = object({
|
|
7269
7269
|
motion: boolean().optional(),
|
|
7270
7270
|
audioThresholdDbfs: number().optional()
|
|
@@ -7300,18 +7300,6 @@ var RecordingBandSchema = object({
|
|
|
7300
7300
|
preBufferSec: number().min(0).optional(),
|
|
7301
7301
|
postBufferSec: number().min(0).optional()
|
|
7302
7302
|
});
|
|
7303
|
-
var RecordingRuleSchema = object({
|
|
7304
|
-
schedule: RecordingScheduleSchema,
|
|
7305
|
-
mode: RecordingModeSchema,
|
|
7306
|
-
/** Seconds of footage to retain BEFORE a trigger (applied at keep/discard). */
|
|
7307
|
-
preBufferSec: number().min(0).default(0),
|
|
7308
|
-
/** Keep recording until this many seconds after the last trigger. */
|
|
7309
|
-
postBufferSec: number().min(0).default(0),
|
|
7310
|
-
/** Each new trigger restarts the post-buffer window. */
|
|
7311
|
-
resetTimeoutOnNewEvent: boolean().default(true),
|
|
7312
|
-
/** onAudioThreshold only — dBFS level that counts as a trigger. */
|
|
7313
|
-
thresholdDbfs: number().optional()
|
|
7314
|
-
});
|
|
7315
7303
|
/**
|
|
7316
7304
|
* Per-device retention overrides. Every field is optional; an unset or `0`
|
|
7317
7305
|
* value inherits the node-wide recorder default. Only footage-lifetime limits
|
|
@@ -7345,40 +7333,28 @@ var ScrubThumbnailPresetSchema = _enum([
|
|
|
7345
7333
|
/**
|
|
7346
7334
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7347
7335
|
*
|
|
7348
|
-
* `
|
|
7349
|
-
*
|
|
7350
|
-
*
|
|
7351
|
-
*
|
|
7336
|
+
* `bands` is the ONLY authored recording intent: what to record, when, and on
|
|
7337
|
+
* which trigger. `mode` is a derived summary the recorder stamps on save; every
|
|
7338
|
+
* other field is a storage knob (profiles, segment length, retention, scrub).
|
|
7339
|
+
*
|
|
7340
|
+
* STRICT on purpose: the legacy authoring surface (`schedule`/`schedules`/
|
|
7341
|
+
* `triggers`/`preBufferSec`/`postBufferSec`/`rules`) was retired 2026-07-30.
|
|
7342
|
+
* A stale caller must fail loudly — silently stripping its legacy intent would
|
|
7343
|
+
* persist a band-less config, i.e. silently stop recording the camera.
|
|
7352
7344
|
*/
|
|
7353
7345
|
var RecordingConfigSchema = object({
|
|
7354
7346
|
enabled: boolean(),
|
|
7355
|
-
/**
|
|
7356
|
-
*
|
|
7347
|
+
/** DERIVED summary of `bands`, stamped by the recorder on every save.
|
|
7348
|
+
* Authoring it has no effect — see {@link RecordingStorageModeSchema}. */
|
|
7357
7349
|
mode: RecordingStorageModeSchema.optional(),
|
|
7358
7350
|
profiles: array(CamProfileSchema).optional(),
|
|
7359
7351
|
segmentSeconds: number().int().positive().optional(),
|
|
7360
|
-
/** Shared recording time-bands for `events` & `continuous` — record only when
|
|
7361
|
-
* the wall-clock falls inside one of these windows. Omit or empty = always.
|
|
7362
|
-
* `continuous` compiles to one rule per band; `events` to band × trigger. */
|
|
7363
|
-
schedules: array(RecordingScheduleSchema).optional(),
|
|
7364
|
-
/** Legacy single-band predecessor of `schedules`. Read-compat only — it is
|
|
7365
|
-
* normalized into `schedules` on read and never written going forward. (Not
|
|
7366
|
-
* tagged `@deprecated`: the normalization paths must read it cast-free.) */
|
|
7367
|
-
schedule: RecordingScheduleSchema.optional(),
|
|
7368
|
-
/** `events`-mode only — which detectors trigger a recording. */
|
|
7369
|
-
triggers: RecordingTriggersSchema.optional(),
|
|
7370
|
-
/** `events`-mode only — seconds retained before / after a trigger. */
|
|
7371
|
-
preBufferSec: number().min(0).optional(),
|
|
7372
|
-
postBufferSec: number().min(0).optional(),
|
|
7373
|
-
/** DEPRECATED authoring input; retained for migration/transition. */
|
|
7374
|
-
rules: array(RecordingRuleSchema).optional(),
|
|
7375
7352
|
/**
|
|
7376
|
-
* AUTHORITATIVE mode-per-band recording model
|
|
7377
|
-
*
|
|
7378
|
-
*
|
|
7379
|
-
* derived into bands once via `migrateConfigToBands`.
|
|
7353
|
+
* AUTHORITATIVE mode-per-band recording model — the single source of truth
|
|
7354
|
+
* the recorder's band engine consumes. An empty array = record nothing;
|
|
7355
|
+
* "off" is the absence of a covering band, never a band value.
|
|
7380
7356
|
*/
|
|
7381
|
-
bands: array(RecordingBandSchema).
|
|
7357
|
+
bands: array(RecordingBandSchema).default([]),
|
|
7382
7358
|
retention: RecordingRetentionSchema.optional(),
|
|
7383
7359
|
/**
|
|
7384
7360
|
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
@@ -7386,8 +7362,15 @@ var RecordingConfigSchema = object({
|
|
|
7386
7362
|
* windows only — existing sheets are immutable, and each window's index
|
|
7387
7363
|
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7388
7364
|
*/
|
|
7389
|
-
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7390
|
-
|
|
7365
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional(),
|
|
7366
|
+
/**
|
|
7367
|
+
* OPT-IN thumbnail-strip generation for this camera: every keyframe of the
|
|
7368
|
+
* low recording saved as a JPEG (the fast-drag scrub depth), a derived
|
|
7369
|
+
* cache that eviction reclaims with the footage. Absent/false = no strips
|
|
7370
|
+
* are written and scrub reads exact keyframes at every velocity.
|
|
7371
|
+
*/
|
|
7372
|
+
stripsEnabled: boolean().optional()
|
|
7373
|
+
}).strict();
|
|
7391
7374
|
/**
|
|
7392
7375
|
* Ops-log — the durable, append-only operations audit shared by the
|
|
7393
7376
|
* recordings and events management surfaces.
|
|
@@ -7406,7 +7389,8 @@ var OpsLogOpSchema = _enum([
|
|
|
7406
7389
|
"prune",
|
|
7407
7390
|
"manual-delete",
|
|
7408
7391
|
"rescan",
|
|
7409
|
-
"retention-run"
|
|
7392
|
+
"retention-run",
|
|
7393
|
+
"relocate"
|
|
7410
7394
|
]);
|
|
7411
7395
|
/** Why the operation ran. */
|
|
7412
7396
|
var OpsLogReasonSchema = _enum([
|
|
@@ -7445,6 +7429,55 @@ var OpsLogQueryInputSchema = object({
|
|
|
7445
7429
|
limit: number().int().min(1).max(1e3).optional()
|
|
7446
7430
|
});
|
|
7447
7431
|
/**
|
|
7432
|
+
* Entity-relocation job state (storage entity-routing spec, Phase 4).
|
|
7433
|
+
*
|
|
7434
|
+
* One shape shared by the recorder's `relocateFootage` (segments + strips) and
|
|
7435
|
+
* pipeline-analytics' `relocateMedia` (event media blobs) so the admin Data
|
|
7436
|
+
* page renders both movers with one component. Jobs are in-RAM (a restart
|
|
7437
|
+
* forgets them — re-running is safe by construction: copy-if-absent, delete
|
|
7438
|
+
* after verify) and each completed/failed run also lands one durable ops-log
|
|
7439
|
+
* row on the owning addon's surface.
|
|
7440
|
+
*/
|
|
7441
|
+
var RelocateJobStateSchema = _enum([
|
|
7442
|
+
"running",
|
|
7443
|
+
"done",
|
|
7444
|
+
"failed",
|
|
7445
|
+
"cancelled"
|
|
7446
|
+
]);
|
|
7447
|
+
var RelocateJobSchema = object({
|
|
7448
|
+
jobId: string(),
|
|
7449
|
+
state: RelocateJobStateSchema,
|
|
7450
|
+
/** Source location — for media relocation this is informational ('*': rows
|
|
7451
|
+
* move from wherever they are to the target). */
|
|
7452
|
+
fromLocationId: string(),
|
|
7453
|
+
toLocationId: string(),
|
|
7454
|
+
/** Scoped device, or null = every device. */
|
|
7455
|
+
deviceId: number().nullable(),
|
|
7456
|
+
/** What the job moves (owner-addon specific: segments/strips or media). */
|
|
7457
|
+
entities: array(string()),
|
|
7458
|
+
filesMoved: number().int(),
|
|
7459
|
+
bytesMoved: number().int(),
|
|
7460
|
+
/** Total files discovered up front; null while (or when) unknown. */
|
|
7461
|
+
filesTotal: number().int().nullable(),
|
|
7462
|
+
startedAt: number(),
|
|
7463
|
+
finishedAt: number().nullable(),
|
|
7464
|
+
error: string().nullable()
|
|
7465
|
+
});
|
|
7466
|
+
var RelocateFootageInputSchema = object({
|
|
7467
|
+
deviceId: number().optional(),
|
|
7468
|
+
fromLocationId: string(),
|
|
7469
|
+
toLocationId: string(),
|
|
7470
|
+
entities: array(_enum(["segments", "strips"])).optional(),
|
|
7471
|
+
/** Copy throttle in MB/s (default 40) — the drain is a background chore,
|
|
7472
|
+
* never allowed to starve live writers. */
|
|
7473
|
+
throttleMbps: number().min(1).max(1e3).optional()
|
|
7474
|
+
});
|
|
7475
|
+
var RelocateMediaInputSchema = object({
|
|
7476
|
+
deviceId: number().optional(),
|
|
7477
|
+
toLocationId: string(),
|
|
7478
|
+
throttleMbps: number().min(1).max(1e3).optional()
|
|
7479
|
+
});
|
|
7480
|
+
/**
|
|
7448
7481
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
|
7449
7482
|
* storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
|
|
7450
7483
|
* so the persisted record schema and the consumer-facing cap can both consume it
|
|
@@ -7494,6 +7527,13 @@ var StorageLocationSchema = object({
|
|
|
7494
7527
|
nodeId: string().optional(),
|
|
7495
7528
|
isDefault: boolean().default(false),
|
|
7496
7529
|
isSystem: boolean().default(false),
|
|
7530
|
+
/** COMPUTED at read time by the orchestrator (statfs of the backing volume
|
|
7531
|
+
* for node-local locations it can reach) — never persisted, absent when the
|
|
7532
|
+
* volume is remote/unreachable. The single capacity truth every UI reads. */
|
|
7533
|
+
capacity: object({
|
|
7534
|
+
totalBytes: number(),
|
|
7535
|
+
availableBytes: number()
|
|
7536
|
+
}).nullable().optional(),
|
|
7497
7537
|
createdAt: number(),
|
|
7498
7538
|
updatedAt: number()
|
|
7499
7539
|
});
|
|
@@ -8261,7 +8301,8 @@ var NcTaxonomyEntrySchema = object({
|
|
|
8261
8301
|
/** Macro/category parent for grouping ('car' → 'vehicle'); null for a top. */
|
|
8262
8302
|
parentKind: string().nullable()
|
|
8263
8303
|
});
|
|
8264
|
-
|
|
8304
|
+
/** The complete NC picker taxonomy — three grouped buckets. */
|
|
8305
|
+
var NcTaxonomySchema = object({
|
|
8265
8306
|
videoClasses: array(NcTaxonomyEntrySchema),
|
|
8266
8307
|
audioKinds: array(NcTaxonomyEntrySchema),
|
|
8267
8308
|
labels: array(NcTaxonomyEntrySchema)
|
|
@@ -9164,6 +9205,7 @@ function shallowEqual(a, b) {
|
|
|
9164
9205
|
for (const k of ak) if (a[k] !== b[k]) return false;
|
|
9165
9206
|
return true;
|
|
9166
9207
|
}
|
|
9208
|
+
new Set(["devices", "classes"]);
|
|
9167
9209
|
/**
|
|
9168
9210
|
* Shared geometry vocabulary for on-frame shape caps — privacy-mask,
|
|
9169
9211
|
* motion-zones, and the detection zones/lines editor all speak this one
|
|
@@ -9322,6 +9364,29 @@ var NcOccupancyConditionSchema = object({
|
|
|
9322
9364
|
count: number().int().min(0).default(1),
|
|
9323
9365
|
sustainSeconds: number().int().min(0).max(3600).default(15)
|
|
9324
9366
|
});
|
|
9367
|
+
/**
|
|
9368
|
+
* Which zone-crossing DIRECTION a rule accepts (`ObjectEvent.zoneCrossing`).
|
|
9369
|
+
*
|
|
9370
|
+
* The values are not symmetric, and deliberately so — the absent value has to
|
|
9371
|
+
* mean exactly what every rule authored before this condition existed already
|
|
9372
|
+
* does:
|
|
9373
|
+
* - `enter` — entries and every NON-crossing record (movement state,
|
|
9374
|
+
* package, sensor). Exits are rejected. **This is the absent behaviour**:
|
|
9375
|
+
* an operator who never asked for exits must not start receiving them.
|
|
9376
|
+
* - `exit` — ONLY an exit crossing. A record that is not a crossing at all
|
|
9377
|
+
* fails closed, because "the car left the drive" is a question about a
|
|
9378
|
+
* boundary, not about a detection.
|
|
9379
|
+
* - `any` — no direction filter; entries, exits and non-crossings alike.
|
|
9380
|
+
*
|
|
9381
|
+
* A rule asking for a direction should normally also scope `zones`, which the
|
|
9382
|
+
* engine evaluates against the crossed zone as well as the current membership
|
|
9383
|
+
* (an exit's membership no longer contains the zone it just left).
|
|
9384
|
+
*/
|
|
9385
|
+
var NcCrossingSchema = _enum([
|
|
9386
|
+
"enter",
|
|
9387
|
+
"exit",
|
|
9388
|
+
"any"
|
|
9389
|
+
]);
|
|
9325
9390
|
/** Admin-zone membership condition (zone IDs as stamped by the ZoneEngine). */
|
|
9326
9391
|
var NcZoneConditionSchema = object({
|
|
9327
9392
|
ids: array(string().min(1)).min(1),
|
|
@@ -9346,6 +9411,13 @@ var NcConditionsSchema = object({
|
|
|
9346
9411
|
/** Veto zones — any hit fails the rule. */
|
|
9347
9412
|
zonesExclude: array(string().min(1)).optional(),
|
|
9348
9413
|
/**
|
|
9414
|
+
* Zone-crossing direction. IMMEDIATE only — a crossing is a per-event fact
|
|
9415
|
+
* and a closed track carries none, so a `track-end` rule asking for one
|
|
9416
|
+
* fails closed (use `zones`, which tests `zonesVisited`). ABSENT = `enter`,
|
|
9417
|
+
* which is exactly today's behaviour. See {@link NcCrossingSchema}.
|
|
9418
|
+
*/
|
|
9419
|
+
crossing: NcCrossingSchema.optional(),
|
|
9420
|
+
/**
|
|
9349
9421
|
* Exact (case-insensitive) match on the record's collapsed `label`
|
|
9350
9422
|
* (identity name / plate text / subclass).
|
|
9351
9423
|
*/
|
|
@@ -9480,17 +9552,85 @@ var NcRuleTargetSchema = object({
|
|
|
9480
9552
|
* - `keyFrame` — the clean scene frame (no subject box).
|
|
9481
9553
|
* - `none` — no attachment.
|
|
9482
9554
|
*/
|
|
9483
|
-
|
|
9484
|
-
|
|
9485
|
-
|
|
9486
|
-
|
|
9487
|
-
|
|
9488
|
-
|
|
9555
|
+
/**
|
|
9556
|
+
* WHAT THE PICTURE SHOWS — chosen explicitly, because the implicit ladders
|
|
9557
|
+
* conflate it with the selection strategy and betray the request: asking for
|
|
9558
|
+
* the clean scene frame on an object-event owner used to start at
|
|
9559
|
+
* `fullFrameBoxed`, i.e. the annotated frame (2026-07-30).
|
|
9560
|
+
* - `cropped` — the subject, tight. What "who is at the door" wants.
|
|
9561
|
+
* - `full` — the clean scene, no annotation. What "what is going on" wants.
|
|
9562
|
+
* - `boxed` — the scene WITH the detection boxes drawn, for verifying what
|
|
9563
|
+
* the pipeline actually saw.
|
|
9564
|
+
*/
|
|
9565
|
+
var NcMediaFrameSchema = _enum([
|
|
9566
|
+
"cropped",
|
|
9567
|
+
"full",
|
|
9568
|
+
"boxed"
|
|
9569
|
+
]);
|
|
9570
|
+
var NcMediaPolicySchema = object({
|
|
9571
|
+
attach: _enum([
|
|
9572
|
+
"best",
|
|
9573
|
+
"best-matching",
|
|
9574
|
+
"keyFrame",
|
|
9575
|
+
"none"
|
|
9576
|
+
]).default("best"),
|
|
9577
|
+
/** What the still shows. Absent = `cropped` (the historical `best` shape). */
|
|
9578
|
+
frame: NcMediaFrameSchema.optional(),
|
|
9579
|
+
/** Crop the attached still to the rule's condition-zone bbox (padded) —
|
|
9580
|
+
* "show me the ZONE", not the whole scene or the subject crop. */
|
|
9581
|
+
zoneCrop: boolean().optional(),
|
|
9582
|
+
/**
|
|
9583
|
+
* Also attach a short GIF cut from the stream broker's clip ring around the
|
|
9584
|
+
* event — NOT from the recording, so the camera does not have to be
|
|
9585
|
+
* recording, and the window sits AROUND the moment instead of a segment
|
|
9586
|
+
* behind it. Fail-closed: a window the ring does not cover contributes no
|
|
9587
|
+
* gif, never a failed notification.
|
|
9588
|
+
*/
|
|
9589
|
+
gif: boolean().optional(),
|
|
9590
|
+
/**
|
|
9591
|
+
* Also attach a short MP4 CLIP of the same cut. Same source and the same
|
|
9592
|
+
* fail-closed rule as `gif`. Prefer it where the backend takes video
|
|
9593
|
+
* (telegram, discord, zentik, webhook); backends that do not are handled by
|
|
9594
|
+
* the degrade engine, which drops the video and keeps the still.
|
|
9595
|
+
*/
|
|
9596
|
+
clip: boolean().optional(),
|
|
9597
|
+
/** Seconds of footage BEFORE / AFTER the event instant. Defaults 3 / 7. */
|
|
9598
|
+
clipPreRollSec: number().int().min(0).max(30).optional(),
|
|
9599
|
+
clipPostRollSec: number().int().min(0).max(30).optional(),
|
|
9600
|
+
/**
|
|
9601
|
+
* Which stream profile the footage is cut from. Absent = the CHEAPEST
|
|
9602
|
+
* assigned profile: a notification is watched on a phone, so the 4K
|
|
9603
|
+
* rendition would burn CPU to produce a file the client downscales anyway.
|
|
9604
|
+
* A profile that is not assigned falls back to the cheapest, and the render
|
|
9605
|
+
* reports which one actually ran.
|
|
9606
|
+
*/
|
|
9607
|
+
profile: CamProfileSchema.optional()
|
|
9608
|
+
});
|
|
9609
|
+
/**
|
|
9610
|
+
* Cooldown GRANULARITY over the subject's class — how much a fired
|
|
9611
|
+
* notification suppresses.
|
|
9612
|
+
* - `shared` (default, and the absent value) — one window for the whole
|
|
9613
|
+
* rule/scope: a cat silences the next dog for `cooldownSec`.
|
|
9614
|
+
* - `per-class` — an independent window per detected class, so cat→dog fires
|
|
9615
|
+
* at once and cat→cat still waits.
|
|
9616
|
+
*
|
|
9617
|
+
* AUDIO subjects are ALWAYS per-class regardless of this setting: a scream
|
|
9618
|
+
* must not be swallowed by a bark's window (the precedent this generalizes —
|
|
9619
|
+
* see `cooldownKey` in the rule engine).
|
|
9620
|
+
*/
|
|
9621
|
+
var NcThrottleGranularitySchema = _enum(["shared", "per-class"]);
|
|
9489
9622
|
/** Throttle — cooldown survives restarts (rebuilt from the outbox on boot). */
|
|
9490
9623
|
var NcThrottleSchema = object({
|
|
9491
9624
|
cooldownSec: number().int().min(0).max(86400).default(60),
|
|
9492
9625
|
/** `rule` = one shared cooldown; `rule-device` = per-camera cooldown. */
|
|
9493
|
-
scope: _enum(["rule", "rule-device"]).default("rule-device")
|
|
9626
|
+
scope: _enum(["rule", "rule-device"]).default("rule-device"),
|
|
9627
|
+
/**
|
|
9628
|
+
* Class granularity of the cooldown key. Optional rather than defaulted:
|
|
9629
|
+
* a Zod default does NOT run on the addon→addon cap path, so a persisted
|
|
9630
|
+
* rule authored before this field simply carries none — and the engine
|
|
9631
|
+
* reads absent as `shared`, the pre-existing behaviour.
|
|
9632
|
+
*/
|
|
9633
|
+
granularity: NcThrottleGranularitySchema.optional()
|
|
9494
9634
|
});
|
|
9495
9635
|
/** Client-supplied rule fields (server stamps id/createdBy/createdAt/updatedAt). */
|
|
9496
9636
|
var NcRuleInputSchema = object({
|
|
@@ -9499,7 +9639,19 @@ var NcRuleInputSchema = object({
|
|
|
9499
9639
|
delivery: NcDeliverySchema,
|
|
9500
9640
|
conditions: NcConditionsSchema.default({}),
|
|
9501
9641
|
schedule: NcScheduleSchema.optional(),
|
|
9502
|
-
|
|
9642
|
+
/** May be empty when `targetUsers` addresses at least one user — the
|
|
9643
|
+
* "at least one addressee" invariant is enforced by the provider, because
|
|
9644
|
+
* a cross-field refine here would break `NcRulePatchSchema.partial()`. */
|
|
9645
|
+
targets: array(NcRuleTargetSchema),
|
|
9646
|
+
/**
|
|
9647
|
+
* USERS this rule addresses in addition to `targets` (Phase 4). At fire
|
|
9648
|
+
* time each user fans out to the personal targets they own
|
|
9649
|
+
* (`config.ownerUserId`), filtered by that user's `allowedDevices` for the
|
|
9650
|
+
* firing camera — a user is never notified about a device they cannot open.
|
|
9651
|
+
* Per-user opt-outs (`disabledTargetIds`) still apply to the fanned-out
|
|
9652
|
+
* targets.
|
|
9653
|
+
*/
|
|
9654
|
+
targetUsers: array(string()).optional(),
|
|
9503
9655
|
media: NcMediaPolicySchema.default({ attach: "best" }),
|
|
9504
9656
|
throttle: NcThrottleSchema.default({
|
|
9505
9657
|
cooldownSec: 60,
|
|
@@ -9586,6 +9738,7 @@ var NcConditionDescriptorSchema = object({
|
|
|
9586
9738
|
"schedule",
|
|
9587
9739
|
"plateMatcher",
|
|
9588
9740
|
"packagePhase",
|
|
9741
|
+
"crossingSelect",
|
|
9589
9742
|
"polygonDraw",
|
|
9590
9743
|
"occupancy"
|
|
9591
9744
|
]),
|
|
@@ -9712,7 +9865,10 @@ method(object({}), object({ rules: array(NcRuleSchema) }), { auth: "admin" }), m
|
|
|
9712
9865
|
}), object({ results: array(NcTestResultSchema) }), {
|
|
9713
9866
|
kind: "mutation",
|
|
9714
9867
|
auth: "admin"
|
|
9715
|
-
}), method(object({}), object({
|
|
9868
|
+
}), method(object({}), object({
|
|
9869
|
+
catalog: array(NcConditionDescriptorSchema),
|
|
9870
|
+
taxonomy: NcTaxonomySchema.optional()
|
|
9871
|
+
})), method(object({ filter: NcHistoryFilterSchema.default({ limit: 100 }) }), object({ entries: array(NcHistoryEntrySchema) }), { auth: "admin" });
|
|
9716
9872
|
/**
|
|
9717
9873
|
* TimelapseRule — the STANDALONE scheduled timelapse producer's rule model.
|
|
9718
9874
|
*
|
|
@@ -10721,6 +10877,28 @@ method(object({
|
|
|
10721
10877
|
}), object({ success: literal(true) }), {
|
|
10722
10878
|
kind: "mutation",
|
|
10723
10879
|
auth: "admin"
|
|
10880
|
+
}), method(object({
|
|
10881
|
+
deviceId: number(),
|
|
10882
|
+
/** Absent = the LOWEST assigned profile — a notification attachment is
|
|
10883
|
+
* watched on a phone, and the cheap rendition is the right default. */
|
|
10884
|
+
profile: CamProfileSchema.optional(),
|
|
10885
|
+
aroundMs: number(),
|
|
10886
|
+
preRollSec: number().min(0).max(20).default(3),
|
|
10887
|
+
postRollSec: number().min(0).max(20).default(5),
|
|
10888
|
+
format: _enum(["gif", "mp4"]).default("gif"),
|
|
10889
|
+
maxWidth: number().int().min(120).max(1920).default(480),
|
|
10890
|
+
/** GIF only — MP4 keeps the source cadence. */
|
|
10891
|
+
fps: number().int().min(1).max(15).default(5)
|
|
10892
|
+
}), object({
|
|
10893
|
+
base64: string(),
|
|
10894
|
+
mime: string(),
|
|
10895
|
+
bytes: number().int(),
|
|
10896
|
+
/** The profile actually rendered (what the default resolved to). */
|
|
10897
|
+
profile: CamProfileSchema,
|
|
10898
|
+
durationMs: number()
|
|
10899
|
+
}), {
|
|
10900
|
+
kind: "mutation",
|
|
10901
|
+
auth: "admin"
|
|
10724
10902
|
}), method(_void(), array(CameraStreamSchema).readonly()), method(_void(), array(ProfileSlotSchema).readonly()), method(object({ brokerId: string() }), BrokerStatsSchema), method(object({ brokerId: string() }), object({
|
|
10725
10903
|
probed: boolean(),
|
|
10726
10904
|
summary: string()
|
|
@@ -13851,6 +14029,18 @@ var motionCapability = {
|
|
|
13851
14029
|
name: "motion",
|
|
13852
14030
|
scope: "device",
|
|
13853
14031
|
mode: "singleton",
|
|
14032
|
+
/**
|
|
14033
|
+
* Providers register per-device natives via `ctx.registerNativeCap`
|
|
14034
|
+
* (Hikvision/Reolink/Amcrest/Wyze/HA/Homematic/Alexa/Matter) — there is
|
|
14035
|
+
* NO system singleton provider. Without this flag `resolveCapMount`
|
|
14036
|
+
* derived `{ kind: 'singleton' }`, so `motion.getStatus`/`isDetected`
|
|
14037
|
+
* resolved via `registry.getSingleton('motion')` (always null) and every
|
|
14038
|
+
* call 412'd "provider not available" while bindings listed a live
|
|
14039
|
+
* `motion` native (2026-08-02). The flag routes the router through
|
|
14040
|
+
* `requireDeviceScoped` → `getProviderForDevice`, like `motion-trigger`,
|
|
14041
|
+
* `snapshot` and every other per-device native cap.
|
|
14042
|
+
*/
|
|
14043
|
+
deviceNative: true,
|
|
13854
14044
|
deviceTypes: [DeviceType.Camera, DeviceType.Sensor],
|
|
13855
14045
|
methods: {
|
|
13856
14046
|
/**
|
|
@@ -18800,7 +18990,10 @@ method(object({
|
|
|
18800
18990
|
}), method(object({
|
|
18801
18991
|
deviceId: number(),
|
|
18802
18992
|
caps: array(string()).readonly().optional()
|
|
18803
|
-
}), record(string(), unknown().nullable()))
|
|
18993
|
+
}), record(string(), unknown().nullable())), method(object({
|
|
18994
|
+
deviceIds: array(number()).readonly(),
|
|
18995
|
+
caps: array(string()).readonly().optional()
|
|
18996
|
+
}), record(string(), record(string(), unknown().nullable())));
|
|
18804
18997
|
method(object({ deviceId: number() }), record(string(), record(string(), unknown()))), method(object({
|
|
18805
18998
|
deviceId: number(),
|
|
18806
18999
|
capName: string()
|
|
@@ -19731,6 +19924,36 @@ var TargetKindSchema = object({
|
|
|
19731
19924
|
icon: string(),
|
|
19732
19925
|
/** Stamped by each provider so the concat-fanned catalog stays routable. */
|
|
19733
19926
|
addonId: string(),
|
|
19927
|
+
/**
|
|
19928
|
+
* URL of the kind's bundled BRAND icon, served by the providing addon over
|
|
19929
|
+
* its own `addon-routes` surface (`/addon/<addonId>/icons/<kind>`). Absent
|
|
19930
|
+
* when the addon bundles no icon for that kind — the client then falls back
|
|
19931
|
+
* to a neutral glyph rather than rendering the raw `icon` NAME as text.
|
|
19932
|
+
*
|
|
19933
|
+
* Root-relative on purpose: it resolves against whatever origin serves a web
|
|
19934
|
+
* client, and a native client joins it onto its own hub base.
|
|
19935
|
+
*
|
|
19936
|
+
* DECLARED here deliberately. It used to travel as an undeclared passthrough
|
|
19937
|
+
* field that survived only because the runtime cap-router forwards provider
|
|
19938
|
+
* output verbatim — so every consumer had to re-declare it by hand to stop
|
|
19939
|
+
* its own Zod parse from stripping it, and the whole arrangement would have
|
|
19940
|
+
* broken silently the moment output validation was tightened anywhere.
|
|
19941
|
+
*/
|
|
19942
|
+
iconUrl: string().optional(),
|
|
19943
|
+
/**
|
|
19944
|
+
* Media type of {@link iconUrl} (`image/svg+xml`, `image/png`, …).
|
|
19945
|
+
*
|
|
19946
|
+
* The server knows this and therefore says it, because the client cannot
|
|
19947
|
+
* safely guess: a React-Native client renders SVG and raster through two
|
|
19948
|
+
* DIFFERENT components (`react-native-svg` vs `expo-image` — expo-image does
|
|
19949
|
+
* not decode SVG on iOS/Android), so without this it silently fell back to a
|
|
19950
|
+
* placeholder glyph for every vector icon while the web build looked fine.
|
|
19951
|
+
*
|
|
19952
|
+
* Absent when {@link iconUrl} is absent, or for a legacy provider that has
|
|
19953
|
+
* not been updated — a client that cannot determine the type should prefer
|
|
19954
|
+
* its raster path, which is the safe default for an unknown image.
|
|
19955
|
+
*/
|
|
19956
|
+
iconMediaType: string().optional(),
|
|
19734
19957
|
configSchema: ConfigSchemaPassthrough,
|
|
19735
19958
|
supportsDiscovery: boolean(),
|
|
19736
19959
|
caps: TargetKindCapsSchema
|
|
@@ -20178,6 +20401,29 @@ var MotionEventSchema = object({
|
|
|
20178
20401
|
* Absent on legacy rows ⇒ treat as `pipeline`.
|
|
20179
20402
|
*/
|
|
20180
20403
|
var DetectionSourceSchema = _enum(["pipeline", "onboard"]);
|
|
20404
|
+
/**
|
|
20405
|
+
* The confirmed zone crossing that produced an object event. Present ONLY on
|
|
20406
|
+
* an event emitted BY a crossing (`zone.enter` / `zone.exit`); a movement-state
|
|
20407
|
+
* event (`object.entering` / `leaving` / `stationary` / `loitering`) and an
|
|
20408
|
+
* appearance event carry none, so a rule asking for a direction fails closed
|
|
20409
|
+
* on them.
|
|
20410
|
+
*
|
|
20411
|
+
* Exactly ONE crossing per event: the emitter turns each confirmed crossing
|
|
20412
|
+
* into its own event, so a frame in which a track enters A while leaving B
|
|
20413
|
+
* produces two events with two directions — never one ambiguous row.
|
|
20414
|
+
*
|
|
20415
|
+
* `zoneId` is load-bearing for an EXIT: the event's `zones` list is the
|
|
20416
|
+
* membership the box has NOW, and by definition it no longer contains the zone
|
|
20417
|
+
* that was just left. Without the id here, a zone-scoped rule could never match
|
|
20418
|
+
* the exit it asked for.
|
|
20419
|
+
*/
|
|
20420
|
+
var ZoneCrossingSchema = object({
|
|
20421
|
+
direction: _enum(["enter", "exit"]),
|
|
20422
|
+
/** Admin zone id crossed. */
|
|
20423
|
+
zoneId: string(),
|
|
20424
|
+
/** Zone display name at crossing time (falls back to the id). */
|
|
20425
|
+
zoneName: string().optional()
|
|
20426
|
+
});
|
|
20181
20427
|
var ObjectEventSchema = object({
|
|
20182
20428
|
...BaseEventFields,
|
|
20183
20429
|
kind: literal("object"),
|
|
@@ -20204,6 +20450,12 @@ var ObjectEventSchema = object({
|
|
|
20204
20450
|
zones: array(string()).readonly().optional(),
|
|
20205
20451
|
/** Omitted in slim projection. */
|
|
20206
20452
|
state: TrackStateSchema.optional(),
|
|
20453
|
+
/**
|
|
20454
|
+
* The zone crossing this event IS, when it is one. Absent on every other
|
|
20455
|
+
* event kind (movement state, appearance, package) — see
|
|
20456
|
+
* {@link ZoneCrossingSchema}. Omitted in slim projection.
|
|
20457
|
+
*/
|
|
20458
|
+
zoneCrossing: ZoneCrossingSchema.optional(),
|
|
20207
20459
|
/** Detection-frame dimensions in pixels — let consumers normalize the
|
|
20208
20460
|
* pixel-space `bbox` onto a displayed image. Omitted in slim projection. */
|
|
20209
20461
|
frameWidth: number().optional(),
|
|
@@ -20462,6 +20714,15 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20462
20714
|
}), method(object({ deviceId: number() }), EventPruneCountsSchema, {
|
|
20463
20715
|
kind: "mutation",
|
|
20464
20716
|
auth: "admin"
|
|
20717
|
+
}), method(RelocateMediaInputSchema, object({ jobId: string() }), {
|
|
20718
|
+
kind: "mutation",
|
|
20719
|
+
auth: "admin"
|
|
20720
|
+
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
20721
|
+
kind: "query",
|
|
20722
|
+
auth: "admin"
|
|
20723
|
+
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
20724
|
+
kind: "mutation",
|
|
20725
|
+
auth: "admin"
|
|
20465
20726
|
}), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
|
|
20466
20727
|
kind: "query",
|
|
20467
20728
|
auth: "admin"
|
|
@@ -22941,6 +23202,17 @@ var GetConnectionEndpointsResultSchema = object({ endpoints: array(object({
|
|
|
22941
23202
|
*/
|
|
22942
23203
|
priority: number()
|
|
22943
23204
|
})).readonly() });
|
|
23205
|
+
/**
|
|
23206
|
+
* The chosen outbound endpoint for notification artifacts. `baseUrl: null` =
|
|
23207
|
+
* AUTO (resolved from the candidate ranking at send time); `resolved` reports
|
|
23208
|
+
* what AUTO currently picks, so the UI can show the effective value either way.
|
|
23209
|
+
*/
|
|
23210
|
+
var NotificationEndpointSchema = object({
|
|
23211
|
+
/** The operator's explicit choice, or null for AUTO. */
|
|
23212
|
+
baseUrl: string().nullable(),
|
|
23213
|
+
/** What the ranking currently resolves to (null when nothing is reachable). */
|
|
23214
|
+
resolved: string().nullable()
|
|
23215
|
+
});
|
|
22944
23216
|
var AllowedAddressesSchema = object({
|
|
22945
23217
|
/**
|
|
22946
23218
|
* Allowlist of interface addresses operators have explicitly opted
|
|
@@ -22963,7 +23235,7 @@ method(_void(), ListResultSchema), method(_void(), PreferredSchema), method(obje
|
|
|
22963
23235
|
* to avoid mixed-content blocks in the browser. The public
|
|
22964
23236
|
* tunnel always emits `https://` regardless. */
|
|
22965
23237
|
scheme: _enum(["http", "https"]).optional()
|
|
22966
|
-
}), GetConnectionEndpointsResultSchema), method(_void(), AllowedAddressesSchema), method(AllowedAddressesSchema, object({ success: literal(true) }), { kind: "mutation" }), method(_void(), AllowedAddressesSchema, { kind: "mutation" });
|
|
23238
|
+
}), GetConnectionEndpointsResultSchema), method(_void(), NotificationEndpointSchema), method(object({ baseUrl: string().nullable() }), NotificationEndpointSchema, { kind: "mutation" }), method(_void(), AllowedAddressesSchema), method(AllowedAddressesSchema, object({ success: literal(true) }), { kind: "mutation" }), method(_void(), AllowedAddressesSchema, { kind: "mutation" });
|
|
22967
23239
|
/**
|
|
22968
23240
|
* mesh-network — collection cap for mesh-VPN providers.
|
|
22969
23241
|
*
|
|
@@ -23762,7 +24034,12 @@ var RecordingDeviceUsageSchema = object({
|
|
|
23762
24034
|
var RecordingLocationUsageSchema = object({
|
|
23763
24035
|
/** StorageLocation id; null for the legacy/degraded single-root fallback. */
|
|
23764
24036
|
locationId: string().nullable(),
|
|
23765
|
-
/**
|
|
24037
|
+
/** Every location id sharing this row's PHYSICAL volume (aliases). One row
|
|
24038
|
+
* is emitted per physical disk (2026-07-29): two locations on one root
|
|
24039
|
+
* previously rendered as two identical "disks" with a nonsensical used
|
|
24040
|
+
* split — hydrate attribution across aliases is arbitrary by nature. */
|
|
24041
|
+
locationIds: array(string()).optional(),
|
|
24042
|
+
/** Bytes of recordings stored on this PHYSICAL volume (all aliases). */
|
|
23766
24043
|
usedBytes: number(),
|
|
23767
24044
|
/** Free bytes on the location's volume; null when capacity is unknown (remote). */
|
|
23768
24045
|
availableBytes: number().nullable(),
|
|
@@ -23874,6 +24151,44 @@ method(object({
|
|
|
23874
24151
|
}), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
|
|
23875
24152
|
kind: "query",
|
|
23876
24153
|
auth: "admin"
|
|
24154
|
+
}), method(object({
|
|
24155
|
+
deviceId: number(),
|
|
24156
|
+
aroundMs: number(),
|
|
24157
|
+
preRollSec: number().min(0).max(30).default(2),
|
|
24158
|
+
postRollSec: number().min(0).max(30).default(5),
|
|
24159
|
+
maxWidth: number().int().min(120).max(1280).default(480),
|
|
24160
|
+
fps: number().int().min(1).max(15).default(5)
|
|
24161
|
+
}), object({
|
|
24162
|
+
gifBase64: string(),
|
|
24163
|
+
fromMs: number(),
|
|
24164
|
+
toMs: number()
|
|
24165
|
+
}), {
|
|
24166
|
+
kind: "mutation",
|
|
24167
|
+
auth: "admin"
|
|
24168
|
+
}), method(object({
|
|
24169
|
+
deviceId: number(),
|
|
24170
|
+
aroundMs: number(),
|
|
24171
|
+
preRollSec: number().min(0).max(30).default(3),
|
|
24172
|
+
postRollSec: number().min(0).max(30).default(7),
|
|
24173
|
+
maxWidth: number().int().min(160).max(1920).default(640)
|
|
24174
|
+
}), object({
|
|
24175
|
+
clipBase64: string(),
|
|
24176
|
+
mime: string(),
|
|
24177
|
+
fromMs: number(),
|
|
24178
|
+
toMs: number(),
|
|
24179
|
+
bytes: number().int()
|
|
24180
|
+
}), {
|
|
24181
|
+
kind: "mutation",
|
|
24182
|
+
auth: "admin"
|
|
24183
|
+
}), method(RelocateFootageInputSchema, object({ jobId: string() }), {
|
|
24184
|
+
kind: "mutation",
|
|
24185
|
+
auth: "admin"
|
|
24186
|
+
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
24187
|
+
kind: "query",
|
|
24188
|
+
auth: "admin"
|
|
24189
|
+
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
24190
|
+
kind: "mutation",
|
|
24191
|
+
auth: "admin"
|
|
23877
24192
|
});
|
|
23878
24193
|
/**
|
|
23879
24194
|
* `recordingExport` cap — render a footage time range into a single downloadable
|
|
@@ -25465,6 +25780,12 @@ Object.freeze({
|
|
|
25465
25780
|
addonId: null,
|
|
25466
25781
|
access: "view"
|
|
25467
25782
|
},
|
|
25783
|
+
"deviceManager.getDeviceStatusAggregateBatch": {
|
|
25784
|
+
capName: "device-manager",
|
|
25785
|
+
capScope: "system",
|
|
25786
|
+
addonId: null,
|
|
25787
|
+
access: "view"
|
|
25788
|
+
},
|
|
25468
25789
|
"deviceManager.getLinkedDevices": {
|
|
25469
25790
|
capName: "device-manager",
|
|
25470
25791
|
capScope: "system",
|
|
@@ -26359,6 +26680,12 @@ Object.freeze({
|
|
|
26359
26680
|
addonId: null,
|
|
26360
26681
|
access: "view"
|
|
26361
26682
|
},
|
|
26683
|
+
"localNetwork.getNotificationEndpoint": {
|
|
26684
|
+
capName: "local-network",
|
|
26685
|
+
capScope: "system",
|
|
26686
|
+
addonId: null,
|
|
26687
|
+
access: "view"
|
|
26688
|
+
},
|
|
26362
26689
|
"localNetwork.getPreferred": {
|
|
26363
26690
|
capName: "local-network",
|
|
26364
26691
|
capScope: "system",
|
|
@@ -26383,6 +26710,12 @@ Object.freeze({
|
|
|
26383
26710
|
addonId: null,
|
|
26384
26711
|
access: "create"
|
|
26385
26712
|
},
|
|
26713
|
+
"localNetwork.setNotificationEndpoint": {
|
|
26714
|
+
capName: "local-network",
|
|
26715
|
+
capScope: "system",
|
|
26716
|
+
addonId: null,
|
|
26717
|
+
access: "create"
|
|
26718
|
+
},
|
|
26386
26719
|
"lockControl.lock": {
|
|
26387
26720
|
capName: "lock-control",
|
|
26388
26721
|
capScope: "device",
|
|
@@ -27025,6 +27358,12 @@ Object.freeze({
|
|
|
27025
27358
|
addonId: null,
|
|
27026
27359
|
access: "create"
|
|
27027
27360
|
},
|
|
27361
|
+
"pipelineAnalytics.cancelMediaRelocate": {
|
|
27362
|
+
capName: "pipeline-analytics",
|
|
27363
|
+
capScope: "device",
|
|
27364
|
+
addonId: null,
|
|
27365
|
+
access: "create"
|
|
27366
|
+
},
|
|
27028
27367
|
"pipelineAnalytics.clearTracks": {
|
|
27029
27368
|
capName: "pipeline-analytics",
|
|
27030
27369
|
capScope: "device",
|
|
@@ -27079,6 +27418,12 @@ Object.freeze({
|
|
|
27079
27418
|
addonId: null,
|
|
27080
27419
|
access: "view"
|
|
27081
27420
|
},
|
|
27421
|
+
"pipelineAnalytics.getMediaRelocateStatus": {
|
|
27422
|
+
capName: "pipeline-analytics",
|
|
27423
|
+
capScope: "device",
|
|
27424
|
+
addonId: null,
|
|
27425
|
+
access: "view"
|
|
27426
|
+
},
|
|
27082
27427
|
"pipelineAnalytics.getMotionEvents": {
|
|
27083
27428
|
capName: "pipeline-analytics",
|
|
27084
27429
|
capScope: "device",
|
|
@@ -27151,6 +27496,12 @@ Object.freeze({
|
|
|
27151
27496
|
addonId: null,
|
|
27152
27497
|
access: "create"
|
|
27153
27498
|
},
|
|
27499
|
+
"pipelineAnalytics.relocateMedia": {
|
|
27500
|
+
capName: "pipeline-analytics",
|
|
27501
|
+
capScope: "device",
|
|
27502
|
+
addonId: null,
|
|
27503
|
+
access: "create"
|
|
27504
|
+
},
|
|
27154
27505
|
"pipelineAnalytics.searchObjectEvents": {
|
|
27155
27506
|
capName: "pipeline-analytics",
|
|
27156
27507
|
capScope: "device",
|
|
@@ -27913,6 +28264,12 @@ Object.freeze({
|
|
|
27913
28264
|
addonId: null,
|
|
27914
28265
|
access: "create"
|
|
27915
28266
|
},
|
|
28267
|
+
"recording.cancelRelocate": {
|
|
28268
|
+
capName: "recording",
|
|
28269
|
+
capScope: "system",
|
|
28270
|
+
addonId: null,
|
|
28271
|
+
access: "create"
|
|
28272
|
+
},
|
|
27916
28273
|
"recording.deleteFootprint": {
|
|
27917
28274
|
capName: "recording",
|
|
27918
28275
|
capScope: "system",
|
|
@@ -27943,6 +28300,12 @@ Object.freeze({
|
|
|
27943
28300
|
addonId: null,
|
|
27944
28301
|
access: "view"
|
|
27945
28302
|
},
|
|
28303
|
+
"recording.getRelocateStatus": {
|
|
28304
|
+
capName: "recording",
|
|
28305
|
+
capScope: "system",
|
|
28306
|
+
addonId: null,
|
|
28307
|
+
access: "view"
|
|
28308
|
+
},
|
|
27946
28309
|
"recording.getStorageUsage": {
|
|
27947
28310
|
capName: "recording",
|
|
27948
28311
|
capScope: "system",
|
|
@@ -27973,6 +28336,24 @@ Object.freeze({
|
|
|
27973
28336
|
addonId: null,
|
|
27974
28337
|
access: "view"
|
|
27975
28338
|
},
|
|
28339
|
+
"recording.relocateFootage": {
|
|
28340
|
+
capName: "recording",
|
|
28341
|
+
capScope: "system",
|
|
28342
|
+
addonId: null,
|
|
28343
|
+
access: "create"
|
|
28344
|
+
},
|
|
28345
|
+
"recording.renderClip": {
|
|
28346
|
+
capName: "recording",
|
|
28347
|
+
capScope: "system",
|
|
28348
|
+
addonId: null,
|
|
28349
|
+
access: "create"
|
|
28350
|
+
},
|
|
28351
|
+
"recording.renderGif": {
|
|
28352
|
+
capName: "recording",
|
|
28353
|
+
capScope: "system",
|
|
28354
|
+
addonId: null,
|
|
28355
|
+
access: "create"
|
|
28356
|
+
},
|
|
27976
28357
|
"recording.rescanStorage": {
|
|
27977
28358
|
capName: "recording",
|
|
27978
28359
|
capScope: "system",
|
|
@@ -28567,6 +28948,12 @@ Object.freeze({
|
|
|
28567
28948
|
addonId: null,
|
|
28568
28949
|
access: "create"
|
|
28569
28950
|
},
|
|
28951
|
+
"streamBroker.renderPreBufferClip": {
|
|
28952
|
+
capName: "stream-broker",
|
|
28953
|
+
capScope: "system",
|
|
28954
|
+
addonId: null,
|
|
28955
|
+
access: "create"
|
|
28956
|
+
},
|
|
28570
28957
|
"streamBroker.restartProfile": {
|
|
28571
28958
|
capName: "stream-broker",
|
|
28572
28959
|
capScope: "system",
|