@camstack/types 1.2.74 → 1.2.76
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 +19 -18
- package/dist/addon.js +59 -56
- package/dist/addon.mjs +59 -57
- package/dist/capabilities/alerts.cap.d.ts +5 -5
- package/dist/capabilities/battery.cap.d.ts +4 -4
- package/dist/capabilities/custom-model-registry.cap.d.ts +4 -4
- package/dist/capabilities/decoder.cap.d.ts +2 -2
- package/dist/capabilities/face-gallery.cap.d.ts +1 -1
- package/dist/capabilities/index.d.ts +3 -3
- package/dist/capabilities/lawn-mower-control.cap.d.ts +4 -4
- package/dist/capabilities/llm-runtime.cap.d.ts +121 -3
- package/dist/capabilities/llm.cap.d.ts +189 -4
- package/dist/capabilities/metrics-provider.cap.d.ts +2 -2
- package/dist/capabilities/model-convert.cap.d.ts +6 -6
- package/dist/capabilities/model-distributor.cap.d.ts +4 -4
- package/dist/capabilities/notification-output.cap.d.ts +9 -9
- package/dist/capabilities/notification-rules.cap.d.ts +11 -11
- package/dist/capabilities/osd-manager.cap.d.ts +6 -6
- package/dist/capabilities/pipeline-analytics.cap.d.ts +39 -39
- package/dist/capabilities/pipeline-executor.cap.d.ts +7 -7
- package/dist/capabilities/pipeline-orchestrator.cap.d.ts +6 -6
- package/dist/capabilities/pipeline-runner.cap.d.ts +2 -0
- package/dist/capabilities/platform-probe.cap.d.ts +2 -2
- package/dist/capabilities/recording.cap.d.ts +3 -3
- package/dist/capabilities/scene-monitor.cap.d.ts +68 -0
- package/dist/capabilities/stream-broker.cap.d.ts +6 -6
- package/dist/device/base-device-provider.d.ts +9 -0
- package/dist/encode-profile.d.ts +2 -2
- package/dist/generated/addon-api.d.ts +7 -0
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/system-proxy.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +241 -9
- package/dist/index.mjs +236 -10
- package/dist/interfaces/recording-config.d.ts +2 -2
- package/dist/interfaces/stream-broker.d.ts +9 -1
- package/dist/{sleep-CQayd2Su.mjs → sleep-BfRjZ3C3.mjs} +37 -1
- package/dist/{sleep-B-mRsuDp.js → sleep-DslGLq5_.js} +42 -0
- package/dist/types/models.d.ts +7 -7
- package/dist/util/boot-recovery-backoff.d.ts +26 -0
- package/package.json +1 -1
|
@@ -104,9 +104,9 @@ export declare const ModelDistributeInputSchema: z.ZodObject<{
|
|
|
104
104
|
nhwc: "nhwc";
|
|
105
105
|
}>>;
|
|
106
106
|
inputNormalization: z.ZodOptional<z.ZodEnum<{
|
|
107
|
+
none: "none";
|
|
107
108
|
"zero-one": "zero-one";
|
|
108
109
|
imagenet: "imagenet";
|
|
109
|
-
none: "none";
|
|
110
110
|
}>>;
|
|
111
111
|
outputProbabilities: z.ZodOptional<z.ZodBoolean>;
|
|
112
112
|
preprocessMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -134,8 +134,8 @@ export declare const ModelDistributeInputSchema: z.ZodObject<{
|
|
|
134
134
|
int8: "int8";
|
|
135
135
|
}>>;
|
|
136
136
|
optimization: z.ZodOptional<z.ZodEnum<{
|
|
137
|
-
standard: "standard";
|
|
138
137
|
fast: "fast";
|
|
138
|
+
standard: "standard";
|
|
139
139
|
}>>;
|
|
140
140
|
resolution: z.ZodOptional<z.ZodNumber>;
|
|
141
141
|
}, z.core.$strip>>;
|
|
@@ -247,9 +247,9 @@ export declare const modelDistributorCapability: {
|
|
|
247
247
|
nhwc: "nhwc";
|
|
248
248
|
}>>;
|
|
249
249
|
inputNormalization: z.ZodOptional<z.ZodEnum<{
|
|
250
|
+
none: "none";
|
|
250
251
|
"zero-one": "zero-one";
|
|
251
252
|
imagenet: "imagenet";
|
|
252
|
-
none: "none";
|
|
253
253
|
}>>;
|
|
254
254
|
outputProbabilities: z.ZodOptional<z.ZodBoolean>;
|
|
255
255
|
preprocessMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -277,8 +277,8 @@ export declare const modelDistributorCapability: {
|
|
|
277
277
|
int8: "int8";
|
|
278
278
|
}>>;
|
|
279
279
|
optimization: z.ZodOptional<z.ZodEnum<{
|
|
280
|
-
standard: "standard";
|
|
281
280
|
fast: "fast";
|
|
281
|
+
standard: "standard";
|
|
282
282
|
}>>;
|
|
283
283
|
resolution: z.ZodOptional<z.ZodNumber>;
|
|
284
284
|
}, z.core.$strip>>;
|
|
@@ -37,9 +37,9 @@ import { type InferProvider } from './capability-definition.js';
|
|
|
37
37
|
* adapter picks what it supports and the degrade engine filters the rest.
|
|
38
38
|
*/
|
|
39
39
|
export declare const AttachmentMediaTypeSchema: z.ZodEnum<{
|
|
40
|
-
image: "image";
|
|
41
40
|
audio: "audio";
|
|
42
41
|
icon: "icon";
|
|
42
|
+
image: "image";
|
|
43
43
|
video: "video";
|
|
44
44
|
gif: "gif";
|
|
45
45
|
}>;
|
|
@@ -52,9 +52,9 @@ export type AttachmentMediaType = z.infer<typeof AttachmentMediaTypeSchema>;
|
|
|
52
52
|
*/
|
|
53
53
|
export declare const AttachmentSchema: z.ZodObject<{
|
|
54
54
|
mediaType: z.ZodEnum<{
|
|
55
|
-
image: "image";
|
|
56
55
|
audio: "audio";
|
|
57
56
|
icon: "icon";
|
|
57
|
+
image: "image";
|
|
58
58
|
video: "video";
|
|
59
59
|
gif: "gif";
|
|
60
60
|
}>;
|
|
@@ -177,9 +177,9 @@ export declare const NotificationSchema: z.ZodObject<{
|
|
|
177
177
|
level: z.ZodOptional<z.ZodString>;
|
|
178
178
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
179
179
|
mediaType: z.ZodEnum<{
|
|
180
|
-
image: "image";
|
|
181
180
|
audio: "audio";
|
|
182
181
|
icon: "icon";
|
|
182
|
+
image: "image";
|
|
183
183
|
video: "video";
|
|
184
184
|
gif: "gif";
|
|
185
185
|
}>;
|
|
@@ -243,9 +243,9 @@ export type TargetKindLevel = z.infer<typeof TargetKindLevelSchema>;
|
|
|
243
243
|
/** Attachment capabilities for a kind (drives the degrade engine + test panel). */
|
|
244
244
|
export declare const TargetKindAttachmentsCapsSchema: z.ZodObject<{
|
|
245
245
|
mediaTypes: z.ZodArray<z.ZodEnum<{
|
|
246
|
-
image: "image";
|
|
247
246
|
audio: "audio";
|
|
248
247
|
icon: "icon";
|
|
248
|
+
image: "image";
|
|
249
249
|
video: "video";
|
|
250
250
|
gif: "gif";
|
|
251
251
|
}>>;
|
|
@@ -261,9 +261,9 @@ export declare const TargetKindAttachmentsCapsSchema: z.ZodObject<{
|
|
|
261
261
|
export declare const TargetKindCapsSchema: z.ZodObject<{
|
|
262
262
|
attachments: z.ZodObject<{
|
|
263
263
|
mediaTypes: z.ZodArray<z.ZodEnum<{
|
|
264
|
-
image: "image";
|
|
265
264
|
audio: "audio";
|
|
266
265
|
icon: "icon";
|
|
266
|
+
image: "image";
|
|
267
267
|
video: "video";
|
|
268
268
|
gif: "gif";
|
|
269
269
|
}>>;
|
|
@@ -312,9 +312,9 @@ export declare const TargetKindSchema: z.ZodObject<{
|
|
|
312
312
|
caps: z.ZodObject<{
|
|
313
313
|
attachments: z.ZodObject<{
|
|
314
314
|
mediaTypes: z.ZodArray<z.ZodEnum<{
|
|
315
|
-
image: "image";
|
|
316
315
|
audio: "audio";
|
|
317
316
|
icon: "icon";
|
|
317
|
+
image: "image";
|
|
318
318
|
video: "video";
|
|
319
319
|
gif: "gif";
|
|
320
320
|
}>>;
|
|
@@ -442,9 +442,9 @@ export declare const notificationOutputCapability: {
|
|
|
442
442
|
caps: z.ZodObject<{
|
|
443
443
|
attachments: z.ZodObject<{
|
|
444
444
|
mediaTypes: z.ZodArray<z.ZodEnum<{
|
|
445
|
-
image: "image";
|
|
446
445
|
audio: "audio";
|
|
447
446
|
icon: "icon";
|
|
447
|
+
image: "image";
|
|
448
448
|
video: "video";
|
|
449
449
|
gif: "gif";
|
|
450
450
|
}>>;
|
|
@@ -511,9 +511,9 @@ export declare const notificationOutputCapability: {
|
|
|
511
511
|
level: z.ZodOptional<z.ZodString>;
|
|
512
512
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
513
513
|
mediaType: z.ZodEnum<{
|
|
514
|
-
image: "image";
|
|
515
514
|
audio: "audio";
|
|
516
515
|
icon: "icon";
|
|
516
|
+
image: "image";
|
|
517
517
|
video: "video";
|
|
518
518
|
gif: "gif";
|
|
519
519
|
}>;
|
|
@@ -590,9 +590,9 @@ export declare const notificationOutputCapability: {
|
|
|
590
590
|
level: z.ZodOptional<z.ZodString>;
|
|
591
591
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
592
592
|
mediaType: z.ZodEnum<{
|
|
593
|
-
image: "image";
|
|
594
593
|
audio: "audio";
|
|
595
594
|
icon: "icon";
|
|
595
|
+
image: "image";
|
|
596
596
|
video: "video";
|
|
597
597
|
gif: "gif";
|
|
598
598
|
}>;
|
|
@@ -564,9 +564,9 @@ export declare const NcConditionsSchema: z.ZodObject<{
|
|
|
564
564
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
565
565
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
566
566
|
source: z.ZodOptional<z.ZodEnum<{
|
|
567
|
-
sensor: "sensor";
|
|
568
567
|
audio: "audio";
|
|
569
568
|
any: "any";
|
|
569
|
+
sensor: "sensor";
|
|
570
570
|
pipeline: "pipeline";
|
|
571
571
|
onboard: "onboard";
|
|
572
572
|
}>>;
|
|
@@ -842,9 +842,9 @@ export declare const NcRuleInputSchema: z.ZodObject<{
|
|
|
842
842
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
843
843
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
844
844
|
source: z.ZodOptional<z.ZodEnum<{
|
|
845
|
-
sensor: "sensor";
|
|
846
845
|
audio: "audio";
|
|
847
846
|
any: "any";
|
|
847
|
+
sensor: "sensor";
|
|
848
848
|
pipeline: "pipeline";
|
|
849
849
|
onboard: "onboard";
|
|
850
850
|
}>>;
|
|
@@ -1184,9 +1184,9 @@ export declare const NcRulePatchSchema: z.ZodObject<{
|
|
|
1184
1184
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
1185
1185
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1186
1186
|
source: z.ZodOptional<z.ZodEnum<{
|
|
1187
|
-
sensor: "sensor";
|
|
1188
1187
|
audio: "audio";
|
|
1189
1188
|
any: "any";
|
|
1189
|
+
sensor: "sensor";
|
|
1190
1190
|
pipeline: "pipeline";
|
|
1191
1191
|
onboard: "onboard";
|
|
1192
1192
|
}>>;
|
|
@@ -1343,9 +1343,9 @@ export declare const NcRuleSchema: z.ZodObject<{
|
|
|
1343
1343
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
1344
1344
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1345
1345
|
source: z.ZodOptional<z.ZodEnum<{
|
|
1346
|
-
sensor: "sensor";
|
|
1347
1346
|
audio: "audio";
|
|
1348
1347
|
any: "any";
|
|
1348
|
+
sensor: "sensor";
|
|
1349
1349
|
pipeline: "pipeline";
|
|
1350
1350
|
onboard: "onboard";
|
|
1351
1351
|
}>>;
|
|
@@ -2018,9 +2018,9 @@ export declare const notificationRulesCapability: {
|
|
|
2018
2018
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
2019
2019
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
2020
2020
|
source: z.ZodOptional<z.ZodEnum<{
|
|
2021
|
-
sensor: "sensor";
|
|
2022
2021
|
audio: "audio";
|
|
2023
2022
|
any: "any";
|
|
2023
|
+
sensor: "sensor";
|
|
2024
2024
|
pipeline: "pipeline";
|
|
2025
2025
|
onboard: "onboard";
|
|
2026
2026
|
}>>;
|
|
@@ -2271,9 +2271,9 @@ export declare const notificationRulesCapability: {
|
|
|
2271
2271
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
2272
2272
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
2273
2273
|
source: z.ZodOptional<z.ZodEnum<{
|
|
2274
|
-
sensor: "sensor";
|
|
2275
2274
|
audio: "audio";
|
|
2276
2275
|
any: "any";
|
|
2276
|
+
sensor: "sensor";
|
|
2277
2277
|
pipeline: "pipeline";
|
|
2278
2278
|
onboard: "onboard";
|
|
2279
2279
|
}>>;
|
|
@@ -2522,9 +2522,9 @@ export declare const notificationRulesCapability: {
|
|
|
2522
2522
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
2523
2523
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
2524
2524
|
source: z.ZodOptional<z.ZodEnum<{
|
|
2525
|
-
sensor: "sensor";
|
|
2526
2525
|
audio: "audio";
|
|
2527
2526
|
any: "any";
|
|
2527
|
+
sensor: "sensor";
|
|
2528
2528
|
pipeline: "pipeline";
|
|
2529
2529
|
onboard: "onboard";
|
|
2530
2530
|
}>>;
|
|
@@ -2767,9 +2767,9 @@ export declare const notificationRulesCapability: {
|
|
|
2767
2767
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
2768
2768
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
2769
2769
|
source: z.ZodOptional<z.ZodEnum<{
|
|
2770
|
-
sensor: "sensor";
|
|
2771
2770
|
audio: "audio";
|
|
2772
2771
|
any: "any";
|
|
2772
|
+
sensor: "sensor";
|
|
2773
2773
|
pipeline: "pipeline";
|
|
2774
2774
|
onboard: "onboard";
|
|
2775
2775
|
}>>;
|
|
@@ -3109,9 +3109,9 @@ export declare const notificationRulesCapability: {
|
|
|
3109
3109
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
3110
3110
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3111
3111
|
source: z.ZodOptional<z.ZodEnum<{
|
|
3112
|
-
sensor: "sensor";
|
|
3113
3112
|
audio: "audio";
|
|
3114
3113
|
any: "any";
|
|
3114
|
+
sensor: "sensor";
|
|
3115
3115
|
pipeline: "pipeline";
|
|
3116
3116
|
onboard: "onboard";
|
|
3117
3117
|
}>>;
|
|
@@ -3267,9 +3267,9 @@ export declare const notificationRulesCapability: {
|
|
|
3267
3267
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
3268
3268
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3269
3269
|
source: z.ZodOptional<z.ZodEnum<{
|
|
3270
|
-
sensor: "sensor";
|
|
3271
3270
|
audio: "audio";
|
|
3272
3271
|
any: "any";
|
|
3272
|
+
sensor: "sensor";
|
|
3273
3273
|
pipeline: "pipeline";
|
|
3274
3274
|
onboard: "onboard";
|
|
3275
3275
|
}>>;
|
|
@@ -3566,9 +3566,9 @@ export declare const notificationRulesCapability: {
|
|
|
3566
3566
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
3567
3567
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3568
3568
|
source: z.ZodOptional<z.ZodEnum<{
|
|
3569
|
-
sensor: "sensor";
|
|
3570
3569
|
audio: "audio";
|
|
3571
3570
|
any: "any";
|
|
3571
|
+
sensor: "sensor";
|
|
3572
3572
|
pipeline: "pipeline";
|
|
3573
3573
|
onboard: "onboard";
|
|
3574
3574
|
}>>;
|
|
@@ -129,9 +129,9 @@ export declare const OsdSlotBindingSchema: z.ZodObject<{
|
|
|
129
129
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
130
130
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
131
131
|
source: z.ZodOptional<z.ZodEnum<{
|
|
132
|
-
sensor: "sensor";
|
|
133
132
|
audio: "audio";
|
|
134
133
|
any: "any";
|
|
134
|
+
sensor: "sensor";
|
|
135
135
|
pipeline: "pipeline";
|
|
136
136
|
onboard: "onboard";
|
|
137
137
|
}>>;
|
|
@@ -288,9 +288,9 @@ export declare const OsdSlotViewSchema: z.ZodObject<{
|
|
|
288
288
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
289
289
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
290
290
|
source: z.ZodOptional<z.ZodEnum<{
|
|
291
|
-
sensor: "sensor";
|
|
292
291
|
audio: "audio";
|
|
293
292
|
any: "any";
|
|
293
|
+
sensor: "sensor";
|
|
294
294
|
pipeline: "pipeline";
|
|
295
295
|
onboard: "onboard";
|
|
296
296
|
}>>;
|
|
@@ -519,9 +519,9 @@ export declare const osdManagerCapability: {
|
|
|
519
519
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
520
520
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
521
521
|
source: z.ZodOptional<z.ZodEnum<{
|
|
522
|
-
sensor: "sensor";
|
|
523
522
|
audio: "audio";
|
|
524
523
|
any: "any";
|
|
524
|
+
sensor: "sensor";
|
|
525
525
|
pipeline: "pipeline";
|
|
526
526
|
onboard: "onboard";
|
|
527
527
|
}>>;
|
|
@@ -767,9 +767,9 @@ export declare const osdManagerCapability: {
|
|
|
767
767
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
768
768
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
769
769
|
source: z.ZodOptional<z.ZodEnum<{
|
|
770
|
-
sensor: "sensor";
|
|
771
770
|
audio: "audio";
|
|
772
771
|
any: "any";
|
|
772
|
+
sensor: "sensor";
|
|
773
773
|
pipeline: "pipeline";
|
|
774
774
|
onboard: "onboard";
|
|
775
775
|
}>>;
|
|
@@ -925,9 +925,9 @@ export declare const osdManagerCapability: {
|
|
|
925
925
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
926
926
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
927
927
|
source: z.ZodOptional<z.ZodEnum<{
|
|
928
|
-
sensor: "sensor";
|
|
929
928
|
audio: "audio";
|
|
930
929
|
any: "any";
|
|
930
|
+
sensor: "sensor";
|
|
931
931
|
pipeline: "pipeline";
|
|
932
932
|
onboard: "onboard";
|
|
933
933
|
}>>;
|
|
@@ -1115,9 +1115,9 @@ export declare const osdManagerCapability: {
|
|
|
1115
1115
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
1116
1116
|
minDwellSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1117
1117
|
source: z.ZodOptional<z.ZodEnum<{
|
|
1118
|
-
sensor: "sensor";
|
|
1119
1118
|
audio: "audio";
|
|
1120
1119
|
any: "any";
|
|
1120
|
+
sensor: "sensor";
|
|
1121
1121
|
pipeline: "pipeline";
|
|
1122
1122
|
onboard: "onboard";
|
|
1123
1123
|
}>>;
|
|
@@ -27,8 +27,8 @@ import { type InferProvider } from './capability-definition.js';
|
|
|
27
27
|
*/
|
|
28
28
|
declare const TrackStateSchema: z.ZodEnum<{
|
|
29
29
|
idle: "idle";
|
|
30
|
-
left: "left";
|
|
31
30
|
moving: "moving";
|
|
31
|
+
left: "left";
|
|
32
32
|
new: "new";
|
|
33
33
|
entered: "entered";
|
|
34
34
|
}>;
|
|
@@ -60,12 +60,12 @@ declare const TrackZoneFilterSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
60
60
|
export type TrackZoneFilter = z.infer<typeof TrackZoneFilterSchema>;
|
|
61
61
|
/** Closed icon vocabulary so clients render a known glyph per kind. */
|
|
62
62
|
export declare const EventKindIconSchema: z.ZodEnum<{
|
|
63
|
-
button: "button";
|
|
64
|
-
generic: "generic";
|
|
65
63
|
audio: "audio";
|
|
66
64
|
person: "person";
|
|
67
65
|
vehicle: "vehicle";
|
|
68
66
|
animal: "animal";
|
|
67
|
+
button: "button";
|
|
68
|
+
generic: "generic";
|
|
69
69
|
motion: "motion";
|
|
70
70
|
smoke: "smoke";
|
|
71
71
|
package: "package";
|
|
@@ -75,10 +75,10 @@ export declare const EventKindIconSchema: z.ZodEnum<{
|
|
|
75
75
|
}>;
|
|
76
76
|
export type EventKindIcon = z.infer<typeof EventKindIconSchema>;
|
|
77
77
|
export declare const EventKindCategorySchema: z.ZodEnum<{
|
|
78
|
-
sensor: "sensor";
|
|
79
|
-
control: "control";
|
|
80
78
|
audio: "audio";
|
|
81
79
|
custom: "custom";
|
|
80
|
+
sensor: "sensor";
|
|
81
|
+
control: "control";
|
|
82
82
|
motion: "motion";
|
|
83
83
|
package: "package";
|
|
84
84
|
detection: "detection";
|
|
@@ -97,12 +97,12 @@ declare const EventKindDescriptorSchema: z.ZodObject<{
|
|
|
97
97
|
color: z.ZodString;
|
|
98
98
|
iconId: z.ZodString;
|
|
99
99
|
icon: z.ZodEnum<{
|
|
100
|
-
button: "button";
|
|
101
|
-
generic: "generic";
|
|
102
100
|
audio: "audio";
|
|
103
101
|
person: "person";
|
|
104
102
|
vehicle: "vehicle";
|
|
105
103
|
animal: "animal";
|
|
104
|
+
button: "button";
|
|
105
|
+
generic: "generic";
|
|
106
106
|
motion: "motion";
|
|
107
107
|
smoke: "smoke";
|
|
108
108
|
package: "package";
|
|
@@ -111,10 +111,10 @@ declare const EventKindDescriptorSchema: z.ZodObject<{
|
|
|
111
111
|
pir: "pir";
|
|
112
112
|
}>;
|
|
113
113
|
category: z.ZodEnum<{
|
|
114
|
-
sensor: "sensor";
|
|
115
|
-
control: "control";
|
|
116
114
|
audio: "audio";
|
|
117
115
|
custom: "custom";
|
|
116
|
+
sensor: "sensor";
|
|
117
|
+
control: "control";
|
|
118
118
|
motion: "motion";
|
|
119
119
|
package: "package";
|
|
120
120
|
detection: "detection";
|
|
@@ -140,12 +140,12 @@ declare const EventKindsForDeviceSchema: z.ZodObject<{
|
|
|
140
140
|
color: z.ZodString;
|
|
141
141
|
iconId: z.ZodString;
|
|
142
142
|
icon: z.ZodEnum<{
|
|
143
|
-
button: "button";
|
|
144
|
-
generic: "generic";
|
|
145
143
|
audio: "audio";
|
|
146
144
|
person: "person";
|
|
147
145
|
vehicle: "vehicle";
|
|
148
146
|
animal: "animal";
|
|
147
|
+
button: "button";
|
|
148
|
+
generic: "generic";
|
|
149
149
|
motion: "motion";
|
|
150
150
|
smoke: "smoke";
|
|
151
151
|
package: "package";
|
|
@@ -154,10 +154,10 @@ declare const EventKindsForDeviceSchema: z.ZodObject<{
|
|
|
154
154
|
pir: "pir";
|
|
155
155
|
}>;
|
|
156
156
|
category: z.ZodEnum<{
|
|
157
|
-
sensor: "sensor";
|
|
158
|
-
control: "control";
|
|
159
157
|
audio: "audio";
|
|
160
158
|
custom: "custom";
|
|
159
|
+
sensor: "sensor";
|
|
160
|
+
control: "control";
|
|
161
161
|
motion: "motion";
|
|
162
162
|
package: "package";
|
|
163
163
|
detection: "detection";
|
|
@@ -242,8 +242,8 @@ export type TrackAudioLabel = z.infer<typeof TrackAudioLabelSchema>;
|
|
|
242
242
|
* check silently readmits every source added after it was written.
|
|
243
243
|
*/
|
|
244
244
|
export declare const TrackSourceSchema: z.ZodEnum<{
|
|
245
|
-
sensor: "sensor";
|
|
246
245
|
audio: "audio";
|
|
246
|
+
sensor: "sensor";
|
|
247
247
|
pipeline: "pipeline";
|
|
248
248
|
}>;
|
|
249
249
|
export type TrackSource = z.infer<typeof TrackSourceSchema>;
|
|
@@ -371,8 +371,8 @@ declare const TrackSchema: z.ZodObject<{
|
|
|
371
371
|
debug: z.ZodOptional<z.ZodBoolean>;
|
|
372
372
|
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
373
373
|
source: z.ZodOptional<z.ZodEnum<{
|
|
374
|
-
sensor: "sensor";
|
|
375
374
|
audio: "audio";
|
|
375
|
+
sensor: "sensor";
|
|
376
376
|
pipeline: "pipeline";
|
|
377
377
|
}>>;
|
|
378
378
|
firstSeen: z.ZodNumber;
|
|
@@ -409,8 +409,8 @@ declare const TrackSchema: z.ZodObject<{
|
|
|
409
409
|
totalDistance: z.ZodNumber;
|
|
410
410
|
state: z.ZodEnum<{
|
|
411
411
|
idle: "idle";
|
|
412
|
-
left: "left";
|
|
413
412
|
moving: "moving";
|
|
413
|
+
left: "left";
|
|
414
414
|
new: "new";
|
|
415
415
|
entered: "entered";
|
|
416
416
|
}>;
|
|
@@ -536,8 +536,8 @@ declare const ObjectEventSchema: z.ZodObject<{
|
|
|
536
536
|
zones: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
537
537
|
state: z.ZodOptional<z.ZodEnum<{
|
|
538
538
|
idle: "idle";
|
|
539
|
-
left: "left";
|
|
540
539
|
moving: "moving";
|
|
540
|
+
left: "left";
|
|
541
541
|
new: "new";
|
|
542
542
|
entered: "entered";
|
|
543
543
|
}>>;
|
|
@@ -1021,8 +1021,8 @@ declare const RecentTracksPageSchema: z.ZodObject<{
|
|
|
1021
1021
|
debug: z.ZodOptional<z.ZodBoolean>;
|
|
1022
1022
|
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
1023
1023
|
source: z.ZodOptional<z.ZodEnum<{
|
|
1024
|
-
sensor: "sensor";
|
|
1025
1024
|
audio: "audio";
|
|
1025
|
+
sensor: "sensor";
|
|
1026
1026
|
pipeline: "pipeline";
|
|
1027
1027
|
}>>;
|
|
1028
1028
|
firstSeen: z.ZodNumber;
|
|
@@ -1059,8 +1059,8 @@ declare const RecentTracksPageSchema: z.ZodObject<{
|
|
|
1059
1059
|
totalDistance: z.ZodNumber;
|
|
1060
1060
|
state: z.ZodEnum<{
|
|
1061
1061
|
idle: "idle";
|
|
1062
|
-
left: "left";
|
|
1063
1062
|
moving: "moving";
|
|
1063
|
+
left: "left";
|
|
1064
1064
|
new: "new";
|
|
1065
1065
|
entered: "entered";
|
|
1066
1066
|
}>;
|
|
@@ -1152,8 +1152,8 @@ declare const TrackedDetectionSchema: z.ZodObject<{
|
|
|
1152
1152
|
zones: z.ZodReadonly<z.ZodArray<z.ZodString>>;
|
|
1153
1153
|
state: z.ZodEnum<{
|
|
1154
1154
|
idle: "idle";
|
|
1155
|
-
left: "left";
|
|
1156
1155
|
moving: "moving";
|
|
1156
|
+
left: "left";
|
|
1157
1157
|
new: "new";
|
|
1158
1158
|
entered: "entered";
|
|
1159
1159
|
}>;
|
|
@@ -1169,8 +1169,8 @@ export declare const ScoredObjectEventSchema: z.ZodObject<{
|
|
|
1169
1169
|
zones: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
1170
1170
|
state: z.ZodOptional<z.ZodEnum<{
|
|
1171
1171
|
idle: "idle";
|
|
1172
|
-
left: "left";
|
|
1173
1172
|
moving: "moving";
|
|
1173
|
+
left: "left";
|
|
1174
1174
|
new: "new";
|
|
1175
1175
|
entered: "entered";
|
|
1176
1176
|
}>>;
|
|
@@ -1273,8 +1273,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1273
1273
|
debug: z.ZodOptional<z.ZodBoolean>;
|
|
1274
1274
|
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
1275
1275
|
source: z.ZodOptional<z.ZodEnum<{
|
|
1276
|
-
sensor: "sensor";
|
|
1277
1276
|
audio: "audio";
|
|
1277
|
+
sensor: "sensor";
|
|
1278
1278
|
pipeline: "pipeline";
|
|
1279
1279
|
}>>;
|
|
1280
1280
|
firstSeen: z.ZodNumber;
|
|
@@ -1311,8 +1311,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1311
1311
|
totalDistance: z.ZodNumber;
|
|
1312
1312
|
state: z.ZodEnum<{
|
|
1313
1313
|
idle: "idle";
|
|
1314
|
-
left: "left";
|
|
1315
1314
|
moving: "moving";
|
|
1315
|
+
left: "left";
|
|
1316
1316
|
new: "new";
|
|
1317
1317
|
entered: "entered";
|
|
1318
1318
|
}>;
|
|
@@ -1368,8 +1368,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1368
1368
|
debug: z.ZodOptional<z.ZodBoolean>;
|
|
1369
1369
|
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
1370
1370
|
source: z.ZodOptional<z.ZodEnum<{
|
|
1371
|
-
sensor: "sensor";
|
|
1372
1371
|
audio: "audio";
|
|
1372
|
+
sensor: "sensor";
|
|
1373
1373
|
pipeline: "pipeline";
|
|
1374
1374
|
}>>;
|
|
1375
1375
|
firstSeen: z.ZodNumber;
|
|
@@ -1406,8 +1406,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1406
1406
|
totalDistance: z.ZodNumber;
|
|
1407
1407
|
state: z.ZodEnum<{
|
|
1408
1408
|
idle: "idle";
|
|
1409
|
-
left: "left";
|
|
1410
1409
|
moving: "moving";
|
|
1410
|
+
left: "left";
|
|
1411
1411
|
new: "new";
|
|
1412
1412
|
entered: "entered";
|
|
1413
1413
|
}>;
|
|
@@ -1485,8 +1485,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1485
1485
|
debug: z.ZodOptional<z.ZodBoolean>;
|
|
1486
1486
|
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
1487
1487
|
source: z.ZodOptional<z.ZodEnum<{
|
|
1488
|
-
sensor: "sensor";
|
|
1489
1488
|
audio: "audio";
|
|
1489
|
+
sensor: "sensor";
|
|
1490
1490
|
pipeline: "pipeline";
|
|
1491
1491
|
}>>;
|
|
1492
1492
|
firstSeen: z.ZodNumber;
|
|
@@ -1523,8 +1523,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1523
1523
|
totalDistance: z.ZodNumber;
|
|
1524
1524
|
state: z.ZodEnum<{
|
|
1525
1525
|
idle: "idle";
|
|
1526
|
-
left: "left";
|
|
1527
1526
|
moving: "moving";
|
|
1527
|
+
left: "left";
|
|
1528
1528
|
new: "new";
|
|
1529
1529
|
entered: "entered";
|
|
1530
1530
|
}>;
|
|
@@ -1598,8 +1598,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1598
1598
|
debug: z.ZodOptional<z.ZodBoolean>;
|
|
1599
1599
|
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
1600
1600
|
source: z.ZodOptional<z.ZodEnum<{
|
|
1601
|
-
sensor: "sensor";
|
|
1602
1601
|
audio: "audio";
|
|
1602
|
+
sensor: "sensor";
|
|
1603
1603
|
pipeline: "pipeline";
|
|
1604
1604
|
}>>;
|
|
1605
1605
|
firstSeen: z.ZodNumber;
|
|
@@ -1636,8 +1636,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1636
1636
|
totalDistance: z.ZodNumber;
|
|
1637
1637
|
state: z.ZodEnum<{
|
|
1638
1638
|
idle: "idle";
|
|
1639
|
-
left: "left";
|
|
1640
1639
|
moving: "moving";
|
|
1640
|
+
left: "left";
|
|
1641
1641
|
new: "new";
|
|
1642
1642
|
entered: "entered";
|
|
1643
1643
|
}>;
|
|
@@ -1735,8 +1735,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1735
1735
|
zones: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
1736
1736
|
state: z.ZodOptional<z.ZodEnum<{
|
|
1737
1737
|
idle: "idle";
|
|
1738
|
-
left: "left";
|
|
1739
1738
|
moving: "moving";
|
|
1739
|
+
left: "left";
|
|
1740
1740
|
new: "new";
|
|
1741
1741
|
entered: "entered";
|
|
1742
1742
|
}>>;
|
|
@@ -1820,12 +1820,12 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1820
1820
|
color: z.ZodString;
|
|
1821
1821
|
iconId: z.ZodString;
|
|
1822
1822
|
icon: z.ZodEnum<{
|
|
1823
|
-
button: "button";
|
|
1824
|
-
generic: "generic";
|
|
1825
1823
|
audio: "audio";
|
|
1826
1824
|
person: "person";
|
|
1827
1825
|
vehicle: "vehicle";
|
|
1828
1826
|
animal: "animal";
|
|
1827
|
+
button: "button";
|
|
1828
|
+
generic: "generic";
|
|
1829
1829
|
motion: "motion";
|
|
1830
1830
|
smoke: "smoke";
|
|
1831
1831
|
package: "package";
|
|
@@ -1834,10 +1834,10 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1834
1834
|
pir: "pir";
|
|
1835
1835
|
}>;
|
|
1836
1836
|
category: z.ZodEnum<{
|
|
1837
|
-
sensor: "sensor";
|
|
1838
|
-
control: "control";
|
|
1839
1837
|
audio: "audio";
|
|
1840
1838
|
custom: "custom";
|
|
1839
|
+
sensor: "sensor";
|
|
1840
|
+
control: "control";
|
|
1841
1841
|
motion: "motion";
|
|
1842
1842
|
package: "package";
|
|
1843
1843
|
detection: "detection";
|
|
@@ -1881,12 +1881,12 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1881
1881
|
color: z.ZodString;
|
|
1882
1882
|
iconId: z.ZodString;
|
|
1883
1883
|
icon: z.ZodEnum<{
|
|
1884
|
-
button: "button";
|
|
1885
|
-
generic: "generic";
|
|
1886
1884
|
audio: "audio";
|
|
1887
1885
|
person: "person";
|
|
1888
1886
|
vehicle: "vehicle";
|
|
1889
1887
|
animal: "animal";
|
|
1888
|
+
button: "button";
|
|
1889
|
+
generic: "generic";
|
|
1890
1890
|
motion: "motion";
|
|
1891
1891
|
smoke: "smoke";
|
|
1892
1892
|
package: "package";
|
|
@@ -1895,10 +1895,10 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1895
1895
|
pir: "pir";
|
|
1896
1896
|
}>;
|
|
1897
1897
|
category: z.ZodEnum<{
|
|
1898
|
-
sensor: "sensor";
|
|
1899
|
-
control: "control";
|
|
1900
1898
|
audio: "audio";
|
|
1901
1899
|
custom: "custom";
|
|
1900
|
+
sensor: "sensor";
|
|
1901
|
+
control: "control";
|
|
1902
1902
|
motion: "motion";
|
|
1903
1903
|
package: "package";
|
|
1904
1904
|
detection: "detection";
|
|
@@ -2872,8 +2872,8 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
2872
2872
|
zones: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
2873
2873
|
state: z.ZodOptional<z.ZodEnum<{
|
|
2874
2874
|
idle: "idle";
|
|
2875
|
-
left: "left";
|
|
2876
2875
|
moving: "moving";
|
|
2876
|
+
left: "left";
|
|
2877
2877
|
new: "new";
|
|
2878
2878
|
entered: "entered";
|
|
2879
2879
|
}>>;
|