Breaking changes: Typo fixes :)
This commit is contained in:
+3
-6
@@ -232,9 +232,6 @@ message LockAssetReq {
|
||||
BNPL - not really but close name
|
||||
*/
|
||||
|
||||
// enum BNPLPgState {
|
||||
//
|
||||
// }
|
||||
|
||||
message GetUserBNPLInfoReq {
|
||||
auth.v1.InternalIAM iam = 1;
|
||||
@@ -243,7 +240,7 @@ message GetUserBNPLInfoReq {
|
||||
|
||||
enum BNPLPaymentsStatus {
|
||||
PENDING_PAYMENT = 0;
|
||||
PAYED = 1;
|
||||
PAID = 1;
|
||||
OVER_DUE = 2;
|
||||
NOT_STARTED = 3;
|
||||
NOT_YET_DUE = 4;
|
||||
@@ -254,7 +251,7 @@ message BNPLPayments {
|
||||
uint64 id = 1;
|
||||
double amount = 2;
|
||||
double amount_irr = 7;
|
||||
bool is_paied = 3;
|
||||
bool is_paid = 3;
|
||||
string due_date = 4;
|
||||
string settlement_date = 5;
|
||||
BNPLPaymentsStatus status = 6;
|
||||
@@ -448,7 +445,7 @@ message RedeemTokenRes {
|
||||
double total_balance = 5;
|
||||
double request_amount = 6;
|
||||
string created_at = 7;
|
||||
bool is_paied = 8;
|
||||
bool is_paid = 8;
|
||||
// receipt.Receipt receipt = 8;
|
||||
double calculated_profit = 9;
|
||||
optional auth.v1.BankInfo bank_info = 10;
|
||||
|
||||
+1
-1
@@ -42,7 +42,7 @@ service WalletService {
|
||||
rpc GetUserBNPLInfo(GetUserBNPLInfoReq) returns (UserBNPLResp);
|
||||
rpc SubmitBNPLForm(UserBNPLReq) returns (base.v1.StatusRes);
|
||||
rpc UpdateBNPL(UserBNPLReq) returns (base.v1.StatusRes);
|
||||
rpc CancleBNPL(auth.v1.IdReqWithIAM) returns (base.v1.StatusRes);
|
||||
rpc CancelBNPL(auth.v1.IdReqWithIAM) returns (base.v1.StatusRes);
|
||||
|
||||
// Redeem Token
|
||||
rpc CalculateRedeemToken(RedeemTokenReq) returns (CalculateRedeemTokenRes);
|
||||
|
||||
Reference in New Issue
Block a user