@camstack/addon-pipeline-orchestrator 1.2.126 → 1.2.127

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -13847,6 +13847,114 @@ method(object({
13847
13847
  height: number()
13848
13848
  }), EmbeddingResultSchema, { auth: "admin" }), method(object({ text: string() }), EmbeddingResultSchema, { auth: "admin" }), method(_void(), EmbeddingInfoSchema, { auth: "admin" });
13849
13849
  /**
13850
+ * `failure-contribution` — the capability an addon reports its OWN losses
13851
+ * through, per camera, with the denominator attached. It stores nothing.
13852
+ *
13853
+ * ## The twin of `load-contribution`, and why it is a twin and not a field
13854
+ *
13855
+ * `load-contribution` answers *what did this camera COST*. This answers *what
13856
+ * did this camera LOSE*. The reporting discipline is identical and deliberately
13857
+ * copied: the contributor reports what it already knows, hub-main adds only
13858
+ * `addonId`, nothing needs global knowledge, and there is no central list for
13859
+ * somebody to forget to edit.
13860
+ *
13861
+ * They are not merged, because their invariants are opposites:
13862
+ *
13863
+ * - a `load-contribution` measurement is **absent, never zero** — a zero would
13864
+ * claim a camera cost nothing, which is a measurement nobody made;
13865
+ * - a `failure-contribution` zero is the **most valuable value on the
13866
+ * surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
13867
+ * and it is exactly what an absent entry cannot say.
13868
+ *
13869
+ * Putting a loss counter on a cost entry would also break the reconciliation
13870
+ * that gives `load-contribution` its point: contributions are subtracted from
13871
+ * `metrics.node-processes-snapshot` to find processes nobody claims. A failure
13872
+ * has no process.
13873
+ *
13874
+ * ## Why not a log line, since the counters already exist
13875
+ *
13876
+ * Several of these paths already counted themselves — `CaptureScheduler`'s
13877
+ * per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
13878
+ * ends in a log line, and a log line is the thing the operator asked to stop
13879
+ * needing: *"possiamo armare questi errori intanto? Così al prossimo giro
13880
+ * ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
13881
+ * hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
13882
+ * media blackout were both diagnosed. The counters stay; this is where they can
13883
+ * be READ.
13884
+ *
13885
+ * ## The rate is served with its denominator or not at all
13886
+ *
13887
+ * Every entry carries `attempts` and `succeeded`. A miss count alone is
13888
+ * unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
13889
+ * than yesterday" and was **flat across twelve hours** once divided by the
13890
+ * successes on the same path. A surface that publishes only the numerator
13891
+ * reproduces that mistake on every read.
13892
+ *
13893
+ * ## Shape
13894
+ *
13895
+ * Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
13896
+ * `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
13897
+ * generated hooks, while `addons.listCapabilityProviders` still enumerates it
13898
+ * and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
13899
+ * a forked runner's entries reach hub-main over transport that already exists.
13900
+ * No new UDS message, no second registry (D3). The operator reads the assembled
13901
+ * result through `system.getFailureContributions`.
13902
+ */
13903
+ var FailureReasonCountSchema = object({
13904
+ /**
13905
+ * Why the attempt did not land, in the contributor's own vocabulary —
13906
+ * `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
13907
+ * strings that already appear in this repo's logs and, where one exists, the
13908
+ * same string the per-track `previewMissReason` records (D276): a second
13909
+ * vocabulary for the same loss would make the row and the counter
13910
+ * un-joinable.
13911
+ */
13912
+ reason: string(),
13913
+ count: number().int().nonnegative()
13914
+ });
13915
+ var FailureContributionSchema = object({
13916
+ /**
13917
+ * The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
13918
+ * `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
13919
+ * `unit` free: the families are owned by different addons and a shared enum
13920
+ * is a central list that rots invisibly.
13921
+ */
13922
+ family: string(),
13923
+ /**
13924
+ * The NUMERIC device id — the same value every log line carries as
13925
+ * `tags.deviceId`. Never nullable and never absent: a contributor that
13926
+ * cannot name the camera must not emit the entry, because a fleet total
13927
+ * cannot answer the only question anybody asks of this surface.
13928
+ */
13929
+ deviceId: number().int().positive(),
13930
+ /**
13931
+ * A second dimension inside the family: the model / step id for an inference
13932
+ * timeout, so "which camera AND which model" is one read. Absent when the
13933
+ * family has a single variant.
13934
+ */
13935
+ variant: string().optional(),
13936
+ /**
13937
+ * Epoch ms this counter started — the INCARNATION MARKER. A consumer
13938
+ * differencing two reads must drop the interval when it changes, because the
13939
+ * counter restarted from zero in a respawned runner. Same discipline as
13940
+ * `LoadContribution.startedAtMs`.
13941
+ */
13942
+ sinceMs: number(),
13943
+ /** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
13944
+ atMs: number(),
13945
+ /**
13946
+ * THE DENOMINATOR — every attempt on this path for this camera in the
13947
+ * window. A failure count published without it is the mistake this schema
13948
+ * exists to make impossible.
13949
+ */
13950
+ attempts: number().int().nonnegative(),
13951
+ /** Attempts that landed. `attempts - succeeded` is the loss. */
13952
+ succeeded: number().int().nonnegative(),
13953
+ /** The loss, partitioned. Sums to `attempts - succeeded`. */
13954
+ reasons: array(FailureReasonCountSchema).readonly()
13955
+ });
13956
+ method(_void(), array(FailureContributionSchema).readonly());
13957
+ /**
13850
13958
  * filesystem-browse — per-node capability for browsing the node's local
13851
13959
  * filesystem. Reads are unconfined (whole filesystem, from `/` down); WRITES
13852
13960
  * are sandboxed to operator-configured allowed roots (D115). Used by the
@@ -14368,6 +14476,68 @@ method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }
14368
14476
  kind: "mutation",
14369
14477
  auth: "admin"
14370
14478
  });
14479
+ var LoadContributionSchema = object({
14480
+ role: _enum([
14481
+ "decode",
14482
+ "transcode",
14483
+ "recording",
14484
+ "streaming",
14485
+ "detection"
14486
+ ]),
14487
+ /**
14488
+ * The NUMERIC device id — the same value every log line carries as
14489
+ * `tags.deviceId`. `null` means this cost genuinely belongs to no single
14490
+ * camera (a shared pool), NOT that the contributor forgot to look it up: a
14491
+ * contributor that cannot name its camera must not emit the entry at all,
14492
+ * because an unnamed per-camera entry is indistinguishable from a shared one
14493
+ * and would quietly turn one camera's cost into everybody's.
14494
+ */
14495
+ deviceId: number().int().positive().nullable(),
14496
+ attribution: _enum([
14497
+ "measured",
14498
+ "accounted",
14499
+ "unattributable"
14500
+ ]),
14501
+ /**
14502
+ * What ONE entry is, in the contributor's own words — `615/high`,
14503
+ * `617/native`, `cuda:0 shared pool`. Free text because the unit differs per
14504
+ * family and inventing a common one would lose the only information that
14505
+ * makes two entries for the same camera distinguishable.
14506
+ */
14507
+ unit: string(),
14508
+ /**
14509
+ * The OS process this cost lives in, when there is one. Present so a
14510
+ * consumer can (a) tell two generations of the same unit apart across a
14511
+ * restart, and (b) subtract claimed processes from the node's process
14512
+ * snapshot to see what NOBODY claimed. Absent for an entry that owns no
14513
+ * process of its own.
14514
+ */
14515
+ pid: number().int().positive().optional(),
14516
+ /**
14517
+ * When this generation started. The pid's incarnation marker: a consumer
14518
+ * differencing {@link LoadContributionSchema.shape.cpuSeconds} must drop the
14519
+ * window when this changes, because the counter restarted from zero in a new
14520
+ * process.
14521
+ */
14522
+ startedAtMs: number().optional(),
14523
+ /**
14524
+ * CUMULATIVE CPU seconds this unit has consumed since it started — user +
14525
+ * system, read from the child's own `/proc/<pid>/stat` at the moment the
14526
+ * contribution is asked for.
14527
+ *
14528
+ * Cumulative and not a rate on purpose: a rate needs a window, a window
14529
+ * needs a sampler, and a new per-node sampler is the defect half of
14530
+ * `docs/architecture/load-ledger.md` documents. A counter can be differenced
14531
+ * by whoever already keeps a history; a rate cannot be un-averaged.
14532
+ *
14533
+ * Absent — never zero — on a node with no `/proc`, on a read failure, and on
14534
+ * an entry with no process.
14535
+ */
14536
+ cpuSeconds: number().optional(),
14537
+ /** Resident bytes of this unit's process, same source and same rules. */
14538
+ rssBytes: number().optional()
14539
+ });
14540
+ method(_void(), array(LoadContributionSchema).readonly());
14371
14541
  /**
14372
14542
  * `log-channels` — the capability an addon DECLARES its diagnostic channels
14373
14543
  * through. It stores nothing.
@@ -14444,176 +14614,6 @@ method(LogEntrySchema, _void(), { kind: "mutation" }), method(object({
14444
14614
  tags: record(string(), string()).optional()
14445
14615
  }), array(LogEntrySchema).readonly());
14446
14616
  /**
14447
- * `failure-contribution` — the capability an addon reports its OWN losses
14448
- * through, per camera, with the denominator attached. It stores nothing.
14449
- *
14450
- * ## The twin of `load-contribution`, and why it is a twin and not a field
14451
- *
14452
- * `load-contribution` answers *what did this camera COST*. This answers *what
14453
- * did this camera LOSE*. The reporting discipline is identical and deliberately
14454
- * copied: the contributor reports what it already knows, hub-main adds only
14455
- * `addonId`, nothing needs global knowledge, and there is no central list for
14456
- * somebody to forget to edit.
14457
- *
14458
- * They are not merged, because their invariants are opposites:
14459
- *
14460
- * - a `load-contribution` measurement is **absent, never zero** — a zero would
14461
- * claim a camera cost nothing, which is a measurement nobody made;
14462
- * - a `failure-contribution` zero is the **most valuable value on the
14463
- * surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
14464
- * and it is exactly what an absent entry cannot say.
14465
- *
14466
- * Putting a loss counter on a cost entry would also break the reconciliation
14467
- * that gives `load-contribution` its point: contributions are subtracted from
14468
- * `metrics.node-processes-snapshot` to find processes nobody claims. A failure
14469
- * has no process.
14470
- *
14471
- * ## Why not a log line, since the counters already exist
14472
- *
14473
- * Several of these paths already counted themselves — `CaptureScheduler`'s
14474
- * per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
14475
- * ends in a log line, and a log line is the thing the operator asked to stop
14476
- * needing: *"possiamo armare questi errori intanto? Così al prossimo giro
14477
- * ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
14478
- * hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
14479
- * media blackout were both diagnosed. The counters stay; this is where they can
14480
- * be READ.
14481
- *
14482
- * ## The rate is served with its denominator or not at all
14483
- *
14484
- * Every entry carries `attempts` and `succeeded`. A miss count alone is
14485
- * unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
14486
- * than yesterday" and was **flat across twelve hours** once divided by the
14487
- * successes on the same path. A surface that publishes only the numerator
14488
- * reproduces that mistake on every read.
14489
- *
14490
- * ## Shape
14491
- *
14492
- * Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
14493
- * `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
14494
- * generated hooks, while `addons.listCapabilityProviders` still enumerates it
14495
- * and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
14496
- * a forked runner's entries reach hub-main over transport that already exists.
14497
- * No new UDS message, no second registry (D3). The operator reads the assembled
14498
- * result through `system.getFailureContributions`.
14499
- */
14500
- var FailureReasonCountSchema = object({
14501
- /**
14502
- * Why the attempt did not land, in the contributor's own vocabulary —
14503
- * `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
14504
- * strings that already appear in this repo's logs and, where one exists, the
14505
- * same string the per-track `previewMissReason` records (D276): a second
14506
- * vocabulary for the same loss would make the row and the counter
14507
- * un-joinable.
14508
- */
14509
- reason: string(),
14510
- count: number().int().nonnegative()
14511
- });
14512
- var FailureContributionSchema = object({
14513
- /**
14514
- * The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
14515
- * `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
14516
- * `unit` free: the families are owned by different addons and a shared enum
14517
- * is a central list that rots invisibly.
14518
- */
14519
- family: string(),
14520
- /**
14521
- * The NUMERIC device id — the same value every log line carries as
14522
- * `tags.deviceId`. Never nullable and never absent: a contributor that
14523
- * cannot name the camera must not emit the entry, because a fleet total
14524
- * cannot answer the only question anybody asks of this surface.
14525
- */
14526
- deviceId: number().int().positive(),
14527
- /**
14528
- * A second dimension inside the family: the model / step id for an inference
14529
- * timeout, so "which camera AND which model" is one read. Absent when the
14530
- * family has a single variant.
14531
- */
14532
- variant: string().optional(),
14533
- /**
14534
- * Epoch ms this counter started — the INCARNATION MARKER. A consumer
14535
- * differencing two reads must drop the interval when it changes, because the
14536
- * counter restarted from zero in a respawned runner. Same discipline as
14537
- * `LoadContribution.startedAtMs`.
14538
- */
14539
- sinceMs: number(),
14540
- /** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
14541
- atMs: number(),
14542
- /**
14543
- * THE DENOMINATOR — every attempt on this path for this camera in the
14544
- * window. A failure count published without it is the mistake this schema
14545
- * exists to make impossible.
14546
- */
14547
- attempts: number().int().nonnegative(),
14548
- /** Attempts that landed. `attempts - succeeded` is the loss. */
14549
- succeeded: number().int().nonnegative(),
14550
- /** The loss, partitioned. Sums to `attempts - succeeded`. */
14551
- reasons: array(FailureReasonCountSchema).readonly()
14552
- });
14553
- method(_void(), array(FailureContributionSchema).readonly());
14554
- var LoadContributionSchema = object({
14555
- role: _enum([
14556
- "decode",
14557
- "transcode",
14558
- "recording",
14559
- "streaming",
14560
- "detection"
14561
- ]),
14562
- /**
14563
- * The NUMERIC device id — the same value every log line carries as
14564
- * `tags.deviceId`. `null` means this cost genuinely belongs to no single
14565
- * camera (a shared pool), NOT that the contributor forgot to look it up: a
14566
- * contributor that cannot name its camera must not emit the entry at all,
14567
- * because an unnamed per-camera entry is indistinguishable from a shared one
14568
- * and would quietly turn one camera's cost into everybody's.
14569
- */
14570
- deviceId: number().int().positive().nullable(),
14571
- attribution: _enum([
14572
- "measured",
14573
- "accounted",
14574
- "unattributable"
14575
- ]),
14576
- /**
14577
- * What ONE entry is, in the contributor's own words — `615/high`,
14578
- * `617/native`, `cuda:0 shared pool`. Free text because the unit differs per
14579
- * family and inventing a common one would lose the only information that
14580
- * makes two entries for the same camera distinguishable.
14581
- */
14582
- unit: string(),
14583
- /**
14584
- * The OS process this cost lives in, when there is one. Present so a
14585
- * consumer can (a) tell two generations of the same unit apart across a
14586
- * restart, and (b) subtract claimed processes from the node's process
14587
- * snapshot to see what NOBODY claimed. Absent for an entry that owns no
14588
- * process of its own.
14589
- */
14590
- pid: number().int().positive().optional(),
14591
- /**
14592
- * When this generation started. The pid's incarnation marker: a consumer
14593
- * differencing {@link LoadContributionSchema.shape.cpuSeconds} must drop the
14594
- * window when this changes, because the counter restarted from zero in a new
14595
- * process.
14596
- */
14597
- startedAtMs: number().optional(),
14598
- /**
14599
- * CUMULATIVE CPU seconds this unit has consumed since it started — user +
14600
- * system, read from the child's own `/proc/<pid>/stat` at the moment the
14601
- * contribution is asked for.
14602
- *
14603
- * Cumulative and not a rate on purpose: a rate needs a window, a window
14604
- * needs a sampler, and a new per-node sampler is the defect half of
14605
- * `docs/architecture/load-ledger.md` documents. A counter can be differenced
14606
- * by whoever already keeps a history; a rate cannot be un-averaged.
14607
- *
14608
- * Absent — never zero — on a node with no `/proc`, on a read failure, and on
14609
- * an entry with no process.
14610
- */
14611
- cpuSeconds: number().optional(),
14612
- /** Resident bytes of this unit's process, same source and same rules. */
14613
- rssBytes: number().optional()
14614
- });
14615
- method(_void(), array(LoadContributionSchema).readonly());
14616
- /**
14617
14617
  * `login-method` — collection cap through which auth addons contribute
14618
14618
  * their pre-auth login surfaces to the login page. This is the SINGLE,
14619
14619
  * generic mechanism that supersedes the dead `auth.listProviders` reader:
@@ -19497,12 +19497,53 @@ var MediaFileKindEnum = _enum([
19497
19497
  "keyFrameSmall",
19498
19498
  "thumbnailSmall"
19499
19499
  ]);
19500
+ /**
19501
+ * One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
19502
+ * ARE — never the bytes themselves.
19503
+ *
19504
+ * ## Why `url` and not `base64`
19505
+ *
19506
+ * Measured on the live hub 2026-08-30: `getTrackMedia {trackId, deviceId}`
19507
+ * with no `kinds` returned 6 rows / **3 597 219 B**, of which `keyFrame` alone
19508
+ * was **2 824 077 B** — one full-resolution frame, base64, so +33 % on the
19509
+ * wire. Forty events is ~144 MB. Every byte of it was read off disk,
19510
+ * base64-encoded, held whole in a unary tRPC envelope, and materialised in
19511
+ * hub-main's heap on the way past — for an `<img>` that would have cached it.
19512
+ *
19513
+ * `url` points at the `event-media` data plane
19514
+ * (`/addon/<addonId>/event-media/<storedKey>`), which serves the same blob
19515
+ * with an ETag and `Cache-Control: immutable`, honours conditional GETs, can
19516
+ * render a `?variant=thumb`, and streams. The hub gate in front of it requires
19517
+ * a bearer or the session cookie (`access: 'authenticated'`), so the bytes are
19518
+ * no less protected than they were inside a `view`-level cap response — see
19519
+ * `data-plane-access.ts` for the rule and the one gap it does not close
19520
+ * (per-device scoping).
19521
+ *
19522
+ * The URL is built from the row's **stored** key, which is not always its
19523
+ * published `kind`: a track's face/plate crop is stored as `crop` under
19524
+ * `('face'|'plate', '<prefix>-<trackId>')` and published as
19525
+ * `faceCrop`/`plateCrop`. `MediaStore.getByKey` knows only the stored key.
19526
+ *
19527
+ * ## `base64` is TRANSITIONAL and is going away
19528
+ *
19529
+ * It is still populated for one reason: the deployed viewer's track-detail
19530
+ * HERO tile reads it (`use-track-media-entry.ts` → `parseMediaFiles`, which
19531
+ * REQUIRES the field), and a row without it parses as a FAILED read — the red
19532
+ * triangle — not as absence. Removing the field before that viewer ships is an
19533
+ * outage, not a cleanup. Once the viewer takes its hero bytes from `url`,
19534
+ * delete this line and the `withBytes` pass-through in
19535
+ * `analytics-query-facade.ts`; nothing else reads it.
19536
+ */
19500
19537
  var MediaFileSchema = object({
19501
19538
  key: string(),
19502
19539
  kind: MediaFileKindEnum,
19503
- base64: string(),
19504
19540
  sizeBytes: number(),
19505
19541
  timestamp: number()
19542
+ }).extend({
19543
+ /** `/addon/<addonId>/event-media/<encoded stored key>`. Always present. */
19544
+ url: string(),
19545
+ /** @deprecated Transitional — see the schema docblock. Use {@link url}. */
19546
+ base64: string()
19506
19547
  });
