@luxfi/bank 1.3.3 → 1.3.4
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.d.ts +11 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -50,6 +50,16 @@ export interface Balance {
|
|
|
50
50
|
kind: 'fiat' | 'crypto';
|
|
51
51
|
valueUsd: number;
|
|
52
52
|
}
|
|
53
|
+
export interface Receiving {
|
|
54
|
+
bankName: string;
|
|
55
|
+
accountHolder: string;
|
|
56
|
+
routingNumber?: string;
|
|
57
|
+
accountNumber?: string;
|
|
58
|
+
accountType?: string;
|
|
59
|
+
iban?: string;
|
|
60
|
+
swift?: string;
|
|
61
|
+
bankAddress?: string;
|
|
62
|
+
}
|
|
53
63
|
export interface Account {
|
|
54
64
|
id: string;
|
|
55
65
|
entityName: string;
|
|
@@ -59,6 +69,7 @@ export interface Account {
|
|
|
59
69
|
status: string;
|
|
60
70
|
kycStatus: string;
|
|
61
71
|
iban: string;
|
|
72
|
+
receiving?: Receiving;
|
|
62
73
|
}
|
|
63
74
|
export interface Wallet {
|
|
64
75
|
id: string;
|
package/package.json
CHANGED