@awarevue/api-types 2.0.16 → 2.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-communication/protocol.d.ts +214 -2
- package/dist/commands/all.d.ts +188 -10
- package/dist/commands/display.d.ts +28 -28
- package/dist/commands/nvr-exporter.d.ts +178 -0
- package/dist/commands/server.d.ts +178 -0
- package/dist/device/any-device.d.ts +15 -0
- package/dist/device/camera.d.ts +8 -0
- package/dist/device/camera.js +1 -0
- package/dist/device-import.d.ts +26 -0
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +99 -0
- package/dist/primitives.js +2 -2
- package/dist/queries/all.d.ts +211 -4
- package/dist/queries/camera.d.ts +8 -8
- package/dist/queries/nvr-recorder.d.ts +414 -0
- package/package.json +1 -1
package/dist/commands/all.d.ts
CHANGED
|
@@ -46,6 +46,32 @@ export declare const commandSchemas: {
|
|
|
46
46
|
foreignRef: import("zod").ZodString;
|
|
47
47
|
provider: import("zod").ZodString;
|
|
48
48
|
providerMetadata: import("zod").ZodObject<{}, "strip", import("zod").ZodUnknown, import("zod").objectOutputType<{}, import("zod").ZodUnknown, "strip">, import("zod").objectInputType<{}, import("zod").ZodUnknown, "strip">>;
|
|
49
|
+
} & {
|
|
50
|
+
presets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
51
|
+
id: import("zod").ZodString;
|
|
52
|
+
name: import("zod").ZodString;
|
|
53
|
+
params: import("zod").ZodUnknown;
|
|
54
|
+
isDefault: import("zod").ZodBoolean;
|
|
55
|
+
assignedRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
56
|
+
createdOn: import("zod").ZodString;
|
|
57
|
+
lastModifiedOn: import("zod").ZodString;
|
|
58
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
59
|
+
name: string;
|
|
60
|
+
id: string;
|
|
61
|
+
isDefault: boolean;
|
|
62
|
+
assignedRef: string | null;
|
|
63
|
+
createdOn: string;
|
|
64
|
+
lastModifiedOn: string;
|
|
65
|
+
params?: unknown;
|
|
66
|
+
}, {
|
|
67
|
+
name: string;
|
|
68
|
+
id: string;
|
|
69
|
+
isDefault: boolean;
|
|
70
|
+
assignedRef: string | null;
|
|
71
|
+
createdOn: string;
|
|
72
|
+
lastModifiedOn: string;
|
|
73
|
+
params?: unknown;
|
|
74
|
+
}>, "many">;
|
|
49
75
|
}, "strip", import("zod").ZodTypeAny, {
|
|
50
76
|
name: string;
|
|
51
77
|
foreignRef: string;
|
|
@@ -53,6 +79,15 @@ export declare const commandSchemas: {
|
|
|
53
79
|
providerMetadata: {} & {
|
|
54
80
|
[k: string]: unknown;
|
|
55
81
|
};
|
|
82
|
+
presets: {
|
|
83
|
+
name: string;
|
|
84
|
+
id: string;
|
|
85
|
+
isDefault: boolean;
|
|
86
|
+
assignedRef: string | null;
|
|
87
|
+
createdOn: string;
|
|
88
|
+
lastModifiedOn: string;
|
|
89
|
+
params?: unknown;
|
|
90
|
+
}[];
|
|
56
91
|
}, {
|
|
57
92
|
name: string;
|
|
58
93
|
foreignRef: string;
|
|
@@ -60,6 +95,15 @@ export declare const commandSchemas: {
|
|
|
60
95
|
providerMetadata: {} & {
|
|
61
96
|
[k: string]: unknown;
|
|
62
97
|
};
|
|
98
|
+
presets: {
|
|
99
|
+
name: string;
|
|
100
|
+
id: string;
|
|
101
|
+
isDefault: boolean;
|
|
102
|
+
assignedRef: string | null;
|
|
103
|
+
createdOn: string;
|
|
104
|
+
lastModifiedOn: string;
|
|
105
|
+
params?: unknown;
|
|
106
|
+
}[];
|
|
63
107
|
}>, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
64
108
|
type: import("zod").ZodLiteral<"alarm">;
|
|
65
109
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -91,14 +135,17 @@ export declare const commandSchemas: {
|
|
|
91
135
|
id: import("zod").ZodString;
|
|
92
136
|
displayName: import("zod").ZodString;
|
|
93
137
|
externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
138
|
+
rtspUrl: import("zod").ZodString;
|
|
94
139
|
}, "strip", import("zod").ZodTypeAny, {
|
|
95
140
|
id: string;
|
|
96
141
|
displayName: string;
|
|
97
142
|
externalPlayerUrl: string | null;
|
|
143
|
+
rtspUrl: string;
|
|
98
144
|
}, {
|
|
99
145
|
id: string;
|
|
100
146
|
displayName: string;
|
|
101
147
|
externalPlayerUrl: string | null;
|
|
148
|
+
rtspUrl: string;
|
|
102
149
|
}>, "many">;
|
|
103
150
|
defaultStreamId: import("zod").ZodString;
|
|
104
151
|
} & {
|
|
@@ -109,6 +156,7 @@ export declare const commandSchemas: {
|
|
|
109
156
|
id: string;
|
|
110
157
|
displayName: string;
|
|
111
158
|
externalPlayerUrl: string | null;
|
|
159
|
+
rtspUrl: string;
|
|
112
160
|
}[];
|
|
113
161
|
lensType: "flat" | "fisheye";
|
|
114
162
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -133,6 +181,7 @@ export declare const commandSchemas: {
|
|
|
133
181
|
id: string;
|
|
134
182
|
displayName: string;
|
|
135
183
|
externalPlayerUrl: string | null;
|
|
184
|
+
rtspUrl: string;
|
|
136
185
|
}[];
|
|
137
186
|
lensType: "flat" | "fisheye";
|
|
138
187
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -308,6 +357,15 @@ export declare const commandSchemas: {
|
|
|
308
357
|
providerMetadata: {} & {
|
|
309
358
|
[k: string]: unknown;
|
|
310
359
|
};
|
|
360
|
+
presets: {
|
|
361
|
+
name: string;
|
|
362
|
+
id: string;
|
|
363
|
+
isDefault: boolean;
|
|
364
|
+
assignedRef: string | null;
|
|
365
|
+
createdOn: string;
|
|
366
|
+
lastModifiedOn: string;
|
|
367
|
+
params?: unknown;
|
|
368
|
+
}[];
|
|
311
369
|
} & ({
|
|
312
370
|
type: "alarm";
|
|
313
371
|
} | {
|
|
@@ -316,6 +374,7 @@ export declare const commandSchemas: {
|
|
|
316
374
|
id: string;
|
|
317
375
|
displayName: string;
|
|
318
376
|
externalPlayerUrl: string | null;
|
|
377
|
+
rtspUrl: string;
|
|
319
378
|
}[];
|
|
320
379
|
lensType: "flat" | "fisheye";
|
|
321
380
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -394,6 +453,15 @@ export declare const commandSchemas: {
|
|
|
394
453
|
providerMetadata: {} & {
|
|
395
454
|
[k: string]: unknown;
|
|
396
455
|
};
|
|
456
|
+
presets: {
|
|
457
|
+
name: string;
|
|
458
|
+
id: string;
|
|
459
|
+
isDefault: boolean;
|
|
460
|
+
assignedRef: string | null;
|
|
461
|
+
createdOn: string;
|
|
462
|
+
lastModifiedOn: string;
|
|
463
|
+
params?: unknown;
|
|
464
|
+
}[];
|
|
397
465
|
} & ({
|
|
398
466
|
type: "alarm";
|
|
399
467
|
} | {
|
|
@@ -402,6 +470,7 @@ export declare const commandSchemas: {
|
|
|
402
470
|
id: string;
|
|
403
471
|
displayName: string;
|
|
404
472
|
externalPlayerUrl: string | null;
|
|
473
|
+
rtspUrl: string;
|
|
405
474
|
}[];
|
|
406
475
|
lensType: "flat" | "fisheye";
|
|
407
476
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -482,6 +551,15 @@ export declare const commandSchemas: {
|
|
|
482
551
|
providerMetadata: {} & {
|
|
483
552
|
[k: string]: unknown;
|
|
484
553
|
};
|
|
554
|
+
presets: {
|
|
555
|
+
name: string;
|
|
556
|
+
id: string;
|
|
557
|
+
isDefault: boolean;
|
|
558
|
+
assignedRef: string | null;
|
|
559
|
+
createdOn: string;
|
|
560
|
+
lastModifiedOn: string;
|
|
561
|
+
params?: unknown;
|
|
562
|
+
}[];
|
|
485
563
|
} & ({
|
|
486
564
|
type: "alarm";
|
|
487
565
|
} | {
|
|
@@ -490,6 +568,7 @@ export declare const commandSchemas: {
|
|
|
490
568
|
id: string;
|
|
491
569
|
displayName: string;
|
|
492
570
|
externalPlayerUrl: string | null;
|
|
571
|
+
rtspUrl: string;
|
|
493
572
|
}[];
|
|
494
573
|
lensType: "flat" | "fisheye";
|
|
495
574
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -571,6 +650,15 @@ export declare const commandSchemas: {
|
|
|
571
650
|
providerMetadata: {} & {
|
|
572
651
|
[k: string]: unknown;
|
|
573
652
|
};
|
|
653
|
+
presets: {
|
|
654
|
+
name: string;
|
|
655
|
+
id: string;
|
|
656
|
+
isDefault: boolean;
|
|
657
|
+
assignedRef: string | null;
|
|
658
|
+
createdOn: string;
|
|
659
|
+
lastModifiedOn: string;
|
|
660
|
+
params?: unknown;
|
|
661
|
+
}[];
|
|
574
662
|
} & ({
|
|
575
663
|
type: "alarm";
|
|
576
664
|
} | {
|
|
@@ -579,6 +667,7 @@ export declare const commandSchemas: {
|
|
|
579
667
|
id: string;
|
|
580
668
|
displayName: string;
|
|
581
669
|
externalPlayerUrl: string | null;
|
|
670
|
+
rtspUrl: string;
|
|
582
671
|
}[];
|
|
583
672
|
lensType: "flat" | "fisheye";
|
|
584
673
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -660,6 +749,32 @@ export declare const commandSchemas: {
|
|
|
660
749
|
foreignRef: import("zod").ZodString;
|
|
661
750
|
provider: import("zod").ZodString;
|
|
662
751
|
providerMetadata: import("zod").ZodObject<{}, "strip", import("zod").ZodUnknown, import("zod").objectOutputType<{}, import("zod").ZodUnknown, "strip">, import("zod").objectInputType<{}, import("zod").ZodUnknown, "strip">>;
|
|
752
|
+
} & {
|
|
753
|
+
presets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
754
|
+
id: import("zod").ZodString;
|
|
755
|
+
name: import("zod").ZodString;
|
|
756
|
+
params: import("zod").ZodUnknown;
|
|
757
|
+
isDefault: import("zod").ZodBoolean;
|
|
758
|
+
assignedRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
759
|
+
createdOn: import("zod").ZodString;
|
|
760
|
+
lastModifiedOn: import("zod").ZodString;
|
|
761
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
762
|
+
name: string;
|
|
763
|
+
id: string;
|
|
764
|
+
isDefault: boolean;
|
|
765
|
+
assignedRef: string | null;
|
|
766
|
+
createdOn: string;
|
|
767
|
+
lastModifiedOn: string;
|
|
768
|
+
params?: unknown;
|
|
769
|
+
}, {
|
|
770
|
+
name: string;
|
|
771
|
+
id: string;
|
|
772
|
+
isDefault: boolean;
|
|
773
|
+
assignedRef: string | null;
|
|
774
|
+
createdOn: string;
|
|
775
|
+
lastModifiedOn: string;
|
|
776
|
+
params?: unknown;
|
|
777
|
+
}>, "many">;
|
|
663
778
|
}, "strip", import("zod").ZodTypeAny, {
|
|
664
779
|
name: string;
|
|
665
780
|
foreignRef: string;
|
|
@@ -667,6 +782,15 @@ export declare const commandSchemas: {
|
|
|
667
782
|
providerMetadata: {} & {
|
|
668
783
|
[k: string]: unknown;
|
|
669
784
|
};
|
|
785
|
+
presets: {
|
|
786
|
+
name: string;
|
|
787
|
+
id: string;
|
|
788
|
+
isDefault: boolean;
|
|
789
|
+
assignedRef: string | null;
|
|
790
|
+
createdOn: string;
|
|
791
|
+
lastModifiedOn: string;
|
|
792
|
+
params?: unknown;
|
|
793
|
+
}[];
|
|
670
794
|
}, {
|
|
671
795
|
name: string;
|
|
672
796
|
foreignRef: string;
|
|
@@ -674,6 +798,15 @@ export declare const commandSchemas: {
|
|
|
674
798
|
providerMetadata: {} & {
|
|
675
799
|
[k: string]: unknown;
|
|
676
800
|
};
|
|
801
|
+
presets: {
|
|
802
|
+
name: string;
|
|
803
|
+
id: string;
|
|
804
|
+
isDefault: boolean;
|
|
805
|
+
assignedRef: string | null;
|
|
806
|
+
createdOn: string;
|
|
807
|
+
lastModifiedOn: string;
|
|
808
|
+
params?: unknown;
|
|
809
|
+
}[];
|
|
677
810
|
}>, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
678
811
|
type: import("zod").ZodLiteral<"alarm">;
|
|
679
812
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -705,14 +838,17 @@ export declare const commandSchemas: {
|
|
|
705
838
|
id: import("zod").ZodString;
|
|
706
839
|
displayName: import("zod").ZodString;
|
|
707
840
|
externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
841
|
+
rtspUrl: import("zod").ZodString;
|
|
708
842
|
}, "strip", import("zod").ZodTypeAny, {
|
|
709
843
|
id: string;
|
|
710
844
|
displayName: string;
|
|
711
845
|
externalPlayerUrl: string | null;
|
|
846
|
+
rtspUrl: string;
|
|
712
847
|
}, {
|
|
713
848
|
id: string;
|
|
714
849
|
displayName: string;
|
|
715
850
|
externalPlayerUrl: string | null;
|
|
851
|
+
rtspUrl: string;
|
|
716
852
|
}>, "many">;
|
|
717
853
|
defaultStreamId: import("zod").ZodString;
|
|
718
854
|
} & {
|
|
@@ -723,6 +859,7 @@ export declare const commandSchemas: {
|
|
|
723
859
|
id: string;
|
|
724
860
|
displayName: string;
|
|
725
861
|
externalPlayerUrl: string | null;
|
|
862
|
+
rtspUrl: string;
|
|
726
863
|
}[];
|
|
727
864
|
lensType: "flat" | "fisheye";
|
|
728
865
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -747,6 +884,7 @@ export declare const commandSchemas: {
|
|
|
747
884
|
id: string;
|
|
748
885
|
displayName: string;
|
|
749
886
|
externalPlayerUrl: string | null;
|
|
887
|
+
rtspUrl: string;
|
|
750
888
|
}[];
|
|
751
889
|
lensType: "flat" | "fisheye";
|
|
752
890
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -921,6 +1059,15 @@ export declare const commandSchemas: {
|
|
|
921
1059
|
providerMetadata: {} & {
|
|
922
1060
|
[k: string]: unknown;
|
|
923
1061
|
};
|
|
1062
|
+
presets: {
|
|
1063
|
+
name: string;
|
|
1064
|
+
id: string;
|
|
1065
|
+
isDefault: boolean;
|
|
1066
|
+
assignedRef: string | null;
|
|
1067
|
+
createdOn: string;
|
|
1068
|
+
lastModifiedOn: string;
|
|
1069
|
+
params?: unknown;
|
|
1070
|
+
}[];
|
|
924
1071
|
} & ({
|
|
925
1072
|
type: "alarm";
|
|
926
1073
|
} | {
|
|
@@ -929,6 +1076,7 @@ export declare const commandSchemas: {
|
|
|
929
1076
|
id: string;
|
|
930
1077
|
displayName: string;
|
|
931
1078
|
externalPlayerUrl: string | null;
|
|
1079
|
+
rtspUrl: string;
|
|
932
1080
|
}[];
|
|
933
1081
|
lensType: "flat" | "fisheye";
|
|
934
1082
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1006,6 +1154,15 @@ export declare const commandSchemas: {
|
|
|
1006
1154
|
providerMetadata: {} & {
|
|
1007
1155
|
[k: string]: unknown;
|
|
1008
1156
|
};
|
|
1157
|
+
presets: {
|
|
1158
|
+
name: string;
|
|
1159
|
+
id: string;
|
|
1160
|
+
isDefault: boolean;
|
|
1161
|
+
assignedRef: string | null;
|
|
1162
|
+
createdOn: string;
|
|
1163
|
+
lastModifiedOn: string;
|
|
1164
|
+
params?: unknown;
|
|
1165
|
+
}[];
|
|
1009
1166
|
} & ({
|
|
1010
1167
|
type: "alarm";
|
|
1011
1168
|
} | {
|
|
@@ -1014,6 +1171,7 @@ export declare const commandSchemas: {
|
|
|
1014
1171
|
id: string;
|
|
1015
1172
|
displayName: string;
|
|
1016
1173
|
externalPlayerUrl: string | null;
|
|
1174
|
+
rtspUrl: string;
|
|
1017
1175
|
}[];
|
|
1018
1176
|
lensType: "flat" | "fisheye";
|
|
1019
1177
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1093,6 +1251,15 @@ export declare const commandSchemas: {
|
|
|
1093
1251
|
providerMetadata: {} & {
|
|
1094
1252
|
[k: string]: unknown;
|
|
1095
1253
|
};
|
|
1254
|
+
presets: {
|
|
1255
|
+
name: string;
|
|
1256
|
+
id: string;
|
|
1257
|
+
isDefault: boolean;
|
|
1258
|
+
assignedRef: string | null;
|
|
1259
|
+
createdOn: string;
|
|
1260
|
+
lastModifiedOn: string;
|
|
1261
|
+
params?: unknown;
|
|
1262
|
+
}[];
|
|
1096
1263
|
} & ({
|
|
1097
1264
|
type: "alarm";
|
|
1098
1265
|
} | {
|
|
@@ -1101,6 +1268,7 @@ export declare const commandSchemas: {
|
|
|
1101
1268
|
id: string;
|
|
1102
1269
|
displayName: string;
|
|
1103
1270
|
externalPlayerUrl: string | null;
|
|
1271
|
+
rtspUrl: string;
|
|
1104
1272
|
}[];
|
|
1105
1273
|
lensType: "flat" | "fisheye";
|
|
1106
1274
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1181,6 +1349,15 @@ export declare const commandSchemas: {
|
|
|
1181
1349
|
providerMetadata: {} & {
|
|
1182
1350
|
[k: string]: unknown;
|
|
1183
1351
|
};
|
|
1352
|
+
presets: {
|
|
1353
|
+
name: string;
|
|
1354
|
+
id: string;
|
|
1355
|
+
isDefault: boolean;
|
|
1356
|
+
assignedRef: string | null;
|
|
1357
|
+
createdOn: string;
|
|
1358
|
+
lastModifiedOn: string;
|
|
1359
|
+
params?: unknown;
|
|
1360
|
+
}[];
|
|
1184
1361
|
} & ({
|
|
1185
1362
|
type: "alarm";
|
|
1186
1363
|
} | {
|
|
@@ -1189,6 +1366,7 @@ export declare const commandSchemas: {
|
|
|
1189
1366
|
id: string;
|
|
1190
1367
|
displayName: string;
|
|
1191
1368
|
externalPlayerUrl: string | null;
|
|
1369
|
+
rtspUrl: string;
|
|
1192
1370
|
}[];
|
|
1193
1371
|
lensType: "flat" | "fisheye";
|
|
1194
1372
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1296,13 +1474,13 @@ export declare const commandSchemas: {
|
|
|
1296
1474
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1297
1475
|
resolution: string | null;
|
|
1298
1476
|
displayName: string;
|
|
1299
|
-
streamId: string;
|
|
1300
1477
|
rtspUrl: string;
|
|
1478
|
+
streamId: string;
|
|
1301
1479
|
}, {
|
|
1302
1480
|
resolution: string | null;
|
|
1303
1481
|
displayName: string;
|
|
1304
|
-
streamId: string;
|
|
1305
1482
|
rtspUrl: string;
|
|
1483
|
+
streamId: string;
|
|
1306
1484
|
}>, "many">;
|
|
1307
1485
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1308
1486
|
name: string;
|
|
@@ -1310,8 +1488,8 @@ export declare const commandSchemas: {
|
|
|
1310
1488
|
streams: {
|
|
1311
1489
|
resolution: string | null;
|
|
1312
1490
|
displayName: string;
|
|
1313
|
-
streamId: string;
|
|
1314
1491
|
rtspUrl: string;
|
|
1492
|
+
streamId: string;
|
|
1315
1493
|
}[];
|
|
1316
1494
|
username: string;
|
|
1317
1495
|
password: string;
|
|
@@ -1321,8 +1499,8 @@ export declare const commandSchemas: {
|
|
|
1321
1499
|
streams: {
|
|
1322
1500
|
resolution: string | null;
|
|
1323
1501
|
displayName: string;
|
|
1324
|
-
streamId: string;
|
|
1325
1502
|
rtspUrl: string;
|
|
1503
|
+
streamId: string;
|
|
1326
1504
|
}[];
|
|
1327
1505
|
username: string;
|
|
1328
1506
|
password: string;
|
|
@@ -1340,8 +1518,8 @@ export declare const commandSchemas: {
|
|
|
1340
1518
|
streams: {
|
|
1341
1519
|
resolution: string | null;
|
|
1342
1520
|
displayName: string;
|
|
1343
|
-
streamId: string;
|
|
1344
1521
|
rtspUrl: string;
|
|
1522
|
+
streamId: string;
|
|
1345
1523
|
}[];
|
|
1346
1524
|
username: string;
|
|
1347
1525
|
password: string;
|
|
@@ -1355,8 +1533,8 @@ export declare const commandSchemas: {
|
|
|
1355
1533
|
streams: {
|
|
1356
1534
|
resolution: string | null;
|
|
1357
1535
|
displayName: string;
|
|
1358
|
-
streamId: string;
|
|
1359
1536
|
rtspUrl: string;
|
|
1537
|
+
streamId: string;
|
|
1360
1538
|
}[];
|
|
1361
1539
|
username: string;
|
|
1362
1540
|
password: string;
|
|
@@ -1372,8 +1550,8 @@ export declare const commandSchemas: {
|
|
|
1372
1550
|
streams: {
|
|
1373
1551
|
resolution: string | null;
|
|
1374
1552
|
displayName: string;
|
|
1375
|
-
streamId: string;
|
|
1376
1553
|
rtspUrl: string;
|
|
1554
|
+
streamId: string;
|
|
1377
1555
|
}[];
|
|
1378
1556
|
username: string;
|
|
1379
1557
|
password: string;
|
|
@@ -1389,8 +1567,8 @@ export declare const commandSchemas: {
|
|
|
1389
1567
|
streams: {
|
|
1390
1568
|
resolution: string | null;
|
|
1391
1569
|
displayName: string;
|
|
1392
|
-
streamId: string;
|
|
1393
1570
|
rtspUrl: string;
|
|
1571
|
+
streamId: string;
|
|
1394
1572
|
}[];
|
|
1395
1573
|
username: string;
|
|
1396
1574
|
password: string;
|
|
@@ -1408,8 +1586,8 @@ export declare const commandSchemas: {
|
|
|
1408
1586
|
streams: {
|
|
1409
1587
|
resolution: string | null;
|
|
1410
1588
|
displayName: string;
|
|
1411
|
-
streamId: string;
|
|
1412
1589
|
rtspUrl: string;
|
|
1590
|
+
streamId: string;
|
|
1413
1591
|
}[];
|
|
1414
1592
|
username: string;
|
|
1415
1593
|
password: string;
|
|
@@ -1428,8 +1606,8 @@ export declare const commandSchemas: {
|
|
|
1428
1606
|
streams: {
|
|
1429
1607
|
resolution: string | null;
|
|
1430
1608
|
displayName: string;
|
|
1431
|
-
streamId: string;
|
|
1432
1609
|
rtspUrl: string;
|
|
1610
|
+
streamId: string;
|
|
1433
1611
|
}[];
|
|
1434
1612
|
username: string;
|
|
1435
1613
|
password: string;
|