@camstack/types 1.2.25 → 1.2.26
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/capabilities/index.d.ts +2 -2
- package/dist/capabilities/notification-rules.cap.d.ts +63 -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/index.d.ts +1 -0
- package/dist/index.js +110 -1
- package/dist/index.mjs +107 -2
- package/package.json +1 -1
|
@@ -74,7 +74,7 @@ export { AddBrokerInputSchema, BrokerConnectionDetailsSchema, BrokerInfoSchema,
|
|
|
74
74
|
export type { NetworkAccessStatus, NetworkEndpoint } from './network-access.cap.js';
|
|
75
75
|
export { NetworkAccessStatusSchema, NetworkEndpointSchema, networkAccessCapability, } from './network-access.cap.js';
|
|
76
76
|
export { type Attachment, type AttachmentMediaType, AttachmentMediaTypeSchema, AttachmentSchema, type DiscoveredTarget, DiscoveredTargetSchema, type INotificationOutputProvider, type NotificationAction, NotificationActionSchema, type NotificationFormat, NotificationFormatSchema, NotificationSchema, notificationOutputCapability, type RenderedAs, RenderedAsSchema, type SendResult, SendResultSchema, type Target, type TargetKind, type TargetKindCaps, TargetKindCapsSchema, type TargetKindLevel, TargetKindLevelSchema, TargetKindSchema, TargetSchema, type TestResult, TestResultSchema, } from './notification-output.cap.js';
|
|
77
|
-
export { type INotificationRulesProvider, NC_CONDITION_CATALOG, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_SNOOZE_MAX_MINUTES, type NcConditionDescriptor, NcConditionDescriptorSchema, type NcConditions, NcConditionsSchema, type NcCrossing, NcCrossingSchema, type NcDelivery, NcDeliverySchema, type NcHistoryEntry, NcHistoryEntrySchema, type NcHistoryFilter, NcHistoryFilterSchema, type NcHistoryRecordKind, NcHistoryRecordKindSchema, type NcHistoryStatus, NcHistoryStatusSchema, type NcHistorySubject, NcHistorySubjectSchema, type NcMediaFrame, NcMediaFrameSchema, type NcMediaPolicy, NcMediaPolicySchema, type NcOccupancyCondition, NcOccupancyConditionSchema, type NcPlateMatcher, NcPlateMatcherSchema, type NcRule, type NcRuleInput, NcRuleInputSchema, type NcRulePatch, NcRulePatchSchema, NcRuleSchema, type NcRuleTarget, NcRuleTargetSchema, type NcSchedule, NcScheduleSchema, type NcScheduleWindow, NcScheduleWindowSchema, type NcSnooze, type NcSnoozeInput, NcSnoozeInputSchema, NcSnoozeSchema, type NcSnoozeScope, NcSnoozeScopeSchema, type NcSnoozeSuppressed, NcSnoozeSuppressedSchema, type NcTestResult, NcTestResultSchema, type NcThrottle, type NcThrottleGranularity, NcThrottleGranularitySchema, NcThrottleSchema, type NcZoneCondition, NcZoneConditionSchema, notificationRulesCapability, } from './notification-rules.cap.js';
|
|
77
|
+
export { type INotificationRulesProvider, NC_CONDITION_CATALOG, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_SNOOZE_MAX_MINUTES, type NcConditionDescriptor, NcConditionDescriptorSchema, type NcConditions, NcConditionsSchema, type NcCrossing, NcCrossingSchema, type NcDeviceStateCondition, NcDeviceStateConditionSchema, type NcDelivery, NcDeliverySchema, type NcHistoryEntry, NcHistoryEntrySchema, type NcHistoryFilter, NcHistoryFilterSchema, type NcHistoryRecordKind, NcHistoryRecordKindSchema, type NcHistoryStatus, NcHistoryStatusSchema, type NcHistorySubject, NcHistorySubjectSchema, type NcMediaFrame, NcMediaFrameSchema, type NcMediaPolicy, NcMediaPolicySchema, type NcOccupancyCondition, NcOccupancyConditionSchema, type NcPlateMatcher, NcPlateMatcherSchema, type NcRule, type NcRuleInput, NcRuleInputSchema, type NcRulePatch, NcRulePatchSchema, NcRuleSchema, type NcRuleTarget, NcRuleTargetSchema, type NcSchedule, NcScheduleSchema, type NcScheduleWindow, NcScheduleWindowSchema, type NcSnooze, type NcSnoozeInput, NcSnoozeInputSchema, NcSnoozeSchema, type NcSnoozeScope, NcSnoozeScopeSchema, type NcSnoozeSuppressed, NcSnoozeSuppressedSchema, type NcTestResult, NcTestResultSchema, type NcThrottle, type NcThrottleGranularity, NcThrottleGranularitySchema, NcThrottleSchema, type NcZoneCondition, NcZoneConditionSchema, notificationRulesCapability, } from './notification-rules.cap.js';
|
|
78
78
|
export { type IOauthIntegrationProvider, type OauthIntegrationDescriptor, OauthIntegrationDescriptorSchema, oauthIntegrationCapability, } from './oauth-integration.cap.js';
|
|
79
79
|
export { type AudioEvent, AudioEventSchema, type DetectionSource, DetectionSourceSchema, type EventKind, type EventKindCategory, EventKindCategorySchema, type EventKindDescriptor, EventKindDescriptorSchema, type EventKindIcon, EventKindIconSchema, EventKindSchema, type EventPruneCounts, type EventStoreDeviceFootprint, type EventStoreFootprint, type IPipelineAnalyticsProvider, type KeyEvent, KeyEventSchema, type MediaFile, type MediaFileKind, MediaFileSchema, type MotionEvent, MotionEventSchema, type ObjectEvent, ObjectEventSchema, pipelineAnalyticsCapability, type RecentTracksPage, RecentTracksPageSchema, type RecentTracksQuery, RecentTracksQueryInput, type ScoredObjectEvent, ScoredObjectEventSchema, type SensorEvent, SensorEventSchema, type Track, type TrackCascadeCounts, TrackCascadeCountsSchema, type TrackEnvelope, TrackEnvelopeSchema, TrackedDetectionSchema, type TrackProjection, TrackProjectionSchema, TrackSchema, type TrackState, TrackStateSchema, type TrackZoneFilter, TrackZoneFilterSchema, type ZoneCrossing, type ZoneCrossingDirection, ZoneCrossingDirectionSchema, ZoneCrossingSchema, } from './pipeline-analytics.cap.js';
|
|
80
80
|
export type { NativeCropRef, PipelineStepInputOutput, PipelineValidationIssue, PipelineValidationResult, } from './pipeline-executor.cap.js';
|
|
@@ -99,7 +99,7 @@ export { type IStorageCapProvider, StorageLocationTypeSchema, storageCapability,
|
|
|
99
99
|
export { type EvictableUsage, type EvictResult, type IStorageEvictableProvider, storageEvictableCapability, } from './storage-evictable.cap.js';
|
|
100
100
|
export { AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, type IStorageProviderImpl, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, storageProviderCapability, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, } from './storage-provider.cap.js';
|
|
101
101
|
export type { AudioCodecTarget, BrokerAudioClient, BrokerClients, BrokerConsumerAttribution, BrokerConsumerKind, BrokerDecodedClient, BrokerEncodedClient, BrokerRtspClient, GetStreamWithCodecInput, PlaceholderReason, RtpSource, VideoCodecTarget, } from './stream-broker.cap.js';
|
|
102
|
-
export { BrokerAudioClientSchema, BrokerClientsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, BrokerRtspClientSchema, GetStreamWithCodecInputSchema, PlaceholderReasonSchema, RtpSourceSchema, RtspRestreamEntrySchema, type StreamFormat, StreamFormatSchema, streamBrokerCapability, } from './stream-broker.cap.js';
|
|
102
|
+
export { BrokerAudioClientSchema, BrokerClientsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, BrokerRtspClientSchema, GetStreamWithCodecInputSchema, PlaceholderReasonSchema, RtpSourceSchema, RtspRestreamEntrySchema, type StreamFormat, StreamFormatSchema, streamBrokerCapability, type StreamBrokerClient, } from './stream-broker.cap.js';
|
|
103
103
|
export type { ITurnProvider } from './turn-provider.cap.js';
|
|
104
104
|
export { TurnServerSchema, turnProviderCapability } from './turn-provider.cap.js';
|
|
105
105
|
export type { IUserPasskeysProvider, PasskeySummary } from './user-passkeys.cap.js';
|
|
@@ -145,7 +145,26 @@ export type NcZoneCondition = z.infer<typeof NcZoneConditionSchema>;
|
|
|
145
145
|
* The P1 condition set — a flat AND of groups; absent group = pass;
|
|
146
146
|
* membership lists are OR within the list (spec §2.3).
|
|
147
147
|
*/
|
|
148
|
+
/**
|
|
149
|
+
* "This rule applies only while `deviceId` is in one of `states`."
|
|
150
|
+
*
|
|
151
|
+
* The states are the DEVICE's own vocabulary — `AlarmState` for a panel,
|
|
152
|
+
* `on`/`off` for a switch — not a normalised set, because normalising would
|
|
153
|
+
* make the condition lie about devices whose states have no equivalent.
|
|
154
|
+
*
|
|
155
|
+
* An unreadable state does NOT match: see the engine's fail-closed gate. A
|
|
156
|
+
* condition that fired on "I could not read it" would be worse than no gate.
|
|
157
|
+
*/
|
|
158
|
+
export declare const NcDeviceStateConditionSchema: z.ZodObject<{
|
|
159
|
+
deviceId: z.ZodNumber;
|
|
160
|
+
states: z.ZodArray<z.ZodString>;
|
|
161
|
+
}, z.core.$strip>;
|
|
162
|
+
export type NcDeviceStateCondition = z.infer<typeof NcDeviceStateConditionSchema>;
|
|
148
163
|
export declare const NcConditionsSchema: z.ZodObject<{
|
|
164
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
165
|
+
deviceId: z.ZodNumber;
|
|
166
|
+
states: z.ZodArray<z.ZodString>;
|
|
167
|
+
}, z.core.$strip>>;
|
|
149
168
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
150
169
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
151
170
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -308,6 +327,10 @@ export declare const NcRuleInputSchema: z.ZodObject<{
|
|
|
308
327
|
"package-event": "package-event";
|
|
309
328
|
}>;
|
|
310
329
|
conditions: z.ZodDefault<z.ZodObject<{
|
|
330
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
331
|
+
deviceId: z.ZodNumber;
|
|
332
|
+
states: z.ZodArray<z.ZodString>;
|
|
333
|
+
}, z.core.$strip>>;
|
|
311
334
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
312
335
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
313
336
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -445,6 +468,10 @@ export declare const NcRulePatchSchema: z.ZodObject<{
|
|
|
445
468
|
"package-event": "package-event";
|
|
446
469
|
}>>;
|
|
447
470
|
conditions: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
471
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
472
|
+
deviceId: z.ZodNumber;
|
|
473
|
+
states: z.ZodArray<z.ZodString>;
|
|
474
|
+
}, z.core.$strip>>;
|
|
448
475
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
449
476
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
450
477
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -575,6 +602,10 @@ export declare const NcRuleSchema: z.ZodObject<{
|
|
|
575
602
|
"package-event": "package-event";
|
|
576
603
|
}>;
|
|
577
604
|
conditions: z.ZodDefault<z.ZodObject<{
|
|
605
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
606
|
+
deviceId: z.ZodNumber;
|
|
607
|
+
states: z.ZodArray<z.ZodString>;
|
|
608
|
+
}, z.core.$strip>>;
|
|
578
609
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
579
610
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
580
611
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -721,8 +752,8 @@ export declare const NcConditionDescriptorSchema: z.ZodObject<{
|
|
|
721
752
|
label: "label";
|
|
722
753
|
scope: "scope";
|
|
723
754
|
class: "class";
|
|
724
|
-
schedule: "schedule";
|
|
725
755
|
zones: "zones";
|
|
756
|
+
schedule: "schedule";
|
|
726
757
|
package: "package";
|
|
727
758
|
occupancy: "occupancy";
|
|
728
759
|
quality: "quality";
|
|
@@ -730,6 +761,7 @@ export declare const NcConditionDescriptorSchema: z.ZodObject<{
|
|
|
730
761
|
label: z.ZodString;
|
|
731
762
|
valueType: z.ZodEnum<{
|
|
732
763
|
number: "number";
|
|
764
|
+
deviceState: "deviceState";
|
|
733
765
|
schedule: "schedule";
|
|
734
766
|
packagePhase: "packagePhase";
|
|
735
767
|
occupancy: "occupancy";
|
|
@@ -956,6 +988,10 @@ export declare const notificationRulesCapability: {
|
|
|
956
988
|
"package-event": "package-event";
|
|
957
989
|
}>;
|
|
958
990
|
conditions: z.ZodDefault<z.ZodObject<{
|
|
991
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
992
|
+
deviceId: z.ZodNumber;
|
|
993
|
+
states: z.ZodArray<z.ZodString>;
|
|
994
|
+
}, z.core.$strip>>;
|
|
959
995
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
960
996
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
961
997
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1092,6 +1128,10 @@ export declare const notificationRulesCapability: {
|
|
|
1092
1128
|
"package-event": "package-event";
|
|
1093
1129
|
}>;
|
|
1094
1130
|
conditions: z.ZodDefault<z.ZodObject<{
|
|
1131
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
1132
|
+
deviceId: z.ZodNumber;
|
|
1133
|
+
states: z.ZodArray<z.ZodString>;
|
|
1134
|
+
}, z.core.$strip>>;
|
|
1095
1135
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1096
1136
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1097
1137
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1226,6 +1266,10 @@ export declare const notificationRulesCapability: {
|
|
|
1226
1266
|
"package-event": "package-event";
|
|
1227
1267
|
}>;
|
|
1228
1268
|
conditions: z.ZodDefault<z.ZodObject<{
|
|
1269
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
1270
|
+
deviceId: z.ZodNumber;
|
|
1271
|
+
states: z.ZodArray<z.ZodString>;
|
|
1272
|
+
}, z.core.$strip>>;
|
|
1229
1273
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1230
1274
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1231
1275
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1354,6 +1398,10 @@ export declare const notificationRulesCapability: {
|
|
|
1354
1398
|
"package-event": "package-event";
|
|
1355
1399
|
}>;
|
|
1356
1400
|
conditions: z.ZodDefault<z.ZodObject<{
|
|
1401
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
1402
|
+
deviceId: z.ZodNumber;
|
|
1403
|
+
states: z.ZodArray<z.ZodString>;
|
|
1404
|
+
}, z.core.$strip>>;
|
|
1357
1405
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1358
1406
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1359
1407
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1491,6 +1539,10 @@ export declare const notificationRulesCapability: {
|
|
|
1491
1539
|
"package-event": "package-event";
|
|
1492
1540
|
}>>;
|
|
1493
1541
|
conditions: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
1542
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
1543
|
+
deviceId: z.ZodNumber;
|
|
1544
|
+
states: z.ZodArray<z.ZodString>;
|
|
1545
|
+
}, z.core.$strip>>;
|
|
1494
1546
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1495
1547
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1496
1548
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1620,6 +1672,10 @@ export declare const notificationRulesCapability: {
|
|
|
1620
1672
|
"package-event": "package-event";
|
|
1621
1673
|
}>;
|
|
1622
1674
|
conditions: z.ZodDefault<z.ZodObject<{
|
|
1675
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
1676
|
+
deviceId: z.ZodNumber;
|
|
1677
|
+
states: z.ZodArray<z.ZodString>;
|
|
1678
|
+
}, z.core.$strip>>;
|
|
1623
1679
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1624
1680
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1625
1681
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1772,6 +1828,10 @@ export declare const notificationRulesCapability: {
|
|
|
1772
1828
|
"package-event": "package-event";
|
|
1773
1829
|
}>;
|
|
1774
1830
|
conditions: z.ZodDefault<z.ZodObject<{
|
|
1831
|
+
deviceState: z.ZodOptional<z.ZodObject<{
|
|
1832
|
+
deviceId: z.ZodNumber;
|
|
1833
|
+
states: z.ZodArray<z.ZodString>;
|
|
1834
|
+
}, z.core.$strip>>;
|
|
1775
1835
|
devices: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1776
1836
|
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1777
1837
|
classesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1925,8 +1985,8 @@ export declare const notificationRulesCapability: {
|
|
|
1925
1985
|
label: "label";
|
|
1926
1986
|
scope: "scope";
|
|
1927
1987
|
class: "class";
|
|
1928
|
-
schedule: "schedule";
|
|
1929
1988
|
zones: "zones";
|
|
1989
|
+
schedule: "schedule";
|
|
1930
1990
|
package: "package";
|
|
1931
1991
|
occupancy: "occupancy";
|
|
1932
1992
|
quality: "quality";
|
|
@@ -1934,6 +1994,7 @@ export declare const notificationRulesCapability: {
|
|
|
1934
1994
|
label: z.ZodString;
|
|
1935
1995
|
valueType: z.ZodEnum<{
|
|
1936
1996
|
number: "number";
|
|
1997
|
+
deviceState: "deviceState";
|
|
1937
1998
|
schedule: "schedule";
|
|
1938
1999
|
packagePhase: "packagePhase";
|
|
1939
2000
|
occupancy: "occupancy";
|
|
@@ -67,11 +67,11 @@ export declare const EventKindIconSchema: z.ZodEnum<{
|
|
|
67
67
|
vehicle: "vehicle";
|
|
68
68
|
animal: "animal";
|
|
69
69
|
motion: "motion";
|
|
70
|
+
smoke: "smoke";
|
|
70
71
|
package: "package";
|
|
71
72
|
water: "water";
|
|
72
73
|
door: "door";
|
|
73
74
|
pir: "pir";
|
|
74
|
-
smoke: "smoke";
|
|
75
75
|
}>;
|
|
76
76
|
export type EventKindIcon = z.infer<typeof EventKindIconSchema>;
|
|
77
77
|
export declare const EventKindCategorySchema: z.ZodEnum<{
|
|
@@ -104,11 +104,11 @@ declare const EventKindDescriptorSchema: z.ZodObject<{
|
|
|
104
104
|
vehicle: "vehicle";
|
|
105
105
|
animal: "animal";
|
|
106
106
|
motion: "motion";
|
|
107
|
+
smoke: "smoke";
|
|
107
108
|
package: "package";
|
|
108
109
|
water: "water";
|
|
109
110
|
door: "door";
|
|
110
111
|
pir: "pir";
|
|
111
|
-
smoke: "smoke";
|
|
112
112
|
}>;
|
|
113
113
|
category: z.ZodEnum<{
|
|
114
114
|
sensor: "sensor";
|
|
@@ -1075,11 +1075,11 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1075
1075
|
vehicle: "vehicle";
|
|
1076
1076
|
animal: "animal";
|
|
1077
1077
|
motion: "motion";
|
|
1078
|
+
smoke: "smoke";
|
|
1078
1079
|
package: "package";
|
|
1079
1080
|
water: "water";
|
|
1080
1081
|
door: "door";
|
|
1081
1082
|
pir: "pir";
|
|
1082
|
-
smoke: "smoke";
|
|
1083
1083
|
}>;
|
|
1084
1084
|
category: z.ZodEnum<{
|
|
1085
1085
|
sensor: "sensor";
|
|
@@ -871,3 +871,16 @@ export declare const streamBrokerCapability: {
|
|
|
871
871
|
};
|
|
872
872
|
export type IStreamBrokerProvider = InferProvider<typeof streamBrokerCapability>;
|
|
873
873
|
export { RtspRestreamEntrySchema };
|
|
874
|
+
/**
|
|
875
|
+
* The generated stream-broker client, as an addon sees it through `ctx.api`.
|
|
876
|
+
*
|
|
877
|
+
* Exists for the same reason as {@link SettingsStoreClient}: a caller that
|
|
878
|
+
* hand-writes its own narrow interface over this cap keeps compiling after a
|
|
879
|
+
* method is renamed or removed, and finds out at RUNTIME with a 404. That is
|
|
880
|
+
* exactly what happened to the Alexa exporter — it declared
|
|
881
|
+
* `getProfileSlotsForDevice`, the cap replaced it with `listAllProfileSlots`,
|
|
882
|
+
* the build stayed green, and every Alexa stream went black for weeks.
|
|
883
|
+
*
|
|
884
|
+
* Type against this, never against a local shape.
|
|
885
|
+
*/
|
|
886
|
+
export type StreamBrokerClient = import('../generated/addon-api.js').AddonApi['streamBroker'];
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Which capability says what a device's STATE is, and how to read it.
|
|
3
|
+
*
|
|
4
|
+
* `deviceManager.loadRuntimeState` returns every cap's slice for a device,
|
|
5
|
+
* keyed by the kebab-case cap name:
|
|
6
|
+
*
|
|
7
|
+
* { 'device-status': { online: true }, switch: { on: true, … } }
|
|
8
|
+
*
|
|
9
|
+
* "The state of this device" is not a thing the platform models — a switch has
|
|
10
|
+
* `on`, a contact has `entryOpen`, an alarm panel has `state`. So the mapping
|
|
11
|
+
* is a TABLE, declared here, rather than a guess made at read time. An
|
|
12
|
+
* unmapped cap yields no state, and no state never matches a gate: adding a cap
|
|
13
|
+
* cannot silently change what an existing rule does.
|
|
14
|
+
*
|
|
15
|
+
* ORDER MATTERS. A device usually carries several of these slices (a switch is
|
|
16
|
+
* also `device-status`), and the first match wins — so the list runs from most
|
|
17
|
+
* specific to least. `device-status` is deliberately absent: "online" is not a
|
|
18
|
+
* state a rule should gate on, and having it here would make every device match
|
|
19
|
+
* the first entry and mask its real one.
|
|
20
|
+
*/
|
|
21
|
+
/** How one capability's slice collapses to a single comparable string. */
|
|
22
|
+
interface StateReader {
|
|
23
|
+
/** kebab-case cap name, as `loadRuntimeState` keys it. */
|
|
24
|
+
readonly cap: string;
|
|
25
|
+
/** Field inside that slice. */
|
|
26
|
+
readonly field: string;
|
|
27
|
+
/**
|
|
28
|
+
* Vocabulary a rule author writes. A boolean field becomes these two words,
|
|
29
|
+
* in this order — `[whenTrue, whenFalse]`. Absent for a field that is already
|
|
30
|
+
* a string (the alarm's `state`, the cover's `state`).
|
|
31
|
+
*/
|
|
32
|
+
readonly booleanWords?: readonly [string, string];
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Most specific first. Extending this list is how a new device kind becomes
|
|
36
|
+
* gateable; nothing else needs to change.
|
|
37
|
+
*/
|
|
38
|
+
export declare const DEVICE_STATE_READERS: readonly StateReader[];
|
|
39
|
+
/**
|
|
40
|
+
* Collapse a device's full runtime state to the one string a rule compares
|
|
41
|
+
* against, or `undefined` when nothing in the table applies.
|
|
42
|
+
*
|
|
43
|
+
* `undefined` is the safe answer everywhere: the gate treats it as "does not
|
|
44
|
+
* match", so a device whose kind we cannot read simply never arms a rule.
|
|
45
|
+
*/
|
|
46
|
+
export declare function readDeviceStateFrom(runtimeState: Readonly<Record<string, unknown>>): string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* The states a rule editor can offer for a device, given its runtime state.
|
|
49
|
+
* Same table, same order — so the picker can never offer a value the gate
|
|
50
|
+
* would not recognise.
|
|
51
|
+
*/
|
|
52
|
+
export declare function stateVocabularyFor(runtimeState: Readonly<Record<string, unknown>>, alarmStates?: readonly string[]): readonly string[];
|
|
53
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ export { COCO_80_LABELS, COCO_TO_MACRO, MACRO_LABELS, } from './catalogs/coco-cl
|
|
|
121
121
|
export { AUDIO_MACRO_LABELS, YAMNET_TO_MACRO, APPLE_SA_TO_MACRO, mapAudioLabelToMacro, getAudioMacroClassIds, } from './catalogs/audio-classmap.js';
|
|
122
122
|
export { EVENT_TAXONOMY, TAXONOMY_COLORS, DEFAULT_EVENT_COLOR, getTaxonomyEntry, colorForKind, subKindsOf, type EventTaxonomyEntry, type EventTaxonomyCategory, type EventTaxonomyLevel, } from './catalogs/event-taxonomy.js';
|
|
123
123
|
export { NcTaxonomyEntrySchema, NcTaxonomySchema, buildNcTaxonomy, NC_TAXONOMY, type NcTaxonomyEntry, type NcTaxonomy, } from './catalogs/nc-taxonomy.js';
|
|
124
|
+
export { DEVICE_STATE_READERS, readDeviceStateFrom, stateVocabularyFor, } from './catalogs/device-state-vocabulary.js';
|
|
124
125
|
export type { CameraMotionConfig, CameraNativeDetectionConfig, CameraDetectionCapabilities, } from './types/camera-detection.js';
|
|
125
126
|
export { type DeviceTypeInfo, DEVICE_TYPE_INFO } from './types/device-type.js';
|
|
126
127
|
export type { DeviceBinding, DeviceBindingEntry } from './device/device-binding.js';
|
package/dist/index.js
CHANGED
|
@@ -2973,6 +2973,78 @@ function buildNcTaxonomy() {
|
|
|
2973
2973
|
/** The frozen NC taxonomy, derived once from the taxonomy dictionary. */
|
|
2974
2974
|
var NC_TAXONOMY = Object.freeze(buildNcTaxonomy());
|
|
2975
2975
|
//#endregion
|
|
2976
|
+
//#region src/catalogs/device-state-vocabulary.ts
|
|
2977
|
+
/**
|
|
2978
|
+
* Most specific first. Extending this list is how a new device kind becomes
|
|
2979
|
+
* gateable; nothing else needs to change.
|
|
2980
|
+
*/
|
|
2981
|
+
var DEVICE_STATE_READERS = [
|
|
2982
|
+
{
|
|
2983
|
+
cap: "alarm-panel",
|
|
2984
|
+
field: "state"
|
|
2985
|
+
},
|
|
2986
|
+
{
|
|
2987
|
+
cap: "cover",
|
|
2988
|
+
field: "state"
|
|
2989
|
+
},
|
|
2990
|
+
{
|
|
2991
|
+
cap: "presence",
|
|
2992
|
+
field: "state"
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
cap: "lock",
|
|
2996
|
+
field: "locked",
|
|
2997
|
+
booleanWords: ["locked", "unlocked"]
|
|
2998
|
+
},
|
|
2999
|
+
{
|
|
3000
|
+
cap: "contact",
|
|
3001
|
+
field: "entryOpen",
|
|
3002
|
+
booleanWords: ["open", "closed"]
|
|
3003
|
+
},
|
|
3004
|
+
{
|
|
3005
|
+
cap: "switch",
|
|
3006
|
+
field: "on",
|
|
3007
|
+
booleanWords: ["on", "off"]
|
|
3008
|
+
},
|
|
3009
|
+
{
|
|
3010
|
+
cap: "binary",
|
|
3011
|
+
field: "on",
|
|
3012
|
+
booleanWords: ["on", "off"]
|
|
3013
|
+
}
|
|
3014
|
+
];
|
|
3015
|
+
/**
|
|
3016
|
+
* Collapse a device's full runtime state to the one string a rule compares
|
|
3017
|
+
* against, or `undefined` when nothing in the table applies.
|
|
3018
|
+
*
|
|
3019
|
+
* `undefined` is the safe answer everywhere: the gate treats it as "does not
|
|
3020
|
+
* match", so a device whose kind we cannot read simply never arms a rule.
|
|
3021
|
+
*/
|
|
3022
|
+
function readDeviceStateFrom(runtimeState) {
|
|
3023
|
+
for (const reader of DEVICE_STATE_READERS) {
|
|
3024
|
+
const slice = runtimeState[reader.cap];
|
|
3025
|
+
if (slice === null || typeof slice !== "object") continue;
|
|
3026
|
+
const value = slice[reader.field];
|
|
3027
|
+
if (typeof value === "string" && value.length > 0) return value;
|
|
3028
|
+
if (typeof value === "boolean" && reader.booleanWords !== void 0) return value ? reader.booleanWords[0] : reader.booleanWords[1];
|
|
3029
|
+
}
|
|
3030
|
+
}
|
|
3031
|
+
/**
|
|
3032
|
+
* The states a rule editor can offer for a device, given its runtime state.
|
|
3033
|
+
* Same table, same order — so the picker can never offer a value the gate
|
|
3034
|
+
* would not recognise.
|
|
3035
|
+
*/
|
|
3036
|
+
function stateVocabularyFor(runtimeState, alarmStates = []) {
|
|
3037
|
+
for (const reader of DEVICE_STATE_READERS) {
|
|
3038
|
+
const slice = runtimeState[reader.cap];
|
|
3039
|
+
if (slice === null || typeof slice !== "object") continue;
|
|
3040
|
+
if (reader.booleanWords !== void 0) return [...reader.booleanWords];
|
|
3041
|
+
if (reader.cap === "alarm-panel") return [...alarmStates];
|
|
3042
|
+
const current = slice[reader.field];
|
|
3043
|
+
return typeof current === "string" ? [current] : [];
|
|
3044
|
+
}
|
|
3045
|
+
return [];
|
|
3046
|
+
}
|
|
3047
|
+
//#endregion
|
|
2976
3048
|
//#region src/types/device-type.ts
|
|
2977
3049
|
var DEVICE_TYPE_INFO = { ["camera"]: {
|
|
2978
3050
|
type: "camera",
|
|
@@ -4784,7 +4856,24 @@ var NcZoneConditionSchema = zod.z.object({
|
|
|
4784
4856
|
* The P1 condition set — a flat AND of groups; absent group = pass;
|
|
4785
4857
|
* membership lists are OR within the list (spec §2.3).
|
|
4786
4858
|
*/
|
|
4859
|
+
/**
|
|
4860
|
+
* "This rule applies only while `deviceId` is in one of `states`."
|
|
4861
|
+
*
|
|
4862
|
+
* The states are the DEVICE's own vocabulary — `AlarmState` for a panel,
|
|
4863
|
+
* `on`/`off` for a switch — not a normalised set, because normalising would
|
|
4864
|
+
* make the condition lie about devices whose states have no equivalent.
|
|
4865
|
+
*
|
|
4866
|
+
* An unreadable state does NOT match: see the engine's fail-closed gate. A
|
|
4867
|
+
* condition that fired on "I could not read it" would be worse than no gate.
|
|
4868
|
+
*/
|
|
4869
|
+
var NcDeviceStateConditionSchema = zod.z.object({
|
|
4870
|
+
deviceId: zod.z.number().int(),
|
|
4871
|
+
/** Any of these matches. */
|
|
4872
|
+
states: zod.z.array(zod.z.string().min(1)).min(1)
|
|
4873
|
+
});
|
|
4787
4874
|
var NcConditionsSchema = zod.z.object({
|
|
4875
|
+
/** Gate on ANOTHER device's current state (the alarm armed, a switch on). */
|
|
4876
|
+
deviceState: NcDeviceStateConditionSchema.optional(),
|
|
4788
4877
|
/** Device scope — absent = all devices. */
|
|
4789
4878
|
devices: zod.z.array(zod.z.number()).optional(),
|
|
4790
4879
|
/** Detector class names (any overlap with the record's class set). */
|
|
@@ -5149,7 +5238,8 @@ var NcConditionDescriptorSchema = zod.z.object({
|
|
|
5149
5238
|
"packagePhase",
|
|
5150
5239
|
"crossingSelect",
|
|
5151
5240
|
"polygonDraw",
|
|
5152
|
-
"occupancy"
|
|
5241
|
+
"occupancy",
|
|
5242
|
+
"deviceState"
|
|
5153
5243
|
]),
|
|
5154
5244
|
operator: zod.z.enum([
|
|
5155
5245
|
"in",
|
|
@@ -5408,6 +5498,21 @@ var NC_CONDITION_CATALOG = [
|
|
|
5408
5498
|
phase: "P1",
|
|
5409
5499
|
description: "pipeline / onboard / sensor; a record with no stamped source counts as pipeline."
|
|
5410
5500
|
},
|
|
5501
|
+
{
|
|
5502
|
+
id: "deviceState",
|
|
5503
|
+
group: "scope",
|
|
5504
|
+
label: "Device state",
|
|
5505
|
+
valueType: "deviceState",
|
|
5506
|
+
operator: "in",
|
|
5507
|
+
appliesTo: [
|
|
5508
|
+
"immediate",
|
|
5509
|
+
"track-end",
|
|
5510
|
+
"device-event",
|
|
5511
|
+
"package-event"
|
|
5512
|
+
],
|
|
5513
|
+
phase: "P2",
|
|
5514
|
+
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."
|
|
5515
|
+
},
|
|
5411
5516
|
{
|
|
5412
5517
|
id: "sensorKinds",
|
|
5413
5518
|
group: "device",
|
|
@@ -34285,6 +34390,7 @@ exports.DEVICE_BACKEND_TO_FORMAT = DEVICE_BACKEND_TO_FORMAT;
|
|
|
34285
34390
|
exports.DEVICE_CAP_NAMES = DEVICE_CAP_NAMES;
|
|
34286
34391
|
exports.DEVICE_PROFILES = DEVICE_PROFILES;
|
|
34287
34392
|
exports.DEVICE_SETTINGS_CONTRIBUTION_METHODS = require_sleep.DEVICE_SETTINGS_CONTRIBUTION_METHODS;
|
|
34393
|
+
exports.DEVICE_STATE_READERS = DEVICE_STATE_READERS;
|
|
34288
34394
|
exports.DEVICE_STATUS_METHOD = require_sleep.DEVICE_STATUS_METHOD;
|
|
34289
34395
|
exports.DEVICE_TYPE_CONTROL_KIND = DEVICE_TYPE_CONTROL_KIND;
|
|
34290
34396
|
exports.DEVICE_TYPE_INFO = DEVICE_TYPE_INFO;
|
|
@@ -34496,6 +34602,7 @@ exports.NcConditionDescriptorSchema = NcConditionDescriptorSchema;
|
|
|
34496
34602
|
exports.NcConditionsSchema = NcConditionsSchema;
|
|
34497
34603
|
exports.NcCrossingSchema = NcCrossingSchema;
|
|
34498
34604
|
exports.NcDeliverySchema = NcDeliverySchema;
|
|
34605
|
+
exports.NcDeviceStateConditionSchema = NcDeviceStateConditionSchema;
|
|
34499
34606
|
exports.NcHistoryEntrySchema = NcHistoryEntrySchema;
|
|
34500
34607
|
exports.NcHistoryFilterSchema = NcHistoryFilterSchema;
|
|
34501
34608
|
exports.NcHistoryRecordKindSchema = NcHistoryRecordKindSchema;
|
|
@@ -35001,6 +35108,7 @@ exports.procedureAuthKey = procedureAuthKey;
|
|
|
35001
35108
|
exports.ptzAutotrackCapability = ptzAutotrackCapability;
|
|
35002
35109
|
exports.ptzCapability = ptzCapability;
|
|
35003
35110
|
exports.pythonScriptForBackend = pythonScriptForBackend;
|
|
35111
|
+
exports.readDeviceStateFrom = readDeviceStateFrom;
|
|
35004
35112
|
exports.readNodePin = require_sleep.readNodePin;
|
|
35005
35113
|
exports.readinessKey = require_sleep.readinessKey;
|
|
35006
35114
|
exports.rebootCapability = rebootCapability;
|
|
@@ -35040,6 +35148,7 @@ exports.smtpProviderCapability = smtpProviderCapability;
|
|
|
35040
35148
|
exports.snapshotCapability = snapshotCapability;
|
|
35041
35149
|
exports.ssoBridgeCapability = ssoBridgeCapability;
|
|
35042
35150
|
exports.startReachabilityPoll = startReachabilityPoll;
|
|
35151
|
+
exports.stateVocabularyFor = stateVocabularyFor;
|
|
35043
35152
|
exports.storageCapability = storageCapability;
|
|
35044
35153
|
exports.storageEvictableCapability = storageEvictableCapability;
|
|
35045
35154
|
exports.storageProviderCapability = storageProviderCapability;
|
package/dist/index.mjs
CHANGED
|
@@ -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,24 @@ 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
|
+
* "This rule applies only while `deviceId` is in one of `states`."
|
|
4860
|
+
*
|
|
4861
|
+
* The states are the DEVICE's own vocabulary — `AlarmState` for a panel,
|
|
4862
|
+
* `on`/`off` for a switch — not a normalised set, because normalising would
|
|
4863
|
+
* make the condition lie about devices whose states have no equivalent.
|
|
4864
|
+
*
|
|
4865
|
+
* An unreadable state does NOT match: see the engine's fail-closed gate. A
|
|
4866
|
+
* condition that fired on "I could not read it" would be worse than no gate.
|
|
4867
|
+
*/
|
|
4868
|
+
var NcDeviceStateConditionSchema = z.object({
|
|
4869
|
+
deviceId: z.number().int(),
|
|
4870
|
+
/** Any of these matches. */
|
|
4871
|
+
states: z.array(z.string().min(1)).min(1)
|
|
4872
|
+
});
|
|
4786
4873
|
var NcConditionsSchema = z.object({
|
|
4874
|
+
/** Gate on ANOTHER device's current state (the alarm armed, a switch on). */
|
|
4875
|
+
deviceState: NcDeviceStateConditionSchema.optional(),
|
|
4787
4876
|
/** Device scope — absent = all devices. */
|
|
4788
4877
|
devices: z.array(z.number()).optional(),
|
|
4789
4878
|
/** Detector class names (any overlap with the record's class set). */
|
|
@@ -5148,7 +5237,8 @@ var NcConditionDescriptorSchema = z.object({
|
|
|
5148
5237
|
"packagePhase",
|
|
5149
5238
|
"crossingSelect",
|
|
5150
5239
|
"polygonDraw",
|
|
5151
|
-
"occupancy"
|
|
5240
|
+
"occupancy",
|
|
5241
|
+
"deviceState"
|
|
5152
5242
|
]),
|
|
5153
5243
|
operator: z.enum([
|
|
5154
5244
|
"in",
|
|
@@ -5407,6 +5497,21 @@ var NC_CONDITION_CATALOG = [
|
|
|
5407
5497
|
phase: "P1",
|
|
5408
5498
|
description: "pipeline / onboard / sensor; a record with no stamped source counts as pipeline."
|
|
5409
5499
|
},
|
|
5500
|
+
{
|
|
5501
|
+
id: "deviceState",
|
|
5502
|
+
group: "scope",
|
|
5503
|
+
label: "Device state",
|
|
5504
|
+
valueType: "deviceState",
|
|
5505
|
+
operator: "in",
|
|
5506
|
+
appliesTo: [
|
|
5507
|
+
"immediate",
|
|
5508
|
+
"track-end",
|
|
5509
|
+
"device-event",
|
|
5510
|
+
"package-event"
|
|
5511
|
+
],
|
|
5512
|
+
phase: "P2",
|
|
5513
|
+
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."
|
|
5514
|
+
},
|
|
5410
5515
|
{
|
|
5411
5516
|
id: "sensorKinds",
|
|
5412
5517
|
group: "device",
|
|
@@ -34113,4 +34218,4 @@ function enumerateInferenceDevices(hw) {
|
|
|
34113
34218
|
return out;
|
|
34114
34219
|
}
|
|
34115
34220
|
//#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 };
|
|
34221
|
+
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_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, 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, 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 };
|