19507
19548
  /**
19508
19549
  * One media row WITHOUT its bytes.
@@ -19514,7 +19555,9 @@ var MediaFileSchema = object({
19514
19555
  * blocks the whole view.
19515
19556
  *
19516
19557
  * `sizeBytes` is carried because it is what lets a client decide between the
19517
- * stored blob and a `?variant=thumb` rendering without fetching either.
19558
+ * stored blob and a `?variant=thumb` rendering without fetching either, and
19559
+ * `url` because a client that had to build the plane path itself is a second
19560
+ * copy of a route — the embed, the viewer and the admin UI each grew one.
19518
19561
  */
19519
19562
  var MediaFileInfoSchema = MediaFileSchema.omit({ base64: true });
19520
19563
  /**
@@ -20203,6 +20246,9 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20203
20246
  }), array(MediaFileSchema).readonly()), method(object({
20204
20247
  trackId: string(),
20205
20248
  deviceId: number()
20249
+ }), array(MediaFileInfoSchema).readonly()), method(object({
20250
+ eventId: string(),
20251
+ deviceId: number()
20206
20252
  }), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
20207
20253
  kind: "mutation",
20208
20254
  auth: "admin"
@@ -24944,10 +24990,24 @@ var FaceClusterSchema = object({
24944
24990
  size: number().int(),
24945
24991
  cohesion: number()
24946
24992
  });
24993
+ /**
24994
+ * One gallery media row: what the crop is, how big it is, and WHERE its bytes
24995
+ * are — never the bytes.
24996
+ *
24997
+ * `base64` was deleted here rather than deprecated. `MediaFile.base64` (the
24998
+ * track/event contract) is still populated because a deployed viewer requires
24999
+ * the field to parse a row at all; this method has no such reader. Its ONE
25000
+ * caller is the admin UI's detail modal, which was building
25001
+ * `data:image/jpeg;base64,…` from a row whose `key` sat right beside it, in a
25002
+ * dialog already rendering its key FRAME from the `event-media` plane.
25003
+ *
25004
+ * `url` is `/addon/<addonId>/event-media/<encoded key>`. The plane resolves a
25005
+ * media key directly, so this needed no new plane and no new access decision.
25006
+ */
24947
25007
  var MediaFileLiteSchema$1 = object({
24948
25008
  key: string(),
24949
25009
  kind: string(),
24950
- base64: string(),
25010
+ url: string(),
24951
25011
  sizeBytes: number(),
24952
25012
  timestamp: number()
24953
25013
  });
