Age | Commit message (Collapse) | Author |
|
When an upstream bank or other institution expires a connecion and
requires a new login, plaid will start returning 400 errors with code
ITEM_LOGIN_REQUIRED. We need to pick that up and allow the user to
re-login to re-enable fetching things.
|
|
It seems plaid inserts a comma in multiline, or just long, payment
references sometimes. Our other banks put in spaces (or nothing). To
keep our regexps in pending bank matcher works, just replace the comma
with a space - it's very unlikely to be significant anyway.
|
|
|
|
When converting directly float->decimal, roundoff errors can occur for
certain values. But there is no roundoff from float->str, and then from
str->decimal, go figure...
|
|
|
|
|
|
This module will use the plaid.com service to download bank transaction
lists from any supported bank. If available, it will also respond to
webhooks sent by plaid whenever transactions show up, but failing that
will just poll twice per day.
|