@camstack/types 1.2.25 → 1.2.27
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/addon.d.ts +1 -0
- package/dist/addon.js +3 -1
- package/dist/addon.mjs +2 -2
- package/dist/capabilities/index.d.ts +2 -2
- package/dist/capabilities/notification-rules.cap.d.ts +319 -2
- package/dist/capabilities/pipeline-analytics.cap.d.ts +3 -3
- package/dist/capabilities/stream-broker.cap.d.ts +13 -0
- package/dist/catalogs/device-state-vocabulary.d.ts +53 -0
- package/dist/generated/device-scoped-caps.d.ts +20 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +189 -3
- package/dist/index.mjs +181 -4
- package/dist/{sleep-BvSjpsfC.js → sleep-6oDIDtYV.js} +117 -0
- package/dist/{sleep-vCXN9wNH.mjs → sleep-CD2Df3i7.mjs} +106 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as
|
|
1
|
+
import { $ as FrameHandleSchema, A as parseJsonArray, B as readinessKey, C as DEVICE_SCOPED_CAPS, Ct as hydrateSchema, D as asJsonObject, E as asJsonArray, F as readNodePin, G as CamProfileSchema, H as BrokerStatsSchema, I as DATAPLANE_SECRET_HEADER, J as CameraStreamSchema, K as CamStreamKindSchema, L as ReadinessRegistry, M as parseJsonUnknown, N as CAP_NODE_PIN_CONTEXT_KEY, O as asNumber, P as nodePin, Q as FrameHandleFormatSchema, R as ReadinessTimeoutError, S as DeviceType, St as collectHydratedFieldValues, T as asBoolean, Tt as DisposerChain, U as BrokerStatusSchema, V as scopeKey, W as CAM_PROFILE_ORDER, X as DecodedFrameSchema, Y as DecodedAudioChunkSchema, Z as EncodedPacketSchema, _ as resolveCapMount, _t as emitReadiness, a as viewerUiCapability, at as SubscribeAudioChunksInputSchema, b as DeviceFeature, bt as WELL_KNOWN_TAB_MAP, c as createLazyTrpcSource, ct as SubscribeFramesResultSchema, d as DEVICE_SETTINGS_CONTRIBUTION_METHODS, dt as parseProfileBrokerId, et as ProfileRtspEntrySchema, f as DEVICE_STATUS_METHOD, ft as selectAssignedProfileSlots, g as method, gt as createEvent, h as isDeviceConfigCap, ht as createDurableState, i as deviceOpsCapability, it as StreamSourceSchema, j as parseJsonObject, k as asString, l as createMirrorSource, lt as makeProfileBrokerId, m as expandCapMethods, mt as normalizeAddonInitResult, n as sleepCancellable, nt as ProfileSlotStatusSchema, o as adminUiCapability, ot as SubscribeAudioChunksResultSchema, p as event, pt as BaseAddon, q as CamStreamResolutionSchema, r as RawStateResultSchema, rt as StreamSourceEntrySchema, s as createDeviceProxy, st as SubscribeFramesInputSchema, t as sleep, tt as ProfileSlotSchema, u as createSliceHandle, ut as makeSourceBrokerId, v as systemMethod, vt as isEvent, w as isDeviceScopedCap, wt as resolveHydratedFieldValue, x as DeviceRole, xt as collectHydratedFieldEntries, y as ChargingStatus, yt as WELL_KNOWN_TABS, z as emitDownForOwnedCaps } from "./sleep-CD2Df3i7.mjs";
|
|
2
2
|
import { t as EventCategory } from "./event-category-41fKf-q9.mjs";
|
|
3
3
|
import { EventSourceType } from "./enums.mjs";
|
|
4
4
|
import { t as errMsg } from "./err-msg-IQTHeDzc.mjs";
|
|
@@ -2972,6 +2972,78 @@ function buildNcTaxonomy() {
|
|
|
2972
2972
|
/** The frozen NC taxonomy, derived once from the taxonomy dictionary. */
|
|
2973
2973
|
var NC_TAXONOMY = Object.freeze(buildNcTaxonomy());
|
|
2974
2974
|
//#endregion
|
|
2975
|
+
//#region src/catalogs/device-state-vocabulary.ts
|
|
2976
|
+
/**
|
|
2977
|
+
* Most specific first. Extending this list is how a new device kind becomes
|
|
2978
|
+
* gateable; nothing else needs to change.
|
|
2979
|
+
*/
|
|
2980
|
+
var DEVICE_STATE_READERS = [
|
|
2981
|
+
{
|
|
2982
|
+
cap: "alarm-panel",
|
|
2983
|
+
field: "state"
|
|
2984
|
+
},
|
|
2985
|
+
{
|
|
2986
|
+
cap: "cover",
|
|
2987
|
+
field: "state"
|
|
2988
|
+
},
|
|
2989
|
+
{
|
|
2990
|
+
cap: "presence",
|
|
2991
|
+
field: "state"
|
|
2992
|
+
},
|
|
2993
|
+
{
|
|
2994
|
+
cap: "lock",
|
|
2995
|
+
field: "locked",
|
|
2996
|
+
booleanWords: ["locked", "unlocked"]
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
cap: "contact",
|
|
3000
|
+
field: "entryOpen",
|
|
3001
|
+
booleanWords: ["open", "closed"]
|
|
3002
|
+
},
|
|
3003
|
+
{
|
|
3004
|
+
cap: "switch",
|
|
3005
|
+
field: "on",
|
|
3006
|
+
booleanWords: ["on", "off"]
|
|
3007
|
+
},
|
|
3008
|
+
{
|
|
3009
|
+
cap: "binary",
|
|
3010
|
+
field: "on",
|
|
3011
|
+
booleanWords: ["on", "off"]
|
|
3012
|
+
}
|
|
3013
|
+
];
|
|
3014
|
+
/**
|
|
3015
|
+
* Collapse a device's full runtime state to the one string a rule compares
|
|
3016
|
+
* against, or `undefined` when nothing in the table applies.
|
|
3017
|
+
*
|
|
3018
|
+
* `undefined` is the safe answer everywhere: the gate treats it as "does not
|
|
3019
|
+
* match", so a device whose kind we cannot read simply never arms a rule.
|
|
3020
|
+
*/
|
|
3021
|
+
function readDeviceStateFrom(runtimeState) {
|
|
3022
|
+
for (const reader of DEVICE_STATE_READERS) {
|
|
3023
|
+
const slice = runtimeState[reader.cap];
|
|
3024
|
+
if (slice === null || typeof slice !== "object") continue;
|
|
3025
|
+
const value = slice[reader.field];
|
|
3026
|
+
if (typeof value === "string" && value.length > 0) return value;
|
|
3027
|
+
if (typeof value === "boolean" && reader.booleanWords !== void 0) return value ? reader.booleanWords[0] : reader.booleanWords[1];
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
3030
|
+
/**
|
|
3031
|
+
* The states a rule editor can offer for a device, given its runtime state.
|
|
3032
|
+
* Same table, same order — so the picker can never offer a value the gate
|
|
3033
|
+
* would not recognise.
|
|
3034
|
+
*/
|
|
3035
|
+
function stateVocabularyFor(runtimeState, alarmStates = []) {
|
|
3036
|
+
for (const reader of DEVICE_STATE_READERS) {
|
|
3037
|
+
const slice = runtimeState[reader.cap];
|
|
3038
|
+
if (slice === null || typeof slice !== "object") continue;
|
|
3039
|
+
if (reader.booleanWords !== void 0) return [...reader.booleanWords];
|
|
3040
|
+
if (reader.cap === "alarm-panel") return [...alarmStates];
|
|
3041
|
+
const current = slice[reader.field];
|
|
3042
|
+
return typeof current === "string" ? [current] : [];
|
|
3043
|
+
}
|
|
3044
|
+
return [];
|
|
3045
|
+
}
|
|
3046
|
+
//#endregion
|
|
2975
3047
|
//#region src/types/device-type.ts
|
|
2976
3048
|
var DEVICE_TYPE_INFO = { ["camera"]: {
|
|
2977
3049
|
type: "camera",
|
|
@@ -4783,7 +4855,87 @@ var NcZoneConditionSchema = z.object({
|
|
|
4783
4855
|
* The P1 condition set — a flat AND of groups; absent group = pass;
|
|
4784
4856
|
* membership lists are OR within the list (spec §2.3).
|
|
4785
4857
|
*/
|
|
4858
|
+
/**
|
|
4859
|
+
* What a rule may actuate.
|
|
4860
|
+
*
|
|
4861
|
+
* **No hand-maintained allowlist** (operator decision, and the right one — a
|
|
4862
|
+
* written list of methods is a third parallel map to keep aligned, and this
|
|
4863
|
+
* repo has paid for those). The boundary instead comes from a property the
|
|
4864
|
+
* capabilities already carry: an action may target only a **device-scoped**
|
|
4865
|
+
* capability method.
|
|
4866
|
+
*
|
|
4867
|
+
* That is not decoration. A rule can be authored by a NON-ADMIN — personal
|
|
4868
|
+
* rules are a supported flow — and the executor runs with the addon's
|
|
4869
|
+
* privileges, so an unbounded action is an arbitrary RPC channel with a
|
|
4870
|
+
* privilege escalation attached. Restricting to device scope excludes the
|
|
4871
|
+
* system caps (`device-manager.removeDevice` and friends) by construction,
|
|
4872
|
+
* costs nothing to maintain, and cannot rot: a cap that stops being
|
|
4873
|
+
* device-scoped stops being actuatable in the same change.
|
|
4874
|
+
*
|
|
4875
|
+
* The executor enforces it; {@link NcRuleActionSchema} carries the intent.
|
|
4876
|
+
*/
|
|
4877
|
+
/**
|
|
4878
|
+
* One step of a sequence.
|
|
4879
|
+
*
|
|
4880
|
+
* `wait` is a first-class step rather than a property of the next action: it is
|
|
4881
|
+
* what makes a sequence a SEQUENCE and not a list — "unlock, wait 5s, open"
|
|
4882
|
+
* cannot be expressed otherwise.
|
|
4883
|
+
*/
|
|
4884
|
+
var NcRuleActionSchema = z.discriminatedUnion("kind", [z.object({
|
|
4885
|
+
kind: z.literal("wait"),
|
|
4886
|
+
seconds: z.number().min(0).max(300)
|
|
4887
|
+
}), z.object({
|
|
4888
|
+
kind: z.literal("cap"),
|
|
4889
|
+
deviceId: z.number().int(),
|
|
4890
|
+
/** Capability name, e.g. `alarm-panel`. */
|
|
4891
|
+
cap: z.string().min(1),
|
|
4892
|
+
/** Method on it. The executor refuses a non-device-scoped cap. */
|
|
4893
|
+
method: z.string().min(1),
|
|
4894
|
+
/** Method arguments, minus `deviceId` (the executor injects it). */
|
|
4895
|
+
args: z.record(z.string(), z.unknown()).optional()
|
|
4896
|
+
})]);
|
|
4897
|
+
/**
|
|
4898
|
+
* A named, ordered run of steps with its own throttle.
|
|
4899
|
+
*
|
|
4900
|
+
* `minDelaySec` exists because a noisy rule otherwise hammers a physical
|
|
4901
|
+
* actuator — the rule's own cooldown governs NOTIFICATIONS, which is a
|
|
4902
|
+
* different budget from "how often may this gate actually open".
|
|
4903
|
+
*/
|
|
4904
|
+
var NcRuleActionSequenceSchema = z.object({
|
|
4905
|
+
name: z.string().min(1).max(120),
|
|
4906
|
+
enabled: z.boolean(),
|
|
4907
|
+
minDelaySec: z.number().int().min(0).max(86400).optional(),
|
|
4908
|
+
actions: z.array(NcRuleActionSchema).min(1)
|
|
4909
|
+
});
|
|
4910
|
+
/**
|
|
4911
|
+
* Sequences a rule runs, by hook point.
|
|
4912
|
+
*
|
|
4913
|
+
* ONLY `onTrigger` is here, deliberately. The reference also has activation /
|
|
4914
|
+
* deactivation / reset / post-generation hooks, and they are wanted — but this
|
|
4915
|
+
* repo's expensive failure mode is declaring a surface nothing produces, so a
|
|
4916
|
+
* hook appears here in the same change that produces its edge, never before.
|
|
4917
|
+
*/
|
|
4918
|
+
var NcRuleActionsSchema = z.object({
|
|
4919
|
+
/** Runs when the rule MATCHES. */
|
|
4920
|
+
onTrigger: z.array(NcRuleActionSequenceSchema).optional() });
|
|
4921
|
+
/**
|
|
4922
|
+
* "This rule applies only while `deviceId` is in one of `states`."
|
|
4923
|
+
*
|
|
4924
|
+
* The states are the DEVICE's own vocabulary — `AlarmState` for a panel,
|
|
4925
|
+
* `on`/`off` for a switch — not a normalised set, because normalising would
|
|
4926
|
+
* make the condition lie about devices whose states have no equivalent.
|
|
4927
|
+
*
|
|
4928
|
+
* An unreadable state does NOT match: see the engine's fail-closed gate. A
|
|
4929
|
+
* condition that fired on "I could not read it" would be worse than no gate.
|
|
4930
|
+
*/
|
|
4931
|
+
var NcDeviceStateConditionSchema = z.object({
|
|
4932
|
+
deviceId: z.number().int(),
|
|
4933
|
+
/** Any of these matches. */
|
|
4934
|
+
states: z.array(z.string().min(1)).min(1)
|
|
4935
|
+
});
|
|
4786
4936
|
var NcConditionsSchema = z.object({
|
|
4937
|
+
/** Gate on ANOTHER device's current state (the alarm armed, a switch on). */
|
|
4938
|
+
deviceState: NcDeviceStateConditionSchema.optional(),
|
|
4787
4939
|
/** Device scope — absent = all devices. */
|
|
4788
4940
|
devices: z.array(z.number()).optional(),
|
|
4789
4941
|
/** Detector class names (any overlap with the record's class set). */
|
|
@@ -5077,7 +5229,16 @@ var NcRuleInputSchema = z.object({
|
|
|
5077
5229
|
* read as `false` by {@link canSetGlobal} in the engine. Admins are not bound
|
|
5078
5230
|
* by this flag — see the scope rules on that function.
|
|
5079
5231
|
*/
|
|
5080
|
-
snoozeAllowGlobal: z.boolean().optional()
|
|
5232
|
+
snoozeAllowGlobal: z.boolean().optional(),
|
|
5233
|
+
/**
|
|
5234
|
+
* Devices this rule ACTUATES — arm the alarm, open a gate, turn on a light.
|
|
5235
|
+
*
|
|
5236
|
+
* This is what makes the rule set the alarm's trigger set without the alarm
|
|
5237
|
+
* being a special case: arming is
|
|
5238
|
+
* `{ cap: 'alarm-panel', method: 'arm', args: { mode: 'away' } }`, the same
|
|
5239
|
+
* shape as every other actuation.
|
|
5240
|
+
*/
|
|
5241
|
+
actions: NcRuleActionsSchema.optional()
|
|
5081
5242
|
});
|
|
5082
5243
|
/**
|
|
5083
5244
|
* Partial patch for `updateRule` — any subset of the input fields, plus the
|
|
@@ -5148,7 +5309,8 @@ var NcConditionDescriptorSchema = z.object({
|
|
|
5148
5309
|
"packagePhase",
|
|
5149
5310
|
"crossingSelect",
|
|
5150
5311
|
"polygonDraw",
|
|
5151
|
-
"occupancy"
|
|
5312
|
+
"occupancy",
|
|
5313
|
+
"deviceState"
|
|
5152
5314
|
]),
|
|
5153
5315
|
operator: z.enum([
|
|
5154
5316
|
"in",
|
|
@@ -5407,6 +5569,21 @@ var NC_CONDITION_CATALOG = [
|
|
|
5407
5569
|
phase: "P1",
|
|
5408
5570
|
description: "pipeline / onboard / sensor; a record with no stamped source counts as pipeline."
|
|
5409
5571
|
},
|
|
5572
|
+
{
|
|
5573
|
+
id: "deviceState",
|
|
5574
|
+
group: "scope",
|
|
5575
|
+
label: "Device state",
|
|
5576
|
+
valueType: "deviceState",
|
|
5577
|
+
operator: "in",
|
|
5578
|
+
appliesTo: [
|
|
5579
|
+
"immediate",
|
|
5580
|
+
"track-end",
|
|
5581
|
+
"device-event",
|
|
5582
|
+
"package-event"
|
|
5583
|
+
],
|
|
5584
|
+
phase: "P2",
|
|
5585
|
+
description: "Only fire while another device is in one of the chosen states — the alarm armed, a switch on, a contact closed. A state that cannot be read does NOT fire."
|
|
5586
|
+
},
|
|
5410
5587
|
{
|
|
5411
5588
|
id: "sensorKinds",
|
|
5412
5589
|
group: "device",
|
|
@@ -34113,4 +34290,4 @@ function enumerateInferenceDevices(hw) {
|
|
|
34113
34290
|
return out;
|
|
34114
34291
|
}
|
|
34115
34292
|
//#endregion
|
|
34116
|
-
export { ACCESSORY_LABEL, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationControlStatusSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BATTERY_DEVICE_PROFILE, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusSchema, CameraStreamSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_RETENTION, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, EngineInfoSchema as DataStoreEngineInfoSchema, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceLinkModeSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventSourceType, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionEvalError, ExpressionParseError, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageContractSchema, ImageContractStateSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOG_LEVEL_RANK, LabelDefinitionSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, MODEL_FORMATS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, MutationFilterSchema, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_SNOOZE_MAX_MINUTES, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcCrossingSchema, NcDeliverySchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleInputSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcScheduleSchema, NcScheduleWindowSchema, NcSnoozeInputSchema, NcSnoozeSchema, NcSnoozeScopeSchema, NcSnoozeSuppressedSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RESERVED_BINDING_NAMES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RenderedAsSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SENSOR_FEATURES, SENSOR_MAP, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SceneCheckSchema, SceneConditionSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMEZONES, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackProjectionSchema, TrackSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneCrossingDirectionSchema, ZoneCrossingSchema, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, applyTransform, asBoolean, asJsonArray, asJsonObject, asNumber, asString, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioMetricsCapability, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildEventKindDescriptor, buildModelVariantGroups, buildNcTaxonomy, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, compileExpression, compileExpressionSafe, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dataStoreProviderCapability, dayNightCapability, decoderCapability, defaultDeviceFor, defineCustomActions, deriveRecordingMode, describeModelVariant, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateLinkExpression, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isArrayOutputSchema, isBaseConditionKey, isCollectionArrayMethod, isDeployableToAgent, isDeviceConfigCap, isEvent, isNode, isObjectInput, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, petFeederCapability, pickAccessoryControl, pickPreferredRtspEntry, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readNodePin, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveMutate, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, runInferenceStep, runtimeDevices, sceneMonitorCapability, scopeKey, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, supportedRuntimes, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toStreamSourceEntry, toastCapability, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, valveCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|
|
34293
|
+
export { ACCESSORY_LABEL, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationControlStatusSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BATTERY_DEVICE_PROFILE, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusSchema, CameraStreamSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_RETENTION, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SCOPED_CAPS, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATE_READERS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, EngineInfoSchema as DataStoreEngineInfoSchema, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceLinkModeSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventSourceType, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionEvalError, ExpressionParseError, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageContractSchema, ImageContractStateSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOG_LEVEL_RANK, LabelDefinitionSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, MODEL_FORMATS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, MutationFilterSchema, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_SNOOZE_MAX_MINUTES, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcCrossingSchema, NcDeliverySchema, NcDeviceStateConditionSchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleActionSchema, NcRuleActionSequenceSchema, NcRuleActionsSchema, NcRuleInputSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcScheduleSchema, NcScheduleWindowSchema, NcSnoozeInputSchema, NcSnoozeSchema, NcSnoozeScopeSchema, NcSnoozeSuppressedSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RESERVED_BINDING_NAMES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RenderedAsSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SENSOR_FEATURES, SENSOR_MAP, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SceneCheckSchema, SceneConditionSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMEZONES, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackProjectionSchema, TrackSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneCrossingDirectionSchema, ZoneCrossingSchema, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, applyTransform, asBoolean, asJsonArray, asJsonObject, asNumber, asString, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioMetricsCapability, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildEventKindDescriptor, buildModelVariantGroups, buildNcTaxonomy, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, compileExpression, compileExpressionSafe, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dataStoreProviderCapability, dayNightCapability, decoderCapability, defaultDeviceFor, defineCustomActions, deriveRecordingMode, describeModelVariant, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateLinkExpression, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isArrayOutputSchema, isBaseConditionKey, isCollectionArrayMethod, isDeployableToAgent, isDeviceConfigCap, isDeviceScopedCap, isEvent, isNode, isObjectInput, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, petFeederCapability, pickAccessoryControl, pickPreferredRtspEntry, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readDeviceStateFrom, readNodePin, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveMutate, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, runInferenceStep, runtimeDevices, sceneMonitorCapability, scopeKey, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, stateVocabularyFor, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, supportedRuntimes, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toStreamSourceEntry, toastCapability, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, valveCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|
|
@@ -2008,6 +2008,111 @@ function parseJsonArray(text) {
|
|
|
2008
2008
|
}
|
|
2009
2009
|
}
|
|
2010
2010
|
//#endregion
|
|
2011
|
+
//#region src/generated/device-scoped-caps.ts
|
|
2012
|
+
/**
|
|
2013
|
+
* AUTO-GENERATED by scripts/generate-device-scoped-caps.ts — DO NOT EDIT.
|
|
2014
|
+
*
|
|
2015
|
+
* Every `scope: 'device'` capability name, as plain data — so a forked runner
|
|
2016
|
+
* can answer "may a rule actuate this?" without importing the schema barrel
|
|
2017
|
+
* (~144MB RSS per runner, D28).
|
|
2018
|
+
*
|
|
2019
|
+
* Coverage: 80 device-scoped capabilities.
|
|
2020
|
+
*/
|
|
2021
|
+
var DEVICE_SCOPED_CAPS = new Set([
|
|
2022
|
+
"accessories",
|
|
2023
|
+
"air-quality-sensor",
|
|
2024
|
+
"alarm-panel",
|
|
2025
|
+
"ambient-light-sensor",
|
|
2026
|
+
"audio-analysis",
|
|
2027
|
+
"audio-metrics",
|
|
2028
|
+
"automation-control",
|
|
2029
|
+
"battery",
|
|
2030
|
+
"binary",
|
|
2031
|
+
"brightness",
|
|
2032
|
+
"button",
|
|
2033
|
+
"camera-credentials",
|
|
2034
|
+
"camera-pipeline-config",
|
|
2035
|
+
"camera-streams",
|
|
2036
|
+
"carbon-monoxide",
|
|
2037
|
+
"climate-control",
|
|
2038
|
+
"color",
|
|
2039
|
+
"connectivity",
|
|
2040
|
+
"consumables",
|
|
2041
|
+
"contact",
|
|
2042
|
+
"control",
|
|
2043
|
+
"cover",
|
|
2044
|
+
"day-night",
|
|
2045
|
+
"detection-pipeline",
|
|
2046
|
+
"device-discovery",
|
|
2047
|
+
"device-ops",
|
|
2048
|
+
"device-status",
|
|
2049
|
+
"doorbell",
|
|
2050
|
+
"enum-sensor",
|
|
2051
|
+
"event-emitter",
|
|
2052
|
+
"events",
|
|
2053
|
+
"fan-control",
|
|
2054
|
+
"feature-probe",
|
|
2055
|
+
"flood",
|
|
2056
|
+
"gas",
|
|
2057
|
+
"humidifier",
|
|
2058
|
+
"humidity-sensor",
|
|
2059
|
+
"image",
|
|
2060
|
+
"image-settings",
|
|
2061
|
+
"intercom",
|
|
2062
|
+
"lawn-mower-control",
|
|
2063
|
+
"lock-control",
|
|
2064
|
+
"media-player",
|
|
2065
|
+
"motion",
|
|
2066
|
+
"motion-detection",
|
|
2067
|
+
"motion-trigger",
|
|
2068
|
+
"motion-zones",
|
|
2069
|
+
"native-object-detection",
|
|
2070
|
+
"notifier",
|
|
2071
|
+
"numeric-sensor",
|
|
2072
|
+
"osd",
|
|
2073
|
+
"pet-feeder",
|
|
2074
|
+
"pipeline-analytics",
|
|
2075
|
+
"power-meter",
|
|
2076
|
+
"presence",
|
|
2077
|
+
"pressure-sensor",
|
|
2078
|
+
"privacy-mask",
|
|
2079
|
+
"ptz",
|
|
2080
|
+
"ptz-autotrack",
|
|
2081
|
+
"reboot",
|
|
2082
|
+
"scene-monitor",
|
|
2083
|
+
"script-runner",
|
|
2084
|
+
"smoke",
|
|
2085
|
+
"snapshot",
|
|
2086
|
+
"stream-catalog",
|
|
2087
|
+
"stream-params",
|
|
2088
|
+
"switch",
|
|
2089
|
+
"tamper",
|
|
2090
|
+
"temperature-sensor",
|
|
2091
|
+
"update",
|
|
2092
|
+
"vacuum-control",
|
|
2093
|
+
"valve",
|
|
2094
|
+
"vibration",
|
|
2095
|
+
"videoclips",
|
|
2096
|
+
"water-heater",
|
|
2097
|
+
"weather",
|
|
2098
|
+
"webrtc-session",
|
|
2099
|
+
"zone-analytics",
|
|
2100
|
+
"zone-rules",
|
|
2101
|
+
"zones"
|
|
2102
|
+
]);
|
|
2103
|
+
/**
|
|
2104
|
+
* True when `capName` is a device capability.
|
|
2105
|
+
*
|
|
2106
|
+
* This is the ONLY boundary on what a notification rule may actuate. A rule can
|
|
2107
|
+
* be authored by a non-admin and the runner executes with the addon's
|
|
2108
|
+
* privileges, so an unbounded action would be an arbitrary RPC channel with a
|
|
2109
|
+
* privilege escalation attached. Device scope excludes the system caps
|
|
2110
|
+
* (`device-manager.removeDevice` and friends) by construction.
|
|
2111
|
+
*/
|
|
2112
|
+
function isDeviceScopedCap(capName) {
|
|
2113
|
+
return DEVICE_SCOPED_CAPS.has(capName);
|
|
2114
|
+
}
|
|
2115
|
+
//#endregion
|
|
2011
2116
|
//#region src/device/device-type.ts
|
|
2012
2117
|
var DeviceType = /* @__PURE__ */ function(DeviceType) {
|
|
2013
2118
|
DeviceType["Camera"] = "camera";
|
|
@@ -3610,6 +3715,12 @@ Object.defineProperty(exports, "DATAPLANE_SECRET_HEADER", {
|
|
|
3610
3715
|
return DATAPLANE_SECRET_HEADER;
|
|
3611
3716
|
}
|
|
3612
3717
|
});
|
|
3718
|
+
Object.defineProperty(exports, "DEVICE_SCOPED_CAPS", {
|
|
3719
|
+
enumerable: true,
|
|
3720
|
+
get: function() {
|
|
3721
|
+
return DEVICE_SCOPED_CAPS;
|
|
3722
|
+
}
|
|
3723
|
+
});
|
|
3613
3724
|
Object.defineProperty(exports, "DEVICE_SETTINGS_CONTRIBUTION_METHODS", {
|
|
3614
3725
|
enumerable: true,
|
|
3615
3726
|
get: function() {
|
|
@@ -3886,6 +3997,12 @@ Object.defineProperty(exports, "isDeviceConfigCap", {
|
|
|
3886
3997
|
return isDeviceConfigCap;
|
|
3887
3998
|
}
|
|
3888
3999
|
});
|
|
4000
|
+
Object.defineProperty(exports, "isDeviceScopedCap", {
|
|
4001
|
+
enumerable: true,
|
|
4002
|
+
get: function() {
|
|
4003
|
+
return isDeviceScopedCap;
|
|
4004
|
+
}
|
|
4005
|
+
});
|
|
3889
4006
|
Object.defineProperty(exports, "isEvent", {
|
|
3890
4007
|
enumerable: true,
|
|
3891
4008
|
get: function() {
|
|
@@ -2008,6 +2008,111 @@ function parseJsonArray(text) {
|
|
|
2008
2008
|
}
|
|
2009
2009
|
}
|
|
2010
2010
|
//#endregion
|
|
2011
|
+
//#region src/generated/device-scoped-caps.ts
|
|
2012
|
+
/**
|
|
2013
|
+
* AUTO-GENERATED by scripts/generate-device-scoped-caps.ts — DO NOT EDIT.
|
|
2014
|
+
*
|
|
2015
|
+
* Every `scope: 'device'` capability name, as plain data — so a forked runner
|
|
2016
|
+
* can answer "may a rule actuate this?" without importing the schema barrel
|
|
2017
|
+
* (~144MB RSS per runner, D28).
|
|
2018
|
+
*
|
|
2019
|
+
* Coverage: 80 device-scoped capabilities.
|
|
2020
|
+
*/
|
|
2021
|
+
var DEVICE_SCOPED_CAPS = new Set([
|
|
2022
|
+
"accessories",
|
|
2023
|
+
"air-quality-sensor",
|
|
2024
|
+
"alarm-panel",
|
|
2025
|
+
"ambient-light-sensor",
|
|
2026
|
+
"audio-analysis",
|
|
2027
|
+
"audio-metrics",
|
|
2028
|
+
"automation-control",
|
|
2029
|
+
"battery",
|
|
2030
|
+
"binary",
|
|
2031
|
+
"brightness",
|
|
2032
|
+
"button",
|
|
2033
|
+
"camera-credentials",
|
|
2034
|
+
"camera-pipeline-config",
|
|
2035
|
+
"camera-streams",
|
|
2036
|
+
"carbon-monoxide",
|
|
2037
|
+
"climate-control",
|
|
2038
|
+
"color",
|
|
2039
|
+
"connectivity",
|
|
2040
|
+
"consumables",
|
|
2041
|
+
"contact",
|
|
2042
|
+
"control",
|
|
2043
|
+
"cover",
|
|
2044
|
+
"day-night",
|
|
2045
|
+
"detection-pipeline",
|
|
2046
|
+
"device-discovery",
|
|
2047
|
+
"device-ops",
|
|
2048
|
+
"device-status",
|
|
2049
|
+
"doorbell",
|
|
2050
|
+
"enum-sensor",
|
|
2051
|
+
"event-emitter",
|
|
2052
|
+
"events",
|
|
2053
|
+
"fan-control",
|
|
2054
|
+
"feature-probe",
|
|
2055
|
+
"flood",
|
|
2056
|
+
"gas",
|
|
2057
|
+
"humidifier",
|
|
2058
|
+
"humidity-sensor",
|
|
2059
|
+
"image",
|
|
2060
|
+
"image-settings",
|
|
2061
|
+
"intercom",
|
|
2062
|
+
"lawn-mower-control",
|
|
2063
|
+
"lock-control",
|
|
2064
|
+
"media-player",
|
|
2065
|
+
"motion",
|
|
2066
|
+
"motion-detection",
|
|
2067
|
+
"motion-trigger",
|
|
2068
|
+
"motion-zones",
|
|
2069
|
+
"native-object-detection",
|
|
2070
|
+
"notifier",
|
|
2071
|
+
"numeric-sensor",
|
|
2072
|
+
"osd",
|
|
2073
|
+
"pet-feeder",
|
|
2074
|
+
"pipeline-analytics",
|
|
2075
|
+
"power-meter",
|
|
2076
|
+
"presence",
|
|
2077
|
+
"pressure-sensor",
|
|
2078
|
+
"privacy-mask",
|
|
2079
|
+
"ptz",
|
|
2080
|
+
"ptz-autotrack",
|
|
2081
|
+
"reboot",
|
|
2082
|
+
"scene-monitor",
|
|
2083
|
+
"script-runner",
|
|
2084
|
+
"smoke",
|
|
2085
|
+
"snapshot",
|
|
2086
|
+
"stream-catalog",
|
|
2087
|
+
"stream-params",
|
|
2088
|
+
"switch",
|
|
2089
|
+
"tamper",
|
|
2090
|
+
"temperature-sensor",
|
|
2091
|
+
"update",
|
|
2092
|
+
"vacuum-control",
|
|
2093
|
+
"valve",
|
|
2094
|
+
"vibration",
|
|
2095
|
+
"videoclips",
|
|
2096
|
+
"water-heater",
|
|
2097
|
+
"weather",
|
|
2098
|
+
"webrtc-session",
|
|
2099
|
+
"zone-analytics",
|
|
2100
|
+
"zone-rules",
|
|
2101
|
+
"zones"
|
|
2102
|
+
]);
|
|
2103
|
+
/**
|
|
2104
|
+
* True when `capName` is a device capability.
|
|
2105
|
+
*
|
|
2106
|
+
* This is the ONLY boundary on what a notification rule may actuate. A rule can
|
|
2107
|
+
* be authored by a non-admin and the runner executes with the addon's
|
|
2108
|
+
* privileges, so an unbounded action would be an arbitrary RPC channel with a
|
|
2109
|
+
* privilege escalation attached. Device scope excludes the system caps
|
|
2110
|
+
* (`device-manager.removeDevice` and friends) by construction.
|
|
2111
|
+
*/
|
|
2112
|
+
function isDeviceScopedCap(capName) {
|
|
2113
|
+
return DEVICE_SCOPED_CAPS.has(capName);
|
|
2114
|
+
}
|
|
2115
|
+
//#endregion
|
|
2011
2116
|
//#region src/device/device-type.ts
|
|
2012
2117
|
var DeviceType = /* @__PURE__ */ function(DeviceType) {
|
|
2013
2118
|
DeviceType["Camera"] = "camera";
|
|
@@ -3544,4 +3649,4 @@ function sleepCancellable(ms, signal) {
|
|
|
3544
3649
|
});
|
|
3545
3650
|
}
|
|
3546
3651
|
//#endregion
|
|
3547
|
-
export {
|
|
3652
|
+
export { FrameHandleSchema as $, parseJsonArray as A, readinessKey as B, DEVICE_SCOPED_CAPS as C, hydrateSchema as Ct, asJsonObject as D, asJsonArray as E, readNodePin as F, CamProfileSchema as G, BrokerStatsSchema as H, DATAPLANE_SECRET_HEADER as I, CameraStreamSchema as J, CamStreamKindSchema as K, ReadinessRegistry as L, parseJsonUnknown as M, CAP_NODE_PIN_CONTEXT_KEY as N, asNumber as O, nodePin as P, FrameHandleFormatSchema as Q, ReadinessTimeoutError as R, DeviceType as S, collectHydratedFieldValues as St, asBoolean as T, DisposerChain as Tt, BrokerStatusSchema as U, scopeKey as V, CAM_PROFILE_ORDER as W, DecodedFrameSchema as X, DecodedAudioChunkSchema as Y, EncodedPacketSchema as Z, resolveCapMount as _, emitReadiness as _t, viewerUiCapability as a, SubscribeAudioChunksInputSchema as at, DeviceFeature as b, WELL_KNOWN_TAB_MAP as bt, createLazyTrpcSource as c, SubscribeFramesResultSchema as ct, DEVICE_SETTINGS_CONTRIBUTION_METHODS as d, parseProfileBrokerId as dt, ProfileRtspEntrySchema as et, DEVICE_STATUS_METHOD as f, selectAssignedProfileSlots as ft, method as g, createEvent as gt, isDeviceConfigCap as h, createDurableState as ht, deviceOpsCapability as i, StreamSourceSchema as it, parseJsonObject as j, asString as k, createMirrorSource as l, makeProfileBrokerId as lt, expandCapMethods as m, normalizeAddonInitResult as mt, sleepCancellable as n, ProfileSlotStatusSchema as nt, adminUiCapability as o, SubscribeAudioChunksResultSchema as ot, event as p, BaseAddon as pt, CamStreamResolutionSchema as q, RawStateResultSchema as r, StreamSourceEntrySchema$1 as rt, createDeviceProxy as s, SubscribeFramesInputSchema as st, sleep as t, ProfileSlotSchema as tt, createSliceHandle as u, makeSourceBrokerId as ut, systemMethod as v, isEvent as vt, isDeviceScopedCap as w, resolveHydratedFieldValue as wt, DeviceRole as x, collectHydratedFieldEntries as xt, ChargingStatus as y, WELL_KNOWN_TABS as yt, emitDownForOwnedCaps as z };
|