This commit is contained in:
Bryce Covert
2018-09-03 13:12:20 -07:00
parent da97d730ad
commit fe5d09c02b
8 changed files with 29 additions and 13 deletions

View File

@@ -63,7 +63,8 @@
:check_number {:type 'Int}
:name {:type 'String}
:bank_code {:type 'String}
:bank_name {:type 'String}}}
:bank_name {:type 'String}
:yodlee_account_id {:type 'Int}}}
:address
{:fields {:street1 {:type 'String}
:street2 {:type 'String}
@@ -130,6 +131,8 @@
:status {:type 'String}
:client {:type :client}
:payment {:type :payment}
:bank_account {:type :bank_account
:resolve :bank-account-for-check}
:date {:type 'String}
:post_date {:type 'String}}}
:invoice_payment
@@ -167,6 +170,7 @@
:total {:type 'String}
:outstanding_balance {:type 'String}
:invoice_number {:type 'String}
:status {:type 'String}
:expense_accounts {:type '(list :invoices_expense_accounts)}
:date {:type 'String}
:company_id {:type 'Int}
@@ -216,12 +220,14 @@
:all_invoices {:type '(list :invoice)
:args {:client_id {:type 'String}
:original_id {:type 'Int}}
:original_id {:type 'Int}
:statuses {:type '(list String)}}
:resolve :get-all-invoices}
:all_payments {:type '(list :payment)
:args {:client_id {:type 'String}
:original_id {:type 'Int}}
:original_id {:type 'Int}
:statuses {:type '(list String)}}
:resolve :get-all-payments}
:transaction_page {:type '(list :transaction_page)