Compare commits

..

2 Commits

Author SHA1 Message Date
db123f7162 1.2.3
All checks were successful
Publish / Publish npm package action (push) Successful in 36s
Publish Go Bondings / Publish Go package action (push) Successful in 1m20s
2026-04-10 06:06:03 +03:00
6a9e991782 fix: fix release date type 2026-04-10 06:05:56 +03:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@teacinema/contracts",
"version": "1.2.2",
"version": "1.2.3",
"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 timestamp = 6;
google.protobuf.Timestamp release_date = 6;
}
message MovieDetails {
@ -49,5 +49,5 @@ message MovieDetails {
int32 duration = 7;
int32 rating_age = 8;
string country = 9;
google.protobuf.Timestamp timestamp = 10;
google.protobuf.Timestamp release_date = 10;
}