@microservsforsell/contracts 1.2.2 → 1.2.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.
@@ -28,7 +28,7 @@ export interface MovieDetails {
28
28
  id: string;
29
29
  title: string;
30
30
  slug: string;
31
- decription: string;
31
+ description: string;
32
32
  poster: string;
33
33
  banner: string;
34
34
  duration: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microservsforsell/contracts",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Protobuf definitions and generated Typecript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/movie.proto CHANGED
@@ -43,7 +43,7 @@ message MovieDetails {
43
43
  string id = 1;
44
44
  string title = 2;
45
45
  string slug = 3;
46
- string decription = 4;
46
+ string description = 4;
47
47
  string poster = 5;
48
48
  string banner = 6;
49
49
  int32 duration = 7;