@camstack/types 1.1.48 → 1.1.50

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
@@ -1,5 +1,5 @@
1
- import { $ as StreamSourceSchema, A as parseJsonUnknown, B as CamProfileSchema, C as asBoolean, D as asString, E as asNumber, F as readinessKey, G as DecodedFrameSchema, H as CamStreamResolutionSchema, I as scopeKey, J as FrameHandleSchema, K as EncodedPacketSchema, L as BrokerStatsSchema, M as ReadinessRegistry, N as ReadinessTimeoutError, O as parseJsonArray, P as emitDownForOwnedCaps, Q as StreamSourceEntrySchema, R as BrokerStatusSchema, S as DeviceType, T as asJsonObject, U as CameraStreamSchema, V as CamStreamKindSchema, W as DecodedAudioChunkSchema, X as ProfileSlotSchema, Y as ProfileRtspEntrySchema, Z as ProfileSlotStatusSchema, _ as resolveCapMount, _t as collectHydratedFieldValues, a as viewerUiCapability, at as makeSourceBrokerId, b as DeviceFeature, bt as DisposerChain, c as createLazyTrpcSource, ct as BaseAddon, d as DEVICE_SETTINGS_CONTRIBUTION_METHODS, dt as createEvent, et as SubscribeAudioChunksInputSchema, f as DEVICE_STATUS_METHOD, ft as emitReadiness, g as method, gt as collectHydratedFieldEntries, h as isDeviceConfigCap, ht as WELL_KNOWN_TAB_MAP, i as deviceOpsCapability, it as makeProfileBrokerId, j as DATAPLANE_SECRET_HEADER, k as parseJsonObject, l as createMirrorSource, lt as normalizeAddonInitResult, m as expandCapMethods, mt as WELL_KNOWN_TABS, n as sleepCancellable, nt as SubscribeFramesInputSchema, o as adminUiCapability, ot as parseProfileBrokerId, p as event, pt as isEvent, q as FrameHandleFormatSchema, r as RawStateResultSchema, rt as SubscribeFramesResultSchema, s as createDeviceProxy, st as selectAssignedProfileSlots, t as sleep, tt as SubscribeAudioChunksResultSchema, u as createSliceHandle, ut as createDurableState, v as systemMethod, vt as hydrateSchema, w as asJsonArray, x as DeviceRole, y as ChargingStatus, yt as resolveHydratedFieldValue, z as CAM_PROFILE_ORDER } from "./sleep-B3OHhFkL.mjs";
2
- import { t as EventCategory } from "./event-category-H4AVePnn.mjs";
1
+ import { $ as StreamSourceSchema, A as parseJsonUnknown, B as CamProfileSchema, C as asBoolean, D as asString, E as asNumber, F as readinessKey, G as DecodedFrameSchema, H as CamStreamResolutionSchema, I as scopeKey, J as FrameHandleSchema, K as EncodedPacketSchema, L as BrokerStatsSchema, M as ReadinessRegistry, N as ReadinessTimeoutError, O as parseJsonArray, P as emitDownForOwnedCaps, Q as StreamSourceEntrySchema, R as BrokerStatusSchema, S as DeviceType, T as asJsonObject, U as CameraStreamSchema, V as CamStreamKindSchema, W as DecodedAudioChunkSchema, X as ProfileSlotSchema, Y as ProfileRtspEntrySchema, Z as ProfileSlotStatusSchema, _ as resolveCapMount, _t as collectHydratedFieldValues, a as viewerUiCapability, at as makeSourceBrokerId, b as DeviceFeature, bt as DisposerChain, c as createLazyTrpcSource, ct as BaseAddon, d as DEVICE_SETTINGS_CONTRIBUTION_METHODS, dt as createEvent, et as SubscribeAudioChunksInputSchema, f as DEVICE_STATUS_METHOD, ft as emitReadiness, g as method, gt as collectHydratedFieldEntries, h as isDeviceConfigCap, ht as WELL_KNOWN_TAB_MAP, i as deviceOpsCapability, it as makeProfileBrokerId, j as DATAPLANE_SECRET_HEADER, k as parseJsonObject, l as createMirrorSource, lt as normalizeAddonInitResult, m as expandCapMethods, mt as WELL_KNOWN_TABS, n as sleepCancellable, nt as SubscribeFramesInputSchema, o as adminUiCapability, ot as parseProfileBrokerId, p as event, pt as isEvent, q as FrameHandleFormatSchema, r as RawStateResultSchema, rt as SubscribeFramesResultSchema, s as createDeviceProxy, st as selectAssignedProfileSlots, t as sleep, tt as SubscribeAudioChunksResultSchema, u as createSliceHandle, ut as createDurableState, v as systemMethod, vt as hydrateSchema, w as asJsonArray, x as DeviceRole, y as ChargingStatus, yt as resolveHydratedFieldValue, z as CAM_PROFILE_ORDER } from "./sleep-D8ZkNoYz.mjs";
2
+ import { t as EventCategory } from "./event-category-D4HJq7Mw.mjs";
3
3
  import { EventSourceType } from "./enums.mjs";
