Compare commits

..

No commits in common. "11c023a5304b511f5a1d7a4fab87bc018fc5e00e" and "d6967c9358d866d80dd0ca5a2cf95528fe6f1bd9" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

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

View File

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