@riocrypto/common-server 1.0.2575 → 1.0.2576
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -601,7 +601,8 @@ class ClusterClient {
|
|
|
601
601
|
}
|
|
602
602
|
createSTPMXNWithdrawal(amount, CLABE, concepto, beneficiaryName) {
|
|
603
603
|
return __awaiter(this, void 0, void 0, function* () {
|
|
604
|
-
yield this.axios.post(`${this.baseUrl}/api/bank/accounts/STP/MXN/withdrawals`, { amount, CLABE, concepto, beneficiaryName }, { headers: { "x-cluster-api-key": this.clusterApiKey } });
|
|
604
|
+
const response = yield this.axios.post(`${this.baseUrl}/api/bank/accounts/STP/MXN/withdrawals`, { amount, CLABE, concepto, beneficiaryName }, { headers: { "x-cluster-api-key": this.clusterApiKey } });
|
|
605
|
+
return response.data;
|
|
605
606
|
});
|
|
606
607
|
}
|
|
607
608
|
getSTPMXNWithdrawal(id) {
|