Skip to content

Commit 1e754a5

Browse files
authored
Fix card limits (#457)
1 parent 31dac06 commit 1e754a5

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

types/account.ts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,12 @@ export interface DepositAccountLimits {
321321
}
322322
}
323323
card: {
324-
limits: CardLevelLimits
324+
limits: {
325+
dailyWithdrawal: number
326+
dailyDeposit: number
327+
dailyPurchase: number
328+
dailyCardTransaction: number
329+
}
325330
totalsDaily: {
326331
withdrawals: number
327332
deposits: number
@@ -375,7 +380,12 @@ export interface CreditAccountLimits {
375380
type: "creditLimits"
376381
attributes: {
377382
card: {
378-
limits: CardLevelLimits
383+
limits: {
384+
dailyWithdrawal: number
385+
dailyDeposit: number
386+
dailyPurchase: number
387+
dailyCardTransaction: number
388+
}
379389
totalsDaily: {
380390
withdrawals: number
381391
deposits: number

0 commit comments

Comments
 (0)