@awarevue/api-types 2.0.39 → 2.0.40

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.
@@ -110,8 +110,6 @@ export declare const commandSchemas: {
110
110
  }, {
111
111
  type: "alarm";
112
112
  }>, import("zod").ZodObject<{
113
- lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
114
- mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
115
113
  ptzCapable: import("zod").ZodBoolean;
116
114
  ptzPanSpeed: import("zod").ZodNumber;
117
115
  ptzTiltSpeed: import("zod").ZodNumber;
@@ -122,31 +120,46 @@ export declare const commandSchemas: {
122
120
  tiltMax: import("zod").ZodNumber;
123
121
  zoomMin: import("zod").ZodNumber;
124
122
  zoomMax: import("zod").ZodNumber;
125
- recordingCapable: import("zod").ZodBoolean;
126
- webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
127
- kind: import("zod").ZodString;
128
- }, "strip", import("zod").ZodTypeAny, {
129
- kind: string;
130
- }, {
131
- kind: string;
132
- }>, import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
133
123
  streams: import("zod").ZodArray<import("zod").ZodObject<{
134
124
  id: import("zod").ZodString;
135
125
  displayName: import("zod").ZodString;
136
126
  externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
137
127
  rtspUrl: import("zod").ZodString;
128
+ recordingCapable: import("zod").ZodBoolean;
129
+ lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
130
+ mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
131
+ webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
132
+ kind: import("zod").ZodString;
133
+ }, "strip", import("zod").ZodTypeAny, {
134
+ kind: string;
135
+ }, {
136
+ kind: string;
137
+ }>, import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
138
138
  }, "strip", import("zod").ZodTypeAny, {
139
139
  id: string;
140
140
  displayName: string;
141
141
  externalPlayerUrl: string | null;
142
142
  rtspUrl: string;
143
+ recordingCapable: boolean;
144
+ lensType: "flat" | "fisheye";
145
+ mountPoint: "wall" | "ceiling" | "floor";
146
+ webrtcPlaybackSource: ({
147
+ kind: string;
148
+ } & Record<string, unknown>) | null;
143
149
  }, {
144
150
  id: string;
145
151
  displayName: string;
146
152
  externalPlayerUrl: string | null;
147
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;
148
160
  }>, "many">;
149
161
  defaultStreamId: import("zod").ZodString;
