@camstack/addon-pipeline-orchestrator 1.2.113 → 1.2.115

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
@@ -8316,6 +8316,111 @@ function composeSwitchedOff(input) {
8316
8316
  };
8317
8317
  }
8318
8318
  /**
8319
+ * Per-component log CHANNELS — the gate a hot path consults, and the registry
8320
+ * an addon declares its channels in.
8321
+ *
8322
+ * ## Two axes, deliberately separated
8323
+ *
8324
+ * - **DECLARATION** — which channels exist. Only the addon knows:
8325
+ * `stream-broker` knows webrtc/ICE/RTP, `provider-reolink` knows
8326
+ * baichuan/handshake. A hand-wired central list rots at the first addition,
8327
+ * and rots silently. So a channel is declared where it is consulted, and the
8328
+ * `log-channels` capability enumerates the declarations.
8329
+ * - **VALUE** — at which level, for which scope, until when. That stays ONE
8330
+ * thing: the logging settings document on the `system` cap. Two authorities
8331
+ * over the values is the exact defect
8332
+ * `docs/design/plans/2026-08-26-logging-per-componente.md` was written to
8333
+ * remove; re-introducing it from the cure side would be grotesque.
8334
+ *
8335
+ * Nothing in this file reads a clock, an env var or a store. The registry is
8336
+ * a MIRROR: it is moved only by {@link LogChannelRegistry.apply}, called off
8337
+ * the hot path with a value somebody actually read, and by
8338
+ * {@link LogChannelRegistry.tick}, called on a timer. A store read that fails
8339
+ * never reaches here, so it can neither disarm an armed channel nor arm a
8340
+ * disarmed one (D49).
8341
+ *
8342
+ * ## The canonical call shape
8343
+ *
8344
+ * ```ts
8345
+ * if (CH_RTP.on && CH_RTP.wants(deviceId)) {
8346
+ * CH_RTP.log(logger, 'rtp subscriber added', { tags: { deviceId }, meta: { ssrc } })
8347
+ * }
8348
+ * ```
8349
+ *
8350
+ * `on` is a plain boolean FIELD — never a getter — and it is the FIRST thing
8351
+ * read. Disarmed, a call site costs one load and one branch, and the `extras`
8352
+ * object literal is never constructed because it lives inside the branch. It
8353
+ * is the same shape already proven in production at `stream-broker.ts:1650`,
8354
+ * and the same discipline `LoggingGate.allowsDestination` uses for the
8355
+ * destination floor (measured at 1.93 ns/call when off).
8356
+ *
8357
+ * ## Why a channel emits at `info`
8358
+ *
8359
+ * `loki-logging.addon.ts` pins the destination default at `info` and
8360
+ * `loki-destination.ts` drops everything below it, so a line emitted at
8361
+ * `debug` never reaches Loki and the hub's in-memory ring only holds ~35
8362
+ * minutes. A diagnostic that cannot be read an hour later is worse than no
8363
+ * diagnostic, because it looks done. {@link LogChannelGate.log} therefore
8364
+ * emits at the channel's declared level, whose schema floor is `info`.
8365
+ */
8366
+ /**
8367
+ * The level a channel writes at once armed.
8368
+ *
8369
+ * `debug` is absent ON PURPOSE and not by omission: below `info` the line does
8370
+ * not leave the process for Loki, and the whole point of arming a channel is
8371
+ * to read it later.
8372
+ */
8373
+ var LogChannelLevelSchema = _enum([
8374
+ "info",
8375
+ "warn",
8376
+ "error"
8377
+ ]);
8378
+ /**
8379
+ * What an addon declares about one channel. No value, no state — a
8380
+ * declaration is inert.
8381
+ */
8382
+ var LogChannelDescriptorSchema = object({
8383
+ /**
8384
+ * Dotted `area.thing`, unique across the workspace. `area` is conventionally
8385
+ * the addon's short name so an operator reading a channel list can tell who
8386
+ * owns it without a second lookup.
8387
+ */
8388
+ name: string().min(3).regex(/^[a-z0-9-]+(\.[a-z0-9-]+)+$/, "a channel name is dotted lower-kebab, e.g. area.thing"),
8389
+ /** One sentence: what the operator will SEE after arming it. */
8390
+ description: string().min(1),
8391
+ /** The level its lines are emitted at. Never below `info`. */
8392
+ defaultLevel: LogChannelLevelSchema,
8393
+ /**
8394
+ * Whether this channel can be narrowed to a camera.
8395
+ *
8396
+ * `true` is a PROMISE with two halves, and both must hold: the gate is
8397
+ * consulted with the numeric device id, AND every line the channel admits
8398
+ * carries `tags: { deviceId }` with that same numeric id. The second half is
8399
+ * what makes `| json | deviceId="617"` work in Loki — `loki-payload.ts`
8400
+ * keeps `deviceId` out of the stream labels for cardinality, so the tag in
8401
+ * the body is the only way to filter.
8402
+ *
8403
+ * A channel whose lines carry the device only in `meta` (or not at all) is
8404
+ * declared `false`. Declaring it `true` anyway would be a lie the UI repeats:
8405
+ * the operator narrows to one camera, sees nothing, and concludes the code
8406
+ * path was never taken.
8407
+ */
8408
+ perDevice: boolean()
8409
+ });
8410
+ /**
8411
+ * An armed window over one channel, as the document hands it to a mirror.
8412
+ *
8413
+ * A window is a DEADLINE, never a flag (ADR-0244): a channel somebody forgot
8414
+ * expires by itself, which is the one failure a boolean cannot avoid.
8415
+ */
8416
+ var LogChannelWindowSchema = object({
8417
+ channel: string().min(1),
8418
+ /** Epoch ms the window closes at. */
8419
+ armedUntilMs: number(),
8420
+ /** `null` = every camera. A non-empty list narrows to those numeric ids. */
8421
+ deviceIds: array(number().int()).readonly().nullable()
8422
+ });
8423
+ /**
8319
8424
  * Ops-log — the durable, append-only operations audit shared by the
8320
8425
  * recordings and events management surfaces.
8321
8426
  *
@@ -11913,6 +12018,35 @@ var MutationFilterSchema = object({
11913
12018
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
11914
12019
  whereNot: record(string(), unknown()).optional()
11915
12020
  });
12021
+ /**
12022
+ * One scalar an {@link settingsStoreCapability.methods.aggregate} call asks for.
12023
+ *
12024
+ * `as` names the slot in the result, so the SAME column may be asked twice with
12025
+ * two operations (`MIN(startMs)` and `MAX(startMs)` in one round trip) — which
12026
+ * a `Record<column, op>` shape could not express.
12027
+ */
12028
+ var AggregateFieldSchema = object({
12029
+ /** Result key. */
12030
+ as: string().min(1),
12031
+ /** Column to aggregate. Must be a real column of a declared collection. */
12032
+ field: string().min(1),
12033
+ op: _enum([
12034
+ "sum",
12035
+ "min",
12036
+ "max"
12037
+ ])
12038
+ });
12039
+ /**
12040
+ * `COUNT(*)` plus one number per requested field.
12041
+ *
12042
+ * `null` means NO ROW MATCHED, never zero: a `SUM` over an empty set and a sum
12043
+ * that really is 0 are different facts, and an accounting caller that renders
12044
+ * "0 bytes, oldest = 0" for "nothing here" reports a lie about a disk.
12045
+ */
12046
+ var AggregateResultSchema = object({
12047
+ count: number().int(),
12048
+ values: record(string(), number().nullable())
12049
+ });
11916
12050
  /** A single stored record: `{ id, data }`. */
