@tcinema-pro/contracts 1.3.5 → 1.3.6

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/movie.ts CHANGED
@@ -17,7 +17,7 @@ export interface GetMovieRequest {
17
17
  }
18
18
 
19
19
  export interface GetMovieResponse {
20
- movie: Movie | undefined;
20
+ movie: MovieDetail | undefined;
21
21
  }
22
22
 
23
23
  export interface ListMoviesRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tcinema-pro/contracts",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "Protobuf defs",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/movie.proto CHANGED
@@ -17,7 +17,7 @@ message GetMovieRequest {
17
17
  }
18
18
 
19
19
  message GetMovieResponse {
20
- Movie movie = 1;
20
+ MovieDetail movie = 1;
21
21
  }
22
22
 
23
23
  message ListMoviesRequest {