@awarevue/api-types 2.0.130 → 2.0.131
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.
|
@@ -18,7 +18,8 @@ export declare const sWebRtcPlaybackParams: z.ZodObject<{
|
|
|
18
18
|
export type WebRtcPlaybackParams = z.infer<typeof sWebRtcPlaybackParams>;
|
|
19
19
|
export declare const sWebRtcPlaybackTrackParams: z.ZodObject<{
|
|
20
20
|
controllerId: z.ZodString;
|
|
21
|
-
|
|
21
|
+
cameraId: z.ZodString;
|
|
22
|
+
streamId: z.ZodString;
|
|
22
23
|
}, z.core.$strip>;
|
|
23
24
|
export type WebRtcPlaybackTrackParams = z.infer<typeof sWebRtcPlaybackTrackParams>;
|
|
24
25
|
export declare const sWebRtcPlaybackControllerParams: z.ZodObject<{
|
|
@@ -40,7 +41,8 @@ export declare const sWebRtcServiceDescription: z.ZodUnion<readonly [z.ZodObject
|
|
|
40
41
|
service: z.ZodLiteral<"playback-track">;
|
|
41
42
|
serviceParams: z.ZodObject<{
|
|
42
43
|
controllerId: z.ZodString;
|
|
43
|
-
|
|
44
|
+
cameraId: z.ZodString;
|
|
45
|
+
streamId: z.ZodString;
|
|
44
46
|
}, z.core.$strip>;
|
|
45
47
|
}, z.core.$strip>, z.ZodObject<{
|
|
46
48
|
service: z.ZodLiteral<"playback-controller">;
|
|
@@ -64,7 +66,8 @@ export declare const sWebRtcNewSessionPayload: z.ZodIntersection<z.ZodUnion<read
|
|
|
64
66
|
service: z.ZodLiteral<"playback-track">;
|
|
65
67
|
serviceParams: z.ZodObject<{
|
|
66
68
|
controllerId: z.ZodString;
|
|
67
|
-
|
|
69
|
+
cameraId: z.ZodString;
|
|
70
|
+
streamId: z.ZodString;
|
|
68
71
|
}, z.core.$strip>;
|
|
69
72
|
}, z.core.$strip>, z.ZodObject<{
|
|
70
73
|
service: z.ZodLiteral<"playback-controller">;
|
|
@@ -19,7 +19,8 @@ exports.sWebRtcPlaybackParams = zod_1.default.object({
|
|
|
19
19
|
});
|
|
20
20
|
exports.sWebRtcPlaybackTrackParams = zod_1.default.object({
|
|
21
21
|
controllerId: zod_1.default.string().nonempty(),
|
|
22
|
-
|
|
22
|
+
cameraId: zod_1.default.string().nonempty(),
|
|
23
|
+
streamId: zod_1.default.string().nonempty(),
|
|
23
24
|
});
|
|
24
25
|
exports.sWebRtcPlaybackControllerParams = zod_1.default.object({
|
|
25
26
|
controllerId: zod_1.default.string().nonempty(),
|
|
@@ -4,6 +4,7 @@ export declare const sRecorderSpecs: z.ZodObject<{}, z.core.$strip>;
|
|
|
4
4
|
export type RecorderSpecs = z.infer<typeof sRecorderSpecs>;
|
|
5
5
|
export declare const sRecorderStateDto: z.ZodObject<{
|
|
6
6
|
connected: z.ZodBoolean;
|
|
7
|
+
usedDiskSpace: z.ZodNullable<z.ZodNumber>;
|
|
7
8
|
availableDiskSpace: z.ZodNullable<z.ZodNumber>;
|
|
8
9
|
totalDiskSpace: z.ZodNullable<z.ZodNumber>;
|
|
9
10
|
highWatermark: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6,6 +6,7 @@ exports.NVR_RECORDER = 'nvr-recorder';
|
|
|
6
6
|
exports.sRecorderSpecs = zod_1.z.object({});
|
|
7
7
|
exports.sRecorderStateDto = zod_1.z.object({
|
|
8
8
|
connected: zod_1.z.boolean(),
|
|
9
|
+
usedDiskSpace: zod_1.z.number().nullable(),
|
|
9
10
|
availableDiskSpace: zod_1.z.number().nullable(),
|
|
10
11
|
totalDiskSpace: zod_1.z.number().nullable(),
|
|
11
12
|
highWatermark: zod_1.z.number().nullable(),
|
package/dist/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/Linc-Security-Systems/aware-essentials.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.131",
|
|
8
8
|
"description": "Common types between backend, agent(s) and frontend(s)",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"types": "dist/index.d.ts",
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/Linc-Security-Systems/aware-essentials.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.131",
|
|
8
8
|
"description": "Common types between backend, agent(s) and frontend(s)",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"types": "dist/index.d.ts",
|