@awarevue/api-types 2.0.43 → 2.0.45
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 -28
- package/dist/api/commands/all.d.ts +36 -18
- package/dist/api/commands/nvr-exporter.d.ts +36 -18
- package/dist/api/commands/server.d.ts +36 -18
- package/dist/api/queries/all.d.ts +169 -24
- package/dist/api/queries/nvr-analytics-server.d.ts +297 -6
- package/dist/api/queries/nvr-analytics-server.js +82 -1
- package/dist/api/queries/nvr-recorder.d.ts +84 -42
- package/dist/api/rest/media.d.ts +12 -4
- package/dist/api/rest/media.js +2 -0
- package/dist/api/rest/user.d.ts +9 -9
- package/dist/objects/device/any-device.d.ts +30 -15
- package/dist/objects/device/camera.d.ts +16 -8
- package/dist/objects/device/camera.js +2 -1
- package/dist/objects/device/device-import.d.ts +52 -26
- package/dist/objects/role.d.ts +3 -3
- package/dist/package.json +1 -1
- package/dist/permissions.d.ts +3 -3
- package/dist/permissions.js +1 -0
- package/dist/primitives.d.ts +20 -10
- package/package.json +1 -1
|
@@ -106,7 +106,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
106
106
|
id: z.ZodString;
|
|
107
107
|
displayName: z.ZodString;
|
|
108
108
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
109
|
-
rtspUrl: z.ZodString
|
|
109
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
110
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
110
111
|
recordingCapable: z.ZodBoolean;
|
|
111
112
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
112
113
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -121,7 +122,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
121
122
|
id: string;
|
|
122
123
|
displayName: string;
|
|
123
124
|
externalPlayerUrl: string | null;
|
|
124
|
-
rtspUrl: string;
|
|
125
|
+
rtspUrl: string | null;
|
|
126
|
+
mountedStreamId: string | null;
|
|
125
127
|
recordingCapable: boolean;
|
|
126
128
|
lensType: "flat" | "fisheye";
|
|
127
129
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -132,7 +134,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
132
134
|
id: string;
|
|
133
135
|
displayName: string;
|
|
134
136
|
externalPlayerUrl: string | null;
|
|
135
|
-
rtspUrl: string;
|
|
137
|
+
rtspUrl: string | null;
|
|
138
|
+
mountedStreamId: string | null;
|
|
136
139
|
recordingCapable: boolean;
|
|
137
140
|
lensType: "flat" | "fisheye";
|
|
138
141
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -150,7 +153,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
150
153
|
id: string;
|
|
151
154
|
displayName: string;
|
|
152
155
|
externalPlayerUrl: string | null;
|
|
153
|
-
rtspUrl: string;
|
|
156
|
+
rtspUrl: string | null;
|
|
157
|
+
mountedStreamId: string | null;
|
|
154
158
|
recordingCapable: boolean;
|
|
155
159
|
lensType: "flat" | "fisheye";
|
|
156
160
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -176,7 +180,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
176
180
|
id: string;
|
|
177
181
|
displayName: string;
|
|
178
182
|
externalPlayerUrl: string | null;
|
|
179
|
-
rtspUrl: string;
|
|
183
|
+
rtspUrl: string | null;
|
|
184
|
+
mountedStreamId: string | null;
|
|
180
185
|
recordingCapable: boolean;
|
|
181
186
|
lensType: "flat" | "fisheye";
|
|
182
187
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -373,7 +378,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
373
378
|
id: string;
|
|
374
379
|
displayName: string;
|
|
375
380
|
externalPlayerUrl: string | null;
|
|
376
|
-
rtspUrl: string;
|
|
381
|
+
rtspUrl: string | null;
|
|
382
|
+
mountedStreamId: string | null;
|
|
377
383
|
recordingCapable: boolean;
|
|
378
384
|
lensType: "flat" | "fisheye";
|
|
379
385
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -471,7 +477,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
471
477
|
id: string;
|
|
472
478
|
displayName: string;
|
|
473
479
|
externalPlayerUrl: string | null;
|
|
474
|
-
rtspUrl: string;
|
|
480
|
+
rtspUrl: string | null;
|
|
481
|
+
mountedStreamId: string | null;
|
|
475
482
|
recordingCapable: boolean;
|
|
476
483
|
lensType: "flat" | "fisheye";
|
|
477
484
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -571,7 +578,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
571
578
|
id: string;
|
|
572
579
|
displayName: string;
|
|
573
580
|
externalPlayerUrl: string | null;
|
|
574
|
-
rtspUrl: string;
|
|
581
|
+
rtspUrl: string | null;
|
|
582
|
+
mountedStreamId: string | null;
|
|
575
583
|
recordingCapable: boolean;
|
|
576
584
|
lensType: "flat" | "fisheye";
|
|
577
585
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -672,7 +680,8 @@ export declare const sNotify: z.ZodObject<{
|
|
|
672
680
|
id: string;
|
|
673
681
|
displayName: string;
|
|
674
682
|
externalPlayerUrl: string | null;
|
|
675
|
-
rtspUrl: string;
|
|
683
|
+
rtspUrl: string | null;
|
|
684
|
+
mountedStreamId: string | null;
|
|
676
685
|
recordingCapable: boolean;
|
|
677
686
|
lensType: "flat" | "fisheye";
|
|
678
687
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -857,7 +866,8 @@ export declare const serverCommands: {
|
|
|
857
866
|
id: z.ZodString;
|
|
858
867
|
displayName: z.ZodString;
|
|
859
868
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
860
|
-
rtspUrl: z.ZodString
|
|
869
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
870
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
861
871
|
recordingCapable: z.ZodBoolean;
|
|
862
872
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
863
873
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -872,7 +882,8 @@ export declare const serverCommands: {
|
|
|
872
882
|
id: string;
|
|
873
883
|
displayName: string;
|
|
874
884
|
externalPlayerUrl: string | null;
|
|
875
|
-
rtspUrl: string;
|
|
885
|
+
rtspUrl: string | null;
|
|
886
|
+
mountedStreamId: string | null;
|
|
876
887
|
recordingCapable: boolean;
|
|
877
888
|
lensType: "flat" | "fisheye";
|
|
878
889
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -883,7 +894,8 @@ export declare const serverCommands: {
|
|
|
883
894
|
id: string;
|
|
884
895
|
displayName: string;
|
|
885
896
|
externalPlayerUrl: string | null;
|
|
886
|
-
rtspUrl: string;
|
|
897
|
+
rtspUrl: string | null;
|
|
898
|
+
mountedStreamId: string | null;
|
|
887
899
|
recordingCapable: boolean;
|
|
888
900
|
lensType: "flat" | "fisheye";
|
|
889
901
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -901,7 +913,8 @@ export declare const serverCommands: {
|
|
|
901
913
|
id: string;
|
|
902
914
|
displayName: string;
|
|
903
915
|
externalPlayerUrl: string | null;
|
|
904
|
-
rtspUrl: string;
|
|
916
|
+
rtspUrl: string | null;
|
|
917
|
+
mountedStreamId: string | null;
|
|
905
918
|
recordingCapable: boolean;
|
|
906
919
|
lensType: "flat" | "fisheye";
|
|
907
920
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -927,7 +940,8 @@ export declare const serverCommands: {
|
|
|
927
940
|
id: string;
|
|
928
941
|
displayName: string;
|
|
929
942
|
externalPlayerUrl: string | null;
|
|
930
|
-
rtspUrl: string;
|
|
943
|
+
rtspUrl: string | null;
|
|
944
|
+
mountedStreamId: string | null;
|
|
931
945
|
recordingCapable: boolean;
|
|
932
946
|
lensType: "flat" | "fisheye";
|
|
933
947
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1124,7 +1138,8 @@ export declare const serverCommands: {
|
|
|
1124
1138
|
id: string;
|
|
1125
1139
|
displayName: string;
|
|
1126
1140
|
externalPlayerUrl: string | null;
|
|
1127
|
-
rtspUrl: string;
|
|
1141
|
+
rtspUrl: string | null;
|
|
1142
|
+
mountedStreamId: string | null;
|
|
1128
1143
|
recordingCapable: boolean;
|
|
1129
1144
|
lensType: "flat" | "fisheye";
|
|
1130
1145
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1222,7 +1237,8 @@ export declare const serverCommands: {
|
|
|
1222
1237
|
id: string;
|
|
1223
1238
|
displayName: string;
|
|
1224
1239
|
externalPlayerUrl: string | null;
|
|
1225
|
-
rtspUrl: string;
|
|
1240
|
+
rtspUrl: string | null;
|
|
1241
|
+
mountedStreamId: string | null;
|
|
1226
1242
|
recordingCapable: boolean;
|
|
1227
1243
|
lensType: "flat" | "fisheye";
|
|
1228
1244
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1322,7 +1338,8 @@ export declare const serverCommands: {
|
|
|
1322
1338
|
id: string;
|
|
1323
1339
|
displayName: string;
|
|
1324
1340
|
externalPlayerUrl: string | null;
|
|
1325
|
-
rtspUrl: string;
|
|
1341
|
+
rtspUrl: string | null;
|
|
1342
|
+
mountedStreamId: string | null;
|
|
1326
1343
|
recordingCapable: boolean;
|
|
1327
1344
|
lensType: "flat" | "fisheye";
|
|
1328
1345
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1423,7 +1440,8 @@ export declare const serverCommands: {
|
|
|
1423
1440
|
id: string;
|
|
1424
1441
|
displayName: string;
|
|
1425
1442
|
externalPlayerUrl: string | null;
|
|
1426
|
-
rtspUrl: string;
|
|
1443
|
+
rtspUrl: string | null;
|
|
1444
|
+
mountedStreamId: string | null;
|
|
1427
1445
|
recordingCapable: boolean;
|
|
1428
1446
|
lensType: "flat" | "fisheye";
|
|
1429
1447
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -17,9 +17,10 @@ export declare const requestSchemasByType: {
|
|
|
17
17
|
q: z.ZodOptional<z.ZodString>;
|
|
18
18
|
similarTo: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19
19
|
label: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20
|
+
subLabel: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20
21
|
timeFrom: z.ZodOptional<z.ZodNumber>;
|
|
21
22
|
timeTo: z.ZodOptional<z.ZodNumber>;
|
|
22
|
-
sortBy: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"time_asc">, z.ZodLiteral<"time_desc">]>>;
|
|
23
|
+
sortBy: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"time_asc">, z.ZodLiteral<"time_desc">, z.ZodLiteral<"relevance">]>>;
|
|
23
24
|
}, "strip", z.ZodTypeAny, {
|
|
24
25
|
label?: string[] | undefined;
|
|
25
26
|
q?: string | undefined;
|
|
@@ -28,7 +29,8 @@ export declare const requestSchemasByType: {
|
|
|
28
29
|
timeFrom?: number | undefined;
|
|
29
30
|
timeTo?: number | undefined;
|
|
30
31
|
similarTo?: string | undefined;
|
|
31
|
-
|
|
32
|
+
subLabel?: string[] | undefined;
|
|
33
|
+
sortBy?: "time_asc" | "time_desc" | "relevance" | undefined;
|
|
32
34
|
}, {
|
|
33
35
|
label?: string[] | undefined;
|
|
34
36
|
q?: string | undefined;
|
|
@@ -37,7 +39,8 @@ export declare const requestSchemasByType: {
|
|
|
37
39
|
timeFrom?: number | undefined;
|
|
38
40
|
timeTo?: number | undefined;
|
|
39
41
|
similarTo?: string | undefined;
|
|
40
|
-
|
|
42
|
+
subLabel?: string[] | undefined;
|
|
43
|
+
sortBy?: "time_asc" | "time_desc" | "relevance" | undefined;
|
|
41
44
|
}>;
|
|
42
45
|
readonly "cctv:scene-preview-clip": z.ZodObject<{
|
|
43
46
|
providerAssignedRef: z.ZodString;
|
|
@@ -73,6 +76,62 @@ export declare const requestSchemasByType: {
|
|
|
73
76
|
providerAssignedRef: string;
|
|
74
77
|
}>;
|
|
75
78
|
readonly "cctv:object-labels": z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
79
|
+
readonly "cctv:media-faces": z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
80
|
+
readonly "cctv:media-face-people": z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
81
|
+
readonly "cctv:media-face-person-create": z.ZodObject<{
|
|
82
|
+
id: z.ZodString;
|
|
83
|
+
}, "strip", z.ZodTypeAny, {
|
|
84
|
+
id: string;
|
|
85
|
+
}, {
|
|
86
|
+
id: string;
|
|
87
|
+
}>;
|
|
88
|
+
readonly "cctv:media-face-person-delete": z.ZodObject<{
|
|
89
|
+
id: z.ZodString;
|
|
90
|
+
}, "strip", z.ZodTypeAny, {
|
|
91
|
+
id: string;
|
|
92
|
+
}, {
|
|
93
|
+
id: string;
|
|
94
|
+
}>;
|
|
95
|
+
readonly "cctv:media-face-person-add": z.ZodObject<{
|
|
96
|
+
id: z.ZodString;
|
|
97
|
+
image: z.ZodString;
|
|
98
|
+
}, "strip", z.ZodTypeAny, {
|
|
99
|
+
id: string;
|
|
100
|
+
image: string;
|
|
101
|
+
}, {
|
|
102
|
+
id: string;
|
|
103
|
+
image: string;
|
|
104
|
+
}>;
|
|
105
|
+
readonly "cctv:media-face-person-remove": z.ZodObject<{
|
|
106
|
+
id: z.ZodString;
|
|
107
|
+
image: z.ZodString;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
id: string;
|
|
110
|
+
image: string;
|
|
111
|
+
}, {
|
|
112
|
+
id: string;
|
|
113
|
+
image: string;
|
|
114
|
+
}>;
|
|
115
|
+
readonly "cctv:media-face-image": z.ZodObject<{
|
|
116
|
+
id: z.ZodString;
|
|
117
|
+
imageId: z.ZodString;
|
|
118
|
+
}, "strip", z.ZodTypeAny, {
|
|
119
|
+
id: string;
|
|
120
|
+
imageId: string;
|
|
121
|
+
}, {
|
|
122
|
+
id: string;
|
|
123
|
+
imageId: string;
|
|
124
|
+
}>;
|
|
125
|
+
readonly "cctv:media-face-train": z.ZodObject<{
|
|
126
|
+
id: z.ZodString;
|
|
127
|
+
imageId: z.ZodString;
|
|
128
|
+
}, "strip", z.ZodTypeAny, {
|
|
129
|
+
id: string;
|
|
130
|
+
imageId: string;
|
|
131
|
+
}, {
|
|
132
|
+
id: string;
|
|
133
|
+
imageId: string;
|
|
134
|
+
}>;
|
|
76
135
|
readonly "cctv:get-export-link": z.ZodObject<{
|
|
77
136
|
exportId: z.ZodString;
|
|
78
137
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -166,7 +225,8 @@ export declare const requestSchemasByType: {
|
|
|
166
225
|
id: z.ZodString;
|
|
167
226
|
displayName: z.ZodString;
|
|
168
227
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
169
|
-
rtspUrl: z.ZodString
|
|
228
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
229
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
170
230
|
recordingCapable: z.ZodBoolean;
|
|
171
231
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
172
232
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -181,7 +241,8 @@ export declare const requestSchemasByType: {
|
|
|
181
241
|
id: string;
|
|
182
242
|
displayName: string;
|
|
183
243
|
externalPlayerUrl: string | null;
|
|
184
|
-
rtspUrl: string;
|
|
244
|
+
rtspUrl: string | null;
|
|
245
|
+
mountedStreamId: string | null;
|
|
185
246
|
recordingCapable: boolean;
|
|
186
247
|
lensType: "flat" | "fisheye";
|
|
187
248
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -192,7 +253,8 @@ export declare const requestSchemasByType: {
|
|
|
192
253
|
id: string;
|
|
193
254
|
displayName: string;
|
|
194
255
|
externalPlayerUrl: string | null;
|
|
195
|
-
rtspUrl: string;
|
|
256
|
+
rtspUrl: string | null;
|
|
257
|
+
mountedStreamId: string | null;
|
|
196
258
|
recordingCapable: boolean;
|
|
197
259
|
lensType: "flat" | "fisheye";
|
|
198
260
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -210,7 +272,8 @@ export declare const requestSchemasByType: {
|
|
|
210
272
|
id: string;
|
|
211
273
|
displayName: string;
|
|
212
274
|
externalPlayerUrl: string | null;
|
|
213
|
-
rtspUrl: string;
|
|
275
|
+
rtspUrl: string | null;
|
|
276
|
+
mountedStreamId: string | null;
|
|
214
277
|
recordingCapable: boolean;
|
|
215
278
|
lensType: "flat" | "fisheye";
|
|
216
279
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -236,7 +299,8 @@ export declare const requestSchemasByType: {
|
|
|
236
299
|
id: string;
|
|
237
300
|
displayName: string;
|
|
238
301
|
externalPlayerUrl: string | null;
|
|
239
|
-
rtspUrl: string;
|
|
302
|
+
rtspUrl: string | null;
|
|
303
|
+
mountedStreamId: string | null;
|
|
240
304
|
recordingCapable: boolean;
|
|
241
305
|
lensType: "flat" | "fisheye";
|
|
242
306
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -429,7 +493,8 @@ export declare const requestSchemasByType: {
|
|
|
429
493
|
id: string;
|
|
430
494
|
displayName: string;
|
|
431
495
|
externalPlayerUrl: string | null;
|
|
432
|
-
rtspUrl: string;
|
|
496
|
+
rtspUrl: string | null;
|
|
497
|
+
mountedStreamId: string | null;
|
|
433
498
|
recordingCapable: boolean;
|
|
434
499
|
lensType: "flat" | "fisheye";
|
|
435
500
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -524,7 +589,8 @@ export declare const requestSchemasByType: {
|
|
|
524
589
|
id: string;
|
|
525
590
|
displayName: string;
|
|
526
591
|
externalPlayerUrl: string | null;
|
|
527
|
-
rtspUrl: string;
|
|
592
|
+
rtspUrl: string | null;
|
|
593
|
+
mountedStreamId: string | null;
|
|
528
594
|
recordingCapable: boolean;
|
|
529
595
|
lensType: "flat" | "fisheye";
|
|
530
596
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -680,7 +746,8 @@ export declare const requestSchemasByType: {
|
|
|
680
746
|
id: z.ZodString;
|
|
681
747
|
displayName: z.ZodString;
|
|
682
748
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
683
|
-
rtspUrl: z.ZodString
|
|
749
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
750
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
684
751
|
recordingCapable: z.ZodBoolean;
|
|
685
752
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
686
753
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -695,7 +762,8 @@ export declare const requestSchemasByType: {
|
|
|
695
762
|
id: string;
|
|
696
763
|
displayName: string;
|
|
697
764
|
externalPlayerUrl: string | null;
|
|
698
|
-
rtspUrl: string;
|
|
765
|
+
rtspUrl: string | null;
|
|
766
|
+
mountedStreamId: string | null;
|
|
699
767
|
recordingCapable: boolean;
|
|
700
768
|
lensType: "flat" | "fisheye";
|
|
701
769
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -706,7 +774,8 @@ export declare const requestSchemasByType: {
|
|
|
706
774
|
id: string;
|
|
707
775
|
displayName: string;
|
|
708
776
|
externalPlayerUrl: string | null;
|
|
709
|
-
rtspUrl: string;
|
|
777
|
+
rtspUrl: string | null;
|
|
778
|
+
mountedStreamId: string | null;
|
|
710
779
|
recordingCapable: boolean;
|
|
711
780
|
lensType: "flat" | "fisheye";
|
|
712
781
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -724,7 +793,8 @@ export declare const requestSchemasByType: {
|
|
|
724
793
|
id: string;
|
|
725
794
|
displayName: string;
|
|
726
795
|
externalPlayerUrl: string | null;
|
|
727
|
-
rtspUrl: string;
|
|
796
|
+
rtspUrl: string | null;
|
|
797
|
+
mountedStreamId: string | null;
|
|
728
798
|
recordingCapable: boolean;
|
|
729
799
|
lensType: "flat" | "fisheye";
|
|
730
800
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -750,7 +820,8 @@ export declare const requestSchemasByType: {
|
|
|
750
820
|
id: string;
|
|
751
821
|
displayName: string;
|
|
752
822
|
externalPlayerUrl: string | null;
|
|
753
|
-
rtspUrl: string;
|
|
823
|
+
rtspUrl: string | null;
|
|
824
|
+
mountedStreamId: string | null;
|
|
754
825
|
recordingCapable: boolean;
|
|
755
826
|
lensType: "flat" | "fisheye";
|
|
756
827
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -945,7 +1016,8 @@ export declare const requestSchemasByType: {
|
|
|
945
1016
|
id: string;
|
|
946
1017
|
displayName: string;
|
|
947
1018
|
externalPlayerUrl: string | null;
|
|
948
|
-
rtspUrl: string;
|
|
1019
|
+
rtspUrl: string | null;
|
|
1020
|
+
mountedStreamId: string | null;
|
|
949
1021
|
recordingCapable: boolean;
|
|
950
1022
|
lensType: "flat" | "fisheye";
|
|
951
1023
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1040,7 +1112,8 @@ export declare const requestSchemasByType: {
|
|
|
1040
1112
|
id: string;
|
|
1041
1113
|
displayName: string;
|
|
1042
1114
|
externalPlayerUrl: string | null;
|
|
1043
|
-
rtspUrl: string;
|
|
1115
|
+
rtspUrl: string | null;
|
|
1116
|
+
mountedStreamId: string | null;
|
|
1044
1117
|
recordingCapable: boolean;
|
|
1045
1118
|
lensType: "flat" | "fisheye";
|
|
1046
1119
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1194,7 +1267,8 @@ export declare const requestSchemasByType: {
|
|
|
1194
1267
|
id: z.ZodString;
|
|
1195
1268
|
displayName: z.ZodString;
|
|
1196
1269
|
externalPlayerUrl: z.ZodNullable<z.ZodString>;
|
|
1197
|
-
rtspUrl: z.ZodString
|
|
1270
|
+
rtspUrl: z.ZodNullable<z.ZodString>;
|
|
1271
|
+
mountedStreamId: z.ZodNullable<z.ZodString>;
|
|
1198
1272
|
recordingCapable: z.ZodBoolean;
|
|
1199
1273
|
lensType: z.ZodEnum<["flat", "fisheye"]>;
|
|
1200
1274
|
mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
|
|
@@ -1209,7 +1283,8 @@ export declare const requestSchemasByType: {
|
|
|
1209
1283
|
id: string;
|
|
1210
1284
|
displayName: string;
|
|
1211
1285
|
externalPlayerUrl: string | null;
|
|
1212
|
-
rtspUrl: string;
|
|
1286
|
+
rtspUrl: string | null;
|
|
1287
|
+
mountedStreamId: string | null;
|
|
1213
1288
|
recordingCapable: boolean;
|
|
1214
1289
|
lensType: "flat" | "fisheye";
|
|
1215
1290
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1220,7 +1295,8 @@ export declare const requestSchemasByType: {
|
|
|
1220
1295
|
id: string;
|
|
1221
1296
|
displayName: string;
|
|
1222
1297
|
externalPlayerUrl: string | null;
|
|
1223
|
-
rtspUrl: string;
|
|
1298
|
+
rtspUrl: string | null;
|
|
1299
|
+
mountedStreamId: string | null;
|
|
1224
1300
|
recordingCapable: boolean;
|
|
1225
1301
|
lensType: "flat" | "fisheye";
|
|
1226
1302
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1238,7 +1314,8 @@ export declare const requestSchemasByType: {
|
|
|
1238
1314
|
id: string;
|
|
1239
1315
|
displayName: string;
|
|
1240
1316
|
externalPlayerUrl: string | null;
|
|
1241
|
-
rtspUrl: string;
|
|
1317
|
+
rtspUrl: string | null;
|
|
1318
|
+
mountedStreamId: string | null;
|
|
1242
1319
|
recordingCapable: boolean;
|
|
1243
1320
|
lensType: "flat" | "fisheye";
|
|
1244
1321
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1264,7 +1341,8 @@ export declare const requestSchemasByType: {
|
|
|
1264
1341
|
id: string;
|
|
1265
1342
|
displayName: string;
|
|
1266
1343
|
externalPlayerUrl: string | null;
|
|
1267
|
-
rtspUrl: string;
|
|
1344
|
+
rtspUrl: string | null;
|
|
1345
|
+
mountedStreamId: string | null;
|
|
1268
1346
|
recordingCapable: boolean;
|
|
1269
1347
|
lensType: "flat" | "fisheye";
|
|
1270
1348
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1459,7 +1537,8 @@ export declare const requestSchemasByType: {
|
|
|
1459
1537
|
id: string;
|
|
1460
1538
|
displayName: string;
|
|
1461
1539
|
externalPlayerUrl: string | null;
|
|
1462
|
-
rtspUrl: string;
|
|
1540
|
+
rtspUrl: string | null;
|
|
1541
|
+
mountedStreamId: string | null;
|
|
1463
1542
|
recordingCapable: boolean;
|
|
1464
1543
|
lensType: "flat" | "fisheye";
|
|
1465
1544
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1554,7 +1633,8 @@ export declare const requestSchemasByType: {
|
|
|
1554
1633
|
id: string;
|
|
1555
1634
|
displayName: string;
|
|
1556
1635
|
externalPlayerUrl: string | null;
|
|
1557
|
-
rtspUrl: string;
|
|
1636
|
+
rtspUrl: string | null;
|
|
1637
|
+
mountedStreamId: string | null;
|
|
1558
1638
|
recordingCapable: boolean;
|
|
1559
1639
|
lensType: "flat" | "fisheye";
|
|
1560
1640
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
@@ -1674,6 +1754,7 @@ export declare const responseSchemasByType: {
|
|
|
1674
1754
|
provider: z.ZodString;
|
|
1675
1755
|
probability: z.ZodNumber;
|
|
1676
1756
|
objectKind: z.ZodString;
|
|
1757
|
+
subLabel: z.ZodString;
|
|
1677
1758
|
startTime: z.ZodNumber;
|
|
1678
1759
|
endTime: z.ZodNullable<z.ZodNumber>;
|
|
1679
1760
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1685,6 +1766,7 @@ export declare const responseSchemasByType: {
|
|
|
1685
1766
|
probability: number;
|
|
1686
1767
|
providerAssignedRef: string;
|
|
1687
1768
|
relevance: number;
|
|
1769
|
+
subLabel: string;
|
|
1688
1770
|
}, {
|
|
1689
1771
|
endTime: number | null;
|
|
1690
1772
|
startTime: number;
|
|
@@ -1694,6 +1776,7 @@ export declare const responseSchemasByType: {
|
|
|
1694
1776
|
probability: number;
|
|
1695
1777
|
providerAssignedRef: string;
|
|
1696
1778
|
relevance: number;
|
|
1779
|
+
subLabel: string;
|
|
1697
1780
|
}>, "many">;
|
|
1698
1781
|
readonly "cctv:scene-preview-clip": z.ZodNullable<z.ZodObject<{
|
|
1699
1782
|
mimeType: z.ZodString;
|
|
@@ -1726,6 +1809,68 @@ export declare const responseSchemasByType: {
|
|
|
1726
1809
|
mimeType: string;
|
|
1727
1810
|
}>>;
|
|
1728
1811
|
readonly "cctv:object-labels": z.ZodArray<z.ZodString, "many">;
|
|
1812
|
+
readonly "cctv:media-faces": z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
1813
|
+
readonly "cctv:media-face-people": z.ZodArray<z.ZodString, "many">;
|
|
1814
|
+
readonly "cctv:media-face-person-create": z.ZodObject<{
|
|
1815
|
+
success: z.ZodBoolean;
|
|
1816
|
+
message: z.ZodString;
|
|
1817
|
+
}, "strip", z.ZodTypeAny, {
|
|
1818
|
+
message: string;
|
|
1819
|
+
success: boolean;
|
|
1820
|
+
}, {
|
|
1821
|
+
message: string;
|
|
1822
|
+
success: boolean;
|
|
1823
|
+
}>;
|
|
1824
|
+
readonly "cctv:media-face-person-delete": z.ZodObject<{
|
|
1825
|
+
success: z.ZodBoolean;
|
|
1826
|
+
message: z.ZodString;
|
|
1827
|
+
}, "strip", z.ZodTypeAny, {
|
|
1828
|
+
message: string;
|
|
1829
|
+
success: boolean;
|
|
1830
|
+
}, {
|
|
1831
|
+
message: string;
|
|
1832
|
+
success: boolean;
|
|
1833
|
+
}>;
|
|
1834
|
+
readonly "cctv:media-face-person-add": z.ZodObject<{
|
|
1835
|
+
success: z.ZodBoolean;
|
|
1836
|
+
message: z.ZodString;
|
|
1837
|
+
}, "strip", z.ZodTypeAny, {
|
|
1838
|
+
message: string;
|
|
1839
|
+
success: boolean;
|
|
1840
|
+
}, {
|
|
1841
|
+
message: string;
|
|
1842
|
+
success: boolean;
|
|
1843
|
+
}>;
|
|
1844
|
+
readonly "cctv:media-face-person-remove": z.ZodObject<{
|
|
1845
|
+
success: z.ZodBoolean;
|
|
1846
|
+
message: z.ZodString;
|
|
1847
|
+
}, "strip", z.ZodTypeAny, {
|
|
1848
|
+
message: string;
|
|
1849
|
+
success: boolean;
|
|
1850
|
+
}, {
|
|
1851
|
+
message: string;
|
|
1852
|
+
success: boolean;
|
|
1853
|
+
}>;
|
|
1854
|
+
readonly "cctv:media-face-image": z.ZodNullable<z.ZodObject<{
|
|
1855
|
+
mimeType: z.ZodString;
|
|
1856
|
+
data: z.ZodString;
|
|
1857
|
+
}, "strip", z.ZodTypeAny, {
|
|
1858
|
+
data: string;
|
|
1859
|
+
mimeType: string;
|
|
1860
|
+
}, {
|
|
1861
|
+
data: string;
|
|
1862
|
+
mimeType: string;
|
|
1863
|
+
}>>;
|
|
1864
|
+
readonly "cctv:media-face-train": z.ZodObject<{
|
|
1865
|
+
success: z.ZodBoolean;
|
|
1866
|
+
message: z.ZodString;
|
|
1867
|
+
}, "strip", z.ZodTypeAny, {
|
|
1868
|
+
message: string;
|
|
1869
|
+
success: boolean;
|
|
1870
|
+
}, {
|
|
1871
|
+
message: string;
|
|
1872
|
+
success: boolean;
|
|
1873
|
+
}>;
|
|
1729
1874
|
readonly "cctv:get-export-link": z.ZodObject<{
|
|
1730
1875
|
exportLink: z.ZodString;
|
|
1731
1876
|
}, "strip", z.ZodTypeAny, {
|