@awarevue/api-types 2.0.44 → 2.0.45
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 +56 -28
- package/dist/api/commands/all.d.ts +36 -18
- package/dist/api/commands/nvr-exporter.d.ts +36 -18
- package/dist/api/commands/server.d.ts +36 -18
- package/dist/api/queries/all.d.ts +42 -21
- package/dist/api/queries/nvr-recorder.d.ts +84 -42
- package/dist/objects/device/any-device.d.ts +30 -15
- package/dist/objects/device/camera.d.ts +16 -8
- package/dist/objects/device/camera.js +2 -1
- package/dist/objects/device/device-import.d.ts +52 -26
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +20 -10
- package/package.json +1 -1
|
@@ -85,7 +85,8 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
85
85
|
id: z.ZodString;
|
|
86
86
|
displayName: z.ZodString;
|
|
87
87
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
88
|
-
rtspUrl: z.ZodString
|
|
88
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
89
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
89
90
|
recordingCapable: z.ZodBoolean;
|
|
90
91
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
91
92
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -100,7 +101,8 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
100
101
|
id: string;
|
|
101
102
|
displayName: string;
|
|
102
103
|
externalPlayerUrl: string | null;
|
|
103
|
-
rtspUrl: string;
|
|
104
|
+
rtspUrl: string | null;
|
|
105
|
+
mountedStreamId: string | null;
|
|
104
106
|
recordingCapable: boolean;
|
|
105
107
|
lensType: "flat" | "fisheye";
|
|
106
108
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -111,7 +113,8 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
111
113
|
id: string;
|
|
112
114
|
displayName: string;
|
|
113
115
|
externalPlayerUrl: string | null;
|
|
114
|
-
rtspUrl: string;
|
|
116
|
+
rtspUrl: string | null;
|
|
117
|
+
mountedStreamId: string | null;
|
|
115
118
|
recordingCapable: boolean;
|
|
116
119
|
lensType: "flat" | "fisheye";
|
|
117
120
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -129,7 +132,8 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
129
132
|
id: string;
|
|
130
133
|
displayName: string;
|
|
131
134
|
externalPlayerUrl: string | null;
|
|
132
|
-
rtspUrl: string;
|
|
135
|
+
rtspUrl: string | null;
|
|
136
|
+
mountedStreamId: string | null;
|
|
133
137
|
recordingCapable: boolean;
|
|
134
138
|
lensType: "flat" | "fisheye";
|
|
135
139
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -155,7 +159,8 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
155
159
|
id: string;
|
|
156
160
|
displayName: string;
|
|
157
161
|
externalPlayerUrl: string | null;
|
|
158
|
-
rtspUrl: string;
|
|
162
|
+
rtspUrl: string | null;
|
|
163
|
+
mountedStreamId: string | null;
|
|
159
164
|
recordingCapable: boolean;
|
|
160
165
|
lensType: "flat" | "fisheye";
|
|
161
166
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -348,7 +353,8 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
348
353
|
id: string;
|
|
349
354
|
displayName: string;
|
|
350
355
|
externalPlayerUrl: string | null;
|
|
351
|
-
rtspUrl: string;
|
|
356
|
+
rtspUrl: string | null;
|
|
357
|
+
mountedStreamId: string | null;
|
|
352
358
|
recordingCapable: boolean;
|
|
353
359
|
lensType: "flat" | "fisheye";
|
|
354
360
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -443,7 +449,8 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
443
449
|
id: string;
|
|
444
450
|
displayName: string;
|
|
445
451
|
externalPlayerUrl: string | null;
|
|
446
|
-
rtspUrl: string;
|
|
452
|
+
rtspUrl: string | null;
|
|
453
|
+
mountedStreamId: string | null;
|
|
447
454
|
recordingCapable: boolean;
|
|
448
455
|
lensType: "flat" | "fisheye";
|
|
449
456
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -618,7 +625,8 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
618
625
|
id: z.ZodString;
|
|
619
626
|
displayName: z.ZodString;
|
|
620
627
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
621
|
-
rtspUrl: z.ZodString
|
|
628
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
629
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
622
630
|
recordingCapable: z.ZodBoolean;
|
|
623
631
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
624
632
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -633,7 +641,8 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
633
641
|
id: string;
|
|
634
642
|
displayName: string;
|
|
635
643
|
externalPlayerUrl: string | null;
|
|
636
|
-
rtspUrl: string;
|
|
644
|
+
rtspUrl: string | null;
|
|
645
|
+
mountedStreamId: string | null;
|
|
637
646
|
recordingCapable: boolean;
|
|
638
647
|
lensType: "flat" | "fisheye";
|
|
639
648
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -644,7 +653,8 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
644
653
|
id: string;
|
|
645
654
|
displayName: string;
|
|
646
655
|
externalPlayerUrl: string | null;
|
|
647
|
-
rtspUrl: string;
|
|
656
|
+
rtspUrl: string | null;
|
|
657
|
+
mountedStreamId: string | null;
|
|
648
658
|
recordingCapable: boolean;
|
|
649
659
|
lensType: "flat" | "fisheye";
|
|
650
660
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -662,7 +672,8 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
662
672
|
id: string;
|
|
663
673
|
displayName: string;
|
|
664
674
|
externalPlayerUrl: string | null;
|
|
665
|
-
rtspUrl: string;
|
|
675
|
+
rtspUrl: string | null;
|
|
676
|
+
mountedStreamId: string | null;
|
|
666
677
|
recordingCapable: boolean;
|
|
667
678
|
lensType: "flat" | "fisheye";
|
|
668
679
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -688,7 +699,8 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
688
699
|
id: string;
|
|
689
700
|
displayName: string;
|
|
690
701
|
externalPlayerUrl: string | null;
|
|
691
|
-
rtspUrl: string;
|
|
702
|
+
rtspUrl: string | null;
|
|
703
|
+
mountedStreamId: string | null;
|
|
692
704
|
recordingCapable: boolean;
|
|
693
705
|
lensType: "flat" | "fisheye";
|
|
694
706
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -883,7 +895,8 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
883
895
|
id: string;
|
|
884
896
|
displayName: string;
|
|
885
897
|
externalPlayerUrl: string | null;
|
|
886
|
-
rtspUrl: string;
|
|
898
|
+
rtspUrl: string | null;
|
|
899
|
+
mountedStreamId: string | null;
|
|
887
900
|
recordingCapable: boolean;
|
|
888
901
|
lensType: "flat" | "fisheye";
|
|
889
902
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -978,7 +991,8 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
978
991
|
id: string;
|
|
979
992
|
displayName: string;
|
|
980
993
|
externalPlayerUrl: string | null;
|
|
981
|
-
rtspUrl: string;
|
|
994
|
+
rtspUrl: string | null;
|
|
995
|
+
mountedStreamId: string | null;
|
|
982
996
|
recordingCapable: boolean;
|
|
983
997
|
lensType: "flat" | "fisheye";
|
|
984
998
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1145,7 +1159,8 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1145
1159
|
id: z.ZodString;
|
|
1146
1160
|
displayName: z.ZodString;
|
|
1147
1161
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
1148
|
-
rtspUrl: z.ZodString
|
|
1162
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
1163
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
1149
1164
|
recordingCapable: z.ZodBoolean;
|
|
1150
1165
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
1151
1166
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -1160,7 +1175,8 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1160
1175
|
id: string;
|
|
1161
1176
|
displayName: string;
|
|
1162
1177
|
externalPlayerUrl: string | null;
|
|
1163
|
-
rtspUrl: string;
|
|
1178
|
+
rtspUrl: string | null;
|
|
1179
|
+
mountedStreamId: string | null;
|
|
1164
1180
|
recordingCapable: boolean;
|
|
1165
1181
|
lensType: "flat" | "fisheye";
|
|
1166
1182
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1171,7 +1187,8 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1171
1187
|
id: string;
|
|
1172
1188
|
displayName: string;
|
|
1173
1189
|
externalPlayerUrl: string | null;
|
|
1174
|
-
rtspUrl: string;
|
|
1190
|
+
rtspUrl: string | null;
|
|
1191
|
+
mountedStreamId: string | null;
|
|
1175
1192
|
recordingCapable: boolean;
|
|
1176
1193
|
lensType: "flat" | "fisheye";
|
|
1177
1194
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1189,7 +1206,8 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1189
1206
|
id: string;
|
|
1190
1207
|
displayName: string;
|
|
1191
1208
|
externalPlayerUrl: string | null;
|
|
1192
|
-
rtspUrl: string;
|
|
1209
|
+
rtspUrl: string | null;
|
|
1210
|
+
mountedStreamId: string | null;
|
|
1193
1211
|
recordingCapable: boolean;
|
|
1194
1212
|
lensType: "flat" | "fisheye";
|
|
1195
1213
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1215,7 +1233,8 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1215
1233
|
id: string;
|
|
1216
1234
|
displayName: string;
|
|
1217
1235
|
externalPlayerUrl: string | null;
|
|
1218
|
-
rtspUrl: string;
|
|
1236
|
+
rtspUrl: string | null;
|
|
1237
|
+
mountedStreamId: string | null;
|
|
1219
1238
|
recordingCapable: boolean;
|
|
1220
1239
|
lensType: "flat" | "fisheye";
|
|
1221
1240
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1410,7 +1429,8 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1410
1429
|
id: string;
|
|
1411
1430
|
displayName: string;
|
|
1412
1431
|
externalPlayerUrl: string | null;
|
|
1413
|
-
rtspUrl: string;
|
|
1432
|
+
rtspUrl: string | null;
|
|
1433
|
+
mountedStreamId: string | null;
|
|
1414
1434
|
recordingCapable: boolean;
|
|
1415
1435
|
lensType: "flat" | "fisheye";
|
|
1416
1436
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1505,7 +1525,8 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1505
1525
|
id: string;
|
|
1506
1526
|
displayName: string;
|
|
1507
1527
|
externalPlayerUrl: string | null;
|
|
1508
|
-
rtspUrl: string;
|
|
1528
|
+
rtspUrl: string | null;
|
|
1529
|
+
mountedStreamId: string | null;
|
|
1509
1530
|
recordingCapable: boolean;
|
|
1510
1531
|
lensType: "flat" | "fisheye";
|
|
1511
1532
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1672,7 +1693,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1672
1693
|
id: z.ZodString;
|
|
1673
1694
|
displayName: z.ZodString;
|
|
1674
1695
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
1675
|
-
rtspUrl: z.ZodString
|
|
1696
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
1697
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
1676
1698
|
recordingCapable: z.ZodBoolean;
|
|
1677
1699
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
1678
1700
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -1687,7 +1709,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1687
1709
|
id: string;
|
|
1688
1710
|
displayName: string;
|
|
1689
1711
|
externalPlayerUrl: string | null;
|
|
1690
|
-
rtspUrl: string;
|
|
1712
|
+
rtspUrl: string | null;
|
|
1713
|
+
mountedStreamId: string | null;
|
|
1691
1714
|
recordingCapable: boolean;
|
|
1692
1715
|
lensType: "flat" | "fisheye";
|
|
1693
1716
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1698,7 +1721,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1698
1721
|
id: string;
|
|
1699
1722
|
displayName: string;
|
|
1700
1723
|
externalPlayerUrl: string | null;
|
|
1701
|
-
rtspUrl: string;
|
|
1724
|
+
rtspUrl: string | null;
|
|
1725
|
+
mountedStreamId: string | null;
|
|
1702
1726
|
recordingCapable: boolean;
|
|
1703
1727
|
lensType: "flat" | "fisheye";
|
|
1704
1728
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1716,7 +1740,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1716
1740
|
id: string;
|
|
1717
1741
|
displayName: string;
|
|
1718
1742
|
externalPlayerUrl: string | null;
|
|
1719
|
-
rtspUrl: string;
|
|
1743
|
+
rtspUrl: string | null;
|
|
1744
|
+
mountedStreamId: string | null;
|
|
1720
1745
|
recordingCapable: boolean;
|
|
1721
1746
|
lensType: "flat" | "fisheye";
|
|
1722
1747
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1742,7 +1767,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1742
1767
|
id: string;
|
|
1743
1768
|
displayName: string;
|
|
1744
1769
|
externalPlayerUrl: string | null;
|
|
1745
|
-
rtspUrl: string;
|
|
1770
|
+
rtspUrl: string | null;
|
|
1771
|
+
mountedStreamId: string | null;
|
|
1746
1772
|
recordingCapable: boolean;
|
|
1747
1773
|
lensType: "flat" | "fisheye";
|
|
1748
1774
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1935,7 +1961,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1935
1961
|
id: string;
|
|
1936
1962
|
displayName: string;
|
|
1937
1963
|
externalPlayerUrl: string | null;
|
|
1938
|
-
rtspUrl: string;
|
|
1964
|
+
rtspUrl: string | null;
|
|
1965
|
+
mountedStreamId: string | null;
|
|
1939
1966
|
recordingCapable: boolean;
|
|
1940
1967
|
lensType: "flat" | "fisheye";
|
|
1941
1968
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2030,7 +2057,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2030
2057
|
id: string;
|
|
2031
2058
|
displayName: string;
|
|
2032
2059
|
externalPlayerUrl: string | null;
|
|
2033
|
-
rtspUrl: string;
|
|
2060
|
+
rtspUrl: string | null;
|
|
2061
|
+
mountedStreamId: string | null;
|
|
2034
2062
|
recordingCapable: boolean;
|
|
2035
2063
|
lensType: "flat" | "fisheye";
|
|
2036
2064
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2186,7 +2214,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2186
2214
|
id: z.ZodString;
|
|
2187
2215
|
displayName: z.ZodString;
|
|
2188
2216
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
2189
|
-
rtspUrl: z.ZodString
|
|
2217
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
2218
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
2190
2219
|
recordingCapable: z.ZodBoolean;
|
|
2191
2220
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
2192
2221
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -2201,7 +2230,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2201
2230
|
id: string;
|
|
2202
2231
|
displayName: string;
|
|
2203
2232
|
externalPlayerUrl: string | null;
|
|
2204
|
-
rtspUrl: string;
|
|
2233
|
+
rtspUrl: string | null;
|
|
2234
|
+
mountedStreamId: string | null;
|
|
2205
2235
|
recordingCapable: boolean;
|
|
2206
2236
|
lensType: "flat" | "fisheye";
|
|
2207
2237
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2212,7 +2242,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2212
2242
|
id: string;
|
|
2213
2243
|
displayName: string;
|
|
2214
2244
|
externalPlayerUrl: string | null;
|
|
2215
|
-
rtspUrl: string;
|
|
2245
|
+
rtspUrl: string | null;
|
|
2246
|
+
mountedStreamId: string | null;
|
|
2216
2247
|
recordingCapable: boolean;
|
|
2217
2248
|
lensType: "flat" | "fisheye";
|
|
2218
2249
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2230,7 +2261,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2230
2261
|
id: string;
|
|
2231
2262
|
displayName: string;
|
|
2232
2263
|
externalPlayerUrl: string | null;
|
|
2233
|
-
rtspUrl: string;
|
|
2264
|
+
rtspUrl: string | null;
|
|
2265
|
+
mountedStreamId: string | null;
|
|
2234
2266
|
recordingCapable: boolean;
|
|
2235
2267
|
lensType: "flat" | "fisheye";
|
|
2236
2268
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2256,7 +2288,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2256
2288
|
id: string;
|
|
2257
2289
|
displayName: string;
|
|
2258
2290
|
externalPlayerUrl: string | null;
|
|
2259
|
-
rtspUrl: string;
|
|
2291
|
+
rtspUrl: string | null;
|
|
2292
|
+
mountedStreamId: string | null;
|
|
2260
2293
|
recordingCapable: boolean;
|
|
2261
2294
|
lensType: "flat" | "fisheye";
|
|
2262
2295
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2451,7 +2484,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2451
2484
|
id: string;
|
|
2452
2485
|
displayName: string;
|
|
2453
2486
|
externalPlayerUrl: string | null;
|
|
2454
|
-
rtspUrl: string;
|
|
2487
|
+
rtspUrl: string | null;
|
|
2488
|
+
mountedStreamId: string | null;
|
|
2455
2489
|
recordingCapable: boolean;
|
|
2456
2490
|
lensType: "flat" | "fisheye";
|
|
2457
2491
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2546,7 +2580,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2546
2580
|
id: string;
|
|
2547
2581
|
displayName: string;
|
|
2548
2582
|
externalPlayerUrl: string | null;
|
|
2549
|
-
rtspUrl: string;
|
|
2583
|
+
rtspUrl: string | null;
|
|
2584
|
+
mountedStreamId: string | null;
|
|
2550
2585
|
recordingCapable: boolean;
|
|
2551
2586
|
lensType: "flat" | "fisheye";
|
|
2552
2587
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2700,7 +2735,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2700
2735
|
id: z.ZodString;
|
|
2701
2736
|
displayName: z.ZodString;
|
|
2702
2737
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
2703
|
-
rtspUrl: z.ZodString
|
|
2738
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
2739
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
2704
2740
|
recordingCapable: z.ZodBoolean;
|
|
2705
2741
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
2706
2742
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -2715,7 +2751,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2715
2751
|
id: string;
|
|
2716
2752
|
displayName: string;
|
|
2717
2753
|
externalPlayerUrl: string | null;
|
|
2718
|
-
rtspUrl: string;
|
|
2754
|
+
rtspUrl: string | null;
|
|
2755
|
+
mountedStreamId: string | null;
|
|
2719
2756
|
recordingCapable: boolean;
|
|
2720
2757
|
lensType: "flat" | "fisheye";
|
|
2721
2758
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2726,7 +2763,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2726
2763
|
id: string;
|
|
2727
2764
|
displayName: string;
|
|
2728
2765
|
externalPlayerUrl: string | null;
|
|
2729
|
-
rtspUrl: string;
|
|
2766
|
+
rtspUrl: string | null;
|
|
2767
|
+
mountedStreamId: string | null;
|
|
2730
2768
|
recordingCapable: boolean;
|
|
2731
2769
|
lensType: "flat" | "fisheye";
|
|
2732
2770
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2744,7 +2782,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2744
2782
|
id: string;
|
|
2745
2783
|
displayName: string;
|
|
2746
2784
|
externalPlayerUrl: string | null;
|
|
2747
|
-
rtspUrl: string;
|
|
2785
|
+
rtspUrl: string | null;
|
|
2786
|
+
mountedStreamId: string | null;
|
|
2748
2787
|
recordingCapable: boolean;
|
|
2749
2788
|
lensType: "flat" | "fisheye";
|
|
2750
2789
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2770,7 +2809,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2770
2809
|
id: string;
|
|
2771
2810
|
displayName: string;
|
|
2772
2811
|
externalPlayerUrl: string | null;
|
|
2773
|
-
rtspUrl: string;
|
|
2812
|
+
rtspUrl: string | null;
|
|
2813
|
+
mountedStreamId: string | null;
|
|
2774
2814
|
recordingCapable: boolean;
|
|
2775
2815
|
lensType: "flat" | "fisheye";
|
|
2776
2816
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2965,7 +3005,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2965
3005
|
id: string;
|
|
2966
3006
|
displayName: string;
|
|
2967
3007
|
externalPlayerUrl: string | null;
|
|
2968
|
-
rtspUrl: string;
|
|
3008
|
+
rtspUrl: string | null;
|
|
3009
|
+
mountedStreamId: string | null;
|
|
2969
3010
|
recordingCapable: boolean;
|
|
2970
3011
|
lensType: "flat" | "fisheye";
|
|
2971
3012
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -3060,7 +3101,8 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
3060
3101
|
id: string;
|
|
3061
3102
|
displayName: string;
|
|
3062
3103
|
externalPlayerUrl: string | null;
|
|
3063
|
-
rtspUrl: string;
|
|
3104
|
+
rtspUrl: string | null;
|
|
3105
|
+
mountedStreamId: string | null;
|
|
3064
3106
|
recordingCapable: boolean;
|
|
3065
3107
|
lensType: "flat" | "fisheye";
|
|
3066
3108
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -57,7 +57,8 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
57
57
|
id: z.ZodString;
|
|
58
58
|
displayName: z.ZodString;
|
|
59
59
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
60
|
-
rtspUrl: z.ZodString
|
|
60
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
61
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
61
62
|
recordingCapable: z.ZodBoolean;
|
|
62
63
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
63
64
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -72,7 +73,8 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
72
73
|
id: string;
|
|
73
74
|
displayName: string;
|
|
74
75
|
externalPlayerUrl: string | null;
|
|
75
|
-
rtspUrl: string;
|
|
76
|
+
rtspUrl: string | null;
|
|
77
|
+
mountedStreamId: string | null;
|
|
76
78
|
recordingCapable: boolean;
|
|
77
79
|
lensType: "flat" | "fisheye";
|
|
78
80
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -83,7 +85,8 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
83
85
|
id: string;
|
|
84
86
|
displayName: string;
|
|
85
87
|
externalPlayerUrl: string | null;
|
|
86
|
-
rtspUrl: string;
|
|
88
|
+
rtspUrl: string | null;
|
|
89
|
+
mountedStreamId: string | null;
|
|
87
90
|
recordingCapable: boolean;
|
|
88
91
|
lensType: "flat" | "fisheye";
|
|
89
92
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -101,7 +104,8 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
101
104
|
id: string;
|
|
102
105
|
displayName: string;
|
|
103
106
|
externalPlayerUrl: string | null;
|
|
104
|
-
rtspUrl: string;
|
|
107
|
+
rtspUrl: string | null;
|
|
108
|
+
mountedStreamId: string | null;
|
|
105
109
|
recordingCapable: boolean;
|
|
106
110
|
lensType: "flat" | "fisheye";
|
|
107
111
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -127,7 +131,8 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
127
131
|
id: string;
|
|
128
132
|
displayName: string;
|
|
129
133
|
externalPlayerUrl: string | null;
|
|
130
|
-
rtspUrl: string;
|
|
134
|
+
rtspUrl: string | null;
|
|
135
|
+
mountedStreamId: string | null;
|
|
131
136
|
recordingCapable: boolean;
|
|
132
137
|
lensType: "flat" | "fisheye";
|
|
133
138
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -449,7 +454,8 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
449
454
|
id: z.ZodString;
|
|
450
455
|
displayName: z.ZodString;
|
|
451
456
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
452
|
-
rtspUrl: z.ZodString
|
|
457
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
458
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
453
459
|
recordingCapable: z.ZodBoolean;
|
|
454
460
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
455
461
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -464,7 +470,8 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
464
470
|
id: string;
|
|
465
471
|
displayName: string;
|
|
466
472
|
externalPlayerUrl: string | null;
|
|
467
|
-
rtspUrl: string;
|
|
473
|
+
rtspUrl: string | null;
|
|
474
|
+
mountedStreamId: string | null;
|
|
468
475
|
recordingCapable: boolean;
|
|
469
476
|
lensType: "flat" | "fisheye";
|
|
470
477
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -475,7 +482,8 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
475
482
|
id: string;
|
|
476
483
|
displayName: string;
|
|
477
484
|
externalPlayerUrl: string | null;
|
|
478
|
-
rtspUrl: string;
|
|
485
|
+
rtspUrl: string | null;
|
|
486
|
+
mountedStreamId: string | null;
|
|
479
487
|
recordingCapable: boolean;
|
|
480
488
|
lensType: "flat" | "fisheye";
|
|
481
489
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -493,7 +501,8 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
493
501
|
id: string;
|
|
494
502
|
displayName: string;
|
|
495
503
|
externalPlayerUrl: string | null;
|
|
496
|
-
rtspUrl: string;
|
|
504
|
+
rtspUrl: string | null;
|
|
505
|
+
mountedStreamId: string | null;
|
|
497
506
|
recordingCapable: boolean;
|
|
498
507
|
lensType: "flat" | "fisheye";
|
|
499
508
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -519,7 +528,8 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
519
528
|
id: string;
|
|
520
529
|
displayName: string;
|
|
521
530
|
externalPlayerUrl: string | null;
|
|
522
|
-
rtspUrl: string;
|
|
531
|
+
rtspUrl: string | null;
|
|
532
|
+
mountedStreamId: string | null;
|
|
523
533
|
recordingCapable: boolean;
|
|
524
534
|
lensType: "flat" | "fisheye";
|
|
525
535
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -807,7 +817,8 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
807
817
|
id: z.ZodString;
|
|
808
818
|
displayName: z.ZodString;
|
|
809
819
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
810
|
-
rtspUrl: z.ZodString
|
|
820
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
821
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
811
822
|
recordingCapable: z.ZodBoolean;
|
|
812
823
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
813
824
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -822,7 +833,8 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
822
833
|
id: string;
|
|
823
834
|
displayName: string;
|
|
824
835
|
externalPlayerUrl: string | null;
|
|
825
|
-
rtspUrl: string;
|
|
836
|
+
rtspUrl: string | null;
|
|
837
|
+
mountedStreamId: string | null;
|
|
826
838
|
recordingCapable: boolean;
|
|
827
839
|
lensType: "flat" | "fisheye";
|
|
828
840
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -833,7 +845,8 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
833
845
|
id: string;
|
|
834
846
|
displayName: string;
|
|
835
847
|
externalPlayerUrl: string | null;
|
|
836
|
-
rtspUrl: string;
|
|
848
|
+
rtspUrl: string | null;
|
|
849
|
+
mountedStreamId: string | null;
|
|
837
850
|
recordingCapable: boolean;
|
|
838
851
|
lensType: "flat" | "fisheye";
|
|
839
852
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -851,7 +864,8 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
851
864
|
id: string;
|
|
852
865
|
displayName: string;
|
|
853
866
|
externalPlayerUrl: string | null;
|
|
854
|
-
rtspUrl: string;
|
|
867
|
+
rtspUrl: string | null;
|
|
868
|
+
mountedStreamId: string | null;
|
|
855
869
|
recordingCapable: boolean;
|
|
856
870
|
lensType: "flat" | "fisheye";
|
|
857
871
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -877,7 +891,8 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
877
891
|
id: string;
|
|
878
892
|
displayName: string;
|
|
879
893
|
externalPlayerUrl: string | null;
|
|
880
|
-
rtspUrl: string;
|
|
894
|
+
rtspUrl: string | null;
|
|
895
|
+
mountedStreamId: string | null;
|
|
881
896
|
recordingCapable: boolean;
|
|
882
897
|
lensType: "flat" | "fisheye";
|
|
883
898
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -11,7 +11,8 @@ export declare const sStreamInfo: z.ZodObject<{
|
|
|
11
11
|
id: z.ZodString;
|
|
12
12
|
displayName: z.ZodString;
|
|
13
13
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
14
|
-
rtspUrl: z.ZodString
|
|
14
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
15
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
15
16
|
recordingCapable: z.ZodBoolean;
|
|
16
17
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
17
18
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -26,7 +27,8 @@ export declare const sStreamInfo: z.ZodObject<{
|
|
|
26
27
|
id: string;
|
|
27
28
|
displayName: string;
|
|
28
29
|
externalPlayerUrl: string | null;
|
|
29
|
-
rtspUrl: string;
|
|
30
|
+
rtspUrl: string | null;
|
|
31
|
+
mountedStreamId: string | null;
|
|
30
32
|
recordingCapable: boolean;
|
|
31
33
|
lensType: "flat" | "fisheye";
|
|
32
34
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -37,7 +39,8 @@ export declare const sStreamInfo: z.ZodObject<{
|
|
|
37
39
|
id: string;
|
|
38
40
|
displayName: string;
|
|
39
41
|
externalPlayerUrl: string | null;
|
|
40
|
-
rtspUrl: string;
|
|
42
|
+
rtspUrl: string | null;
|
|
43
|
+
mountedStreamId: string | null;
|
|
41
44
|
recordingCapable: boolean;
|
|
42
45
|
lensType: "flat" | "fisheye";
|
|
43
46
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -60,7 +63,8 @@ export declare const sCameraSpecs: z.ZodObject<{
|
|
|
60
63
|
id: z.ZodString;
|
|
61
64
|
displayName: z.ZodString;
|
|
62
65
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
63
|
-
rtspUrl: z.ZodString
|
|
66
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
67
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
64
68
|
recordingCapable: z.ZodBoolean;
|
|
65
69
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
66
70
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -75,7 +79,8 @@ export declare const sCameraSpecs: z.ZodObject<{
|
|
|
75
79
|
id: string;
|
|
76
80
|
displayName: string;
|
|
77
81
|
externalPlayerUrl: string | null;
|
|
78
|
-
rtspUrl: string;
|
|
82
|
+
rtspUrl: string | null;
|
|
83
|
+
mountedStreamId: string | null;
|
|
79
84
|
recordingCapable: boolean;
|
|
80
85
|
lensType: "flat" | "fisheye";
|
|
81
86
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -86,7 +91,8 @@ export declare const sCameraSpecs: z.ZodObject<{
|
|
|
86
91
|
id: string;
|
|
87
92
|
displayName: string;
|
|
88
93
|
externalPlayerUrl: string | null;
|
|
89
|
-
rtspUrl: string;
|
|
94
|
+
rtspUrl: string | null;
|
|
95
|
+
mountedStreamId: string | null;
|
|
90
96
|
recordingCapable: boolean;
|
|
91
97
|
lensType: "flat" | "fisheye";
|
|
92
98
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -101,7 +107,8 @@ export declare const sCameraSpecs: z.ZodObject<{
|
|
|
101
107
|
id: string;
|
|
102
108
|
displayName: string;
|
|
103
109
|
externalPlayerUrl: string | null;
|
|
104
|
-
rtspUrl: string;
|
|
110
|
+
rtspUrl: string | null;
|
|
111
|
+
mountedStreamId: string | null;
|
|
105
112
|
recordingCapable: boolean;
|
|
106
113
|
lensType: "flat" | "fisheye";
|
|
107
114
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -126,7 +133,8 @@ export declare const sCameraSpecs: z.ZodObject<{
|
|
|
126
133
|
id: string;
|
|
127
134
|
displayName: string;
|
|
128
135
|
externalPlayerUrl: string | null;
|
|
129
|
-
rtspUrl: string;
|
|
136
|
+
rtspUrl: string | null;
|
|
137
|
+
mountedStreamId: string | null;
|
|
130
138
|
recordingCapable: boolean;
|
|
131
139
|
lensType: "flat" | "fisheye";
|
|
132
140
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -13,7 +13,8 @@ exports.sStreamInfo = zod_1.z.object({
|
|
|
13
13
|
id: zod_1.z.string().nonempty(),
|
|
14
14
|
displayName: zod_1.z.string().nonempty(),
|
|
15
15
|
externalPlayerUrl: zod_1.z.string().nullable(),
|
|
16
|
-
rtspUrl: zod_1.z.string().nonempty(),
|
|
16
|
+
rtspUrl: zod_1.z.string().nonempty().nullable(),
|
|
17
|
+
mountedStreamId: zod_1.z.string().nonempty().nullable(),
|
|
17
18
|
recordingCapable: zod_1.z.boolean(),
|
|
18
19
|
lensType: zod_1.z.enum(['flat', 'fisheye']),
|
|
19
20
|
mountPoint: zod_1.z.enum(['wall', 'ceiling', 'floor']),
|