@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
|
@@ -111,6 +111,7 @@ export declare const sNotify: z.ZodObject<{
|
|
|
111
111
|
height: z.ZodNullable<z.ZodNumber>;
|
|
112
112
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
113
113
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
114
|
+
recordingCapable: z.ZodBoolean;
|
|
114
115
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
115
116
|
kind: z.ZodString;
|
|
116
117
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -127,6 +128,7 @@ export declare const sNotify: z.ZodObject<{
|
|
|
127
128
|
height: number | null;
|
|
128
129
|
lensType: "flat" | "fisheye";
|
|
129
130
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
131
|
+
recordingCapable: boolean;
|
|
130
132
|
webrtcPlaybackSource: ({
|
|
131
133
|
kind: string;
|
|
132
134
|
} & Record<string, unknown>) | null;
|
|
@@ -139,11 +141,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
139
141
|
height: number | null;
|
|
140
142
|
lensType: "flat" | "fisheye";
|
|
141
143
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
144
|
+
recordingCapable: boolean;
|
|
142
145
|
webrtcPlaybackSource: ({
|
|
143
146
|
kind: string;
|
|
144
147
|
} & Record<string, unknown>) | null;
|
|
145
148
|
}>, "many">;
|
|
146
149
|
defaultStreamId: z.ZodString;
|
|
150
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
147
151
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
148
152
|
} & {
|
|
149
153
|
type: z.ZodLiteral<"camera">;
|
|
@@ -168,11 +172,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
168
172
|
height: number | null;
|
|
169
173
|
lensType: "flat" | "fisheye";
|
|
170
174
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
175
|
+
recordingCapable: boolean;
|
|
171
176
|
webrtcPlaybackSource: ({
|
|
172
177
|
kind: string;
|
|
173
178
|
} & Record<string, unknown>) | null;
|
|
174
179
|
}[];
|
|
175
180
|
defaultStreamId: string;
|
|
181
|
+
autoSwitchStreams: boolean;
|
|
176
182
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
177
183
|
}, {
|
|
178
184
|
type: "camera";
|
|
@@ -195,11 +201,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
195
201
|
height: number | null;
|
|
196
202
|
lensType: "flat" | "fisheye";
|
|
197
203
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
204
|
+
recordingCapable: boolean;
|
|
198
205
|
webrtcPlaybackSource: ({
|
|
199
206
|
kind: string;
|
|
200
207
|
} & Record<string, unknown>) | null;
|
|
201
208
|
}[];
|
|
202
209
|
defaultStreamId: string;
|
|
210
|
+
autoSwitchStreams: boolean;
|
|
203
211
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
204
212
|
}>, z.ZodObject<{
|
|
205
213
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -394,11 +402,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
394
402
|
height: number | null;
|
|
395
403
|
lensType: "flat" | "fisheye";
|
|
396
404
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
405
|
+
recordingCapable: boolean;
|
|
397
406
|
webrtcPlaybackSource: ({
|
|
398
407
|
kind: string;
|
|
399
408
|
} & Record<string, unknown>) | null;
|
|
400
409
|
}[];
|
|
401
410
|
defaultStreamId: string;
|
|
411
|
+
autoSwitchStreams: boolean;
|
|
402
412
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
403
413
|
} | {
|
|
404
414
|
type: "door";
|
|
@@ -493,11 +503,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
493
503
|
height: number | null;
|
|
494
504
|
lensType: "flat" | "fisheye";
|
|
495
505
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
506
|
+
recordingCapable: boolean;
|
|
496
507
|
webrtcPlaybackSource: ({
|
|
497
508
|
kind: string;
|
|
498
509
|
} & Record<string, unknown>) | null;
|
|
499
510
|
}[];
|
|
500
511
|
defaultStreamId: string;
|
|
512
|
+
autoSwitchStreams: boolean;
|
|
501
513
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
502
514
|
} | {
|
|
503
515
|
type: "door";
|
|
@@ -594,11 +606,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
594
606
|
height: number | null;
|
|
595
607
|
lensType: "flat" | "fisheye";
|
|
596
608
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
609
|
+
recordingCapable: boolean;
|
|
597
610
|
webrtcPlaybackSource: ({
|
|
598
611
|
kind: string;
|
|
599
612
|
} & Record<string, unknown>) | null;
|
|
600
613
|
}[];
|
|
601
614
|
defaultStreamId: string;
|
|
615
|
+
autoSwitchStreams: boolean;
|
|
602
616
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
603
617
|
} | {
|
|
604
618
|
type: "door";
|
|
@@ -696,11 +710,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
696
710
|
height: number | null;
|
|
697
711
|
lensType: "flat" | "fisheye";
|
|
698
712
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
713
|
+
recordingCapable: boolean;
|
|
699
714
|
webrtcPlaybackSource: ({
|
|
700
715
|
kind: string;
|
|
701
716
|
} & Record<string, unknown>) | null;
|
|
702
717
|
}[];
|
|
703
718
|
defaultStreamId: string;
|
|
719
|
+
autoSwitchStreams: boolean;
|
|
704
720
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
705
721
|
} | {
|
|
706
722
|
type: "door";
|
|
@@ -871,6 +887,7 @@ export declare const serverCommands: {
|
|
|
871
887
|
height: z.ZodNullable<z.ZodNumber>;
|
|
872
888
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
873
889
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
890
|
+
recordingCapable: z.ZodBoolean;
|
|
874
891
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
875
892
|
kind: z.ZodString;
|
|
876
893
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -887,6 +904,7 @@ export declare const serverCommands: {
|
|
|
887
904
|
height: number | null;
|
|
888
905
|
lensType: "flat" | "fisheye";
|
|
889
906
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
907
|
+
recordingCapable: boolean;
|
|
890
908
|
webrtcPlaybackSource: ({
|
|
891
909
|
kind: string;
|
|
892
910
|
} & Record<string, unknown>) | null;
|
|
@@ -899,11 +917,13 @@ export declare const serverCommands: {
|
|
|
899
917
|
height: number | null;
|
|
900
918
|
lensType: "flat" | "fisheye";
|
|
901
919
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
920
|
+
recordingCapable: boolean;
|
|
902
921
|
webrtcPlaybackSource: ({
|
|
903
922
|
kind: string;
|
|
904
923
|
} & Record<string, unknown>) | null;
|
|
905
924
|
}>, "many">;
|
|
906
925
|
defaultStreamId: z.ZodString;
|
|
926
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
907
927
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
908
928
|
} & {
|
|
909
929
|
type: z.ZodLiteral<"camera">;
|
|
@@ -928,11 +948,13 @@ export declare const serverCommands: {
|
|
|
928
948
|
height: number | null;
|
|
929
949
|
lensType: "flat" | "fisheye";
|
|
930
950
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
951
|
+
recordingCapable: boolean;
|
|
931
952
|
webrtcPlaybackSource: ({
|
|
932
953
|
kind: string;
|
|
933
954
|
} & Record<string, unknown>) | null;
|
|
934
955
|
}[];
|
|
935
956
|
defaultStreamId: string;
|
|
957
|
+
autoSwitchStreams: boolean;
|
|
936
958
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
937
959
|
}, {
|
|
938
960
|
type: "camera";
|
|
@@ -955,11 +977,13 @@ export declare const serverCommands: {
|
|
|
955
977
|
height: number | null;
|
|
956
978
|
lensType: "flat" | "fisheye";
|
|
957
979
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
980
|
+
recordingCapable: boolean;
|
|
958
981
|
webrtcPlaybackSource: ({
|
|
959
982
|
kind: string;
|
|
960
983
|
} & Record<string, unknown>) | null;
|
|
961
984
|
}[];
|
|
962
985
|
defaultStreamId: string;
|
|
986
|
+
autoSwitchStreams: boolean;
|
|
963
987
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
964
988
|
}>, z.ZodObject<{
|
|
965
989
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -1154,11 +1178,13 @@ export declare const serverCommands: {
|
|
|
1154
1178
|
height: number | null;
|
|
1155
1179
|
lensType: "flat" | "fisheye";
|
|
1156
1180
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1181
|
+
recordingCapable: boolean;
|
|
1157
1182
|
webrtcPlaybackSource: ({
|
|
1158
1183
|
kind: string;
|
|
1159
1184
|
} & Record<string, unknown>) | null;
|
|
1160
1185
|
}[];
|
|
1161
1186
|
defaultStreamId: string;
|
|
1187
|
+
autoSwitchStreams: boolean;
|
|
1162
1188
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1163
1189
|
} | {
|
|
1164
1190
|
type: "door";
|
|
@@ -1253,11 +1279,13 @@ export declare const serverCommands: {
|
|
|
1253
1279
|
height: number | null;
|
|
1254
1280
|
lensType: "flat" | "fisheye";
|
|
1255
1281
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1282
|
+
recordingCapable: boolean;
|
|
1256
1283
|
webrtcPlaybackSource: ({
|
|
1257
1284
|
kind: string;
|
|
1258
1285
|
} & Record<string, unknown>) | null;
|
|
1259
1286
|
}[];
|
|
1260
1287
|
defaultStreamId: string;
|
|
1288
|
+
autoSwitchStreams: boolean;
|
|
1261
1289
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1262
1290
|
} | {
|
|
1263
1291
|
type: "door";
|
|
@@ -1354,11 +1382,13 @@ export declare const serverCommands: {
|
|
|
1354
1382
|
height: number | null;
|
|
1355
1383
|
lensType: "flat" | "fisheye";
|
|
1356
1384
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1385
|
+
recordingCapable: boolean;
|
|
1357
1386
|
webrtcPlaybackSource: ({
|
|
1358
1387
|
kind: string;
|
|
1359
1388
|
} & Record<string, unknown>) | null;
|
|
1360
1389
|
}[];
|
|
1361
1390
|
defaultStreamId: string;
|
|
1391
|
+
autoSwitchStreams: boolean;
|
|
1362
1392
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1363
1393
|
} | {
|
|
1364
1394
|
type: "door";
|
|
@@ -1456,11 +1486,13 @@ export declare const serverCommands: {
|
|
|
1456
1486
|
height: number | null;
|
|
1457
1487
|
lensType: "flat" | "fisheye";
|
|
1458
1488
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1489
|
+
recordingCapable: boolean;
|
|
1459
1490
|
webrtcPlaybackSource: ({
|
|
1460
1491
|
kind: string;
|
|
1461
1492
|
} & Record<string, unknown>) | null;
|
|
1462
1493
|
}[];
|
|
1463
1494
|
defaultStreamId: string;
|
|
1495
|
+
autoSwitchStreams: boolean;
|
|
1464
1496
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1465
1497
|
} | {
|
|
1466
1498
|
type: "door";
|
|
@@ -229,6 +229,7 @@ export declare const requestSchemasByType: {
|
|
|
229
229
|
height: z.ZodNullable<z.ZodNumber>;
|
|
230
230
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
231
231
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
232
|
+
recordingCapable: z.ZodBoolean;
|
|
232
233
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
233
234
|
kind: z.ZodString;
|
|
234
235
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -245,6 +246,7 @@ export declare const requestSchemasByType: {
|
|
|
245
246
|
height: number | null;
|
|
246
247
|
lensType: "flat" | "fisheye";
|
|
247
248
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
249
|
+
recordingCapable: boolean;
|
|
248
250
|
webrtcPlaybackSource: ({
|
|
249
251
|
kind: string;
|
|
250
252
|
} & Record<string, unknown>) | null;
|
|
@@ -257,11 +259,13 @@ export declare const requestSchemasByType: {
|
|
|
257
259
|
height: number | null;
|
|
258
260
|
lensType: "flat" | "fisheye";
|
|
259
261
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
262
|
+
recordingCapable: boolean;
|
|
260
263
|
webrtcPlaybackSource: ({
|
|
261
264
|
kind: string;
|
|
262
265
|
} & Record<string, unknown>) | null;
|
|
263
266
|
}>, "many">;
|
|
264
267
|
defaultStreamId: z.ZodString;
|
|
268
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
265
269
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
266
270
|
} & {
|
|
267
271
|
type: z.ZodLiteral<"camera">;
|
|
@@ -286,11 +290,13 @@ export declare const requestSchemasByType: {
|
|
|
286
290
|
height: number | null;
|
|
287
291
|
lensType: "flat" | "fisheye";
|
|
288
292
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
293
|
+
recordingCapable: boolean;
|
|
289
294
|
webrtcPlaybackSource: ({
|
|
290
295
|
kind: string;
|
|
291
296
|
} & Record<string, unknown>) | null;
|
|
292
297
|
}[];
|
|
293
298
|
defaultStreamId: string;
|
|
299
|
+
autoSwitchStreams: boolean;
|
|
294
300
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
295
301
|
}, {
|
|
296
302
|
type: "camera";
|
|
@@ -313,11 +319,13 @@ export declare const requestSchemasByType: {
|
|
|
313
319
|
height: number | null;
|
|
314
320
|
lensType: "flat" | "fisheye";
|
|
315
321
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
322
|
+
recordingCapable: boolean;
|
|
316
323
|
webrtcPlaybackSource: ({
|
|
317
324
|
kind: string;
|
|
318
325
|
} & Record<string, unknown>) | null;
|
|
319
326
|
}[];
|
|
320
327
|
defaultStreamId: string;
|
|
328
|
+
autoSwitchStreams: boolean;
|
|
321
329
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
322
330
|
}>, z.ZodObject<{
|
|
323
331
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -508,11 +516,13 @@ export declare const requestSchemasByType: {
|
|
|
508
516
|
height: number | null;
|
|
509
517
|
lensType: "flat" | "fisheye";
|
|
510
518
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
519
|
+
recordingCapable: boolean;
|
|
511
520
|
webrtcPlaybackSource: ({
|
|
512
521
|
kind: string;
|
|
513
522
|
} & Record<string, unknown>) | null;
|
|
514
523
|
}[];
|
|
515
524
|
defaultStreamId: string;
|
|
525
|
+
autoSwitchStreams: boolean;
|
|
516
526
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
517
527
|
} | {
|
|
518
528
|
type: "door";
|
|
@@ -605,11 +615,13 @@ export declare const requestSchemasByType: {
|
|
|
605
615
|
height: number | null;
|
|
606
616
|
lensType: "flat" | "fisheye";
|
|
607
617
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
618
|
+
recordingCapable: boolean;
|
|
608
619
|
webrtcPlaybackSource: ({
|
|
609
620
|
kind: string;
|
|
610
621
|
} & Record<string, unknown>) | null;
|
|
611
622
|
}[];
|
|
612
623
|
defaultStreamId: string;
|
|
624
|
+
autoSwitchStreams: boolean;
|
|
613
625
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
614
626
|
} | {
|
|
615
627
|
type: "door";
|
|
@@ -753,6 +765,7 @@ export declare const requestSchemasByType: {
|
|
|
753
765
|
height: z.ZodNullable<z.ZodNumber>;
|
|
754
766
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
755
767
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
768
|
+
recordingCapable: z.ZodBoolean;
|
|
756
769
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
757
770
|
kind: z.ZodString;
|
|
758
771
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -769,6 +782,7 @@ export declare const requestSchemasByType: {
|
|
|
769
782
|
height: number | null;
|
|
770
783
|
lensType: "flat" | "fisheye";
|
|
771
784
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
785
|
+
recordingCapable: boolean;
|
|
772
786
|
webrtcPlaybackSource: ({
|
|
773
787
|
kind: string;
|
|
774
788
|
} & Record<string, unknown>) | null;
|
|
@@ -781,11 +795,13 @@ export declare const requestSchemasByType: {
|
|
|
781
795
|
height: number | null;
|
|
782
796
|
lensType: "flat" | "fisheye";
|
|
783
797
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
798
|
+
recordingCapable: boolean;
|
|
784
799
|
webrtcPlaybackSource: ({
|
|
785
800
|
kind: string;
|
|
786
801
|
} & Record<string, unknown>) | null;
|
|
787
802
|
}>, "many">;
|
|
788
803
|
defaultStreamId: z.ZodString;
|
|
804
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
789
805
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
790
806
|
} & {
|
|
791
807
|
type: z.ZodLiteral<"camera">;
|
|
@@ -810,11 +826,13 @@ export declare const requestSchemasByType: {
|
|
|
810
826
|
height: number | null;
|
|
811
827
|
lensType: "flat" | "fisheye";
|
|
812
828
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
829
|
+
recordingCapable: boolean;
|
|
813
830
|
webrtcPlaybackSource: ({
|
|
814
831
|
kind: string;
|
|
815
832
|
} & Record<string, unknown>) | null;
|
|
816
833
|
}[];
|
|
817
834
|
defaultStreamId: string;
|
|
835
|
+
autoSwitchStreams: boolean;
|
|
818
836
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
819
837
|
}, {
|
|
820
838
|
type: "camera";
|
|
@@ -837,11 +855,13 @@ export declare const requestSchemasByType: {
|
|
|
837
855
|
height: number | null;
|
|
838
856
|
lensType: "flat" | "fisheye";
|
|
839
857
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
858
|
+
recordingCapable: boolean;
|
|
840
859
|
webrtcPlaybackSource: ({
|
|
841
860
|
kind: string;
|
|
842
861
|
} & Record<string, unknown>) | null;
|
|
843
862
|
}[];
|
|
844
863
|
defaultStreamId: string;
|
|
864
|
+
autoSwitchStreams: boolean;
|
|
845
865
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
846
866
|
}>, z.ZodObject<{
|
|
847
867
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -1033,11 +1053,13 @@ export declare const requestSchemasByType: {
|
|
|
1033
1053
|
height: number | null;
|
|
1034
1054
|
lensType: "flat" | "fisheye";
|
|
1035
1055
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1056
|
+
recordingCapable: boolean;
|
|
1036
1057
|
webrtcPlaybackSource: ({
|
|
1037
1058
|
kind: string;
|
|
1038
1059
|
} & Record<string, unknown>) | null;
|
|
1039
1060
|
}[];
|
|
1040
1061
|
defaultStreamId: string;
|
|
1062
|
+
autoSwitchStreams: boolean;
|
|
1041
1063
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1042
1064
|
} | {
|
|
1043
1065
|
type: "door";
|
|
@@ -1130,11 +1152,13 @@ export declare const requestSchemasByType: {
|
|
|
1130
1152
|
height: number | null;
|
|
1131
1153
|
lensType: "flat" | "fisheye";
|
|
1132
1154
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1155
|
+
recordingCapable: boolean;
|
|
1133
1156
|
webrtcPlaybackSource: ({
|
|
1134
1157
|
kind: string;
|
|
1135
1158
|
} & Record<string, unknown>) | null;
|
|
1136
1159
|
}[];
|
|
1137
1160
|
defaultStreamId: string;
|
|
1161
|
+
autoSwitchStreams: boolean;
|
|
1138
1162
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1139
1163
|
} | {
|
|
1140
1164
|
type: "door";
|
|
@@ -1277,6 +1301,7 @@ export declare const requestSchemasByType: {
|
|
|
1277
1301
|
height: z.ZodNullable<z.ZodNumber>;
|
|
1278
1302
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
1279
1303
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
1304
|
+
recordingCapable: z.ZodBoolean;
|
|
1280
1305
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
1281
1306
|
kind: z.ZodString;
|
|
1282
1307
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1293,6 +1318,7 @@ export declare const requestSchemasByType: {
|
|
|
1293
1318
|
height: number | null;
|
|
1294
1319
|
lensType: "flat" | "fisheye";
|
|
1295
1320
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1321
|
+
recordingCapable: boolean;
|
|
1296
1322
|
webrtcPlaybackSource: ({
|
|
1297
1323
|
kind: string;
|
|
1298
1324
|
} & Record<string, unknown>) | null;
|
|
@@ -1305,11 +1331,13 @@ export declare const requestSchemasByType: {
|
|
|
1305
1331
|
height: number | null;
|
|
1306
1332
|
lensType: "flat" | "fisheye";
|
|
1307
1333
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1334
|
+
recordingCapable: boolean;
|
|
1308
1335
|
webrtcPlaybackSource: ({
|
|
1309
1336
|
kind: string;
|
|
1310
1337
|
} & Record<string, unknown>) | null;
|
|
1311
1338
|
}>, "many">;
|
|
1312
1339
|
defaultStreamId: z.ZodString;
|
|
1340
|
+
autoSwitchStreams: z.ZodBoolean;
|
|
1313
1341
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
1314
1342
|
} & {
|
|
1315
1343
|
type: z.ZodLiteral<"camera">;
|
|
@@ -1334,11 +1362,13 @@ export declare const requestSchemasByType: {
|
|
|
1334
1362
|
height: number | null;
|
|
1335
1363
|
lensType: "flat" | "fisheye";
|
|
1336
1364
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1365
|
+
recordingCapable: boolean;
|
|
1337
1366
|
webrtcPlaybackSource: ({
|
|
1338
1367
|
kind: string;
|
|
1339
1368
|
} & Record<string, unknown>) | null;
|
|
1340
1369
|
}[];
|
|
1341
1370
|
defaultStreamId: string;
|
|
1371
|
+
autoSwitchStreams: boolean;
|
|
1342
1372
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1343
1373
|
}, {
|
|
1344
1374
|
type: "camera";
|
|
@@ -1361,11 +1391,13 @@ export declare const requestSchemasByType: {
|
|
|
1361
1391
|
height: number | null;
|
|
1362
1392
|
lensType: "flat" | "fisheye";
|
|
1363
1393
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1394
|
+
recordingCapable: boolean;
|
|
1364
1395
|
webrtcPlaybackSource: ({
|
|
1365
1396
|
kind: string;
|
|
1366
1397
|
} & Record<string, unknown>) | null;
|
|
1367
1398
|
}[];
|
|
1368
1399
|
defaultStreamId: string;
|
|
1400
|
+
autoSwitchStreams: boolean;
|
|
1369
1401
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1370
1402
|
}>, z.ZodObject<{
|
|
1371
1403
|
canReportOpenState: z.ZodBoolean;
|
|
@@ -1558,11 +1590,13 @@ export declare const requestSchemasByType: {
|
|
|
1558
1590
|
height: number | null;
|
|
1559
1591
|
lensType: "flat" | "fisheye";
|
|
1560
1592
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1593
|
+
recordingCapable: boolean;
|
|
1561
1594
|
webrtcPlaybackSource: ({
|
|
1562
1595
|
kind: string;
|
|
1563
1596
|
} & Record<string, unknown>) | null;
|
|
1564
1597
|
}[];
|
|
1565
1598
|
defaultStreamId: string;
|
|
1599
|
+
autoSwitchStreams: boolean;
|
|
1566
1600
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1567
1601
|
} | {
|
|
1568
1602
|
type: "door";
|
|
@@ -1655,11 +1689,13 @@ export declare const requestSchemasByType: {
|
|
|
1655
1689
|
height: number | null;
|
|
1656
1690
|
lensType: "flat" | "fisheye";
|
|
1657
1691
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1692
|
+
recordingCapable: boolean;
|
|
1658
1693
|
webrtcPlaybackSource: ({
|
|
1659
1694
|
kind: string;
|
|
1660
1695
|
} & Record<string, unknown>) | null;
|
|
1661
1696
|
}[];
|
|
1662
1697
|
defaultStreamId: string;
|
|
1698
|
+
autoSwitchStreams: boolean;
|
|
1663
1699
|
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
1664
1700
|
} | {
|
|
1665
1701
|
type: "door";
|