@awarevue/api-types 2.0.97 → 2.0.99
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/api/agent-protocol/protocol.d.ts +26 -0
- package/dist/api/commands/all.d.ts +36 -0
- package/dist/api/commands/nvr-exporter.d.ts +12 -0
- package/dist/api/commands/nvr-recorder.d.ts +48 -0
- package/dist/api/commands/server.d.ts +12 -0
- package/dist/api/queries/all.d.ts +18 -0
- package/dist/api/queries/nvr-recorder.d.ts +36 -0
- package/dist/api/rest/device.d.ts +6 -0
- package/dist/objects/device/any-device.d.ts +110 -0
- package/dist/objects/device/device-import.d.ts +32 -0
- package/dist/objects/device/device-relation.d.ts +98 -2
- package/dist/objects/device/device-relation.js +56 -2
- package/dist/objects/device/nvr-analytics-server.d.ts +8 -1
- package/dist/objects/device/nvr-analytics-server.js +4 -1
- package/dist/objects/device/reader.js +2 -2
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +20 -1
- package/dist/primitives.js +7 -2
- package/package.json +1 -1
- package/dist/primitives/credential-type.d.ts +0 -9
- package/dist/primitives/credential-type.js +0 -11
- package/dist/primitives/index.d.ts +0 -1
- package/dist/primitives/index.js +0 -17
|
@@ -49,6 +49,12 @@ export declare const sNvrExporterSpecsWithType: z.ZodObject<{
|
|
|
49
49
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
50
50
|
}, z.core.$strip>;
|
|
51
51
|
export declare const sNvrAnalyticsServerSpecsWithType: z.ZodObject<{
|
|
52
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
53
|
+
motionDetection: "motionDetection";
|
|
54
|
+
labelDetection: "labelDetection";
|
|
55
|
+
faceRecognition: "faceRecognition";
|
|
56
|
+
semanticSearch: "semanticSearch";
|
|
57
|
+
}>>;
|
|
52
58
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
53
59
|
}, z.core.$strip>;
|
|
54
60
|
export declare const sSystemDeviceSpecsWithType: z.ZodObject<{
|
|
@@ -153,6 +159,12 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
153
159
|
}, z.core.$strip>, z.ZodObject<{
|
|
154
160
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
155
161
|
}, z.core.$strip>, z.ZodObject<{
|
|
162
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
163
|
+
motionDetection: "motionDetection";
|
|
164
|
+
labelDetection: "labelDetection";
|
|
165
|
+
faceRecognition: "faceRecognition";
|
|
166
|
+
semanticSearch: "semanticSearch";
|
|
167
|
+
}>>;
|
|
156
168
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
157
169
|
}, z.core.$strip>, z.ZodObject<{
|
|
158
170
|
type: z.ZodLiteral<"system">;
|
|
@@ -203,6 +215,8 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
203
215
|
isRecordedBy: "isRecordedBy";
|
|
204
216
|
reads: "reads";
|
|
205
217
|
isReadBy: "isReadBy";
|
|
218
|
+
isIngestedBy: "isIngestedBy";
|
|
219
|
+
ingests: "ingests";
|
|
206
220
|
}>;
|
|
207
221
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
208
222
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -315,6 +329,12 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
315
329
|
}, z.core.$strip>, z.ZodObject<{
|
|
316
330
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
317
331
|
}, z.core.$strip>, z.ZodObject<{
|
|
332
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
333
|
+
motionDetection: "motionDetection";
|
|
334
|
+
labelDetection: "labelDetection";
|
|
335
|
+
faceRecognition: "faceRecognition";
|
|
336
|
+
semanticSearch: "semanticSearch";
|
|
337
|
+
}>>;
|
|
318
338
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
319
339
|
}, z.core.$strip>, z.ZodObject<{
|
|
320
340
|
type: z.ZodLiteral<"system">;
|
|
@@ -354,6 +374,8 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
354
374
|
isRecordedBy: "isRecordedBy";
|
|
355
375
|
reads: "reads";
|
|
356
376
|
isReadBy: "isReadBy";
|
|
377
|
+
isIngestedBy: "isIngestedBy";
|
|
378
|
+
ingests: "ingests";
|
|
357
379
|
}>;
|
|
358
380
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
359
381
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -441,6 +463,8 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
441
463
|
isRecordedBy: "isRecordedBy";
|
|
442
464
|
reads: "reads";
|
|
443
465
|
isReadBy: "isReadBy";
|
|
466
|
+
isIngestedBy: "isIngestedBy";
|
|
467
|
+
ingests: "ingests";
|
|
444
468
|
}>;
|
|
445
469
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
446
470
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -503,6 +527,8 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
503
527
|
isRecordedBy: "isRecordedBy";
|
|
504
528
|
reads: "reads";
|
|
505
529
|
isReadBy: "isReadBy";
|
|
530
|
+
isIngestedBy: "isIngestedBy";
|
|
531
|
+
ingests: "ingests";
|
|
506
532
|
}>;
|
|
507
533
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
508
534
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -560,6 +586,8 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
560
586
|
isRecordedBy: "isRecordedBy";
|
|
561
587
|
reads: "reads";
|
|
562
588
|
isReadBy: "isReadBy";
|
|
589
|
+
isIngestedBy: "isIngestedBy";
|
|
590
|
+
ingests: "ingests";
|
|
563
591
|
}>;
|
|
564
592
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
565
593
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -612,6 +640,8 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
612
640
|
isRecordedBy: "isRecordedBy";
|
|
613
641
|
reads: "reads";
|
|
614
642
|
isReadBy: "isReadBy";
|
|
643
|
+
isIngestedBy: "isIngestedBy";
|
|
644
|
+
ingests: "ingests";
|
|
615
645
|
}>;
|
|
616
646
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
617
647
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -662,6 +692,8 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
662
692
|
isRecordedBy: "isRecordedBy";
|
|
663
693
|
reads: "reads";
|
|
664
694
|
isReadBy: "isReadBy";
|
|
695
|
+
isIngestedBy: "isIngestedBy";
|
|
696
|
+
ingests: "ingests";
|
|
665
697
|
}>;
|
|
666
698
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
667
699
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -712,6 +744,8 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
712
744
|
isRecordedBy: "isRecordedBy";
|
|
713
745
|
reads: "reads";
|
|
714
746
|
isReadBy: "isReadBy";
|
|
747
|
+
isIngestedBy: "isIngestedBy";
|
|
748
|
+
ingests: "ingests";
|
|
715
749
|
}>;
|
|
716
750
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
717
751
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -762,6 +796,8 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
762
796
|
isRecordedBy: "isRecordedBy";
|
|
763
797
|
reads: "reads";
|
|
764
798
|
isReadBy: "isReadBy";
|
|
799
|
+
isIngestedBy: "isIngestedBy";
|
|
800
|
+
ingests: "ingests";
|
|
765
801
|
}>;
|
|
766
802
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
767
803
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -817,6 +853,8 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
817
853
|
isRecordedBy: "isRecordedBy";
|
|
818
854
|
reads: "reads";
|
|
819
855
|
isReadBy: "isReadBy";
|
|
856
|
+
isIngestedBy: "isIngestedBy";
|
|
857
|
+
ingests: "ingests";
|
|
820
858
|
}>;
|
|
821
859
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
822
860
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -868,6 +906,8 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
868
906
|
isRecordedBy: "isRecordedBy";
|
|
869
907
|
reads: "reads";
|
|
870
908
|
isReadBy: "isReadBy";
|
|
909
|
+
isIngestedBy: "isIngestedBy";
|
|
910
|
+
ingests: "ingests";
|
|
871
911
|
}>;
|
|
872
912
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
873
913
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -918,6 +958,8 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
918
958
|
isRecordedBy: "isRecordedBy";
|
|
919
959
|
reads: "reads";
|
|
920
960
|
isReadBy: "isReadBy";
|
|
961
|
+
isIngestedBy: "isIngestedBy";
|
|
962
|
+
ingests: "ingests";
|
|
921
963
|
}>;
|
|
922
964
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
923
965
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -968,6 +1010,8 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
968
1010
|
isRecordedBy: "isRecordedBy";
|
|
969
1011
|
reads: "reads";
|
|
970
1012
|
isReadBy: "isReadBy";
|
|
1013
|
+
isIngestedBy: "isIngestedBy";
|
|
1014
|
+
ingests: "ingests";
|
|
971
1015
|
}>;
|
|
972
1016
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
973
1017
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1018,6 +1062,8 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1018
1062
|
isRecordedBy: "isRecordedBy";
|
|
1019
1063
|
reads: "reads";
|
|
1020
1064
|
isReadBy: "isReadBy";
|
|
1065
|
+
isIngestedBy: "isIngestedBy";
|
|
1066
|
+
ingests: "ingests";
|
|
1021
1067
|
}>;
|
|
1022
1068
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1023
1069
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1068,6 +1114,8 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
1068
1114
|
isRecordedBy: "isRecordedBy";
|
|
1069
1115
|
reads: "reads";
|
|
1070
1116
|
isReadBy: "isReadBy";
|
|
1117
|
+
isIngestedBy: "isIngestedBy";
|
|
1118
|
+
ingests: "ingests";
|
|
1071
1119
|
}>;
|
|
1072
1120
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1073
1121
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1118,6 +1166,8 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1118
1166
|
isRecordedBy: "isRecordedBy";
|
|
1119
1167
|
reads: "reads";
|
|
1120
1168
|
isReadBy: "isReadBy";
|
|
1169
|
+
isIngestedBy: "isIngestedBy";
|
|
1170
|
+
ingests: "ingests";
|
|
1121
1171
|
}>;
|
|
1122
1172
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1123
1173
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1168,6 +1218,8 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1168
1218
|
isRecordedBy: "isRecordedBy";
|
|
1169
1219
|
reads: "reads";
|
|
1170
1220
|
isReadBy: "isReadBy";
|
|
1221
|
+
isIngestedBy: "isIngestedBy";
|
|
1222
|
+
ingests: "ingests";
|
|
1171
1223
|
}>;
|
|
1172
1224
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1173
1225
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1218,6 +1270,8 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
1218
1270
|
isRecordedBy: "isRecordedBy";
|
|
1219
1271
|
reads: "reads";
|
|
1220
1272
|
isReadBy: "isReadBy";
|
|
1273
|
+
isIngestedBy: "isIngestedBy";
|
|
1274
|
+
ingests: "ingests";
|
|
1221
1275
|
}>;
|
|
1222
1276
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1223
1277
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1268,6 +1322,8 @@ export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1268
1322
|
isRecordedBy: "isRecordedBy";
|
|
1269
1323
|
reads: "reads";
|
|
1270
1324
|
isReadBy: "isReadBy";
|
|
1325
|
+
isIngestedBy: "isIngestedBy";
|
|
1326
|
+
ingests: "ingests";
|
|
1271
1327
|
}>;
|
|
1272
1328
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1273
1329
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1281,6 +1337,12 @@ export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1281
1337
|
providerMetadata: z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>;
|
|
1282
1338
|
}, z.core.$strip>>;
|
|
1283
1339
|
export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1340
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1341
|
+
motionDetection: "motionDetection";
|
|
1342
|
+
labelDetection: "labelDetection";
|
|
1343
|
+
faceRecognition: "faceRecognition";
|
|
1344
|
+
semanticSearch: "semanticSearch";
|
|
1345
|
+
}>>;
|
|
1284
1346
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
1285
1347
|
}, z.core.$strip>, z.ZodObject<{
|
|
1286
1348
|
id: z.ZodString;
|
|
@@ -1318,6 +1380,8 @@ export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection
|
|
|
1318
1380
|
isRecordedBy: "isRecordedBy";
|
|
1319
1381
|
reads: "reads";
|
|
1320
1382
|
isReadBy: "isReadBy";
|
|
1383
|
+
isIngestedBy: "isIngestedBy";
|
|
1384
|
+
ingests: "ingests";
|
|
1321
1385
|
}>;
|
|
1322
1386
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1323
1387
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1368,6 +1432,8 @@ export declare const sSystemDeviceDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1368
1432
|
isRecordedBy: "isRecordedBy";
|
|
1369
1433
|
reads: "reads";
|
|
1370
1434
|
isReadBy: "isReadBy";
|
|
1435
|
+
isIngestedBy: "isIngestedBy";
|
|
1436
|
+
ingests: "ingests";
|
|
1371
1437
|
}>;
|
|
1372
1438
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1373
1439
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1482,6 +1548,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1482
1548
|
isRecordedBy: "isRecordedBy";
|
|
1483
1549
|
reads: "reads";
|
|
1484
1550
|
isReadBy: "isReadBy";
|
|
1551
|
+
isIngestedBy: "isIngestedBy";
|
|
1552
|
+
ingests: "ingests";
|
|
1485
1553
|
}>;
|
|
1486
1554
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1487
1555
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1569,6 +1637,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1569
1637
|
isRecordedBy: "isRecordedBy";
|
|
1570
1638
|
reads: "reads";
|
|
1571
1639
|
isReadBy: "isReadBy";
|
|
1640
|
+
isIngestedBy: "isIngestedBy";
|
|
1641
|
+
ingests: "ingests";
|
|
1572
1642
|
}>;
|
|
1573
1643
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1574
1644
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1631,6 +1701,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1631
1701
|
isRecordedBy: "isRecordedBy";
|
|
1632
1702
|
reads: "reads";
|
|
1633
1703
|
isReadBy: "isReadBy";
|
|
1704
|
+
isIngestedBy: "isIngestedBy";
|
|
1705
|
+
ingests: "ingests";
|
|
1634
1706
|
}>;
|
|
1635
1707
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1636
1708
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1688,6 +1760,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1688
1760
|
isRecordedBy: "isRecordedBy";
|
|
1689
1761
|
reads: "reads";
|
|
1690
1762
|
isReadBy: "isReadBy";
|
|
1763
|
+
isIngestedBy: "isIngestedBy";
|
|
1764
|
+
ingests: "ingests";
|
|
1691
1765
|
}>;
|
|
1692
1766
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1693
1767
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1740,6 +1814,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1740
1814
|
isRecordedBy: "isRecordedBy";
|
|
1741
1815
|
reads: "reads";
|
|
1742
1816
|
isReadBy: "isReadBy";
|
|
1817
|
+
isIngestedBy: "isIngestedBy";
|
|
1818
|
+
ingests: "ingests";
|
|
1743
1819
|
}>;
|
|
1744
1820
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1745
1821
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1790,6 +1866,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1790
1866
|
isRecordedBy: "isRecordedBy";
|
|
1791
1867
|
reads: "reads";
|
|
1792
1868
|
isReadBy: "isReadBy";
|
|
1869
|
+
isIngestedBy: "isIngestedBy";
|
|
1870
|
+
ingests: "ingests";
|
|
1793
1871
|
}>;
|
|
1794
1872
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1795
1873
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1840,6 +1918,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1840
1918
|
isRecordedBy: "isRecordedBy";
|
|
1841
1919
|
reads: "reads";
|
|
1842
1920
|
isReadBy: "isReadBy";
|
|
1921
|
+
isIngestedBy: "isIngestedBy";
|
|
1922
|
+
ingests: "ingests";
|
|
1843
1923
|
}>;
|
|
1844
1924
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1845
1925
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1890,6 +1970,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1890
1970
|
isRecordedBy: "isRecordedBy";
|
|
1891
1971
|
reads: "reads";
|
|
1892
1972
|
isReadBy: "isReadBy";
|
|
1973
|
+
isIngestedBy: "isIngestedBy";
|
|
1974
|
+
ingests: "ingests";
|
|
1893
1975
|
}>;
|
|
1894
1976
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1895
1977
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1940,6 +2022,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1940
2022
|
isRecordedBy: "isRecordedBy";
|
|
1941
2023
|
reads: "reads";
|
|
1942
2024
|
isReadBy: "isReadBy";
|
|
2025
|
+
isIngestedBy: "isIngestedBy";
|
|
2026
|
+
ingests: "ingests";
|
|
1943
2027
|
}>;
|
|
1944
2028
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1945
2029
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -1995,6 +2079,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
1995
2079
|
isRecordedBy: "isRecordedBy";
|
|
1996
2080
|
reads: "reads";
|
|
1997
2081
|
isReadBy: "isReadBy";
|
|
2082
|
+
isIngestedBy: "isIngestedBy";
|
|
2083
|
+
ingests: "ingests";
|
|
1998
2084
|
}>;
|
|
1999
2085
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2000
2086
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -2046,6 +2132,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2046
2132
|
isRecordedBy: "isRecordedBy";
|
|
2047
2133
|
reads: "reads";
|
|
2048
2134
|
isReadBy: "isReadBy";
|
|
2135
|
+
isIngestedBy: "isIngestedBy";
|
|
2136
|
+
ingests: "ingests";
|
|
2049
2137
|
}>;
|
|
2050
2138
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2051
2139
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -2096,6 +2184,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2096
2184
|
isRecordedBy: "isRecordedBy";
|
|
2097
2185
|
reads: "reads";
|
|
2098
2186
|
isReadBy: "isReadBy";
|
|
2187
|
+
isIngestedBy: "isIngestedBy";
|
|
2188
|
+
ingests: "ingests";
|
|
2099
2189
|
}>;
|
|
2100
2190
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2101
2191
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -2146,6 +2236,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2146
2236
|
isRecordedBy: "isRecordedBy";
|
|
2147
2237
|
reads: "reads";
|
|
2148
2238
|
isReadBy: "isReadBy";
|
|
2239
|
+
isIngestedBy: "isIngestedBy";
|
|
2240
|
+
ingests: "ingests";
|
|
2149
2241
|
}>;
|
|
2150
2242
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2151
2243
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -2196,6 +2288,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2196
2288
|
isRecordedBy: "isRecordedBy";
|
|
2197
2289
|
reads: "reads";
|
|
2198
2290
|
isReadBy: "isReadBy";
|
|
2291
|
+
isIngestedBy: "isIngestedBy";
|
|
2292
|
+
ingests: "ingests";
|
|
2199
2293
|
}>;
|
|
2200
2294
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2201
2295
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -2246,6 +2340,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2246
2340
|
isRecordedBy: "isRecordedBy";
|
|
2247
2341
|
reads: "reads";
|
|
2248
2342
|
isReadBy: "isReadBy";
|
|
2343
|
+
isIngestedBy: "isIngestedBy";
|
|
2344
|
+
ingests: "ingests";
|
|
2249
2345
|
}>;
|
|
2250
2346
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2251
2347
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -2296,6 +2392,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2296
2392
|
isRecordedBy: "isRecordedBy";
|
|
2297
2393
|
reads: "reads";
|
|
2298
2394
|
isReadBy: "isReadBy";
|
|
2395
|
+
isIngestedBy: "isIngestedBy";
|
|
2396
|
+
ingests: "ingests";
|
|
2299
2397
|
}>;
|
|
2300
2398
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2301
2399
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -2346,6 +2444,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2346
2444
|
isRecordedBy: "isRecordedBy";
|
|
2347
2445
|
reads: "reads";
|
|
2348
2446
|
isReadBy: "isReadBy";
|
|
2447
|
+
isIngestedBy: "isIngestedBy";
|
|
2448
|
+
ingests: "ingests";
|
|
2349
2449
|
}>;
|
|
2350
2450
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2351
2451
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -2359,6 +2459,12 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2359
2459
|
providerMetadata: z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>;
|
|
2360
2460
|
}, z.core.$strip>>;
|
|
2361
2461
|
readonly "nvr-analytics-server": z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2462
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
2463
|
+
motionDetection: "motionDetection";
|
|
2464
|
+
labelDetection: "labelDetection";
|
|
2465
|
+
faceRecognition: "faceRecognition";
|
|
2466
|
+
semanticSearch: "semanticSearch";
|
|
2467
|
+
}>>;
|
|
2362
2468
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
2363
2469
|
}, z.core.$strip>, z.ZodObject<{
|
|
2364
2470
|
id: z.ZodString;
|
|
@@ -2396,6 +2502,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2396
2502
|
isRecordedBy: "isRecordedBy";
|
|
2397
2503
|
reads: "reads";
|
|
2398
2504
|
isReadBy: "isReadBy";
|
|
2505
|
+
isIngestedBy: "isIngestedBy";
|
|
2506
|
+
ingests: "ingests";
|
|
2399
2507
|
}>;
|
|
2400
2508
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2401
2509
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -2446,6 +2554,8 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2446
2554
|
isRecordedBy: "isRecordedBy";
|
|
2447
2555
|
reads: "reads";
|
|
2448
2556
|
isReadBy: "isReadBy";
|
|
2557
|
+
isIngestedBy: "isIngestedBy";
|
|
2558
|
+
ingests: "ingests";
|
|
2449
2559
|
}>;
|
|
2450
2560
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2451
2561
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -106,6 +106,12 @@ export declare const sImportedDevice: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
106
106
|
}, z.core.$strip>, z.ZodObject<{
|
|
107
107
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
108
108
|
}, z.core.$strip>, z.ZodObject<{
|
|
109
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
110
|
+
motionDetection: "motionDetection";
|
|
111
|
+
labelDetection: "labelDetection";
|
|
112
|
+
faceRecognition: "faceRecognition";
|
|
113
|
+
semanticSearch: "semanticSearch";
|
|
114
|
+
}>>;
|
|
109
115
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
110
116
|
}, z.core.$strip>, z.ZodObject<{
|
|
111
117
|
type: z.ZodLiteral<"system">;
|
|
@@ -221,6 +227,12 @@ export declare const sDeviceDiscoveryDto: z.ZodObject<{
|
|
|
221
227
|
}, z.core.$strip>, z.ZodObject<{
|
|
222
228
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
223
229
|
}, z.core.$strip>, z.ZodObject<{
|
|
230
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
231
|
+
motionDetection: "motionDetection";
|
|
232
|
+
labelDetection: "labelDetection";
|
|
233
|
+
faceRecognition: "faceRecognition";
|
|
234
|
+
semanticSearch: "semanticSearch";
|
|
235
|
+
}>>;
|
|
224
236
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
225
237
|
}, z.core.$strip>, z.ZodObject<{
|
|
226
238
|
type: z.ZodLiteral<"system">;
|
|
@@ -248,6 +260,8 @@ export declare const sDeviceDiscoveryDto: z.ZodObject<{
|
|
|
248
260
|
isRecordedBy: "isRecordedBy";
|
|
249
261
|
reads: "reads";
|
|
250
262
|
isReadBy: "isReadBy";
|
|
263
|
+
isIngestedBy: "isIngestedBy";
|
|
264
|
+
ingests: "ingests";
|
|
251
265
|
}>;
|
|
252
266
|
}, z.core.$catchall<z.ZodUnknown>>, z.ZodObject<{
|
|
253
267
|
provider: z.ZodString;
|
|
@@ -277,6 +291,8 @@ export declare const sRelationDeltaDto: z.ZodObject<{
|
|
|
277
291
|
isRecordedBy: "isRecordedBy";
|
|
278
292
|
reads: "reads";
|
|
279
293
|
isReadBy: "isReadBy";
|
|
294
|
+
isIngestedBy: "isIngestedBy";
|
|
295
|
+
ingests: "ingests";
|
|
280
296
|
}>;
|
|
281
297
|
}, z.core.$catchall<z.ZodUnknown>>;
|
|
282
298
|
action: z.ZodEnum<{
|
|
@@ -393,6 +409,12 @@ export declare const sDeviceGetChangesDto: z.ZodObject<{
|
|
|
393
409
|
}, z.core.$strip>, z.ZodObject<{
|
|
394
410
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
395
411
|
}, z.core.$strip>, z.ZodObject<{
|
|
412
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
413
|
+
motionDetection: "motionDetection";
|
|
414
|
+
labelDetection: "labelDetection";
|
|
415
|
+
faceRecognition: "faceRecognition";
|
|
416
|
+
semanticSearch: "semanticSearch";
|
|
417
|
+
}>>;
|
|
396
418
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
397
419
|
}, z.core.$strip>, z.ZodObject<{
|
|
398
420
|
type: z.ZodLiteral<"system">;
|
|
@@ -501,6 +523,12 @@ export declare const sDeviceGetChangesDto: z.ZodObject<{
|
|
|
501
523
|
}, z.core.$strip>, z.ZodObject<{
|
|
502
524
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
503
525
|
}, z.core.$strip>, z.ZodObject<{
|
|
526
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
527
|
+
motionDetection: "motionDetection";
|
|
528
|
+
labelDetection: "labelDetection";
|
|
529
|
+
faceRecognition: "faceRecognition";
|
|
530
|
+
semanticSearch: "semanticSearch";
|
|
531
|
+
}>>;
|
|
504
532
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
505
533
|
}, z.core.$strip>, z.ZodObject<{
|
|
506
534
|
type: z.ZodLiteral<"system">;
|
|
@@ -540,6 +568,8 @@ export declare const sDeviceGetChangesDto: z.ZodObject<{
|
|
|
540
568
|
isRecordedBy: "isRecordedBy";
|
|
541
569
|
reads: "reads";
|
|
542
570
|
isReadBy: "isReadBy";
|
|
571
|
+
isIngestedBy: "isIngestedBy";
|
|
572
|
+
ingests: "ingests";
|
|
543
573
|
}>;
|
|
544
574
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
545
575
|
groups: z.ZodArray<z.ZodString>;
|
|
@@ -576,6 +606,8 @@ export declare const sDeviceGetChangesDto: z.ZodObject<{
|
|
|
576
606
|
isRecordedBy: "isRecordedBy";
|
|
577
607
|
reads: "reads";
|
|
578
608
|
isReadBy: "isReadBy";
|
|
609
|
+
isIngestedBy: "isIngestedBy";
|
|
610
|
+
ingests: "ingests";
|
|
579
611
|
}>;
|
|
580
612
|
}, z.core.$catchall<z.ZodUnknown>>;
|
|
581
613
|
action: z.ZodEnum<{
|
|
@@ -19,6 +19,8 @@ export declare const sDeviceRelationKind: z.ZodEnum<{
|
|
|
19
19
|
isRecordedBy: "isRecordedBy";
|
|
20
20
|
reads: "reads";
|
|
21
21
|
isReadBy: "isReadBy";
|
|
22
|
+
isIngestedBy: "isIngestedBy";
|
|
23
|
+
ingests: "ingests";
|
|
22
24
|
}>;
|
|
23
25
|
export declare const sDeviceRelationDto: z.ZodObject<{
|
|
24
26
|
leftId: z.ZodString;
|
|
@@ -43,6 +45,8 @@ export declare const sDeviceRelationDto: z.ZodObject<{
|
|
|
43
45
|
isRecordedBy: "isRecordedBy";
|
|
44
46
|
reads: "reads";
|
|
45
47
|
isReadBy: "isReadBy";
|
|
48
|
+
isIngestedBy: "isIngestedBy";
|
|
49
|
+
ingests: "ingests";
|
|
46
50
|
}>;
|
|
47
51
|
}, z.core.$catchall<z.ZodUnknown>>;
|
|
48
52
|
export declare const sDeviceRelationSide: z.ZodObject<{
|
|
@@ -67,6 +71,8 @@ export declare const sDeviceRelationSide: z.ZodObject<{
|
|
|
67
71
|
isRecordedBy: "isRecordedBy";
|
|
68
72
|
reads: "reads";
|
|
69
73
|
isReadBy: "isReadBy";
|
|
74
|
+
isIngestedBy: "isIngestedBy";
|
|
75
|
+
ingests: "ingests";
|
|
70
76
|
}>;
|
|
71
77
|
}, z.core.$catchall<z.ZodUnknown>>;
|
|
72
78
|
export type DeviceRelationKind = z.infer<typeof sDeviceRelationKind>;
|
|
@@ -75,19 +81,107 @@ export declare const inverseRelationKinds: Record<DeviceRelationKind, DeviceRela
|
|
|
75
81
|
export type DeviceRelationDto = z.infer<typeof sDeviceRelationDto>;
|
|
76
82
|
export type DeviceRelationSide = z.infer<typeof sDeviceRelationSide>;
|
|
77
83
|
export declare const sStreamRecorderSettings: z.ZodObject<{
|
|
78
|
-
streamId: z.ZodString;
|
|
79
84
|
retentionHours: z.ZodOptional<z.ZodNumber>;
|
|
80
85
|
prebufferSeconds: z.ZodOptional<z.ZodNumber>;
|
|
81
86
|
}, z.core.$strip>;
|
|
82
87
|
export declare const sRecordingRelationData: z.ZodObject<{
|
|
83
88
|
streams: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
84
|
-
streamId: z.ZodString;
|
|
85
89
|
retentionHours: z.ZodOptional<z.ZodNumber>;
|
|
86
90
|
prebufferSeconds: z.ZodOptional<z.ZodNumber>;
|
|
87
91
|
}, z.core.$strip>>;
|
|
88
92
|
}, z.core.$strip>;
|
|
89
93
|
export type StreamRecorderSettings = z.infer<typeof sStreamRecorderSettings>;
|
|
90
94
|
export type RecordingRelationData = z.infer<typeof sRecordingRelationData>;
|
|
95
|
+
export declare const sMotionDetectionConfiguration: z.ZodObject<{
|
|
96
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
97
|
+
enabled: z.ZodBoolean;
|
|
98
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
99
|
+
}, z.core.$strip>;
|
|
100
|
+
export type MotionDetectionConfiguration = z.infer<typeof sMotionDetectionConfiguration>;
|
|
101
|
+
export declare const sAiLabelConfiguration: z.ZodObject<{
|
|
102
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
103
|
+
enabled: z.ZodBoolean;
|
|
104
|
+
}, z.core.$strip>;
|
|
105
|
+
export type AiLabelConfiguration = z.infer<typeof sAiLabelConfiguration>;
|
|
106
|
+
export declare const sAiDetectionConfiguration: z.ZodObject<{
|
|
107
|
+
labels: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
108
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
109
|
+
enabled: z.ZodBoolean;
|
|
110
|
+
}, z.core.$strip>>;
|
|
111
|
+
enabled: z.ZodBoolean;
|
|
112
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
113
|
+
}, z.core.$strip>;
|
|
114
|
+
export type AiDetectionConfiguration = z.infer<typeof sAiDetectionConfiguration>;
|
|
115
|
+
export declare const sAiFaceRecognitionConfiguration: z.ZodObject<{
|
|
116
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
117
|
+
enabled: z.ZodBoolean;
|
|
118
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
119
|
+
}, z.core.$strip>;
|
|
120
|
+
export type AiFaceRecognitionConfiguration = z.infer<typeof sAiFaceRecognitionConfiguration>;
|
|
121
|
+
export declare const sAiSemanticSearchConfiguration: z.ZodObject<{
|
|
122
|
+
enabled: z.ZodBoolean;
|
|
123
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
124
|
+
}, z.core.$strip>;
|
|
125
|
+
export type AiSemanticSearchConfiguration = z.infer<typeof sAiSemanticSearchConfiguration>;
|
|
126
|
+
export declare const sAiStreamConfiguration: z.ZodObject<{
|
|
127
|
+
motionDetection: z.ZodOptional<z.ZodObject<{
|
|
128
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
129
|
+
enabled: z.ZodBoolean;
|
|
130
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
131
|
+
}, z.core.$strip>>;
|
|
132
|
+
labelDetection: z.ZodOptional<z.ZodObject<{
|
|
133
|
+
labels: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
134
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
135
|
+
enabled: z.ZodBoolean;
|
|
136
|
+
}, z.core.$strip>>;
|
|
137
|
+
enabled: z.ZodBoolean;
|
|
138
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
139
|
+
}, z.core.$strip>>;
|
|
140
|
+
faceRecognition: z.ZodOptional<z.ZodObject<{
|
|
141
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
142
|
+
enabled: z.ZodBoolean;
|
|
143
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
144
|
+
}, z.core.$strip>>;
|
|
145
|
+
semanticSearch: z.ZodOptional<z.ZodObject<{
|
|
146
|
+
enabled: z.ZodBoolean;
|
|
147
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
148
|
+
}, z.core.$strip>>;
|
|
149
|
+
}, z.core.$strip>;
|
|
150
|
+
export declare const sAiCapability: z.ZodEnum<{
|
|
151
|
+
motionDetection: "motionDetection";
|
|
152
|
+
labelDetection: "labelDetection";
|
|
153
|
+
faceRecognition: "faceRecognition";
|
|
154
|
+
semanticSearch: "semanticSearch";
|
|
155
|
+
}>;
|
|
156
|
+
export type AiCapability = z.infer<typeof sAiCapability>;
|
|
157
|
+
export type AiStreamConfiguration = z.infer<typeof sAiStreamConfiguration>;
|
|
158
|
+
export declare const sAiInferenceRelationData: z.ZodObject<{
|
|
159
|
+
streams: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
160
|
+
motionDetection: z.ZodOptional<z.ZodObject<{
|
|
161
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
162
|
+
enabled: z.ZodBoolean;
|
|
163
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
164
|
+
}, z.core.$strip>>;
|
|
165
|
+
labelDetection: z.ZodOptional<z.ZodObject<{
|
|
166
|
+
labels: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
167
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
168
|
+
enabled: z.ZodBoolean;
|
|
169
|
+
}, z.core.$strip>>;
|
|
170
|
+
enabled: z.ZodBoolean;
|
|
171
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
172
|
+
}, z.core.$strip>>;
|
|
173
|
+
faceRecognition: z.ZodOptional<z.ZodObject<{
|
|
174
|
+
threshold: z.ZodOptional<z.ZodNumber>;
|
|
175
|
+
enabled: z.ZodBoolean;
|
|
176
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
177
|
+
}, z.core.$strip>>;
|
|
178
|
+
semanticSearch: z.ZodOptional<z.ZodObject<{
|
|
179
|
+
enabled: z.ZodBoolean;
|
|
180
|
+
fps: z.ZodOptional<z.ZodNumber>;
|
|
181
|
+
}, z.core.$strip>>;
|
|
182
|
+
}, z.core.$strip>>;
|
|
183
|
+
}, z.core.$strip>;
|
|
184
|
+
export type AiInferenceRelationData = z.infer<typeof sAiInferenceRelationData>;
|
|
91
185
|
export declare const sIoBoardRelationData: z.ZodObject<{
|
|
92
186
|
slots: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
93
187
|
invertedSlots: z.ZodArray<z.ZodString>;
|
|
@@ -114,6 +208,8 @@ export interface DeviceRelationDataMap {
|
|
|
114
208
|
isControlledBy: Record<string, never>;
|
|
115
209
|
reads: Record<string, never>;
|
|
116
210
|
isReadBy: Record<string, never>;
|
|
211
|
+
ingests: AiInferenceRelationData;
|
|
212
|
+
isIngestedBy: AiInferenceRelationData;
|
|
117
213
|
}
|
|
118
214
|
/** Runtime map: relation kind → Zod schema for its data. */
|
|
119
215
|
export declare const sDeviceRelationDataMap: {
|