@awarevue/api-types 2.0.58 → 2.0.60
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 +48 -0
- package/dist/api/commands/all.d.ts +96 -0
- package/dist/api/commands/nvr-exporter.d.ts +32 -0
- package/dist/api/commands/nvr-recorder.d.ts +128 -0
- package/dist/api/commands/server.d.ts +32 -0
- package/dist/api/queries/all.d.ts +36 -0
- package/dist/api/queries/nvr-recorder.d.ts +72 -0
- package/dist/api/rest/view.d.ts +32 -0
- package/dist/objects/device/any-device.d.ts +32 -0
- package/dist/objects/device/camera.d.ts +11 -0
- package/dist/objects/device/camera.js +2 -0
- package/dist/objects/device/device-import.d.ts +44 -0
- package/dist/objects/view.d.ts +52 -0
- package/dist/objects/view.js +2 -0
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +16 -0
- package/package.json +1 -1
|
@@ -90,6 +90,7 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
90
90
|
height: z.ZodNullable<z.ZodNumber>;
|
|
91
91
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
92
92
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
93
|
+
recordingCapable: z.ZodBoolean;
|
|
93
94
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
94
95
|
kind: z.ZodString;
|
|
95
96
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -106,6 +107,7 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
106
107
|
height: number | null;
|
|
107
108
|
lensType: "flat" | "fisheye";
|
|
108
109
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
110
|
+
recordingCapable: boolean;
|
|
109
111
|
webrtcPlaybackSource: ({
|
|
110
112
|
kind: string;
|
|
111
113
|
} & Record<string, unknown>) | null;
|
|
@@ -118,11 +120,13 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
118
120
|
height: number | null;
|
|
119
121
|
lensType: "flat" | "fisheye";
|
|
120
122
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
123
|
+
recordingCapable: boolean;
|
|
121
124
|
webrtcPlaybackSource: ({
|
|
122
125
|
kind: string;
|
|
123
126
|
} & Record<string, unknown>) | null;
|
|
124
127
|
}>, "many">;
|
|
125
128
|
defaultStreamId: z.ZodString;
|
|
129
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
126
130
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
127
131
|
} & {
|
|
128
132
|
type: z.ZodLiteral<"camera">;
|
|
@@ -147,11 +151,13 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
147
151
|
height: number | null;
|
|
148
152
|
lensType: "flat" | "fisheye";
|
|
149
153
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
154
|
+
recordingCapable: boolean;
|
|
150
155
|
webrtcPlaybackSource: ({
|
|
151
156
|
kind: string;
|
|
152
157
|
} & Record<string, unknown>) | null;
|
|
153
158
|
}[];
|
|
154
159
|
defaultStreamId: string;
|
|
160
|
+
autoSwitchStreams: boolean;
|
|
155
161
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
156
162
|
}, {
|
|
157
163
|
type: "camera";
|
|
@@ -174,11 +180,13 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
174
180
|
height: number | null;
|
|
175
181
|
lensType: "flat" | "fisheye";
|
|
176
182
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
183
|
+
recordingCapable: boolean;
|
|
177
184
|
webrtcPlaybackSource: ({
|
|
178
185
|
kind: string;
|
|
179
186
|
} & Record<string, unknown>) | null;
|
|
180
187
|
}[];
|
|
181
188
|
defaultStreamId: string;
|
|
189
|
+
autoSwitchStreams: boolean;
|
|
182
190
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
183
191
|
}>, z.ZodObject<{
|
|
184
192
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -369,11 +377,13 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
369
377
|
height: number | null;
|
|
370
378
|
lensType: "flat" | "fisheye";
|
|
371
379
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
380
|
+
recordingCapable: boolean;
|
|
372
381
|
webrtcPlaybackSource: ({
|
|
373
382
|
kind: string;
|
|
374
383
|
} & Record<string, unknown>) | null;
|
|
375
384
|
}[];
|
|
376
385
|
defaultStreamId: string;
|
|
386
|
+
autoSwitchStreams: boolean;
|
|
377
387
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
378
388
|
} | {
|
|
379
389
|
type: "door";
|
|
@@ -466,11 +476,13 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
466
476
|
height: number | null;
|
|
467
477
|
lensType: "flat" | "fisheye";
|
|
468
478
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
479
|
+
recordingCapable: boolean;
|
|
469
480
|
webrtcPlaybackSource: ({
|
|
470
481
|
kind: string;
|
|
471
482
|
} & Record<string, unknown>) | null;
|
|
472
483
|
}[];
|
|
473
484
|
defaultStreamId: string;
|
|
485
|
+
autoSwitchStreams: boolean;
|
|
474
486
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
475
487
|
} | {
|
|
476
488
|
type: "door";
|
|
@@ -633,6 +645,7 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
633
645
|
height: z.ZodNullable<z.ZodNumber>;
|
|
634
646
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
635
647
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
648
|
+
recordingCapable: z.ZodBoolean;
|
|
636
649
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
637
650
|
kind: z.ZodString;
|
|
638
651
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -649,6 +662,7 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
649
662
|
height: number | null;
|
|
650
663
|
lensType: "flat" | "fisheye";
|
|
651
664
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
665
|
+
recordingCapable: boolean;
|
|
652
666
|
webrtcPlaybackSource: ({
|
|
653
667
|
kind: string;
|
|
654
668
|
} & Record<string, unknown>) | null;
|
|
@@ -661,11 +675,13 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
661
675
|
height: number | null;
|
|
662
676
|
lensType: "flat" | "fisheye";
|
|
663
677
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
678
|
+
recordingCapable: boolean;
|
|
664
679
|
webrtcPlaybackSource: ({
|
|
665
680
|
kind: string;
|
|
666
681
|
} & Record<string, unknown>) | null;
|
|
667
682
|
}>, "many">;
|
|
668
683
|
defaultStreamId: z.ZodString;
|
|
684
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
669
685
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
670
686
|
} & {
|
|
671
687
|
type: z.ZodLiteral<"camera">;
|
|
@@ -690,11 +706,13 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
690
706
|
height: number | null;
|
|
691
707
|
lensType: "flat" | "fisheye";
|
|
692
708
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
709
|
+
recordingCapable: boolean;
|
|
693
710
|
webrtcPlaybackSource: ({
|
|
694
711
|
kind: string;
|
|
695
712
|
} & Record<string, unknown>) | null;
|
|
696
713
|
}[];
|
|
697
714
|
defaultStreamId: string;
|
|
715
|
+
autoSwitchStreams: boolean;
|
|
698
716
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
699
717
|
}, {
|
|
700
718
|
type: "camera";
|
|
@@ -717,11 +735,13 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
717
735
|
height: number | null;
|
|
718
736
|
lensType: "flat" | "fisheye";
|
|
719
737
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
738
|
+
recordingCapable: boolean;
|
|
720
739
|
webrtcPlaybackSource: ({
|
|
721
740
|
kind: string;
|
|
722
741
|
} & Record<string, unknown>) | null;
|
|
723
742
|
}[];
|
|
724
743
|
defaultStreamId: string;
|
|
744
|
+
autoSwitchStreams: boolean;
|
|
725
745
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
726
746
|
}>, z.ZodObject<{
|
|
727
747
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -913,11 +933,13 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
913
933
|
height: number | null;
|
|
914
934
|
lensType: "flat" | "fisheye";
|
|
915
935
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
936
|
+
recordingCapable: boolean;
|
|
916
937
|
webrtcPlaybackSource: ({
|
|
917
938
|
kind: string;
|
|
918
939
|
} & Record<string, unknown>) | null;
|
|
919
940
|
}[];
|
|
920
941
|
defaultStreamId: string;
|
|
942
|
+
autoSwitchStreams: boolean;
|
|
921
943
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
922
944
|
} | {
|
|
923
945
|
type: "door";
|
|
@@ -1010,11 +1032,13 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
1010
1032
|
height: number | null;
|
|
1011
1033
|
lensType: "flat" | "fisheye";
|
|
1012
1034
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1035
|
+
recordingCapable: boolean;
|
|
1013
1036
|
webrtcPlaybackSource: ({
|
|
1014
1037
|
kind: string;
|
|
1015
1038
|
} & Record<string, unknown>) | null;
|
|
1016
1039
|
}[];
|
|
1017
1040
|
defaultStreamId: string;
|
|
1041
|
+
autoSwitchStreams: boolean;
|
|
1018
1042
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1019
1043
|
} | {
|
|
1020
1044
|
type: "door";
|
|
@@ -1170,6 +1194,7 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1170
1194
|
height: z.ZodNullable<z.ZodNumber>;
|
|
1171
1195
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
1172
1196
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
1197
|
+
recordingCapable: z.ZodBoolean;
|
|
1173
1198
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
1174
1199
|
kind: z.ZodString;
|
|
1175
1200
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1186,6 +1211,7 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1186
1211
|
height: number | null;
|
|
1187
1212
|
lensType: "flat" | "fisheye";
|
|
1188
1213
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1214
|
+
recordingCapable: boolean;
|
|
1189
1215
|
webrtcPlaybackSource: ({
|
|
1190
1216
|
kind: string;
|
|
1191
1217
|
} & Record<string, unknown>) | null;
|
|
@@ -1198,11 +1224,13 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1198
1224
|
height: number | null;
|
|
1199
1225
|
lensType: "flat" | "fisheye";
|
|
1200
1226
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1227
|
+
recordingCapable: boolean;
|
|
1201
1228
|
webrtcPlaybackSource: ({
|
|
1202
1229
|
kind: string;
|
|
1203
1230
|
} & Record<string, unknown>) | null;
|
|
1204
1231
|
}>, "many">;
|
|
1205
1232
|
defaultStreamId: z.ZodString;
|
|
1233
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
1206
1234
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
1207
1235
|
} & {
|
|
1208
1236
|
type: z.ZodLiteral<"camera">;
|
|
@@ -1227,11 +1255,13 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1227
1255
|
height: number | null;
|
|
1228
1256
|
lensType: "flat" | "fisheye";
|
|
1229
1257
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1258
|
+
recordingCapable: boolean;
|
|
1230
1259
|
webrtcPlaybackSource: ({
|
|
1231
1260
|
kind: string;
|
|
1232
1261
|
} & Record<string, unknown>) | null;
|
|
1233
1262
|
}[];
|
|
1234
1263
|
defaultStreamId: string;
|
|
1264
|
+
autoSwitchStreams: boolean;
|
|
1235
1265
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1236
1266
|
}, {
|
|
1237
1267
|
type: "camera";
|
|
@@ -1254,11 +1284,13 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1254
1284
|
height: number | null;
|
|
1255
1285
|
lensType: "flat" | "fisheye";
|
|
1256
1286
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1287
|
+
recordingCapable: boolean;
|
|
1257
1288
|
webrtcPlaybackSource: ({
|
|
1258
1289
|
kind: string;
|
|
1259
1290
|
} & Record<string, unknown>) | null;
|
|
1260
1291
|
}[];
|
|
1261
1292
|
defaultStreamId: string;
|
|
1293
|
+
autoSwitchStreams: boolean;
|
|
1262
1294
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1263
1295
|
}>, z.ZodObject<{
|
|
1264
1296
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -1451,11 +1483,13 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1451
1483
|
height: number | null;
|
|
1452
1484
|
lensType: "flat" | "fisheye";
|
|
1453
1485
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1486
|
+
recordingCapable: boolean;
|
|
1454
1487
|
webrtcPlaybackSource: ({
|
|
1455
1488
|
kind: string;
|
|
1456
1489
|
} & Record<string, unknown>) | null;
|
|
1457
1490
|
}[];
|
|
1458
1491
|
defaultStreamId: string;
|
|
1492
|
+
autoSwitchStreams: boolean;
|
|
1459
1493
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1460
1494
|
} | {
|
|
1461
1495
|
type: "door";
|
|
@@ -1548,11 +1582,13 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1548
1582
|
height: number | null;
|
|
1549
1583
|
lensType: "flat" | "fisheye";
|
|
1550
1584
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1585
|
+
recordingCapable: boolean;
|
|
1551
1586
|
webrtcPlaybackSource: ({
|
|
1552
1587
|
kind: string;
|
|
1553
1588
|
} & Record<string, unknown>) | null;
|
|
1554
1589
|
}[];
|
|
1555
1590
|
defaultStreamId: string;
|
|
1591
|
+
autoSwitchStreams: boolean;
|
|
1556
1592
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1557
1593
|
} | {
|
|
1558
1594
|
type: "door";
|
|
@@ -1707,6 +1743,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1707
1743
|
height: z.ZodNullable<z.ZodNumber>;
|
|
1708
1744
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
1709
1745
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
1746
|
+
recordingCapable: z.ZodBoolean;
|
|
1710
1747
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
1711
1748
|
kind: z.ZodString;
|
|
1712
1749
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1723,6 +1760,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1723
1760
|
height: number | null;
|
|
1724
1761
|
lensType: "flat" | "fisheye";
|
|
1725
1762
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1763
|
+
recordingCapable: boolean;
|
|
1726
1764
|
webrtcPlaybackSource: ({
|
|
1727
1765
|
kind: string;
|
|
1728
1766
|
} & Record<string, unknown>) | null;
|
|
@@ -1735,11 +1773,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1735
1773
|
height: number | null;
|
|
1736
1774
|
lensType: "flat" | "fisheye";
|
|
1737
1775
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1776
|
+
recordingCapable: boolean;
|
|
1738
1777
|
webrtcPlaybackSource: ({
|
|
1739
1778
|
kind: string;
|
|
1740
1779
|
} & Record<string, unknown>) | null;
|
|
1741
1780
|
}>, "many">;
|
|
1742
1781
|
defaultStreamId: z.ZodString;
|
|
1782
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
1743
1783
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
1744
1784
|
} & {
|
|
1745
1785
|
type: z.ZodLiteral<"camera">;
|
|
@@ -1764,11 +1804,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1764
1804
|
height: number | null;
|
|
1765
1805
|
lensType: "flat" | "fisheye";
|
|
1766
1806
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1807
|
+
recordingCapable: boolean;
|
|
1767
1808
|
webrtcPlaybackSource: ({
|
|
1768
1809
|
kind: string;
|
|
1769
1810
|
} & Record<string, unknown>) | null;
|
|
1770
1811
|
}[];
|
|
1771
1812
|
defaultStreamId: string;
|
|
1813
|
+
autoSwitchStreams: boolean;
|
|
1772
1814
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1773
1815
|
}, {
|
|
1774
1816
|
type: "camera";
|
|
@@ -1791,11 +1833,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1791
1833
|
height: number | null;
|
|
1792
1834
|
lensType: "flat" | "fisheye";
|
|
1793
1835
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1836
|
+
recordingCapable: boolean;
|
|
1794
1837
|
webrtcPlaybackSource: ({
|
|
1795
1838
|
kind: string;
|
|
1796
1839
|
} & Record<string, unknown>) | null;
|
|
1797
1840
|
}[];
|
|
1798
1841
|
defaultStreamId: string;
|
|
1842
|
+
autoSwitchStreams: boolean;
|
|
1799
1843
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1800
1844
|
}>, z.ZodObject<{
|
|
1801
1845
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -1986,11 +2030,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1986
2030
|
height: number | null;
|
|
1987
2031
|
lensType: "flat" | "fisheye";
|
|
1988
2032
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2033
|
+
recordingCapable: boolean;
|
|
1989
2034
|
webrtcPlaybackSource: ({
|
|
1990
2035
|
kind: string;
|
|
1991
2036
|
} & Record<string, unknown>) | null;
|
|
1992
2037
|
}[];
|
|
1993
2038
|
defaultStreamId: string;
|
|
2039
|
+
autoSwitchStreams: boolean;
|
|
1994
2040
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1995
2041
|
} | {
|
|
1996
2042
|
type: "door";
|
|
@@ -2083,11 +2129,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2083
2129
|
height: number | null;
|
|
2084
2130
|
lensType: "flat" | "fisheye";
|
|
2085
2131
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2132
|
+
recordingCapable: boolean;
|
|
2086
2133
|
webrtcPlaybackSource: ({
|
|
2087
2134
|
kind: string;
|
|
2088
2135
|
} & Record<string, unknown>) | null;
|
|
2089
2136
|
}[];
|
|
2090
2137
|
defaultStreamId: string;
|
|
2138
|
+
autoSwitchStreams: boolean;
|
|
2091
2139
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
2092
2140
|
} | {
|
|
2093
2141
|
type: "door";
|
|
@@ -2231,6 +2279,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2231
2279
|
height: z.ZodNullable<z.ZodNumber>;
|
|
2232
2280
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
2233
2281
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
2282
|
+
recordingCapable: z.ZodBoolean;
|
|
2234
2283
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
2235
2284
|
kind: z.ZodString;
|
|
2236
2285
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2247,6 +2296,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2247
2296
|
height: number | null;
|
|
2248
2297
|
lensType: "flat" | "fisheye";
|
|
2249
2298
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2299
|
+
recordingCapable: boolean;
|
|
2250
2300
|
webrtcPlaybackSource: ({
|
|
2251
2301
|
kind: string;
|
|
2252
2302
|
} & Record<string, unknown>) | null;
|
|
@@ -2259,11 +2309,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2259
2309
|
height: number | null;
|
|
2260
2310
|
lensType: "flat" | "fisheye";
|
|
2261
2311
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2312
|
+
recordingCapable: boolean;
|
|
2262
2313
|
webrtcPlaybackSource: ({
|
|
2263
2314
|
kind: string;
|
|
2264
2315
|
} & Record<string, unknown>) | null;
|
|
2265
2316
|
}>, "many">;
|
|
2266
2317
|
defaultStreamId: z.ZodString;
|
|
2318
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
2267
2319
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
2268
2320
|
} & {
|
|
2269
2321
|
type: z.ZodLiteral<"camera">;
|
|
@@ -2288,11 +2340,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2288
2340
|
height: number | null;
|
|
2289
2341
|
lensType: "flat" | "fisheye";
|
|
2290
2342
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2343
|
+
recordingCapable: boolean;
|
|
2291
2344
|
webrtcPlaybackSource: ({
|
|
2292
2345
|
kind: string;
|
|
2293
2346
|
} & Record<string, unknown>) | null;
|
|
2294
2347
|
}[];
|
|
2295
2348
|
defaultStreamId: string;
|
|
2349
|
+
autoSwitchStreams: boolean;
|
|
2296
2350
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
2297
2351
|
}, {
|
|
2298
2352
|
type: "camera";
|
|
@@ -2315,11 +2369,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2315
2369
|
height: number | null;
|
|
2316
2370
|
lensType: "flat" | "fisheye";
|
|
2317
2371
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2372
|
+
recordingCapable: boolean;
|
|
2318
2373
|
webrtcPlaybackSource: ({
|
|
2319
2374
|
kind: string;
|
|
2320
2375
|
} & Record<string, unknown>) | null;
|
|
2321
2376
|
}[];
|
|
2322
2377
|
defaultStreamId: string;
|
|
2378
|
+
autoSwitchStreams: boolean;
|
|
2323
2379
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
2324
2380
|
}>, z.ZodObject<{
|
|
2325
2381
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -2511,11 +2567,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2511
2567
|
height: number | null;
|
|
2512
2568
|
lensType: "flat" | "fisheye";
|
|
2513
2569
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2570
|
+
recordingCapable: boolean;
|
|
2514
2571
|
webrtcPlaybackSource: ({
|
|
2515
2572
|
kind: string;
|
|
2516
2573
|
} & Record<string, unknown>) | null;
|
|
2517
2574
|
}[];
|
|
2518
2575
|
defaultStreamId: string;
|
|
2576
|
+
autoSwitchStreams: boolean;
|
|
2519
2577
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
2520
2578
|
} | {
|
|
2521
2579
|
type: "door";
|
|
@@ -2608,11 +2666,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2608
2666
|
height: number | null;
|
|
2609
2667
|
lensType: "flat" | "fisheye";
|
|
2610
2668
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2669
|
+
recordingCapable: boolean;
|
|
2611
2670
|
webrtcPlaybackSource: ({
|
|
2612
2671
|
kind: string;
|
|
2613
2672
|
} & Record<string, unknown>) | null;
|
|
2614
2673
|
}[];
|
|
2615
2674
|
defaultStreamId: string;
|
|
2675
|
+
autoSwitchStreams: boolean;
|
|
2616
2676
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
2617
2677
|
} | {
|
|
2618
2678
|
type: "door";
|
|
@@ -2755,6 +2815,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2755
2815
|
height: z.ZodNullable<z.ZodNumber>;
|
|
2756
2816
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
2757
2817
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
2818
|
+
recordingCapable: z.ZodBoolean;
|
|
2758
2819
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
2759
2820
|
kind: z.ZodString;
|
|
2760
2821
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2771,6 +2832,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2771
2832
|
height: number | null;
|
|
2772
2833
|
lensType: "flat" | "fisheye";
|
|
2773
2834
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2835
|
+
recordingCapable: boolean;
|
|
2774
2836
|
webrtcPlaybackSource: ({
|
|
2775
2837
|
kind: string;
|
|
2776
2838
|
} & Record<string, unknown>) | null;
|
|
@@ -2783,11 +2845,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2783
2845
|
height: number | null;
|
|
2784
2846
|
lensType: "flat" | "fisheye";
|
|
2785
2847
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2848
|
+
recordingCapable: boolean;
|
|
2786
2849
|
webrtcPlaybackSource: ({
|
|
2787
2850
|
kind: string;
|
|
2788
2851
|
} & Record<string, unknown>) | null;
|
|
2789
2852
|
}>, "many">;
|
|
2790
2853
|
defaultStreamId: z.ZodString;
|
|
2854
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
2791
2855
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
2792
2856
|
} & {
|
|
2793
2857
|
type: z.ZodLiteral<"camera">;
|
|
@@ -2812,11 +2876,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2812
2876
|
height: number | null;
|
|
2813
2877
|
lensType: "flat" | "fisheye";
|
|
2814
2878
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2879
|
+
recordingCapable: boolean;
|
|
2815
2880
|
webrtcPlaybackSource: ({
|
|
2816
2881
|
kind: string;
|
|
2817
2882
|
} & Record<string, unknown>) | null;
|
|
2818
2883
|
}[];
|
|
2819
2884
|
defaultStreamId: string;
|
|
2885
|
+
autoSwitchStreams: boolean;
|
|
2820
2886
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
2821
2887
|
}, {
|
|
2822
2888
|
type: "camera";
|
|
@@ -2839,11 +2905,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2839
2905
|
height: number | null;
|
|
2840
2906
|
lensType: "flat" | "fisheye";
|
|
2841
2907
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2908
|
+
recordingCapable: boolean;
|
|
2842
2909
|
webrtcPlaybackSource: ({
|
|
2843
2910
|
kind: string;
|
|
2844
2911
|
} & Record<string, unknown>) | null;
|
|
2845
2912
|
}[];
|
|
2846
2913
|
defaultStreamId: string;
|
|
2914
|
+
autoSwitchStreams: boolean;
|
|
2847
2915
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
2848
2916
|
}>, z.ZodObject<{
|
|
2849
2917
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -3036,11 +3104,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
3036
3104
|
height: number | null;
|
|
3037
3105
|
lensType: "flat" | "fisheye";
|
|
3038
3106
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3107
|
+
recordingCapable: boolean;
|
|
3039
3108
|
webrtcPlaybackSource: ({
|
|
3040
3109
|
kind: string;
|
|
3041
3110
|
} & Record<string, unknown>) | null;
|
|
3042
3111
|
}[];
|
|
3043
3112
|
defaultStreamId: string;
|
|
3113
|
+
autoSwitchStreams: boolean;
|
|
3044
3114
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
3045
3115
|
} | {
|
|
3046
3116
|
type: "door";
|
|
@@ -3133,11 +3203,13 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
3133
3203
|
height: number | null;
|
|
3134
3204
|
lensType: "flat" | "fisheye";
|
|
3135
3205
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3206
|
+
recordingCapable: boolean;
|
|
3136
3207
|
webrtcPlaybackSource: ({
|
|
3137
3208
|
kind: string;
|
|
3138
3209
|
} & Record<string, unknown>) | null;
|
|
3139
3210
|
}[];
|
|
3140
3211
|
defaultStreamId: string;
|
|
3212
|
+
autoSwitchStreams: boolean;
|
|
3141
3213
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
3142
3214
|
} | {
|
|
3143
3215
|
type: "door";
|