@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/queries/all.d.ts
CHANGED
|
@@ -79,6 +79,32 @@ export declare const requestSchemasByType: {
|
|
|
79
79
|
foreignRef: import("zod").ZodString;
|
|
80
80
|
provider: import("zod").ZodString;
|
|
81
81
|
providerMetadata: import("zod").ZodObject<{}, "strip", import("zod").ZodUnknown, import("zod").objectOutputType<{}, import("zod").ZodUnknown, "strip">, import("zod").objectInputType<{}, import("zod").ZodUnknown, "strip">>;
|
|
82
|
+
} & {
|
|
83
|
+
presets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
84
|
+
id: import("zod").ZodString;
|
|
85
|
+
name: import("zod").ZodString;
|
|
86
|
+
params: import("zod").ZodUnknown;
|
|
87
|
+
isDefault: import("zod").ZodBoolean;
|
|
88
|
+
assignedRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
89
|
+
createdOn: import("zod").ZodString;
|
|
90
|
+
lastModifiedOn: import("zod").ZodString;
|
|
91
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
92
|
+
name: string;
|
|
93
|
+
id: string;
|
|
94
|
+
isDefault: boolean;
|
|
95
|
+
assignedRef: string | null;
|
|
96
|
+
createdOn: string;
|
|
97
|
+
lastModifiedOn: string;
|
|
98
|
+
params?: unknown;
|
|
99
|
+
}, {
|
|
100
|
+
name: string;
|
|
101
|
+
id: string;
|
|
102
|
+
isDefault: boolean;
|
|
103
|
+
assignedRef: string | null;
|
|
104
|
+
createdOn: string;
|
|
105
|
+
lastModifiedOn: string;
|
|
106
|
+
params?: unknown;
|
|
107
|
+
}>, "many">;
|
|
82
108
|
}, "strip", import("zod").ZodTypeAny, {
|
|
83
109
|
name: string;
|
|
84
110
|
foreignRef: string;
|
|
@@ -86,6 +112,15 @@ export declare const requestSchemasByType: {
|
|
|
86
112
|
providerMetadata: {} & {
|
|
87
113
|
[k: string]: unknown;
|
|
88
114
|
};
|
|
115
|
+
presets: {
|
|
116
|
+
name: string;
|
|
117
|
+
id: string;
|
|
118
|
+
isDefault: boolean;
|
|
119
|
+
assignedRef: string | null;
|
|
120
|
+
createdOn: string;
|
|
121
|
+
lastModifiedOn: string;
|
|
122
|
+
params?: unknown;
|
|
123
|
+
}[];
|
|
89
124
|
}, {
|
|
90
125
|
name: string;
|
|
91
126
|
foreignRef: string;
|
|
@@ -93,6 +128,15 @@ export declare const requestSchemasByType: {
|
|
|
93
128
|
providerMetadata: {} & {
|
|
94
129
|
[k: string]: unknown;
|
|
95
130
|
};
|
|
131
|
+
presets: {
|
|
132
|
+
name: string;
|
|
133
|
+
id: string;
|
|
134
|
+
isDefault: boolean;
|
|
135
|
+
assignedRef: string | null;
|
|
136
|
+
createdOn: string;
|
|
137
|
+
lastModifiedOn: string;
|
|
138
|
+
params?: unknown;
|
|
139
|
+
}[];
|
|
96
140
|
}>, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
97
141
|
type: import("zod").ZodLiteral<"alarm">;
|
|
98
142
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -124,14 +168,17 @@ export declare const requestSchemasByType: {
|
|
|
124
168
|
id: import("zod").ZodString;
|
|
125
169
|
displayName: import("zod").ZodString;
|
|
126
170
|
externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
171
|
+
rtspUrl: import("zod").ZodString;
|
|
127
172
|
}, "strip", import("zod").ZodTypeAny, {
|
|
128
173
|
id: string;
|
|
129
174
|
displayName: string;
|
|
130
175
|
externalPlayerUrl: string | null;
|
|
176
|
+
rtspUrl: string;
|
|
131
177
|
}, {
|
|
132
178
|
id: string;
|
|
133
179
|
displayName: string;
|
|
134
180
|
externalPlayerUrl: string | null;
|
|
181
|
+
rtspUrl: string;
|
|
135
182
|
}>, "many">;
|
|
136
183
|
defaultStreamId: import("zod").ZodString;
|
|
137
184
|
} & {
|
|
@@ -142,6 +189,7 @@ export declare const requestSchemasByType: {
|
|
|
142
189
|
id: string;
|
|
143
190
|
displayName: string;
|
|
144
191
|
externalPlayerUrl: string | null;
|
|
192
|
+
rtspUrl: string;
|
|
145
193
|
}[];
|
|
146
194
|
lensType: "flat" | "fisheye";
|
|
147
195
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -166,6 +214,7 @@ export declare const requestSchemasByType: {
|
|
|
166
214
|
id: string;
|
|
167
215
|
displayName: string;
|
|
168
216
|
externalPlayerUrl: string | null;
|
|
217
|
+
rtspUrl: string;
|
|
169
218
|
}[];
|
|
170
219
|
lensType: "flat" | "fisheye";
|
|
171
220
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -337,6 +386,15 @@ export declare const requestSchemasByType: {
|
|
|
337
386
|
providerMetadata: {} & {
|
|
338
387
|
[k: string]: unknown;
|
|
339
388
|
};
|
|
389
|
+
presets: {
|
|
390
|
+
name: string;
|
|
391
|
+
id: string;
|
|
392
|
+
isDefault: boolean;
|
|
393
|
+
assignedRef: string | null;
|
|
394
|
+
createdOn: string;
|
|
395
|
+
lastModifiedOn: string;
|
|
396
|
+
params?: unknown;
|
|
397
|
+
}[];
|
|
340
398
|
} & ({
|
|
341
399
|
type: "alarm";
|
|
342
400
|
} | {
|
|
@@ -345,6 +403,7 @@ export declare const requestSchemasByType: {
|
|
|
345
403
|
id: string;
|
|
346
404
|
displayName: string;
|
|
347
405
|
externalPlayerUrl: string | null;
|
|
406
|
+
rtspUrl: string;
|
|
348
407
|
}[];
|
|
349
408
|
lensType: "flat" | "fisheye";
|
|
350
409
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -420,6 +479,15 @@ export declare const requestSchemasByType: {
|
|
|
420
479
|
providerMetadata: {} & {
|
|
421
480
|
[k: string]: unknown;
|
|
422
481
|
};
|
|
482
|
+
presets: {
|
|
483
|
+
name: string;
|
|
484
|
+
id: string;
|
|
485
|
+
isDefault: boolean;
|
|
486
|
+
assignedRef: string | null;
|
|
487
|
+
createdOn: string;
|
|
488
|
+
lastModifiedOn: string;
|
|
489
|
+
params?: unknown;
|
|
490
|
+
}[];
|
|
423
491
|
} & ({
|
|
424
492
|
type: "alarm";
|
|
425
493
|
} | {
|
|
@@ -428,6 +496,7 @@ export declare const requestSchemasByType: {
|
|
|
428
496
|
id: string;
|
|
429
497
|
displayName: string;
|
|
430
498
|
externalPlayerUrl: string | null;
|
|
499
|
+
rtspUrl: string;
|
|
431
500
|
}[];
|
|
432
501
|
lensType: "flat" | "fisheye";
|
|
433
502
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -502,6 +571,32 @@ export declare const requestSchemasByType: {
|
|
|
502
571
|
foreignRef: import("zod").ZodString;
|
|
503
572
|
provider: import("zod").ZodString;
|
|
504
573
|
providerMetadata: import("zod").ZodObject<{}, "strip", import("zod").ZodUnknown, import("zod").objectOutputType<{}, import("zod").ZodUnknown, "strip">, import("zod").objectInputType<{}, import("zod").ZodUnknown, "strip">>;
|
|
574
|
+
} & {
|
|
575
|
+
presets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
576
|
+
id: import("zod").ZodString;
|
|
577
|
+
name: import("zod").ZodString;
|
|
578
|
+
params: import("zod").ZodUnknown;
|
|
579
|
+
isDefault: import("zod").ZodBoolean;
|
|
580
|
+
assignedRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
581
|
+
createdOn: import("zod").ZodString;
|
|
582
|
+
lastModifiedOn: import("zod").ZodString;
|
|
583
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
584
|
+
name: string;
|
|
585
|
+
id: string;
|
|
586
|
+
isDefault: boolean;
|
|
587
|
+
assignedRef: string | null;
|
|
588
|
+
createdOn: string;
|
|
589
|
+
lastModifiedOn: string;
|
|
590
|
+
params?: unknown;
|
|
591
|
+
}, {
|
|
592
|
+
name: string;
|
|
593
|
+
id: string;
|
|
594
|
+
isDefault: boolean;
|
|
595
|
+
assignedRef: string | null;
|
|
596
|
+
createdOn: string;
|
|
597
|
+
lastModifiedOn: string;
|
|
598
|
+
params?: unknown;
|
|
599
|
+
}>, "many">;
|
|
505
600
|
}, "strip", import("zod").ZodTypeAny, {
|
|
506
601
|
name: string;
|
|
507
602
|
foreignRef: string;
|
|
@@ -509,6 +604,15 @@ export declare const requestSchemasByType: {
|
|
|
509
604
|
providerMetadata: {} & {
|
|
510
605
|
[k: string]: unknown;
|
|
511
606
|
};
|
|
607
|
+
presets: {
|
|
608
|
+
name: string;
|
|
609
|
+
id: string;
|
|
610
|
+
isDefault: boolean;
|
|
611
|
+
assignedRef: string | null;
|
|
612
|
+
createdOn: string;
|
|
613
|
+
lastModifiedOn: string;
|
|
614
|
+
params?: unknown;
|
|
615
|
+
}[];
|
|
512
616
|
}, {
|
|
513
617
|
name: string;
|
|
514
618
|
foreignRef: string;
|
|
@@ -516,6 +620,15 @@ export declare const requestSchemasByType: {
|
|
|
516
620
|
providerMetadata: {} & {
|
|
517
621
|
[k: string]: unknown;
|
|
518
622
|
};
|
|
623
|
+
presets: {
|
|
624
|
+
name: string;
|
|
625
|
+
id: string;
|
|
626
|
+
isDefault: boolean;
|
|
627
|
+
assignedRef: string | null;
|
|
628
|
+
createdOn: string;
|
|
629
|
+
lastModifiedOn: string;
|
|
630
|
+
params?: unknown;
|
|
631
|
+
}[];
|
|
519
632
|
}>, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
520
633
|
type: import("zod").ZodLiteral<"alarm">;
|
|
521
634
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -547,14 +660,17 @@ export declare const requestSchemasByType: {
|
|
|
547
660
|
id: import("zod").ZodString;
|
|
548
661
|
displayName: import("zod").ZodString;
|
|
549
662
|
externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
663
|
+
rtspUrl: import("zod").ZodString;
|
|
550
664
|
}, "strip", import("zod").ZodTypeAny, {
|
|
551
665
|
id: string;
|
|
552
666
|
displayName: string;
|
|
553
667
|
externalPlayerUrl: string | null;
|
|
668
|
+
rtspUrl: string;
|
|
554
669
|
}, {
|
|
555
670
|
id: string;
|
|
556
671
|
displayName: string;
|
|
557
672
|
externalPlayerUrl: string | null;
|
|
673
|
+
rtspUrl: string;
|
|
558
674
|
}>, "many">;
|
|
559
675
|
defaultStreamId: import("zod").ZodString;
|
|
560
676
|
} & {
|
|
@@ -565,6 +681,7 @@ export declare const requestSchemasByType: {
|
|
|
565
681
|
id: string;
|
|
566
682
|
displayName: string;
|
|
567
683
|
externalPlayerUrl: string | null;
|
|
684
|
+
rtspUrl: string;
|
|
568
685
|
}[];
|
|
569
686
|
lensType: "flat" | "fisheye";
|
|
570
687
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -589,6 +706,7 @@ export declare const requestSchemasByType: {
|
|
|
589
706
|
id: string;
|
|
590
707
|
displayName: string;
|
|
591
708
|
externalPlayerUrl: string | null;
|
|
709
|
+
rtspUrl: string;
|
|
592
710
|
}[];
|
|
593
711
|
lensType: "flat" | "fisheye";
|
|
594
712
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -762,6 +880,15 @@ export declare const requestSchemasByType: {
|
|
|
762
880
|
providerMetadata: {} & {
|
|
763
881
|
[k: string]: unknown;
|
|
764
882
|
};
|
|
883
|
+
presets: {
|
|
884
|
+
name: string;
|
|
885
|
+
id: string;
|
|
886
|
+
isDefault: boolean;
|
|
887
|
+
assignedRef: string | null;
|
|
888
|
+
createdOn: string;
|
|
889
|
+
lastModifiedOn: string;
|
|
890
|
+
params?: unknown;
|
|
891
|
+
}[];
|
|
765
892
|
} & ({
|
|
766
893
|
type: "alarm";
|
|
767
894
|
} | {
|
|
@@ -770,6 +897,7 @@ export declare const requestSchemasByType: {
|
|
|
770
897
|
id: string;
|
|
771
898
|
displayName: string;
|
|
772
899
|
externalPlayerUrl: string | null;
|
|
900
|
+
rtspUrl: string;
|
|
773
901
|
}[];
|
|
774
902
|
lensType: "flat" | "fisheye";
|
|
775
903
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -845,6 +973,15 @@ export declare const requestSchemasByType: {
|
|
|
845
973
|
providerMetadata: {} & {
|
|
846
974
|
[k: string]: unknown;
|
|
847
975
|
};
|
|
976
|
+
presets: {
|
|
977
|
+
name: string;
|
|
978
|
+
id: string;
|
|
979
|
+
isDefault: boolean;
|
|
980
|
+
assignedRef: string | null;
|
|
981
|
+
createdOn: string;
|
|
982
|
+
lastModifiedOn: string;
|
|
983
|
+
params?: unknown;
|
|
984
|
+
}[];
|
|
848
985
|
} & ({
|
|
849
986
|
type: "alarm";
|
|
850
987
|
} | {
|
|
@@ -853,6 +990,7 @@ export declare const requestSchemasByType: {
|
|
|
853
990
|
id: string;
|
|
854
991
|
displayName: string;
|
|
855
992
|
externalPlayerUrl: string | null;
|
|
993
|
+
rtspUrl: string;
|
|
856
994
|
}[];
|
|
857
995
|
lensType: "flat" | "fisheye";
|
|
858
996
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -925,6 +1063,32 @@ export declare const requestSchemasByType: {
|
|
|
925
1063
|
foreignRef: import("zod").ZodString;
|
|
926
1064
|
provider: import("zod").ZodString;
|
|
927
1065
|
providerMetadata: import("zod").ZodObject<{}, "strip", import("zod").ZodUnknown, import("zod").objectOutputType<{}, import("zod").ZodUnknown, "strip">, import("zod").objectInputType<{}, import("zod").ZodUnknown, "strip">>;
|
|
1066
|
+
} & {
|
|
1067
|
+
presets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1068
|
+
id: import("zod").ZodString;
|
|
1069
|
+
name: import("zod").ZodString;
|
|
1070
|
+
params: import("zod").ZodUnknown;
|
|
1071
|
+
isDefault: import("zod").ZodBoolean;
|
|
1072
|
+
assignedRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1073
|
+
createdOn: import("zod").ZodString;
|
|
1074
|
+
lastModifiedOn: import("zod").ZodString;
|
|
1075
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1076
|
+
name: string;
|
|
1077
|
+
id: string;
|
|
1078
|
+
isDefault: boolean;
|
|
1079
|
+
assignedRef: string | null;
|
|
1080
|
+
createdOn: string;
|
|
1081
|
+
lastModifiedOn: string;
|
|
1082
|
+
params?: unknown;
|
|
1083
|
+
}, {
|
|
1084
|
+
name: string;
|
|
1085
|
+
id: string;
|
|
1086
|
+
isDefault: boolean;
|
|
1087
|
+
assignedRef: string | null;
|
|
1088
|
+
createdOn: string;
|
|
1089
|
+
lastModifiedOn: string;
|
|
1090
|
+
params?: unknown;
|
|
1091
|
+
}>, "many">;
|
|
928
1092
|
}, "strip", import("zod").ZodTypeAny, {
|
|
929
1093
|
name: string;
|
|
930
1094
|
foreignRef: string;
|
|
@@ -932,6 +1096,15 @@ export declare const requestSchemasByType: {
|
|
|
932
1096
|
providerMetadata: {} & {
|
|
933
1097
|
[k: string]: unknown;
|
|
934
1098
|
};
|
|
1099
|
+
presets: {
|
|
1100
|
+
name: string;
|
|
1101
|
+
id: string;
|
|
1102
|
+
isDefault: boolean;
|
|
1103
|
+
assignedRef: string | null;
|
|
1104
|
+
createdOn: string;
|
|
1105
|
+
lastModifiedOn: string;
|
|
1106
|
+
params?: unknown;
|
|
1107
|
+
}[];
|
|
935
1108
|
}, {
|
|
936
1109
|
name: string;
|
|
937
1110
|
foreignRef: string;
|
|
@@ -939,6 +1112,15 @@ export declare const requestSchemasByType: {
|
|
|
939
1112
|
providerMetadata: {} & {
|
|
940
1113
|
[k: string]: unknown;
|
|
941
1114
|
};
|
|
1115
|
+
presets: {
|
|
1116
|
+
name: string;
|
|
1117
|
+
id: string;
|
|
1118
|
+
isDefault: boolean;
|
|
1119
|
+
assignedRef: string | null;
|
|
1120
|
+
createdOn: string;
|
|
1121
|
+
lastModifiedOn: string;
|
|
1122
|
+
params?: unknown;
|
|
1123
|
+
}[];
|
|
942
1124
|
}>, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
943
1125
|
type: import("zod").ZodLiteral<"alarm">;
|
|
944
1126
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -970,14 +1152,17 @@ export declare const requestSchemasByType: {
|
|
|
970
1152
|
id: import("zod").ZodString;
|
|
971
1153
|
displayName: import("zod").ZodString;
|
|
972
1154
|
externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1155
|
+
rtspUrl: import("zod").ZodString;
|
|
973
1156
|
}, "strip", import("zod").ZodTypeAny, {
|
|
974
1157
|
id: string;
|
|
975
1158
|
displayName: string;
|
|
976
1159
|
externalPlayerUrl: string | null;
|
|
1160
|
+
rtspUrl: string;
|
|
977
1161
|
}, {
|
|
978
1162
|
id: string;
|
|
979
1163
|
displayName: string;
|
|
980
1164
|
externalPlayerUrl: string | null;
|
|
1165
|
+
rtspUrl: string;
|
|
981
1166
|
}>, "many">;
|
|
982
1167
|
defaultStreamId: import("zod").ZodString;
|
|
983
1168
|
} & {
|
|
@@ -988,6 +1173,7 @@ export declare const requestSchemasByType: {
|
|
|
988
1173
|
id: string;
|
|
989
1174
|
displayName: string;
|
|
990
1175
|
externalPlayerUrl: string | null;
|
|
1176
|
+
rtspUrl: string;
|
|
991
1177
|
}[];
|
|
992
1178
|
lensType: "flat" | "fisheye";
|
|
993
1179
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1012,6 +1198,7 @@ export declare const requestSchemasByType: {
|
|
|
1012
1198
|
id: string;
|
|
1013
1199
|
displayName: string;
|
|
1014
1200
|
externalPlayerUrl: string | null;
|
|
1201
|
+
rtspUrl: string;
|
|
1015
1202
|
}[];
|
|
1016
1203
|
lensType: "flat" | "fisheye";
|
|
1017
1204
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1185,6 +1372,15 @@ export declare const requestSchemasByType: {
|
|
|
1185
1372
|
providerMetadata: {} & {
|
|
1186
1373
|
[k: string]: unknown;
|
|
1187
1374
|
};
|
|
1375
|
+
presets: {
|
|
1376
|
+
name: string;
|
|
1377
|
+
id: string;
|
|
1378
|
+
isDefault: boolean;
|
|
1379
|
+
assignedRef: string | null;
|
|
1380
|
+
createdOn: string;
|
|
1381
|
+
lastModifiedOn: string;
|
|
1382
|
+
params?: unknown;
|
|
1383
|
+
}[];
|
|
1188
1384
|
} & ({
|
|
1189
1385
|
type: "alarm";
|
|
1190
1386
|
} | {
|
|
@@ -1193,6 +1389,7 @@ export declare const requestSchemasByType: {
|
|
|
1193
1389
|
id: string;
|
|
1194
1390
|
displayName: string;
|
|
1195
1391
|
externalPlayerUrl: string | null;
|
|
1392
|
+
rtspUrl: string;
|
|
1196
1393
|
}[];
|
|
1197
1394
|
lensType: "flat" | "fisheye";
|
|
1198
1395
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1268,6 +1465,15 @@ export declare const requestSchemasByType: {
|
|
|
1268
1465
|
providerMetadata: {} & {
|
|
1269
1466
|
[k: string]: unknown;
|
|
1270
1467
|
};
|
|
1468
|
+
presets: {
|
|
1469
|
+
name: string;
|
|
1470
|
+
id: string;
|
|
1471
|
+
isDefault: boolean;
|
|
1472
|
+
assignedRef: string | null;
|
|
1473
|
+
createdOn: string;
|
|
1474
|
+
lastModifiedOn: string;
|
|
1475
|
+
params?: unknown;
|
|
1476
|
+
}[];
|
|
1271
1477
|
} & ({
|
|
1272
1478
|
type: "alarm";
|
|
1273
1479
|
} | {
|
|
@@ -1276,6 +1482,7 @@ export declare const requestSchemasByType: {
|
|
|
1276
1482
|
id: string;
|
|
1277
1483
|
displayName: string;
|
|
1278
1484
|
externalPlayerUrl: string | null;
|
|
1485
|
+
rtspUrl: string;
|
|
1279
1486
|
}[];
|
|
1280
1487
|
lensType: "flat" | "fisheye";
|
|
1281
1488
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1356,20 +1563,20 @@ export declare const responseSchemasByType: {
|
|
|
1356
1563
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1357
1564
|
resolution: string | null;
|
|
1358
1565
|
displayName: string;
|
|
1359
|
-
streamId: string;
|
|
1360
1566
|
rtspUrl: string;
|
|
1567
|
+
streamId: string;
|
|
1361
1568
|
}, {
|
|
1362
1569
|
resolution: string | null;
|
|
1363
1570
|
displayName: string;
|
|
1364
|
-
streamId: string;
|
|
1365
1571
|
rtspUrl: string;
|
|
1572
|
+
streamId: string;
|
|
1366
1573
|
}>, "many">;
|
|
1367
1574
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1368
1575
|
streams: {
|
|
1369
1576
|
resolution: string | null;
|
|
1370
1577
|
displayName: string;
|
|
1371
|
-
streamId: string;
|
|
1372
1578
|
rtspUrl: string;
|
|
1579
|
+
streamId: string;
|
|
1373
1580
|
}[];
|
|
1374
1581
|
username: string;
|
|
1375
1582
|
password: string;
|
|
@@ -1378,8 +1585,8 @@ export declare const responseSchemasByType: {
|
|
|
1378
1585
|
streams: {
|
|
1379
1586
|
resolution: string | null;
|
|
1380
1587
|
displayName: string;
|
|
1381
|
-
streamId: string;
|
|
1382
1588
|
rtspUrl: string;
|
|
1589
|
+
streamId: string;
|
|
1383
1590
|
}[];
|
|
1384
1591
|
username: string;
|
|
1385
1592
|
password: string;
|
package/dist/queries/camera.d.ts
CHANGED
|
@@ -13,20 +13,20 @@ export declare const sRtspDataResponse: z.ZodObject<{
|
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
14
|
resolution: string | null;
|
|
15
15
|
displayName: string;
|
|
16
|
-
streamId: string;
|
|
17
16
|
rtspUrl: string;
|
|
17
|
+
streamId: string;
|
|
18
18
|
}, {
|
|
19
19
|
resolution: string | null;
|
|
20
20
|
displayName: string;
|
|
21
|
-
streamId: string;
|
|
22
21
|
rtspUrl: string;
|
|
22
|
+
streamId: string;
|
|
23
23
|
}>, "many">;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
25
|
streams: {
|
|
26
26
|
resolution: string | null;
|
|
27
27
|
displayName: string;
|
|
28
|
-
streamId: string;
|
|
29
28
|
rtspUrl: string;
|
|
29
|
+
streamId: string;
|
|
30
30
|
}[];
|
|
31
31
|
username: string;
|
|
32
32
|
password: string;
|
|
@@ -35,8 +35,8 @@ export declare const sRtspDataResponse: z.ZodObject<{
|
|
|
35
35
|
streams: {
|
|
36
36
|
resolution: string | null;
|
|
37
37
|
displayName: string;
|
|
38
|
-
streamId: string;
|
|
39
38
|
rtspUrl: string;
|
|
39
|
+
streamId: string;
|
|
40
40
|
}[];
|
|
41
41
|
username: string;
|
|
42
42
|
password: string;
|
|
@@ -60,20 +60,20 @@ export declare const cameraResponseSchemas: {
|
|
|
60
60
|
}, "strip", z.ZodTypeAny, {
|
|
61
61
|
resolution: string | null;
|
|
62
62
|
displayName: string;
|
|
63
|
-
streamId: string;
|
|
64
63
|
rtspUrl: string;
|
|
64
|
+
streamId: string;
|
|
65
65
|
}, {
|
|
66
66
|
resolution: string | null;
|
|
67
67
|
displayName: string;
|
|
68
|
-
streamId: string;
|
|
69
68
|
rtspUrl: string;
|
|
69
|
+
streamId: string;
|
|
70
70
|
}>, "many">;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
72
|
streams: {
|
|
73
73
|
resolution: string | null;
|
|
74
74
|
displayName: string;
|
|
75
|
-
streamId: string;
|
|
76
75
|
rtspUrl: string;
|
|
76
|
+
streamId: string;
|
|
77
77
|
}[];
|
|
78
78
|
username: string;
|
|
79
79
|
password: string;
|
|
@@ -82,8 +82,8 @@ export declare const cameraResponseSchemas: {
|
|
|
82
82
|
streams: {
|
|
83
83
|
resolution: string | null;
|
|
84
84
|
displayName: string;
|
|
85
|
-
streamId: string;
|
|
86
85
|
rtspUrl: string;
|
|
86
|
+
streamId: string;
|
|
87
87
|
}[];
|
|
88
88
|
username: string;
|
|
89
89
|
password: string;
|