@camstack/addon-osd-manager 0.1.12 → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. package/dist/{MotionZonesSettings-Cq0OFaxs.mjs → MotionZonesSettings-DCM0cPHY.mjs} +2 -2
  2. package/dist/{PrivacyMaskSettings-C0jj3SDp.mjs → PrivacyMaskSettings-YAnUDIxD.mjs} +4 -4
  3. package/dist/{SceneMonitorEditor-B25bY2v0.mjs → SceneMonitorEditor-B1mssJov.mjs} +3 -3
  4. package/dist/_stub.js +10 -10
  5. package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-0Jo9Kjed.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-r9x9uc5A.mjs} +4 -4
  6. package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Bg1FVGv2.mjs +26 -0
  7. package/dist/{hostInit-DjgQlNKz.mjs → hostInit-9m3fJWve.mjs} +3 -3
  8. package/dist/index.js +222 -29
  9. package/dist/index.mjs +222 -29
  10. package/dist/{player-overlays-Dfe_rxmA.mjs → player-overlays-CU7W6fE3.mjs} +1 -1
  11. package/dist/remoteEntry.js +1 -1
  12. package/dist/{responsive-CWwNAY3j.mjs → responsive-BGccn_P-.mjs} +1 -1
  13. package/dist/{square-ax5XLFv8.mjs → square-DOT3IAcw.mjs} +1 -1
  14. package/dist/{trash-2-CWfC2FLD.mjs → trash-2-BJHZ3GWb.mjs} +1 -1
  15. package/dist/{use-device-snapshot-Z9dNOZFk.mjs → use-device-snapshot-DkwmPT9O.mjs} +1 -1
  16. package/dist/{virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-picNYVN2.mjs → virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-DjjOoJbP.mjs} +1 -1
  17. package/package.json +1 -1
  18. package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-rUObp2Qg.mjs +0 -26
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- //#region ../types/dist/event-category-Bxo5yJjt.mjs
1
+ //#region ../types/dist/event-category-XfKNtfCc.mjs
2
2
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
3
3
  EventCategory["SystemBoot"] = "system.boot";
4
4
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -15,9 +15,10 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
15
15
  EventCategory["SystemRestartCompleted"] = "system.restart-completed";
16
16
  /**
17
17
  * A newer addon or server-root package version was found by the
18
- * authoritative registry check. Emitted once per
19
- * `(target, packageName, currentVersion, latestVersion)` transition; repeated
20
- * polling of the same result is deduplicated by the checker.
18
+ * authoritative registry check. Emitted once when any observed
19
+ * `latestVersion` changes (or a package/node first appears behind);
20
+ * the payload carries the full currently-available list. Repeated
21
+ * polling of the same latests is silent.
21
22
  */
22
23
  EventCategory["UpdateAvailable"] = "update.available";
23
24
  /**
@@ -36,6 +37,22 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
36
37
  EventCategory["AddonInstalled"] = "addon.installed";
37
38
  EventCategory["AddonUninstalled"] = "addon.uninstalled";
38
39
  EventCategory["AddonCrashed"] = "addon.crashed";
40
+ /**
41
+ * A RUNNER the D6 crash circuit-breaker gave up on — terminal.
42
+ *
43
+ * `AddonCrashed` is the routine, self-healing fact ("it crashed; it is being
44
+ * respawned"); this is the one that never resolves itself. Emitted exactly
45
+ * once per trip, by `process-service.ts`, carrying the node, the runner, the
46
+ * addons it hosted and the crash count that tripped the breaker.
47
+ *
48
+ * It exists because a runner marked terminally `failed` used to be SILENT:
49
+ * on 2026-08-18 the `recorder` runner died of three unhandled ffmpeg spawn
50
+ * errors, the breaker stopped respawning it (correctly), `/health` kept
51
+ * returning 200, and fleet-wide recording was gone for 3h15 before the
52
+ * operator's phone told him. The Notification Center's system-event intake
53
+ * consumes this category and maps it to the `addon-crash-loop` kind.
54
+ */
55
+ EventCategory["AddonRunnerFailed"] = "addon.runner-failed";
39
56
  EventCategory["AddonError"] = "addon.error";
40
57
  EventCategory["AddonPageReady"] = "addon.page-ready";
41
58
  EventCategory["AddonWidgetReady"] = "addon.widget-ready";
@@ -7619,6 +7636,10 @@ var RecordingBandSchema = object({
7619
7636
  preBufferSec: number().min(0).optional(),
7620
7637
  postBufferSec: number().min(0).optional()
7621
7638
  });
