diff --git a/docs/README.md b/docs/README.md index 91b93dc2..9e7ab3bb 100644 --- a/docs/README.md +++ b/docs/README.md @@ -110,6 +110,7 @@ We have a number of templates available for popular financial institutions to ge - [Venmo](./templates/venmo.json) - [Chase](./templates/chase.json) - [American Express](./templates/american-express.json) +- [Rogers Bank Credit Card](./templates/rogers-bank-credit-card.json) These templates can be added into the `accounts` section of your `mintable.jsonc` configuration file. @@ -208,7 +209,7 @@ npm publish `CATEGORY_OVERRIDES` specifies a list of overrides to handle transactions that are routinely miscategorized by Plaid's servers. -**Default:** +**Default:** ```javascript "CATEGORY_OVERRIDES": [] @@ -240,7 +241,7 @@ For example, if you want anything matching `autopay` or `e-payment` to get categ `TEMPLATE_SHEET` specifies the template spreadsheet to use when creating a _new_ sheet for a month. -**Default:** +**Default:** ```javascript "TEMPLATE_SHEET": { diff --git a/docs/templates/rogers-bank-credit-card.json b/docs/templates/rogers-bank-credit-card.json new file mode 100644 index 00000000..b4482cf7 --- /dev/null +++ b/docs/templates/rogers-bank-credit-card.json @@ -0,0 +1,17 @@ +{ + "accounts": { + "Rogers Bank Credit Card": { + "paths": ["/path/to/my/rogers/bank/credit/card/statements/*.csv"], + "transformer": { + "Merchant Name": "name", + "Date": "date", + "Amount": "amount", + "Merchant Category Description": "category" + }, + "dateFormat": "yyyy/MM/dd", + "id": "Rogers Bank Credit Card", + "integration": "csv-import", + "negateValues": true + } + } +}