From 6e94e0a847a7f24afd018a79527c712abc33b103 Mon Sep 17 00:00:00 2001 From: nfel Date: Sat, 10 Aug 2024 14:12:21 +0330 Subject: [PATCH] Put+Delete added to bnpl --- wallet.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wallet.proto b/wallet.proto index fb02e26..d879160 100644 --- a/wallet.proto +++ b/wallet.proto @@ -32,4 +32,6 @@ service WalletService { rpc GetBNPLInfo(base.IdReq) returns(BNPLInfo); rpc GetUserBNPLInfo(GetUserBNPLInfoReq) returns(UserBNPLResp); rpc SubmitBNPLForm(UserBNPLReq) returns(base.StatusRes); + rpc UpdateBNPL(UserBNPLReq) returns(base.StatusRes); + rpc CancleBNPL(base.IdReq) returns(base.StatusRes); }