7639
+ ({
7640
+ preBufferSec: 10,
7641
+ postBufferSec: 30
7642
+ }).postBufferSec * 1e3;
7622
7643
  /**
7623
7644
  * Per-device retention overrides. Every field is optional; an unset or `0`
7624
7645
  * value inherits the node-wide recorder default. Only footage-lifetime limits
@@ -7666,6 +7687,12 @@ var RecordingConfigSchema = object({
7666
7687
  /** DERIVED summary of `bands`, stamped by the recorder on every save.
7667
7688
  * Authoring it has no effect — see {@link RecordingStorageModeSchema}. */
7668
7689
  mode: RecordingStorageModeSchema.optional(),
7690
+ /**
7691
+ * Which assigned broker slots to record. Absent / empty = {@link
7692
+ * DEFAULT_RECORDING_PROFILES} (`high`+`low`) intersected with the
7693
+ * camera's currently assigned slots — never `mid` unless the operator
7694
+ * picks it, and never a slot the broker has not assigned.
7695
+ */
7669
7696
  profiles: array(CamProfileSchema).optional(),
7670
7697
  segmentSeconds: number().int().positive().optional(),
7671
7698
  /**
@@ -7746,7 +7773,11 @@ var RelocateFootageInputSchema = object({
7746
7773
  profiles: array(string()).optional(),
7747
7774
  /** Copy throttle in MB/s (default 40) — the drain is a background chore,
7748
7775
  * never allowed to starve live writers. */
7749
- throttleMbps: number().min(1).max(1e3).optional()
7776
+ throttleMbps: number().min(1).max(1e3).optional(),
7777
+ /** Move only segments whose startMs is >= this. Absent = the whole source
7778
+ * pile. Used when a full drain is too expensive and the operator only
7779
+ * wants the recent window on the new disk. */
7780
+ sinceMs: number().int().optional()
7750
7781
  });
7751
7782
  /** Internal, lease-scoped participant operation. It is intentionally separate
7752
7783
  * from persistent recording settings: a migration never changes
@@ -16089,6 +16120,7 @@ var NcSystemEventKindSchema = _enum([
16089
16120
  "node-offline",
16090
16121
  "node-inference-unavailable",
16091
16122
  "detection-blind",
16123
+ "addon-crash-loop",
16092
16124
  "addon-update-available",
16093
16125
  "server-update-available",
16094
16126
  "alarm-triggered",
@@ -16096,6 +16128,9 @@ var NcSystemEventKindSchema = _enum([
16096
16128
  "alarm-disarmed",
16097
16129
  "alarm-arming",
16098
16130
  "alarm-arm-refused",
16131
+ "addon-updated",
16132
+ "server-updated",
16133
+ "export-completed",
16099
16134
  "camera-online",
16100
16135
  "camera-offline",
16101
16136
  "camera-disabled",
@@ -17175,6 +17210,10 @@ var NC_CONDITION_CATALOG = [
17175
17210
  value: "detection-blind",
17176
17211
  label: "Camera detecting nothing"
17177
17212
  },
17213
+ {
17214
+ value: "addon-crash-loop",
17215
+ label: "Addon stopped after repeated crashes"
17216
+ },
17178
17217
  {
17179
17218
  value: "addon-update-available",
17180
17219
  label: "Addon update available"
@@ -17183,6 +17222,18 @@ var NC_CONDITION_CATALOG = [
17183
17222
  value: "server-update-available",
17184
17223
  label: "Server update available"
17185
17224
  },
17225
+ {
17226
+ value: "addon-updated",
17227
+ label: "Addons updated"
17228
+ },
17229
+ {
17230
+ value: "server-updated",
17231
+ label: "Server updated"
17232
+ },
17233
+ {
17234
+ value: "export-completed",
17235
+ label: "Export completed"
17236
+ },
17186
17237
  {
17187
17238
  value: "alarm-arming",
17188
17239
  label: "Alarm arming (exit delay)"
@@ -18524,13 +18575,19 @@ var RetrainStatusSchema = _enum([
18524
18575
  * "never marked" from "already trained" must read `retrainStatus`.
18525
18576
  *
18526
18577
  * `debug` does NOT pin; it is attention, not durability.
18578
+ *
18579
+ * `favourited` IS a BOOLEAN pin (durability bit), not a retrain lifecycle.
18580
+ * A favourited track is skipped by retention the same way `staging` is, but
18581
+ * it does not enter `none|staging|trained` and has no staging budget.
18527
18582
  */
