Compare commits

..

2 Commits

Author SHA1 Message Date
8c858038e7 1.1.6
Some checks failed
Publish Go Bondings / Publish Go package action (push) Successful in 2m50s
Publish / Publish npm package action (push) Has been cancelled
2026-04-01 05:10:12 +03:00
8079b25fef feat: add avatar in users service 2026-04-01 05:09:49 +03:00
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -35,6 +35,7 @@ message User {
message PatchUserRequest {
string user_id = 1;
optional string name = 2;
optional string avatar = 3;
}
message PatchUserResponse {
bool ok = 1;