11917
12051
  var SettingsRecordSchema = object({
11918
12052
  id: string(),
@@ -11997,6 +12131,11 @@ method(object({
11997
12131
  collection: string(),
11998
12132
  filter: QueryFilterSchema.optional()
11999
12133
  }), number()), method(object({
12134
+ namespace: string().optional(),
12135
+ collection: string(),
12136
+ fields: array(AggregateFieldSchema).readonly(),
12137
+ filter: QueryFilterSchema.optional()
12138
+ }), AggregateResultSchema), method(object({
12000
12139
  namespace: string().optional(),
12001
12140
  collection: string(),
12002
12141
  field: string(),
@@ -12113,6 +12252,11 @@ method(_void(), EngineInfoSchema, { auth: "admin" }), method(object({
12113
12252
  collection: string(),
12114
12253
  filter: QueryFilterSchema.optional()
12115
12254
  }), number(), { auth: "admin" }), method(object({
12255
+ namespace: string().optional(),
12256
+ collection: string(),
12257
+ fields: array(AggregateFieldSchema).readonly(),
12258
+ filter: QueryFilterSchema.optional()
12259
+ }), AggregateResultSchema, { auth: "admin" }), method(object({
12116
12260
  namespace: string().optional(),
12117
12261
  collection: string(),
12118
12262
  field: string(),
@@ -12674,24 +12818,6 @@ method(_void(), _void(), { kind: "mutation" }), method(_void(), _void(), { kind:
12674
12818
  kind: "mutation",
12675
12819
  auth: "admin"
12676
12820
  });
12677
- /**
12678
- * Device Manager capability — hub-side singleton that unifies device persistence,
12679
- * live registry access, and all management operations into a single tRPC surface.
12680
- *
12681
- * Replaces:
12682
- * - `device-persistence` capability (persistence methods absorbed here)
12683
- * - `device-management.router.ts` (deleted in Phase 2)
12684
- * - `device-ops.router.ts` (compat layer — deleted; device-provider ops absorbed here)
12685
- *
12686
- * All device provider addons (rtsp, onvif, frigate, …) are hub-local: they may
12687
- * fork into separate processes but never run on remote cluster agents. Therefore:
12688
- * - No nodeId routing needed — this is a pure hub singleton.
12689
- * - The hub's DeviceRegistry is the single source of truth for all live devices.
12690
- * - No shadow registry or cross-node aggregation required.
12691
- *
12692
- * Forked workers register devices back to the hub via `ctx.devices`
12693
- * (DeviceManagerApi → ctx.api.deviceManager.registerDevice), same as today.
12694
- */
12695
12821
  /** One child-placement directive on a container's `childLayout`. Structurally
12696
12822
  * identical to `ChildLayoutEntry` in `device-management.ts` — the cap wire
12697
12823
  * shape for the same field. The child is identified by its re-sync-stable
@@ -13060,7 +13186,7 @@ method(object({
13060
13186
  * it answers today and the caller filters as it already does.
13061
13187
  */
13062
13188
  deviceIds: array(number()).optional()
13063
- }), array(DeviceInfoSchema)), method(object({ deviceId: number() }), DeviceInfoSchema.nullable()), method(object({ parentDeviceId: number() }), array(DeviceInfoSchema)), method(object({ deviceId: number() }), object({
13189
+ }), array(DeviceInfoSchema)), method(object({ deviceId: number() }), DeviceInfoSchema.nullable()), method(object({ parentDeviceId: number() }), array(DeviceInfoSchema)), method(object({ parentDeviceIds: array(number()).max(256) }), record(string(), array(DeviceInfoSchema))), method(object({ deviceId: number() }), object({
13064
13190
  mode: LinkedDevicesModeSchema,
13065
13191
  devices: array(LinkedDeviceSchema)
13066
13192
  })), method(object({ deviceIds: array(number()) }), array(LinkedDevicesForDeviceSchema)), method(object({ deviceId: number() }), array(StreamSourceEntrySchema$1)), method(object({ deviceId: number() }), array(ConfigEntrySchema)), method(object({ deviceId: number() }), ConfigUISchemaOutput), method(object({
@@ -13784,6 +13910,59 @@ method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }
13784
13910
  kind: "mutation",
13785
13911
  auth: "admin"
13786
13912
  });
13913
+ /**
13914
+ * `log-channels` — the capability an addon DECLARES its diagnostic channels
13915
+ * through. It stores nothing.
13916
+ *
13917
+ * ## Why a capability at all, and why this shape
13918
+ *
13919
+ * Which channels exist is knowledge only the addon has: `stream-broker` knows
13920
+ * webrtc/ICE/RTP, `provider-reolink` knows baichuan/handshake. A central list
13921
+ * maintained by hand rots at the first addition and rots INVISIBLY — nothing
13922
+ * fails, an operator just never sees the channel somebody added. So the list
13923
+ * is assembled from declarations at runtime.
13924
+ *
13925
+ * The shape is copied from `log-destination.cap.ts`, which already does
13926
+ * exactly this job: `mode: 'collection'`, `internal: true`,
13927
+ * `mount: { kind: 'skip' }` — no tRPC route, no generated hooks — while
13928
+ * `addons.listCapabilityProviders` still enumerates it, and the hub's
13929
+ * `CapabilityRegistry` still holds an RPC proxy per provider so a forked
13930
+ * runner's declarations reach hub-main over the transport that already exists.
13931
+ * No new UDS message, no second registry.
13932
+ *
13933
+ * ## What it deliberately does NOT own
13934
+ *
13935
+ * The VALUES — which channel is armed, for which cameras, until when — live in
13936
+ * ONE place: the logging settings document on the `system` cap
13937
+ * (`getLoggingSettings` / `setLoggingSettings`). Two authorities over the same
13938
+ * value is the defect the plan behind this work exists to remove, and
13939
+ * `setRequestCensus` was retired (D245) rather than allowed to be a second
13940
+ * one. {@link logChannelsCapability} therefore has no getter for a level, no
13941
+ * setter for a window and no persistence of any kind.
13942
+ *
13943
+ * ## Why `apply` is here even so
13944
+ *
13945
+ * The gate lives in the addon's PROCESS; the document lives in hub-main. Some
13946
+ * seam has to carry the value from the authority to the mirror, and a channel
13947
+ * that cannot be reached is precisely the dead knob this whole slice exists to
13948
+ * make impossible (D62 — `audioThresholdDbfs`, the HA entities with no source).
13949
+ * `apply` is that seam and nothing more: it writes an in-memory mirror, it
13950
+ * persists nothing, it is never the source of a value, and it is called only
13951
+ * with a set the hub actually read (D49 — a read that fails does not call it
13952
+ * at all, so no channel is silently disarmed by a bad read).
13953
+ */
13954
+ /** What `apply` reports back — enough to log, not enough to be a second state. */
13955
+ var LogChannelApplyResultSchema = object({
13956
+ /** How many declared channels are armed in this process after the call. */
13957
+ armed: number().int().min(0),
13958
+ /**
13959
+ * Names the document armed that this process does not declare. Reported
13960
+ * rather than swallowed: a name here is either a typo or an addon that has
13961
+ * not booted, and both deserve a line instead of silence.
13962
+ */
13963
+ unknown: array(string()).readonly()
13964
+ });
13965
+ method(_void(), array(LogChannelDescriptorSchema).readonly()), method(object({ windows: array(LogChannelWindowSchema).readonly() }), LogChannelApplyResultSchema, { kind: "mutation" });
13787
13966
  var LogLevelSchema = _enum([
13788
13967
  "debug",
13789
13968
  "info",
@@ -27906,10 +28085,11 @@ var DiagnosticIdSchema = _enum(["request-census"]);
27906
28085
  * The layers of the level hierarchy, general → specific. The most specific
27907
28086
  * layer that carries an explicit value wins.
27908
28087
  *
27909
- * `component` is DECLARED and not yet resolvable: the per-component channels
27910
- * are a later slice of the same plan, and a `levelSource` enum that has to
27911
- * grow later would force every consumer of this document to change with it.
27912
- * Nothing returns `component` today.
28088
+ * `component` became RESOLVABLE on 2026-08-27: a component is a declared log
28089
+ * CHANNEL (`stream-broker.webrtc`, `provider-reolink.baichuan`), named by
28090
+ * `scopeComponent`. It was declared-but-dark in the first slice precisely so
28091
+ * that turning it on would not force every consumer of this document to widen
28092
+ * a `levelSource` enum — which is what has now not happened.
27913
28093
  */
27914
28094
  var LoggingScopeKindSchema = _enum([
27915
28095
  "cluster",
@@ -27936,6 +28116,14 @@ var LoggingLevelLayerSchema = object({
27936
28116
  scope: LoggingScopeKindSchema,
27937
28117
  /** The node this layer speaks for; `null` on the cluster layer. */
27938
28118
  nodeId: string().nullable(),
28119
+ /**
28120
+ * The declared channel this layer speaks for; `null` on every layer but
28121
+ * `component`. Never folded into `nodeId`: a component level is CLUSTER-WIDE
28122
+ * by design — the convention this repo settled on is one orchestrator-wide
28123
+ * setting, never per node (D52) — so a component layer that carried a node
28124
+ * would invite a per-node copy of a value that has no per-node meaning.
28125
+ */
28126
+ component: string().nullable(),
27939
28127
  /** Explicitly set here, or `null` when this layer inherits. */
27940
28128
  level: LogLevelSchema$1.nullable()
27941
28129
  });
@@ -27977,6 +28165,49 @@ var DiagnosticWindowPatchSchema = object({
27977
28165
  reportEveryMs: number().int().positive().optional()
27978
28166
  });
27979
28167
  /**
28168
+ * A channel ARMED, as the document reports it.
28169
+ *
28170
+ * `armMs` is not echoed back: what an operator needs to see is the deadline
28171
+ * and the time left, because a diagnostic left running is itself an incident
28172
+ * and "armed for 10 minutes" said an hour ago is not an answer.
28173
+ */
28174
+ var LogChannelWindowStateSchema = object({
28175
+ channel: string(),
28176
+ armed: boolean(),
28177
+ /** Epoch ms the window closes at. 0 when disarmed. */
28178
+ armedUntilMs: number(),
28179
+ /** Ms left before it expires on its own. 0 when disarmed. */
28180
+ remainingMs: number(),
28181
+ /**
28182
+ * The cameras it is narrowed to, or `null` for every camera.
28183
+ *
28184
+ * A channel declared `perDevice: false` can only ever report `null` here:
28185
+ * its lines do not carry `tags: { deviceId }`, so narrowing them would
28186
+ * produce a filter that silently matches nothing. The server REFUSES such a
28187
+ * patch rather than quietly widening it — ignoring the request would teach
28188
+ * the operator that per-camera filtering works on that channel when it does
28189
+ * not.
28190
+ */
28191
+ deviceIds: array(number().int()).readonly().nullable()
28192
+ });
28193
+ /**
28194
+ * `armMs: 0` DISARMS. Same grammar as {@link DiagnosticWindowPatchSchema}, and
28195
+ * for the same reason: a channel is a window with a deadline, never a switch.
28196
+ */
28197
+ var LogChannelWindowPatchSchema = object({
28198
+ channel: string().min(1),
28199
+ armMs: number().int().min(0),
28200
+ /**
28201
+ * Narrow to these numeric device ids. Absent or `null` = every camera.
28202
+ *
28203
+ * Numeric because the repo's own rule makes it possible: every log line
28204
+ * about a device carries `tags: { deviceId }` with the numeric id. That rule
28205
+ * was paid for with a 22% thumbnail gap and a 3-hour media blackout both
28206
+ * diagnosed by hand, and this is the first thing that collects on it.
28207
+ */
28208
+ deviceIds: array(number().int()).readonly().nullable().optional()
28209
+ });
28210
+ /**
27980
28211
  * A PATCH, and patches MERGE.
27981
28212
  *
27982
28213
  * A field absent from the patch is left exactly as it was — arming a
@@ -27995,7 +28226,14 @@ var LoggingSettingsPatchSchema = object({
27995
28226
  * Only the diagnostics NAMED here change. An armed window that is not listed
27996
28227
  * keeps running — a patch is never a full replacement.
27997
28228
  */
27998
- diagnostics: array(DiagnosticWindowPatchSchema).readonly().optional()
28229
+ diagnostics: array(DiagnosticWindowPatchSchema).readonly().optional(),
28230
+ /**
28231
+ * Only the channels NAMED here change. An armed channel that is not listed
28232
+ * keeps running — same rule as `diagnostics`, because a patch that silently
28233
+ * disarmed the channels it did not mention would make the Levels page and
28234
+ * the Diagnostics page fight over the same value.
28235
+ */
28236
+ channels: array(LogChannelWindowPatchSchema).readonly().optional()
27999
28237
  });
28000
28238
  /**
28001
28239
  * Which LAYER of the hierarchy is addressed. Absent = the cluster layer.
@@ -28008,9 +28246,22 @@ var LoggingSettingsPatchSchema = object({
28008
28246
  * authority over the whole hierarchy and answers for every layer, so the
28009
28247
  * layer selector needs a name the transport does not already own.
28010
28248
  */
28011
- var GetLoggingSettingsInputSchema = object({ scopeNodeId: string().optional() });
28249
+ var GetLoggingSettingsInputSchema = object({
28250
+ scopeNodeId: string().optional(),
28251
+ /**
28252
+ * The declared CHANNEL this document is addressed at, when the caller wants
28253
+ * the `component` layer. Absent = the node/cluster hierarchy only.
28254
+ *
28255
+ * Naming it separately rather than overloading `scopeNodeId` keeps the two
28256
+ * axes from collapsing: a component level is cluster-wide, a node level is
28257
+ * not, and one selector for both would make "which of these two did I just
28258
+ * set" unanswerable — the exact ambiguity `explicit` exists to remove.
28259
+ */
28260
+ scopeComponent: string().optional()
28261
+ });
28012
28262
  var SetLoggingSettingsInputSchema = object({
28013
28263
  scopeNodeId: string().optional(),
28264
+ scopeComponent: string().optional(),
28014
28265
  patch: LoggingSettingsPatchSchema
28015
28266
  });
28016
28267
  /**
@@ -28025,9 +28276,20 @@ var SetLoggingSettingsInputSchema = object({
28025
28276
  var LoggingSettingsStateSchema = object({
28026
28277
  /** The layer this document was read at. `null` = the cluster layer. */
28027
28278
  scopeNodeId: string().nullable(),
28279
+ /** The channel this document was read at. `null` = no component layer. */
28280
+ scopeComponent: string().nullable(),
28028
28281
  effective: LoggingEffectiveSchema,
28029
28282
  explicit: LoggingExplicitSchema,
28030
28283
  activeWindows: array(DiagnosticWindowSchema).readonly(),
28284
+ /**
28285
+ * Every channel the cluster's addons DECLARE, gathered from the
28286
+ * `log-channels` providers. Not stored anywhere: assembled per read, so a
28287
+ * channel added by a redeployed addon appears without anybody editing a
28288
+ * list, and a channel whose addon is gone stops being offered.
28289
+ */
28290
+ channels: array(LogChannelDescriptorSchema).readonly(),
28291
+ /** The channels ARMED right now, each with its deadline. */
28292
+ activeChannels: array(LogChannelWindowStateSchema).readonly(),
28031
28293
  persisted: boolean()
28032
28294
  });
28033
28295
  method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), method(_void(), FeatureManifestSchema), method(_void(), array(NetworkAddressSchema).readonly()), method(_void(), unknown().nullable(), { auth: "admin" }), method(record(string(), unknown()), _null(), {
@@ -29688,6 +29950,12 @@ Object.freeze({
29688
29950
  addonId: null,
29689
29951
  access: "view"
29690
29952
  },
29953
+ "dataStoreProvider.aggregate": {
29954
+ capName: "data-store-provider",
29955
+ capScope: "system",
29956
+ addonId: null,
29957
+ access: "view"
29958
+ },
29691
29959
  "dataStoreProvider.count": {
29692
29960
  capName: "data-store-provider",
29693
29961
  capScope: "system",
@@ -30102,6 +30370,12 @@ Object.freeze({
30102
30370
  addonId: null,
30103
30371
  access: "view"
30104
30372
  },
30373
+ "deviceManager.getChildrenBatch": {
30374
+ capName: "device-manager",
30375
+ capScope: "system",
30376
+ addonId: null,
30377
+ access: "view"
30378
+ },
30105
30379
  "deviceManager.getConfigSchema": {
30106
30380
  capName: "device-manager",
30107
30381
  capScope: "system",
@@ -31152,6 +31426,18 @@ Object.freeze({
31152
31426
  addonId: null,
31153
31427
  access: "create"
31154
31428
  },
31429
+ "logChannels.apply": {
31430
+ capName: "log-channels",
31431
+ capScope: "system",
31432
+ addonId: null,
31433
+ access: "create"
31434
+ },
31435
+ "logChannels.list": {
31436
+ capName: "log-channels",
31437
+ capScope: "system",
31438
+ addonId: null,
31439
+ access: "view"
31440
+ },
31155
31441
  "logDestination.query": {
31156
31442
  capName: "log-destination",
31157
31443
  capScope: "system",
@@ -33306,6 +33592,12 @@ Object.freeze({
33306
33592
  addonId: null,
33307
33593
  access: "create"
33308
33594
  },
33595
+ "settingsStore.aggregate": {
33596
+ capName: "settings-store",
33597
+ capScope: "system",
33598
+ addonId: null,
33599
+ access: "view"
33600
+ },
33309
33601
  "settingsStore.count": {
33310
33602
  capName: "settings-store",
33311
33603
  capScope: "system",
@@ -34885,6 +35177,11 @@ Object.freeze({
34885
35177
  form: "single",
34886
35178
  optional: false
34887
35179
  }],
35180
+ "deviceManager.getChildrenBatch": [{
35181
+ name: "parentDeviceIds",
35182
+ form: "array",
35183
+ optional: false
35184
+ }],
34888
35185
  "deviceManager.getConfigSchema": [{
34889
35186
  name: "deviceId",
34890
35187
  form: "single",
@@ -30,7 +30,7 @@ async function d(e) {
30
30
  }
31
31
  }
32
32
  async function f() {
33
- return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-BE5BWke5.mjs")).catch((e) => {
33
+ return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-CRe5-Occ.mjs")).catch((e) => {
34
34
  throw l = void 0, e;
35
35
  }), l;
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-pipeline-orchestrator",
3
- "version": "1.2.113",
3
+ "version": "1.2.115",
4
4
  "description": "Hub-side camera-to-agent load balancer — tracks runner capacity and dispatches attachCamera calls to the optimal pipeline-runner instance",
5
5
  "keywords": [
6
6
  "camstack",
@@ -1,26 +0,0 @@
1
- //#region \0virtual:mf:__mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js
2
- var e = "__mf_init__virtual:mf:__mfe_internal__addon_pipeline_orchestrator_widgets__mf_v__runtimeInit__mf_v__.js__", t = globalThis[e];
3
- if (!t) {
4
- let n, r, i = new Promise((e, t) => {
5
- n = e, r = t;
6
- });
7
- t = globalThis[e] = {
8
- initPromise: i,
9
- initResolve: n,
10
- initReject: r
11
- };
12
- }
13
- var n = t.initPromise, r = "__mf_module_cache__";
14
- globalThis[r] ||= {
15
- share: {},
16
- remote: {}
17
- }, globalThis[r].share ||= {}, globalThis[r].remote ||= {};
18
- var i = globalThis[r], a, o, s, c = (e) => {
19
- e.ACCESSORY_LABEL, e.ACCESS_ROLES, e.ALEXA_EGRESS_PROFILE, e.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_ANALYSIS_CAP_NAME, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AUDIO_PRESETS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionCandidateResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionJobSchema, e.AdoptionJobStateSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, e.AdoptionOutcomeSchema, e.AdoptionReleaseInputSchema, e.AdoptionStatusSchema, e.AgentLoadSummarySchema, e.AirQualitySensorStatusSchema, e.AlarmArmModeSchema, e.AlarmPanelStatusSchema, e.AlarmStateSchema, e.AlertSchema, e.AlertSeveritySchema, e.AlertSourceSchema, e.AlertStatusSchema, e.AmbientLightSensorStatusSchema, e.AnalyticsGroupDetailSchema, e.AnalyticsGroupMemberSchema, e.AnalyticsGroupRecordSchema, e.ApiKeyRecordSchema, e.ApiKeySummarySchema, e.ArchiveEntrySchema, e.ArchiveManifestSchema, e.AttachmentMediaTypeSchema, e.AttachmentSchema, e.AudioAnalysisResultSchema, e.AudioAnalysisSettingsSchema, e.AudioChunkInputSchema, e.AudioClassSummarySchema, e.AudioClassificationLabelSchema, e.AudioClassificationResultSchema, e.AudioCodecInfoSchema, e.AudioDecodeSessionConfigSchema, e.AudioEncodeSchema, e.AudioEncodeSessionConfigSchema, e.AudioEncodedChunkSchema, e.AudioEventSchema, e.AudioLevelSchema, e.AudioMetricsHistoryPointSchema, e.AudioMetricsHistorySchema, e.AudioMetricsSnapshotSchema, e.AudioPcmChunkSchema, e.AuthResultSchema, e.AutoUpdateSettingsSchema, e.AutomationActionSchema, e.AutomationConditionOperatorSchema, e.AutomationConditionSchema, e.AutomationControlStatusSchema, e.AutomationRecipeSchema, e.AutomationTriggerSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BASE_LIVE_EGRESS_PROFILE, e.BATTERY_DEVICE_PROFILE, e.BATTERY_UNREACHABLE_AFTER_MS, e.BOOT_RECOVERY_BACKOFF_MS, e.BacklightModeSchema, e.BackupDestinationInfoSchema, e.BackupEntrySchema, e.BaseAddon, e.BaseDevice, e.BaseDeviceProvider, e.BatteryStatusSchema, e.BinaryStatusSchema, e.BoundingBoxSchema, e.BrightnessStatusSchema, e.BrokerAddInputSchema, e.BrokerAudioClientSchema, e.BrokerClientsSchema, e.BrokerConnectionDetailsSchema, e.BrokerConsumerAttributionSchema, e.BrokerConsumerKindSchema, e.BrokerDecodedClientSchema, e.BrokerEncodedClientSchema, e.BrokerGetStateInputSchema, e.BrokerInfoSchema, e.BrokerProviderInfoSchema, e.BrokerPublishInputSchema, e.BrokerRegistryStatusSchema, e.BrokerRtspClientSchema, e.BrokerStatsSchema, e.BrokerStatusEnum, e.BrokerStatusSchema, e.BrokerSubscribeInputSchema, e.BrokerSubscribeResultSchema, e.BrokerTestConnectionResultSchema, e.BrokerUnsubscribeInputSchema, e.CAMERA_SWITCH_CATALOG, e.CAMERA_SWITCH_ORDER, e.CAM_PROFILE_ORDER, e.CAPABILITY_NAMES, e.CAPABILITY_ROUTER_KEYS, e.CAP_NAMES_WITH_STATUS, e.CAP_NODE_PIN_CONTEXT_KEY, e.CAP_PROVIDER_KIND_MAP, e.CLASS_MAP_MACRO_TARGETS, e.CLUSTER_MODEL_SCOPED_STEPS, e.CLUSTER_MODEL_SECTION_ID, e.CLUSTER_STEP_SETTING_FIELDS, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.CONNECTION_TEST_TIMEOUT_MS, e.CORE_BLOCKS_ADDON_ID, e.CORE_BLOCK_ADDON_PREFIX, e.CamProfileSchema, e.CamStreamDescriptorSchema, e.CamStreamKindSchema, e.CamStreamResolutionSchema, e.CameraAssignmentStatusSchema, e.CameraAudioStatusSchema, e.CameraBrokerProfileSchema, e.CameraBrokerStatusSchema, e.CameraCredentialsSchema, e.CameraCredentialsStatusSchema, e.CameraDecoderShmSchema, e.CameraDecoderStatusSchema, e.CameraDetectionPhaseSchema, e.CameraDetectionProvisioningSchema, e.CameraDetectionProvisioningStateSchema, e.CameraDetectionStatusSchema, e.CameraMetricsSchema, e.CameraMetricsWithDeviceIdSchema, e.CameraMotionStatusSchema, e.CameraRecordingModeSchema, e.CameraRecordingStatusSchema, e.CameraSourceStatusSchema, e.CameraSourceStreamSchema, e.CameraStatusDegradationReasonSchema, e.CameraStatusDegradationSchema, e.CameraStatusSchema, e.CameraStatusStageSchema, e.CameraStreamSchema, e.CameraSwitchAuthoritySchema, e.CameraSwitchGroupSchema, e.CameraSwitchIdSchema, e.CameraSwitchSchema, e.CameraSwitchUnavailableReasonSchema, e.CandidateQueryFilterSchema, e.CapScopeSchema, e.CapabilityBindingsSchema, e.CarbonMonoxideStatusSchema, e.ChargingStatus, e.ClientNetworkStatsSchema, e.ClimateControlStatusSchema, e.ClipPlaybackSchema, e.ClipSchema, e.ClusterAddonNodeDeploymentSchema, e.ClusterAddonStatusEntrySchema, e.CollectionColumnSchema, e.CollectionIndexSchema, e.ColorStatusSchema, e.ConfigEntrySchema, e.ConfigSectionWithValuesSchema, e.ConfigTabDeclarationSchema, e.ConnectionTestDescriptorSchema, e.ConnectionTestInputSchema, e.ConnectionTestOutcomeSchema, e.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, e.ConvertArtifactSchema, e.ConvertResultSchema, e.ConvertTargetSchema, e.CoreBlockCompileResultSchema, e.CoreBlockInputSchema, e.CoreBlockPlacementSchema, e.CoreBlockSchema, e.CoreBlockStatusSchema, e.CoverStateSchema, e.CoverStatusSchema, e.CreateApiKeyInputSchema, e.CreateApiKeyResultSchema, e.CreateIntegrationInputSchema, e.CreateScopedTokenInputSchema, e.CreateScopedTokenResultSchema, e.CreateUserInputSchema, e.CustomActionInputSchema, e.CustomModelDescriptorSchema, e.DATAPLANE_SECRET_HEADER, e.DECLARED_DEVICE_SWEEP_LIMIT, e.DECLARED_INTEGRATION_FIXED_KEY, e.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_CLUSTER_STEP_MODELS, e.DEFAULT_CLUSTER_STEP_SETTINGS, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_DETAIL_CROP_CONVENTION, e.DEFAULT_EVENTS_BAND_BUFFER_SEC, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_FIRST_SIGHTING_FRESHNESS_MS, e.DEFAULT_MIN_LANDMARK_FACE_SIZE_PX, e.DEFAULT_NATIVE_LEASE_SETTINGS, e.DEFAULT_POOL_MEMORY_POLICY, e.DEFAULT_RECORDING_PROFILES, e.DEFAULT_RETENTION, e.DEFAULT_RUNTIME_STATE_DURABILITY, e.DEFAULT_TIMELAPSE_PREVIEW_TEXT, e.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, e.DEVICE_TYPE_CONTROL_KIND, e.DEVICE_TYPE_INFO, e.DataStoreEngineInfoSchema, e.DayNightModeSchema, e.DayNightOptionsSchema, e.DayNightSettingsPatchSchema, e.DayNightStatusSchema, e.DeclaredDevices, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetailCropConventionSchema, e.DetectionCatalogClassMapSchema, e.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, e.DeviceFeature, e.DeviceInfoSchema, e.DeviceNetworkStatsSchema, e.DeviceRole, e.DeviceRuntimeState, e.DeviceSelectorSchema, e.DeviceStatusSchema, e.DeviceType, e.DiagnosticIdSchema, e.DiagnosticWindowPatchSchema, e.DiagnosticWindowSchema, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DiskReconcileJobSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, e.EVENT_TAXONOMY, e.EXPORT_DENSE_MAX_RANGES, e.EXPRESSION_BUILTINS, e.EXPRESSION_BUILTIN_NAMES, e.EXPRESSION_COMPILE_CACHE_CAPACITY, e.EXPRESSION_IDENTIFIER_RE, e.EXPRESSION_INJECTED_NOW, e.EgressEncodeSchema, e.EgressRateControlSchema, e.EgressTranscodeRequestSchema, e.EgressTranscodeSchema, e.ElementConfigStore, e.EmbeddingInfoSchema, e.EmbeddingResultSchema, e.EncodeProfileSchema, e.EncodedPacketSchema, e.EnrichedWidgetMetadataSchema, e.EnumSensorDateTimeFormatSchema, e.EnumSensorStatusSchema, e.EventCategory, e.EventEmitterStatusSchema, e.EventFireSchema, e.EventItemSchema, e.EventKindCategorySchema, e.EventKindDescriptorSchema, e.EventKindIconSchema, e.EventKindSchema, e.EventKindsForDeviceSchema, e.EventMediaArtifactSchema, e.EventMediaCoverageSchema, e.EventMediaKindSchema, e.EventMediaProductionSchema, e.EventSourceType, e.ExportBytesSchema, e.ExportDenseRangeSchema, e.ExportDenseSchema, e.ExportDownloadSchema, e.ExportOptionsSchema, e.ExportRecordSchema, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExportSpeedSchema, e.ExportStateSchema, e.ExportTimelapseSchema, e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionBindingSourceSchema, e.ExpressionEvalError, e.ExpressionFieldBindingSchema, e.ExpressionGlobalBindingSchema, e.ExpressionLiteralBindingSchema, e.ExpressionParseError, e.ExpressionSourceSchema, e.FIRST_LEVEL_MACRO_CLASSES, e.FULL_IMAGE_BBOX, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.Fmp4BoxSplitter, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.FrameLazyCountersSchema, e.FrameLazyMetricsSchema, e.GasStatusSchema, e.GetLoggingSettingsInputSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HAP_AUDIO_BASE, e.HAP_AUDIO_BITRATE_KBPS, e.HAP_AUDIO_VBV_KBITS, e.HAP_KEYFRAME_INTERVAL_SEC, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HfModelResolutionSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.INFERENCE_DEVICE_EXCLUSION_REASONS, e.ImageContractSchema, e.ImageContractStateSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.InferenceDeviceExclusionReasonSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LOG_LEVEL_RANK, e.LabelAttributionSchema, e.LabelDefinitionSchema, e.LabelTierSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LinkedDeviceSchema, e.LinkedDevicesModeSchema, e.ListGroupsPageSchema, e.ListGroupsQueryInput, e.LlmDefaultSchema, e.LlmDefaultSelectorSchema, e.LlmDownloadProgressSchema, e.LlmErrorCodeSchema, e.LlmGenerateBaseInputSchema, e.LlmGenerateErrSchema, e.LlmGenerateOkSchema, e.LlmGenerateResultSchema, e.LlmImageSchema, e.LlmNodeModelSchema, e.LlmProfileKindDescriptorSchema, e.LlmProfileKindSchema, e.LlmProfileSchema, e.LlmRetryPolicySchema, e.LlmRuntimeCompleteInputSchema, e.LlmRuntimeDiskUsageSchema, e.LlmRuntimeNodeSchema, e.LlmRuntimeStatusSchema, e.LlmTimeoutDefaults, e.LlmUsageRollupSchema, e.LlmUsageSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoggingEffectiveSchema, e.LoggingExplicitSchema, e.LoggingLevelLayerSchema, e.LoggingLevelSourceSchema, e.LoggingScopeKindSchema, e.LoggingSettingsPatchSchema, e.LoggingSettingsStateSchema, e.LoginMethodContributionSchema, e.LoginStageEnum, a = e.MACRO_LABELS, e.MAX_CLIP_EVENT_IDS, e.MAX_CLIP_LABELS, e.MAX_CONDITION_DEPTH, e.MAX_CONDITION_LEAVES, e.MAX_EXPRESSION_AST_NODES, e.MAX_EXPRESSION_BINDINGS, e.MAX_EXPRESSION_CALL_ARGS, e.MAX_EXPRESSION_EVAL_STEPS, e.MAX_EXPRESSION_SOURCE_LENGTH, e.MAX_SENSOR_TRIGGER_DEVICES, e.METHOD_ACCESS_MAP, e.METHOD_DEVICE_SELECTORS, e.MODEL_FORMATS, e.MODEL_PROVIDER_IDS, e.MOTION_TRIGGER_FEATURE, e.ManagedModelCatalogEntrySchema, e.ManagedModelExtraFileSchema, e.ManagedModelRefSchema, e.ManagedRuntimeConfigSchema, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileInfoSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, e.ModelProviderIdSchema, e.ModelSubstitutionSchema, e.ModelVariantGroupSchema, e.MotionAnalysisResultSchema, e.MotionEventSchema, e.MotionOnMotionChangedDataSchema, e.MotionRegionSchema, e.MotionSourceEnum, e.MotionSourcesSchema, e.MotionStatusSchema, e.MotionTriggerRuntimeStateSchema, e.MotionTriggerStatusSchema, e.MotionZoneOptionsSchema, e.MotionZonePatchSchema, e.MotionZoneRegionSchema, e.MotionZoneStatusSchema, e.MqttBrokerStatusSchema, e.MutationFilterSchema, e.NATIVE_LEASE_ACTIVITY_FIELD, e.NATIVE_LEASE_ACTIVITY_KEY, e.NATIVE_LEASE_ADMISSION_FIELD, e.NATIVE_LEASE_ADMISSION_KEY, e.NATIVE_LEASE_BUDGET_FIELD, e.NATIVE_LEASE_BUDGET_KEY, e.NATIVE_LEASE_HOLD_FIELD, e.NATIVE_LEASE_HOLD_KEY, e.NATIVE_LEASE_SCENE_BUDGET_FIELD, e.NATIVE_LEASE_SCENE_BUDGET_KEY, e.NATIVE_LEASE_SECTION_ID, e.NATIVE_LEASE_TILE_BUDGET_FIELD, e.NATIVE_LEASE_TILE_BUDGET_KEY, e.NC_ALARM_SYSTEM_EVENT_KINDS, e.NC_AUDIO_CONFIRM_HITS_DEFAULT, e.NC_AUDIO_CONFIRM_HITS_MAX, e.NC_AUDIO_CONFIRM_HITS_MIN, e.NC_AUDIO_CONFIRM_WINDOW_MAX_SEC, e.NC_AUDIO_CONFIRM_WINDOW_MIN_SEC, e.NC_AUDIO_CONFIRM_WINDOW_SEC_DEFAULT, e.NC_AUDIO_DBFS_FLOOR, e.NC_AUDIO_DB_MAX, e.NC_AUDIO_DB_MIN, e.NC_AUDIO_DB_OFFERED, e.NC_AUDIO_DB_STEP, e.NC_AUDIO_DEFAULTS, e.NC_AUDIO_HIT_PERCENT_MAX, e.NC_AUDIO_HIT_PERCENT_MIN, e.NC_AUDIO_SAMPLING_MAX_SEC, e.NC_AUDIO_SAMPLING_MIN_SEC, e.NC_AUDIO_SEED, e.NC_AUTHORABLE_SYSTEM_EVENT_KINDS, e.NC_BASE_CONDITION_KEYS, e.NC_CONDITION_CATALOG, e.NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.NC_CONFIRM_DEFAULT_TIMEOUT_MS, e.NC_CONFIRM_MAX_TIMEOUT_MS, e.NC_CONFIRM_MIN_TIMEOUT_MS, e.NC_DEFAULT_SNOOZE_MINUTES, e.NC_HISTORY_LIMIT_DEFAULT, e.NC_HISTORY_LIMIT_MAX, e.NC_MAX_PER_TRACK_IMMEDIATE, e.NC_OCCUPANCY_DEFAULTS, e.NC_RULE_EDITOR_SECTION_ORDER, e.NC_RULE_KIND_SPECS, e.NC_RULE_SECTIONS, e.NC_SNOOZE_MAX_MINUTES, e.NC_SYSTEM_DELIVERY, e.NC_SYSTEM_EVENT_FILTER_KEYS, e.NC_TAXONOMY, e.NativeCropBboxSchema, e.NativeCropRefSchema, e.NativeCropResultSchema, e.NativeDetectionSchema, e.NativeLeaseAdmissionSchema, e.NativeLeaseSettingsSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NcAlarmConfigSchema, e.NcAlarmModeCoverageSchema, e.NcAlarmSettingsPatchSchema, e.NcAlarmSettingsSchema, e.NcAlarmSkipReasonSchema, e.NcAlarmSkippedDeviceSchema, e.NcAudioConditionSchema, e.NcConditionDescriptorSchema, e.NcConditionsSchema, e.NcConfirmExpectSchema, e.NcConfirmSchema, e.NcCrossingSchema, e.NcDeliverySchema, e.NcDeviceStateConditionSchema, e.NcHistoryEntrySchema, e.NcHistoryFilterSchema, e.NcHistoryRecordKindSchema, e.NcHistoryStatusSchema, e.NcHistorySubjectSchema, e.NcMediaFrameSchema, e.NcMediaPolicySchema, e.NcOccupancyConditionSchema, e.NcPlateMatcherSchema, e.NcRuleActionSchema, e.NcRuleActionSequenceSchema, e.NcRuleActionsSchema, e.NcRuleInputSchema, e.NcRuleNotificationButtonSchema, e.NcRulePatchSchema, e.NcRuleSchema, e.NcRuleTargetSchema, e.NcSceneConditionSchema, e.NcScheduleSchema, e.NcScheduleWindowSchema, e.NcSnoozeInputSchema, e.NcSnoozeSchema, e.NcSnoozeScopeSchema, e.NcSnoozeSuppressedSchema, e.NcSystemEventConditionSchema, e.NcSystemEventKindSchema, e.NcTaxonomyEntrySchema, e.NcTaxonomySchema, e.NcTestResultSchema, e.NcThrottleGranularitySchema, e.NcThrottleSchema, e.NcZoneConditionSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionIconSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OPERATOR_WRITTEN_STALE_MS, e.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, e.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OpsLogDomainSchema, e.OpsLogEntrySchema, e.OpsLogOpSchema, e.OpsLogQueryInputSchema, e.OpsLogReasonSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdRenderOutcomeEnum, e.OsdRenderResultSchema, e.OsdSlotBindingSchema, e.OsdSlotViewSchema, e.OsdSourceOptionSchema, e.OsdSourceSchema, e.OsdSourceValueTypeEnum, e.OsdStatusSchema, e.PET_FEEDER_MANUAL_FEED_MAX, e.PET_FEEDER_MANUAL_FEED_MIN, e.PIPELINE_FLOW_CAPABILITY_NAMES, e.PIPELINE_OWNER_CAPABILITY_NAMES, e.PRIVACY_MASK_CAP_NAME, e.PROVIDER_KIND_CAP_NAMES, e.PYTHON_SCRIPT, e.PackageUpdateSchema, e.PackageVersionInfoSchema, e.PasskeyLoginMethodSchema, e.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PetFeederStatusSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, e.PipelineValidationIssueSchema, e.PipelineValidationResultSchema, e.PlaceholderReasonSchema, e.PolygonPointSchema, e.PoolMemoryWatchdog, e.PowerMeterStatusSchema, e.PresenceStatusSchema, e.PressureSensorStatusSchema, e.PrivacyMaskOptionsSchema, e.PrivacyMaskPatchSchema, e.PrivacyMaskRegionSchema, e.PrivacyMaskShapeSchema, e.PrivacyMaskStatusSchema, e.ProfileRtspEntrySchema, e.ProfileSlotSchema, e.ProfileSlotStatusSchema, e.ProviderStatusSchema, e.PtzAutotrackRuntimeStateSchema, e.PtzAutotrackSettingsSchema, e.PtzAutotrackStatusSchema, e.PtzAutotrackTargetOptionSchema, e.PtzMoveCommandSchema, e.PtzOptionsSchema, e.PtzPositionSchema, e.PtzPresetSchema, e.PtzStatusSchema, e.QueryFilterSchema, e.RATE_CONTROL_RELAXED, e.RATE_CONTROL_TIGHT, e.REACHABILITY_FAILURES_TO_OFFLINE, e.REACHABILITY_POLL_INTERVAL_MS, e.REACHABILITY_PROBE_TIMEOUT_MS, e.RECOGNITION_TYPES, e.RECORDING_EXPORT_MAX_READ_BYTES, e.RESERVED_BINDING_NAMES, e.RESTORED_CAP_NAMES, e.RUNTIME_DEFAULTS, e.RUNTIME_STATE_POLICY, e.RUNTIME_STATE_REFRESH_MISS_COOLDOWN_MS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadGopBytesResultSchema, e.ReadSegmentBytesResultSchema, e.ReadWindowBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, e.RecentTracksPageSchema, e.RecentTracksQueryInput, e.RecordingAvailabilitySchema, e.RecordingBandModeSchema, e.RecordingBandSchema, e.RecordingBandTriggersSchema, e.RecordingConfigSchema, e.RecordingDaysSchema, e.RecordingDeviceUsageSchema, e.RecordingLocationUsageSchema, e.RecordingManifestSchema, e.RecordingObjectTriggerClassSchema, e.RecordingRangeSchema, e.RecordingRebalanceInputSchema, e.RecordingRebalanceMoveSchema, e.RecordingRebalancePlanSchema, e.RecordingRebalanceSkipReasonSchema, e.RecordingRebalanceSkipSchema, e.RecordingRetentionSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, e.RelocateFootageClassSchema, e.RelocateFootageInputSchema, e.RelocateJobSchema, e.RelocateJobStateSchema, e.RelocateMediaInputSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.RequestCensusGroupSchema, e.RequestCensusProcedureSchema, e.RequestCensusSnapshotSchema, e.RequestCensusStatusSchema, e.RetrainAnnotationDraftSchema, e.RetrainAnnotationKindSchema, e.RetrainAnnotationSchema, e.RetrainAnnotationSourceSchema, e.RetrainAssistResultSchema, e.RetrainAssistSubjectSchema, e.RetrainCopyRefusalSchema, e.RetrainFrameCandidateSchema, e.RetrainFrameListSchema, e.RetrainFrameSchema, e.RetrainFrameSelectionSchema, e.RetrainMacroClassSchema, e.RetrainStatusSchema, e.RetrainTrackSchema, e.RetrainTransitionResultSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerInferenceDeviceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCENE_CONDITIONS, e.SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, e.SCENE_DEFAULT_ANCHOR_THRESHOLD, e.SCENE_DEFAULT_CHECK_INTERVAL_SEC, e.SCENE_DEFAULT_OBSERVATION_SPACING_SEC, e.SCENE_DEFAULT_QUIET_SECONDS, e.SCENE_DEFAULT_UNCOVERED_POLICY, e.SCENE_DIVERGED, e.SCENE_RESET_RECAPTURES, e.SCOPE_PRESETS, e.SENSOR_FEATURES, e.SENSOR_MAP, e.SOURCE_CAPS, e.SOURCE_CAP_ACTIVE_FIELD, e.SOURCE_CAP_CHANGED_AT_FIELD, e.SOURCE_DEVICE_TYPES, e.SOURCE_INFO_METADATA_KEY, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.SYSTEM_SCOPE_DEVICE_METHODS, e.SceneCheckSchema, e.SceneConditionSchema, e.SceneConfirmSchema, e.SceneMonitorSchema, e.SceneMonitorStateSchema, e.SceneMonitorStatusSchema, e.SceneReferenceSchema, e.SceneUnavailableSchema, e.SceneUncoveredPolicySchema, e.SceneVerdictSchema, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SetLoggingSettingsInputSchema, e.SetSiteLocationInputSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SiteLocationSchema, e.SiteLocationSourceSchema, e.SiteLocationStatusSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StationaryObjectSchema, e.StorageAbortUploadInputSchema, e.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.TransportPlaneCountsSchema, e.TransportPlaneSchema, e.TurnServerSchema, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VISIT_MERGE_GAP_MS, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VectorDeclareIndexInputSchema, e.VectorDeleteByFilterInputSchema, e.VectorDeleteInputSchema, e.VectorDeleteResultSchema, e.VectorFilterSchema, e.VectorGetInputSchema, e.VectorGetResultSchema, e.VectorItemSchema, e.VectorMatchSchema, e.VectorMetadataSchema, e.VectorMetricSchema, e.VectorQueryInputSchema, e.VectorQueryResultSchema, e.VectorStatsInputSchema, e.VectorStatsResultSchema, e.VectorUpsertInputSchema, e.VectorUpsertResultSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, e.WEBRTC_EGRESS_PROFILE, e.WELL_KNOWN_TABS, e.WELL_KNOWN_TAB_MAP, e.WaterHeaterStatusSchema, e.WeatherStatusSchema, e.WebrtcStreamChoiceSchema, e.WebrtcStreamTargetSchema, e.WhiteBalanceModeSchema, e.WidgetHostEnum, e.WidgetLoginMethodSchema, e.WidgetMetadataSchema, e.WidgetRemoteSchema, e.WidgetSizeEnum, e.YAMNET_TO_MACRO, e.ZoneCrossingDirectionSchema, e.ZoneCrossingSchema, e.ZoneKindEnum, e.ZoneRuleModeEnum, e.ZoneRuleSchema, o = e.ZoneRuleStageEnum, e.ZoneRulesArraySchema, e.ZoneSchema, e.ZoneScopeBreakdownSchema, e.accessoriesCapability, e.accessoryStableId, e.addonPagesCapability, e.addonPagesSourceCapability, e.addonRoutesCapability, e.addonSettingsCapability, e.addonWidgetsCapability, e.addonWidgetsSourceCapability, e.addonsCapability, e.adminUiCapability, e.airQualitySensorCapability, e.alarmPanelCapability, e.alertsCapability, e.ambientLightSensorCapability, e.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.assertTimelapseCadences, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioIsFailClosed, e.audioKindId, e.audioLabelChoices, e.audioMetricsCapability, e.audioModeOf, e.audioOrDefaults, e.audioPlanFromEncodeProfile, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.bareAddonId, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildAudioArgs, e.buildEventKindDescriptor, e.buildFfmpegArgs, e.buildInputArgs, e.buildModelVariantGroups, e.buildNcTaxonomy, e.buildRoleScopes, e.buildStreamParamsConfigSchema, e.buildVideoArgs, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, e.canConvertUnit, e.canonicalEgressPlan, e.carbonMonoxideCapability, e.cellsToRects, e.classifyBearerPrincipal, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.clusterModelSettingKey, e.clusterStepSettingFieldsFor, e.clusterStepSettingKey, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.colorCapability, e.colorForKind, e.commitWatchdogRestart, e.compileExpression, e.compileExpressionSafe, e.composeSwitchedOff, e.conditionDepth, e.conditionExclusionReason, e.conditionVisibleForKind, e.connectionTestCapability, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.coreBlockAddonId, e.coreBlockIdFromAddonId, e.coreBlocksCapability, e.cosineSimilarity, e.countConditionLeaves, e.coverCapability, e.createDeviceProxy, e.createDurableState, e.createEvent, e.createEventBusSliceSource, e.createExpressionScope, e.createHwAccelCache, e.createLazyTrpcSource, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.customModelRegistryCapability, e.dataStoreProviderCapability, e.dayNightCapability, e.declarationOwnerNodeId, e.decodeVectorBase64, e.decoderCapability, e.defaultDeliveryForSection, e.defaultDeviceFor, e.defineCustomActions, e.deriveBatteryPresence, e.deriveCameraSwitches, e.deriveDetailCropRect, e.deriveRecordingMode, e.describeModelVariant, e.detectAccessRole, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceBackendToFormat, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceSelectorMatches, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.droppedConditionsForKind, e.egressTranscodeSharingKey, e.egressTransportFromRequest, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.encodeVectorBase64, e.enumSensorCapability, e.enumerateInferenceDevices, e.enumerateItemArrayFields, e.enumerateSchemaFields, e.errMsg, e.evaluateAst, e.evaluateExpressionSource, e.evaluatePoolMemory, e.evaluateSensorEdge, e.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractNestedAddonId, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.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.inferModelProvider, e.initialPoolMemoryState, e.integrationsCapability, e.intercomCapability, e.invocationFromEncodeProfile, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isAudioLabelSelected, e.isAudioRule, e.isBaseConditionKey, e.isBatteryPresenceFault, e.isClusterScopedStep, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDetectionMacroClass, e.isDeviceConfigCap, e.isDeviceScopedCap, e.isEvent, e.isFirstLevelMacroClass, e.isIsolatedBuiltin, e.isNode, e.isObjectInput, e.isOccupancyRule, e.isRestoredCap, e.isSameAddonId, e.isScheduleActive, e.isSoftwareDecode, e.isSourceCap, e.isSystemDelivery, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.knownValues, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.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.overlayClusterStepSettings, e.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProcStatus, e.parseProfileBrokerId, e.parseRuleSection, e.parseStreamParamsFormPatch, e.patchAudio, e.petFeederCapability, e.pickAccessoryControl, e.pickClusterStepModels, e.pickClusterStepSettings, e.pickDetailCropConvention, e.pickNativeLeaseOverride, e.pickPreferredRtspEntry, e.pickRestartCandidate, e.pickVideoEncoder, e.pickerForCondition, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.poolMemoryThreshold, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.principalMayReachAddon, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readClusterStepModels, e.readClusterStepSettings, e.readDetailCropConvention, e.readDeviceStateFrom, e.readNativeLeaseOverride, e.readNodePin, e.readTimelapseGeneratedAt, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.requiresPython, e.resetPoolBaseline, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveCapMount, e.resolveClusterStepModelId, e.resolveDetectionRuntime, e.resolveDeviceControlKind, e.resolveDeviceProfile, e.resolveEgressDecodeHwAccel, e.resolveFormat, s = e.resolveHydratedFieldValue, e.resolveMethodAuth, e.resolveModelFormat, e.resolveMutate, e.resolvePoolMemoryPolicy, e.resolveRecordingProfiles, e.resolveRunnerId, e.resolveVariantModelId, e.resolveViewableDeviceIds, e.roleSpec, e.ruleEditorSectionsForKind, e.ruleKindOf, e.ruleKindSpec, e.ruleMatchesSection, e.ruleSection, e.ruleSectionOf, e.ruleSeedForSection, e.runInferenceStep, e.runtimeDevices, e.runtimeStatePolicyFor, e.sceneMonitorCapability, e.scopeInherits, e.scopeKey, e.scopesAllowAddon, e.scopesAllowDeviceCap, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.serverManagementCapability, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.sliceActiveValue, e.sliceChangedAt, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, e.stateVocabularyFor, e.storageCapability, e.storageEvictableCapability, e.storageMigrationCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.subKindsOf, e.summarisePrivacyAudio, e.summarizeEffectiveScope, e.supportedRuntimes, e.switchCapability, e.switchedOffIds, e.synthesizeSourceInfo, e.systemCapability, e.systemEventFilterApplies, e.systemEventFilterAppliesToAnyKind, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.terminalSessionCapability, e.textToHtml, e.toDeviceSummary, e.toExpressionValue, e.toNodeId, e.toStreamSourceEntry, e.toastCapability, e.toggleAudioLabel, e.tokenize, e.transcodeBody, e.tryConvertUnit, e.turnProviderCapability, e.unitDimension, e.unitsForDimension, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.validateExpressionSource, e.validateRecipeBounds, e.valveCapability, e.vectorDimFromBase64, e.vectorStoreCapability, e.vibrationCapability, e.videoclipsCapability, e.viewerUiCapability, e.waterHeaterCapability, e.weatherCapability, e.webrtcClientHintsSchema, e.webrtcSessionCapability, e.wiringAddonHealthSchema, e.wiringHealthSnapshotSchema, e.wiringNodeHealthSchema, e.wiringProbeKindSchema, e.wiringProbeResultSchema, e.zodEntriesToConfigUI, e.zoneAnalyticsCapability, e.zoneRulesCapability, e.zonesCapability, e.default;
20
- }, l = i.share["default:@camstack/types"];
21
- l === void 0 ? n.then(() => {
22
- if (l = i.share["default:@camstack/types"], l === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
23
- c(l);
24
- }) : c(l);
25
- //#endregion
26
- export { a as n, o as r, s as t };