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", "name": "@teacinema/contracts",
"version": "1.1.5", "version": "1.1.6",
"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,6 +35,7 @@ message User {
message PatchUserRequest { message PatchUserRequest {
string user_id = 1; string user_id = 1;
optional string name = 2; optional string name = 2;
optional string avatar = 3;
} }
message PatchUserResponse { message PatchUserResponse {
bool ok = 1; bool ok = 1;