@awarevue/api-types 2.0.50 → 2.0.51
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 +56 -0
- package/dist/api/commands/all.d.ts +36 -0
- package/dist/api/commands/nvr-exporter.d.ts +36 -0
- package/dist/api/commands/server.d.ts +36 -0
- package/dist/api/queries/all.d.ts +42 -0
- package/dist/api/queries/nvr-recorder.d.ts +84 -0
- package/dist/objects/device/any-device.d.ts +30 -0
- package/dist/objects/device/camera.d.ts +16 -0
- package/dist/objects/device/camera.js +2 -0
- package/dist/objects/device/device-import.d.ts +52 -0
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +20 -0
- package/package.json +1 -1
|
@@ -442,6 +442,8 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
442
442
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
443
443
|
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
444
444
|
recordingCapable: z.ZodBoolean;
|
|
445
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
446
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
445
447
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
446
448
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
447
449
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
@@ -453,6 +455,8 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
453
455
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
454
456
|
}, "strip", z.ZodTypeAny, {
|
|
455
457
|
id: string;
|
|
458
|
+
height: number | null;
|
|
459
|
+
width: number | null;
|
|
456
460
|
displayName: string;
|
|
457
461
|
externalPlayerUrl: string | null;
|
|
458
462
|
rtspUrl: string | null;
|
|
@@ -464,6 +468,8 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
464
468
|
} & Record<string, unknown>) | null;
|
|
465
469
|
}, {
|
|
466
470
|
id: string;
|
|
471
|
+
height: number | null;
|
|
472
|
+
width: number | null;
|
|
467
473
|
displayName: string;
|
|
468
474
|
externalPlayerUrl: string | null;
|
|
469
475
|
rtspUrl: string | null;
|
|
@@ -482,6 +488,8 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
482
488
|
type: "camera";
|
|
483
489
|
streams: {
|
|
484
490
|
id: string;
|
|
491
|
+
height: number | null;
|
|
492
|
+
width: number | null;
|
|
485
493
|
displayName: string;
|
|
486
494
|
externalPlayerUrl: string | null;
|
|
487
495
|
rtspUrl: string | null;
|
|
@@ -508,6 +516,8 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
508
516
|
type: "camera";
|
|
509
517
|
streams: {
|
|
510
518
|
id: string;
|
|
519
|
+
height: number | null;
|
|
520
|
+
width: number | null;
|
|
511
521
|
displayName: string;
|
|
512
522
|
externalPlayerUrl: string | null;
|
|
513
523
|
rtspUrl: string | null;
|
|
@@ -704,6 +714,8 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
704
714
|
type: "camera";
|
|
705
715
|
streams: {
|
|
706
716
|
id: string;
|
|
717
|
+
height: number | null;
|
|
718
|
+
width: number | null;
|
|
707
719
|
displayName: string;
|
|
708
720
|
externalPlayerUrl: string | null;
|
|
709
721
|
rtspUrl: string | null;
|
|
@@ -801,6 +813,8 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
801
813
|
type: "camera";
|
|
802
814
|
streams: {
|
|
803
815
|
id: string;
|
|
816
|
+
height: number | null;
|
|
817
|
+
width: number | null;
|
|
804
818
|
displayName: string;
|
|
805
819
|
externalPlayerUrl: string | null;
|
|
806
820
|
rtspUrl: string | null;
|
|
@@ -973,6 +987,8 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
973
987
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
974
988
|
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
975
989
|
recordingCapable: z.ZodBoolean;
|
|
990
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
991
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
976
992
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
977
993
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
978
994
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
@@ -984,6 +1000,8 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
984
1000
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
985
1001
|
}, "strip", z.ZodTypeAny, {
|
|
986
1002
|
id: string;
|
|
1003
|
+
height: number | null;
|
|
1004
|
+
width: number | null;
|
|
987
1005
|
displayName: string;
|
|
988
1006
|
externalPlayerUrl: string | null;
|
|
989
1007
|
rtspUrl: string | null;
|
|
@@ -995,6 +1013,8 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
995
1013
|
} & Record<string, unknown>) | null;
|
|
996
1014
|
}, {
|
|
997
1015
|
id: string;
|
|
1016
|
+
height: number | null;
|
|
1017
|
+
width: number | null;
|
|
998
1018
|
displayName: string;
|
|
999
1019
|
externalPlayerUrl: string | null;
|
|
1000
1020
|
rtspUrl: string | null;
|
|
@@ -1013,6 +1033,8 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1013
1033
|
type: "camera";
|
|
1014
1034
|
streams: {
|
|
1015
1035
|
id: string;
|
|
1036
|
+
height: number | null;
|
|
1037
|
+
width: number | null;
|
|
1016
1038
|
displayName: string;
|
|
1017
1039
|
externalPlayerUrl: string | null;
|
|
1018
1040
|
rtspUrl: string | null;
|
|
@@ -1039,6 +1061,8 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1039
1061
|
type: "camera";
|
|
1040
1062
|
streams: {
|
|
1041
1063
|
id: string;
|
|
1064
|
+
height: number | null;
|
|
1065
|
+
width: number | null;
|
|
1042
1066
|
displayName: string;
|
|
1043
1067
|
externalPlayerUrl: string | null;
|
|
1044
1068
|
rtspUrl: string | null;
|
|
@@ -1232,6 +1256,8 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1232
1256
|
type: "camera";
|
|
1233
1257
|
streams: {
|
|
1234
1258
|
id: string;
|
|
1259
|
+
height: number | null;
|
|
1260
|
+
width: number | null;
|
|
1235
1261
|
displayName: string;
|
|
1236
1262
|
externalPlayerUrl: string | null;
|
|
1237
1263
|
rtspUrl: string | null;
|
|
@@ -1328,6 +1354,8 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1328
1354
|
type: "camera";
|
|
1329
1355
|
streams: {
|
|
1330
1356
|
id: string;
|
|
1357
|
+
height: number | null;
|
|
1358
|
+
width: number | null;
|
|
1331
1359
|
displayName: string;
|
|
1332
1360
|
externalPlayerUrl: string | null;
|
|
1333
1361
|
rtspUrl: string | null;
|
|
@@ -1506,6 +1534,8 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1506
1534
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
1507
1535
|
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
1508
1536
|
recordingCapable: z.ZodBoolean;
|
|
1537
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
1538
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
1509
1539
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
1510
1540
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
1511
1541
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
@@ -1517,6 +1547,8 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1517
1547
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1518
1548
|
}, "strip", z.ZodTypeAny, {
|
|
1519
1549
|
id: string;
|
|
1550
|
+
height: number | null;
|
|
1551
|
+
width: number | null;
|
|
1520
1552
|
displayName: string;
|
|
1521
1553
|
externalPlayerUrl: string | null;
|
|
1522
1554
|
rtspUrl: string | null;
|
|
@@ -1528,6 +1560,8 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1528
1560
|
} & Record<string, unknown>) | null;
|
|
1529
1561
|
}, {
|
|
1530
1562
|
id: string;
|
|
1563
|
+
height: number | null;
|
|
1564
|
+
width: number | null;
|
|
1531
1565
|
displayName: string;
|
|
1532
1566
|
externalPlayerUrl: string | null;
|
|
1533
1567
|
rtspUrl: string | null;
|
|
@@ -1546,6 +1580,8 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1546
1580
|
type: "camera";
|
|
1547
1581
|
streams: {
|
|
1548
1582
|
id: string;
|
|
1583
|
+
height: number | null;
|
|
1584
|
+
width: number | null;
|
|
1549
1585
|
displayName: string;
|
|
1550
1586
|
externalPlayerUrl: string | null;
|
|
1551
1587
|
rtspUrl: string | null;
|
|
@@ -1572,6 +1608,8 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1572
1608
|
type: "camera";
|
|
1573
1609
|
streams: {
|
|
1574
1610
|
id: string;
|
|
1611
|
+
height: number | null;
|
|
1612
|
+
width: number | null;
|
|
1575
1613
|
displayName: string;
|
|
1576
1614
|
externalPlayerUrl: string | null;
|
|
1577
1615
|
rtspUrl: string | null;
|
|
@@ -1767,6 +1805,8 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1767
1805
|
type: "camera";
|
|
1768
1806
|
streams: {
|
|
1769
1807
|
id: string;
|
|
1808
|
+
height: number | null;
|
|
1809
|
+
width: number | null;
|
|
1770
1810
|
displayName: string;
|
|
1771
1811
|
externalPlayerUrl: string | null;
|
|
1772
1812
|
rtspUrl: string | null;
|
|
@@ -1864,6 +1904,8 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1864
1904
|
type: "camera";
|
|
1865
1905
|
streams: {
|
|
1866
1906
|
id: string;
|
|
1907
|
+
height: number | null;
|
|
1908
|
+
width: number | null;
|
|
1867
1909
|
displayName: string;
|
|
1868
1910
|
externalPlayerUrl: string | null;
|
|
1869
1911
|
rtspUrl: string | null;
|
|
@@ -2066,6 +2108,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2066
2108
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
2067
2109
|
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
2068
2110
|
recordingCapable: z.ZodBoolean;
|
|
2111
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
2112
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
2069
2113
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
2070
2114
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
2071
2115
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
@@ -2077,6 +2121,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2077
2121
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2078
2122
|
}, "strip", z.ZodTypeAny, {
|
|
2079
2123
|
id: string;
|
|
2124
|
+
height: number | null;
|
|
2125
|
+
width: number | null;
|
|
2080
2126
|
displayName: string;
|
|
2081
2127
|
externalPlayerUrl: string | null;
|
|
2082
2128
|
rtspUrl: string | null;
|
|
@@ -2088,6 +2134,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2088
2134
|
} & Record<string, unknown>) | null;
|
|
2089
2135
|
}, {
|
|
2090
2136
|
id: string;
|
|
2137
|
+
height: number | null;
|
|
2138
|
+
width: number | null;
|
|
2091
2139
|
displayName: string;
|
|
2092
2140
|
externalPlayerUrl: string | null;
|
|
2093
2141
|
rtspUrl: string | null;
|
|
@@ -2106,6 +2154,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2106
2154
|
type: "camera";
|
|
2107
2155
|
streams: {
|
|
2108
2156
|
id: string;
|
|
2157
|
+
height: number | null;
|
|
2158
|
+
width: number | null;
|
|
2109
2159
|
displayName: string;
|
|
2110
2160
|
externalPlayerUrl: string | null;
|
|
2111
2161
|
rtspUrl: string | null;
|
|
@@ -2132,6 +2182,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2132
2182
|
type: "camera";
|
|
2133
2183
|
streams: {
|
|
2134
2184
|
id: string;
|
|
2185
|
+
height: number | null;
|
|
2186
|
+
width: number | null;
|
|
2135
2187
|
displayName: string;
|
|
2136
2188
|
externalPlayerUrl: string | null;
|
|
2137
2189
|
rtspUrl: string | null;
|
|
@@ -2335,6 +2387,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2335
2387
|
type: "camera";
|
|
2336
2388
|
streams: {
|
|
2337
2389
|
id: string;
|
|
2390
|
+
height: number | null;
|
|
2391
|
+
width: number | null;
|
|
2338
2392
|
displayName: string;
|
|
2339
2393
|
externalPlayerUrl: string | null;
|
|
2340
2394
|
rtspUrl: string | null;
|
|
@@ -2430,6 +2484,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2430
2484
|
type: "camera";
|
|
2431
2485
|
streams: {
|
|
2432
2486
|
id: string;
|
|
2487
|
+
height: number | null;
|
|
2488
|
+
width: number | null;
|
|
2433
2489
|
displayName: string;
|
|
2434
2490
|
externalPlayerUrl: string | null;
|
|
2435
2491
|
rtspUrl: string | null;
|
|
@@ -126,6 +126,8 @@ export declare const commandSchemas: {
|
|
|
126
126
|
externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
127
127
|
rtspUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
128
128
|
recordingCapable: import("zod").ZodBoolean;
|
|
129
|
+
width: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
130
|
+
height: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
129
131
|
lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
|
|
130
132
|
mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
|
|
131
133
|
webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
@@ -137,6 +139,8 @@ export declare const commandSchemas: {
|
|
|
137
139
|
}>, import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
138
140
|
}, "strip", import("zod").ZodTypeAny, {
|
|
139
141
|
id: string;
|
|
142
|
+
height: number | null;
|
|
143
|
+
width: number | null;
|
|
140
144
|
displayName: string;
|
|
141
145
|
externalPlayerUrl: string | null;
|
|
142
146
|
rtspUrl: string | null;
|
|
@@ -148,6 +152,8 @@ export declare const commandSchemas: {
|
|
|
148
152
|
} & Record<string, unknown>) | null;
|
|
149
153
|
}, {
|
|
150
154
|
id: string;
|
|
155
|
+
height: number | null;
|
|
156
|
+
width: number | null;
|
|
151
157
|
displayName: string;
|
|
152
158
|
externalPlayerUrl: string | null;
|
|
153
159
|
rtspUrl: string | null;
|
|
@@ -166,6 +172,8 @@ export declare const commandSchemas: {
|
|
|
166
172
|
type: "camera";
|
|
167
173
|
streams: {
|
|
168
174
|
id: string;
|
|
175
|
+
height: number | null;
|
|
176
|
+
width: number | null;
|
|
169
177
|
displayName: string;
|
|
170
178
|
externalPlayerUrl: string | null;
|
|
171
179
|
rtspUrl: string | null;
|
|
@@ -192,6 +200,8 @@ export declare const commandSchemas: {
|
|
|
192
200
|
type: "camera";
|
|
193
201
|
streams: {
|
|
194
202
|
id: string;
|
|
203
|
+
height: number | null;
|
|
204
|
+
width: number | null;
|
|
195
205
|
displayName: string;
|
|
196
206
|
externalPlayerUrl: string | null;
|
|
197
207
|
rtspUrl: string | null;
|
|
@@ -389,6 +399,8 @@ export declare const commandSchemas: {
|
|
|
389
399
|
type: "camera";
|
|
390
400
|
streams: {
|
|
391
401
|
id: string;
|
|
402
|
+
height: number | null;
|
|
403
|
+
width: number | null;
|
|
392
404
|
displayName: string;
|
|
393
405
|
externalPlayerUrl: string | null;
|
|
394
406
|
rtspUrl: string | null;
|
|
@@ -487,6 +499,8 @@ export declare const commandSchemas: {
|
|
|
487
499
|
type: "camera";
|
|
488
500
|
streams: {
|
|
489
501
|
id: string;
|
|
502
|
+
height: number | null;
|
|
503
|
+
width: number | null;
|
|
490
504
|
displayName: string;
|
|
491
505
|
externalPlayerUrl: string | null;
|
|
492
506
|
rtspUrl: string | null;
|
|
@@ -587,6 +601,8 @@ export declare const commandSchemas: {
|
|
|
587
601
|
type: "camera";
|
|
588
602
|
streams: {
|
|
589
603
|
id: string;
|
|
604
|
+
height: number | null;
|
|
605
|
+
width: number | null;
|
|
590
606
|
displayName: string;
|
|
591
607
|
externalPlayerUrl: string | null;
|
|
592
608
|
rtspUrl: string | null;
|
|
@@ -688,6 +704,8 @@ export declare const commandSchemas: {
|
|
|
688
704
|
type: "camera";
|
|
689
705
|
streams: {
|
|
690
706
|
id: string;
|
|
707
|
+
height: number | null;
|
|
708
|
+
width: number | null;
|
|
691
709
|
displayName: string;
|
|
692
710
|
externalPlayerUrl: string | null;
|
|
693
711
|
rtspUrl: string | null;
|
|
@@ -855,6 +873,8 @@ export declare const commandSchemas: {
|
|
|
855
873
|
externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
856
874
|
rtspUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
857
875
|
recordingCapable: import("zod").ZodBoolean;
|
|
876
|
+
width: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
877
|
+
height: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
858
878
|
lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
|
|
859
879
|
mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
|
|
860
880
|
webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
@@ -866,6 +886,8 @@ export declare const commandSchemas: {
|
|
|
866
886
|
}>, import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
867
887
|
}, "strip", import("zod").ZodTypeAny, {
|
|
868
888
|
id: string;
|
|
889
|
+
height: number | null;
|
|
890
|
+
width: number | null;
|
|
869
891
|
displayName: string;
|
|
870
892
|
externalPlayerUrl: string | null;
|
|
871
893
|
rtspUrl: string | null;
|
|
@@ -877,6 +899,8 @@ export declare const commandSchemas: {
|
|
|
877
899
|
} & Record<string, unknown>) | null;
|
|
878
900
|
}, {
|
|
879
901
|
id: string;
|
|
902
|
+
height: number | null;
|
|
903
|
+
width: number | null;
|
|
880
904
|
displayName: string;
|
|
881
905
|
externalPlayerUrl: string | null;
|
|
882
906
|
rtspUrl: string | null;
|
|
@@ -895,6 +919,8 @@ export declare const commandSchemas: {
|
|
|
895
919
|
type: "camera";
|
|
896
920
|
streams: {
|
|
897
921
|
id: string;
|
|
922
|
+
height: number | null;
|
|
923
|
+
width: number | null;
|
|
898
924
|
displayName: string;
|
|
899
925
|
externalPlayerUrl: string | null;
|
|
900
926
|
rtspUrl: string | null;
|
|
@@ -921,6 +947,8 @@ export declare const commandSchemas: {
|
|
|
921
947
|
type: "camera";
|
|
922
948
|
streams: {
|
|
923
949
|
id: string;
|
|
950
|
+
height: number | null;
|
|
951
|
+
width: number | null;
|
|
924
952
|
displayName: string;
|
|
925
953
|
externalPlayerUrl: string | null;
|
|
926
954
|
rtspUrl: string | null;
|
|
@@ -1117,6 +1145,8 @@ export declare const commandSchemas: {
|
|
|
1117
1145
|
type: "camera";
|
|
1118
1146
|
streams: {
|
|
1119
1147
|
id: string;
|
|
1148
|
+
height: number | null;
|
|
1149
|
+
width: number | null;
|
|
1120
1150
|
displayName: string;
|
|
1121
1151
|
externalPlayerUrl: string | null;
|
|
1122
1152
|
rtspUrl: string | null;
|
|
@@ -1215,6 +1245,8 @@ export declare const commandSchemas: {
|
|
|
1215
1245
|
type: "camera";
|
|
1216
1246
|
streams: {
|
|
1217
1247
|
id: string;
|
|
1248
|
+
height: number | null;
|
|
1249
|
+
width: number | null;
|
|
1218
1250
|
displayName: string;
|
|
1219
1251
|
externalPlayerUrl: string | null;
|
|
1220
1252
|
rtspUrl: string | null;
|
|
@@ -1315,6 +1347,8 @@ export declare const commandSchemas: {
|
|
|
1315
1347
|
type: "camera";
|
|
1316
1348
|
streams: {
|
|
1317
1349
|
id: string;
|
|
1350
|
+
height: number | null;
|
|
1351
|
+
width: number | null;
|
|
1318
1352
|
displayName: string;
|
|
1319
1353
|
externalPlayerUrl: string | null;
|
|
1320
1354
|
rtspUrl: string | null;
|
|
@@ -1416,6 +1450,8 @@ export declare const commandSchemas: {
|
|
|
1416
1450
|
type: "camera";
|
|
1417
1451
|
streams: {
|
|
1418
1452
|
id: string;
|
|
1453
|
+
height: number | null;
|
|
1454
|
+
width: number | null;
|
|
1419
1455
|
displayName: string;
|
|
1420
1456
|
externalPlayerUrl: string | null;
|
|
1421
1457
|
rtspUrl: string | null;
|
|
@@ -89,6 +89,8 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
89
89
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
90
90
|
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
91
91
|
recordingCapable: z.ZodBoolean;
|
|
92
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
93
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
92
94
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
93
95
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
94
96
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
@@ -100,6 +102,8 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
100
102
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
101
103
|
}, "strip", z.ZodTypeAny, {
|
|
102
104
|
id: string;
|
|
105
|
+
height: number | null;
|
|
106
|
+
width: number | null;
|
|
103
107
|
displayName: string;
|
|
104
108
|
externalPlayerUrl: string | null;
|
|
105
109
|
rtspUrl: string | null;
|
|
@@ -111,6 +115,8 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
111
115
|
} & Record<string, unknown>) | null;
|
|
112
116
|
}, {
|
|
113
117
|
id: string;
|
|
118
|
+
height: number | null;
|
|
119
|
+
width: number | null;
|
|
114
120
|
displayName: string;
|
|
115
121
|
externalPlayerUrl: string | null;
|
|
116
122
|
rtspUrl: string | null;
|
|
@@ -129,6 +135,8 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
129
135
|
type: "camera";
|
|
130
136
|
streams: {
|
|
131
137
|
id: string;
|
|
138
|
+
height: number | null;
|
|
139
|
+
width: number | null;
|
|
132
140
|
displayName: string;
|
|
133
141
|
externalPlayerUrl: string | null;
|
|
134
142
|
rtspUrl: string | null;
|
|
@@ -155,6 +163,8 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
155
163
|
type: "camera";
|
|
156
164
|
streams: {
|
|
157
165
|
id: string;
|
|
166
|
+
height: number | null;
|
|
167
|
+
width: number | null;
|
|
158
168
|
displayName: string;
|
|
159
169
|
externalPlayerUrl: string | null;
|
|
160
170
|
rtspUrl: string | null;
|
|
@@ -351,6 +361,8 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
351
361
|
type: "camera";
|
|
352
362
|
streams: {
|
|
353
363
|
id: string;
|
|
364
|
+
height: number | null;
|
|
365
|
+
width: number | null;
|
|
354
366
|
displayName: string;
|
|
355
367
|
externalPlayerUrl: string | null;
|
|
356
368
|
rtspUrl: string | null;
|
|
@@ -449,6 +461,8 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
449
461
|
type: "camera";
|
|
450
462
|
streams: {
|
|
451
463
|
id: string;
|
|
464
|
+
height: number | null;
|
|
465
|
+
width: number | null;
|
|
452
466
|
displayName: string;
|
|
453
467
|
externalPlayerUrl: string | null;
|
|
454
468
|
rtspUrl: string | null;
|
|
@@ -549,6 +563,8 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
549
563
|
type: "camera";
|
|
550
564
|
streams: {
|
|
551
565
|
id: string;
|
|
566
|
+
height: number | null;
|
|
567
|
+
width: number | null;
|
|
552
568
|
displayName: string;
|
|
553
569
|
externalPlayerUrl: string | null;
|
|
554
570
|
rtspUrl: string | null;
|
|
@@ -650,6 +666,8 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
650
666
|
type: "camera";
|
|
651
667
|
streams: {
|
|
652
668
|
id: string;
|
|
669
|
+
height: number | null;
|
|
670
|
+
width: number | null;
|
|
653
671
|
displayName: string;
|
|
654
672
|
externalPlayerUrl: string | null;
|
|
655
673
|
rtspUrl: string | null;
|
|
@@ -841,6 +859,8 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
841
859
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
842
860
|
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
843
861
|
recordingCapable: z.ZodBoolean;
|
|
862
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
863
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
844
864
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
845
865
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
846
866
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
@@ -852,6 +872,8 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
852
872
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
853
873
|
}, "strip", z.ZodTypeAny, {
|
|
854
874
|
id: string;
|
|
875
|
+
height: number | null;
|
|
876
|
+
width: number | null;
|
|
855
877
|
displayName: string;
|
|
856
878
|
externalPlayerUrl: string | null;
|
|
857
879
|
rtspUrl: string | null;
|
|
@@ -863,6 +885,8 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
863
885
|
} & Record<string, unknown>) | null;
|
|
864
886
|
}, {
|
|
865
887
|
id: string;
|
|
888
|
+
height: number | null;
|
|
889
|
+
width: number | null;
|
|
866
890
|
displayName: string;
|
|
867
891
|
externalPlayerUrl: string | null;
|
|
868
892
|
rtspUrl: string | null;
|
|
@@ -881,6 +905,8 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
881
905
|
type: "camera";
|
|
882
906
|
streams: {
|
|
883
907
|
id: string;
|
|
908
|
+
height: number | null;
|
|
909
|
+
width: number | null;
|
|
884
910
|
displayName: string;
|
|
885
911
|
externalPlayerUrl: string | null;
|
|
886
912
|
rtspUrl: string | null;
|
|
@@ -907,6 +933,8 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
907
933
|
type: "camera";
|
|
908
934
|
streams: {
|
|
909
935
|
id: string;
|
|
936
|
+
height: number | null;
|
|
937
|
+
width: number | null;
|
|
910
938
|
displayName: string;
|
|
911
939
|
externalPlayerUrl: string | null;
|
|
912
940
|
rtspUrl: string | null;
|
|
@@ -1103,6 +1131,8 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
1103
1131
|
type: "camera";
|
|
1104
1132
|
streams: {
|
|
1105
1133
|
id: string;
|
|
1134
|
+
height: number | null;
|
|
1135
|
+
width: number | null;
|
|
1106
1136
|
displayName: string;
|
|
1107
1137
|
externalPlayerUrl: string | null;
|
|
1108
1138
|
rtspUrl: string | null;
|
|
@@ -1201,6 +1231,8 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
1201
1231
|
type: "camera";
|
|
1202
1232
|
streams: {
|
|
1203
1233
|
id: string;
|
|
1234
|
+
height: number | null;
|
|
1235
|
+
width: number | null;
|
|
1204
1236
|
displayName: string;
|
|
1205
1237
|
externalPlayerUrl: string | null;
|
|
1206
1238
|
rtspUrl: string | null;
|
|
@@ -1301,6 +1333,8 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
1301
1333
|
type: "camera";
|
|
1302
1334
|
streams: {
|
|
1303
1335
|
id: string;
|
|
1336
|
+
height: number | null;
|
|
1337
|
+
width: number | null;
|
|
1304
1338
|
displayName: string;
|
|
1305
1339
|
externalPlayerUrl: string | null;
|
|
1306
1340
|
rtspUrl: string | null;
|
|
@@ -1402,6 +1436,8 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
1402
1436
|
type: "camera";
|
|
1403
1437
|
streams: {
|
|
1404
1438
|
id: string;
|
|
1439
|
+
height: number | null;
|
|
1440
|
+
width: number | null;
|
|
1405
1441
|
displayName: string;
|
|
1406
1442
|
externalPlayerUrl: string | null;
|
|
1407
1443
|
rtspUrl: string | null;
|