18528
18583
  var TrackFlagFields = {
18529
18584
  /** Operator marked this track as training material — i.e. `retrainStatus` is
18530
18585
  * `'staging'`. */
18531
18586
  markForTrain: boolean().optional(),
18532
18587
  /** Operator marked this track for diagnostic attention. */
18533
- debug: boolean().optional()
18588
+ debug: boolean().optional(),
18589
+ /** Operator favourited this track. Pins it against pruning. */
18590
+ favourited: boolean().optional()
18534
18591
  };
18535
18592
  /**
18536
18593
  * The lifecycle field itself, on the READ surfaces only (`Track`, `KeyEvent`).
@@ -18555,6 +18612,7 @@ var TrackFlagsSchema = object({
18555
18612
  trackId: string(),
18556
18613
  markForTrain: boolean(),
18557
18614
  debug: boolean(),
18615
+ favourited: boolean(),
18558
18616
  /** The lifecycle state the boolean was derived from. Required here (unlike on
18559
18617
  * a track row) because this shape is only ever produced by the write body,
18560
18618
  * which always knows it — and a surface that has just written needs to render
@@ -19187,6 +19245,12 @@ var TrackCascadeCountsSchema = object({
19187
19245
  /** Per-track CLIP search vectors removed (best-effort). */
19188
19246
  embeddings: number().int()
19189
19247
  });
19248
+ /** Disk-wins reconcile: media rows whose blobs are gone, then empty tracks. */
19249
+ var DiskReconcileCountsSchema = object({
19250
+ mediaDropped: number().int(),
19251
+ tracks: number().int(),
19252
+ events: number().int()
19253
+ });
19190
19254
  /** Event-store footprint for one camera. */
