dev - optional type instead of map
Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
parent
3a44056962
commit
88cfb4e150
@ -6,7 +6,9 @@ package authorization;
|
|||||||
Internal
|
Internal
|
||||||
*/
|
*/
|
||||||
|
|
||||||
message InternalInitRoutesReq { repeated InternalRoute routes = 1; }
|
message InternalInitRoutesReq {
|
||||||
|
repeated InternalRoute routes = 1;
|
||||||
|
}
|
||||||
message InternalRoute {
|
message InternalRoute {
|
||||||
string path = 1;
|
string path = 1;
|
||||||
string method = 2;
|
string method = 2;
|
||||||
@ -28,14 +30,20 @@ message Permission {
|
|||||||
string method = 5;
|
string method = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message PermissionList { repeated Permission list = 1; }
|
message PermissionList {
|
||||||
|
repeated Permission list = 1;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
UserSendOtp
|
UserSendOtp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
message UserSendOtpReq { string mobile = 1; }
|
message UserSendOtpReq {
|
||||||
message UserSendOtpRes { int64 expired_at = 1; }
|
string mobile = 1;
|
||||||
|
}
|
||||||
|
message UserSendOtpRes {
|
||||||
|
int64 expired_at = 1;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
UserLogin
|
UserLogin
|
||||||
@ -45,7 +53,9 @@ message UserLoginReq {
|
|||||||
string mobile = 1;
|
string mobile = 1;
|
||||||
string otp_code = 2;
|
string otp_code = 2;
|
||||||
}
|
}
|
||||||
message UserRefreshTokenReq { string refresh_token = 1; }
|
message UserRefreshTokenReq {
|
||||||
|
string refresh_token = 1;
|
||||||
|
}
|
||||||
message UserAccessTokenRes {
|
message UserAccessTokenRes {
|
||||||
string access_token = 1;
|
string access_token = 1;
|
||||||
int64 access_expired_at = 2;
|
int64 access_expired_at = 2;
|
||||||
@ -73,7 +83,7 @@ message IdReqWithIAM {
|
|||||||
}
|
}
|
||||||
message ReqWithIAMAndParams {
|
message ReqWithIAMAndParams {
|
||||||
InternalIAM iam = 1;
|
InternalIAM iam = 1;
|
||||||
map<string, string> params = 2;
|
optional bool accepted = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -152,7 +162,9 @@ message UserUpdateBankInfoReq {
|
|||||||
string card_number = 4;
|
string card_number = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message BankInfoList { repeated BankInfo list = 1; }
|
message BankInfoList {
|
||||||
|
repeated BankInfo list = 1;
|
||||||
|
}
|
||||||
|
|
||||||
// Status 0: Fail Verify, 1: Verified, 2: Does not Match user's credential
|
// Status 0: Fail Verify, 1: Verified, 2: Does not Match user's credential
|
||||||
enum BankInfoStatusEnum {
|
enum BankInfoStatusEnum {
|
||||||
@ -180,8 +192,7 @@ message TFAReq {
|
|||||||
InternalIAM iam = 1;
|
InternalIAM iam = 1;
|
||||||
optional string mobile = 2;
|
optional string mobile = 2;
|
||||||
optional string email = 3;
|
optional string email = 3;
|
||||||
optional string reason =
|
optional string reason = 4; // issued jwt reason -> can be login, redeem, withdrawal
|
||||||
4; // issued jwt reason -> can be login, redeem, withdrawal
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Two Factor Authentication Exchange Response
|
// Two Factor Authentication Exchange Response
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user