@vantagepay/vantagepay 0.15.5 → 0.15.6
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/consumers/types.d.ts +5 -3
- 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/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Country } from '../lookups/types';
|
|
2
2
|
import { Gender } from '../lookups/types';
|
|
3
3
|
import { Language } from '../lookups/types';
|
|
4
|
-
import { Bank } from '../lookups/types';
|
|
5
4
|
import { BankAccountType } from '../common/types';
|
|
5
|
+
import { Bank } from '../lookups/types';
|
|
6
6
|
import { Currency } from '../lookups/types';
|
|
7
7
|
import { Month } from '../lookups/types';
|
|
8
8
|
import { MobileWalletOperator } from '../lookups/types';
|
|
@@ -66,11 +66,11 @@ export declare class BeneficiaryBankAccount {
|
|
|
66
66
|
/** The bank account token that was generated by the system. */
|
|
67
67
|
token?: string;
|
|
68
68
|
accountNumber: string;
|
|
69
|
-
bank: Bank;
|
|
70
|
-
bankName: string;
|
|
71
69
|
/** The bank account type. */
|
|
72
70
|
bankAccountType: BankAccountType;
|
|
73
71
|
bankAccountTypeName: string;
|
|
72
|
+
bank: Bank;
|
|
73
|
+
bankName: string;
|
|
74
74
|
/** The branch code associated with the bank which holds the bank account. */
|
|
75
75
|
routingCode?: string;
|
|
76
76
|
createdDate: Date;
|
|
@@ -248,7 +248,9 @@ export declare class ConsumerBankAccount {
|
|
|
248
248
|
accountNumber: string;
|
|
249
249
|
/** The bank account type. */
|
|
250
250
|
bankAccountType?: BankAccountType;
|
|
251
|
+
bankAccountTypeName?: string;
|
|
251
252
|
bank: Bank;
|
|
253
|
+
bankName: string;
|
|
252
254
|
branchName?: string;
|
|
253
255
|
/** The branch code associated with the bank which holds the bank account. */
|
|
254
256
|
routingCode?: string;
|