Compare commits

..

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

2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -36,7 +36,7 @@ message Movie {
string slug = 3;
string poster = 4;
int32 rating_age = 5;
google.protobuf.Timestamp release_date = 6;
google.protobuf.Timestamp timestamp = 6;
}
message MovieDetails {
@ -49,5 +49,5 @@ message MovieDetails {
int32 duration = 7;
int32 rating_age = 8;
string country = 9;
google.protobuf.Timestamp release_date = 10;
google.protobuf.Timestamp timestamp = 10;
}