chore: update identity status type to UserStatus #34

Open
mapoofano wants to merge 370 commits from chore-identity-user-status into main
Showing only changes of commit 434f74756f - Show all commits
+7 -1
View File
@@ -210,7 +210,13 @@ message CheckTFAReq {
} }
message TFA { message TFA {
string key = 1; OtpStateEnum state = 1;
int64 code = 2; int64 code = 2;
string transaction_id = 3; string transaction_id = 3;
}
enum OtpStateEnum {
OPT_STATE_ENUM_UNSPECIFIED = 0;
LOGIN = 1;
PAYMENT = 2;
} }