Compare commits

..

2 Commits

Author SHA1 Message Date
11c023a530 1.2.2
All checks were successful
Publish / Publish npm package action (push) Successful in 59s
Publish Go Bondings / Publish Go package action (push) Successful in 1m19s
2026-04-10 05:51:21 +03:00
2ec654e667 fix: fix rating age type 2026-04-10 05:51:09 +03:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@teacinema/contracts",
"version": "1.2.1",
"version": "1.2.2",
"description": "Protocol Buffers contracts for microservices",
"scripts": {
"build": "tsc -p tsconfig.build.json",

View File

@ -35,7 +35,7 @@ message Movie {
string title = 2;
string slug = 3;
string poster = 4;
string rating_age = 5;
int32 rating_age = 5;
google.protobuf.Timestamp timestamp = 6;
}
@ -47,7 +47,7 @@ message MovieDetails {
string poster = 5;
string banner = 6;
int32 duration = 7;
string rating_age = 8;
int32 rating_age = 8;
string country = 9;
google.protobuf.Timestamp timestamp = 10;
}