chore: update identity status type to UserStatus #34

Open
mapoofano wants to merge 370 commits from chore-identity-user-status into main
2 changed files with 3 additions and 3 deletions
Showing only changes of commit ea79873420 - Show all commits
+2 -2
View File
@@ -212,7 +212,7 @@ message TFAReq {
optional string mobile = 2;
optional string email = 3;
optional string reason = 4; // issued jwt reason -> can be login, redeem, withdrawal
optional string transaction_id = 5;
optional int64 transaction_id = 5;
optional TfaStateEnum state = 6;
}
@@ -235,7 +235,7 @@ message CheckTFAReq {
message TFA {
TfaStateEnum state = 1;
int64 code = 2;
string transaction_id = 3;
int64 transaction_id = 3;
}
enum TfaStateEnum {
+1 -1
View File
@@ -350,7 +350,7 @@ message TransferAssetRes {
auth.v1.Recipient recipient = 1;
double amount = 2;
// TODO: Change to Asset
string transaction_id = 3;
int64 transaction_id = 3;
string transaction_hash = 4;
}