@riocrypto/common 1.0.1440 → 1.0.1441
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.
|
@@ -179,7 +179,7 @@ export declare class RioAdminClient {
|
|
|
179
179
|
}): Promise<BankAccount>;
|
|
180
180
|
deleteBankAccount(id: string): Promise<void>;
|
|
181
181
|
createRioBankAccount(country: Country, fiat: Fiat, bankName?: string, bankAddress?: string, companyName?: string, companyAddress?: string, accountNumber?: string, CLABE?: string, CCI?: string, RUC?: string, RFC?: string): Promise<RioBankAccount>;
|
|
182
|
-
updateRioBankAccount(id: string, country?: Country, fiat?: Fiat, bankName?: string, companyName?: string, companyAddress?: string, accountNumber?: string, CLABE?: string, CCI?: string, RUC?: string, RFC?: string): Promise<RioBankAccount>;
|
|
182
|
+
updateRioBankAccount(id: string, country?: Country, fiat?: Fiat, bankName?: string, bankAddress?: string, companyName?: string, companyAddress?: string, accountNumber?: string, CLABE?: string, CCI?: string, RUC?: string, RFC?: string): Promise<RioBankAccount>;
|
|
183
183
|
getRioBankAccounts(page: number, limit: number, query?: BankAccountQuery): Promise<RioBankAccount[]>;
|
|
184
184
|
deleteAddress(id: string): Promise<void>;
|
|
185
185
|
getFeesByVolume(): Promise<{
|
|
@@ -689,12 +689,13 @@ class RioAdminClient {
|
|
|
689
689
|
return response.data;
|
|
690
690
|
});
|
|
691
691
|
}
|
|
692
|
-
updateRioBankAccount(id, country, fiat, bankName, companyName, companyAddress, accountNumber, CLABE, CCI, RUC, RFC) {
|
|
692
|
+
updateRioBankAccount(id, country, fiat, bankName, bankAddress, companyName, companyAddress, accountNumber, CLABE, CCI, RUC, RFC) {
|
|
693
693
|
return __awaiter(this, void 0, void 0, function* () {
|
|
694
694
|
const response = yield this.axios.patch(`/api/bank/accounts/rio/${id}`, {
|
|
695
695
|
country,
|
|
696
696
|
fiat,
|
|
697
697
|
bankName,
|
|
698
|
+
bankAddress,
|
|
698
699
|
accountNumber,
|
|
699
700
|
CLABE,
|
|
700
701
|
CCI,
|