@awarevue/api-types 2.0.16 → 2.0.18
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/agent-communication/protocol.d.ts +214 -2
- package/dist/commands/all.d.ts +188 -10
- package/dist/commands/display.d.ts +28 -28
- package/dist/commands/nvr-exporter.d.ts +178 -0
- package/dist/commands/server.d.ts +178 -0
- package/dist/device/any-device.d.ts +15 -0
- package/dist/device/camera.d.ts +8 -0
- package/dist/device/camera.js +1 -0
- package/dist/device-import.d.ts +26 -0
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +99 -0
- package/dist/primitives.js +2 -2
- package/dist/queries/all.d.ts +211 -4
- package/dist/queries/camera.d.ts +8 -8
- package/dist/queries/nvr-recorder.d.ts +414 -0
- package/package.json +1 -1
|
@@ -6,6 +6,32 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
6
6
|
foreignRef: z.ZodString;
|
|
7
7
|
provider: z.ZodString;
|
|
8
8
|
providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
|
|
9
|
+
} & {
|
|
10
|
+
presets: z.ZodArray<z.ZodObject<{
|
|
11
|
+
id: z.ZodString;
|
|
12
|
+
name: z.ZodString;
|
|
13
|
+
params: z.ZodUnknown;
|
|
14
|
+
isDefault: z.ZodBoolean;
|
|
15
|
+
assignedRef: z.ZodNullable<z.ZodString>;
|
|
16
|
+
createdOn: z.ZodString;
|
|
17
|
+
lastModifiedOn: z.ZodString;
|
|
18
|
+
}, "strip", z.ZodTypeAny, {
|
|
19
|
+
name: string;
|
|
20
|
+
id: string;
|
|
21
|
+
isDefault: boolean;
|
|
22
|
+
assignedRef: string | null;
|
|
23
|
+
createdOn: string;
|
|
24
|
+
lastModifiedOn: string;
|
|
25
|
+
params?: unknown;
|
|
26
|
+
}, {
|
|
27
|
+
name: string;
|
|
28
|
+
id: string;
|
|
29
|
+
isDefault: boolean;
|
|
30
|
+
assignedRef: string | null;
|
|
31
|
+
createdOn: string;
|
|
32
|
+
lastModifiedOn: string;
|
|
33
|
+
params?: unknown;
|
|
34
|
+
}>, "many">;
|
|
9
35
|
}, "strip", z.ZodTypeAny, {
|
|
10
36
|
name: string;
|
|
11
37
|
foreignRef: string;
|
|
@@ -13,6 +39,15 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
13
39
|
providerMetadata: {} & {
|
|
14
40
|
[k: string]: unknown;
|
|
15
41
|
};
|
|
42
|
+
presets: {
|
|
43
|
+
name: string;
|
|
44
|
+
id: string;
|
|
45
|
+
isDefault: boolean;
|
|
46
|
+
assignedRef: string | null;
|
|
47
|
+
createdOn: string;
|
|
48
|
+
lastModifiedOn: string;
|
|
49
|
+
params?: unknown;
|
|
50
|
+
}[];
|
|
16
51
|
}, {
|
|
17
52
|
name: string;
|
|
18
53
|
foreignRef: string;
|
|
@@ -20,6 +55,15 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
20
55
|
providerMetadata: {} & {
|
|
21
56
|
[k: string]: unknown;
|
|
22
57
|
};
|
|
58
|
+
presets: {
|
|
59
|
+
name: string;
|
|
60
|
+
id: string;
|
|
61
|
+
isDefault: boolean;
|
|
62
|
+
assignedRef: string | null;
|
|
63
|
+
createdOn: string;
|
|
64
|
+
lastModifiedOn: string;
|
|
65
|
+
params?: unknown;
|
|
66
|
+
}[];
|
|
23
67
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
24
68
|
type: z.ZodLiteral<"alarm">;
|
|
25
69
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -51,14 +95,17 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
51
95
|
id: z.ZodString;
|
|
52
96
|
displayName: z.ZodString;
|
|
53
97
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
98
|
+
rtspUrl: z.ZodString;
|
|
54
99
|
}, "strip", z.ZodTypeAny, {
|
|
55
100
|
id: string;
|
|
56
101
|
displayName: string;
|
|
57
102
|
externalPlayerUrl: string | null;
|
|
103
|
+
rtspUrl: string;
|
|
58
104
|
}, {
|
|
59
105
|
id: string;
|
|
60
106
|
displayName: string;
|
|
61
107
|
externalPlayerUrl: string | null;
|
|
108
|
+
rtspUrl: string;
|
|
62
109
|
}>, "many">;
|
|
63
110
|
defaultStreamId: z.ZodString;
|
|
64
111
|
} & {
|
|
@@ -69,6 +116,7 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
69
116
|
id: string;
|
|
70
117
|
displayName: string;
|
|
71
118
|
externalPlayerUrl: string | null;
|
|
119
|
+
rtspUrl: string;
|
|
72
120
|
}[];
|
|
73
121
|
lensType: "flat" | "fisheye";
|
|
74
122
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -93,6 +141,7 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
93
141
|
id: string;
|
|
94
142
|
displayName: string;
|
|
95
143
|
externalPlayerUrl: string | null;
|
|
144
|
+
rtspUrl: string;
|
|
96
145
|
}[];
|
|
97
146
|
lensType: "flat" | "fisheye";
|
|
98
147
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -264,6 +313,15 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
264
313
|
providerMetadata: {} & {
|
|
265
314
|
[k: string]: unknown;
|
|
266
315
|
};
|
|
316
|
+
presets: {
|
|
317
|
+
name: string;
|
|
318
|
+
id: string;
|
|
319
|
+
isDefault: boolean;
|
|
320
|
+
assignedRef: string | null;
|
|
321
|
+
createdOn: string;
|
|
322
|
+
lastModifiedOn: string;
|
|
323
|
+
params?: unknown;
|
|
324
|
+
}[];
|
|
267
325
|
} & ({
|
|
268
326
|
type: "alarm";
|
|
269
327
|
} | {
|
|
@@ -272,6 +330,7 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
272
330
|
id: string;
|
|
273
331
|
displayName: string;
|
|
274
332
|
externalPlayerUrl: string | null;
|
|
333
|
+
rtspUrl: string;
|
|
275
334
|
}[];
|
|
276
335
|
lensType: "flat" | "fisheye";
|
|
277
336
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -347,6 +406,15 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
347
406
|
providerMetadata: {} & {
|
|
348
407
|
[k: string]: unknown;
|
|
349
408
|
};
|
|
409
|
+
presets: {
|
|
410
|
+
name: string;
|
|
411
|
+
id: string;
|
|
412
|
+
isDefault: boolean;
|
|
413
|
+
assignedRef: string | null;
|
|
414
|
+
createdOn: string;
|
|
415
|
+
lastModifiedOn: string;
|
|
416
|
+
params?: unknown;
|
|
417
|
+
}[];
|
|
350
418
|
} & ({
|
|
351
419
|
type: "alarm";
|
|
352
420
|
} | {
|
|
@@ -355,6 +423,7 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
355
423
|
id: string;
|
|
356
424
|
displayName: string;
|
|
357
425
|
externalPlayerUrl: string | null;
|
|
426
|
+
rtspUrl: string;
|
|
358
427
|
}[];
|
|
359
428
|
lensType: "flat" | "fisheye";
|
|
360
429
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -448,6 +517,32 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
448
517
|
foreignRef: z.ZodString;
|
|
449
518
|
provider: z.ZodString;
|
|
450
519
|
providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
|
|
520
|
+
} & {
|
|
521
|
+
presets: z.ZodArray<z.ZodObject<{
|
|
522
|
+
id: z.ZodString;
|
|
523
|
+
name: z.ZodString;
|
|
524
|
+
params: z.ZodUnknown;
|
|
525
|
+
isDefault: z.ZodBoolean;
|
|
526
|
+
assignedRef: z.ZodNullable<z.ZodString>;
|
|
527
|
+
createdOn: z.ZodString;
|
|
528
|
+
lastModifiedOn: z.ZodString;
|
|
529
|
+
}, "strip", z.ZodTypeAny, {
|
|
530
|
+
name: string;
|
|
531
|
+
id: string;
|
|
532
|
+
isDefault: boolean;
|
|
533
|
+
assignedRef: string | null;
|
|
534
|
+
createdOn: string;
|
|
535
|
+
lastModifiedOn: string;
|
|
536
|
+
params?: unknown;
|
|
537
|
+
}, {
|
|
538
|
+
name: string;
|
|
539
|
+
id: string;
|
|
540
|
+
isDefault: boolean;
|
|
541
|
+
assignedRef: string | null;
|
|
542
|
+
createdOn: string;
|
|
543
|
+
lastModifiedOn: string;
|
|
544
|
+
params?: unknown;
|
|
545
|
+
}>, "many">;
|
|
451
546
|
}, "strip", z.ZodTypeAny, {
|
|
452
547
|
name: string;
|
|
453
548
|
foreignRef: string;
|
|
@@ -455,6 +550,15 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
455
550
|
providerMetadata: {} & {
|
|
456
551
|
[k: string]: unknown;
|
|
457
552
|
};
|
|
553
|
+
presets: {
|
|
554
|
+
name: string;
|
|
555
|
+
id: string;
|
|
556
|
+
isDefault: boolean;
|
|
557
|
+
assignedRef: string | null;
|
|
558
|
+
createdOn: string;
|
|
559
|
+
lastModifiedOn: string;
|
|
560
|
+
params?: unknown;
|
|
561
|
+
}[];
|
|
458
562
|
}, {
|
|
459
563
|
name: string;
|
|
460
564
|
foreignRef: string;
|
|
@@ -462,6 +566,15 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
462
566
|
providerMetadata: {} & {
|
|
463
567
|
[k: string]: unknown;
|
|
464
568
|
};
|
|
569
|
+
presets: {
|
|
570
|
+
name: string;
|
|
571
|
+
id: string;
|
|
572
|
+
isDefault: boolean;
|
|
573
|
+
assignedRef: string | null;
|
|
574
|
+
createdOn: string;
|
|
575
|
+
lastModifiedOn: string;
|
|
576
|
+
params?: unknown;
|
|
577
|
+
}[];
|
|
465
578
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
466
579
|
type: z.ZodLiteral<"alarm">;
|
|
467
580
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -493,14 +606,17 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
493
606
|
id: z.ZodString;
|
|
494
607
|
displayName: z.ZodString;
|
|
495
608
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
609
|
+
rtspUrl: z.ZodString;
|
|
496
610
|
}, "strip", z.ZodTypeAny, {
|
|
497
611
|
id: string;
|
|
498
612
|
displayName: string;
|
|
499
613
|
externalPlayerUrl: string | null;
|
|
614
|
+
rtspUrl: string;
|
|
500
615
|
}, {
|
|
501
616
|
id: string;
|
|
502
617
|
displayName: string;
|
|
503
618
|
externalPlayerUrl: string | null;
|
|
619
|
+
rtspUrl: string;
|
|
504
620
|
}>, "many">;
|
|
505
621
|
defaultStreamId: z.ZodString;
|
|
506
622
|
} & {
|
|
@@ -511,6 +627,7 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
511
627
|
id: string;
|
|
512
628
|
displayName: string;
|
|
513
629
|
externalPlayerUrl: string | null;
|
|
630
|
+
rtspUrl: string;
|
|
514
631
|
}[];
|
|
515
632
|
lensType: "flat" | "fisheye";
|
|
516
633
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -535,6 +652,7 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
535
652
|
id: string;
|
|
536
653
|
displayName: string;
|
|
537
654
|
externalPlayerUrl: string | null;
|
|
655
|
+
rtspUrl: string;
|
|
538
656
|
}[];
|
|
539
657
|
lensType: "flat" | "fisheye";
|
|
540
658
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -708,6 +826,15 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
708
826
|
providerMetadata: {} & {
|
|
709
827
|
[k: string]: unknown;
|
|
710
828
|
};
|
|
829
|
+
presets: {
|
|
830
|
+
name: string;
|
|
831
|
+
id: string;
|
|
832
|
+
isDefault: boolean;
|
|
833
|
+
assignedRef: string | null;
|
|
834
|
+
createdOn: string;
|
|
835
|
+
lastModifiedOn: string;
|
|
836
|
+
params?: unknown;
|
|
837
|
+
}[];
|
|
711
838
|
} & ({
|
|
712
839
|
type: "alarm";
|
|
713
840
|
} | {
|
|
@@ -716,6 +843,7 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
716
843
|
id: string;
|
|
717
844
|
displayName: string;
|
|
718
845
|
externalPlayerUrl: string | null;
|
|
846
|
+
rtspUrl: string;
|
|
719
847
|
}[];
|
|
720
848
|
lensType: "flat" | "fisheye";
|
|
721
849
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -791,6 +919,15 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
791
919
|
providerMetadata: {} & {
|
|
792
920
|
[k: string]: unknown;
|
|
793
921
|
};
|
|
922
|
+
presets: {
|
|
923
|
+
name: string;
|
|
924
|
+
id: string;
|
|
925
|
+
isDefault: boolean;
|
|
926
|
+
assignedRef: string | null;
|
|
927
|
+
createdOn: string;
|
|
928
|
+
lastModifiedOn: string;
|
|
929
|
+
params?: unknown;
|
|
930
|
+
}[];
|
|
794
931
|
} & ({
|
|
795
932
|
type: "alarm";
|
|
796
933
|
} | {
|
|
@@ -799,6 +936,7 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
799
936
|
id: string;
|
|
800
937
|
displayName: string;
|
|
801
938
|
externalPlayerUrl: string | null;
|
|
939
|
+
rtspUrl: string;
|
|
802
940
|
}[];
|
|
803
941
|
lensType: "flat" | "fisheye";
|
|
804
942
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -884,6 +1022,32 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
884
1022
|
foreignRef: z.ZodString;
|
|
885
1023
|
provider: z.ZodString;
|
|
886
1024
|
providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
|
|
1025
|
+
} & {
|
|
1026
|
+
presets: z.ZodArray<z.ZodObject<{
|
|
1027
|
+
id: z.ZodString;
|
|
1028
|
+
name: z.ZodString;
|
|
1029
|
+
params: z.ZodUnknown;
|
|
1030
|
+
isDefault: z.ZodBoolean;
|
|
1031
|
+
assignedRef: z.ZodNullable<z.ZodString>;
|
|
1032
|
+
createdOn: z.ZodString;
|
|
1033
|
+
lastModifiedOn: z.ZodString;
|
|
1034
|
+
}, "strip", z.ZodTypeAny, {
|
|
1035
|
+
name: string;
|
|
1036
|
+
id: string;
|
|
1037
|
+
isDefault: boolean;
|
|
1038
|
+
assignedRef: string | null;
|
|
1039
|
+
createdOn: string;
|
|
1040
|
+
lastModifiedOn: string;
|
|
1041
|
+
params?: unknown;
|
|
1042
|
+
}, {
|
|
1043
|
+
name: string;
|
|
1044
|
+
id: string;
|
|
1045
|
+
isDefault: boolean;
|
|
1046
|
+
assignedRef: string | null;
|
|
1047
|
+
createdOn: string;
|
|
1048
|
+
lastModifiedOn: string;
|
|
1049
|
+
params?: unknown;
|
|
1050
|
+
}>, "many">;
|
|
887
1051
|
}, "strip", z.ZodTypeAny, {
|
|
888
1052
|
name: string;
|
|
889
1053
|
foreignRef: string;
|
|
@@ -891,6 +1055,15 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
891
1055
|
providerMetadata: {} & {
|
|
892
1056
|
[k: string]: unknown;
|
|
893
1057
|
};
|
|
1058
|
+
presets: {
|
|
1059
|
+
name: string;
|
|
1060
|
+
id: string;
|
|
1061
|
+
isDefault: boolean;
|
|
1062
|
+
assignedRef: string | null;
|
|
1063
|
+
createdOn: string;
|
|
1064
|
+
lastModifiedOn: string;
|
|
1065
|
+
params?: unknown;
|
|
1066
|
+
}[];
|
|
894
1067
|
}, {
|
|
895
1068
|
name: string;
|
|
896
1069
|
foreignRef: string;
|
|
@@ -898,6 +1071,15 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
898
1071
|
providerMetadata: {} & {
|
|
899
1072
|
[k: string]: unknown;
|
|
900
1073
|
};
|
|
1074
|
+
presets: {
|
|
1075
|
+
name: string;
|
|
1076
|
+
id: string;
|
|
1077
|
+
isDefault: boolean;
|
|
1078
|
+
assignedRef: string | null;
|
|
1079
|
+
createdOn: string;
|
|
1080
|
+
lastModifiedOn: string;
|
|
1081
|
+
params?: unknown;
|
|
1082
|
+
}[];
|
|
901
1083
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
902
1084
|
type: z.ZodLiteral<"alarm">;
|
|
903
1085
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -929,14 +1111,17 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
929
1111
|
id: z.ZodString;
|
|
930
1112
|
displayName: z.ZodString;
|
|
931
1113
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
1114
|
+
rtspUrl: z.ZodString;
|
|
932
1115
|
}, "strip", z.ZodTypeAny, {
|
|
933
1116
|
id: string;
|
|
934
1117
|
displayName: string;
|
|
935
1118
|
externalPlayerUrl: string | null;
|
|
1119
|
+
rtspUrl: string;
|
|
936
1120
|
}, {
|
|
937
1121
|
id: string;
|
|
938
1122
|
displayName: string;
|
|
939
1123
|
externalPlayerUrl: string | null;
|
|
1124
|
+
rtspUrl: string;
|
|
940
1125
|
}>, "many">;
|
|
941
1126
|
defaultStreamId: z.ZodString;
|
|
942
1127
|
} & {
|
|
@@ -947,6 +1132,7 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
947
1132
|
id: string;
|
|
948
1133
|
displayName: string;
|
|
949
1134
|
externalPlayerUrl: string | null;
|
|
1135
|
+
rtspUrl: string;
|
|
950
1136
|
}[];
|
|
951
1137
|
lensType: "flat" | "fisheye";
|
|
952
1138
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -971,6 +1157,7 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
971
1157
|
id: string;
|
|
972
1158
|
displayName: string;
|
|
973
1159
|
externalPlayerUrl: string | null;
|
|
1160
|
+
rtspUrl: string;
|
|
974
1161
|
}[];
|
|
975
1162
|
lensType: "flat" | "fisheye";
|
|
976
1163
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1144,6 +1331,15 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1144
1331
|
providerMetadata: {} & {
|
|
1145
1332
|
[k: string]: unknown;
|
|
1146
1333
|
};
|
|
1334
|
+
presets: {
|
|
1335
|
+
name: string;
|
|
1336
|
+
id: string;
|
|
1337
|
+
isDefault: boolean;
|
|
1338
|
+
assignedRef: string | null;
|
|
1339
|
+
createdOn: string;
|
|
1340
|
+
lastModifiedOn: string;
|
|
1341
|
+
params?: unknown;
|
|
1342
|
+
}[];
|
|
1147
1343
|
} & ({
|
|
1148
1344
|
type: "alarm";
|
|
1149
1345
|
} | {
|
|
@@ -1152,6 +1348,7 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1152
1348
|
id: string;
|
|
1153
1349
|
displayName: string;
|
|
1154
1350
|
externalPlayerUrl: string | null;
|
|
1351
|
+
rtspUrl: string;
|
|
1155
1352
|
}[];
|
|
1156
1353
|
lensType: "flat" | "fisheye";
|
|
1157
1354
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1227,6 +1424,15 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1227
1424
|
providerMetadata: {} & {
|
|
1228
1425
|
[k: string]: unknown;
|
|
1229
1426
|
};
|
|
1427
|
+
presets: {
|
|
1428
|
+
name: string;
|
|
1429
|
+
id: string;
|
|
1430
|
+
isDefault: boolean;
|
|
1431
|
+
assignedRef: string | null;
|
|
1432
|
+
createdOn: string;
|
|
1433
|
+
lastModifiedOn: string;
|
|
1434
|
+
params?: unknown;
|
|
1435
|
+
}[];
|
|
1230
1436
|
} & ({
|
|
1231
1437
|
type: "alarm";
|
|
1232
1438
|
} | {
|
|
@@ -1235,6 +1441,7 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
1235
1441
|
id: string;
|
|
1236
1442
|
displayName: string;
|
|
1237
1443
|
externalPlayerUrl: string | null;
|
|
1444
|
+
rtspUrl: string;
|
|
1238
1445
|
}[];
|
|
1239
1446
|
lensType: "flat" | "fisheye";
|
|
1240
1447
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1320,6 +1527,32 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1320
1527
|
foreignRef: z.ZodString;
|
|
1321
1528
|
provider: z.ZodString;
|
|
1322
1529
|
providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
|
|
1530
|
+
} & {
|
|
1531
|
+
presets: z.ZodArray<z.ZodObject<{
|
|
1532
|
+
id: z.ZodString;
|
|
1533
|
+
name: z.ZodString;
|
|
1534
|
+
params: z.ZodUnknown;
|
|
1535
|
+
isDefault: z.ZodBoolean;
|
|
1536
|
+
assignedRef: z.ZodNullable<z.ZodString>;
|
|
1537
|
+
createdOn: z.ZodString;
|
|
1538
|
+
lastModifiedOn: z.ZodString;
|
|
1539
|
+
}, "strip", z.ZodTypeAny, {
|
|
1540
|
+
name: string;
|
|
1541
|
+
id: string;
|
|
1542
|
+
isDefault: boolean;
|
|
1543
|
+
assignedRef: string | null;
|
|
1544
|
+
createdOn: string;
|
|
1545
|
+
lastModifiedOn: string;
|
|
1546
|
+
params?: unknown;
|
|
1547
|
+
}, {
|
|
1548
|
+
name: string;
|
|
1549
|
+
id: string;
|
|
1550
|
+
isDefault: boolean;
|
|
1551
|
+
assignedRef: string | null;
|
|
1552
|
+
createdOn: string;
|
|
1553
|
+
lastModifiedOn: string;
|
|
1554
|
+
params?: unknown;
|
|
1555
|
+
}>, "many">;
|
|
1323
1556
|
}, "strip", z.ZodTypeAny, {
|
|
1324
1557
|
name: string;
|
|
1325
1558
|
foreignRef: string;
|
|
@@ -1327,6 +1560,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1327
1560
|
providerMetadata: {} & {
|
|
1328
1561
|
[k: string]: unknown;
|
|
1329
1562
|
};
|
|
1563
|
+
presets: {
|
|
1564
|
+
name: string;
|
|
1565
|
+
id: string;
|
|
1566
|
+
isDefault: boolean;
|
|
1567
|
+
assignedRef: string | null;
|
|
1568
|
+
createdOn: string;
|
|
1569
|
+
lastModifiedOn: string;
|
|
1570
|
+
params?: unknown;
|
|
1571
|
+
}[];
|
|
1330
1572
|
}, {
|
|
1331
1573
|
name: string;
|
|
1332
1574
|
foreignRef: string;
|
|
@@ -1334,6 +1576,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1334
1576
|
providerMetadata: {} & {
|
|
1335
1577
|
[k: string]: unknown;
|
|
1336
1578
|
};
|
|
1579
|
+
presets: {
|
|
1580
|
+
name: string;
|
|
1581
|
+
id: string;
|
|
1582
|
+
isDefault: boolean;
|
|
1583
|
+
assignedRef: string | null;
|
|
1584
|
+
createdOn: string;
|
|
1585
|
+
lastModifiedOn: string;
|
|
1586
|
+
params?: unknown;
|
|
1587
|
+
}[];
|
|
1337
1588
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1338
1589
|
type: z.ZodLiteral<"alarm">;
|
|
1339
1590
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1365,14 +1616,17 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1365
1616
|
id: z.ZodString;
|
|
1366
1617
|
displayName: z.ZodString;
|
|
1367
1618
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
1619
|
+
rtspUrl: z.ZodString;
|
|
1368
1620
|
}, "strip", z.ZodTypeAny, {
|
|
1369
1621
|
id: string;
|
|
1370
1622
|
displayName: string;
|
|
1371
1623
|
externalPlayerUrl: string | null;
|
|
1624
|
+
rtspUrl: string;
|
|
1372
1625
|
}, {
|
|
1373
1626
|
id: string;
|
|
1374
1627
|
displayName: string;
|
|
1375
1628
|
externalPlayerUrl: string | null;
|
|
1629
|
+
rtspUrl: string;
|
|
1376
1630
|
}>, "many">;
|
|
1377
1631
|
defaultStreamId: z.ZodString;
|
|
1378
1632
|
} & {
|
|
@@ -1383,6 +1637,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1383
1637
|
id: string;
|
|
1384
1638
|
displayName: string;
|
|
1385
1639
|
externalPlayerUrl: string | null;
|
|
1640
|
+
rtspUrl: string;
|
|
1386
1641
|
}[];
|
|
1387
1642
|
lensType: "flat" | "fisheye";
|
|
1388
1643
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1407,6 +1662,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1407
1662
|
id: string;
|
|
1408
1663
|
displayName: string;
|
|
1409
1664
|
externalPlayerUrl: string | null;
|
|
1665
|
+
rtspUrl: string;
|
|
1410
1666
|
}[];
|
|
1411
1667
|
lensType: "flat" | "fisheye";
|
|
1412
1668
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1578,6 +1834,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1578
1834
|
providerMetadata: {} & {
|
|
1579
1835
|
[k: string]: unknown;
|
|
1580
1836
|
};
|
|
1837
|
+
presets: {
|
|
1838
|
+
name: string;
|
|
1839
|
+
id: string;
|
|
1840
|
+
isDefault: boolean;
|
|
1841
|
+
assignedRef: string | null;
|
|
1842
|
+
createdOn: string;
|
|
1843
|
+
lastModifiedOn: string;
|
|
1844
|
+
params?: unknown;
|
|
1845
|
+
}[];
|
|
1581
1846
|
} & ({
|
|
1582
1847
|
type: "alarm";
|
|
1583
1848
|
} | {
|
|
@@ -1586,6 +1851,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1586
1851
|
id: string;
|
|
1587
1852
|
displayName: string;
|
|
1588
1853
|
externalPlayerUrl: string | null;
|
|
1854
|
+
rtspUrl: string;
|
|
1589
1855
|
}[];
|
|
1590
1856
|
lensType: "flat" | "fisheye";
|
|
1591
1857
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1661,6 +1927,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1661
1927
|
providerMetadata: {} & {
|
|
1662
1928
|
[k: string]: unknown;
|
|
1663
1929
|
};
|
|
1930
|
+
presets: {
|
|
1931
|
+
name: string;
|
|
1932
|
+
id: string;
|
|
1933
|
+
isDefault: boolean;
|
|
1934
|
+
assignedRef: string | null;
|
|
1935
|
+
createdOn: string;
|
|
1936
|
+
lastModifiedOn: string;
|
|
1937
|
+
params?: unknown;
|
|
1938
|
+
}[];
|
|
1664
1939
|
} & ({
|
|
1665
1940
|
type: "alarm";
|
|
1666
1941
|
} | {
|
|
@@ -1669,6 +1944,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1669
1944
|
id: string;
|
|
1670
1945
|
displayName: string;
|
|
1671
1946
|
externalPlayerUrl: string | null;
|
|
1947
|
+
rtspUrl: string;
|
|
1672
1948
|
}[];
|
|
1673
1949
|
lensType: "flat" | "fisheye";
|
|
1674
1950
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1743,6 +2019,32 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1743
2019
|
foreignRef: z.ZodString;
|
|
1744
2020
|
provider: z.ZodString;
|
|
1745
2021
|
providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
|
|
2022
|
+
} & {
|
|
2023
|
+
presets: z.ZodArray<z.ZodObject<{
|
|
2024
|
+
id: z.ZodString;
|
|
2025
|
+
name: z.ZodString;
|
|
2026
|
+
params: z.ZodUnknown;
|
|
2027
|
+
isDefault: z.ZodBoolean;
|
|
2028
|
+
assignedRef: z.ZodNullable<z.ZodString>;
|
|
2029
|
+
createdOn: z.ZodString;
|
|
2030
|
+
lastModifiedOn: z.ZodString;
|
|
2031
|
+
}, "strip", z.ZodTypeAny, {
|
|
2032
|
+
name: string;
|
|
2033
|
+
id: string;
|
|
2034
|
+
isDefault: boolean;
|
|
2035
|
+
assignedRef: string | null;
|
|
2036
|
+
createdOn: string;
|
|
2037
|
+
lastModifiedOn: string;
|
|
2038
|
+
params?: unknown;
|
|
2039
|
+
}, {
|
|
2040
|
+
name: string;
|
|
2041
|
+
id: string;
|
|
2042
|
+
isDefault: boolean;
|
|
2043
|
+
assignedRef: string | null;
|
|
2044
|
+
createdOn: string;
|
|
2045
|
+
lastModifiedOn: string;
|
|
2046
|
+
params?: unknown;
|
|
2047
|
+
}>, "many">;
|
|
1746
2048
|
}, "strip", z.ZodTypeAny, {
|
|
1747
2049
|
name: string;
|
|
1748
2050
|
foreignRef: string;
|
|
@@ -1750,6 +2052,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1750
2052
|
providerMetadata: {} & {
|
|
1751
2053
|
[k: string]: unknown;
|
|
1752
2054
|
};
|
|
2055
|
+
presets: {
|
|
2056
|
+
name: string;
|
|
2057
|
+
id: string;
|
|
2058
|
+
isDefault: boolean;
|
|
2059
|
+
assignedRef: string | null;
|
|
2060
|
+
createdOn: string;
|
|
2061
|
+
lastModifiedOn: string;
|
|
2062
|
+
params?: unknown;
|
|
2063
|
+
}[];
|
|
1753
2064
|
}, {
|
|
1754
2065
|
name: string;
|
|
1755
2066
|
foreignRef: string;
|
|
@@ -1757,6 +2068,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1757
2068
|
providerMetadata: {} & {
|
|
1758
2069
|
[k: string]: unknown;
|
|
1759
2070
|
};
|
|
2071
|
+
presets: {
|
|
2072
|
+
name: string;
|
|
2073
|
+
id: string;
|
|
2074
|
+
isDefault: boolean;
|
|
2075
|
+
assignedRef: string | null;
|
|
2076
|
+
createdOn: string;
|
|
2077
|
+
lastModifiedOn: string;
|
|
2078
|
+
params?: unknown;
|
|
2079
|
+
}[];
|
|
1760
2080
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1761
2081
|
type: z.ZodLiteral<"alarm">;
|
|
1762
2082
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1788,14 +2108,17 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1788
2108
|
id: z.ZodString;
|
|
1789
2109
|
displayName: z.ZodString;
|
|
1790
2110
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
2111
|
+
rtspUrl: z.ZodString;
|
|
1791
2112
|
}, "strip", z.ZodTypeAny, {
|
|
1792
2113
|
id: string;
|
|
1793
2114
|
displayName: string;
|
|
1794
2115
|
externalPlayerUrl: string | null;
|
|
2116
|
+
rtspUrl: string;
|
|
1795
2117
|
}, {
|
|
1796
2118
|
id: string;
|
|
1797
2119
|
displayName: string;
|
|
1798
2120
|
externalPlayerUrl: string | null;
|
|
2121
|
+
rtspUrl: string;
|
|
1799
2122
|
}>, "many">;
|
|
1800
2123
|
defaultStreamId: z.ZodString;
|
|
1801
2124
|
} & {
|
|
@@ -1806,6 +2129,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1806
2129
|
id: string;
|
|
1807
2130
|
displayName: string;
|
|
1808
2131
|
externalPlayerUrl: string | null;
|
|
2132
|
+
rtspUrl: string;
|
|
1809
2133
|
}[];
|
|
1810
2134
|
lensType: "flat" | "fisheye";
|
|
1811
2135
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1830,6 +2154,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
1830
2154
|
id: string;
|
|
1831
2155
|
displayName: string;
|
|
1832
2156
|
externalPlayerUrl: string | null;
|
|
2157
|
+
rtspUrl: string;
|
|
1833
2158
|
}[];
|
|
1834
2159
|
lensType: "flat" | "fisheye";
|
|
1835
2160
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2003,6 +2328,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2003
2328
|
providerMetadata: {} & {
|
|
2004
2329
|
[k: string]: unknown;
|
|
2005
2330
|
};
|
|
2331
|
+
presets: {
|
|
2332
|
+
name: string;
|
|
2333
|
+
id: string;
|
|
2334
|
+
isDefault: boolean;
|
|
2335
|
+
assignedRef: string | null;
|
|
2336
|
+
createdOn: string;
|
|
2337
|
+
lastModifiedOn: string;
|
|
2338
|
+
params?: unknown;
|
|
2339
|
+
}[];
|
|
2006
2340
|
} & ({
|
|
2007
2341
|
type: "alarm";
|
|
2008
2342
|
} | {
|
|
@@ -2011,6 +2345,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2011
2345
|
id: string;
|
|
2012
2346
|
displayName: string;
|
|
2013
2347
|
externalPlayerUrl: string | null;
|
|
2348
|
+
rtspUrl: string;
|
|
2014
2349
|
}[];
|
|
2015
2350
|
lensType: "flat" | "fisheye";
|
|
2016
2351
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2086,6 +2421,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2086
2421
|
providerMetadata: {} & {
|
|
2087
2422
|
[k: string]: unknown;
|
|
2088
2423
|
};
|
|
2424
|
+
presets: {
|
|
2425
|
+
name: string;
|
|
2426
|
+
id: string;
|
|
2427
|
+
isDefault: boolean;
|
|
2428
|
+
assignedRef: string | null;
|
|
2429
|
+
createdOn: string;
|
|
2430
|
+
lastModifiedOn: string;
|
|
2431
|
+
params?: unknown;
|
|
2432
|
+
}[];
|
|
2089
2433
|
} & ({
|
|
2090
2434
|
type: "alarm";
|
|
2091
2435
|
} | {
|
|
@@ -2094,6 +2438,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2094
2438
|
id: string;
|
|
2095
2439
|
displayName: string;
|
|
2096
2440
|
externalPlayerUrl: string | null;
|
|
2441
|
+
rtspUrl: string;
|
|
2097
2442
|
}[];
|
|
2098
2443
|
lensType: "flat" | "fisheye";
|
|
2099
2444
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2166,6 +2511,32 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2166
2511
|
foreignRef: z.ZodString;
|
|
2167
2512
|
provider: z.ZodString;
|
|
2168
2513
|
providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
|
|
2514
|
+
} & {
|
|
2515
|
+
presets: z.ZodArray<z.ZodObject<{
|
|
2516
|
+
id: z.ZodString;
|
|
2517
|
+
name: z.ZodString;
|
|
2518
|
+
params: z.ZodUnknown;
|
|
2519
|
+
isDefault: z.ZodBoolean;
|
|
2520
|
+
assignedRef: z.ZodNullable<z.ZodString>;
|
|
2521
|
+
createdOn: z.ZodString;
|
|
2522
|
+
lastModifiedOn: z.ZodString;
|
|
2523
|
+
}, "strip", z.ZodTypeAny, {
|
|
2524
|
+
name: string;
|
|
2525
|
+
id: string;
|
|
2526
|
+
isDefault: boolean;
|
|
2527
|
+
assignedRef: string | null;
|
|
2528
|
+
createdOn: string;
|
|
2529
|
+
lastModifiedOn: string;
|
|
2530
|
+
params?: unknown;
|
|
2531
|
+
}, {
|
|
2532
|
+
name: string;
|
|
2533
|
+
id: string;
|
|
2534
|
+
isDefault: boolean;
|
|
2535
|
+
assignedRef: string | null;
|
|
2536
|
+
createdOn: string;
|
|
2537
|
+
lastModifiedOn: string;
|
|
2538
|
+
params?: unknown;
|
|
2539
|
+
}>, "many">;
|
|
2169
2540
|
}, "strip", z.ZodTypeAny, {
|
|
2170
2541
|
name: string;
|
|
2171
2542
|
foreignRef: string;
|
|
@@ -2173,6 +2544,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2173
2544
|
providerMetadata: {} & {
|
|
2174
2545
|
[k: string]: unknown;
|
|
2175
2546
|
};
|
|
2547
|
+
presets: {
|
|
2548
|
+
name: string;
|
|
2549
|
+
id: string;
|
|
2550
|
+
isDefault: boolean;
|
|
2551
|
+
assignedRef: string | null;
|
|
2552
|
+
createdOn: string;
|
|
2553
|
+
lastModifiedOn: string;
|
|
2554
|
+
params?: unknown;
|
|
2555
|
+
}[];
|
|
2176
2556
|
}, {
|
|
2177
2557
|
name: string;
|
|
2178
2558
|
foreignRef: string;
|
|
@@ -2180,6 +2560,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2180
2560
|
providerMetadata: {} & {
|
|
2181
2561
|
[k: string]: unknown;
|
|
2182
2562
|
};
|
|
2563
|
+
presets: {
|
|
2564
|
+
name: string;
|
|
2565
|
+
id: string;
|
|
2566
|
+
isDefault: boolean;
|
|
2567
|
+
assignedRef: string | null;
|
|
2568
|
+
createdOn: string;
|
|
2569
|
+
lastModifiedOn: string;
|
|
2570
|
+
params?: unknown;
|
|
2571
|
+
}[];
|
|
2183
2572
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2184
2573
|
type: z.ZodLiteral<"alarm">;
|
|
2185
2574
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2211,14 +2600,17 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2211
2600
|
id: z.ZodString;
|
|
2212
2601
|
displayName: z.ZodString;
|
|
2213
2602
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
2603
|
+
rtspUrl: z.ZodString;
|
|
2214
2604
|
}, "strip", z.ZodTypeAny, {
|
|
2215
2605
|
id: string;
|
|
2216
2606
|
displayName: string;
|
|
2217
2607
|
externalPlayerUrl: string | null;
|
|
2608
|
+
rtspUrl: string;
|
|
2218
2609
|
}, {
|
|
2219
2610
|
id: string;
|
|
2220
2611
|
displayName: string;
|
|
2221
2612
|
externalPlayerUrl: string | null;
|
|
2613
|
+
rtspUrl: string;
|
|
2222
2614
|
}>, "many">;
|
|
2223
2615
|
defaultStreamId: z.ZodString;
|
|
2224
2616
|
} & {
|
|
@@ -2229,6 +2621,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2229
2621
|
id: string;
|
|
2230
2622
|
displayName: string;
|
|
2231
2623
|
externalPlayerUrl: string | null;
|
|
2624
|
+
rtspUrl: string;
|
|
2232
2625
|
}[];
|
|
2233
2626
|
lensType: "flat" | "fisheye";
|
|
2234
2627
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2253,6 +2646,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2253
2646
|
id: string;
|
|
2254
2647
|
displayName: string;
|
|
2255
2648
|
externalPlayerUrl: string | null;
|
|
2649
|
+
rtspUrl: string;
|
|
2256
2650
|
}[];
|
|
2257
2651
|
lensType: "flat" | "fisheye";
|
|
2258
2652
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2426,6 +2820,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2426
2820
|
providerMetadata: {} & {
|
|
2427
2821
|
[k: string]: unknown;
|
|
2428
2822
|
};
|
|
2823
|
+
presets: {
|
|
2824
|
+
name: string;
|
|
2825
|
+
id: string;
|
|
2826
|
+
isDefault: boolean;
|
|
2827
|
+
assignedRef: string | null;
|
|
2828
|
+
createdOn: string;
|
|
2829
|
+
lastModifiedOn: string;
|
|
2830
|
+
params?: unknown;
|
|
2831
|
+
}[];
|
|
2429
2832
|
} & ({
|
|
2430
2833
|
type: "alarm";
|
|
2431
2834
|
} | {
|
|
@@ -2434,6 +2837,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2434
2837
|
id: string;
|
|
2435
2838
|
displayName: string;
|
|
2436
2839
|
externalPlayerUrl: string | null;
|
|
2840
|
+
rtspUrl: string;
|
|
2437
2841
|
}[];
|
|
2438
2842
|
lensType: "flat" | "fisheye";
|
|
2439
2843
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -2509,6 +2913,15 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2509
2913
|
providerMetadata: {} & {
|
|
2510
2914
|
[k: string]: unknown;
|
|
2511
2915
|
};
|
|
2916
|
+
presets: {
|
|
2917
|
+
name: string;
|
|
2918
|
+
id: string;
|
|
2919
|
+
isDefault: boolean;
|
|
2920
|
+
assignedRef: string | null;
|
|
2921
|
+
createdOn: string;
|
|
2922
|
+
lastModifiedOn: string;
|
|
2923
|
+
params?: unknown;
|
|
2924
|
+
}[];
|
|
2512
2925
|
} & ({
|
|
2513
2926
|
type: "alarm";
|
|
2514
2927
|
} | {
|
|
@@ -2517,6 +2930,7 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
2517
2930
|
id: string;
|
|
2518
2931
|
displayName: string;
|
|
2519
2932
|
externalPlayerUrl: string | null;
|
|
2933
|
+
rtspUrl: string;
|
|
2520
2934
|
}[];
|
|
2521
2935
|
lensType: "flat" | "fisheye";
|
|
2522
2936
|
mountPoint: "wall" | "ceiling" | "floor";
|