4
4
  import { t as errMsg } from "./err-msg-IQTHeDzc.mjs";
5
5
  import { z } from "zod";
@@ -1047,6 +1047,71 @@ function migrateConfigToBands(config) {
1047
1047
  return schedules.map((schedule) => bandFromSchedule(schedule, bandMode, config));
1048
1048
  }
1049
1049
  //#endregion
1050
+ //#region src/interfaces/ops-log.ts
1051
+ /**
1052
+ * Ops-log — the durable, append-only operations audit shared by the
1053
+ * recordings and events management surfaces.
1054
+ *
1055
+ * ONE row shape is reused for both domains so a single "Activity" view can
1056
+ * merge the recorder's DurableState ring (recordings ops-log) and the
1057
+ * pipeline-analytics SQLite collection (events ops-log). Each row records a
1058
+ * management operation, WHY it ran (reason), and its measurable effect
1059
+ * (itemsAffected + bytesReclaimed). Writes are best-effort — a failed log must
1060
+ * never fail the operation it records.
1061
+ */
1062
+ /** Which management domain the operation belongs to. */
1063
+ var OpsLogDomainSchema = z.enum(["recording", "events"]);
1064
+ /** The kind of management operation performed. */
1065
+ var OpsLogOpSchema = z.enum([
1066
+ "prune",
1067
+ "manual-delete",
1068
+ "rescan",
1069
+ "retention-run"
1070
+ ]);
1071
+ /** Why the operation ran. */
1072
+ var OpsLogReasonSchema = z.enum([
1073
+ "retention",
1074
+ "quota",
1075
+ "manual",
1076
+ "operator"
1077
+ ]);
1078
+ /** One audit row, shared verbatim by both domains. */
1079
+ var OpsLogEntrySchema = z.object({
1080
+ /** Unique row id. */
1081
+ id: z.string(),
1082
+ /** Epoch ms the operation completed. */
1083
+ at: z.number(),
1084
+ domain: OpsLogDomainSchema,
1085
+ op: OpsLogOpSchema,
1086
+ reason: OpsLogReasonSchema,
1087
+ /** The camera the op targeted; null for a cluster/global op. */
1088
+ deviceId: z.number().nullable(),
1089
+ /** Node that performed the op (the log carries nodeId — no cross-node aggregation). */
1090
+ nodeId: z.string(),
1091
+ /** Buckets / rows deleted (op-specific unit). */
1092
+ itemsAffected: z.number(),
1093
+ /** Bytes reclaimed by the op (0 when not measurable). */
1094
+ bytesReclaimed: z.number(),
1095
+ /** Free-text detail (e.g. "floor moved to <ts>"); null when none. */
1096
+ detail: z.string().nullable(),
1097
+ /** Who/what triggered the op. */
1098
+ actor: z.string()
1099
+ });
1100
+ /** Shared query input for the per-domain `listOpsLog` cap methods. */
1101
+ var OpsLogQueryInputSchema = z.object({
1102
+ /** Restrict to a single camera; omit for every row. */
1103
+ deviceId: z.number().optional(),
1104
+ /** Max rows returned, newest-first. */
1105
+ limit: z.number().int().min(1).max(1e3).optional()
1106
+ });
1107
+ /**
1108
+ * Default cap on the recorder's DurableState ops-log ring — the newest N rows
1109
+ * survive; older ones are evicted on append.
1110
+ */
1111
+ var OPS_LOG_RING_DEFAULT_MAX = 500;
1112
+ /** Default page size for a `listOpsLog` query when the caller omits `limit`. */
1113
+ var OPS_LOG_DEFAULT_LIMIT = 200;
1114
+ //#endregion
1050
1115
  //#region src/interfaces/storage-location.ts