162
+ streamNaming: import("zod").ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
150
163
  } & {
151
164
  type: import("zod").ZodLiteral<"camera">;
152
165
  }, "strip", import("zod").ZodTypeAny, {
@@ -156,9 +169,13 @@ export declare const commandSchemas: {
156
169
  displayName: string;
157
170
  externalPlayerUrl: string | null;
158
171
  rtspUrl: string;
172
+ recordingCapable: boolean;
173
+ lensType: "flat" | "fisheye";
174
+ mountPoint: "wall" | "ceiling" | "floor";
175
+ webrtcPlaybackSource: ({
176
+ kind: string;
177
+ } & Record<string, unknown>) | null;
159
178
  }[];
160
- lensType: "flat" | "fisheye";
161
- mountPoint: "wall" | "ceiling" | "floor";
162
179
  ptzCapable: boolean;
163
180
  ptzPanSpeed: number;
164
181
  ptzTiltSpeed: number;
@@ -169,11 +186,8 @@ export declare const commandSchemas: {
169
186
  tiltMax: number;
170
187
  zoomMin: number;
171
188
  zoomMax: number;
172
- recordingCapable: boolean;
173
- webrtcPlaybackSource: ({
174
- kind: string;
175
- } & Record<string, unknown>) | null;
176
189
  defaultStreamId: string;
190
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
177
191
  }, {
178
192
  type: "camera";
179
193
  streams: {
@@ -181,9 +195,13 @@ export declare const commandSchemas: {
181
195
  displayName: string;
182
196
  externalPlayerUrl: string | null;
183
197
  rtspUrl: string;
198
+ recordingCapable: boolean;
199
+ lensType: "flat" | "fisheye";
200
+ mountPoint: "wall" | "ceiling" | "floor";
201
+ webrtcPlaybackSource: ({
202
+ kind: string;
203
+ } & Record<string, unknown>) | null;
184
204
  }[];
185
- lensType: "flat" | "fisheye";
186
- mountPoint: "wall" | "ceiling" | "floor";
187
205
  ptzCapable: boolean;
188
206
  ptzPanSpeed: number;
189
207
  ptzTiltSpeed: number;
@@ -194,11 +212,8 @@ export declare const commandSchemas: {
194
212
  tiltMax: number;
195
213
  zoomMin: number;
196
214
  zoomMax: number;
197
- recordingCapable: boolean;
198
- webrtcPlaybackSource: ({
199
- kind: string;
200
- } & Record<string, unknown>) | null;
201
215
  defaultStreamId: string;
216
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
202
217
  }>, import("zod").ZodObject<{
203
218
  canReportOpenState: import("zod").ZodBoolean;
204
219
  canReportLockState: import("zod").ZodBoolean;
@@ -377,9 +392,13 @@ export declare const commandSchemas: {
377
392
  displayName: string;
378
393
  externalPlayerUrl: string | null;
379
394
  rtspUrl: string;
395
+ recordingCapable: boolean;
396
+ lensType: "flat" | "fisheye";
397
+ mountPoint: "wall" | "ceiling" | "floor";
398
+ webrtcPlaybackSource: ({
399
+ kind: string;
400
+ } & Record<string, unknown>) | null;
380
401
  }[];
381
- lensType: "flat" | "fisheye";
382
- mountPoint: "wall" | "ceiling" | "floor";
383
402
  ptzCapable: boolean;
384
403
  ptzPanSpeed: number;
385
404
  ptzTiltSpeed: number;
@@ -390,11 +409,8 @@ export declare const commandSchemas: {
390
409
  tiltMax: number;
391
410
  zoomMin: number;
392
411
  zoomMax: number;
393
- recordingCapable: boolean;
394
- webrtcPlaybackSource: ({
395
- kind: string;
396
- } & Record<string, unknown>) | null;
397
412
  defaultStreamId: string;
413
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
398
414
  } | {
399
415
  type: "door";
400
416
  canReportOpenState: boolean;
@@ -474,9 +490,13 @@ export declare const commandSchemas: {
474
490
  displayName: string;
475
491
  externalPlayerUrl: string | null;
476
492
  rtspUrl: string;
493
+ recordingCapable: boolean;
494
+ lensType: "flat" | "fisheye";
495
+ mountPoint: "wall" | "ceiling" | "floor";
496
+ webrtcPlaybackSource: ({
497
+ kind: string;
498
+ } & Record<string, unknown>) | null;
477
499
  }[];
478
- lensType: "flat" | "fisheye";
479
- mountPoint: "wall" | "ceiling" | "floor";
480
500
  ptzCapable: boolean;
481
501
  ptzPanSpeed: number;
482
502
  ptzTiltSpeed: number;
@@ -487,11 +507,8 @@ export declare const commandSchemas: {
487
507
  tiltMax: number;
488
508
  zoomMin: number;
489
509
  zoomMax: number;
490
- recordingCapable: boolean;
491
- webrtcPlaybackSource: ({
492
- kind: string;
493
- } & Record<string, unknown>) | null;
494
510
  defaultStreamId: string;
511
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
495
512
  } | {
496
513
  type: "door";
497
514
  canReportOpenState: boolean;
@@ -573,9 +590,13 @@ export declare const commandSchemas: {
573
590
  displayName: string;
574
591
  externalPlayerUrl: string | null;
575
592
  rtspUrl: string;
593
+ recordingCapable: boolean;
594
+ lensType: "flat" | "fisheye";
595
+ mountPoint: "wall" | "ceiling" | "floor";
596
+ webrtcPlaybackSource: ({
597
+ kind: string;
598
+ } & Record<string, unknown>) | null;
576
599
  }[];
577
- lensType: "flat" | "fisheye";
578
- mountPoint: "wall" | "ceiling" | "floor";
579
600
  ptzCapable: boolean;
580
601
  ptzPanSpeed: number;
581
602
  ptzTiltSpeed: number;
@@ -586,11 +607,8 @@ export declare const commandSchemas: {
586
607
  tiltMax: number;
587
608
  zoomMin: number;
588
609
  zoomMax: number;
589
- recordingCapable: boolean;
590
- webrtcPlaybackSource: ({
591
- kind: string;
592
- } & Record<string, unknown>) | null;
593
610
  defaultStreamId: string;
611
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
594
612
  } | {
595
613
  type: "door";
596
614
  canReportOpenState: boolean;
@@ -673,9 +691,13 @@ export declare const commandSchemas: {
673
691
  displayName: string;
674
692
  externalPlayerUrl: string | null;
675
693
  rtspUrl: string;
694
+ recordingCapable: boolean;
695
+ lensType: "flat" | "fisheye";
696
+ mountPoint: "wall" | "ceiling" | "floor";
697
+ webrtcPlaybackSource: ({
698
+ kind: string;
699
+ } & Record<string, unknown>) | null;
676
700
  }[];
677
- lensType: "flat" | "fisheye";
678
- mountPoint: "wall" | "ceiling" | "floor";
679
701
  ptzCapable: boolean;
680
702
  ptzPanSpeed: number;
681
703
  ptzTiltSpeed: number;
@@ -686,11 +708,8 @@ export declare const commandSchemas: {
686
708
  tiltMax: number;
687
709
  zoomMin: number;
688
710
  zoomMax: number;
689
- recordingCapable: boolean;
690
- webrtcPlaybackSource: ({
691
- kind: string;
692
- } & Record<string, unknown>) | null;
693
711
  defaultStreamId: string;
712
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
694
713
  } | {
695
714
  type: "door";
696
715
  canReportOpenState: boolean;
@@ -820,8 +839,6 @@ export declare const commandSchemas: {
820
839
  }, {
821
840
  type: "alarm";
822
841
  }>, import("zod").ZodObject<{
823
- lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
824
- mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
825
842
  ptzCapable: import("zod").ZodBoolean;
826
843
  ptzPanSpeed: import("zod").ZodNumber;
827
844
  ptzTiltSpeed: import("zod").ZodNumber;
@@ -832,31 +849,46 @@ export declare const commandSchemas: {
832
849
  tiltMax: import("zod").ZodNumber;
833
850
  zoomMin: import("zod").ZodNumber;
834
851
  zoomMax: import("zod").ZodNumber;
835
- recordingCapable: import("zod").ZodBoolean;
836
- webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
837
- kind: import("zod").ZodString;
838
- }, "strip", import("zod").ZodTypeAny, {
839
- kind: string;
840
- }, {
841
- kind: string;
842
- }>, import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
843
852
  streams: import("zod").ZodArray<import("zod").ZodObject<{
844
853
  id: import("zod").ZodString;
845
854
  displayName: import("zod").ZodString;
846
855
  externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
847
856
  rtspUrl: import("zod").ZodString;
857
+ recordingCapable: import("zod").ZodBoolean;
858
+ lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
859
+ mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
860
+ webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
861
+ kind: import("zod").ZodString;
862
+ }, "strip", import("zod").ZodTypeAny, {
863
+ kind: string;
864
+ }, {
865
+ kind: string;
866
+ }>, import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
848
867
  }, "strip", import("zod").ZodTypeAny, {
849
868
  id: string;
850
869
  displayName: string;
851
870
  externalPlayerUrl: string | null;
852
871
  rtspUrl: string;
872
+ recordingCapable: boolean;
873
+ lensType: "flat" | "fisheye";
874
+ mountPoint: "wall" | "ceiling" | "floor";
875
+ webrtcPlaybackSource: ({
876
+ kind: string;
877
+ } & Record<string, unknown>) | null;
853
878
  }, {
854
879
  id: string;
855
880
  displayName: string;
856
881
  externalPlayerUrl: string | null;
857
882
  rtspUrl: string;
883
+ recordingCapable: boolean;
884
+ lensType: "flat" | "fisheye";
885
+ mountPoint: "wall" | "ceiling" | "floor";
886
+ webrtcPlaybackSource: ({
887
+ kind: string;
888
+ } & Record<string, unknown>) | null;
858
889
  }>, "many">;
859
890
  defaultStreamId: import("zod").ZodString;
891
+ streamNaming: import("zod").ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
860
892
  } & {
861
893
  type: import("zod").ZodLiteral<"camera">;
862
894
  }, "strip", import("zod").ZodTypeAny, {
@@ -866,9 +898,13 @@ export declare const commandSchemas: {
866
898
  displayName: string;
867
899
  externalPlayerUrl: string | null;
868
900
  rtspUrl: string;
901
+ recordingCapable: boolean;
902
+ lensType: "flat" | "fisheye";
903
+ mountPoint: "wall" | "ceiling" | "floor";
904
+ webrtcPlaybackSource: ({
905
+ kind: string;
906
+ } & Record<string, unknown>) | null;
869
907
  }[];
870
- lensType: "flat" | "fisheye";
871
- mountPoint: "wall" | "ceiling" | "floor";
872
908
  ptzCapable: boolean;
873
909
  ptzPanSpeed: number;
874
910
  ptzTiltSpeed: number;
@@ -879,11 +915,8 @@ export declare const commandSchemas: {
879
915
  tiltMax: number;
880
916
  zoomMin: number;
881
917
  zoomMax: number;
882
- recordingCapable: boolean;
883
- webrtcPlaybackSource: ({
884
- kind: string;
885
- } & Record<string, unknown>) | null;
886
918
  defaultStreamId: string;
919
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
887
920
  }, {
888
921
  type: "camera";
889
922
  streams: {
@@ -891,9 +924,13 @@ export declare const commandSchemas: {
891
924
  displayName: string;
892
925
  externalPlayerUrl: string | null;
893
926
  rtspUrl: string;
927
+ recordingCapable: boolean;
928
+ lensType: "flat" | "fisheye";
929
+ mountPoint: "wall" | "ceiling" | "floor";
930
+ webrtcPlaybackSource: ({
931
+ kind: string;
932
+ } & Record<string, unknown>) | null;
894
933
  }[];
895
- lensType: "flat" | "fisheye";
896
- mountPoint: "wall" | "ceiling" | "floor";
897
934
  ptzCapable: boolean;
898
935
  ptzPanSpeed: number;
899
936
  ptzTiltSpeed: number;
@@ -904,11 +941,8 @@ export declare const commandSchemas: {
904
941
  tiltMax: number;
905
942
  zoomMin: number;
906
943
  zoomMax: number;
907
- recordingCapable: boolean;
908
- webrtcPlaybackSource: ({
909
- kind: string;
910
- } & Record<string, unknown>) | null;
911
944
  defaultStreamId: string;
945
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
912
946
  }>, import("zod").ZodObject<{
913
947
  canReportOpenState: import("zod").ZodBoolean;
914
948
  canReportLockState: import("zod").ZodBoolean;
@@ -1055,6 +1089,7 @@ export declare const commandSchemas: {
1055
1089
  }, {
1056
1090
  type: "system";
1057
1091
  }>]>>]>, import("zod").ZodTuple<[import("zod").ZodString, import("zod").ZodString], null>]>;
1092
+ streamId: import("zod").ZodString;
1058
1093
  timeFrom: import("zod").ZodNumber;
1059
1094
  timeTo: import("zod").ZodNumber;
1060
1095
  name: import("zod").ZodString;
@@ -1085,9 +1120,13 @@ export declare const commandSchemas: {
1085
1120
  displayName: string;
1086
1121
  externalPlayerUrl: string | null;
1087
1122
  rtspUrl: string;
1123
+ recordingCapable: boolean;
1124
+ lensType: "flat" | "fisheye";
1125
+ mountPoint: "wall" | "ceiling" | "floor";
1126
+ webrtcPlaybackSource: ({
1127
+ kind: string;
1128
+ } & Record<string, unknown>) | null;
1088
1129
  }[];
1089
- lensType: "flat" | "fisheye";
1090
- mountPoint: "wall" | "ceiling" | "floor";
1091
1130
  ptzCapable: boolean;
1092
1131
  ptzPanSpeed: number;
1093
1132
  ptzTiltSpeed: number;
@@ -1098,11 +1137,8 @@ export declare const commandSchemas: {
1098
1137
  tiltMax: number;
1099
1138
  zoomMin: number;
1100
1139
  zoomMax: number;
1101
- recordingCapable: boolean;
1102
- webrtcPlaybackSource: ({
1103
- kind: string;
1104
- } & Record<string, unknown>) | null;
1105
1140
  defaultStreamId: string;
1141
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
1106
1142
  } | {
1107
1143
  type: "door";
1108
1144
  canReportOpenState: boolean;
@@ -1151,6 +1187,7 @@ export declare const commandSchemas: {
1151
1187
  } | {
1152
1188
  type: "system";
1153
1189
  }));
1190
+ streamId: string;
1154
1191
  requestId: string;
1155
1192
  timeFrom: number;
1156
1193
  timeTo: number;
@@ -1181,9 +1218,13 @@ export declare const commandSchemas: {
1181
1218
  displayName: string;
1182
1219
  externalPlayerUrl: string | null;
1183
1220
  rtspUrl: string;
1221
+ recordingCapable: boolean;
1222
+ lensType: "flat" | "fisheye";
1223
+ mountPoint: "wall" | "ceiling" | "floor";
1224
+ webrtcPlaybackSource: ({
1225
+ kind: string;
1226
+ } & Record<string, unknown>) | null;
1184
1227
  }[];
1185
- lensType: "flat" | "fisheye";
1186
- mountPoint: "wall" | "ceiling" | "floor";
1187
1228
  ptzCapable: boolean;
1188
1229
  ptzPanSpeed: number;
1189
1230
  ptzTiltSpeed: number;
@@ -1194,11 +1235,8 @@ export declare const commandSchemas: {
1194
1235
  tiltMax: number;
1195
1236
  zoomMin: number;
1196
1237
  zoomMax: number;
1197
- recordingCapable: boolean;
1198
- webrtcPlaybackSource: ({
1199
- kind: string;
1200
- } & Record<string, unknown>) | null;
1201
1238
  defaultStreamId: string;
1239
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
1202
1240
  } | {
1203
1241
  type: "door";
1204
1242
  canReportOpenState: boolean;
@@ -1247,6 +1285,7 @@ export declare const commandSchemas: {
1247
1285
  } | {
1248
1286
  type: "system";
1249
1287
  }));
1288
+ streamId: string;
1250
1289
  requestId: string;
1251
1290
  timeFrom: number;
1252
1291
  timeTo: number;
@@ -1279,9 +1318,13 @@ export declare const commandSchemas: {
1279
1318
  displayName: string;
1280
1319
  externalPlayerUrl: string | null;
1281
1320
  rtspUrl: string;
1321
+ recordingCapable: boolean;
1322
+ lensType: "flat" | "fisheye";
1323
+ mountPoint: "wall" | "ceiling" | "floor";
1324
+ webrtcPlaybackSource: ({
1325
+ kind: string;
1326
+ } & Record<string, unknown>) | null;
1282
1327
  }[];
1283
- lensType: "flat" | "fisheye";
1284
- mountPoint: "wall" | "ceiling" | "floor";
1285
1328
  ptzCapable: boolean;
1286
1329
  ptzPanSpeed: number;
1287
1330
  ptzTiltSpeed: number;
@@ -1292,11 +1335,8 @@ export declare const commandSchemas: {
1292
1335
  tiltMax: number;
1293
1336
  zoomMin: number;
1294
1337
  zoomMax: number;
1295
- recordingCapable: boolean;
1296
- webrtcPlaybackSource: ({
1297
- kind: string;
1298
- } & Record<string, unknown>) | null;
1299
1338
  defaultStreamId: string;
1339
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
1300
1340
  } | {
1301
1341
  type: "door";
1302
1342
  canReportOpenState: boolean;
@@ -1345,6 +1385,7 @@ export declare const commandSchemas: {
1345
1385
  } | {
1346
1386
  type: "system";
1347
1387
  }));
1388
+ streamId: string;
1348
1389
  requestId: string;
1349
1390
  timeFrom: number;
1350
1391
  timeTo: number;
@@ -1378,9 +1419,13 @@ export declare const commandSchemas: {
1378
1419
  displayName: string;
1379
1420
  externalPlayerUrl: string | null;
1380
1421
  rtspUrl: string;
1422
+ recordingCapable: boolean;
1423
+ lensType: "flat" | "fisheye";
1424
+ mountPoint: "wall" | "ceiling" | "floor";
1425
+ webrtcPlaybackSource: ({
1426
+ kind: string;
1427
+ } & Record<string, unknown>) | null;
1381
1428
  }[];
1382
- lensType: "flat" | "fisheye";
1383
- mountPoint: "wall" | "ceiling" | "floor";
1384
1429
  ptzCapable: boolean;
1385
1430
  ptzPanSpeed: number;
1386
1431
  ptzTiltSpeed: number;
@@ -1391,11 +1436,8 @@ export declare const commandSchemas: {
1391
1436
  tiltMax: number;
1392
1437
  zoomMin: number;
1393
1438
  zoomMax: number;
1394
- recordingCapable: boolean;
1395
- webrtcPlaybackSource: ({
1396
- kind: string;
1397
- } & Record<string, unknown>) | null;
1398
1439
  defaultStreamId: string;
1440
+ streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
1399
1441
  } | {
1400
1442
  type: "door";
1401
1443
  canReportOpenState: boolean;
@@ -1444,6 +1486,7 @@ export declare const commandSchemas: {
1444
1486
  } | {
1445
1487
  type: "system";
1446
1488
  }));
1489
+ streamId: string;
1447
1490
  requestId: string;
1448
1491
  timeFrom: number;
1449
1492
  timeTo: number;