@awarevue/api-types 2.0.58 → 2.0.59
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 +28 -0
- package/dist/api/commands/all.d.ts +54 -0
- package/dist/api/commands/nvr-exporter.d.ts +18 -0
- package/dist/api/commands/nvr-recorder.d.ts +72 -0
- package/dist/api/commands/server.d.ts +18 -0
- package/dist/api/queries/all.d.ts +21 -0
- package/dist/api/queries/nvr-recorder.d.ts +42 -0
- package/dist/objects/device/any-device.d.ts +20 -0
- package/dist/objects/device/camera.d.ts +8 -0
- package/dist/objects/device/camera.js +1 -0
- package/dist/objects/device/device-import.d.ts +26 -0
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +10 -0
- package/package.json +1 -1
|
@@ -445,6 +445,7 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
445
445
|
height: z.ZodNullable<z.ZodNumber>;
|
|
446
446
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
447
447
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
448
|
+
recordingCapable: z.ZodBoolean;
|
|
448
449
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
449
450
|
kind: z.ZodString;
|
|
450
451
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -461,6 +462,7 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
461
462
|
height: number | null;
|
|
462
463
|
lensType: "flat" | "fisheye";
|
|
463
464
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
465
|
+
recordingCapable: boolean;
|
|
464
466
|
webrtcPlaybackSource: ({
|
|
465
467
|
kind: string;
|
|
466
468
|
} & Record<string, unknown>) | null;
|
|
@@ -473,6 +475,7 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
473
475
|
height: number | null;
|
|
474
476
|
lensType: "flat" | "fisheye";
|
|
475
477
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
478
|
+
recordingCapable: boolean;
|
|
476
479
|
webrtcPlaybackSource: ({
|
|
477
480
|
kind: string;
|
|
478
481
|
} & Record<string, unknown>) | null;
|
|
@@ -502,6 +505,7 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
502
505
|
height: number | null;
|
|
503
506
|
lensType: "flat" | "fisheye";
|
|
504
507
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
508
|
+
recordingCapable: boolean;
|
|
505
509
|
webrtcPlaybackSource: ({
|
|
506
510
|
kind: string;
|
|
507
511
|
} & Record<string, unknown>) | null;
|
|
@@ -529,6 +533,7 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
529
533
|
height: number | null;
|
|
530
534
|
lensType: "flat" | "fisheye";
|
|
531
535
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
536
|
+
recordingCapable: boolean;
|
|
532
537
|
webrtcPlaybackSource: ({
|
|
533
538
|
kind: string;
|
|
534
539
|
} & Record<string, unknown>) | null;
|
|
@@ -726,6 +731,7 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
726
731
|
height: number | null;
|
|
727
732
|
lensType: "flat" | "fisheye";
|
|
728
733
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
734
|
+
recordingCapable: boolean;
|
|
729
735
|
webrtcPlaybackSource: ({
|
|
730
736
|
kind: string;
|
|
731
737
|
} & Record<string, unknown>) | null;
|
|
@@ -824,6 +830,7 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
824
830
|
height: number | null;
|
|
825
831
|
lensType: "flat" | "fisheye";
|
|
826
832
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
833
|
+
recordingCapable: boolean;
|
|
827
834
|
webrtcPlaybackSource: ({
|
|
828
835
|
kind: string;
|
|
829
836
|
} & Record<string, unknown>) | null;
|
|
@@ -983,6 +990,7 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
983
990
|
height: z.ZodNullable<z.ZodNumber>;
|
|
984
991
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
985
992
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
993
|
+
recordingCapable: z.ZodBoolean;
|
|
986
994
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
987
995
|
kind: z.ZodString;
|
|
988
996
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -999,6 +1007,7 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
999
1007
|
height: number | null;
|
|
1000
1008
|
lensType: "flat" | "fisheye";
|
|
1001
1009
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1010
|
+
recordingCapable: boolean;
|
|
1002
1011
|
webrtcPlaybackSource: ({
|
|
1003
1012
|
kind: string;
|
|
1004
1013
|
} & Record<string, unknown>) | null;
|
|
@@ -1011,6 +1020,7 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1011
1020
|
height: number | null;
|
|
1012
1021
|
lensType: "flat" | "fisheye";
|
|
1013
1022
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1023
|
+
recordingCapable: boolean;
|
|
1014
1024
|
webrtcPlaybackSource: ({
|
|
1015
1025
|
kind: string;
|
|
1016
1026
|
} & Record<string, unknown>) | null;
|
|
@@ -1040,6 +1050,7 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1040
1050
|
height: number | null;
|
|
1041
1051
|
lensType: "flat" | "fisheye";
|
|
1042
1052
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1053
|
+
recordingCapable: boolean;
|
|
1043
1054
|
webrtcPlaybackSource: ({
|
|
1044
1055
|
kind: string;
|
|
1045
1056
|
} & Record<string, unknown>) | null;
|
|
@@ -1067,6 +1078,7 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1067
1078
|
height: number | null;
|
|
1068
1079
|
lensType: "flat" | "fisheye";
|
|
1069
1080
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1081
|
+
recordingCapable: boolean;
|
|
1070
1082
|
webrtcPlaybackSource: ({
|
|
1071
1083
|
kind: string;
|
|
1072
1084
|
} & Record<string, unknown>) | null;
|
|
@@ -1261,6 +1273,7 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1261
1273
|
height: number | null;
|
|
1262
1274
|
lensType: "flat" | "fisheye";
|
|
1263
1275
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1276
|
+
recordingCapable: boolean;
|
|
1264
1277
|
webrtcPlaybackSource: ({
|
|
1265
1278
|
kind: string;
|
|
1266
1279
|
} & Record<string, unknown>) | null;
|
|
@@ -1358,6 +1371,7 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1358
1371
|
height: number | null;
|
|
1359
1372
|
lensType: "flat" | "fisheye";
|
|
1360
1373
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1374
|
+
recordingCapable: boolean;
|
|
1361
1375
|
webrtcPlaybackSource: ({
|
|
1362
1376
|
kind: string;
|
|
1363
1377
|
} & Record<string, unknown>) | null;
|
|
@@ -1523,6 +1537,7 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1523
1537
|
height: z.ZodNullable<z.ZodNumber>;
|
|
1524
1538
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
1525
1539
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
1540
|
+
recordingCapable: z.ZodBoolean;
|
|
1526
1541
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
1527
1542
|
kind: z.ZodString;
|
|
1528
1543
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1539,6 +1554,7 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1539
1554
|
height: number | null;
|
|
1540
1555
|
lensType: "flat" | "fisheye";
|
|
1541
1556
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1557
|
+
recordingCapable: boolean;
|
|
1542
1558
|
webrtcPlaybackSource: ({
|
|
1543
1559
|
kind: string;
|
|
1544
1560
|
} & Record<string, unknown>) | null;
|
|
@@ -1551,6 +1567,7 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1551
1567
|
height: number | null;
|
|
1552
1568
|
lensType: "flat" | "fisheye";
|
|
1553
1569
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1570
|
+
recordingCapable: boolean;
|
|
1554
1571
|
webrtcPlaybackSource: ({
|
|
1555
1572
|
kind: string;
|
|
1556
1573
|
} & Record<string, unknown>) | null;
|
|
@@ -1580,6 +1597,7 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1580
1597
|
height: number | null;
|
|
1581
1598
|
lensType: "flat" | "fisheye";
|
|
1582
1599
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1600
|
+
recordingCapable: boolean;
|
|
1583
1601
|
webrtcPlaybackSource: ({
|
|
1584
1602
|
kind: string;
|
|
1585
1603
|
} & Record<string, unknown>) | null;
|
|
@@ -1607,6 +1625,7 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1607
1625
|
height: number | null;
|
|
1608
1626
|
lensType: "flat" | "fisheye";
|
|
1609
1627
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1628
|
+
recordingCapable: boolean;
|
|
1610
1629
|
webrtcPlaybackSource: ({
|
|
1611
1630
|
kind: string;
|
|
1612
1631
|
} & Record<string, unknown>) | null;
|
|
@@ -1802,6 +1821,7 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1802
1821
|
height: number | null;
|
|
1803
1822
|
lensType: "flat" | "fisheye";
|
|
1804
1823
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1824
|
+
recordingCapable: boolean;
|
|
1805
1825
|
webrtcPlaybackSource: ({
|
|
1806
1826
|
kind: string;
|
|
1807
1827
|
} & Record<string, unknown>) | null;
|
|
@@ -1900,6 +1920,7 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1900
1920
|
height: number | null;
|
|
1901
1921
|
lensType: "flat" | "fisheye";
|
|
1902
1922
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1923
|
+
recordingCapable: boolean;
|
|
1903
1924
|
webrtcPlaybackSource: ({
|
|
1904
1925
|
kind: string;
|
|
1905
1926
|
} & Record<string, unknown>) | null;
|
|
@@ -2090,6 +2111,7 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2090
2111
|
height: z.ZodNullable<z.ZodNumber>;
|
|
2091
2112
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
2092
2113
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
2114
|
+
recordingCapable: z.ZodBoolean;
|
|
2093
2115
|
webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
|
|
2094
2116
|
kind: z.ZodString;
|
|
2095
2117
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2106,6 +2128,7 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2106
2128
|
height: number | null;
|
|
2107
2129
|
lensType: "flat" | "fisheye";
|
|
2108
2130
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2131
|
+
recordingCapable: boolean;
|
|
2109
2132
|
webrtcPlaybackSource: ({
|
|
2110
2133
|
kind: string;
|
|
2111
2134
|
} & Record<string, unknown>) | null;
|
|
@@ -2118,6 +2141,7 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2118
2141
|
height: number | null;
|
|
2119
2142
|
lensType: "flat" | "fisheye";
|
|
2120
2143
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2144
|
+
recordingCapable: boolean;
|
|
2121
2145
|
webrtcPlaybackSource: ({
|
|
2122
2146
|
kind: string;
|
|
2123
2147
|
} & Record<string, unknown>) | null;
|
|
@@ -2147,6 +2171,7 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2147
2171
|
height: number | null;
|
|
2148
2172
|
lensType: "flat" | "fisheye";
|
|
2149
2173
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2174
|
+
recordingCapable: boolean;
|
|
2150
2175
|
webrtcPlaybackSource: ({
|
|
2151
2176
|
kind: string;
|
|
2152
2177
|
} & Record<string, unknown>) | null;
|
|
@@ -2174,6 +2199,7 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2174
2199
|
height: number | null;
|
|
2175
2200
|
lensType: "flat" | "fisheye";
|
|
2176
2201
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2202
|
+
recordingCapable: boolean;
|
|
2177
2203
|
webrtcPlaybackSource: ({
|
|
2178
2204
|
kind: string;
|
|
2179
2205
|
} & Record<string, unknown>) | null;
|
|
@@ -2378,6 +2404,7 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2378
2404
|
height: number | null;
|
|
2379
2405
|
lensType: "flat" | "fisheye";
|
|
2380
2406
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2407
|
+
recordingCapable: boolean;
|
|
2381
2408
|
webrtcPlaybackSource: ({
|
|
2382
2409
|
kind: string;
|
|
2383
2410
|
} & Record<string, unknown>) | null;
|
|
@@ -2474,6 +2501,7 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
|
|
|
2474
2501
|
height: number | null;
|
|
2475
2502
|
lensType: "flat" | "fisheye";
|
|
2476
2503
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2504
|
+
recordingCapable: boolean;
|
|
2477
2505
|
webrtcPlaybackSource: ({
|
|
2478
2506
|
kind: string;
|
|
2479
2507
|
} & Record<string, unknown>) | null;
|
|
@@ -130,6 +130,7 @@ export declare const commandSchemas: {
|
|
|
130
130
|
height: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
131
131
|
lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
|
|
132
132
|
mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
|
|
133
|
+
recordingCapable: import("zod").ZodBoolean;
|
|
133
134
|
webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
134
135
|
kind: import("zod").ZodString;
|
|
135
136
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -146,6 +147,7 @@ export declare const commandSchemas: {
|
|
|
146
147
|
height: number | null;
|
|
147
148
|
lensType: "flat" | "fisheye";
|
|
148
149
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
150
|
+
recordingCapable: boolean;
|
|
149
151
|
webrtcPlaybackSource: ({
|
|
150
152
|
kind: string;
|
|
151
153
|
} & Record<string, unknown>) | null;
|
|
@@ -158,6 +160,7 @@ export declare const commandSchemas: {
|
|
|
158
160
|
height: number | null;
|
|
159
161
|
lensType: "flat" | "fisheye";
|
|
160
162
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
163
|
+
recordingCapable: boolean;
|
|
161
164
|
webrtcPlaybackSource: ({
|
|
162
165
|
kind: string;
|
|
163
166
|
} & Record<string, unknown>) | null;
|
|
@@ -187,6 +190,7 @@ export declare const commandSchemas: {
|
|
|
187
190
|
height: number | null;
|
|
188
191
|
lensType: "flat" | "fisheye";
|
|
189
192
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
193
|
+
recordingCapable: boolean;
|
|
190
194
|
webrtcPlaybackSource: ({
|
|
191
195
|
kind: string;
|
|
192
196
|
} & Record<string, unknown>) | null;
|
|
@@ -214,6 +218,7 @@ export declare const commandSchemas: {
|
|
|
214
218
|
height: number | null;
|
|
215
219
|
lensType: "flat" | "fisheye";
|
|
216
220
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
221
|
+
recordingCapable: boolean;
|
|
217
222
|
webrtcPlaybackSource: ({
|
|
218
223
|
kind: string;
|
|
219
224
|
} & Record<string, unknown>) | null;
|
|
@@ -413,6 +418,7 @@ export declare const commandSchemas: {
|
|
|
413
418
|
height: number | null;
|
|
414
419
|
lensType: "flat" | "fisheye";
|
|
415
420
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
421
|
+
recordingCapable: boolean;
|
|
416
422
|
webrtcPlaybackSource: ({
|
|
417
423
|
kind: string;
|
|
418
424
|
} & Record<string, unknown>) | null;
|
|
@@ -512,6 +518,7 @@ export declare const commandSchemas: {
|
|
|
512
518
|
height: number | null;
|
|
513
519
|
lensType: "flat" | "fisheye";
|
|
514
520
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
521
|
+
recordingCapable: boolean;
|
|
515
522
|
webrtcPlaybackSource: ({
|
|
516
523
|
kind: string;
|
|
517
524
|
} & Record<string, unknown>) | null;
|
|
@@ -613,6 +620,7 @@ export declare const commandSchemas: {
|
|
|
613
620
|
height: number | null;
|
|
614
621
|
lensType: "flat" | "fisheye";
|
|
615
622
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
623
|
+
recordingCapable: boolean;
|
|
616
624
|
webrtcPlaybackSource: ({
|
|
617
625
|
kind: string;
|
|
618
626
|
} & Record<string, unknown>) | null;
|
|
@@ -715,6 +723,7 @@ export declare const commandSchemas: {
|
|
|
715
723
|
height: number | null;
|
|
716
724
|
lensType: "flat" | "fisheye";
|
|
717
725
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
726
|
+
recordingCapable: boolean;
|
|
718
727
|
webrtcPlaybackSource: ({
|
|
719
728
|
kind: string;
|
|
720
729
|
} & Record<string, unknown>) | null;
|
|
@@ -868,6 +877,7 @@ export declare const commandSchemas: {
|
|
|
868
877
|
height: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
869
878
|
lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
|
|
870
879
|
mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
|
|
880
|
+
recordingCapable: import("zod").ZodBoolean;
|
|
871
881
|
webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
872
882
|
kind: import("zod").ZodString;
|
|
873
883
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -884,6 +894,7 @@ export declare const commandSchemas: {
|
|
|
884
894
|
height: number | null;
|
|
885
895
|
lensType: "flat" | "fisheye";
|
|
886
896
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
897
|
+
recordingCapable: boolean;
|
|
887
898
|
webrtcPlaybackSource: ({
|
|
888
899
|
kind: string;
|
|
889
900
|
} & Record<string, unknown>) | null;
|
|
@@ -896,6 +907,7 @@ export declare const commandSchemas: {
|
|
|
896
907
|
height: number | null;
|
|
897
908
|
lensType: "flat" | "fisheye";
|
|
898
909
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
910
|
+
recordingCapable: boolean;
|
|
899
911
|
webrtcPlaybackSource: ({
|
|
900
912
|
kind: string;
|
|
901
913
|
} & Record<string, unknown>) | null;
|
|
@@ -925,6 +937,7 @@ export declare const commandSchemas: {
|
|
|
925
937
|
height: number | null;
|
|
926
938
|
lensType: "flat" | "fisheye";
|
|
927
939
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
940
|
+
recordingCapable: boolean;
|
|
928
941
|
webrtcPlaybackSource: ({
|
|
929
942
|
kind: string;
|
|
930
943
|
} & Record<string, unknown>) | null;
|
|
@@ -952,6 +965,7 @@ export declare const commandSchemas: {
|
|
|
952
965
|
height: number | null;
|
|
953
966
|
lensType: "flat" | "fisheye";
|
|
954
967
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
968
|
+
recordingCapable: boolean;
|
|
955
969
|
webrtcPlaybackSource: ({
|
|
956
970
|
kind: string;
|
|
957
971
|
} & Record<string, unknown>) | null;
|
|
@@ -1149,6 +1163,7 @@ export declare const commandSchemas: {
|
|
|
1149
1163
|
height: number | null;
|
|
1150
1164
|
lensType: "flat" | "fisheye";
|
|
1151
1165
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1166
|
+
recordingCapable: boolean;
|
|
1152
1167
|
webrtcPlaybackSource: ({
|
|
1153
1168
|
kind: string;
|
|
1154
1169
|
} & Record<string, unknown>) | null;
|
|
@@ -1248,6 +1263,7 @@ export declare const commandSchemas: {
|
|
|
1248
1263
|
height: number | null;
|
|
1249
1264
|
lensType: "flat" | "fisheye";
|
|
1250
1265
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1266
|
+
recordingCapable: boolean;
|
|
1251
1267
|
webrtcPlaybackSource: ({
|
|
1252
1268
|
kind: string;
|
|
1253
1269
|
} & Record<string, unknown>) | null;
|
|
@@ -1349,6 +1365,7 @@ export declare const commandSchemas: {
|
|
|
1349
1365
|
height: number | null;
|
|
1350
1366
|
lensType: "flat" | "fisheye";
|
|
1351
1367
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1368
|
+
recordingCapable: boolean;
|
|
1352
1369
|
webrtcPlaybackSource: ({
|
|
1353
1370
|
kind: string;
|
|
1354
1371
|
} & Record<string, unknown>) | null;
|
|
@@ -1451,6 +1468,7 @@ export declare const commandSchemas: {
|
|
|
1451
1468
|
height: number | null;
|
|
1452
1469
|
lensType: "flat" | "fisheye";
|
|
1453
1470
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1471
|
+
recordingCapable: boolean;
|
|
1454
1472
|
webrtcPlaybackSource: ({
|
|
1455
1473
|
kind: string;
|
|
1456
1474
|
} & Record<string, unknown>) | null;
|
|
@@ -1624,6 +1642,7 @@ export declare const commandSchemas: {
|
|
|
1624
1642
|
height: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1625
1643
|
lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
|
|
1626
1644
|
mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
|
|
1645
|
+
recordingCapable: import("zod").ZodBoolean;
|
|
1627
1646
|
webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
1628
1647
|
kind: import("zod").ZodString;
|
|
1629
1648
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -1640,6 +1659,7 @@ export declare const commandSchemas: {
|
|
|
1640
1659
|
height: number | null;
|
|
1641
1660
|
lensType: "flat" | "fisheye";
|
|
1642
1661
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1662
|
+
recordingCapable: boolean;
|
|
1643
1663
|
webrtcPlaybackSource: ({
|
|
1644
1664
|
kind: string;
|
|
1645
1665
|
} & Record<string, unknown>) | null;
|
|
@@ -1652,6 +1672,7 @@ export declare const commandSchemas: {
|
|
|
1652
1672
|
height: number | null;
|
|
1653
1673
|
lensType: "flat" | "fisheye";
|
|
1654
1674
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1675
|
+
recordingCapable: boolean;
|
|
1655
1676
|
webrtcPlaybackSource: ({
|
|
1656
1677
|
kind: string;
|
|
1657
1678
|
} & Record<string, unknown>) | null;
|
|
@@ -1681,6 +1702,7 @@ export declare const commandSchemas: {
|
|
|
1681
1702
|
height: number | null;
|
|
1682
1703
|
lensType: "flat" | "fisheye";
|
|
1683
1704
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1705
|
+
recordingCapable: boolean;
|
|
1684
1706
|
webrtcPlaybackSource: ({
|
|
1685
1707
|
kind: string;
|
|
1686
1708
|
} & Record<string, unknown>) | null;
|
|
@@ -1708,6 +1730,7 @@ export declare const commandSchemas: {
|
|
|
1708
1730
|
height: number | null;
|
|
1709
1731
|
lensType: "flat" | "fisheye";
|
|
1710
1732
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1733
|
+
recordingCapable: boolean;
|
|
1711
1734
|
webrtcPlaybackSource: ({
|
|
1712
1735
|
kind: string;
|
|
1713
1736
|
} & Record<string, unknown>) | null;
|
|
@@ -1901,6 +1924,7 @@ export declare const commandSchemas: {
|
|
|
1901
1924
|
height: number | null;
|
|
1902
1925
|
lensType: "flat" | "fisheye";
|
|
1903
1926
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
1927
|
+
recordingCapable: boolean;
|
|
1904
1928
|
webrtcPlaybackSource: ({
|
|
1905
1929
|
kind: string;
|
|
1906
1930
|
} & Record<string, unknown>) | null;
|
|
@@ -1996,6 +2020,7 @@ export declare const commandSchemas: {
|
|
|
1996
2020
|
height: number | null;
|
|
1997
2021
|
lensType: "flat" | "fisheye";
|
|
1998
2022
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2023
|
+
recordingCapable: boolean;
|
|
1999
2024
|
webrtcPlaybackSource: ({
|
|
2000
2025
|
kind: string;
|
|
2001
2026
|
} & Record<string, unknown>) | null;
|
|
@@ -2093,6 +2118,7 @@ export declare const commandSchemas: {
|
|
|
2093
2118
|
height: number | null;
|
|
2094
2119
|
lensType: "flat" | "fisheye";
|
|
2095
2120
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2121
|
+
recordingCapable: boolean;
|
|
2096
2122
|
webrtcPlaybackSource: ({
|
|
2097
2123
|
kind: string;
|
|
2098
2124
|
} & Record<string, unknown>) | null;
|
|
@@ -2191,6 +2217,7 @@ export declare const commandSchemas: {
|
|
|
2191
2217
|
height: number | null;
|
|
2192
2218
|
lensType: "flat" | "fisheye";
|
|
2193
2219
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2220
|
+
recordingCapable: boolean;
|
|
2194
2221
|
webrtcPlaybackSource: ({
|
|
2195
2222
|
kind: string;
|
|
2196
2223
|
} & Record<string, unknown>) | null;
|
|
@@ -2341,6 +2368,7 @@ export declare const commandSchemas: {
|
|
|
2341
2368
|
height: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2342
2369
|
lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
|
|
2343
2370
|
mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
|
|
2371
|
+
recordingCapable: import("zod").ZodBoolean;
|
|
2344
2372
|
webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
2345
2373
|
kind: import("zod").ZodString;
|
|
2346
2374
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -2357,6 +2385,7 @@ export declare const commandSchemas: {
|
|
|
2357
2385
|
height: number | null;
|
|
2358
2386
|
lensType: "flat" | "fisheye";
|
|
2359
2387
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2388
|
+
recordingCapable: boolean;
|
|
2360
2389
|
webrtcPlaybackSource: ({
|
|
2361
2390
|
kind: string;
|
|
2362
2391
|
} & Record<string, unknown>) | null;
|
|
@@ -2369,6 +2398,7 @@ export declare const commandSchemas: {
|
|
|
2369
2398
|
height: number | null;
|
|
2370
2399
|
lensType: "flat" | "fisheye";
|
|
2371
2400
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2401
|
+
recordingCapable: boolean;
|
|
2372
2402
|
webrtcPlaybackSource: ({
|
|
2373
2403
|
kind: string;
|
|
2374
2404
|
} & Record<string, unknown>) | null;
|
|
@@ -2398,6 +2428,7 @@ export declare const commandSchemas: {
|
|
|
2398
2428
|
height: number | null;
|
|
2399
2429
|
lensType: "flat" | "fisheye";
|
|
2400
2430
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2431
|
+
recordingCapable: boolean;
|
|
2401
2432
|
webrtcPlaybackSource: ({
|
|
2402
2433
|
kind: string;
|
|
2403
2434
|
} & Record<string, unknown>) | null;
|
|
@@ -2425,6 +2456,7 @@ export declare const commandSchemas: {
|
|
|
2425
2456
|
height: number | null;
|
|
2426
2457
|
lensType: "flat" | "fisheye";
|
|
2427
2458
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2459
|
+
recordingCapable: boolean;
|
|
2428
2460
|
webrtcPlaybackSource: ({
|
|
2429
2461
|
kind: string;
|
|
2430
2462
|
} & Record<string, unknown>) | null;
|
|
@@ -2618,6 +2650,7 @@ export declare const commandSchemas: {
|
|
|
2618
2650
|
height: number | null;
|
|
2619
2651
|
lensType: "flat" | "fisheye";
|
|
2620
2652
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2653
|
+
recordingCapable: boolean;
|
|
2621
2654
|
webrtcPlaybackSource: ({
|
|
2622
2655
|
kind: string;
|
|
2623
2656
|
} & Record<string, unknown>) | null;
|
|
@@ -2713,6 +2746,7 @@ export declare const commandSchemas: {
|
|
|
2713
2746
|
height: number | null;
|
|
2714
2747
|
lensType: "flat" | "fisheye";
|
|
2715
2748
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2749
|
+
recordingCapable: boolean;
|
|
2716
2750
|
webrtcPlaybackSource: ({
|
|
2717
2751
|
kind: string;
|
|
2718
2752
|
} & Record<string, unknown>) | null;
|
|
@@ -2810,6 +2844,7 @@ export declare const commandSchemas: {
|
|
|
2810
2844
|
height: number | null;
|
|
2811
2845
|
lensType: "flat" | "fisheye";
|
|
2812
2846
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2847
|
+
recordingCapable: boolean;
|
|
2813
2848
|
webrtcPlaybackSource: ({
|
|
2814
2849
|
kind: string;
|
|
2815
2850
|
} & Record<string, unknown>) | null;
|
|
@@ -2908,6 +2943,7 @@ export declare const commandSchemas: {
|
|
|
2908
2943
|
height: number | null;
|
|
2909
2944
|
lensType: "flat" | "fisheye";
|
|
2910
2945
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
2946
|
+
recordingCapable: boolean;
|
|
2911
2947
|
webrtcPlaybackSource: ({
|
|
2912
2948
|
kind: string;
|
|
2913
2949
|
} & Record<string, unknown>) | null;
|
|
@@ -3058,6 +3094,7 @@ export declare const commandSchemas: {
|
|
|
3058
3094
|
height: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
3059
3095
|
lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
|
|
3060
3096
|
mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
|
|
3097
|
+
recordingCapable: import("zod").ZodBoolean;
|
|
3061
3098
|
webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
3062
3099
|
kind: import("zod").ZodString;
|
|
3063
3100
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -3074,6 +3111,7 @@ export declare const commandSchemas: {
|
|
|
3074
3111
|
height: number | null;
|
|
3075
3112
|
lensType: "flat" | "fisheye";
|
|
3076
3113
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3114
|
+
recordingCapable: boolean;
|
|
3077
3115
|
webrtcPlaybackSource: ({
|
|
3078
3116
|
kind: string;
|
|
3079
3117
|
} & Record<string, unknown>) | null;
|
|
@@ -3086,6 +3124,7 @@ export declare const commandSchemas: {
|
|
|
3086
3124
|
height: number | null;
|
|
3087
3125
|
lensType: "flat" | "fisheye";
|
|
3088
3126
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3127
|
+
recordingCapable: boolean;
|
|
3089
3128
|
webrtcPlaybackSource: ({
|
|
3090
3129
|
kind: string;
|
|
3091
3130
|
} & Record<string, unknown>) | null;
|
|
@@ -3115,6 +3154,7 @@ export declare const commandSchemas: {
|
|
|
3115
3154
|
height: number | null;
|
|
3116
3155
|
lensType: "flat" | "fisheye";
|
|
3117
3156
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3157
|
+
recordingCapable: boolean;
|
|
3118
3158
|
webrtcPlaybackSource: ({
|
|
3119
3159
|
kind: string;
|
|
3120
3160
|
} & Record<string, unknown>) | null;
|
|
@@ -3142,6 +3182,7 @@ export declare const commandSchemas: {
|
|
|
3142
3182
|
height: number | null;
|
|
3143
3183
|
lensType: "flat" | "fisheye";
|
|
3144
3184
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3185
|
+
recordingCapable: boolean;
|
|
3145
3186
|
webrtcPlaybackSource: ({
|
|
3146
3187
|
kind: string;
|
|
3147
3188
|
} & Record<string, unknown>) | null;
|
|
@@ -3337,6 +3378,7 @@ export declare const commandSchemas: {
|
|
|
3337
3378
|
height: number | null;
|
|
3338
3379
|
lensType: "flat" | "fisheye";
|
|
3339
3380
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3381
|
+
recordingCapable: boolean;
|
|
3340
3382
|
webrtcPlaybackSource: ({
|
|
3341
3383
|
kind: string;
|
|
3342
3384
|
} & Record<string, unknown>) | null;
|
|
@@ -3434,6 +3476,7 @@ export declare const commandSchemas: {
|
|
|
3434
3476
|
height: number | null;
|
|
3435
3477
|
lensType: "flat" | "fisheye";
|
|
3436
3478
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3479
|
+
recordingCapable: boolean;
|
|
3437
3480
|
webrtcPlaybackSource: ({
|
|
3438
3481
|
kind: string;
|
|
3439
3482
|
} & Record<string, unknown>) | null;
|
|
@@ -3533,6 +3576,7 @@ export declare const commandSchemas: {
|
|
|
3533
3576
|
height: number | null;
|
|
3534
3577
|
lensType: "flat" | "fisheye";
|
|
3535
3578
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3579
|
+
recordingCapable: boolean;
|
|
3536
3580
|
webrtcPlaybackSource: ({
|
|
3537
3581
|
kind: string;
|
|
3538
3582
|
} & Record<string, unknown>) | null;
|
|
@@ -3633,6 +3677,7 @@ export declare const commandSchemas: {
|
|
|
3633
3677
|
height: number | null;
|
|
3634
3678
|
lensType: "flat" | "fisheye";
|
|
3635
3679
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3680
|
+
recordingCapable: boolean;
|
|
3636
3681
|
webrtcPlaybackSource: ({
|
|
3637
3682
|
kind: string;
|
|
3638
3683
|
} & Record<string, unknown>) | null;
|
|
@@ -3785,6 +3830,7 @@ export declare const commandSchemas: {
|
|
|
3785
3830
|
height: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
3786
3831
|
lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
|
|
3787
3832
|
mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
|
|
3833
|
+
recordingCapable: import("zod").ZodBoolean;
|
|
3788
3834
|
webrtcPlaybackSource: import("zod").ZodNullable<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
3789
3835
|
kind: import("zod").ZodString;
|
|
3790
3836
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -3801,6 +3847,7 @@ export declare const commandSchemas: {
|
|
|
3801
3847
|
height: number | null;
|
|
3802
3848
|
lensType: "flat" | "fisheye";
|
|
3803
3849
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3850
|
+
recordingCapable: boolean;
|
|
3804
3851
|
webrtcPlaybackSource: ({
|
|
3805
3852
|
kind: string;
|
|
3806
3853
|
} & Record<string, unknown>) | null;
|
|
@@ -3813,6 +3860,7 @@ export declare const commandSchemas: {
|
|
|
3813
3860
|
height: number | null;
|
|
3814
3861
|
lensType: "flat" | "fisheye";
|
|
3815
3862
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3863
|
+
recordingCapable: boolean;
|
|
3816
3864
|
webrtcPlaybackSource: ({
|
|
3817
3865
|
kind: string;
|
|
3818
3866
|
} & Record<string, unknown>) | null;
|
|
@@ -3842,6 +3890,7 @@ export declare const commandSchemas: {
|
|
|
3842
3890
|
height: number | null;
|
|
3843
3891
|
lensType: "flat" | "fisheye";
|
|
3844
3892
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3893
|
+
recordingCapable: boolean;
|
|
3845
3894
|
webrtcPlaybackSource: ({
|
|
3846
3895
|
kind: string;
|
|
3847
3896
|
} & Record<string, unknown>) | null;
|
|
@@ -3869,6 +3918,7 @@ export declare const commandSchemas: {
|
|
|
3869
3918
|
height: number | null;
|
|
3870
3919
|
lensType: "flat" | "fisheye";
|
|
3871
3920
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
3921
|
+
recordingCapable: boolean;
|
|
3872
3922
|
webrtcPlaybackSource: ({
|
|
3873
3923
|
kind: string;
|
|
3874
3924
|
} & Record<string, unknown>) | null;
|
|
@@ -4062,6 +4112,7 @@ export declare const commandSchemas: {
|
|
|
4062
4112
|
height: number | null;
|
|
4063
4113
|
lensType: "flat" | "fisheye";
|
|
4064
4114
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
4115
|
+
recordingCapable: boolean;
|
|
4065
4116
|
webrtcPlaybackSource: ({
|
|
4066
4117
|
kind: string;
|
|
4067
4118
|
} & Record<string, unknown>) | null;
|
|
@@ -4157,6 +4208,7 @@ export declare const commandSchemas: {
|
|
|
4157
4208
|
height: number | null;
|
|
4158
4209
|
lensType: "flat" | "fisheye";
|
|
4159
4210
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
4211
|
+
recordingCapable: boolean;
|
|
4160
4212
|
webrtcPlaybackSource: ({
|
|
4161
4213
|
kind: string;
|
|
4162
4214
|
} & Record<string, unknown>) | null;
|
|
@@ -4254,6 +4306,7 @@ export declare const commandSchemas: {
|
|
|
4254
4306
|
height: number | null;
|
|
4255
4307
|
lensType: "flat" | "fisheye";
|
|
4256
4308
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
4309
|
+
recordingCapable: boolean;
|
|
4257
4310
|
webrtcPlaybackSource: ({
|
|
4258
4311
|
kind: string;
|
|
4259
4312
|
} & Record<string, unknown>) | null;
|
|
@@ -4352,6 +4405,7 @@ export declare const commandSchemas: {
|
|
|
4352
4405
|
height: number | null;
|
|
4353
4406
|
lensType: "flat" | "fisheye";
|
|
4354
4407
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
4408
|
+
recordingCapable: boolean;
|
|
4355
4409
|
webrtcPlaybackSource: ({
|
|
4356
4410
|
kind: string;
|
|
4357
4411
|
} & Record<string, unknown>) | null;
|