@microservsforsell/contracts 1.2.1 → 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.
@@ -6,7 +6,7 @@ export interface GetAllCategoriesResponse {
6
6
  }
7
7
  export interface Category {
8
8
  id: string;
9
- name: string;
9
+ title: string;
10
10
  slug: string;
11
11
  }
12
12
  export declare const CATEGORY_V1_PACKAGE_NAME = "category.v1";
@@ -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.1",
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",
@@ -14,7 +14,7 @@ message GetAllCategoriesResponse {
14
14
 
15
15
  message Category {
16
16
  string id = 1;
17
- string name = 2;
17
+ string title = 2;
18
18
  string slug = 3;
19
19
  }
20
20
 
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;