@camstack/addon-pipeline-orchestrator 1.2.19 → 1.2.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (16) hide show
  1. package/assets/viewer/.viewer-version +1 -1
  2. package/assets/viewer/_expo/static/js/web/{Clipboard-bcaf1ab91b93fca55d9a5b7a5a43d491.js → Clipboard-f30792cd6631161f7b69784f7a861c6e.js} +8 -8
  3. package/assets/viewer/_expo/static/js/web/{Haptics-8bb2df81026b74be7167f490de57c48c.js → Haptics-ff8df38049eeafbac3020383c188bf0e.js} +3 -3
  4. package/assets/viewer/_expo/static/js/web/{index-828e970048ddd656c522e4d3464f529b.js → index-0e0e3d0f67eb12ed33316a2b1b89fe45.js} +62 -60
  5. package/assets/viewer/index.html +2 -2
  6. package/assets/viewer/manifest.json +1 -1
  7. package/dist/_stub.js +203 -203
  8. package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-BFHkpm_S.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-BaL54Kt2.mjs} +2 -2
  9. package/dist/_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Bsi65Q9q.mjs +26 -0
  10. package/dist/{_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-BtNndoLO.mjs → _virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-sgTNGmJ3.mjs} +2 -2
  11. package/dist/{hostInit-C7gaLg0N.mjs → hostInit-CXzbY50s.mjs} +2 -2
  12. package/dist/index.js +244 -11
  13. package/dist/index.mjs +244 -11
  14. package/dist/remoteEntry.js +1 -1
  15. package/package.json +1 -1
  16. package/dist/_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BkBC1i4O.mjs +0 -26
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import fs from "node:fs";
2
2
  import path from "node:path";
3
3
  import { fileURLToPath } from "node:url";
4
- //#region ../types/dist/event-category-Bz24uP1U.mjs
4
+ //#region ../types/dist/event-category-41fKf-q9.mjs
5
5
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
6
6
  EventCategory["SystemBoot"] = "system.boot";
7
7
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -61,6 +61,26 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
61
61
  */
62
62
  EventCategory["AddonRetryScheduled"] = "addon.retry-scheduled";
63
63
  /**
64
+ * A liveness invariant of this node is false — it has no devices, every
65
+ * camera is offline, or a camera that was recording has stopped producing
66
+ * segments. Emitted by the `liveness-monitor` builtin, once per fault (the
67
+ * `findingId` is stable across ticks), only after its boot grace period.
68
+ * AlertCenter raises a persistent operator-visible alert.
69
+ *
70
+ * It exists because on 2026-08-03 the hub ran four hours with zero devices
71
+ * and zero recordings while every surface stayed quiet.
72
+ *
73
+ * Payload: `{ findingId, severity, title, message, deviceId? }`.
74
+ */
75
+ EventCategory["SystemLivenessFailed"] = "system.liveness-failed";
76
+ /**
77
+ * A previously reported liveness fault is true again. AlertCenter dismisses
78
+ * the matching `SystemLivenessFailed` alert.
79
+ *
80
+ * Payload: `{ findingId }`.
81
+ */
82
+ EventCategory["SystemLivenessRecovered"] = "system.liveness-recovered";
83
+ /**
64
84
  * Monitor is attempting to reload a failed addon NOW. UI uses this
65
85
  * to show a spinner during the retry attempt. Same transient nature
66
86
  * as AddonRetryScheduled.
@@ -9684,11 +9704,13 @@ var NcZoneConditionSchema = object({
9684
9704
  /** Quantifier over `ids` — at least one / every one visited. */
9685
9705
  match: _enum(["any", "all"]).default("any")
9686
9706
  });
