@camstack/addon-pipeline-orchestrator 1.2.7 → 1.2.8
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/assets/viewer/.viewer-version +1 -1
- package/assets/viewer/_expo/static/js/web/{index-5cf9036bb7b6333a2cef8b0993e711cf.js → index-a9cd3e5e842d2062d6382605f7acc657.js} +7 -7
- package/assets/viewer/index.html +1 -1
- package/dist/_stub.js +1 -1
- package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-CrE4gCH2.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-DcpCkgQs.mjs} +1 -1
- package/dist/_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-CA-uN9f1.mjs +26 -0
- package/dist/{hostInit-B7Ff0DIK.mjs → hostInit-BIAeQI3N.mjs} +1 -1
- package/dist/index.js +269 -1
- package/dist/index.mjs +269 -1
- package/dist/remoteEntry.js +1 -1
- package/package.json +1 -1
- package/dist/_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DHNu12AF.mjs +0 -26
package/dist/index.mjs
CHANGED
|
@@ -7245,7 +7245,6 @@ object({ deviceId: number() }), object({ deviceId: number() }), object({
|
|
|
7245
7245
|
patch: record(string(), unknown())
|
|
7246
7246
|
}), object({ success: literal(true) });
|
|
7247
7247
|
object({ deviceId: number() }), unknown().nullable();
|
|
7248
|
-
/** Shorthand to define a method schema */
|
|
7249
7248
|
function method(input, output, options) {
|
|
7250
7249
|
return {
|
|
7251
7250
|
input,
|
|
@@ -7253,6 +7252,7 @@ function method(input, output, options) {
|
|
|
7253
7252
|
kind: options?.kind ?? "query",
|
|
7254
7253
|
auth: options?.auth ?? "protected",
|
|
7255
7254
|
...options?.access !== void 0 ? { access: options.access } : {},
|
|
7255
|
+
...options?.caller !== void 0 ? { caller: options.caller } : {},
|
|
7256
7256
|
timeoutMs: options?.timeoutMs
|
|
7257
7257
|
};
|
|
7258
7258
|
}
|
|
@@ -16793,6 +16793,226 @@ method(object({}), array(TargetKindSchema)), method(object({}), array(TargetSche
|
|
|
16793
16793
|
enabled: boolean()
|
|
16794
16794
|
}), _void(), { kind: "mutation" });
|
|
16795
16795
|
/**
|
|
16796
|
+
* notification-rules — the Notification Center rule surface (P1 core).
|
|
16797
|
+
*
|
|
16798
|
+
* Spec: `docs/superpowers/specs/2026-07-22-notification-center-requirements.md`
|
|
16799
|
+
* (operator decisions D-1/D-2/D-3 are binding):
|
|
16800
|
+
*
|
|
16801
|
+
* - D-2: rule EVALUATION lives in `addon-post-analysis` (the
|
|
16802
|
+
* `notification-center` module), hooked on the durable persistence
|
|
16803
|
+
* moments (object-event insert, TrackCloser.closeExpired) with a
|
|
16804
|
+
* persisted outbox + retry — never the lossy telemetry bus (D8).
|
|
16805
|
+
* - D-3: urgency belongs to the RULE. `delivery: 'immediate'` fires on the
|
|
16806
|
+
* FIRST persisted detection matching the conditions (per-track dedup,
|
|
16807
|
+
* `maxPerTrack` fixed at 1 — see {@link NC_MAX_PER_TRACK_IMMEDIATE});
|
|
16808
|
+
* `delivery: 'track-end'` evaluates the finalized track record at close.
|
|
16809
|
+
* - DISPATCH stays behind `notification-output` (rules reference targets
|
|
16810
|
+
* by id; per-backend params are a passthrough blob capped by the
|
|
16811
|
+
* target kind's own caps/degrade engine).
|
|
16812
|
+
*
|
|
16813
|
+
* P1 scope: admin-authored rules only (`createdBy` stamped from the
|
|
16814
|
+
* server-injected caller identity — the first `caller: 'required'`
|
|
16815
|
+
* adopter). The P1 condition subset is: devices, classes(+exclude),
|
|
16816
|
+
* minConfidence, admin zones (any/all + exclude), weekly schedule
|
|
16817
|
+
* windows, and the optional label/identity/plate matchers. User rules,
|
|
16818
|
+
* private zones, per-recipient fan-out and the wider condition table are
|
|
16819
|
+
* P2+ (see spec §7).
|
|
16820
|
+
*
|
|
16821
|
+
* All schemas here are the single source of truth — `NcRule` etc. are
|
|
16822
|
+
* `z.infer` exports; no duplicate interfaces (the advanced-notifier
|
|
16823
|
+
* schema/interface drift is explicitly not repeated).
|
|
16824
|
+
*/
|
|
16825
|
+
/** D-3: the urgency of a rule — which persistence moment evaluates it. */
|
|
16826
|
+
var NcDeliverySchema = _enum(["immediate", "track-end"]);
|
|
16827
|
+
/** Weekly schedule — OR of windows; absence on the rule = always active. */
|
|
16828
|
+
var NcScheduleSchema = object({
|
|
16829
|
+
windows: array(object({
|
|
16830
|
+
/** Days of week the window STARTS on (0 = Sunday … 6 = Saturday). */
|
|
16831
|
+
days: array(number().int().min(0).max(6)).min(1),
|
|
16832
|
+
startMinute: number().int().min(0).max(1439),
|
|
16833
|
+
endMinute: number().int().min(0).max(1439)
|
|
16834
|
+
})).min(1),
|
|
16835
|
+
/** IANA timezone; default = hub host timezone. */
|
|
16836
|
+
timezone: string().optional(),
|
|
16837
|
+
/** Active OUTSIDE the windows (e.g. "only outside business hours"). */
|
|
16838
|
+
invert: boolean().optional()
|
|
16839
|
+
});
|
|
16840
|
+
/** Fuzzy plate matcher — OCR noise makes exact match useless (spec row 12/13). */
|
|
16841
|
+
var NcPlateMatcherSchema = object({
|
|
16842
|
+
values: array(string().min(1)).min(1),
|
|
16843
|
+
/** Max Levenshtein distance after normalization (uppercase alphanumeric). */
|
|
16844
|
+
maxDistance: number().int().min(0).max(3).default(1)
|
|
16845
|
+
});
|
|
16846
|
+
/** Admin-zone membership condition (zone IDs as stamped by the ZoneEngine). */
|
|
16847
|
+
var NcZoneConditionSchema = object({
|
|
16848
|
+
ids: array(string().min(1)).min(1),
|
|
16849
|
+
/** Quantifier over `ids` — at least one / every one visited. */
|
|
16850
|
+
match: _enum(["any", "all"]).default("any")
|
|
16851
|
+
});
|
|
16852
|
+
/**
|
|
16853
|
+
* The P1 condition set — a flat AND of groups; absent group = pass;
|
|
16854
|
+
* membership lists are OR within the list (spec §2.3).
|
|
16855
|
+
*/
|
|
16856
|
+
var NcConditionsSchema = object({
|
|
16857
|
+
/** Device scope — absent = all devices. */
|
|
16858
|
+
devices: array(number()).optional(),
|
|
16859
|
+
/** Detector class names (any overlap with the record's class set). */
|
|
16860
|
+
classes: array(string().min(1)).optional(),
|
|
16861
|
+
/** Veto classes — any overlap fails the rule. */
|
|
16862
|
+
classesExclude: array(string().min(1)).optional(),
|
|
16863
|
+
/** Minimum detection confidence 0–1 (fails when the record has none). */
|
|
16864
|
+
minConfidence: number().min(0).max(1).optional(),
|
|
16865
|
+
/** Admin zone membership over event `zones` / track `zonesVisited`. */
|
|
16866
|
+
zones: NcZoneConditionSchema.optional(),
|
|
16867
|
+
/** Veto zones — any hit fails the rule. */
|
|
16868
|
+
zonesExclude: array(string().min(1)).optional(),
|
|
16869
|
+
/**
|
|
16870
|
+
* Exact (case-insensitive) match on the record's collapsed `label`
|
|
16871
|
+
* (identity name / plate text / subclass).
|
|
16872
|
+
*/
|
|
16873
|
+
labelEquals: array(string().min(1)).optional(),
|
|
16874
|
+
/**
|
|
16875
|
+
* Identity matcher. P1 boundary: matched against the record's collapsed
|
|
16876
|
+
* `label` (the identity display name propagated by the face pipeline) —
|
|
16877
|
+
* identity-ID matching rides in P2 when identity ids reach the record.
|
|
16878
|
+
*/
|
|
16879
|
+
identities: array(string().min(1)).optional(),
|
|
16880
|
+
/** Fuzzy plate matcher against the record's `label` (plate text). */
|
|
16881
|
+
plates: NcPlateMatcherSchema.optional()
|
|
16882
|
+
});
|
|
16883
|
+
/** One delivery target: a `notification-output` Target ref + passthrough params. */
|
|
16884
|
+
var NcRuleTargetSchema = object({
|
|
16885
|
+
/** `notification-output` Target id. */
|
|
16886
|
+
targetId: string().min(1),
|
|
16887
|
+
/**
|
|
16888
|
+
* Per-backend passthrough. Recognized keys are mapped onto the canonical
|
|
16889
|
+
* Notification (`priority`, `level`, `sound`, `clickUrl`, `ttl`); the
|
|
16890
|
+
* degrade engine drops what the backend can't render.
|
|
16891
|
+
*/
|
|
16892
|
+
params: record(string(), unknown()).optional()
|
|
16893
|
+
});
|
|
16894
|
+
/**
|
|
16895
|
+
* Media attachment policy (P1 still-image subset). `best` = the best
|
|
16896
|
+
* AVAILABLE media at dispatch time (D-3); `best-matching` (track-end
|
|
16897
|
+
* condition-best) is deferred — operator open point.
|
|
16898
|
+
*/
|
|
16899
|
+
var NcMediaPolicySchema = object({ attach: _enum([
|
|
16900
|
+
"best",
|
|
16901
|
+
"keyFrame",
|
|
16902
|
+
"none"
|
|
16903
|
+
]).default("best") });
|
|
16904
|
+
/** Throttle — cooldown survives restarts (rebuilt from the outbox on boot). */
|
|
16905
|
+
var NcThrottleSchema = object({
|
|
16906
|
+
cooldownSec: number().int().min(0).max(86400).default(60),
|
|
16907
|
+
/** `rule` = one shared cooldown; `rule-device` = per-camera cooldown. */
|
|
16908
|
+
scope: _enum(["rule", "rule-device"]).default("rule-device")
|
|
16909
|
+
});
|
|
16910
|
+
/** Client-supplied rule fields (server stamps id/createdBy/createdAt/updatedAt). */
|
|
16911
|
+
var NcRuleInputSchema = object({
|
|
16912
|
+
name: string().min(1).max(200),
|
|
16913
|
+
enabled: boolean().default(true),
|
|
16914
|
+
delivery: NcDeliverySchema,
|
|
16915
|
+
conditions: NcConditionsSchema.default({}),
|
|
16916
|
+
schedule: NcScheduleSchema.optional(),
|
|
16917
|
+
targets: array(NcRuleTargetSchema).min(1),
|
|
16918
|
+
media: NcMediaPolicySchema.default({ attach: "best" }),
|
|
16919
|
+
throttle: NcThrottleSchema.default({
|
|
16920
|
+
cooldownSec: 60,
|
|
16921
|
+
scope: "rule-device"
|
|
16922
|
+
}),
|
|
16923
|
+
/** `{{var}}` templating over camera/class/label/zones/confidence/time. */
|
|
16924
|
+
template: object({
|
|
16925
|
+
title: string().max(500).optional(),
|
|
16926
|
+
body: string().max(2e3).optional()
|
|
16927
|
+
}).optional(),
|
|
16928
|
+
/** Canonical notification priority ordinal (1..5); per-target overridable. */
|
|
16929
|
+
priority: number().int().min(1).max(5).default(3)
|
|
16930
|
+
});
|
|
16931
|
+
/** Partial patch for `updateRule` — any subset of the input fields. */
|
|
16932
|
+
var NcRulePatchSchema = NcRuleInputSchema.partial();
|
|
16933
|
+
/** A persisted rule. */
|
|
16934
|
+
var NcRuleSchema = NcRuleInputSchema.extend({
|
|
16935
|
+
id: string(),
|
|
16936
|
+
/** userId of the admin who created the rule (server-stamped caller). */
|
|
16937
|
+
createdBy: string(),
|
|
16938
|
+
createdAt: number(),
|
|
16939
|
+
updatedAt: number()
|
|
16940
|
+
});
|
|
16941
|
+
var NcTestResultSchema = object({
|
|
16942
|
+
recordId: string(),
|
|
16943
|
+
recordKind: _enum(["object-event", "track"]),
|
|
16944
|
+
deviceId: number(),
|
|
16945
|
+
timestamp: number(),
|
|
16946
|
+
wouldFire: boolean(),
|
|
16947
|
+
/** Condition id that failed (first failing group), when `wouldFire` is false. */
|
|
16948
|
+
failedCondition: string().optional(),
|
|
16949
|
+
className: string().optional(),
|
|
16950
|
+
label: string().optional()
|
|
16951
|
+
});
|
|
16952
|
+
var NcConditionDescriptorSchema = object({
|
|
16953
|
+
/** Field id inside `NcConditions` (or `'schedule'` for the rule-level group). */
|
|
16954
|
+
id: string(),
|
|
16955
|
+
group: _enum([
|
|
16956
|
+
"scope",
|
|
16957
|
+
"class",
|
|
16958
|
+
"zones",
|
|
16959
|
+
"quality",
|
|
16960
|
+
"label",
|
|
16961
|
+
"schedule"
|
|
16962
|
+
]),
|
|
16963
|
+
label: string(),
|
|
16964
|
+
/** Editor widget the UI renders — never hardcode per-condition forms. */
|
|
16965
|
+
valueType: _enum([
|
|
16966
|
+
"deviceIdList",
|
|
16967
|
+
"stringList",
|
|
16968
|
+
"number01",
|
|
16969
|
+
"zoneSelection",
|
|
16970
|
+
"zoneIdList",
|
|
16971
|
+
"schedule",
|
|
16972
|
+
"plateMatcher"
|
|
16973
|
+
]),
|
|
16974
|
+
operator: _enum([
|
|
16975
|
+
"in",
|
|
16976
|
+
"notIn",
|
|
16977
|
+
"anyOf",
|
|
16978
|
+
"allOf",
|
|
16979
|
+
"gte",
|
|
16980
|
+
"fuzzyIn",
|
|
16981
|
+
"withinSchedule"
|
|
16982
|
+
]),
|
|
16983
|
+
/** Which delivery kinds the condition applies to. */
|
|
16984
|
+
appliesTo: array(NcDeliverySchema),
|
|
16985
|
+
phase: string(),
|
|
16986
|
+
description: string().optional()
|
|
16987
|
+
});
|
|
16988
|
+
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 }), {
|
|
16989
|
+
kind: "mutation",
|
|
16990
|
+
auth: "admin",
|
|
16991
|
+
caller: "required"
|
|
16992
|
+
}), method(object({
|
|
16993
|
+
ruleId: string(),
|
|
16994
|
+
patch: NcRulePatchSchema
|
|
16995
|
+
}), object({ rule: NcRuleSchema }), {
|
|
16996
|
+
kind: "mutation",
|
|
16997
|
+
auth: "admin",
|
|
16998
|
+
caller: "required"
|
|
16999
|
+
}), method(object({ ruleId: string() }), object({ success: literal(true) }), {
|
|
17000
|
+
kind: "mutation",
|
|
17001
|
+
auth: "admin"
|
|
17002
|
+
}), method(object({
|
|
17003
|
+
ruleId: string(),
|
|
17004
|
+
enabled: boolean()
|
|
17005
|
+
}), object({ success: literal(true) }), {
|
|
17006
|
+
kind: "mutation",
|
|
17007
|
+
auth: "admin"
|
|
17008
|
+
}), method(object({
|
|
17009
|
+
rule: NcRuleInputSchema,
|
|
17010
|
+
lookbackMinutes: number().int().min(1).max(1440).default(60)
|
|
17011
|
+
}), object({ results: array(NcTestResultSchema) }), {
|
|
17012
|
+
kind: "mutation",
|
|
17013
|
+
auth: "admin"
|
|
17014
|
+
}), method(object({}), object({ catalog: array(NcConditionDescriptorSchema) }));
|
|
17015
|
+
/**
|
|
16796
17016
|
* Shared LLM generate contracts — imported by BOTH `llm.cap.ts` (consumer
|
|
16797
17017
|
* surface) and `llm-runtime.cap.ts` (node-side managed executor) so the two
|
|
16798
17018
|
* caps stay wire-compatible without a circular cap→cap import.
|
|
@@ -24441,6 +24661,54 @@ Object.freeze({
|
|
|
24441
24661
|
addonId: null,
|
|
24442
24662
|
access: "create"
|
|
24443
24663
|
},
|
|
24664
|
+
"notificationRules.createRule": {
|
|
24665
|
+
capName: "notification-rules",
|
|
24666
|
+
capScope: "system",
|
|
24667
|
+
addonId: null,
|
|
24668
|
+
access: "create"
|
|
24669
|
+
},
|
|
24670
|
+
"notificationRules.deleteRule": {
|
|
24671
|
+
capName: "notification-rules",
|
|
24672
|
+
capScope: "system",
|
|
24673
|
+
addonId: null,
|
|
24674
|
+
access: "delete"
|
|
24675
|
+
},
|
|
24676
|
+
"notificationRules.getConditionCatalog": {
|
|
24677
|
+
capName: "notification-rules",
|
|
24678
|
+
capScope: "system",
|
|
24679
|
+
addonId: null,
|
|
24680
|
+
access: "view"
|
|
24681
|
+
},
|
|
24682
|
+
"notificationRules.getRule": {
|
|
24683
|
+
capName: "notification-rules",
|
|
24684
|
+
capScope: "system",
|
|
24685
|
+
addonId: null,
|
|
24686
|
+
access: "view"
|
|
24687
|
+
},
|
|
24688
|
+
"notificationRules.listRules": {
|
|
24689
|
+
capName: "notification-rules",
|
|
24690
|
+
capScope: "system",
|
|
24691
|
+
addonId: null,
|
|
24692
|
+
access: "view"
|
|
24693
|
+
},
|
|
24694
|
+
"notificationRules.setRuleEnabled": {
|
|
24695
|
+
capName: "notification-rules",
|
|
24696
|
+
capScope: "system",
|
|
24697
|
+
addonId: null,
|
|
24698
|
+
access: "create"
|
|
24699
|
+
},
|
|
24700
|
+
"notificationRules.testRule": {
|
|
24701
|
+
capName: "notification-rules",
|
|
24702
|
+
capScope: "system",
|
|
24703
|
+
addonId: null,
|
|
24704
|
+
access: "create"
|
|
24705
|
+
},
|
|
24706
|
+
"notificationRules.updateRule": {
|
|
24707
|
+
capName: "notification-rules",
|
|
24708
|
+
capScope: "system",
|
|
24709
|
+
addonId: null,
|
|
24710
|
+
access: "create"
|
|
24711
|
+
},
|
|
24444
24712
|
"notifier.cancel": {
|
|
24445
24713
|
capName: "notifier",
|
|
24446
24714
|
capScope: "device",
|
package/dist/remoteEntry.js
CHANGED
|
@@ -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-
|
|
33
|
+
return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-DcpCkgQs.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.
|
|
3
|
+
"version": "1.2.8",
|
|
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.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.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.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.NativeCropBboxSchema, e.NativeCropRefSchema, e.NativeCropResultSchema, e.NativeDetectionSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationHistoryEntrySchema, e.NotificationRuleSchema, 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.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.RecordingModeSchema, e.RecordingRangeSchema, e.RecordingRetentionSchema, e.RecordingRuleSchema, e.RecordingScheduleSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, 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.TestConnectionResultSchema, e.TestResultSchema, 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.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.advancedNotifierCapability, 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.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.dayNightCapability, e.decoderCapability, e.defaultDeviceFor, e.defineCustomActions, 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.isCollectionArrayMethod, e.isDeployableToAgent, e.isDeviceConfigCap, e.isEvent, e.isNode, e.isObjectInput, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logDestinationCapability, 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.migrateConfigToBands, 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.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.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.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 };
|