@usteam/contracts 1.2.0 → 1.2.1

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/event.ts CHANGED
@@ -35,7 +35,7 @@ export interface Event {
35
35
  title: string;
36
36
  slug: string;
37
37
  poster: string;
38
- ratingAge: string;
38
+ ratingAge: number;
39
39
  releaseDate: Timestamp | undefined;
40
40
  }
41
41
 
@@ -47,7 +47,7 @@ export interface EventDetails {
47
47
  poster: string;
48
48
  banner: string;
49
49
  duration: number;
50
- ratingAge: string;
50
+ ratingAge: number;
51
51
  place: string;
52
52
  releaseDate: Timestamp | undefined;
53
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usteam/contracts",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {
package/proto/event.proto CHANGED
@@ -39,7 +39,7 @@ message Event {
39
39
  string title = 2;
40
40
  string slug = 3;
41
41
  string poster = 4;
42
- string rating_age = 5;
42
+ int32 rating_age = 5;
43
43
  google.protobuf.Timestamp release_date = 6;
44
44
  }
45
45
 
@@ -51,7 +51,7 @@ message EventDetails {
51
51
  string poster = 5;
52
52
  string banner = 6;
53
53
  int32 duration = 7;
54
- string rating_age = 8;
54
+ int32 rating_age = 8;
55
55
  string place = 9;
56
56
  google.protobuf.Timestamp release_date = 10;
57
57
  }