fix: remove access token from requests change passports
All checks were successful
Publish / Publish Job (push) Successful in 2m39s

This commit is contained in:
Дмитрий
2026-04-03 21:25:34 +03:00
parent 17dac7aad6
commit 7c7c165f97
2 changed files with 2 additions and 5 deletions

View File

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

View File

@@ -40,7 +40,6 @@ message GetAccountResponse {
message ChangePasswordRequest {
string user_id = 1;
string access_token = 2;
string old_password = 3;
string new_password = 4;
optional string code = 5;
@@ -54,7 +53,6 @@ message ChangePasswordResponse {
message SetPinRequest {
string user_id = 1;
string access_token = 2;
string pin = 3;
}
@@ -64,7 +62,7 @@ message SetPinResponse {
}
message UnlockPinRequest {
string access_token = 1;
string user_id = 1;
string pin = 2;
}
@@ -86,7 +84,6 @@ message GetPinStatusResponse {
message RemovePinRequest {
string pin = 1;
string user_id = 2;
string access_token = 3;
}
message RemovePinResponse {
bool success = 1;