9687
- /**
9688
- * The P1 condition set — a flat AND of groups; absent group = pass;
9689
- * membership lists are OR within the list (spec §2.3).
9690
- */
9691
9707
  var NcConditionsSchema = object({
9708
+ /** Gate on ANOTHER device's current state (the alarm armed, a switch on). */
9709
+ deviceState: object({
9710
+ deviceId: number().int(),
9711
+ /** Any of these matches. */
9712
+ states: array(string().min(1)).min(1)
9713
+ }).optional(),
9692
9714
  /** Device scope — absent = all devices. */
9693
9715
  devices: array(number()).optional(),
9694
9716
  /** Detector class names (any overlap with the record's class set). */
@@ -9889,6 +9911,14 @@ var NcMediaPolicySchema = object({
9889
9911
  clipPreRollSec: number().int().min(0).max(30).optional(),
9890
9912
  clipPostRollSec: number().int().min(0).max(30).optional(),
9891
9913
  /**
9914
+ * Playback rate of the attached gif / clip. Absent = 2x.
9915
+ *
9916
+ * A notification clip is GLANCED at on a lock screen, not watched: at real
9917
+ * time an eight-second passage is eight seconds of the recipient's attention
9918
+ * and twice the bytes. 1 is real time for the operator who wants it.
9919
+ */
9920
+ clipSpeed: number().min(1).max(8).optional(),
9921
+ /**
9892
9922
  * Which stream profile the footage is cut from. Absent = the CHEAPEST
9893
9923
  * assigned profile: a notification is watched on a phone, so the 4K
9894
9924
  * rendition would burn CPU to produce a file the client downscales anyway.
@@ -9960,7 +9990,21 @@ var NcRuleInputSchema = object({
9960
9990
  * behaviour, visible to all, read-only in the viewer). Present = personal
9961
9991
  * rule owned by this userId. Server-stamped; never trusted from a client.
9962
9992
  */
9963
- ownerUserId: string().optional()
9993
+ ownerUserId: string().optional(),
9994
+ /**
9995
+ * May a non-admin snooze this rule for EVERYONE, not just themselves?
9996
+ *
9997
+ * A snooze is personal by default — it silences the person who set it. This
9998
+ * opts THIS rule into the "the gardener is here all afternoon" case, where
9999
+ * silencing the camera for the whole household is legitimate. It silences
10000
+ * other people, so it is off unless a rule deliberately allows it.
10001
+ *
10002
+ * `.optional()`, deliberately NOT `.default()`: a Zod default does not run on
10003
+ * the addon cap path (three production failures in one day), so absent is
10004
+ * read as `false` by {@link canSetGlobal} in the engine. Admins are not bound
10005
+ * by this flag — see the scope rules on that function.
10006
+ */
10007
+ snoozeAllowGlobal: boolean().optional()
9964
10008
  });
9965
10009
  /**
9966
10010
  * Partial patch for `updateRule` — any subset of the input fields, plus the
@@ -10031,7 +10075,8 @@ var NcConditionDescriptorSchema = object({
10031
10075
  "packagePhase",
10032
10076
  "crossingSelect",
10033
10077
  "polygonDraw",
10034
- "occupancy"
10078
+ "occupancy",
10079
+ "deviceState"
10035
10080
  ]),
10036
10081
  operator: _enum([
10037
10082
  "in",
@@ -10045,7 +10090,28 @@ var NcConditionDescriptorSchema = object({
10045
10090
  /** Which delivery kinds the condition applies to. */
10046
10091
  appliesTo: array(NcDeliverySchema),
10047
10092
  phase: string(),
10048
- description: string().optional()
10093
+ description: string().optional(),
10094
+ /**
10095
+ * The CHOICES for a single-choice widget (`sourceSelect`, `crossingSelect`,
10096
+ * `packagePhase`, …), served with the descriptor.
10097
+ *
10098
+ * Before this the descriptor said which widget to render and not what to put
10099
+ * in it, so every option list lived in three places: this file's enums, the
10100
+ * admin's `NC_*_OPTIONS` and the viewer's `NC_*_VALUES`. That triple mirror
10101
+ * is the drift that emptied the viewer's rule editor on 2026-08-04 — the app
10102
+ * mirrors the cap by hand, so it is only ever as current as its last build.
10103
+ *
10104
+ * With the options on the wire, a condition of an EXISTING `valueType` costs
10105
+ * zero client changes. Clients keep a local fallback for an older hub that
10106
+ * does not send them; absent here is "use your own list", not "no choices".
10107
+ */
10108
+ options: array(object({
10109
+ /** Written to the rule verbatim. `''` means the ABSENT state. */
10110
+ value: string(),
10111
+ label: string(),
10112
+ /** What THIS choice matches — shown one at a time, under the control. */
10113
+ hint: string().optional()
10114
+ })).readonly().optional()
10049
10115
  });
