fix: remove access token from requests change passports
All checks were successful
Publish / Publish Job (push) Successful in 2m39s
All checks were successful
Publish / Publish Job (push) Successful in 2m39s
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user