Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/types/creditCardBills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/types/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 & {
Expand Down