@eyenest/contracts 1.5.2 → 1.5.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/video.ts CHANGED
@@ -17,7 +17,7 @@ export enum VideoFileStatus {
17
17
  }
18
18
 
19
19
  export interface GetPresignedUrlRequest {
20
- id: string;
20
+ fileId: string;
21
21
  }
22
22
 
23
23
  export interface GetPresignedUrlResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyenest/contracts",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/video.proto CHANGED
@@ -10,7 +10,7 @@ service VideoService {
10
10
  }
11
11
 
12
12
  message GetPresignedUrlRequest {
13
- string id = 1;
13
+ string fileId = 1;
14
14
  }
15
15
  message GetPresignedUrlResponse {
16
16
  string url = 1;