@awarevue/api-types 2.0.39 → 2.0.41
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 +204 -136
- package/dist/api/commands/all.d.ts +135 -92
- package/dist/api/commands/nvr-exporter.d.ts +140 -92
- package/dist/api/commands/nvr-exporter.js +1 -0
- package/dist/api/commands/server.d.ts +130 -92
- package/dist/api/queries/all.d.ts +153 -102
- package/dist/api/queries/nvr-recorder.d.ts +306 -204
- package/dist/api/rest/cast.d.ts +2 -2
- package/dist/api/rest/device.d.ts +18 -0
- package/dist/api/rest/device.js +3 -0
- package/dist/api/rest/media.d.ts +3 -0
- package/dist/api/rest/media.js +1 -0
- package/dist/api/rest/view.d.ts +82 -14
- package/dist/api/rest/webrtc-playback.d.ts +18 -3
- package/dist/api/rest/webrtc-playback.js +5 -1
- package/dist/objects/device/any-device.d.ts +111 -66
- package/dist/objects/device/camera.d.ts +59 -22
- package/dist/objects/device/camera.js +5 -4
- package/dist/objects/device/device-import.d.ts +190 -124
- package/dist/objects/view.d.ts +135 -21
- package/dist/objects/view.js +8 -4
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +74 -44
- package/package.json +1 -1
|
@@ -92,8 +92,6 @@ export declare const sNotify: z.ZodObject<{
|
|
|
92
92
|
}, {
|
|
93
93
|
type: "alarm";
|
|
94
94
|
}>, z.ZodObject<{
|
|
95
|
-
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
96
|
-
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
97
95
|
ptzCapable: z.ZodBoolean;
|
|
98
96
|
ptzPanSpeed: z.ZodNumber;
|
|
99
97
|
ptzTiltSpeed: z.ZodNumber;
|
|
@@ -104,31 +102,46 @@ export declare const sNotify: z.ZodObject<{
|
|
|
104
102
|
tiltMax: z.ZodNumber;
|
|
105
103
|
zoomMin: z.ZodNumber;
|
|
106
104
|
zoomMax: z.ZodNumber;
|
|
107
|
-
recordingCapable: z.ZodBoolean;
|
|
108
|
-
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
109
|
-
kind: z.ZodString;
|
|
110
|
-
}, "strip", z.ZodTypeAny, {
|
|
111
|
-
kind: string;
|
|
112
|
-
}, {
|
|
113
|
-
kind: string;
|
|
114
|
-
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
115
105
|
streams: z.ZodArray<z.ZodObject<{
|
|
116
106
|
id: z.ZodString;
|
|
117
107
|
displayName: z.ZodString;
|
|
118
108
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
119
109
|
rtspUrl: z.ZodString;
|
|
110
|
+
recordingCapable: z.ZodBoolean;
|
|
111
|
+
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
112
|
+
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
113
|
+
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
114
|
+
kind: z.ZodString;
|
|
115
|
+
}, "strip", z.ZodTypeAny, {
|
|
116
|
+
kind: string;
|
|
117
|
+
}, {
|
|
118
|
+
kind: string;
|
|
119
|
+
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
121
|
id: string;
|
|
122
122
|
displayName: string;
|
|
123
123
|
externalPlayerUrl: string | null;
|
|
124
124
|
rtspUrl: string;
|
|
125
|
+
recordingCapable: boolean;
|
|
126
|
+
lensType: "flat" | "fisheye";
|
|
127
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
128
|
+
webrtcPlaybackSource: ({
|
|
129
|
+
kind: string;
|
|
130
|
+
} & Record<string, unknown>) | null;
|
|
125
131
|
}, {
|
|
126
132
|
id: string;
|
|
127
133
|
displayName: string;
|
|
128
134
|
externalPlayerUrl: string | null;
|
|
129
135
|
rtspUrl: string;
|
|
136
|
+
recordingCapable: boolean;
|
|
137
|
+
lensType: "flat" | "fisheye";
|
|
138
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
139
|
+
webrtcPlaybackSource: ({
|
|
140
|
+
kind: string;
|
|
141
|
+
} & Record<string, unknown>) | null;
|
|
130
142
|
}>, "many">;
|
|
131
143
|
defaultStreamId: z.ZodString;
|
|
144
|
+
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
132
145
|
} & {
|
|
133
146
|
type: z.ZodLiteral<"camera">;
|
|
134
147
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -138,9 +151,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
138
151
|
displayName: string;
|
|
139
152
|
externalPlayerUrl: string | null;
|
|
140
153
|
rtspUrl: string;
|
|
154
|
+
recordingCapable: boolean;
|
|
155
|
+
lensType: "flat" | "fisheye";
|
|
156
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
157
|
+
webrtcPlaybackSource: ({
|
|
158
|
+
kind: string;
|
|
159
|
+
} & Record<string, unknown>) | null;
|
|
141
160
|
}[];
|
|
142
|
-
lensType: "flat" | "fisheye";
|
|
143
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
144
161
|
ptzCapable: boolean;
|
|
145
162
|
ptzPanSpeed: number;
|
|
146
163
|
ptzTiltSpeed: number;
|
|
@@ -151,11 +168,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
151
168
|
tiltMax: number;
|
|
152
169
|
zoomMin: number;
|
|
153
170
|
zoomMax: number;
|
|
154
|
-
recordingCapable: boolean;
|
|
155
|
-
webrtcPlaybackSource: ({
|
|
156
|
-
kind: string;
|
|
157
|
-
} & Record<string, unknown>) | null;
|
|
158
171
|
defaultStreamId: string;
|
|
172
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
159
173
|
}, {
|
|
160
174
|
type: "camera";
|
|
161
175
|
streams: {
|
|
@@ -163,9 +177,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
163
177
|
displayName: string;
|
|
164
178
|
externalPlayerUrl: string | null;
|
|
165
179
|
rtspUrl: string;
|
|
180
|
+
recordingCapable: boolean;
|
|
181
|
+
lensType: "flat" | "fisheye";
|
|
182
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
183
|
+
webrtcPlaybackSource: ({
|
|
184
|
+
kind: string;
|
|
185
|
+
} & Record<string, unknown>) | null;
|
|
166
186
|
}[];
|
|
167
|
-
lensType: "flat" | "fisheye";
|
|
168
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
169
187
|
ptzCapable: boolean;
|
|
170
188
|
ptzPanSpeed: number;
|
|
171
189
|
ptzTiltSpeed: number;
|
|
@@ -176,11 +194,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
176
194
|
tiltMax: number;
|
|
177
195
|
zoomMin: number;
|
|
178
196
|
zoomMax: number;
|
|
179
|
-
recordingCapable: boolean;
|
|
180
|
-
webrtcPlaybackSource: ({
|
|
181
|
-
kind: string;
|
|
182
|
-
} & Record<string, unknown>) | null;
|
|
183
197
|
defaultStreamId: string;
|
|
198
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
184
199
|
}>, z.ZodObject<{
|
|
185
200
|
canReportOpenState: z.ZodBoolean;
|
|
186
201
|
canReportLockState: z.ZodBoolean;
|
|
@@ -359,9 +374,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
359
374
|
displayName: string;
|
|
360
375
|
externalPlayerUrl: string | null;
|
|
361
376
|
rtspUrl: string;
|
|
377
|
+
recordingCapable: boolean;
|
|
378
|
+
lensType: "flat" | "fisheye";
|
|
379
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
380
|
+
webrtcPlaybackSource: ({
|
|
381
|
+
kind: string;
|
|
382
|
+
} & Record<string, unknown>) | null;
|
|
362
383
|
}[];
|
|
363
|
-
lensType: "flat" | "fisheye";
|
|
364
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
365
384
|
ptzCapable: boolean;
|
|
366
385
|
ptzPanSpeed: number;
|
|
367
386
|
ptzTiltSpeed: number;
|
|
@@ -372,11 +391,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
372
391
|
tiltMax: number;
|
|
373
392
|
zoomMin: number;
|
|
374
393
|
zoomMax: number;
|
|
375
|
-
recordingCapable: boolean;
|
|
376
|
-
webrtcPlaybackSource: ({
|
|
377
|
-
kind: string;
|
|
378
|
-
} & Record<string, unknown>) | null;
|
|
379
394
|
defaultStreamId: string;
|
|
395
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
380
396
|
} | {
|
|
381
397
|
type: "door";
|
|
382
398
|
canReportOpenState: boolean;
|
|
@@ -456,9 +472,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
456
472
|
displayName: string;
|
|
457
473
|
externalPlayerUrl: string | null;
|
|
458
474
|
rtspUrl: string;
|
|
475
|
+
recordingCapable: boolean;
|
|
476
|
+
lensType: "flat" | "fisheye";
|
|
477
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
478
|
+
webrtcPlaybackSource: ({
|
|
479
|
+
kind: string;
|
|
480
|
+
} & Record<string, unknown>) | null;
|
|
459
481
|
}[];
|
|
460
|
-
lensType: "flat" | "fisheye";
|
|
461
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
462
482
|
ptzCapable: boolean;
|
|
463
483
|
ptzPanSpeed: number;
|
|
464
484
|
ptzTiltSpeed: number;
|
|
@@ -469,11 +489,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
469
489
|
tiltMax: number;
|
|
470
490
|
zoomMin: number;
|
|
471
491
|
zoomMax: number;
|
|
472
|
-
recordingCapable: boolean;
|
|
473
|
-
webrtcPlaybackSource: ({
|
|
474
|
-
kind: string;
|
|
475
|
-
} & Record<string, unknown>) | null;
|
|
476
492
|
defaultStreamId: string;
|
|
493
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
477
494
|
} | {
|
|
478
495
|
type: "door";
|
|
479
496
|
canReportOpenState: boolean;
|
|
@@ -555,9 +572,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
555
572
|
displayName: string;
|
|
556
573
|
externalPlayerUrl: string | null;
|
|
557
574
|
rtspUrl: string;
|
|
575
|
+
recordingCapable: boolean;
|
|
576
|
+
lensType: "flat" | "fisheye";
|
|
577
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
578
|
+
webrtcPlaybackSource: ({
|
|
579
|
+
kind: string;
|
|
580
|
+
} & Record<string, unknown>) | null;
|
|
558
581
|
}[];
|
|
559
|
-
lensType: "flat" | "fisheye";
|
|
560
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
561
582
|
ptzCapable: boolean;
|
|
562
583
|
ptzPanSpeed: number;
|
|
563
584
|
ptzTiltSpeed: number;
|
|
@@ -568,11 +589,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
568
589
|
tiltMax: number;
|
|
569
590
|
zoomMin: number;
|
|
570
591
|
zoomMax: number;
|
|
571
|
-
recordingCapable: boolean;
|
|
572
|
-
webrtcPlaybackSource: ({
|
|
573
|
-
kind: string;
|
|
574
|
-
} & Record<string, unknown>) | null;
|
|
575
592
|
defaultStreamId: string;
|
|
593
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
576
594
|
} | {
|
|
577
595
|
type: "door";
|
|
578
596
|
canReportOpenState: boolean;
|
|
@@ -655,9 +673,13 @@ export declare const sNotify: z.ZodObject<{
|
|
|
655
673
|
displayName: string;
|
|
656
674
|
externalPlayerUrl: string | null;
|
|
657
675
|
rtspUrl: string;
|
|
676
|
+
recordingCapable: boolean;
|
|
677
|
+
lensType: "flat" | "fisheye";
|
|
678
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
679
|
+
webrtcPlaybackSource: ({
|
|
680
|
+
kind: string;
|
|
681
|
+
} & Record<string, unknown>) | null;
|
|
658
682
|
}[];
|
|
659
|
-
lensType: "flat" | "fisheye";
|
|
660
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
661
683
|
ptzCapable: boolean;
|
|
662
684
|
ptzPanSpeed: number;
|
|
663
685
|
ptzTiltSpeed: number;
|
|
@@ -668,11 +690,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
668
690
|
tiltMax: number;
|
|
669
691
|
zoomMin: number;
|
|
670
692
|
zoomMax: number;
|
|
671
|
-
recordingCapable: boolean;
|
|
672
|
-
webrtcPlaybackSource: ({
|
|
673
|
-
kind: string;
|
|
674
|
-
} & Record<string, unknown>) | null;
|
|
675
693
|
defaultStreamId: string;
|
|
694
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
676
695
|
} | {
|
|
677
696
|
type: "door";
|
|
678
697
|
canReportOpenState: boolean;
|
|
@@ -824,8 +843,6 @@ export declare const serverCommands: {
|
|
|
824
843
|
}, {
|
|
825
844
|
type: "alarm";
|
|
826
845
|
}>, z.ZodObject<{
|
|
827
|
-
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
828
|
-
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
829
846
|
ptzCapable: z.ZodBoolean;
|
|
830
847
|
ptzPanSpeed: z.ZodNumber;
|
|
831
848
|
ptzTiltSpeed: z.ZodNumber;
|
|
@@ -836,31 +853,46 @@ export declare const serverCommands: {
|
|
|
836
853
|
tiltMax: z.ZodNumber;
|
|
837
854
|
zoomMin: z.ZodNumber;
|
|
838
855
|
zoomMax: z.ZodNumber;
|
|
839
|
-
recordingCapable: z.ZodBoolean;
|
|
840
|
-
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
841
|
-
kind: z.ZodString;
|
|
842
|
-
}, "strip", z.ZodTypeAny, {
|
|
843
|
-
kind: string;
|
|
844
|
-
}, {
|
|
845
|
-
kind: string;
|
|
846
|
-
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
847
856
|
streams: z.ZodArray<z.ZodObject<{
|
|
848
857
|
id: z.ZodString;
|
|
849
858
|
displayName: z.ZodString;
|
|
850
859
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
851
860
|
rtspUrl: z.ZodString;
|
|
861
|
+
recordingCapable: z.ZodBoolean;
|
|
862
|
+
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
863
|
+
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
864
|
+
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
865
|
+
kind: z.ZodString;
|
|
866
|
+
}, "strip", z.ZodTypeAny, {
|
|
867
|
+
kind: string;
|
|
868
|
+
}, {
|
|
869
|
+
kind: string;
|
|
870
|
+
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
852
871
|
}, "strip", z.ZodTypeAny, {
|
|
853
872
|
id: string;
|
|
854
873
|
displayName: string;
|
|
855
874
|
externalPlayerUrl: string | null;
|
|
856
875
|
rtspUrl: string;
|
|
876
|
+
recordingCapable: boolean;
|
|
877
|
+
lensType: "flat" | "fisheye";
|
|
878
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
879
|
+
webrtcPlaybackSource: ({
|
|
880
|
+
kind: string;
|
|
881
|
+
} & Record<string, unknown>) | null;
|
|
857
882
|
}, {
|
|
858
883
|
id: string;
|
|
859
884
|
displayName: string;
|
|
860
885
|
externalPlayerUrl: string | null;
|
|
861
886
|
rtspUrl: string;
|
|
887
|
+
recordingCapable: boolean;
|
|
888
|
+
lensType: "flat" | "fisheye";
|
|
889
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
890
|
+
webrtcPlaybackSource: ({
|
|
891
|
+
kind: string;
|
|
892
|
+
} & Record<string, unknown>) | null;
|
|
862
893
|
}>, "many">;
|
|
863
894
|
defaultStreamId: z.ZodString;
|
|
895
|
+
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
864
896
|
} & {
|
|
865
897
|
type: z.ZodLiteral<"camera">;
|
|
866
898
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -870,9 +902,13 @@ export declare const serverCommands: {
|
|
|
870
902
|
displayName: string;
|
|
871
903
|
externalPlayerUrl: string | null;
|
|
872
904
|
rtspUrl: string;
|
|
905
|
+
recordingCapable: boolean;
|
|
906
|
+
lensType: "flat" | "fisheye";
|
|
907
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
908
|
+
webrtcPlaybackSource: ({
|
|
909
|
+
kind: string;
|
|
910
|
+
} & Record<string, unknown>) | null;
|
|
873
911
|
}[];
|
|
874
|
-
lensType: "flat" | "fisheye";
|
|
875
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
876
912
|
ptzCapable: boolean;
|
|
877
913
|
ptzPanSpeed: number;
|
|
878
914
|
ptzTiltSpeed: number;
|
|
@@ -883,11 +919,8 @@ export declare const serverCommands: {
|
|
|
883
919
|
tiltMax: number;
|
|
884
920
|
zoomMin: number;
|
|
885
921
|
zoomMax: number;
|
|
886
|
-
recordingCapable: boolean;
|
|
887
|
-
webrtcPlaybackSource: ({
|
|
888
|
-
kind: string;
|
|
889
|
-
} & Record<string, unknown>) | null;
|
|
890
922
|
defaultStreamId: string;
|
|
923
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
891
924
|
}, {
|
|
892
925
|
type: "camera";
|
|
893
926
|
streams: {
|
|
@@ -895,9 +928,13 @@ export declare const serverCommands: {
|
|
|
895
928
|
displayName: string;
|
|
896
929
|
externalPlayerUrl: string | null;
|
|
897
930
|
rtspUrl: string;
|
|
931
|
+
recordingCapable: boolean;
|
|
932
|
+
lensType: "flat" | "fisheye";
|
|
933
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
934
|
+
webrtcPlaybackSource: ({
|
|
935
|
+
kind: string;
|
|
936
|
+
} & Record<string, unknown>) | null;
|
|
898
937
|
}[];
|
|
899
|
-
lensType: "flat" | "fisheye";
|
|
900
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
901
938
|
ptzCapable: boolean;
|
|
902
939
|
ptzPanSpeed: number;
|
|
903
940
|
ptzTiltSpeed: number;
|
|
@@ -908,11 +945,8 @@ export declare const serverCommands: {
|
|
|
908
945
|
tiltMax: number;
|
|
909
946
|
zoomMin: number;
|
|
910
947
|
zoomMax: number;
|
|
911
|
-
recordingCapable: boolean;
|
|
912
|
-
webrtcPlaybackSource: ({
|
|
913
|
-
kind: string;
|
|
914
|
-
} & Record<string, unknown>) | null;
|
|
915
948
|
defaultStreamId: string;
|
|
949
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
916
950
|
}>, z.ZodObject<{
|
|
917
951
|
canReportOpenState: z.ZodBoolean;
|
|
918
952
|
canReportLockState: z.ZodBoolean;
|
|
@@ -1091,9 +1125,13 @@ export declare const serverCommands: {
|
|
|
1091
1125
|
displayName: string;
|
|
1092
1126
|
externalPlayerUrl: string | null;
|
|
1093
1127
|
rtspUrl: string;
|
|
1128
|
+
recordingCapable: boolean;
|
|
1129
|
+
lensType: "flat" | "fisheye";
|
|
1130
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
1131
|
+
webrtcPlaybackSource: ({
|
|
1132
|
+
kind: string;
|
|
1133
|
+
} & Record<string, unknown>) | null;
|
|
1094
1134
|
}[];
|
|
1095
|
-
lensType: "flat" | "fisheye";
|
|
1096
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
1097
1135
|
ptzCapable: boolean;
|
|
1098
1136
|
ptzPanSpeed: number;
|
|
1099
1137
|
ptzTiltSpeed: number;
|
|
@@ -1104,11 +1142,8 @@ export declare const serverCommands: {
|
|
|
1104
1142
|
tiltMax: number;
|
|
1105
1143
|
zoomMin: number;
|
|
1106
1144
|
zoomMax: number;
|
|
1107
|
-
recordingCapable: boolean;
|
|
1108
|
-
webrtcPlaybackSource: ({
|
|
1109
|
-
kind: string;
|
|
1110
|
-
} & Record<string, unknown>) | null;
|
|
1111
1145
|
defaultStreamId: string;
|
|
1146
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
1112
1147
|
} | {
|
|
1113
1148
|
type: "door";
|
|
1114
1149
|
canReportOpenState: boolean;
|
|
@@ -1188,9 +1223,13 @@ export declare const serverCommands: {
|
|
|
1188
1223
|
displayName: string;
|
|
1189
1224
|
externalPlayerUrl: string | null;
|
|
1190
1225
|
rtspUrl: string;
|
|
1226
|
+
recordingCapable: boolean;
|
|
1227
|
+
lensType: "flat" | "fisheye";
|
|
1228
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
1229
|
+
webrtcPlaybackSource: ({
|
|
1230
|
+
kind: string;
|
|
1231
|
+
} & Record<string, unknown>) | null;
|
|
1191
1232
|
}[];
|
|
1192
|
-
lensType: "flat" | "fisheye";
|
|
1193
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
1194
1233
|
ptzCapable: boolean;
|
|
1195
1234
|
ptzPanSpeed: number;
|
|
1196
1235
|
ptzTiltSpeed: number;
|
|
@@ -1201,11 +1240,8 @@ export declare const serverCommands: {
|
|
|
1201
1240
|
tiltMax: number;
|
|
1202
1241
|
zoomMin: number;
|
|
1203
1242
|
zoomMax: number;
|
|
1204
|
-
recordingCapable: boolean;
|
|
1205
|
-
webrtcPlaybackSource: ({
|
|
1206
|
-
kind: string;
|
|
1207
|
-
} & Record<string, unknown>) | null;
|
|
1208
1243
|
defaultStreamId: string;
|
|
1244
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
1209
1245
|
} | {
|
|
1210
1246
|
type: "door";
|
|
1211
1247
|
canReportOpenState: boolean;
|
|
@@ -1287,9 +1323,13 @@ export declare const serverCommands: {
|
|
|
1287
1323
|
displayName: string;
|
|
1288
1324
|
externalPlayerUrl: string | null;
|
|
1289
1325
|
rtspUrl: string;
|
|
1326
|
+
recordingCapable: boolean;
|
|
1327
|
+
lensType: "flat" | "fisheye";
|
|
1328
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
1329
|
+
webrtcPlaybackSource: ({
|
|
1330
|
+
kind: string;
|
|
1331
|
+
} & Record<string, unknown>) | null;
|
|
1290
1332
|
}[];
|
|
1291
|
-
lensType: "flat" | "fisheye";
|
|
1292
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
1293
1333
|
ptzCapable: boolean;
|
|
1294
1334
|
ptzPanSpeed: number;
|
|
1295
1335
|
ptzTiltSpeed: number;
|
|
@@ -1300,11 +1340,8 @@ export declare const serverCommands: {
|
|
|
1300
1340
|
tiltMax: number;
|
|
1301
1341
|
zoomMin: number;
|
|
1302
1342
|
zoomMax: number;
|
|
1303
|
-
recordingCapable: boolean;
|
|
1304
|
-
webrtcPlaybackSource: ({
|
|
1305
|
-
kind: string;
|
|
1306
|
-
} & Record<string, unknown>) | null;
|
|
1307
1343
|
defaultStreamId: string;
|
|
1344
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
1308
1345
|
} | {
|
|
1309
1346
|
type: "door";
|
|
1310
1347
|
canReportOpenState: boolean;
|
|
@@ -1387,9 +1424,13 @@ export declare const serverCommands: {
|
|
|
1387
1424
|
displayName: string;
|
|
1388
1425
|
externalPlayerUrl: string | null;
|
|
1389
1426
|
rtspUrl: string;
|
|
1427
|
+
recordingCapable: boolean;
|
|
1428
|
+
lensType: "flat" | "fisheye";
|
|
1429
|
+
mountPoint: "wall" | "ceiling" | "floor";
|
|
1430
|
+
webrtcPlaybackSource: ({
|
|
1431
|
+
kind: string;
|
|
1432
|
+
} & Record<string, unknown>) | null;
|
|
1390
1433
|
}[];
|
|
1391
|
-
lensType: "flat" | "fisheye";
|
|
1392
|
-
mountPoint: "wall" | "ceiling" | "floor";
|
|
1393
1434
|
ptzCapable: boolean;
|
|
1394
1435
|
ptzPanSpeed: number;
|
|
1395
1436
|
ptzTiltSpeed: number;
|
|
@@ -1400,11 +1441,8 @@ export declare const serverCommands: {
|
|
|
1400
1441
|
tiltMax: number;
|
|
1401
1442
|
zoomMin: number;
|
|
1402
1443
|
zoomMax: number;
|
|
1403
|
-
recordingCapable: boolean;
|
|
1404
|
-
webrtcPlaybackSource: ({
|
|
1405
|
-
kind: string;
|
|
1406
|
-
} & Record<string, unknown>) | null;
|
|
1407
1444
|
defaultStreamId: string;
|
|
1445
|
+
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
1408
1446
|
} | {
|
|
1409
1447
|
type: "door";
|
|
1410
1448
|
canReportOpenState: boolean;
|