@luxfi/bank 1.3.2 → 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 +12 -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;
|
|
@@ -214,6 +225,7 @@ export declare class Bank {
|
|
|
214
225
|
issueCard(currency?: string): Promise<{
|
|
215
226
|
card: Card;
|
|
216
227
|
cvv: string;
|
|
228
|
+
pan: string;
|
|
217
229
|
}>;
|
|
218
230
|
freezeCard(id: string): Promise<Card>;
|
|
219
231
|
unfreezeCard(id: string): Promise<Card>;
|
package/package.json
CHANGED