19191
19255
  var EventStoreDeviceFootprintSchema = object({
19192
19256
  deviceId: number(),
@@ -19472,6 +19536,17 @@ var pipelineAnalyticsCapability = {
19472
19536
  auth: "admin"
19473
19537
  }),
19474
19538
  /**
19539
+ * Disk-wins reconcile for one camera. Drops media index rows whose blobs
19540
+ * are gone, then cascades tracks (including favourited and staging) that
19541
+ * have no remaining files. Enrolled identity/vehicle/scene media is never
19542
+ * probed. Trackless motion/audio events with no remaining file are dropped,
19543
+ * including snapshot-less rows.
19544
+ */
19545
+ reconcileFromDisk: method(object({ deviceId: number() }), DiskReconcileCountsSchema, {
19546
+ kind: "mutation",
19547
+ auth: "admin"
19548
+ }),
19549
+ /**
19475
19550
  * Delete whole tracks (object events) by id for the given device,
19476
19551
  * cascading their media in lockstep. Returns the number of tracks
19477
19552
  * actually deleted plus the ids that could not be removed.
@@ -19490,7 +19565,7 @@ var pipelineAnalyticsCapability = {
19490
19565
  auth: "admin"
19491
19566
  }),
19492
19567
  /**
19493
- * Set the per-track operator flags (`markForTrain`, `debug`) on ONE track.
19568
+ * Set the per-track operator flags (`markForTrain`, `debug`, `favourited`) on ONE track.
19494
19569
  * The patch is PARTIAL — an omitted key is left untouched — because the
19495
19570
  * three surfaces that write it (admin Events grid, viewer track detail,
19496
19571
  * viewer cluster detail) each own one toggle and must not clobber the other.
@@ -21600,6 +21675,24 @@ var CameraStatusDegradationSchema = object({
21600
21675
  *
21601
21676
  * See spec: `docs/superpowers/specs/2026-06-24-camera-status-aggregator-cap.md`
21602
21677
  */
21678
+ var DiskReconcileJobSchema = object({
21679
+ state: _enum([
21680
+ "idle",
21681
+ "running",
21682
+ "done",
21683
+ "error"
21684
+ ]),
21685
+ total: number().int().nonnegative(),
21686
+ completed: number().int().nonnegative(),
21687
+ currentDeviceId: number().int().nullable(),
21688
+ failed: array(number().int()).readonly(),
21689
+ mediaDropped: number().int().nonnegative(),
21690
+ tracks: number().int().nonnegative(),
21691
+ events: number().int().nonnegative(),
21692
+ startedAtMs: number().int().nullable(),
21693
+ finishedAtMs: number().int().nullable(),
21694
+ error: string().nullable()
21695
+ });
21603
21696
  var CameraStatusSchema = object({
21604
21697
  deviceId: number(),
21605
21698
  assignment: CameraAssignmentStatusSchema,
@@ -22136,6 +22229,18 @@ var pipelineOrchestratorCapability = {
22136
22229
  * rail without issuing N parallel browser round-trips.
22137
22230
  */
22138
22231
  getCameraStatuses: method(object({ deviceIds: array(number()).optional() }), array(CameraStatusSchema).readonly()),
22232
+ /**
22233
+ * Disk-wins fleet reconcile after a recordings wipe. Starts the walk in
22234
+ * the addon process and returns immediately with the job snapshot — the
22235
+ * work outlives the tRPC/UDS 60s timeout. Poll `getReconcileFromDiskStatus`.
22236
+ * Admin-only. Idempotent while a job is already running.
22237
+ */
22238
+ reconcileFromDisk: method(_void(), DiskReconcileJobSchema, {
22239
+ kind: "mutation",
22240
+ auth: "admin"
22241
+ }),
22242
+ /** Snapshot of the in-flight or last disk-wins fleet reconcile. */
22243
+ getReconcileFromDiskStatus: method(_void(), DiskReconcileJobSchema, { auth: "admin" }),
22139
22244
  /** List every template the operator has saved. */
22140
22245
  listTemplates: method(_void(), array(PipelineTemplateSchema).readonly()),
22141
22246
  /** Create a new named preset from a given CameraPipelineConfig. */
@@ -23584,20 +23689,6 @@ var vectorStoreCapability = {
23584
23689
  stats: method(VectorStatsInputSchema, VectorStatsResultSchema)
23585
23690
  }
23586
23691
  };
23587
- /**
23588
- * `videoclips` — the unified, navigable-clip surface for a camera.
23589
- *
23590
- * A device-scoped WRAPPER cap (like `pipeline-analytics`): exactly one active
23591
- * provider per device, substitutable. The DEFAULT provider (registered by
23592
- * `addon-post-analysis`, `defaultActive: true`) composes the analytics event
23593
- * log (markers + thumbnails) with the recorder's `getPlaybackManifest` — a clip
23594
- * is a time-WINDOW over existing footage, never a separate file. A camera that
23595
- * exposes NATIVE onboard clips (Reolink/Hikvision NVR) can later substitute the
23596
- * wrapper provider for its device and serve its own clip catalog + URLs.
23597
- *
23598
- * A `Clip` is purely time-based (subtree-blind): playback resolves segments by
23599
- * temporal overlap, so the API never decides `continuous` vs `events`.
23600
- */
23601
23692
  var ClipSchema = object({
23602
23693
  /** Opaque, provider-namespaced id. The default provider encodes the time
23603
23694
  * window so `getClipPlayback` is self-contained (no event re-query). */
@@ -23614,8 +23705,65 @@ var ClipSchema = object({
23614
23705
  startMs: number(),
23615
23706
  endMs: number()
23616
23707
  }),
23617
- /** Thumbnail URL (lazy; e.g. analytics `getEventMedia`). Never inlined. */
23618
- thumbnail: string().optional()
23708
+ /**
23709
+ * Distinct object classes attached to this visit (`person`, `car`, …),
23710
+ * dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
23711
+ * instead of the bare kind — "Object" tells the operator nothing a colour bar
23712
+ * did not. Absent (never empty) when the visit attached no classified object
23713
+ * event, so a motion/audio-only visit keeps its kind label.
23714
+ */
23715
+ labels: array(string()).max(3).optional(),
23716
+ /**
23717
+ * Lazy thumbnail URL, never inlined.
23718
+ *
23719
+ * Recording-derived clips (events-mode keep-window, and the prepared
23720
+ * continuous event+fragment visit) MUST use the snapshot of the **main
23721
+ * event of the interval** — `getEventMedia({ eventId, kind: 'snapshot' })`
23722
+ * of the event that owns `kind` (object > motion > audio). Do not extract
23723
+ * a keyframe from the recorded segments. Other providers (onboard, HKSV)
23724
+ * mint their own stills.
23725
+ *
23726
+ * **VOUCHED, never fabricated.** A provider emits this only for an event it
23727
+ * has CONFIRMED owns at least one media row (its own, or its owning track's).
23728
+ * Absent is meaningful — "this visit has no event still" — never "we did not
23729
+ * look". Stamping it from a URL template made 35% of one camera's clips point
23730
+ * at a 404 (device 3836, 2026-08-17: 64 of 179 clips dead, 63 of them motion).
23731
+ * A read that FAILS drops the claim; it never invents it.
23732
+ */
23733
+ thumbnail: string().optional(),
23734
+ /**
23735
+ * An instant INSIDE this visit's footage, hole-safe, where a recorded still
23736
+ * can be decoded. Present whenever the visit came from recorded availability;
23737
+ * absent on a per-event padded window (there is no footage to promise).
23738
+ *
23739
+ * This is not a thumbnail and not a second byte path: it is the argument to
23740
+ * the recorder's existing still route. The surface — never the provider —
23741
+ * decides whether to use it. It is the midpoint of the visit's LONGEST
23742
+ * contiguous range, not of the visit: a visit spans its holes by
23743
+ * construction, so a naive midpoint lands in dead air.
23744
+ */
23745
+ stillAtMs: number().optional(),
23746
+ /**
23747
+ * Analytics event ids that overlap this visit — a BOUNDED sample, newest
23748
+ * first within kind (object → motion → audio), capped at
23749
+ * {@link MAX_CLIP_EVENT_IDS}. Empty on footage-only clips.
23750
+ *
23751
+ * Bounded because it is not a payload the surface pages through: one visit on
23752
+ * device 615 carried 2 345 ids, and `eventIds` was 99% of a 153 KB
23753
+ * camera-day. Read {@link eventCount} for the true total.
23754
+ */
23755
+ eventIds: array(string()).optional(),
23756
+ /** How many analytics events actually overlap this visit. Differs from
23757
+ * `eventIds.length` exactly when the sample was capped — so a truncated
23758
+ * list is never mistaken for a quiet visit. */
23759
+ eventCount: number().int().nonnegative().optional(),
23760
+ /** Intra-visit footage holes (GOP rolls, discarded segments) still shorter
23761
+ * than `VISIT_MERGE_GAP_MS`. Playback concatenates around them; the timeline
23762
+ * bar keeps showing them via `recording.getAvailability`. */
23763
+ holes: array(object({
23764
+ startMs: number(),
23765
+ endMs: number()
23766
+ })).optional()
23619
23767
  });
23620
23768
  var ClipPlaybackSchema = object({
23621
23769
  /** HLS master URL through the hub data-plane (Range + token in path). */
@@ -24245,7 +24393,14 @@ var SearchResultSchema = object({
24245
24393
  });
24246
24394
  var AutoUpdateSettingsSchema = object({
24247
24395
  channel: ChannelSchema,
24248
- intervalSeconds: number()
24396
+ intervalSeconds: number(),
24397
+ /**
24398
+ * Cadence of the "an update exists" POLLER, in seconds. Independent of
24399
+ * `channel`: the poller runs while auto-apply is `off`, because being told
24400
+ * about a publish and installing it are different decisions. Clamped
24401
+ * server-side to 900 s … 604800 s; defaults to 21600 s (6 h).
24402
+ */
24403
+ updateCheckIntervalSeconds: number()
24249
24404
  });
24250
24405
  var AddonAutoUpdateSchema = ChannelWithInheritSchema;
24251
24406
  var RestartAddonResultSchema = unknown();
@@ -24514,7 +24669,9 @@ var addonsCapability = {
24514
24669
  getAutoUpdateSettings: method(_void(), AutoUpdateSettingsSchema, { auth: "admin" }),
24515
24670
  setAutoUpdateSettings: method(object({
24516
24671
  channel: ChannelSchema,
24517
- intervalSeconds: number().min(300).max(86400).optional()
24672
+ intervalSeconds: number().min(300).max(86400).optional(),
24673
+ /** Availability-poll cadence; see AutoUpdateSettingsSchema. */
24674
+ updateCheckIntervalSeconds: number().min(900).max(604800).optional()
24518
24675
  }), unknown(), {
24519
24676
  kind: "mutation",
24520
24677
  auth: "admin"
@@ -30820,7 +30977,9 @@ var ExportOptionsSchema = object({
30820
30977
  includeAudio: boolean(),
30821
30978
  maxLifeMs: number().int().positive(),
30822
30979
  deleteAfterDownload: boolean(),
30823
- title: string().max(200).optional()
30980
+ title: string().max(200).optional(),
30981
+ /** Notification-output target ids to ping when this export becomes ready. */
30982
+ notifyTargetIds: array(string().min(1)).max(20).optional()
30824
30983
  }).superRefine((v, ctx) => {
30825
30984
  if (v.speed !== void 0 && v.timelapse !== void 0) ctx.addIssue({
30826
30985
  code: ZodIssueCode.custom,
@@ -30882,14 +31041,23 @@ var recordingExportCapability = {
30882
31041
  scope: "system",
30883
31042
  mode: "singleton",
30884
31043
  methods: {
30885
- /** Queue a render of `[fromMs,toMs)` for `deviceId`/`profile`. Fails fast
30886
- * when no footage covers the range. Returns the queued record. */
31044
+ /** Queue a render of `[fromMs,toMs)` for `deviceId`/`profiles` (legacy
31045
+ * singular `profile` still accepted). Fails fast when no footage covers
31046
+ * the range. One job per profile; returns the first queued record. */
30887
31047
  createExport: method(object({
30888
31048
  deviceId: number(),
30889
- profile: string(),
31049
+ /** @deprecated Prefer `profiles`. Kept so timelapse/notifiers keep working. */
31050
+ profile: string().optional(),
31051
+ profiles: array(string()).min(1).optional(),
30890
31052
  fromMs: number(),
30891
31053
  toMs: number(),
30892
31054
  options: ExportOptionsSchema
31055
+ }).superRefine((v, ctx) => {
31056
+ if ((v.profiles !== void 0 && v.profiles.length > 0 ? v.profiles : v.profile !== void 0 ? [v.profile] : []).length < 1) ctx.addIssue({
31057
+ code: ZodIssueCode.custom,
31058
+ message: "pass profiles[] (min 1) or legacy profile",
31059
+ path: ["profiles"]
31060
+ });
30893
31061
  }), ExportRecordSchema, {
30894
31062
  kind: "mutation",
30895
31063
  auth: "protected"
@@ -36447,6 +36615,12 @@ Object.freeze({
36447
36615
  addonId: null,
36448
36616
  access: "create"
36449
36617
  },
36618
+ "pipelineAnalytics.reconcileFromDisk": {
36619
+ capName: "pipeline-analytics",
36620
+ capScope: "device",
36621
+ addonId: null,
36622
+ access: "create"
36623
+ },
36450
36624
  "pipelineAnalytics.refreshStorageLocationsForMigration": {
36451
36625
  capName: "pipeline-analytics",
36452
36626
  capScope: "device",
@@ -36849,6 +37023,12 @@ Object.freeze({
36849
37023
  addonId: null,
36850
37024
  access: "view"
36851
37025
  },
37026
+ "pipelineOrchestrator.getReconcileFromDiskStatus": {
37027
+ capName: "pipeline-orchestrator",
37028
+ capScope: "system",
37029
+ addonId: null,
37030
+ access: "view"
37031
+ },
36852
37032
  "pipelineOrchestrator.listAgentSettings": {
36853
37033
  capName: "pipeline-orchestrator",
36854
37034
  capScope: "system",
@@ -36873,6 +37053,12 @@ Object.freeze({
36873
37053
  addonId: null,
36874
37054
  access: "create"
36875
37055
  },
37056
+ "pipelineOrchestrator.reconcileFromDisk": {
37057
+ capName: "pipeline-orchestrator",
37058
+ capScope: "system",
37059
+ addonId: null,
37060
+ access: "create"
37061
+ },
36876
37062
  "pipelineOrchestrator.removeAgentSettings": {
36877
37063
  capName: "pipeline-orchestrator",
36878
37064
  capScope: "system",
@@ -39864,6 +40050,11 @@ Object.freeze({
39864
40050
  form: "single",
39865
40051
  optional: true
39866
40052
  }],
40053
+ "pipelineAnalytics.reconcileFromDisk": [{
40054
+ name: "deviceId",
40055
+ form: "single",
40056
+ optional: false
40057
+ }],
39867
40058
  "pipelineAnalytics.restageRetrainTrack": [{
39868
40059
  name: "deviceId",
39869
40060
  form: "single",
@@ -40989,6 +41180,8 @@ DEFAULT_NATIVE_LEASE_SETTINGS.budgetMb;
40989
41180
  DEFAULT_NATIVE_LEASE_SETTINGS.activityMs;
40990
41181
  DEFAULT_NATIVE_LEASE_SETTINGS.tileBudgetMb;
40991
41182
  DEFAULT_NATIVE_LEASE_SETTINGS.admission;
41183
+ var MB = 1024 * 1024;
41184
+ 1024 * MB, 3072 * MB;
40992
41185
  //#endregion
40993
41186
  //#region src/bindings-store.ts
40994
41187
  /**
@@ -1,5 +1,5 @@
1
1
  import { h as e, l as t, u as n, y as r } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
2
- import { o as i, s as a } from "./responsive-CWwNAY3j.mjs";
2
+ import { o as i, s as a } from "./responsive-BGccn_P-.mjs";
3
3
  import { n as o, r as s, t as c } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-DalfdIDw.mjs";
4
4
  var l = a("chevron-down", [["path", {
5
5
  d: "m6 9 6 6 6-6",
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-picNYVN2.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-DjjOoJbP.mjs";
2
2
  export { t as get, e as init };
@@ -1,6 +1,6 @@
1
1
  import { c as e, g as t, h as n, l as r, n as i, p as a, r as o, t as s, u as c, y as l } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
2
2
  import "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-DalfdIDw.mjs";
3
- import { g as u } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-rUObp2Qg.mjs";
3
+ import { g as u } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Bg1FVGv2.mjs";
4
4
  //#region ../ui-library/node_modules/lucide-react/dist/esm/shared/src/utils/mergeClasses.js
5
5
  l();
6
6
  var d = (...e) => e.filter((e, t, n) => !!e && e.trim() !== "" && n.indexOf(e) === t).join(" ").trim(), f = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), p = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), m = (e) => {
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-CWwNAY3j.mjs";
1
+ import { s as e } from "./responsive-BGccn_P-.mjs";
2
2
  var t = e("eye-off", [
3
3
  ["path", {
4
4
  d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-CWwNAY3j.mjs";
1
+ import { s as e } from "./responsive-BGccn_P-.mjs";
2
2
  var t = e("trash-2", [
3
3
  ["path", {
4
4
  d: "M10 11v6",
@@ -1,5 +1,5 @@
1
1
  import { c as e, h as t, p as n, y as r } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
2
- import { s as i } from "./responsive-CWwNAY3j.mjs";
2
+ import { s as i } from "./responsive-BGccn_P-.mjs";
3
3
  var a = i("camera", [["path", {
4
4
  d: "M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z",
5
5
  key: "18u6gg"
@@ -2753,7 +2753,7 @@ async function rr(e) {
2753
2753
  }
2754
2754
  }
2755
2755
  async function ir() {
2756
- return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-0Jo9Kjed.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-r9x9uc5A.mjs")).catch((e) => {
2757
2757
  throw tr = void 0, e;
2758
2758
  }), tr;
2759
2759
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-osd-manager",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "Binds camera on-screen-display slots to live state and recognitions",
5
5
  "keywords": [
6
6
  "camstack",
@@ -1,26 +0,0 @@
1
- //#region \0virtual:mf:__mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js
2
- var e = "__mf_init__virtual:mf:__mfe_internal__addon_osd_manager_page__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, l, u, d, f, p, m, h, g, _, v, y, b, x = (e) => {
19
- e.ACCESSORY_LABEL, e.ACCESS_ROLES, e.ALEXA_EGRESS_PROFILE, a = 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, o = e.AlarmStateSchema, e.AlertSchema, e.AlertSeveritySchema, e.AlertSourceSchema, e.AlertStatusSchema, e.AmbientLightSensorStatusSchema, 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.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.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_DECODER_HWACCEL_CONFIG, e.DEFAULT_DETAIL_CROP_CONVENTION, e.DEFAULT_EVENTS_BAND_BUFFER_SEC, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_NATIVE_LEASE_SETTINGS, e.DEFAULT_RETENTION, e.DEFAULT_RUNTIME_STATE_DURABILITY, e.DEFAULT_SCRUB_THUMBNAIL_PRESET, e.DEFAULT_TIMELAPSE_PREVIEW_TEXT, 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_PROFILES, e.DEVICE_SCOPED_CAPS, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATE_READERS, e.DEVICE_STATUS_METHOD, s = 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.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, c = e.DeviceFeature, e.DeviceInfoSchema, e.DeviceNetworkStatsSchema, l = e.DeviceRole, e.DeviceRuntimeState, e.DeviceSelectorSchema, e.DeviceStatusSchema, u = e.DeviceType, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, d = 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, f = 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, p = e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionBindingSourceSchema, e.ExpressionEvalError, e.ExpressionFieldBindingSchema, e.ExpressionGlobalBindingSchema, e.ExpressionLiteralBindingSchema, e.ExpressionParseError, e.ExpressionSourceSchema, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.Fmp4BoxSplitter, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.GasStatusSchema, 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.ImageContractSchema, e.ImageContractStateSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LOG_LEVEL_RANK, e.LabelAttributionSchema, e.LabelDefinitionSchema, e.LabelTierSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LinkedDeviceSchema, e.LinkedDevicesModeSchema, 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.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoginMethodContributionSchema, e.LoginStageEnum, e.MACRO_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.METHOD_ACCESS_MAP, e.METHOD_DEVICE_SELECTORS, e.MODEL_FORMATS, 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.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, 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_SECTION_ID, e.NATIVE_LEASE_TILE_BUDGET_FIELD, e.NATIVE_LEASE_TILE_BUDGET_KEY, e.NC_ALARM_SYSTEM_EVENT_KINDS, 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_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_SNOOZE_MAX_MINUTES, 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.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, 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, m = e.PET_FEEDER_MANUAL_FEED_MAX, h = 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.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.RESERVED_BINDING_NAMES, e.RESTORED_CAP_NAMES, e.RUNTIME_DEFAULTS, e.RUNTIME_STATE_POLICY, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadGopBytesResultSchema, e.ReadSegmentBytesResultSchema, 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.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.RelocateFootageClassSchema, e.RelocateFootageInputSchema, e.RelocateJobSchema, e.RelocateJobStateSchema, e.RelocateMediaInputSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, 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.SCRUB_THUMBNAIL_PRESETS, e.SCRUB_THUMBNAIL_PRESET_LABELS, e.SCRUB_THUMBNAIL_PRESET_ORDER, e.SENSOR_FEATURES, e.SENSOR_MAP, e.SOURCE_INFO_METADATA_KEY, 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.ScrubThumbnailPresetSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SetSiteLocationInputSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SiteLocationSchema, e.SiteLocationSourceSchema, e.SiteLocationStatusSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, g = e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StationaryObjectSchema, e.StorageAbortUploadInputSchema, 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.StorageMigrationFootageMoveInputSchema, e.StorageMigrationInputSchema, e.StorageMigrationJobSchema, e.StorageMigrationLeaseInputSchema, e.StorageMigrationMediaMoveInputSchema, e.StorageMigrationMoveSchema, e.StorageMigrationParticipantSchema, e.StorageMigrationPhaseSchema, e.StorageMigrationPlanSchema, 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.TurnServerSchema, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, 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, e.ZoneRuleStageEnum, e.ZoneRulesArraySchema, e.ZoneSchema, e.ZoneScopeBreakdownSchema, 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.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.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.colorCapability, e.colorForKind, e.compileExpression, e.compileExpressionSafe, e.composeSwitchedOff, e.conditionDepth, e.connectionTestCapability, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.coreBlockAddonId, e.coreBlockIdFromAddonId, e.coreBlocksCapability, e.cosineSimilarity, e.countConditionLeaves, e.coverCapability, v = e.createDeviceProxy, e.createDurableState, e.createEvent, e.createExpressionScope, e.createHwAccelCache, e.createLazyTrpcSource, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.customModelRegistryCapability, e.dataStoreProviderCapability, e.dayNightCapability, e.declarationOwnerNodeId, e.decodeVectorBase64, e.decoderCapability, 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.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.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractNestedAddonId, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.fanControlCapability, e.featureProbeCapability, e.filesystemBrowseCapability, e.findTimezone, e.floodCapability, e.formatForBackend, e.formatForRuntime, e.gasCapability, e.generateAutomationBlock, e.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.getTaxonomyEntry, e.hasMotionTrigger, e.hfModelUrl, e.htmlToText, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.imageSettingsCapability, e.integrationsCapability, e.intercomCapability, e.invocationFromEncodeProfile, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isAudioLabelSelected, e.isBaseConditionKey, e.isBatteryPresenceFault, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDetectionMacroClass, e.isDeviceConfigCap, e.isDeviceScopedCap, e.isEvent, e.isIsolatedBuiltin, e.isNode, e.isObjectInput, e.isRestoredCap, e.isSameAddonId, e.isScheduleActive, e.isSoftwareDecode, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.knownValues, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logBannerArgs, 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.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProfileBrokerId, e.parseStreamParamsFormPatch, e.patchAudio, e.petFeederCapability, e.pickAccessoryControl, e.pickDetailCropConvention, e.pickNativeLeaseOverride, e.pickPreferredRtspEntry, e.pickVideoEncoder, e.pickerForCondition, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.principalMayReachAddon, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readDetailCropConvention, e.readDeviceStateFrom, e.readNativeLeaseOverride, e.readNodePin, e.readTimelapseGeneratedAt, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.requiresPython, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveCapMount, e.resolveDetectionRuntime, e.resolveDeviceControlKind, e.resolveDeviceProfile, e.resolveEgressDecodeHwAccel, e.resolveFormat, e.resolveHydratedFieldValue, e.resolveModelFormat, e.resolveMutate, e.resolveRunnerId, e.resolveScrubThumbnailGeometry, e.resolveVariantModelId, e.resolveViewableDeviceIds, e.roleSpec, e.runInferenceStep, e.runtimeDevices, e.runtimeStatePolicyFor, e.sceneMonitorCapability, 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.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, y = 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.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, b = 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
- }, S = i.share["default:@camstack/types"];
21
- S === void 0 ? n.then(() => {
22
- if (S = i.share["default:@camstack/types"], S === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
23
- x(S);
24
- }) : x(S);
25
- //#endregion
26
- export { l as a, f as c, o as d, m as f, v as g, _ as h, c as i, a as l, g as m, b as n, u as o, h as p, s as r, d as s, y as t, p as u };