From 95a683775a6fb4d1ddebded213a23e48f8380e81 Mon Sep 17 00:00:00 2001 From: tmelendez-p Date: Wed, 15 Jul 2026 14:52:44 -0300 Subject: [PATCH] feat(cc): adding cc bill dates --- src/types/creditCardBills.ts | 2 ++ src/types/transaction.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/types/creditCardBills.ts b/src/types/creditCardBills.ts index 9f23124..f19e08b 100644 --- a/src/types/creditCardBills.ts +++ b/src/types/creditCardBills.ts @@ -30,6 +30,8 @@ export type CreditCardBillPaymentMode = typeof CREDIT_CARD_BILL_PAYMENT_MODES[nu export type CreditCardBills = { id: string dueDate: Date + /** Date when the bill was closed */ + billClosingDate: Date | null totalAmount: number totalAmountCurrencyCode: CurrencyCode minimumPaymentAmount: number | null diff --git a/src/types/transaction.ts b/src/types/transaction.ts index 619edc0..3921168 100644 --- a/src/types/transaction.ts +++ b/src/types/transaction.ts @@ -136,6 +136,8 @@ export type CreditCardMetadata = { otherCreditsType?: CreditCardAccountOtherCreditType /** Additional information about the other credits type. Required when otherCreditsType is 'OTHER'. Only returned for Open Finance connectors */ otherCreditsAdditionalInfo?: string + /** Forecasted bill period (formatted as YYYY-MM) in which this transaction is expected to be charged. Unlike billId, it is provided for pending and future transactions too. Only returned for Open Finance connectors */ + billForecastDate?: string } export type TransactionFilters = PageFilters & {