@@ -27199,10 +27259,24 @@ var PlateInfoSchema = object({
27199
27259
  */
27200
27260
  cropUrl: string().optional()
27201
27261
  });
27262
+ /**
27263
+ * One gallery media row: what the crop is, how big it is, and WHERE its bytes
27264
+ * are — never the bytes.
27265
+ *
27266
+ * `base64` was deleted here rather than deprecated. `MediaFile.base64` (the
27267
+ * track/event contract) is still populated because a deployed viewer requires
27268
+ * the field to parse a row at all; this method has no such reader. Its ONE
27269
+ * caller is the admin UI's detail modal, which was building
27270
+ * `data:image/jpeg;base64,…` from a row whose `key` sat right beside it, in a
27271
+ * dialog already rendering its key FRAME from the `event-media` plane.
27272
+ *
27273
+ * `url` is `/addon/<addonId>/event-media/<encoded key>`. The plane resolves a
27274
+ * media key directly, so this needed no new plane and no new access decision.
27275
+ */
27202
27276
  var MediaFileLiteSchema = object({
27203
27277
  key: string(),
27204
27278
  kind: string(),
27205
- base64: string(),
27279
+ url: string(),
27206
27280
  sizeBytes: number(),
27207
27281
  timestamp: number()
27208
27282
  });