10050
10116
  /**
10051
10117
  * The delivery lifecycle status of a history row — a straight read of the
@@ -10130,6 +10196,74 @@ var NcHistoryFilterSchema = object({
10130
10196
  until: number().optional(),
10131
10197
  limit: number().int().min(1).max(500).default(100)
10132
10198
  });
10199
+ /**
10200
+ * What a snooze covers. Broader scopes win when several overlap, so one window
10201
+ * leaves ONE digest rather than a rule snooze and a whole-feed snooze both
10202
+ * summarising the same silence.
10203
+ */
10204
+ var NcSnoozeScopeSchema = _enum([
10205
+ "rule",
10206
+ "device",
10207
+ "all"
10208
+ ]);
10209
+ /**
10210
+ * Client-authored snooze. The server stamps `userId`, `startedAt` and
10211
+ * `expiresAt` — a DURATION is sent rather than an instant so a client with a
10212
+ * skewed clock cannot author a window that is already over, or never ends.
10213
+ */
10214
+ var NcSnoozeInputSchema = object({
10215
+ scope: NcSnoozeScopeSchema,
10216
+ /** Required when `scope: 'rule'` — a scoped snooze with no id matches
10217
+ * NOTHING rather than degrading to "everything". */
10218
+ ruleId: string().optional(),
10219
+ /** Required when `scope: 'device'`. */
10220
+ deviceId: number().int().optional(),
10221
+ durationMinutes: number().int().min(1).max(1440),
10222
+ /**
10223
+ * Silence this for EVERY recipient, not just the caller. Permission is
10224
+ * checked server-side (the rule's `snoozeAllowGlobal`, or admin for the
10225
+ * broader scopes). Absent = personal.
10226
+ */
10227
+ global: boolean().optional(),
10228
+ /**
10229
+ * Deliver a summary of what was suppressed when the window ends. Absent =
10230
+ * ON: someone silencing a nuisance camera wants it off, someone silencing a
10231
+ * SECURITY camera wants to know what they missed, and choosing "off" for
10232
+ * everybody is how a snooze becomes an outage. Resolved to a concrete
10233
+ * boolean by the server at create time — never left to a Zod default, which
10234
+ * does not run on the addon cap path.
10235
+ */
10236
+ summary: boolean().optional()
10237
+ });
10238
+ /** A persisted snooze window. */
10239
+ var NcSnoozeSchema = object({
10240
+ id: string(),
10241
+ /** Who set it. Also who it silences, unless `global`. */
10242
+ userId: string(),
10243
+ scope: NcSnoozeScopeSchema,
10244
+ ruleId: string().optional(),
10245
+ deviceId: number().int().optional(),
10246
+ startedAt: number(),
10247
+ /** Exclusive: at exactly this instant the snooze is over. Expiry is a
10248
+ * COMPARISON, not a job — no sweeper can leave the operator silenced. */
10249
+ expiresAt: number(),
10250
+ global: boolean(),
10251
+ summary: boolean(),
10252
+ /** When the end-of-window digest went out. Absent = not sent (yet, or the
10253
+ * window has not closed, or `summary` is false). */
10254
+ digestSentAt: number().optional()
10255
+ });
10256
+ object({
10257
+ snoozeId: string(),
10258
+ targetId: string(),
10259
+ ruleId: string(),
10260
+ ruleName: string(),
10261
+ deviceId: number().int(),
10262
+ /** How many notifications this snooze hid for that pair. */
10263
+ count: number().int(),
10264
+ firstAt: number(),
10265
+ lastAt: number()
10266
+ });
10133
10267
  method(object({}), object({ rules: array(NcRuleSchema) }), { auth: "admin" }), method(object({ ruleId: string() }), object({ rule: NcRuleSchema.nullable() }), { auth: "admin" }), method(object({ rule: NcRuleInputSchema }), object({ rule: NcRuleSchema }), {
10134
10268
  kind: "mutation",
10135
10269
  auth: "admin",
@@ -10159,7 +10293,13 @@ method(object({}), object({ rules: array(NcRuleSchema) }), { auth: "admin" }), m
10159
10293
  }), method(object({}), object({
10160
10294
  catalog: array(NcConditionDescriptorSchema),
10161
10295
  taxonomy: NcTaxonomySchema.optional()
10162
- })), method(object({ filter: NcHistoryFilterSchema.default({ limit: 100 }) }), object({ entries: array(NcHistoryEntrySchema) }), { auth: "admin" });
10296
+ })), method(object({ filter: NcHistoryFilterSchema.default({ limit: 100 }) }), object({ entries: array(NcHistoryEntrySchema) }), { auth: "admin" }), method(object({}), object({ snoozes: array(NcSnoozeSchema) }), { caller: "required" }), method(object({ snooze: NcSnoozeInputSchema }), object({ snooze: NcSnoozeSchema }), {
10297
+ kind: "mutation",
10298
+ caller: "required"
10299
+ }), method(object({ snoozeId: string() }), object({ success: literal(true) }), {
10300
+ kind: "mutation",
10301
+ caller: "required"
10302
+ });
10163
10303
  /**
10164
10304
  * TimelapseRule — the STANDALONE scheduled timelapse producer's rule model.
10165
10305
  *
@@ -10907,7 +11047,15 @@ method(object({
10907
11047
  format: _enum(["gif", "mp4"]).default("gif"),
10908
11048
  maxWidth: number().int().min(120).max(1920).default(480),
10909
11049
  /** GIF only — MP4 keeps the source cadence. */
