diff --git a/base/v1/msg.proto b/base/v1/msg.proto index 10c429d..0215f45 100644 --- a/base/v1/msg.proto +++ b/base/v1/msg.proto @@ -16,6 +16,7 @@ message IdReq { message Pagination { uint32 page = 1; // in query param it will be p uint32 page_size = 2; // in query param it will be pz + optional uint32 total_count = 3; // reponse } message Filter { string query = 1; // q diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 130dff7..ab21c5b 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -193,6 +193,10 @@ message BNPLList { message WalletList { repeated Wallet list = 1; + // optional base.v1.Pagination pagination = 2; + double available_balance = 3; + double locked_balance = 4; + double total_balance = 5; } message Wallet {