fix: change access token to user id and session id for logaut other method
All checks were successful
Publish / Publish Job (push) Successful in 2m38s

This commit is contained in:
Дмитрий
2026-04-03 23:36:58 +03:00
parent b67faaeb7e
commit 11d27550dd
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@lendry-erp/contracts", "name": "@lendry-erp/contracts",
"version": "1.0.43", "version": "1.0.44",
"description": "Protobuf definitions and generated TypeScript types", "description": "Protobuf definitions and generated TypeScript types",
"type": "commonjs", "type": "commonjs",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -39,7 +39,8 @@ message RefreshResponse {
} }
message LogoutRequest { message LogoutRequest {
string access_token = 1; string user_id = 1;
string session_id = 2;
} }
message LogoutResponse { message LogoutResponse {