10910
- fps: number().int().min(1).max(15).default(5)
11050
+ fps: number().int().min(1).max(15).default(5),
11051
+ /**
11052
+ * Playback rate. A notification clip is GLANCED at on a lock screen,
11053
+ * not watched, so 2x is the default: the recipient sees the whole
11054
+ * passage in half the time and the GIF is half the bytes. `1` is real
11055
+ * time. Applies to MP4 as well — the operator set a speed, not a GIF
11056
+ * speed.
11057
+ */
11058
+ speed: number().min(1).max(8).default(2)
10911
11059
  }), object({
10912
11060
  base64: string(),
10913
11061
  mime: string(),
@@ -16105,6 +16253,20 @@ var QueryFilterSchema = object({
16105
16253
  limit: number().optional(),
16106
16254
  offset: number().optional()
16107
16255
  });
16256
+ /**
16257
+ * The predicate half of a filter, for BULK MUTATIONS.
16258
+ *
16259
+ * Deliberately not `QueryFilterSchema`: `orderBy` / `limit` / `offset` have no
16260
+ * meaning for a statement that rewrites a set, and accepting them would invite
16261
+ * a caller to believe `limit` bounds the damage. Every field is optional here
16262
+ * only so the shape stays composable — the implementation REJECTS a filter
16263
+ * that compiles to no predicate, because that is the whole collection.
16264
+ */
16265
+ var MutationFilterSchema = object({
16266
+ where: record(string(), unknown()).optional(),
16267
+ whereIn: record(string(), array(unknown())).optional(),
16268
+ whereBetween: record(string(), tuple([unknown(), unknown()])).optional()
16269
+ });
16108
16270
  /** A single stored record: `{ id, data }`. */
16109
16271
  var SettingsRecordSchema = object({
16110
16272
  id: string(),
@@ -16130,7 +16292,18 @@ var CollectionColumnSchema = object({
16130
16292
  ]),
16131
16293
  primaryKey: boolean().optional(),
16132
16294
  notNull: boolean().optional(),
16133
- unique: boolean().optional()
16295
+ unique: boolean().optional(),
16296
+ /**
16297
+ * Column DEFAULT. Required for B2: the four `ensureTable` consumers declare
16298
+ * columns like `enabled INTEGER NOT NULL DEFAULT 1`, and without this the
16299
+ * collection surface simply cannot express their existing tables — which is
16300
+ * why they were still on the uncapped `table*` API.
16301
+ */
16302
+ defaultValue: union([
16303
+ string(),
16304
+ number(),
16305
+ boolean()
16306
+ ]).optional()
16134
16307
  });
16135
16308
  var CollectionIndexSchema = object({
16136
16309
  name: string(),
@@ -16164,6 +16337,15 @@ method(object({
16164
16337
  collection: string(),
16165
16338
  key: string()
16166
16339
  }), _void(), { kind: "mutation" }), method(object({
16340
+ namespace: string().optional(),
16341
+ collection: string(),
16342
+ filter: MutationFilterSchema
16343
+ }), object({ deleted: number().int() }), { kind: "mutation" }), method(object({
16344
+ namespace: string().optional(),
16345
+ collection: string(),
16346
+ filter: MutationFilterSchema,
16347
+ data: record(string(), unknown())
16348
+ }), object({ updated: number().int() }), { kind: "mutation" }), method(object({
16167
16349
  namespace: string().optional(),
16168
16350
  collection: string(),
16169
16351
  filter: QueryFilterSchema.optional()
@@ -16230,6 +16412,15 @@ method(_void(), EngineInfoSchema), method(object({
16230
16412
  collection: string(),
16231
16413
  key: string()
16232
16414
  }), _void(), { kind: "mutation" }), method(object({
16415
+ namespace: string().optional(),
16416
+ collection: string(),
16417
+ filter: MutationFilterSchema
16418
+ }), object({ deleted: number().int() }), { kind: "mutation" }), method(object({
16419
+ namespace: string().optional(),
16420
+ collection: string(),
16421
+ filter: MutationFilterSchema,
16422
+ data: record(string(), unknown())
16423
+ }), object({ updated: number().int() }), { kind: "mutation" }), method(object({
16233
16424
  namespace: string().optional(),
16234
16425
  collection: string(),
16235
16426
  filter: QueryFilterSchema.optional()
@@ -23760,6 +23951,12 @@ Object.freeze({
23760
23951
  addonId: null,
23761
23952
  access: "delete"
23762
23953
  },
23954
+ "dataStoreProvider.deleteWhere": {
23955
+ capName: "data-store-provider",
23956
+ capScope: "system",
23957
+ addonId: null,
23958
+ access: "delete"
23959
+ },
23763
23960
  "dataStoreProvider.get": {
23764
23961
  capName: "data-store-provider",
23765
23962
  capScope: "system",
@@ -23808,6 +24005,12 @@ Object.freeze({
23808
24005
  addonId: null,
23809
24006
  access: "create"
23810
24007
  },
24008
+ "dataStoreProvider.updateWhere": {
24009
+ capName: "data-store-provider",
24010
+ capScope: "system",
24011
+ addonId: null,
24012
+ access: "create"
24013
+ },
23811
24014
  "dayNight.getOptions": {
23812
24015
  capName: "day-night",
23813
24016
  capScope: "device",
@@ -25602,12 +25805,24 @@ Object.freeze({
25602
25805
  addonId: null,
25603
25806
  access: "create"
25604
25807
  },
25808
+ "notificationRules.cancelSnooze": {
25809
+ capName: "notification-rules",
25810
+ capScope: "system",
25811
+ addonId: null,
25812
+ access: "create"
25813
+ },
25605
25814
  "notificationRules.createRule": {
25606
25815
  capName: "notification-rules",
25607
25816
  capScope: "system",
25608
25817
  addonId: null,
25609
25818
  access: "create"
25610
25819
  },
25820
+ "notificationRules.createSnooze": {
25821
+ capName: "notification-rules",
25822
+ capScope: "system",
25823
+ addonId: null,
25824
+ access: "create"
25825
+ },
25611
25826
  "notificationRules.deleteRule": {
25612
25827
  capName: "notification-rules",
25613
25828
  capScope: "system",
@@ -25638,6 +25853,12 @@ Object.freeze({
25638
25853
  addonId: null,
25639
25854
  access: "view"
25640
25855
  },
25856
+ "notificationRules.listSnoozes": {
25857
+ capName: "notification-rules",
25858
+ capScope: "system",
25859
+ addonId: null,
25860
+ access: "view"
25861
+ },
25641
25862
  "notificationRules.setRuleEnabled": {
25642
25863
  capName: "notification-rules",
25643
25864
  capScope: "system",
@@ -26886,6 +27107,12 @@ Object.freeze({
26886
27107
  addonId: null,
26887
27108
  access: "delete"
26888
27109
  },
27110
+ "settingsStore.deleteWhere": {
27111
+ capName: "settings-store",
27112
+ capScope: "system",
27113
+ addonId: null,
27114
+ access: "delete"
27115
+ },
26889
27116
  "settingsStore.get": {
26890
27117
  capName: "settings-store",
26891
27118
  capScope: "system",
@@ -26928,6 +27155,12 @@ Object.freeze({
26928
27155
  addonId: null,
26929
27156
  access: "create"
26930
27157
  },
27158
+ "settingsStore.updateWhere": {
27159
+ capName: "settings-store",
27160
+ capScope: "system",
27161
+ addonId: null,
27162
+ access: "create"
27163
+ },
26931
27164
  "smtpProvider.getStatus": {
26932
27165
  capName: "smtp-provider",
26933
27166
  capScope: "system",
@@ -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-BFHkpm_S.mjs")).catch((e) => {
33
+ return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-BaL54Kt2.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.19",
3
+ "version": "1.2.21",
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.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, 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.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.AutomationControlStatusSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BATTERY_DEVICE_PROFILE, 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.CAM_PROFILE_ORDER, e.CAPABILITY_NAMES, e.CAPABILITY_ROUTER_KEYS, e.CAP_NAMES_WITH_STATUS, e.CAP_NODE_PIN_CONTEXT_KEY, e.CAP_PROVIDER_KIND_MAP, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.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.CameraStatusSchema, e.CameraStreamSchema, 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.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, e.ConvertArtifactSchema, e.ConvertResultSchema, e.ConvertTargetSchema, 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.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_RETENTION, e.DEFAULT_SCRUB_THUMBNAIL_PRESET, e.DEVICE_BACKEND_TO_FORMAT, e.DEVICE_CAP_NAMES, e.DEVICE_PROFILES, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATUS_METHOD, e.DEVICE_TYPE_CONTROL_KIND, e.DEVICE_TYPE_INFO, e.DataStoreEngineInfoSchema, e.DayNightModeSchema, e.DayNightOptionsSchema, e.DayNightSettingsPatchSchema, e.DayNightStatusSchema, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, e.DeviceFeature, e.DeviceInfoSchema, e.DeviceLinkModeSchema, e.DeviceNetworkStatsSchema, e.DeviceRole, e.DeviceRuntimeState, e.DeviceStatusSchema, e.DeviceType, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, e.EVENT_TAXONOMY, e.EXPRESSION_BUILTINS, e.EXPRESSION_BUILTIN_NAMES, e.EXPRESSION_COMPILE_CACHE_CAPACITY, e.EXPRESSION_IDENTIFIER_RE, e.EXPRESSION_INJECTED_NOW, 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.EventSourceType, e.ExportDownloadSchema, e.ExportOptionsSchema, e.ExportRecordSchema, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExportSpeedSchema, e.ExportStateSchema, e.ExportTimelapseSchema, e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionEvalError, e.ExpressionParseError, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.GasStatusSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.ImageContractSchema, e.ImageContractStateSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LOG_LEVEL_RANK, e.LabelDefinitionSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LinkedDeviceSchema, e.LlmDefaultSchema, e.LlmDefaultSelectorSchema, e.LlmErrorCodeSchema, e.LlmGenerateBaseInputSchema, e.LlmGenerateErrSchema, e.LlmGenerateOkSchema, e.LlmGenerateResultSchema, e.LlmImageSchema, e.LlmNodeModelSchema, e.LlmProfileKindDescriptorSchema, e.LlmProfileKindSchema, e.LlmProfileSchema, e.LlmRuntimeCompleteInputSchema, e.LlmRuntimeDiskUsageSchema, e.LlmRuntimeNodeSchema, e.LlmRuntimeStatusSchema, e.LlmUsageRollupSchema, e.LlmUsageSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoginMethodContributionSchema, e.LoginStageEnum, a = e.MACRO_LABELS, e.MAX_EXPRESSION_AST_NODES, e.MAX_EXPRESSION_BINDINGS, e.MAX_EXPRESSION_CALL_ARGS, e.MAX_EXPRESSION_EVAL_STEPS, e.MAX_EXPRESSION_SOURCE_LENGTH, e.METHOD_ACCESS_MAP, e.MODEL_FORMATS, e.MOTION_TRIGGER_FEATURE, e.ManagedModelCatalogEntrySchema, e.ManagedModelRefSchema, e.ManagedRuntimeConfigSchema, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, e.ModelSubstitutionSchema, e.ModelVariantGroupSchema, e.MotionAnalysisResultSchema, e.MotionEventSchema, e.MotionOnMotionChangedDataSchema, e.MotionRegionSchema, e.MotionSourceEnum, e.MotionSourcesSchema, e.MotionStatusSchema, e.MotionTriggerRuntimeStateSchema, e.MotionTriggerStatusSchema, e.MotionZoneOptionsSchema, e.MotionZonePatchSchema, e.MotionZoneRegionSchema, e.MotionZoneStatusSchema, e.MqttBrokerStatusSchema, e.NC_BASE_CONDITION_KEYS, e.NC_CONDITION_CATALOG, e.NC_HISTORY_LIMIT_DEFAULT, e.NC_HISTORY_LIMIT_MAX, e.NC_MAX_PER_TRACK_IMMEDIATE, e.NC_TAXONOMY, e.NativeCropBboxSchema, e.NativeCropRefSchema, e.NativeCropResultSchema, e.NativeDetectionSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NcConditionDescriptorSchema, e.NcConditionsSchema, e.NcCrossingSchema, e.NcDeliverySchema, e.NcHistoryEntrySchema, e.NcHistoryFilterSchema, e.NcHistoryRecordKindSchema, e.NcHistoryStatusSchema, e.NcHistorySubjectSchema, e.NcMediaFrameSchema, e.NcMediaPolicySchema, e.NcOccupancyConditionSchema, e.NcPlateMatcherSchema, e.NcRuleInputSchema, e.NcRulePatchSchema, e.NcRuleSchema, e.NcRuleTargetSchema, e.NcScheduleSchema, e.NcScheduleWindowSchema, e.NcTaxonomyEntrySchema, e.NcTaxonomySchema, e.NcTestResultSchema, e.NcThrottleGranularitySchema, e.NcThrottleSchema, e.NcZoneConditionSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, e.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OpsLogDomainSchema, e.OpsLogEntrySchema, e.OpsLogOpSchema, e.OpsLogQueryInputSchema, e.OpsLogReasonSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdStatusSchema, e.PET_FEEDER_MANUAL_FEED_MAX, e.PET_FEEDER_MANUAL_FEED_MIN, e.PIPELINE_FLOW_CAPABILITY_NAMES, e.PIPELINE_OWNER_CAPABILITY_NAMES, e.PROVIDER_KIND_CAP_NAMES, e.PYTHON_SCRIPT, e.PackageUpdateSchema, e.PackageVersionInfoSchema, e.PasskeyLoginMethodSchema, e.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PetFeederStatusSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, e.PipelineValidationIssueSchema, e.PipelineValidationResultSchema, e.PlaceholderReasonSchema, e.PolygonPointSchema, e.PowerMeterStatusSchema, e.PresenceStatusSchema, e.PressureSensorStatusSchema, e.PrivacyMaskOptionsSchema, e.PrivacyMaskPatchSchema, e.PrivacyMaskRegionSchema, e.PrivacyMaskShapeSchema, e.PrivacyMaskStatusSchema, e.ProfileRtspEntrySchema, e.ProfileSlotSchema, e.ProfileSlotStatusSchema, e.ProviderStatusSchema, e.PtzAutotrackRuntimeStateSchema, e.PtzAutotrackSettingsSchema, e.PtzAutotrackStatusSchema, e.PtzAutotrackTargetOptionSchema, e.PtzMoveCommandSchema, e.PtzOptionsSchema, e.PtzPositionSchema, e.PtzPresetSchema, e.PtzStatusSchema, e.QueryFilterSchema, e.REACHABILITY_FAILURES_TO_OFFLINE, e.REACHABILITY_POLL_INTERVAL_MS, e.REACHABILITY_PROBE_TIMEOUT_MS, e.RECOGNITION_TYPES, e.RESERVED_BINDING_NAMES, e.RUNTIME_DEFAULTS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadSegmentBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, e.RecentTracksPageSchema, e.RecentTracksQueryInput, e.RecordingAvailabilitySchema, e.RecordingBandModeSchema, e.RecordingBandSchema, e.RecordingBandTriggersSchema, e.RecordingConfigSchema, e.RecordingDaysSchema, e.RecordingDeviceUsageSchema, e.RecordingLocationUsageSchema, e.RecordingManifestSchema, e.RecordingRangeSchema, e.RecordingRetentionSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, e.RelocateFootageInputSchema, e.RelocateJobSchema, e.RelocateJobStateSchema, e.RelocateMediaInputSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerInferenceDeviceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCOPE_PRESETS, e.SCRUB_THUMBNAIL_PRESETS, e.SCRUB_THUMBNAIL_PRESET_LABELS, e.SCRUB_THUMBNAIL_PRESET_ORDER, e.SENSOR_FEATURES, e.SENSOR_MAP, e.SOURCE_INFO_METADATA_KEY, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.SceneCheckSchema, e.SceneConditionSchema, e.SceneMonitorSchema, e.SceneMonitorStateSchema, e.SceneMonitorStatusSchema, e.SceneReferenceSchema, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.ScrubThumbnailPresetSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, 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.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.TIMEZONES, e.TamperStatusSchema, e.TankStatusSchema, e.TargetKindCapsSchema, e.TargetKindLevelSchema, e.TargetKindSchema, e.TargetSchema, e.TemperatureSensorStatusSchema, e.TerminalProfileInfoSchema, e.TerminalSessionInfoSchema, e.TestConnectionResultSchema, 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.TrackProjectionSchema, e.TrackSchema, e.TrackStateSchema, e.TrackZoneFilterSchema, e.TrackedDetectionSchema, e.TurnServerSchema, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, 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.applyTransform, e.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioMetricsCapability, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildEventKindDescriptor, e.buildModelVariantGroups, e.buildNcTaxonomy, e.buildStreamParamsConfigSchema, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, e.canConvertUnit, e.carbonMonoxideCapability, e.cellsToRects, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.colorCapability, e.colorForKind, e.compileExpression, e.compileExpressionSafe, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.cosineSimilarity, e.coverCapability, e.createDeviceProxy, e.createDurableState, e.createEvent, e.createExpressionScope, e.createLazyTrpcSource, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.customModelRegistryCapability, e.dataStoreProviderCapability, e.dayNightCapability, e.decoderCapability, e.defaultDeviceFor, e.defineCustomActions, e.deriveRecordingMode, e.describeModelVariant, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceBackendToFormat, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.enumSensorCapability, e.enumerateInferenceDevices, e.enumerateItemArrayFields, e.enumerateSchemaFields, e.errMsg, e.evaluateAst, e.evaluateLinkExpression, 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.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.getTaxonomyEntry, e.hasMotionTrigger, e.hfModelUrl, e.htmlToText, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.imageSettingsCapability, e.integrationsCapability, e.intercomCapability, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isBaseConditionKey, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDeviceConfigCap, e.isEvent, e.isNode, e.isObjectInput, 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.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.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.normalizeUnit, e.notificationOutputCapability, e.notificationRulesCapability, e.notifierCapability, e.numericSensorCapability, e.oauthIntegrationCapability, e.objectInputDeclaresAddonId, e.osdCapability, e.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProfileBrokerId, e.parseStreamParamsFormPatch, e.petFeederCapability, e.pickAccessoryControl, e.pickPreferredRtspEntry, e.pickerForCondition, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readNodePin, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.requiresPython, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveCapMount, e.resolveDetectionRuntime, e.resolveDeviceControlKind, e.resolveDeviceProfile, e.resolveFormat, s = e.resolveHydratedFieldValue, e.resolveModelFormat, e.resolveMutate, e.resolveRunnerId, e.resolveScrubThumbnailGeometry, e.resolveVariantModelId, e.runInferenceStep, e.runtimeDevices, e.sceneMonitorCapability, e.scopeKey, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.serverManagementCapability, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, e.storageCapability, e.storageEvictableCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.subKindsOf, e.supportedRuntimes, e.switchCapability, e.synthesizeSourceInfo, e.systemCapability, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.terminalSessionCapability, e.textToHtml, e.toDeviceSummary, e.toExpressionValue, e.toStreamSourceEntry, e.toastCapability, e.tokenize, e.transcodeBody, e.tryConvertUnit, e.turnProviderCapability, e.unitDimension, e.unitsForDimension, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.validateExpressionSource, e.valveCapability, 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 { o as n, s as r, a as t };