adds yodlee2 accounts

This commit is contained in:
2022-09-30 08:34:13 -07:00
parent e754aea909
commit 8774a3951c
6 changed files with 43 additions and 5 deletions

View File

@@ -536,7 +536,8 @@
:mutations
{:request_import
{:type 'String
:args {:which {:type 'String}}
:args {:which {:type 'String}
:args {:type 'String}}
:resolve :mutation/request-import}
:delete_transaction_rule

View File

@@ -5,6 +5,9 @@
[auto-ap.jobs.core :refer [execute]]
[auto-ap.yodlee.core2 :as client2]))
(defn accounts-only []
(execute "yodlee2-accounts" client2/upsert-accounts))
(defn -main [& _]
(execute "import-yodlee" (fn []
(client2/upsert-accounts)

View File

@@ -100,6 +100,9 @@
(= job "yodlee2")
(job-yodlee2/-main)
(= job "yodlee2_accounts")
(job-yodlee2/accounts-only)
(= job "plaid")
(job-plaid/-main)