@alviere/core 0.16.1 → 0.16.3
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.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -884,7 +884,7 @@ class PaymentsGateway extends AlcoreBase {
|
|
|
884
884
|
return throwIfApiError(decrypted);
|
|
885
885
|
}
|
|
886
886
|
async get_bank_accounts(accountUuid) {
|
|
887
|
-
const endpoint = `/accounts/${accountUuid}/payment-methods/bank-accounts`;
|
|
887
|
+
const endpoint = `/accounts/${accountUuid}/payment-methods/bank-accounts?limit=100`;
|
|
888
888
|
const response = await this.send("GET", endpoint, {});
|
|
889
889
|
const encrypted = await response.json();
|
|
890
890
|
const decrypted = await this.decrypt(encrypted);
|