@eyenest/contracts 1.4.2 → 1.4.3

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
@@ -18,6 +18,7 @@ export enum Status {
18
18
 
19
19
  export interface GetLinkCameraTokenRequest {
20
20
  cameraId: string;
21
+ userId: string;
21
22
  }
22
23
 
23
24
  export interface GetLinkCameraTokenResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyenest/contracts",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -17,6 +17,7 @@ service CameraService {
17
17
 
18
18
  message GetLinkCameraTokenRequest {
19
19
  string cameraId = 1;
20
+ string userId = 2;
20
21
  }
21
22
 
22
23
  message GetLinkCameraTokenResponse {