@@ -33299,6 +33373,12 @@ Object.freeze({
33299
33373
  addonId: null,
33300
33374
  access: "view"
33301
33375
  },
33376
+ "pipelineAnalytics.listEventMedia": {
33377
+ capName: "pipeline-analytics",
33378
+ capScope: "device",
33379
+ addonId: null,
33380
+ access: "view"
33381
+ },
33302
33382
  "pipelineAnalytics.listGroups": {
33303
33383
  capName: "pipeline-analytics",
33304
33384
  capScope: "device",
@@ -36922,6 +37002,11 @@ Object.freeze({
36922
37002
  form: "array",
36923
37003
  optional: false
36924
37004
  }],
37005
+ "pipelineAnalytics.listEventMedia": [{
37006
+ name: "deviceId",
37007
+ form: "single",
37008
+ optional: false
37009
+ }],
36925
37010
  "pipelineAnalytics.listGroups": [{
36926
37011
  name: "deviceIds",
36927
37012
  form: "array",
@@ -30,7 +30,7 @@ async function d(e) {
30
30
  }
31
31
  }
32
32
  async function f() {
33
- return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-CXhvoqSz.mjs")).catch((e) => {
33
+ return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-BbK-mPCs.mjs")).catch((e) => {
34
34
  throw l = void 0, e;
35
35
  }), l;
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-pipeline-orchestrator",
3
- "version": "1.2.126",
3
+ "version": "1.2.127",
4
4
  "description": "Hub-side camera-to-agent load balancer — tracks runner capacity and dispatches attachCamera calls to the optimal pipeline-runner instance",
5
5
  "keywords": [
6
6
  "camstack",
@@ -1,26 +0,0 @@
1
- //#region \0virtual:mf:__mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js
2
- var e = "__mf_init__virtual:mf:__mfe_internal__addon_pipeline_orchestrator_widgets__mf_v__runtimeInit__mf_v__.js__", t = globalThis[e];
3
- if (!t) {
4
- let n, r, i = new Promise((e, t) => {
5
- n = e, r = t;
6
- });
7
- t = globalThis[e] = {
8
- initPromise: i,
9
- initResolve: n,
10
- initReject: r
11
- };
12
- }
13
- var n = t.initPromise, r = "__mf_module_cache__";
14
- globalThis[r] ||= {
15
- share: {},
16
- remote: {}
17
- }, globalThis[r].share ||= {}, globalThis[r].remote ||= {};
18
- var i = globalThis[r], a, o, s, c = (e) => {
19
- e.ACCESSORY_LABEL, e.ACCESS_ROLES, e.ALEXA_EGRESS_PROFILE, e.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_ANALYSIS_CAP_NAME, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AUDIO_PRESETS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionCandidateResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionJobSchema, e.AdoptionJobStateSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, e.AdoptionOutcomeSchema, e.AdoptionReleaseInputSchema, e.AdoptionStatusSchema, e.AgentLoadSummarySchema, e.AirQualitySensorStatusSchema, e.AlarmArmModeSchema, e.AlarmPanelStatusSchema, e.AlarmStateSchema, e.AlertSchema, e.AlertSeveritySchema, e.AlertSourceSchema, e.AlertStatusSchema, e.AmbientLightSensorStatusSchema, e.AnalyticsGroupDetailSchema, e.AnalyticsGroupMemberSchema, e.AnalyticsGroupRecordSchema, e.ApiKeyRecordSchema, e.ApiKeySummarySchema, e.ArchiveEntrySchema, e.ArchiveManifestSchema, e.AttachmentMediaTypeSchema, e.AttachmentSchema, e.AudioAnalysisResultSchema, e.AudioAnalysisSettingsSchema, e.AudioChunkInputSchema, e.AudioClassSummarySchema, e.AudioClassificationLabelSchema, e.AudioClassificationResultSchema, e.AudioCodecInfoSchema, e.AudioDecodeSessionConfigSchema, e.AudioEncodeSchema, e.AudioEncodeSessionConfigSchema, e.AudioEncodedChunkSchema, e.AudioEventSchema, e.AudioLevelSchema, e.AudioMetricsHistoryPointSchema, e.AudioMetricsHistorySchema, e.AudioMetricsSnapshotSchema, e.AudioPcmChunkSchema, e.AuthResultSchema, e.AutoUpdateSettingsSchema, e.AutomationActionSchema, e.AutomationConditionOperatorSchema, e.AutomationConditionSchema, e.AutomationControlStatusSchema, e.AutomationRecipeSchema, e.AutomationTriggerSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BASE_LIVE_EGRESS_PROFILE, e.BATTERY_DEVICE_PROFILE, e.BATTERY_UNREACHABLE_AFTER_MS, e.BOOT_RECOVERY_BACKOFF_MS, e.BacklightModeSchema, e.BackupDestinationInfoSchema, e.BackupEntrySchema, e.BaseAddon, e.BaseDevice, e.BaseDeviceProvider, e.BatteryStatusSchema, e.BinaryStatusSchema, e.BoundingBoxSchema, e.BrightnessStatusSchema, e.BrokerAddInputSchema, e.BrokerAudioClientSchema, e.BrokerClientsSchema, e.BrokerConnectionDetailsSchema, e.BrokerConsumerAttributionSchema, e.BrokerConsumerKindSchema, e.BrokerDecodedClientSchema, e.BrokerEncodedClientSchema, e.BrokerGetStateInputSchema, e.BrokerInfoSchema, e.BrokerProviderInfoSchema, e.BrokerPublishInputSchema, e.BrokerRegistryStatusSchema, e.BrokerRtspClientSchema, e.BrokerStatsSchema, e.BrokerStatusEnum, e.BrokerStatusSchema, e.BrokerSubscribeInputSchema, e.BrokerSubscribeResultSchema, e.BrokerTestConnectionResultSchema, e.BrokerUnsubscribeInputSchema, e.BulkRecordSchema, e.CAMERA_SWITCH_CATALOG, e.CAMERA_SWITCH_ORDER, e.CAM_PROFILE_ORDER, e.CAPABILITY_NAMES, e.CAPABILITY_ROUTER_KEYS, e.CAP_NAMES_WITH_STATUS, e.CAP_NODE_PIN_CONTEXT_KEY, e.CAP_PROVIDER_KIND_MAP, e.CLASS_MAP_MACRO_TARGETS, e.CLUSTER_MODEL_SCOPED_STEPS, e.CLUSTER_MODEL_SECTION_ID, e.CLUSTER_STEP_SETTING_FIELDS, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.CONNECTION_TEST_TIMEOUT_MS, e.CORE_BLOCKS_ADDON_ID, e.CORE_BLOCK_ADDON_PREFIX, e.CamProfileSchema, e.CamStreamDescriptorSchema, e.CamStreamKindSchema, e.CamStreamResolutionSchema, e.CameraAssignmentStatusSchema, e.CameraAudioStatusSchema, e.CameraBrokerProfileSchema, e.CameraBrokerStatusSchema, e.CameraCredentialsSchema, e.CameraCredentialsStatusSchema, e.CameraDecoderShmSchema, e.CameraDecoderStatusSchema, e.CameraDetectionPhaseSchema, e.CameraDetectionProvisioningSchema, e.CameraDetectionProvisioningStateSchema, e.CameraDetectionStatusSchema, e.CameraMetricsSchema, e.CameraMetricsWithDeviceIdSchema, e.CameraMotionStatusSchema, e.CameraRecordingModeSchema, e.CameraRecordingStatusSchema, e.CameraSourceStatusSchema, e.CameraSourceStreamSchema, e.CameraStatusDegradationReasonSchema, e.CameraStatusDegradationSchema, e.CameraStatusSchema, e.CameraStatusStageSchema, e.CameraStreamSchema, e.CameraSwitchAuthoritySchema, e.CameraSwitchGroupSchema, e.CameraSwitchIdSchema, e.CameraSwitchSchema, e.CameraSwitchUnavailableReasonSchema, e.CandidateQueryFilterSchema, e.CapScopeSchema, e.CapabilityBindingsSchema, e.CarbonMonoxideStatusSchema, e.ChargingStatus, e.ClientNetworkStatsSchema, e.ClimateControlStatusSchema, e.ClipPlaybackSchema, e.ClipSchema, e.ClusterAddonNodeDeploymentSchema, e.ClusterAddonStatusEntrySchema, e.CollectionColumnSchema, e.CollectionIndexSchema, e.ColorStatusSchema, e.ConfigEntrySchema, e.ConfigSectionWithValuesSchema, e.ConfigTabDeclarationSchema, e.ConnectionTestDescriptorSchema, e.ConnectionTestInputSchema, e.ConnectionTestOutcomeSchema, e.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, e.ConvertArtifactSchema, e.ConvertResultSchema, e.ConvertTargetSchema, e.CoreBlockCompileResultSchema, e.CoreBlockInputSchema, e.CoreBlockPlacementSchema, e.CoreBlockSchema, e.CoreBlockStatusSchema, e.CoverStateSchema, e.CoverStatusSchema, e.CreateApiKeyInputSchema, e.CreateApiKeyResultSchema, e.CreateIntegrationInputSchema, e.CreateScopedTokenInputSchema, e.CreateScopedTokenResultSchema, e.CreateUserInputSchema, e.CustomActionInputSchema, e.CustomModelDescriptorSchema, e.DATAPLANE_SECRET_HEADER, e.DECLARED_DEVICE_SWEEP_LIMIT, e.DECLARED_INTEGRATION_FIXED_KEY, e.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_CLUSTER_STEP_MODELS, e.DEFAULT_CLUSTER_STEP_SETTINGS, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_DETAIL_CROP_CONVENTION, e.DEFAULT_EVENTS_BAND_BUFFER_SEC, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_FIRST_SIGHTING_FRESHNESS_MS, e.DEFAULT_MIN_LANDMARK_FACE_SIZE_PX, e.DEFAULT_NATIVE_LEASE_SETTINGS, e.DEFAULT_POOL_MEMORY_POLICY, e.DEFAULT_RECORDING_PROFILES, e.DEFAULT_RETENTION, e.DEFAULT_RUNTIME_STATE_DURABILITY, e.DEFAULT_TIMELAPSE_PREVIEW_TEXT, e.DEFAULT_TOKEN_EXPIRY, e.DETAIL_CROP_PADDING_FIELD, e.DETAIL_CROP_PADDING_KEY, e.DETAIL_CROP_SECTION_ID, e.DETAIL_CROP_SQUARE_KEY, e.DETECTION_MACRO_CLASSES, e.DETECTION_PIPELINE_CAP_NAME, e.DEVICE_BACKEND_TO_FORMAT, e.DEVICE_CAP_NAMES, e.DEVICE_CHILDREN_BATCH_MAX, e.DEVICE_PROFILES, e.DEVICE_SCOPED_CAPS, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATE_READERS, e.DEVICE_STATUS_METHOD, e.DEVICE_TYPE_CONTROL_KIND, e.DEVICE_TYPE_INFO, e.DataStoreEngineInfoSchema, e.DayNightModeSchema, e.DayNightOptionsSchema, e.DayNightSettingsPatchSchema, e.DayNightStatusSchema, e.DeclaredDevices, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetailCropConventionSchema, e.DetectionCatalogClassMapSchema, e.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, e.DeviceFeature, e.DeviceInfoSchema, e.DeviceNetworkStatsSchema, e.DeviceRole, e.DeviceRuntimeState, e.DeviceSelectorSchema, e.DeviceStatusSchema, e.DeviceType, e.DiagnosticIdSchema, e.DiagnosticWindowPatchSchema, e.DiagnosticWindowSchema, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DiskReconcileJobSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, e.EVENT_TAXONOMY, e.EXPORT_DENSE_MAX_RANGES, e.EXPRESSION_BUILTINS, e.EXPRESSION_BUILTIN_NAMES, e.EXPRESSION_COMPILE_CACHE_CAPACITY, e.EXPRESSION_IDENTIFIER_RE, e.EXPRESSION_INJECTED_NOW, e.EgressEncodeSchema, e.EgressRateControlSchema, e.EgressTranscodeRequestSchema, e.EgressTranscodeSchema, e.ElementConfigStore, e.EmbeddingInfoSchema, e.EmbeddingResultSchema, e.EncodeProfileSchema, e.EncodedPacketSchema, e.EnrichedWidgetMetadataSchema, e.EnumSensorDateTimeFormatSchema, e.EnumSensorStatusSchema, e.EventCategory, e.EventEmitterStatusSchema, e.EventFireSchema, e.EventItemSchema, e.EventKindCategorySchema, e.EventKindDescriptorSchema, e.EventKindIconSchema, e.EventKindSchema, e.EventKindsForDeviceSchema, e.EventMediaArtifactSchema, e.EventMediaCoverageSchema, e.EventMediaKindSchema, e.EventMediaProductionSchema, e.EventSourceType, e.ExportBytesSchema, e.ExportDenseRangeSchema, e.ExportDenseSchema, e.ExportDownloadSchema, e.ExportOptionsSchema, e.ExportRecordSchema, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExportSpeedSchema, e.ExportStateSchema, e.ExportTimelapseSchema, e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionBindingSourceSchema, e.ExpressionEvalError, e.ExpressionFieldBindingSchema, e.ExpressionGlobalBindingSchema, e.ExpressionLiteralBindingSchema, e.ExpressionParseError, e.ExpressionSourceSchema, e.FIRST_LEVEL_MACRO_CLASSES, e.FULL_IMAGE_BBOX, e.FailureContributionSchema, e.FailureCounters, e.FailureReasonCountSchema, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.Fmp4BoxSplitter, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.FrameLazyCountersSchema, e.FrameLazyMetricsSchema, e.GasStatusSchema, e.GetLoggingSettingsInputSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HAP_AUDIO_BASE, e.HAP_AUDIO_BITRATE_KBPS, e.HAP_AUDIO_VBV_KBITS, e.HAP_KEYFRAME_INTERVAL_SEC, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HfModelResolutionSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.INFERENCE_DEVICE_EXCLUSION_REASONS, e.ImageContractSchema, e.ImageContractStateSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.InferenceDeviceExclusionReasonSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LOAD_CONTRIBUTION_ATTRIBUTIONS, e.LOAD_CONTRIBUTION_ROLES, e.LOG_CHANNEL_TICK_MS, e.LOG_LEVEL_RANK, e.LabelAttributionSchema, e.LabelDefinitionSchema, e.LabelTierSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LinkedDeviceSchema, e.LinkedDevicesModeSchema, e.ListGroupsPageSchema, e.ListGroupsQueryInput, e.LlmDefaultSchema, e.LlmDefaultSelectorSchema, e.LlmDownloadProgressSchema, e.LlmErrorCodeSchema, e.LlmGenerateBaseInputSchema, e.LlmGenerateErrSchema, e.LlmGenerateOkSchema, e.LlmGenerateResultSchema, e.LlmImageSchema, e.LlmNodeModelSchema, e.LlmProfileKindDescriptorSchema, e.LlmProfileKindSchema, e.LlmProfileSchema, e.LlmRetryPolicySchema, e.LlmRuntimeCompleteInputSchema, e.LlmRuntimeDiskUsageSchema, e.LlmRuntimeNodeSchema, e.LlmRuntimeStatusSchema, e.LlmTimeoutDefaults, e.LlmUsageRollupSchema, e.LlmUsageSchema, e.LoadContributionSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogChannelApplyResultSchema, e.LogChannelDescriptorSchema, e.LogChannelGate, e.LogChannelLevelSchema, e.LogChannelRegistry, e.LogChannelWindowPatchSchema, e.LogChannelWindowSchema, e.LogChannelWindowStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoggingEffectiveSchema, e.LoggingExplicitSchema, e.LoggingLevelLayerSchema, e.LoggingLevelSourceSchema, e.LoggingScopeKindSchema, e.LoggingSettingsPatchSchema, e.LoggingSettingsStateSchema, e.LoginMethodContributionSchema, e.LoginStageEnum, a = e.MACRO_LABELS, e.MAX_CLIP_EVENT_IDS, e.MAX_CLIP_LABELS, e.MAX_CONDITION_DEPTH, e.MAX_CONDITION_LEAVES, e.MAX_EXPRESSION_AST_NODES, e.MAX_EXPRESSION_BINDINGS, e.MAX_EXPRESSION_CALL_ARGS, e.MAX_EXPRESSION_EVAL_STEPS, e.MAX_EXPRESSION_SOURCE_LENGTH, e.MAX_KEYS, e.MAX_REASONS_PER_KEY, e.MAX_SENSOR_TRIGGER_DEVICES, e.METHOD_ACCESS_MAP, e.METHOD_DEVICE_SELECTORS, e.MODEL_FORMATS, e.MODEL_PROVIDER_IDS, e.MOTION_TRIGGER_FEATURE, e.ManagedModelCatalogEntrySchema, e.ManagedModelExtraFileSchema, e.ManagedModelRefSchema, e.ManagedRuntimeConfigSchema, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileInfoSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MediaRelocateModeSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, e.ModelProviderIdSchema, e.ModelSubstitutionSchema, e.ModelVariantGroupSchema, e.MotionAnalysisResultSchema, e.MotionEventSchema, e.MotionOnMotionChangedDataSchema, e.MotionRegionSchema, e.MotionSourceEnum, e.MotionSourcesSchema, e.MotionStatusSchema, e.MotionTriggerRuntimeStateSchema, e.MotionTriggerStatusSchema, e.MotionZoneOptionsSchema, e.MotionZonePatchSchema, e.MotionZoneRegionSchema, e.MotionZoneStatusSchema, e.MqttBrokerStatusSchema, e.MutationFilterSchema, e.NATIVE_LEASE_ACTIVITY_FIELD, e.NATIVE_LEASE_ACTIVITY_KEY, e.NATIVE_LEASE_ADMISSION_FIELD, e.NATIVE_LEASE_ADMISSION_KEY, e.NATIVE_LEASE_BUDGET_FIELD, e.NATIVE_LEASE_BUDGET_KEY, e.NATIVE_LEASE_HOLD_FIELD, e.NATIVE_LEASE_HOLD_KEY, e.NATIVE_LEASE_SCENE_BUDGET_FIELD, e.NATIVE_LEASE_SCENE_BUDGET_KEY, e.NATIVE_LEASE_SECTION_ID, e.NATIVE_LEASE_TILE_BUDGET_FIELD, e.NATIVE_LEASE_TILE_BUDGET_KEY, e.NC_ALARM_SYSTEM_EVENT_KINDS, e.NC_AUDIO_CONFIRM_HITS_DEFAULT, e.NC_AUDIO_CONFIRM_HITS_MAX, e.NC_AUDIO_CONFIRM_HITS_MIN, e.NC_AUDIO_CONFIRM_WINDOW_MAX_SEC, e.NC_AUDIO_CONFIRM_WINDOW_MIN_SEC, e.NC_AUDIO_CONFIRM_WINDOW_SEC_DEFAULT, e.NC_AUDIO_DBFS_FLOOR, e.NC_AUDIO_DB_MAX, e.NC_AUDIO_DB_MIN, e.NC_AUDIO_DB_OFFERED, e.NC_AUDIO_DB_STEP, e.NC_AUDIO_DEFAULTS, e.NC_AUDIO_HIT_PERCENT_MAX, e.NC_AUDIO_HIT_PERCENT_MIN, e.NC_AUDIO_SAMPLING_MAX_SEC, e.NC_AUDIO_SAMPLING_MIN_SEC, e.NC_AUDIO_SEED, e.NC_AUTHORABLE_SYSTEM_EVENT_KINDS, e.NC_BASE_CONDITION_KEYS, e.NC_CONDITION_CATALOG, e.NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.NC_CONFIRM_DEFAULT_TIMEOUT_MS, e.NC_CONFIRM_MAX_TIMEOUT_MS, e.NC_CONFIRM_MIN_TIMEOUT_MS, e.NC_DEFAULT_SNOOZE_MINUTES, e.NC_HISTORY_LIMIT_DEFAULT, e.NC_HISTORY_LIMIT_MAX, e.NC_MAX_PER_TRACK_IMMEDIATE, e.NC_OCCUPANCY_DEFAULTS, e.NC_RULE_EDITOR_SECTION_ORDER, e.NC_RULE_KIND_SPECS, e.NC_RULE_SECTIONS, e.NC_SNOOZE_MAX_MINUTES, e.NC_SYSTEM_DELIVERY, e.NC_SYSTEM_EVENT_FILTER_KEYS, e.NC_TAXONOMY, e.NativeCropBboxSchema, e.NativeCropRefSchema, e.NativeCropResultSchema, e.NativeDetectionSchema, e.NativeLeaseAdmissionSchema, e.NativeLeaseSettingsSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NcAlarmConfigSchema, e.NcAlarmModeCoverageSchema, e.NcAlarmSettingsPatchSchema, e.NcAlarmSettingsSchema, e.NcAlarmSkipReasonSchema, e.NcAlarmSkippedDeviceSchema, e.NcAudioConditionSchema, e.NcConditionDescriptorSchema, e.NcConditionsSchema, e.NcConfirmExpectSchema, e.NcConfirmSchema, e.NcCrossingSchema, e.NcDeliverySchema, e.NcDeviceStateConditionSchema, e.NcHistoryEntrySchema, e.NcHistoryFilterSchema, e.NcHistoryRecordKindSchema, e.NcHistoryStatusSchema, e.NcHistorySubjectSchema, e.NcMediaFrameSchema, e.NcMediaPolicySchema, e.NcOccupancyConditionSchema, e.NcPlateMatcherSchema, e.NcRuleActionSchema, e.NcRuleActionSequenceSchema, e.NcRuleActionsSchema, e.NcRuleInputSchema, e.NcRuleNotificationButtonSchema, e.NcRulePatchSchema, e.NcRuleSchema, e.NcRuleTargetSchema, e.NcSceneConditionSchema, e.NcScheduleSchema, e.NcScheduleWindowSchema, e.NcSnoozeInputSchema, e.NcSnoozeSchema, e.NcSnoozeScopeSchema, e.NcSnoozeSuppressedSchema, e.NcSystemEventConditionSchema, e.NcSystemEventKindSchema, e.NcTaxonomyEntrySchema, e.NcTaxonomySchema, e.NcTestResultSchema, e.NcThrottleGranularitySchema, e.NcThrottleSchema, e.NcZoneConditionSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionIconSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OPERATOR_WRITTEN_STALE_MS, e.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, e.OVERFLOW_REASON, e.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OpsLogDomainSchema, e.OpsLogEntrySchema, e.OpsLogOpSchema, e.OpsLogQueryInputSchema, e.OpsLogReasonSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdRenderOutcomeEnum, e.OsdRenderResultSchema, e.OsdSlotBindingSchema, e.OsdSlotViewSchema, e.OsdSourceOptionSchema, e.OsdSourceSchema, e.OsdSourceValueTypeEnum, e.OsdStatusSchema, e.PET_FEEDER_MANUAL_FEED_MAX, e.PET_FEEDER_MANUAL_FEED_MIN, e.PIPELINE_FLOW_CAPABILITY_NAMES, e.PIPELINE_OWNER_CAPABILITY_NAMES, e.PRIVACY_MASK_CAP_NAME, e.PROVIDER_KIND_CAP_NAMES, e.PYTHON_SCRIPT, e.PackageUpdateSchema, e.PackageVersionInfoSchema, e.PasskeyLoginMethodSchema, e.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PetFeederStatusSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, e.PipelineValidationIssueSchema, e.PipelineValidationResultSchema, e.PlaceholderReasonSchema, e.PolygonPointSchema, e.PoolMemoryWatchdog, e.PowerMeterStatusSchema, e.PresenceStatusSchema, e.PressureSensorStatusSchema, e.PrivacyMaskOptionsSchema, e.PrivacyMaskPatchSchema, e.PrivacyMaskRegionSchema, e.PrivacyMaskShapeSchema, e.PrivacyMaskStatusSchema, e.ProfileRtspEntrySchema, e.ProfileSlotSchema, e.ProfileSlotStatusSchema, e.ProviderStatusSchema, e.PtzAutotrackRuntimeStateSchema, e.PtzAutotrackSettingsSchema, e.PtzAutotrackStatusSchema, e.PtzAutotrackTargetOptionSchema, e.PtzMoveCommandSchema, e.PtzOptionsSchema, e.PtzPositionSchema, e.PtzPresetSchema, e.PtzStatusSchema, e.QueryFilterSchema, e.RATE_CONTROL_RELAXED, e.RATE_CONTROL_TIGHT, e.REACHABILITY_FAILURES_TO_OFFLINE, e.REACHABILITY_POLL_INTERVAL_MS, e.REACHABILITY_PROBE_TIMEOUT_MS, e.RECOGNITION_TYPES, e.RECORDING_EXPORT_MAX_READ_BYTES, e.REDACTED_SECRET, e.RESERVED_BINDING_NAMES, e.RESTORED_CAP_NAMES, e.ROOT_BUCKET_KEY, e.RUNTIME_DEFAULTS, e.RUNTIME_STATE_POLICY, e.RUNTIME_STATE_REFRESH_MISS_COOLDOWN_MS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadGopBytesResultSchema, e.ReadSegmentBytesResultSchema, e.ReadWindowBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, e.RecentTracksPageSchema, e.RecentTracksQueryInput, e.RecordingAvailabilitySchema, e.RecordingBandModeSchema, e.RecordingBandSchema, e.RecordingBandTriggersSchema, e.RecordingConfigSchema, e.RecordingDaysSchema, e.RecordingDeviceUsageSchema, e.RecordingLocationUsageSchema, e.RecordingManifestSchema, e.RecordingObjectTriggerClassSchema, e.RecordingRangeSchema, e.RecordingRebalanceInputSchema, e.RecordingRebalanceMoveSchema, e.RecordingRebalancePlanSchema, e.RecordingRebalanceSkipReasonSchema, e.RecordingRebalanceSkipSchema, e.RecordingRetentionSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, e.RelocatableMediaCountInputSchema, e.RelocatableMediaCountSchema, e.RelocateFootageClassSchema, e.RelocateFootageInputSchema, e.RelocateJobSchema, e.RelocateJobStateSchema, e.RelocateMediaInputSchema, e.RelocateResidueInputSchema, e.RelocateResidueSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.ReportedFailureContributionSchema, e.ReportedLoadContributionSchema, e.RequestCensusGroupSchema, e.RequestCensusProcedureSchema, e.RequestCensusSnapshotSchema, e.RequestCensusStatusSchema, e.RetrainAnnotationDraftSchema, e.RetrainAnnotationKindSchema, e.RetrainAnnotationSchema, e.RetrainAnnotationSourceSchema, e.RetrainAssistResultSchema, e.RetrainAssistSubjectSchema, e.RetrainCopyRefusalSchema, e.RetrainFrameCandidateSchema, e.RetrainFrameListSchema, e.RetrainFrameSchema, e.RetrainFrameSelectionSchema, e.RetrainMacroClassSchema, e.RetrainStatusSchema, e.RetrainTrackSchema, e.RetrainTransitionResultSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerInferenceDeviceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCENE_CONDITIONS, e.SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, e.SCENE_DEFAULT_ANCHOR_THRESHOLD, e.SCENE_DEFAULT_CHECK_INTERVAL_SEC, e.SCENE_DEFAULT_OBSERVATION_SPACING_SEC, e.SCENE_DEFAULT_QUIET_SECONDS, e.SCENE_DEFAULT_UNCOVERED_POLICY, e.SCENE_DIVERGED, e.SCENE_RESET_RECAPTURES, e.SCOPE_PRESETS, e.SENSOR_FEATURES, e.SENSOR_MAP, e.SOURCE_CAPS, e.SOURCE_CAP_ACTIVE_FIELD, e.SOURCE_CAP_CHANGED_AT_FIELD, e.SOURCE_DEVICE_TYPES, e.SOURCE_INFO_METADATA_KEY, e.STORAGE_ACCESS_FALLBACK, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.SYSTEM_SCOPE_DEVICE_METHODS, e.SceneCheckSchema, e.SceneConditionSchema, e.SceneConfirmSchema, e.SceneMonitorSchema, e.SceneMonitorStateSchema, e.SceneMonitorStatusSchema, e.SceneReferenceSchema, e.SceneUnavailableSchema, e.SceneUncoveredPolicySchema, e.SceneVerdictSchema, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SetLoggingSettingsInputSchema, e.SetSiteLocationInputSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SiteLocationSchema, e.SiteLocationSourceSchema, e.SiteLocationStatusSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StationaryObjectSchema, e.StorageAbortUploadInputSchema, e.StorageAccessSchema, e.StorageBeginDownloadInputSchema, e.StorageBeginDownloadResultSchema, e.StorageBeginUploadInputSchema, e.StorageBeginUploadResultSchema, e.StorageEndDownloadInputSchema, e.StorageFinalizeUploadInputSchema, e.StorageLocationDeclarationSchema, e.StorageLocationRefSchema, e.StorageLocationSchema, e.StorageLocationTypeSchema, e.StorageMigrationClassSchema, e.StorageMigrationDestinationsSchema, e.StorageMigrationDrainInputSchema, e.StorageMigrationFindingCodeSchema, e.StorageMigrationFindingSchema, e.StorageMigrationFootageMoveInputSchema, e.StorageMigrationInputSchema, e.StorageMigrationJobSchema, e.StorageMigrationLaneSchema, e.StorageMigrationLeaseInputSchema, e.StorageMigrationMediaMoveInputSchema, e.StorageMigrationModeSchema, e.StorageMigrationMoveProgressSchema, e.StorageMigrationMoveSchema, e.StorageMigrationMoverSchema, e.StorageMigrationParticipantSchema, e.StorageMigrationPhaseSchema, e.StorageMigrationPlanSchema, e.StorageMigrationResidueSchema, e.StorageProviderInfoSchema, e.StorageReadChunkInputSchema, e.StorageTestLocationResultSchema, e.StorageWriteChunkInputSchema, e.StreamCodecSchema, e.StreamFormatSchema, e.StreamNetworkStatsSchema, e.StreamParamsOptionsSchema, e.StreamParamsStatusSchema, e.StreamProfileConfigSchema, e.StreamProfileOptionsSchema, e.StreamProfilePatchSchema, e.StreamProfileSchema, e.StreamSourceEntrySchema, e.StreamSourceSchema, e.SubscribeAudioChunksInputSchema, e.SubscribeAudioChunksResultSchema, e.SubscribeFramesInputSchema, e.SubscribeFramesResultSchema, e.SwitchStatusSchema, e.SystemMetricsSchema, e.SystemMirror, e.TAXONOMY_COLORS, e.TIMELAPSE_DENSE_FLOOR_SEC, e.TIMEZONES, e.TRANSCODE_DOWN_MAX_BITRATE_KBPS, e.TRANSCODE_DOWN_MAX_HEIGHT, e.TamperStatusSchema, e.TankStatusSchema, e.TargetKindCapsSchema, e.TargetKindLevelSchema, e.TargetKindSchema, e.TargetSchema, e.TemperatureSensorStatusSchema, e.TerminalInstanceInfoSchema, e.TerminalLegacyCameraSchema, e.TerminalOutputBatchSchema, e.TerminalOutputEventSchema, e.TerminalProfileInfoSchema, e.TerminalSessionInfoSchema, e.TestConnectionResultSchema, e.TestConnectionStatusEnum, e.TestResultSchema, e.TimelapseRuleInputSchema, e.TimelapseRulePatchSchema, e.TimelapseRuleSchema, e.TimelapseTemplateSchema, e.ToastSchema, e.TokenScopeSchema, e.TopologyNodeSchema, e.TopologyProcessSchema, e.TopologyServiceSchema, e.TrackCascadeCountsSchema, e.TrackEnvelopeSchema, e.TrackFlagsPatchSchema, e.TrackFlagsSchema, e.TrackProjectionSchema, e.TrackSchema, e.TrackSourceSchema, e.TrackStateSchema, e.TrackZoneFilterSchema, e.TrackedDetectionSchema, e.TrainingExportDeviceTotalsSchema, e.TrainingExportSummarySchema, e.TransportPlaneCountsSchema, e.TransportPlaneSchema, e.TurnServerSchema, e.UNATTRIBUTED_BUCKET_KEY, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UnstampedEventMediaCountSchema, e.UnstampedRowsSchema, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VISIT_MERGE_GAP_MS, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VectorDeclareIndexInputSchema, e.VectorDeleteByFilterInputSchema, e.VectorDeleteInputSchema, e.VectorDeleteResultSchema, e.VectorFilterSchema, e.VectorGetInputSchema, e.VectorGetResultSchema, e.VectorItemSchema, e.VectorMatchSchema, e.VectorMetadataSchema, e.VectorMetricSchema, e.VectorQueryInputSchema, e.VectorQueryResultSchema, e.VectorStatsInputSchema, e.VectorStatsResultSchema, e.VectorUpsertInputSchema, e.VectorUpsertResultSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, e.WEBRTC_EGRESS_PROFILE, e.WELL_KNOWN_TABS, e.WELL_KNOWN_TAB_MAP, e.WaterHeaterStatusSchema, e.WeatherStatusSchema, e.WebrtcStreamChoiceSchema, e.WebrtcStreamTargetSchema, e.WhiteBalanceModeSchema, e.WidgetHostEnum, e.WidgetLoginMethodSchema, e.WidgetMetadataSchema, e.WidgetRemoteSchema, e.WidgetSizeEnum, e.YAMNET_TO_MACRO, e.ZoneCrossingDirectionSchema, e.ZoneCrossingSchema, e.ZoneKindEnum, e.ZoneRuleModeEnum, e.ZoneRuleSchema, o = e.ZoneRuleStageEnum, e.ZoneRulesArraySchema, e.ZoneSchema, e.ZoneScopeBreakdownSchema, e.__resetLogChannelRegistryForTests, e.accessoriesCapability, e.accessoryStableId, e.addonPagesCapability, e.addonPagesSourceCapability, e.addonRoutesCapability, e.addonSettingsCapability, e.addonWidgetsCapability, e.addonWidgetsSourceCapability, e.addonsCapability, e.adminUiCapability, e.airQualitySensorCapability, e.alarmPanelCapability, e.alertsCapability, e.ambientLightSensorCapability, e.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.assertTimelapseCadences, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioIsFailClosed, e.audioKindId, e.audioLabelChoices, e.audioMetricsCapability, e.audioModeOf, e.audioOrDefaults, e.audioPlanFromEncodeProfile, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.bareAddonId, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildAudioArgs, e.buildEventKindDescriptor, e.buildFfmpegArgs, e.buildInputArgs, e.buildModelVariantGroups, e.buildNcTaxonomy, e.buildRoleScopes, e.buildStreamParamsConfigSchema, e.buildVideoArgs, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, e.canConvertUnit, e.canonicalEgressPlan, e.carbonMonoxideCapability, e.cellsToRects, e.classifyBearerPrincipal, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.clusterModelSettingKey, e.clusterStepSettingFieldsFor, e.clusterStepSettingKey, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.collectSecretConfigKeys, e.colorCapability, e.colorForKind, e.commitWatchdogRestart, e.compileExpression, e.compileExpressionSafe, e.composeSwitchedOff, e.conditionDepth, e.conditionExclusionReason, e.conditionVisibleForKind, e.connectionTestCapability, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.coreBlockAddonId, e.coreBlockIdFromAddonId, e.coreBlocksCapability, e.cosineSimilarity, e.countConditionLeaves, e.coverCapability, e.createDeviceProxy, e.createDurableState, e.createEvent, e.createEventBusSliceSource, e.createExpressionScope, e.createHwAccelCache, e.createLazyTrpcSource, e.createLogChannelsProvider, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.customModelRegistryCapability, e.dataStoreProviderCapability, e.dayNightCapability, e.declarationOwnerNodeId, e.declareLogChannel, e.decodeVectorBase64, e.decoderCapability, e.defaultDeliveryForSection, e.defaultDeviceFor, e.defineCustomActions, e.deriveBatteryPresence, e.deriveCameraSwitches, e.deriveDetailCropRect, e.deriveRecordingMode, e.describeModelVariant, e.detectAccessRole, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceBackendToFormat, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceSelectorMatches, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.droppedConditionsForKind, e.egressTranscodeSharingKey, e.egressTransportFromRequest, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.encodeVectorBase64, e.enumSensorCapability, e.enumerateInferenceDevices, e.enumerateItemArrayFields, e.enumerateSchemaFields, e.errMsg, e.evaluateAst, e.evaluateExpressionSource, e.evaluatePoolMemory, e.evaluateSensorEdge, e.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractNestedAddonId, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.failureContributionCapability, e.failureRate, e.fanControlCapability, e.featureProbeCapability, e.filesystemBrowseCapability, e.findTimezone, e.floodCapability, e.foldSnapshotByFunction, e.formatForBackend, e.formatForRuntime, e.gasCapability, e.generateAutomationBlock, e.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.getLogChannelRegistry, e.getTaxonomyEntry, e.hasMotionTrigger, e.hfModelUrl, e.htmlToText, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.imageSettingsCapability, e.inferModelProvider, e.initialPoolMemoryState, e.integrationsCapability, e.intercomCapability, e.invocationFromEncodeProfile, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isAudioLabelSelected, e.isAudioRule, e.isBaseConditionKey, e.isBatteryPresenceFault, e.isClusterScopedStep, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDetectionMacroClass, e.isDeviceConfigCap, e.isDeviceScopedCap, e.isEvent, e.isFirstLevelMacroClass, e.isIsolatedBuiltin, e.isNode, e.isObjectInput, e.isOccupancyRule, e.isRestoredCap, e.isSameAddonId, e.isScheduleActive, e.isSecretConfigField, e.isSoftwareDecode, e.isSourceCap, e.isSystemDelivery, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.knownValues, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.loadContributionCapability, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logBannerArgs, e.logChannelsCapability, e.logDestinationCapability, e.logLevelAtMost, e.loginMethodCapability, e.looseSchema, e.makeProfileBrokerId, e.makeSourceBrokerId, e.mapAudioLabelToMacro, e.markdownToHtmlLite, e.markdownToText, e.maskUrlCredentials, e.mediaPlayerCapability, e.mergeSourceInfo, e.meshNetworkCapability, e.method, e.methodAccessForHttpMethod, e.metricsProviderCapability, e.modelConvertCapability, e.modelDistributorCapability, e.modelFormatForRuntime, e.motionCapability, e.motionDetectionCapability, e.motionTriggerCapability, e.motionZonesCapability, e.mqttBrokerCapability, e.nativeObjectDetectionCapability, e.networkAccessCapability, e.networkQualityCapability, e.nodePin, e.nodesCapability, e.normalizeAddonInitResult, e.normalizeAudioLabel, e.normalizeTokenScopes, e.normalizeUnit, e.notificationOutputCapability, e.notificationRulesCapability, e.notifierCapability, e.numericSensorCapability, e.oauthIntegrationCapability, e.objectInputDeclaresAddonId, e.osdCapability, e.osdManagerCapability, e.overlayClusterStepSettings, e.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProcStatus, e.parseProfileBrokerId, e.parseRuleSection, e.parseStreamParamsFormPatch, e.patchAudio, e.petFeederCapability, e.pickAccessoryControl, e.pickClusterStepModels, e.pickClusterStepSettings, e.pickDetailCropConvention, e.pickNativeLeaseOverride, e.pickPreferredRtspEntry, e.pickRestartCandidate, e.pickVideoEncoder, e.pickerForCondition, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.poolMemoryThreshold, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.principalMayReachAddon, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readClusterStepModels, e.readClusterStepSettings, e.readDetailCropConvention, e.readDeviceStateFrom, e.readNativeLeaseOverride, e.readNodePin, e.readTimelapseGeneratedAt, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.reducePoints, e.requiresPython, e.resetPoolBaseline, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveBucketMs, e.resolveCapMount, e.resolveClusterStepModelId, e.resolveDetectionRuntime, e.resolveDeviceControlKind, e.resolveDeviceProfile, e.resolveEgressDecodeHwAccel, e.resolveFormat, s = e.resolveHydratedFieldValue, e.resolveMethodAuth, e.resolveModelFormat, e.resolveMutate, e.resolvePoolMemoryPolicy, e.resolveRecordingProfiles, e.resolveRunnerId, e.resolveVariantModelId, e.resolveViewableDeviceIds, e.roleSpec, e.ruleEditorSectionsForKind, e.ruleKindOf, e.ruleKindSpec, e.ruleMatchesSection, e.ruleSection, e.ruleSectionOf, e.ruleSeedForSection, e.runInferenceStep, e.runtimeDevices, e.runtimeStatePolicyFor, e.sceneMonitorCapability, e.schemaDeclaresAnyField, e.scopeInherits, e.scopeKey, e.scopesAllowAddon, e.scopesAllowDeviceCap, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.serverManagementCapability, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.sliceActiveValue, e.sliceChangedAt, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, e.stateVocabularyFor, e.storageCapability, e.storageEvictableCapability, e.storageMigrationCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.subKindsOf, e.summarisePrivacyAudio, e.summarizeEffectiveScope, e.supportedRuntimes, e.switchCapability, e.switchedOffIds, e.synthesizeSourceInfo, e.systemCapability, e.systemEventFilterApplies, e.systemEventFilterAppliesToAnyKind, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.terminalSessionCapability, e.textToHtml, e.toDeviceSummary, e.toExpressionValue, e.toNodeId, e.toStreamSourceEntry, e.toastCapability, e.toggleAudioLabel, e.tokenize, e.transcodeBody, e.tryConvertUnit, e.turnProviderCapability, e.unitDimension, e.unitsForDimension, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.validateExpressionSource, e.validateRecipeBounds, e.valveCapability, e.vectorDimFromBase64, e.vectorStoreCapability, e.vibrationCapability, e.videoclipsCapability, e.viewerUiCapability, e.waterHeaterCapability, e.weatherCapability, e.webrtcClientHintsSchema, e.webrtcSessionCapability, e.wiringAddonHealthSchema, e.wiringHealthSnapshotSchema, e.wiringNodeHealthSchema, e.wiringProbeKindSchema, e.wiringProbeResultSchema, e.zodEntriesToConfigUI, e.zoneAnalyticsCapability, e.zoneRulesCapability, e.zonesCapability, e.default;
20
- }, l = i.share["default:@camstack/types"];
21
- l === void 0 ? n.then(() => {
22
- if (l = i.share["default:@camstack/types"], l === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
23
- c(l);
24
- }) : c(l);
25
- //#endregion
26
- export { s as n, a as r, o as t };