@eyenest/contracts 1.6.2 → 1.6.4

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/gen/ts/camera.ts CHANGED
@@ -20,6 +20,7 @@ export interface DeleteCameraResponse {
20
20
 
21
21
  export interface DeleteLocationRequest {
22
22
  locationId: string;
23
+ userId: string;
23
24
  }
24
25
 
25
26
  export interface DeleteLocationResponse {
package/gen/ts/video.ts CHANGED
@@ -18,6 +18,7 @@ export enum VideoFileStatus {
18
18
 
19
19
  export interface DeleteRecordingRequest {
20
20
  recordingId: string;
21
+ cameraId: string;
21
22
  }
22
23
 
23
24
  export interface DeleteRecordingResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyenest/contracts",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -29,6 +29,7 @@ message DeleteCameraResponse {
29
29
 
30
30
  message DeleteLocationRequest {
31
31
  string locationId = 1;
32
+ string userId = 2;
32
33
  }
33
34
  message DeleteLocationResponse {
34
35
  Location location = 1;
package/proto/video.proto CHANGED
@@ -12,6 +12,7 @@ service VideoService {
12
12
 
13
13
  message DeleteRecordingRequest {
14
14
  string recordingId = 1;
15
+ string cameraId = 2;
15
16
  }
16
17
  message DeleteRecordingResponse {
17
18
  Recording recording = 1;