Getting decent

This commit is contained in:
2025-07-20 17:56:46 -04:00
parent c1991aaa3e
commit 701715083f
6 changed files with 105 additions and 92 deletions

View File

@ -210,7 +210,7 @@ export async function pullData(amount = 100) {
for (const transaction of transactions) {
const amount = Number(transaction.amount);
const date = new Date(transaction.postedDate);
const id = transaction.transactionId;
const id = transaction.hostTranNumber;
const payee = transaction.description || '';
const statementDescription = transaction.statementDescription;
const card = cardRegEx.test(statementDescription)