1051
1116
  /**
1052
1117
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
@@ -2270,6 +2335,10 @@ var MACRO_LABELS = [
2270
2335
  {
2271
2336
  id: "animal",
2272
2337
  name: "Animal"
2338
+ },
2339
+ {
2340
+ id: "package",
2341
+ name: "Package"
2273
2342
  }
2274
2343
  ];
2275
2344
  var COCO_TO_MACRO = {
@@ -2292,7 +2361,10 @@ var COCO_TO_MACRO = {
2292
2361
  elephant: "animal",
2293
2362
  bear: "animal",
2294
2363
  zebra: "animal",
2295
- giraffe: "animal"
2364
+ giraffe: "animal",
2365
+ suitcase: "package",
2366
+ backpack: "package",
2367
+ handbag: "package"
2296
2368
  },
2297
2369
  preserveOriginal: false
2298
2370
  };
@@ -11000,7 +11072,11 @@ var ZoneRulesArraySchema = z.array(ZoneRuleSchema).readonly();
11000
11072
  * Extend the enum here when a new gating consumer comes online (audio
11001
11073
  * gating, alert filtering, …) — no other surface needs to change.
11002
11074
  */
11003
- var ZoneRuleStageEnum = z.enum(["motion", "detection"]);
11075
+ var ZoneRuleStageEnum = z.enum([
11076
+ "motion",
11077
+ "detection",
11078
+ "package"
11079
+ ]);
11004
11080
  /**
11005
11081
  * Zone rules capability — per-camera CRUD over the {@link ZoneRule}
11006
11082
  * arrays that decide how each pipeline stage uses the polygon zones.
@@ -11044,16 +11120,25 @@ var zoneRulesCapability = {
11044
11120
  })
11045
11121
  },
11046
11122
  /**
11047
- * Runtime-state slice — both stages mirrored together so consumers
11123
+ * Runtime-state slice — every stage mirrored together so consumers
11048
11124
  * see one reactive handle (`device.state.zoneRules.value`) instead
11049
- * of two. Bulk-replace mutations on either stage write the full
11050
- * `{motion, detection}` shape, so subscribers always get the
11125
+ * of one per stage. Bulk-replace mutations on any stage write the full
11126
+ * `{motion, detection, package}` shape, so subscribers always get the
11051
11127
  * complete current set. Consumers that only care about one stage
11052
11128
  * just read the matching property.
11129
+ *
11130
+ * `package` backs the package-drop detector — a package zone is a
11131
+ * `ZoneRule` on the `'package'` stage referencing drawn polygons
11132
+ * (see docs/superpowers/specs/2026-07-17-package-zones-design.md §3.1).
11133
+ * The orchestrator provider writes this stage as a first-class slice
11134
+ * (Phase 4): every mutation mirrors the full `{motion, detection,
11135
+ * package}` shape, so consumers read the current package rules directly
11136
+ * off `device.state.zoneRules.value.package`.
11053
11137
  */
11054
11138
  runtimeState: z.object({
11055
11139
  motion: z.array(ZoneRuleSchema).readonly(),
11056
- detection: z.array(ZoneRuleSchema).readonly()
11140
+ detection: z.array(ZoneRuleSchema).readonly(),
11141
+ package: z.array(ZoneRuleSchema).readonly()
11057
11142
  })
11058
11143
  };
11059
11144
  //#endregion
@@ -13053,7 +13138,16 @@ function createSystemProxy(api) {
13053
13138
  assignPlates: (input) => dispatch("plateGallery", "assignPlates", "mutation", input),
13054
13139
  unassignPlates: (input) => dispatch("plateGallery", "unassignPlates", "mutation", input)
13055
13140
  },
13056
- recording: { getStorageUsage: (input) => dispatch("recording", "getStorageUsage", "query", input) },
13141
+ recording: {
13142
+ getStorageUsage: (input) => dispatch("recording", "getStorageUsage", "query", input),
13143
+ listOpsLog: (input) => dispatch("recording", "listOpsLog", "query", input)
13144
+ },
13145
+ recordingExport: {
13146
+ getExport: (input) => dispatch("recordingExport", "getExport", "query", input),
13147
+ cancelExport: (input) => dispatch("recordingExport", "cancelExport", "mutation", input),
13148
+ deleteExport: (input) => dispatch("recordingExport", "deleteExport", "mutation", input),
13149
+ getDownloadUrl: (input) => dispatch("recordingExport", "getDownloadUrl", "query", input)
13150
+ },
13057
13151
  serverManagement: {
13058
13152
  getServerPackageStatus: (input) => dispatch("serverManagement", "getServerPackageStatus", "query", input),
13059
13153
  checkServerUpdate: (input) => dispatch("serverManagement", "checkServerUpdate", "mutation", input),
@@ -18318,6 +18412,7 @@ var EventKindIconSchema = z.enum([
18318
18412
  "smoke",
18319
18413
  "water",
18320
18414
  "button",
18415
+ "package",
18321
18416
  "generic"
18322
18417
  ]);
18323
18418
  var EventKindCategorySchema = z.enum([
@@ -18325,7 +18420,8 @@ var EventKindCategorySchema = z.enum([
18325
18420
  "audio",
18326
18421
  "detection",
18327
18422
  "sensor",
18328
- "custom"
18423
+ "custom",
18424
+ "package"
18329
18425
  ]);
18330
18426
  var EventKindDescriptorSchema = z.object({
18331
18427
  /** Stable kind id (e.g. 'motion', 'person', 'contact'). */
@@ -18666,6 +18762,26 @@ var TrackCascadeCountsSchema = z.object({
18666
18762
  /** Per-track CLIP search vectors removed (best-effort). */
18667
18763
  embeddings: z.number().int()
18668
18764
  });
18765
+ /** Event-store footprint for one camera. */
18766
+ var EventStoreDeviceFootprintSchema = z.object({
18767
+ deviceId: z.number(),
18768
+ /** Persisted event rows (motion + object + audio) for the camera. */
18769
+ rows: z.number().int(),
18770
+ /** Event-owned media bytes on disk for the camera. */
18771
+ bytes: z.number().int()
18772
+ });
18773
+ /** Aggregate event-store footprint: global totals + per-camera breakdown. */
18774
+ var EventStoreFootprintSchema = z.object({
18775
+ totalRows: z.number().int(),
18776
+ totalBytes: z.number().int(),
18777
+ devices: z.array(EventStoreDeviceFootprintSchema).readonly()
18778
+ });
18779
+ /** Per-kind counts returned by the event-prune / device-delete mutations. */
18780
+ var EventPruneCountsSchema = z.object({
18781
+ motion: z.number().int(),
18782
+ object: z.number().int(),
18783
+ audio: z.number().int()
18784
+ });
18669
18785
  var pipelineAnalyticsCapability = {
18670
18786
  name: "pipeline-analytics",
18671
18787
  scope: "device",
@@ -18827,6 +18943,45 @@ var pipelineAnalyticsCapability = {
18827
18943
  kind: "mutation",
18828
18944
  auth: "admin"
18829
18945
  }),
18946
+ /**
18947
+ * Durable event-store footprint for the management UI: event rows
18948
+ * (motion + object + audio) counted per camera + total, plus the
18949
+ * event-owned media bytes on disk per camera + total. Stat/count-based,
18950
+ * computed on demand.
18951
+ */
18952
+ getEventStoreFootprint: method(z.object({}), EventStoreFootprintSchema, {
18953
+ kind: "query",
18954
+ auth: "admin"
18955
+ }),
18956
+ /**
18957
+ * Cluster-wide prune of events older than `olderThanMs` (exclusive) across
18958
+ * every camera, deleting each event's media in lockstep. Logged to the
18959
+ * events ops-log with `reason` (default `'retention'`). Returns the summed
18960
+ * per-kind deleted counts.
18961
+ */
18962
+ pruneEvents: method(z.object({
18963
+ olderThanMs: z.number(),
18964
+ reason: OpsLogReasonSchema.optional()
18965
+ }), EventPruneCountsSchema, {
18966
+ kind: "mutation",
18967
+ auth: "admin"
18968
+ }),
18969
+ /**
18970
+ * Manually delete EVERY event (motion + object + audio) for one camera and
18971
+ * its event-owned media in lockstep. Logged to the events ops-log as
18972
+ * `op:'manual-delete', reason:'manual'`. Destructive — the admin UI guards
18973
+ * it behind a confirm.
18974
+ */
18975
+ deleteDeviceEvents: method(z.object({ deviceId: z.number() }), EventPruneCountsSchema, {
18976
+ kind: "mutation",
18977
+ auth: "admin"
18978
+ }),
18979
+ /** The events ops-log rows (newest-first), optionally scoped to one camera.
18980
+ * Backed by a declared pipeline-analytics SQLite collection. */
18981
+ listOpsLog: method(OpsLogQueryInputSchema, z.array(OpsLogEntrySchema).readonly(), {
18982
+ kind: "query",
18983
+ auth: "admin"
18984
+ }),
18830
18985
  getEventMedia: method(z.object({
18831
18986
  eventId: z.string(),
18832
18987
  kind: MediaFileKindEnum.optional()
@@ -23564,14 +23719,164 @@ var recordingCapability = {
23564
23719
  auth: "admin"
23565
23720
  }),
23566
23721
  /** Apply this device's retention policy to footage now; returns the oldest
23567
- * surviving footage start (the retention floor) or null if no footage. */
23568
- pruneFootage: method(z.object({ deviceId: z.number() }), z.object({
23722
+ * surviving footage start (the retention floor) or null if no footage. The
23723
+ * prune is logged to the recordings ops-log with `reason` (default
23724
+ * `'retention'` — the policy-driven prune; `'quota'` when disk-pressure
23725
+ * triggered). */
23726
+ pruneFootage: method(z.object({
23727
+ deviceId: z.number(),
23728
+ reason: OpsLogReasonSchema.optional()
23729
+ }), z.object({
23569
23730
  floorMs: z.number().nullable(),
23570
23731
  deletedBuckets: z.number().int(),
23571
23732
  reclaimedBytes: z.number().int()
23572
23733
  }), {
23573
23734
  kind: "mutation",
23574
23735
  auth: "admin"
23736
+ }),
23737
+ /**
23738
+ * Manually delete a camera's footage — the whole footprint, or a
23739
+ * `[fromMs, toMs)` window when either bound is given. Logged to the
23740
+ * recordings ops-log as `op:'manual-delete', reason:'manual'`. Destructive:
23741
+ * the admin UI guards it behind a confirm.
23742
+ */
23743
+ deleteFootprint: method(z.object({
23744
+ deviceId: z.number(),
23745
+ fromMs: z.number().optional(),
23746
+ toMs: z.number().optional()
23747
+ }), z.object({
23748
+ deletedBuckets: z.number().int(),
23749
+ reclaimedBytes: z.number().int()
23750
+ }), {
23751
+ kind: "mutation",
23752
+ auth: "admin"
23753
+ }),
23754
+ /** The recordings ops-log rows (newest-first), optionally scoped to one
23755
+ * camera. Backed by the recorder's bounded DurableState ring. */
23756
+ listOpsLog: method(OpsLogQueryInputSchema, z.array(OpsLogEntrySchema).readonly(), {
23757
+ kind: "query",
23758
+ auth: "admin"
23759
+ })
23760
+ }
23761
+ };
23762
+ //#endregion
23763
+ //#region src/capabilities/recording-export.cap.ts
23764
+ /**
23765
+ * `recordingExport` cap — render a footage time range into a single downloadable
23766
+ * MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
23767
+ * bounded lifetime with a durable history, auto-expiry, and optional
23768
+ * delete-after-download.
23769
+ *
23770
+ * Like `recording` this is a `scope:'system', mode:'singleton'` cap: the
23771
+ * recorder self-gates so exactly ONE node (the designated `recordingNodeId`,
23772
+ * default `hub`) registers it. Device-scoped methods carry `deviceId` in their
23773
+ * input and dispatch to that single provider; the render runs on the node that
23774
+ * owns the footage (no cross-node segment transfer). Download rides the
23775
+ * framework addon data-plane. State persists in a DurableState blob (NOT
23776
+ * SQLite); history rows survive file deletion for audit.
23777
+ */
23778
+ /** Playback-speed multiplier for the render (1 = realtime). */
23779
+ var ExportSpeedSchema = z.number().min(.25).max(32);
23780
+ /** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
23781
+ var ExportTimelapseSchema = z.object({
23782
+ everyMs: z.number().int().positive(),
23783
+ outputFps: z.number().int().min(1).max(60).optional()
23784
+ });
23785
+ /**
23786
+ * Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
23787
+ * is honoured only for a realtime-ish speed (0.5–2×); timelapse is always
23788
+ * silent. `maxLifeMs` bounds how long the finished file is kept;
23789
+ * `deleteAfterDownload` removes it shortly after the first complete download.
23790
+ */
23791
+ var ExportOptionsSchema = z.object({
23792
+ speed: ExportSpeedSchema.optional(),
23793
+ timelapse: ExportTimelapseSchema.optional(),
23794
+ includeAudio: z.boolean(),
23795
+ maxLifeMs: z.number().int().positive(),
23796
+ deleteAfterDownload: z.boolean(),
23797
+ title: z.string().max(200).optional()
23798
+ }).superRefine((v, ctx) => {
23799
+ if (v.speed !== void 0 && v.timelapse !== void 0) ctx.addIssue({
23800
+ code: z.ZodIssueCode.custom,
23801
+ message: "speed and timelapse are mutually exclusive",
23802
+ path: ["timelapse"]
23803
+ });
23804
+ });
23805
+ var ExportStateSchema = z.enum([
23806
+ "queued",
23807
+ "rendering",
23808
+ "ready",
23809
+ "failed",
23810
+ "expired",
23811
+ "deleted"
23812
+ ]);
23813
+ /** One export job / history row. */
23814
+ var ExportRecordSchema = z.object({
23815
+ id: z.string(),
23816
+ deviceId: z.number(),
23817
+ profile: z.string(),
23818
+ fromMs: z.number(),
23819
+ toMs: z.number(),
23820
+ options: ExportOptionsSchema,
23821
+ state: ExportStateSchema,
23822
+ /** 0–100 while rendering; null otherwise. */
23823
+ progressPct: z.number().nullable(),
23824
+ /** File size once ready; null before. */
23825
+ fileBytes: z.number().nullable(),
23826
+ expiresAt: z.number(),
23827
+ deleteAfterDownload: z.boolean(),
23828
+ /** Epoch of the first complete download; null until then. */
23829
+ downloadedAt: z.number().nullable(),
23830
+ createdAt: z.number(),
23831
+ /** User id/name that requested the export. */
23832
+ createdBy: z.string(),
23833
+ /** Failure reason when state is 'failed'; null otherwise. */
23834
+ error: z.string().nullable()
23835
+ });
23836
+ /** Candidate download URLs (LAN first, then operator extra hosts). */
23837
+ var ExportDownloadSchema = z.object({
23838
+ url: z.string(),
23839
+ endpoints: z.array(z.string())
23840
+ });
23841
+ var recordingExportCapability = {
23842
+ name: "recordingExport",
23843
+ scope: "system",
23844
+ mode: "singleton",
23845
+ methods: {
23846
+ /** Queue a render of `[fromMs,toMs)` for `deviceId`/`profile`. Fails fast
23847
+ * when no footage covers the range. Returns the queued record. */
23848
+ createExport: method(z.object({
23849
+ deviceId: z.number(),
23850
+ profile: z.string(),
23851
+ fromMs: z.number(),
23852
+ toMs: z.number(),
23853
+ options: ExportOptionsSchema
23854
+ }), ExportRecordSchema, {
23855
+ kind: "mutation",
23856
+ auth: "protected"
23857
+ }),
23858
+ /** All export rows (history included), optionally scoped to one device. */
23859
+ listExports: method(z.object({ deviceId: z.number().optional() }), z.array(ExportRecordSchema), {
23860
+ kind: "query",
23861
+ auth: "protected"
23862
+ }),
23863
+ getExport: method(z.object({ exportId: z.string() }), ExportRecordSchema, {
23864
+ kind: "query",
23865
+ auth: "protected"
23866
+ }),
23867
+ /** Abort a queued/rendering export; the partial file is removed. */
23868
+ cancelExport: method(z.object({ exportId: z.string() }), ExportRecordSchema, {
23869
+ kind: "mutation",
23870
+ auth: "protected"
23871
+ }),
23872
+ /** Remove the file but keep the history row (state → 'deleted'). */
23873
+ deleteExport: method(z.object({ exportId: z.string() }), ExportRecordSchema, {
23874
+ kind: "mutation",
23875
+ auth: "protected"
23876
+ }),
23877
+ getDownloadUrl: method(z.object({ exportId: z.string() }), ExportDownloadSchema, {
23878
+ kind: "query",
23879
+ auth: "protected"
23575
23880
  })
23576
23881
  }
23577
23882
  };
@@ -24367,6 +24672,7 @@ var CAPABILITY_NAMES = {
24367
24672
  ptzAutotrack: "ptz-autotrack",
24368
24673
  reboot: "reboot",
24369
24674
  recording: "recording",
24675
+ recordingExport: "recordingExport",
24370
24676
  sceneMonitor: "scene-monitor",
24371
24677
  scriptRunner: "script-runner",
24372
24678
  serverManagement: "server-management",
@@ -24832,6 +25138,10 @@ var CAPABILITY_ROUTER_KEYS = [
24832
25138
  key: "recording",
24833
25139
  name: "recording"
24834
25140
  },
25141
+ {
25142
+ key: "recordingExport",
25143
+ name: "recordingExport"
25144
+ },
24835
25145
  {
24836
25146
  key: "sceneMonitor",
24837
25147
  name: "scene-monitor"
@@ -25086,6 +25396,7 @@ var ALL_CAPABILITY_DEFINITIONS = [
25086
25396
  ptzAutotrackCapability,
25087
25397
  rebootCapability,
25088
25398
  recordingCapability,
25399
+ recordingExportCapability,
25089
25400
  sceneMonitorCapability,
25090
25401
  scriptRunnerCapability,
25091
25402
  serverManagementCapability,
@@ -27907,6 +28218,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
27907
28218
  addonId: null,
27908
28219
  access: "delete"
27909
28220
  },
28221
+ "pipelineAnalytics.deleteDeviceEvents": {
28222
+ capName: "pipeline-analytics",
28223
+ capScope: "device",
28224
+ addonId: null,
28225
+ access: "delete"
28226
+ },
27910
28227
  "pipelineAnalytics.deleteTracks": {
27911
28228
  capName: "pipeline-analytics",
27912
28229
  capScope: "device",
@@ -27937,6 +28254,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
27937
28254
  addonId: null,
27938
28255
  access: "view"
27939
28256
  },
28257
+ "pipelineAnalytics.getEventStoreFootprint": {
28258
+ capName: "pipeline-analytics",
28259
+ capScope: "device",
28260
+ addonId: null,
28261
+ access: "view"
28262
+ },
27940
28263
  "pipelineAnalytics.getKeyEvents": {
27941
28264
  capName: "pipeline-analytics",
27942
28265
  capScope: "device",
@@ -27979,6 +28302,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
27979
28302
  addonId: null,
27980
28303
  access: "view"
27981
28304
  },
28305
+ "pipelineAnalytics.listOpsLog": {
28306
+ capName: "pipeline-analytics",
28307
+ capScope: "device",
28308
+ addonId: null,
28309
+ access: "view"
28310
+ },
27982
28311
  "pipelineAnalytics.listRecentTracks": {
27983
28312
  capName: "pipeline-analytics",
27984
28313
  capScope: "device",
@@ -27991,6 +28320,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
27991
28320
  addonId: null,
27992
28321
  access: "view"
27993
28322
  },
28323
+ "pipelineAnalytics.pruneEvents": {
28324
+ capName: "pipeline-analytics",
28325
+ capScope: "device",
28326
+ addonId: null,
28327
+ access: "create"
28328
+ },
27994
28329
  "pipelineAnalytics.pruneEventsBefore": {
27995
28330
  capName: "pipeline-analytics",
27996
28331
  capScope: "device",
@@ -28753,6 +29088,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
28753
29088
  addonId: null,
28754
29089
  access: "create"
28755
29090
  },
29091
+ "recording.deleteFootprint": {
29092
+ capName: "recording",
29093
+ capScope: "system",
29094
+ addonId: null,
29095
+ access: "delete"
29096
+ },
28756
29097
  "recording.getAvailability": {
28757
29098
  capName: "recording",
28758
29099
  capScope: "system",
@@ -28783,6 +29124,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
28783
29124
  addonId: null,
28784
29125
  access: "view"
28785
29126
  },
29127
+ "recording.listOpsLog": {
29128
+ capName: "recording",
29129
+ capScope: "system",
29130
+ addonId: null,
29131
+ access: "view"
29132
+ },
28786
29133
  "recording.locateSegment": {
28787
29134
  capName: "recording",
28788
29135
  capScope: "system",
@@ -28813,6 +29160,42 @@ var METHOD_ACCESS_MAP = Object.freeze({
28813
29160
  addonId: null,
28814
29161
  access: "create"
28815
29162
  },
29163
+ "recordingExport.cancelExport": {
29164
+ capName: "recordingExport",
29165
+ capScope: "system",
29166
+ addonId: null,
29167
+ access: "create"
29168
+ },
29169
+ "recordingExport.createExport": {
29170
+ capName: "recordingExport",
29171
+ capScope: "system",
29172
+ addonId: null,
29173
+ access: "create"
29174
+ },
29175
+ "recordingExport.deleteExport": {
29176
+ capName: "recordingExport",
29177
+ capScope: "system",
29178
+ addonId: null,
29179
+ access: "delete"
29180
+ },
29181
+ "recordingExport.getDownloadUrl": {
29182
+ capName: "recordingExport",
29183
+ capScope: "system",
29184
+ addonId: null,
29185
+ access: "view"
29186
+ },
29187
+ "recordingExport.getExport": {
29188
+ capName: "recordingExport",
29189
+ capScope: "system",
29190
+ addonId: null,
29191
+ access: "view"
29192
+ },
29193
+ "recordingExport.listExports": {
29194
+ capName: "recordingExport",
29195
+ capScope: "system",
29196
+ addonId: null,
29197
+ access: "view"
29198
+ },
28816
29199
  "sceneMonitor.captureReference": {
28817
29200
  capName: "scene-monitor",
28818
29201
  capScope: "device",
@@ -30024,6 +30407,7 @@ var KNOWN_CAP_NAMES = [
30024
30407
  "ptz-autotrack",
30025
30408
  "reboot",
30026
30409
  "recording",
30410
+ "recordingExport",
30027
30411
  "scene-monitor",
30028
30412
  "script-runner",
30029
30413
  "server-management",
@@ -30160,6 +30544,7 @@ var SYSTEM_CAP_NAMES = [
30160
30544
  "plate-gallery",
30161
30545
  "platform-probe",
30162
30546
  "recording",
30547
+ "recordingExport",
30163
30548
  "server-management",
30164
30549
  "settings-store",
30165
30550
  "smtp-provider",
@@ -30743,4 +31128,4 @@ function scoreRuntimes(hw) {
30743
31128
  };
30744
31129
  }
30745
31130
  //#endregion
30746
- export { ACCESSORY_LABEL, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationControlStatusSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BATTERY_DEVICE_PROFILE, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusSchema, CameraStreamSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_FEATURES, DEFAULT_RETENTION, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATUS_METHOD, DEVICE_TYPE_INFO, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceLinkModeSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventSourceType, ExportSetupFieldSchema, ExportSetupSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionEvalError, ExpressionParseError, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LabelDefinitionSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, MODEL_FORMATS, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionSchema, NotificationFormatSchema, NotificationHistoryEntrySchema, NotificationRuleSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OauthIntegrationDescriptorSchema, ObjectEventSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RESERVED_BINDING_NAMES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingModeSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingRuleSchema, RecordingScheduleSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RenderedAsSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SceneCheckSchema, SceneConditionSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TIMEZONES, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestResultSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackProjectionSchema, TrackSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, advancedNotifierCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, applyTransform, asBoolean, asJsonArray, asJsonObject, asNumber, asString, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioMetricsCapability, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildModelVariantGroups, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, compileExpression, compileExpressionSafe, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dayNightCapability, decoderCapability, defaultDeviceFor, defineCustomActions, describeModelVariant, detectionPipelineCapability, deviceAdoptionCapability, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateLinkExpression, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, frameworkSwapConfirmSchema, frameworkSwapPackageSchema, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isArrayOutputSchema, isCollectionArrayMethod, isDeployableToAgent, isDeviceConfigCap, isEvent, isObjectInput, isVoidInput, jobKindSchema, kebabToCamel, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, migrateConfigToBands, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, pendingFrameworkSwapSchema, petFeederCapability, pickPreferredRtspEntry, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readNodePin, readinessKey, rebootCapability, recordingCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceProfile, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, runInferenceStep, runtimeDevices, sceneMonitorCapability, scopeKey, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, supportedRuntimes, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, textToHtml, toDeviceSummary, toExpressionValue, toStreamSourceEntry, toastCapability, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, valveCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
31131
+ export { ACCESSORY_LABEL, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationControlStatusSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BATTERY_DEVICE_PROFILE, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusSchema, CameraStreamSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_FEATURES, DEFAULT_RETENTION, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATUS_METHOD, DEVICE_TYPE_INFO, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceLinkModeSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventSourceType, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionEvalError, ExpressionParseError, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LabelDefinitionSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, MODEL_FORMATS, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionSchema, NotificationFormatSchema, NotificationHistoryEntrySchema, NotificationRuleSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RESERVED_BINDING_NAMES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingModeSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingRuleSchema, RecordingScheduleSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RenderedAsSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SceneCheckSchema, SceneConditionSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TIMEZONES, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestResultSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackProjectionSchema, TrackSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, advancedNotifierCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, applyTransform, asBoolean, asJsonArray, asJsonObject, asNumber, asString, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioMetricsCapability, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildModelVariantGroups, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, compileExpression, compileExpressionSafe, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dayNightCapability, decoderCapability, defaultDeviceFor, defineCustomActions, describeModelVariant, detectionPipelineCapability, deviceAdoptionCapability, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateLinkExpression, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, frameworkSwapConfirmSchema, frameworkSwapPackageSchema, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isArrayOutputSchema, isCollectionArrayMethod, isDeployableToAgent, isDeviceConfigCap, isEvent, isObjectInput, isVoidInput, jobKindSchema, kebabToCamel, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, migrateConfigToBands, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, pendingFrameworkSwapSchema, petFeederCapability, pickPreferredRtspEntry, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readNodePin, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceProfile, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, runInferenceStep, runtimeDevices, sceneMonitorCapability, scopeKey, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, supportedRuntimes, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, textToHtml, toDeviceSummary, toExpressionValue, toStreamSourceEntry, toastCapability, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, valveCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };