@codat/lending 3.2.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +472 -211
- package/dist/internal/utils/queryparams.js +7 -3
- package/dist/internal/utils/requestbody.js +29 -19
- package/dist/internal/utils/security.js +11 -3
- package/dist/internal/utils/utils.js +3 -5
- package/dist/sdk/accountbalances.d.ts +20 -0
- package/dist/sdk/accountbalances.js +174 -0
- package/dist/sdk/accounts.d.ts +34 -0
- package/dist/sdk/accounts.js +262 -0
- package/dist/sdk/accountspayable.d.ts +8 -8
- package/dist/sdk/accountspayable.js +8 -8
- package/dist/sdk/accountsreceivable.d.ts +12 -12
- package/dist/sdk/accountsreceivable.js +12 -12
- package/dist/sdk/accounttransactions.d.ts +34 -0
- package/dist/sdk/accounttransactions.js +262 -0
- package/dist/sdk/balancesheet.d.ts +24 -0
- package/dist/sdk/balancesheet.js +253 -0
- package/dist/sdk/bankaccounts.d.ts +39 -0
- package/dist/sdk/bankaccounts.js +293 -0
- package/dist/sdk/banking.d.ts +10 -10
- package/dist/sdk/banking.js +10 -10
- package/dist/sdk/banktransactions.d.ts +40 -0
- package/dist/sdk/banktransactions.js +294 -0
- package/dist/sdk/billcreditnotes.d.ts +34 -0
- package/dist/sdk/billcreditnotes.js +262 -0
- package/dist/sdk/billpayments.d.ts +34 -0
- package/dist/sdk/billpayments.js +262 -0
- package/dist/sdk/bills.d.ts +74 -0
- package/dist/sdk/bills.js +530 -0
- package/dist/sdk/cashflow.d.ts +15 -0
- package/dist/sdk/cashflow.js +169 -0
- package/dist/sdk/categorizedstatement.d.ts +19 -0
- package/dist/sdk/categorizedstatement.js +173 -0
- package/dist/sdk/codatlendingaccountingbankdata.d.ts +27 -0
- package/dist/sdk/codatlendingaccountingbankdata.js +181 -0
- package/dist/sdk/codatlendingaccounts.d.ts +34 -0
- package/dist/sdk/codatlendingaccounts.js +262 -0
- package/dist/sdk/codatlendingbankingtransactions.d.ts +34 -0
- package/dist/sdk/codatlendingbankingtransactions.js +262 -0
- package/dist/sdk/codatlendingcustomers.d.ts +34 -0
- package/dist/sdk/codatlendingcustomers.js +262 -0
- package/dist/sdk/codatlendingdirectcosts.d.ts +74 -0
- package/dist/sdk/codatlendingdirectcosts.js +530 -0
- package/dist/sdk/codatlendingfinancialstatementsaccounts.d.ts +33 -0
- package/dist/sdk/codatlendingfinancialstatementsaccounts.js +261 -0
- package/dist/sdk/codatlendingloanwritebackaccounts.d.ts +40 -0
- package/dist/sdk/codatlendingloanwritebackaccounts.js +294 -0
- package/dist/sdk/codatlendingpayments.d.ts +40 -0
- package/dist/sdk/codatlendingpayments.js +294 -0
- package/dist/sdk/codatlendingreports.d.ts +69 -0
- package/dist/sdk/codatlendingreports.js +298 -0
- package/dist/sdk/codatlendingsalespayments.d.ts +34 -0
- package/dist/sdk/codatlendingsalespayments.js +262 -0
- package/dist/sdk/codatlendingsuppliers.d.ts +40 -0
- package/dist/sdk/codatlendingsuppliers.js +294 -0
- package/dist/sdk/codatlendingtransactions.d.ts +34 -0
- package/dist/sdk/codatlendingtransactions.js +262 -0
- package/dist/sdk/codatlendingtransfers.d.ts +34 -0
- package/dist/sdk/codatlendingtransfers.js +262 -0
- package/dist/sdk/companies.d.ts +2 -2
- package/dist/sdk/companies.js +56 -56
- package/dist/sdk/companyinfo.d.ts +5 -3
- package/dist/sdk/companyinfo.js +29 -27
- package/dist/sdk/connections.d.ts +1 -1
- package/dist/sdk/connections.js +56 -56
- package/dist/sdk/createoperations.d.ts +22 -0
- package/dist/sdk/createoperations.js +250 -0
- package/dist/sdk/creditnotes.d.ts +34 -0
- package/dist/sdk/creditnotes.js +262 -0
- package/dist/sdk/customers.d.ts +74 -0
- package/dist/sdk/customers.js +530 -0
- package/dist/sdk/dataintegrity.d.ts +1 -1
- package/dist/sdk/dataintegrity.js +36 -36
- package/dist/sdk/directcosts.d.ts +40 -0
- package/dist/sdk/directcosts.js +294 -0
- package/dist/sdk/directincomes.d.ts +74 -0
- package/dist/sdk/directincomes.js +531 -0
- package/dist/sdk/disputes.d.ts +34 -0
- package/dist/sdk/disputes.js +262 -0
- package/dist/sdk/excelreports.d.ts +1 -1
- package/dist/sdk/excelreports.js +36 -36
- package/dist/sdk/fileupload.d.ts +1 -1
- package/dist/sdk/fileupload.js +34 -34
- package/dist/sdk/financialstatements.d.ts +8 -8
- package/dist/sdk/financialstatements.js +8 -8
- package/dist/sdk/invoices.d.ts +97 -0
- package/dist/sdk/invoices.js +708 -0
- package/dist/sdk/journalentries.d.ts +34 -0
- package/dist/sdk/journalentries.js +262 -0
- package/dist/sdk/journals.d.ts +34 -0
- package/dist/sdk/journals.js +262 -0
- package/dist/sdk/liabilities.d.ts +26 -2
- package/dist/sdk/liabilities.js +189 -26
- package/dist/sdk/loanwriteback.d.ts +16 -14
- package/dist/sdk/loanwriteback.js +16 -14
- package/dist/sdk/locations.d.ts +34 -0
- package/dist/sdk/locations.js +261 -0
- package/dist/sdk/managedata.d.ts +5 -5
- package/dist/sdk/managedata.js +20 -20
- package/dist/sdk/metrics.d.ts +102 -0
- package/dist/sdk/metrics.js +406 -0
- package/dist/sdk/models/operations/createaccount.d.ts +22 -5
- package/dist/sdk/models/operations/createaccount.js +3 -7
- package/dist/sdk/models/operations/createbankaccount.d.ts +21 -4
- package/dist/sdk/models/operations/createbankaccount.js +1 -5
- package/dist/sdk/models/operations/createbanktransactions.d.ts +23 -6
- package/dist/sdk/models/operations/createbanktransactions.js +1 -5
- package/dist/sdk/models/operations/createcompany.d.ts +11 -2
- package/dist/sdk/models/operations/createcompany.js +1 -1
- package/dist/sdk/models/operations/createconnection.d.ts +17 -2
- package/dist/sdk/models/operations/createconnection.js +1 -1
- package/dist/sdk/models/operations/createdirectcost.d.ts +22 -5
- package/dist/sdk/models/operations/createdirectcost.js +4 -8
- package/dist/sdk/models/operations/createpayment.d.ts +44 -0
- package/dist/sdk/models/operations/createpayment.js +111 -0
- package/dist/sdk/models/operations/createsupplier.d.ts +21 -4
- package/dist/sdk/models/operations/createsupplier.js +1 -5
- package/dist/sdk/models/operations/createtransfer.d.ts +21 -4
- package/dist/sdk/models/operations/createtransfer.js +1 -5
- package/dist/sdk/models/operations/deletecompany.d.ts +14 -2
- package/dist/sdk/models/operations/deletecompany.js +1 -1
- package/dist/sdk/models/operations/deleteconnection.d.ts +17 -2
- package/dist/sdk/models/operations/deleteconnection.js +1 -1
- package/dist/sdk/models/operations/downloadaccountingbillattachment.d.ts +19 -4
- package/dist/sdk/models/operations/downloadaccountingbillattachment.js +1 -1
- package/dist/sdk/models/operations/downloadaccountingcustomerattachment.d.ts +21 -3
- package/dist/sdk/models/operations/downloadaccountingcustomerattachment.js +1 -1
- package/dist/sdk/models/operations/downloadaccountingdirectcostattachment.d.ts +19 -4
- package/dist/sdk/models/operations/downloadaccountingdirectcostattachment.js +1 -1
- package/dist/sdk/models/operations/downloadaccountingdirectincomeattachment.d.ts +19 -4
- package/dist/sdk/models/operations/downloadaccountingdirectincomeattachment.js +1 -1
- package/dist/sdk/models/operations/downloadaccountinginvoiceattachment.d.ts +19 -4
- package/dist/sdk/models/operations/downloadaccountinginvoiceattachment.js +1 -1
- package/dist/sdk/models/operations/downloadaccountinginvoicepdf.d.ts +19 -2
- package/dist/sdk/models/operations/downloadaccountinginvoicepdf.js +28 -0
- package/dist/sdk/models/operations/downloadaccountingsupplierattachment.d.ts +19 -4
- package/dist/sdk/models/operations/downloadaccountingsupplierattachment.js +1 -1
- package/dist/sdk/models/operations/downloadexcelreport.d.ts +15 -3
- package/dist/sdk/models/operations/downloadexcelreport.js +1 -1
- package/dist/sdk/models/operations/downloadfiles.d.ts +14 -2
- package/dist/sdk/models/operations/downloadfiles.js +1 -1
- package/dist/sdk/models/operations/generateexcelreport.d.ts +15 -3
- package/dist/sdk/models/operations/generateexcelreport.js +1 -1
- package/dist/sdk/models/operations/generateloansummary.d.ts +39 -0
- package/dist/sdk/models/operations/generateloansummary.js +104 -0
- package/dist/sdk/models/operations/generateloantransactions.d.ts +39 -0
- package/dist/sdk/models/operations/generateloantransactions.js +104 -0
- package/dist/sdk/models/operations/getaccountingaccount.d.ts +15 -3
- package/dist/sdk/models/operations/getaccountingaccount.js +1 -1
- package/dist/sdk/models/operations/getaccountingaccounttransaction.d.ts +20 -2
- package/dist/sdk/models/operations/getaccountingaccounttransaction.js +1 -1
- package/dist/sdk/models/operations/getaccountingagedcreditorsreport.d.ts +15 -3
- package/dist/sdk/models/operations/getaccountingagedcreditorsreport.js +2 -2
- package/dist/sdk/models/operations/getaccountingageddebtorsreport.d.ts +15 -3
- package/dist/sdk/models/operations/getaccountingageddebtorsreport.js +2 -2
- package/dist/sdk/models/operations/getaccountingbalancesheet.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingbalancesheet.js +1 -1
- package/dist/sdk/models/operations/getaccountingbankaccount.d.ts +18 -3
- package/dist/sdk/models/operations/getaccountingbankaccount.js +1 -1
- package/dist/sdk/models/operations/getaccountingbill.d.ts +15 -3
- package/dist/sdk/models/operations/getaccountingbill.js +1 -1
- package/dist/sdk/models/operations/getaccountingbillattachment.d.ts +19 -4
- package/dist/sdk/models/operations/getaccountingbillattachment.js +1 -1
- package/dist/sdk/models/operations/getaccountingbillcreditnote.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingbillcreditnote.js +1 -1
- package/dist/sdk/models/operations/getaccountingbillpayment.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingbillpayment.js +1 -1
- package/dist/sdk/models/operations/getaccountingcashflowstatement.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingcashflowstatement.js +1 -1
- package/dist/sdk/models/operations/getaccountingcreditnote.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingcreditnote.js +1 -1
- package/dist/sdk/models/operations/getaccountingcustomer.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingcustomer.js +1 -1
- package/dist/sdk/models/operations/getaccountingcustomerattachment.d.ts +21 -3
- package/dist/sdk/models/operations/getaccountingcustomerattachment.js +1 -1
- package/dist/sdk/models/operations/getaccountingdirectcost.d.ts +18 -3
- package/dist/sdk/models/operations/getaccountingdirectcost.js +1 -1
- package/dist/sdk/models/operations/getaccountingdirectcostattachment.d.ts +19 -4
- package/dist/sdk/models/operations/getaccountingdirectcostattachment.js +1 -1
- package/dist/sdk/models/operations/getaccountingdirectincome.d.ts +20 -2
- package/dist/sdk/models/operations/getaccountingdirectincome.js +1 -1
- package/dist/sdk/models/operations/getaccountingdirectincomeattachment.d.ts +22 -4
- package/dist/sdk/models/operations/getaccountingdirectincomeattachment.js +1 -1
- package/dist/sdk/models/operations/getaccountinginvoice.d.ts +15 -3
- package/dist/sdk/models/operations/getaccountinginvoice.js +1 -1
- package/dist/sdk/models/operations/getaccountinginvoiceattachment.d.ts +19 -4
- package/dist/sdk/models/operations/getaccountinginvoiceattachment.js +1 -1
- package/dist/sdk/models/operations/getaccountingjournal.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingjournal.js +1 -1
- package/dist/sdk/models/operations/getaccountingjournalentry.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingjournalentry.js +1 -1
- package/dist/sdk/models/operations/getaccountingpayment.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingpayment.js +1 -1
- package/dist/sdk/models/operations/getaccountingprofile.d.ts +14 -2
- package/dist/sdk/models/operations/getaccountingprofile.js +1 -1
- package/dist/sdk/models/operations/getaccountingprofitandloss.d.ts +17 -2
- package/dist/sdk/models/operations/getaccountingprofitandloss.js +1 -1
- package/dist/sdk/models/operations/getaccountingsupplier.d.ts +15 -3
- package/dist/sdk/models/operations/getaccountingsupplier.js +1 -1
- package/dist/sdk/models/operations/getaccountingsupplierattachment.d.ts +19 -4
- package/dist/sdk/models/operations/getaccountingsupplierattachment.js +1 -1
- package/dist/sdk/models/operations/getaccountingtransfer.d.ts +20 -2
- package/dist/sdk/models/operations/getaccountingtransfer.js +1 -1
- package/dist/sdk/models/operations/getbankingaccount.d.ts +22 -3
- package/dist/sdk/models/operations/getbankingaccount.js +5 -1
- package/dist/sdk/models/operations/getbankingtransaction.d.ts +21 -2
- package/dist/sdk/models/operations/getbankingtransaction.js +5 -1
- package/dist/sdk/models/operations/getbankingtransactioncategory.d.ts +21 -2
- package/dist/sdk/models/operations/getbankingtransactioncategory.js +5 -1
- package/dist/sdk/models/operations/getcategorizedbalancesheetstatement.d.ts +15 -3
- package/dist/sdk/models/operations/getcategorizedbalancesheetstatement.js +1 -1
- package/dist/sdk/models/operations/getcategorizedbankstatement.d.ts +15 -3
- package/dist/sdk/models/operations/getcategorizedbankstatement.js +1 -1
- package/dist/sdk/models/operations/getcategorizedprofitandlossstatement.d.ts +16 -4
- package/dist/sdk/models/operations/getcategorizedprofitandlossstatement.js +1 -1
- package/dist/sdk/models/operations/getcommercecustomer.d.ts +17 -2
- package/dist/sdk/models/operations/getcommercecustomer.js +1 -1
- package/dist/sdk/models/operations/getcommercecustomerretentionmetrics.d.ts +18 -3
- package/dist/sdk/models/operations/getcommercecustomerretentionmetrics.js +1 -1
- package/dist/sdk/models/operations/getcommercedispute.d.ts +17 -2
- package/dist/sdk/models/operations/getcommercedispute.js +1 -1
- package/dist/sdk/models/operations/getcommercelifetimevaluemetrics.d.ts +18 -3
- package/dist/sdk/models/operations/getcommercelifetimevaluemetrics.js +1 -1
- package/dist/sdk/models/operations/getcommercelocation.d.ts +17 -2
- package/dist/sdk/models/operations/getcommercelocation.js +1 -1
- package/dist/sdk/models/operations/getcommerceorder.d.ts +17 -2
- package/dist/sdk/models/operations/getcommerceorder.js +1 -1
- package/dist/sdk/models/operations/getcommerceordersreport.d.ts +18 -3
- package/dist/sdk/models/operations/getcommerceordersreport.js +1 -1
- package/dist/sdk/models/operations/getcommercepayment.d.ts +17 -2
- package/dist/sdk/models/operations/getcommercepayment.js +1 -1
- package/dist/sdk/models/operations/getcommercepaymentmethod.d.ts +17 -2
- package/dist/sdk/models/operations/getcommercepaymentmethod.js +1 -1
- package/dist/sdk/models/operations/getcommerceproduct.d.ts +17 -2
- package/dist/sdk/models/operations/getcommerceproduct.js +1 -1
- package/dist/sdk/models/operations/getcommerceproductcategory.d.ts +17 -2
- package/dist/sdk/models/operations/getcommerceproductcategory.js +1 -1
- package/dist/sdk/models/operations/getcommerceprofile.d.ts +17 -2
- package/dist/sdk/models/operations/getcommerceprofile.js +1 -1
- package/dist/sdk/models/operations/getcommercerefundsreport.d.ts +18 -3
- package/dist/sdk/models/operations/getcommercerefundsreport.js +1 -1
- package/dist/sdk/models/operations/getcommercerevenuemetrics.d.ts +18 -3
- package/dist/sdk/models/operations/getcommercerevenuemetrics.js +1 -1
- package/dist/sdk/models/operations/getcommercetransaction.d.ts +17 -2
- package/dist/sdk/models/operations/getcommercetransaction.js +1 -1
- package/dist/sdk/models/operations/getcompany.d.ts +14 -2
- package/dist/sdk/models/operations/getcompany.js +1 -1
- package/dist/sdk/models/operations/getconnection.d.ts +17 -2
- package/dist/sdk/models/operations/getconnection.js +1 -1
- package/dist/sdk/models/operations/getcreatebanktransactionsmodel.d.ts +18 -3
- package/dist/sdk/models/operations/getcreatebanktransactionsmodel.js +1 -1
- package/dist/sdk/models/operations/getcreatechartofaccountsmodel.d.ts +17 -2
- package/dist/sdk/models/operations/getcreatechartofaccountsmodel.js +1 -1
- package/dist/sdk/models/operations/getcreatedirectcostsmodel.d.ts +17 -2
- package/dist/sdk/models/operations/getcreatedirectcostsmodel.js +1 -1
- package/dist/sdk/models/operations/getcreateoperation.d.ts +14 -2
- package/dist/sdk/models/operations/getcreateoperation.js +1 -1
- package/dist/sdk/models/operations/getcreatepaymentmodel.d.ts +35 -0
- package/dist/sdk/models/operations/getcreatepaymentmodel.js +99 -0
- package/dist/sdk/models/operations/getcreatetransfersmodel.d.ts +17 -2
- package/dist/sdk/models/operations/getcreatetransfersmodel.js +1 -1
- package/dist/sdk/models/operations/getcreateupdatebankaccountsmodel.d.ts +17 -2
- package/dist/sdk/models/operations/getcreateupdatebankaccountsmodel.js +1 -1
- package/dist/sdk/models/operations/getcreateupdatesuppliersmodel.d.ts +17 -2
- package/dist/sdk/models/operations/getcreateupdatesuppliersmodel.js +1 -1
- package/dist/sdk/models/operations/getdataintegritystatus.d.ts +14 -2
- package/dist/sdk/models/operations/getdataintegritystatus.js +1 -1
- package/dist/sdk/models/operations/getdataintegritysummaries.d.ts +15 -3
- package/dist/sdk/models/operations/getdataintegritysummaries.js +1 -1
- package/dist/sdk/models/operations/getdatastatus.d.ts +15 -3
- package/dist/sdk/models/operations/getdatastatus.js +2 -2
- package/dist/sdk/models/operations/getexcelreportgenerationstatus.d.ts +15 -3
- package/dist/sdk/models/operations/getexcelreportgenerationstatus.js +1 -1
- package/dist/sdk/models/operations/getloansummary.d.ts +26 -2
- package/dist/sdk/models/operations/getloansummary.js +15 -2
- package/dist/sdk/models/operations/getpulloperation.d.ts +15 -3
- package/dist/sdk/models/operations/getpulloperation.js +1 -1
- package/dist/sdk/models/operations/index.d.ts +4 -0
- package/dist/sdk/models/operations/index.js +4 -0
- package/dist/sdk/models/operations/isagedcreditorsreportavailable.d.ts +19 -2
- package/dist/sdk/models/operations/isagedcreditorsreportavailable.js +29 -1
- package/dist/sdk/models/operations/isageddebtorsreportavailable.d.ts +19 -2
- package/dist/sdk/models/operations/isageddebtorsreportavailable.js +29 -1
- package/dist/sdk/models/operations/listaccountingaccounts.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingaccounts.js +1 -1
- package/dist/sdk/models/operations/listaccountingaccounttransactions.d.ts +17 -2
- package/dist/sdk/models/operations/listaccountingaccounttransactions.js +1 -1
- package/dist/sdk/models/operations/listaccountingbankaccounts.d.ts +17 -2
- package/dist/sdk/models/operations/listaccountingbankaccounts.js +1 -1
- package/dist/sdk/models/operations/listaccountingbankaccounttransactions.d.ts +18 -3
- package/dist/sdk/models/operations/listaccountingbankaccounttransactions.js +1 -1
- package/dist/sdk/models/operations/listaccountingbillattachments.d.ts +18 -3
- package/dist/sdk/models/operations/listaccountingbillattachments.js +1 -1
- package/dist/sdk/models/operations/listaccountingbillcreditnotes.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingbillcreditnotes.js +1 -1
- package/dist/sdk/models/operations/listaccountingbillpayments.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingbillpayments.js +1 -1
- package/dist/sdk/models/operations/listaccountingbills.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingbills.js +1 -1
- package/dist/sdk/models/operations/listaccountingcreditnotes.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingcreditnotes.js +1 -1
- package/dist/sdk/models/operations/listaccountingcustomerattachments.d.ts +20 -2
- package/dist/sdk/models/operations/listaccountingcustomerattachments.js +1 -1
- package/dist/sdk/models/operations/listaccountingcustomers.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingcustomers.js +1 -1
- package/dist/sdk/models/operations/listaccountingdirectcostattachments.d.ts +18 -3
- package/dist/sdk/models/operations/listaccountingdirectcostattachments.js +1 -1
- package/dist/sdk/models/operations/listaccountingdirectcosts.d.ts +17 -2
- package/dist/sdk/models/operations/listaccountingdirectcosts.js +1 -1
- package/dist/sdk/models/operations/listaccountingdirectincomeattachments.d.ts +18 -3
- package/dist/sdk/models/operations/listaccountingdirectincomeattachments.js +1 -1
- package/dist/sdk/models/operations/listaccountingdirectincomes.d.ts +17 -2
- package/dist/sdk/models/operations/listaccountingdirectincomes.js +1 -1
- package/dist/sdk/models/operations/listaccountinginvoiceattachments.d.ts +18 -3
- package/dist/sdk/models/operations/listaccountinginvoiceattachments.js +1 -1
- package/dist/sdk/models/operations/listaccountinginvoices.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountinginvoices.js +1 -1
- package/dist/sdk/models/operations/listaccountingjournalentries.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingjournalentries.js +1 -1
- package/dist/sdk/models/operations/listaccountingjournals.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingjournals.js +1 -1
- package/dist/sdk/models/operations/listaccountingpayments.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingpayments.js +1 -1
- package/dist/sdk/models/operations/listaccountingsupplierattachments.d.ts +18 -3
- package/dist/sdk/models/operations/listaccountingsupplierattachments.js +1 -1
- package/dist/sdk/models/operations/listaccountingsuppliers.d.ts +14 -2
- package/dist/sdk/models/operations/listaccountingsuppliers.js +1 -1
- package/dist/sdk/models/operations/listaccountingtransfers.d.ts +17 -2
- package/dist/sdk/models/operations/listaccountingtransfers.js +1 -1
- package/dist/sdk/models/operations/listbankingaccountbalances.d.ts +17 -2
- package/dist/sdk/models/operations/listbankingaccountbalances.js +1 -1
- package/dist/sdk/models/operations/listbankingaccounts.d.ts +17 -2
- package/dist/sdk/models/operations/listbankingaccounts.js +1 -1
- package/dist/sdk/models/operations/listbankingtransactioncategories.d.ts +17 -2
- package/dist/sdk/models/operations/listbankingtransactioncategories.js +1 -1
- package/dist/sdk/models/operations/listbankingtransactions.d.ts +17 -2
- package/dist/sdk/models/operations/listbankingtransactions.js +1 -1
- package/dist/sdk/models/operations/listcommercecustomers.d.ts +17 -2
- package/dist/sdk/models/operations/listcommercecustomers.js +1 -1
- package/dist/sdk/models/operations/listcommercedisputes.d.ts +17 -2
- package/dist/sdk/models/operations/listcommercedisputes.js +1 -1
- package/dist/sdk/models/operations/listcommercelocations.d.ts +18 -3
- package/dist/sdk/models/operations/listcommercelocations.js +1 -1
- package/dist/sdk/models/operations/listcommerceorders.d.ts +17 -2
- package/dist/sdk/models/operations/listcommerceorders.js +1 -1
- package/dist/sdk/models/operations/listcommercepaymentmethods.d.ts +17 -2
- package/dist/sdk/models/operations/listcommercepaymentmethods.js +1 -1
- package/dist/sdk/models/operations/listcommercepayments.d.ts +17 -2
- package/dist/sdk/models/operations/listcommercepayments.js +1 -1
- package/dist/sdk/models/operations/listcommerceproductcategories.d.ts +17 -2
- package/dist/sdk/models/operations/listcommerceproductcategories.js +1 -1
- package/dist/sdk/models/operations/listcommerceproducts.d.ts +17 -2
- package/dist/sdk/models/operations/listcommerceproducts.js +1 -1
- package/dist/sdk/models/operations/listcommercetransactions.d.ts +17 -2
- package/dist/sdk/models/operations/listcommercetransactions.js +1 -1
- package/dist/sdk/models/operations/listcompanies.d.ts +11 -2
- package/dist/sdk/models/operations/listcompanies.js +1 -1
- package/dist/sdk/models/operations/listconnections.d.ts +14 -2
- package/dist/sdk/models/operations/listconnections.js +1 -1
- package/dist/sdk/models/operations/listcreateoperations.d.ts +14 -2
- package/dist/sdk/models/operations/listcreateoperations.js +1 -1
- package/dist/sdk/models/operations/listdataintegritydetails.d.ts +15 -3
- package/dist/sdk/models/operations/listdataintegritydetails.js +1 -1
- package/dist/sdk/models/operations/listfiles.d.ts +14 -2
- package/dist/sdk/models/operations/listfiles.js +1 -1
- package/dist/sdk/models/operations/listloantransactions.d.ts +19 -7
- package/dist/sdk/models/operations/listloantransactions.js +9 -9
- package/dist/sdk/models/operations/listpulloperations.d.ts +14 -2
- package/dist/sdk/models/operations/listpulloperations.js +1 -1
- package/dist/sdk/models/operations/listreconciledinvoices.d.ts +15 -3
- package/dist/sdk/models/operations/listreconciledinvoices.js +1 -1
- package/dist/sdk/models/operations/refreshalldatatypes.d.ts +14 -2
- package/dist/sdk/models/operations/refreshalldatatypes.js +1 -1
- package/dist/sdk/models/operations/refreshdatatype.d.ts +15 -3
- package/dist/sdk/models/operations/refreshdatatype.js +1 -1
- package/dist/sdk/models/operations/unlinkconnection.d.ts +17 -2
- package/dist/sdk/models/operations/unlinkconnection.js +1 -1
- package/dist/sdk/models/operations/updatecompany.d.ts +14 -2
- package/dist/sdk/models/operations/updatecompany.js +1 -1
- package/dist/sdk/models/operations/uploadfiles.d.ts +18 -3
- package/dist/sdk/models/operations/uploadfiles.js +3 -3
- package/dist/sdk/models/shared/accountingaccount.d.ts +16 -7
- package/dist/sdk/models/shared/accountingaccount.js +13 -6
- package/dist/sdk/models/shared/accountingaccounts.d.ts +9 -0
- package/dist/sdk/models/shared/accountingaccounttransaction.d.ts +4 -4
- package/dist/sdk/models/shared/accountingaccounttransaction.js +10 -10
- package/dist/sdk/models/shared/accountingaccounttransactions.d.ts +9 -0
- package/dist/sdk/models/shared/accountingagedcreditorreport.d.ts +1 -1
- package/dist/sdk/models/shared/accountingagedcreditorreport.js +1 -1
- package/dist/sdk/models/shared/accountingageddebtorreport.d.ts +1 -1
- package/dist/sdk/models/shared/accountingageddebtorreport.js +1 -1
- package/dist/sdk/models/shared/accountingattachment.d.ts +1 -1
- package/dist/sdk/models/shared/accountingattachment.js +1 -1
- package/dist/sdk/models/shared/accountingbankaccount.d.ts +10 -1
- package/dist/sdk/models/shared/accountingbankaccount.js +8 -1
- package/dist/sdk/models/shared/accountingbankaccounts.d.ts +9 -0
- package/dist/sdk/models/shared/accountingbanktransaction.d.ts +20 -2
- package/dist/sdk/models/shared/accountingbanktransaction.js +1 -1
- package/dist/sdk/models/shared/accountingbanktransactions.d.ts +9 -0
- package/dist/sdk/models/shared/accountingbill.d.ts +12 -6
- package/dist/sdk/models/shared/accountingbill.js +21 -21
- package/dist/sdk/models/shared/accountingbillcreditnote.d.ts +3 -3
- package/dist/sdk/models/shared/accountingbillcreditnote.js +3 -3
- package/dist/sdk/models/shared/accountingbillcreditnotes.d.ts +9 -0
- package/dist/sdk/models/shared/accountingbillpayment.d.ts +6 -5
- package/dist/sdk/models/shared/accountingbillpayment.js +7 -5
- package/dist/sdk/models/shared/accountingbillpayments.d.ts +9 -0
- package/dist/sdk/models/shared/accountingbills.d.ts +9 -0
- package/dist/sdk/models/shared/accountingcompanyinfo.d.ts +11 -2
- package/dist/sdk/models/shared/accountingcompanyinfo.js +9 -2
- package/dist/sdk/models/shared/accountingcreateaccountresponse.d.ts +17 -6
- package/dist/sdk/models/shared/accountingcreatebankaccountresponse.d.ts +12 -1
- package/dist/sdk/models/shared/accountingcreatebanktransactions.d.ts +3 -0
- package/dist/sdk/models/shared/accountingcreatebanktransactionsresponse.d.ts +11 -0
- package/dist/sdk/models/shared/accountingcreatedirectcostresponse.d.ts +12 -1
- package/dist/sdk/models/shared/accountingcreatepaymentresponse.d.ts +785 -0
- package/dist/sdk/models/shared/accountingcreatepaymentresponse.js +118 -0
- package/dist/sdk/models/shared/accountingcreatesupplierresponse.d.ts +12 -1
- package/dist/sdk/models/shared/accountingcreatetransferresponse.d.ts +12 -1
- package/dist/sdk/models/shared/accountingcreditnote.d.ts +10 -1
- package/dist/sdk/models/shared/accountingcreditnote.js +1 -1
- package/dist/sdk/models/shared/accountingcreditnotes.d.ts +9 -0
- package/dist/sdk/models/shared/accountingcustomer.d.ts +1 -1
- package/dist/sdk/models/shared/accountingcustomer.js +1 -1
- package/dist/sdk/models/shared/accountingcustomers.d.ts +9 -0
- package/dist/sdk/models/shared/accountingdirectcost.d.ts +17 -4
- package/dist/sdk/models/shared/accountingdirectcost.js +26 -5
- package/dist/sdk/models/shared/accountingdirectcosts.d.ts +9 -0
- package/dist/sdk/models/shared/accountingdirectincome.d.ts +5 -2
- package/dist/sdk/models/shared/accountingdirectincome.js +1 -1
- package/dist/sdk/models/shared/accountingdirectincomes.d.ts +9 -0
- package/dist/sdk/models/shared/accountinginvoice.d.ts +20 -7
- package/dist/sdk/models/shared/accountinginvoice.js +15 -14
- package/dist/sdk/models/shared/accountinginvoices.d.ts +9 -0
- package/dist/sdk/models/shared/accountingjournal.d.ts +2 -2
- package/dist/sdk/models/shared/accountingjournal.js +2 -2
- package/dist/sdk/models/shared/accountingjournalentries.d.ts +9 -0
- package/dist/sdk/models/shared/accountingjournalentry.d.ts +2 -2
- package/dist/sdk/models/shared/accountingjournalentry.js +2 -2
- package/dist/sdk/models/shared/accountingjournals.d.ts +9 -0
- package/dist/sdk/models/shared/accountingpayment.d.ts +538 -534
- package/dist/sdk/models/shared/accountingpayment.js +536 -534
- package/dist/sdk/models/shared/accountingpaymentallocation.d.ts +2 -2
- package/dist/sdk/models/shared/accountingpaymentallocation.js +12 -12
- package/dist/sdk/models/shared/accountingpayments.d.ts +9 -0
- package/dist/sdk/models/shared/accountingsupplier.d.ts +1 -1
- package/dist/sdk/models/shared/accountingsupplier.js +1 -1
- package/dist/sdk/models/shared/accountingsuppliers.d.ts +9 -0
- package/dist/sdk/models/shared/accountingtransfer.d.ts +10 -10
- package/dist/sdk/models/shared/accountingtransfer.js +5 -25
- package/dist/sdk/models/shared/accountingtransfers.d.ts +9 -0
- package/dist/sdk/models/shared/accountprototype.d.ts +129 -0
- package/dist/sdk/models/shared/accountprototype.js +167 -0
- package/dist/sdk/models/shared/accountspayabletracking.d.ts +6 -0
- package/dist/sdk/models/shared/accountsreceivabletracking.d.ts +8 -2
- package/dist/sdk/models/shared/accountsreceivabletracking.js +10 -10
- package/dist/sdk/models/shared/balancesheet.d.ts +3 -2
- package/dist/sdk/models/shared/balancesheet.js +5 -4
- package/dist/sdk/models/shared/bankingaccountbalance.d.ts +1 -1
- package/dist/sdk/models/shared/bankingaccountbalance.js +1 -1
- package/dist/sdk/models/shared/bankingaccountbalances.d.ts +9 -0
- package/dist/sdk/models/shared/bankingaccounts.d.ts +9 -0
- package/dist/sdk/models/shared/bankingtransactioncategories.d.ts +9 -0
- package/dist/sdk/models/shared/bankingtransactioncategory.d.ts +3 -0
- package/dist/sdk/models/shared/bankingtransactionref.d.ts +18 -0
- package/dist/sdk/models/shared/bankingtransactions.d.ts +9 -0
- package/dist/sdk/models/shared/banktransactiontype.d.ts +1 -1
- package/dist/sdk/models/shared/banktransactiontype.js +1 -1
- package/dist/sdk/models/shared/billcreditnotelineitem.d.ts +4 -4
- package/dist/sdk/models/shared/billcreditnotelineitem.js +20 -20
- package/dist/sdk/models/shared/billedtotype.d.ts +3 -0
- package/dist/sdk/models/shared/billedtotype.js +3 -0
- package/dist/sdk/models/shared/billedtotype1.d.ts +3 -0
- package/dist/sdk/models/shared/billedtotype1.js +3 -0
- package/dist/sdk/models/shared/billlineitem.d.ts +40 -2
- package/dist/sdk/models/shared/billlineitem.js +53 -4
- package/dist/sdk/models/shared/cashflowstatement.d.ts +3 -3
- package/dist/sdk/models/shared/cashflowstatement.js +5 -5
- package/dist/sdk/models/shared/commercecompanyinfo.d.ts +1 -1
- package/dist/sdk/models/shared/commercecompanyinfo.js +1 -1
- package/dist/sdk/models/shared/commercecustomers.d.ts +9 -0
- package/dist/sdk/models/shared/commercedisputes.d.ts +9 -0
- package/dist/sdk/models/shared/commercelocations.d.ts +9 -0
- package/dist/sdk/models/shared/commerceorder.d.ts +6 -15
- package/dist/sdk/models/shared/commerceorder.js +4 -23
- package/dist/sdk/models/shared/commerceorders.d.ts +9 -0
- package/dist/sdk/models/shared/commercepayment.d.ts +14 -1
- package/dist/sdk/models/shared/commercepayment.js +10 -1
- package/dist/sdk/models/shared/commercepaymentmethod.d.ts +10 -3
- package/dist/sdk/models/shared/commercepaymentmethod.js +10 -2
- package/dist/sdk/models/shared/commercepaymentmethods.d.ts +9 -0
- package/dist/sdk/models/shared/commercepayments.d.ts +9 -0
- package/dist/sdk/models/shared/commerceproduct.d.ts +11 -2
- package/dist/sdk/models/shared/commerceproduct.js +7 -0
- package/dist/sdk/models/shared/commerceproductcategories.d.ts +9 -0
- package/dist/sdk/models/shared/commerceproducts.d.ts +9 -0
- package/dist/sdk/models/shared/commercereportcomponent.d.ts +12 -0
- package/dist/sdk/models/shared/commercereportdimension.d.ts +12 -0
- package/dist/sdk/models/shared/commercereporterror.d.ts +9 -0
- package/dist/sdk/models/shared/commercereportmeasure.d.ts +12 -0
- package/dist/sdk/models/shared/commercetransaction.d.ts +9 -0
- package/dist/sdk/models/shared/commercetransaction.js +7 -0
- package/dist/sdk/models/shared/commercetransactions.d.ts +9 -0
- package/dist/sdk/models/shared/companies.d.ts +9 -0
- package/dist/sdk/models/shared/company.d.ts +5 -0
- package/dist/sdk/models/shared/connection.d.ts +8 -2
- package/dist/sdk/models/shared/connection.js +9 -9
- package/dist/sdk/models/shared/connections.d.ts +9 -0
- package/dist/sdk/models/shared/contactref.d.ts +9 -2
- package/dist/sdk/models/shared/contactref.js +2 -1
- package/dist/sdk/models/shared/createbankaccounttransaction.d.ts +12 -0
- package/dist/sdk/models/shared/creditnotelineitem.d.ts +5 -2
- package/dist/sdk/models/shared/creditnotelineitem.js +3 -3
- package/dist/sdk/models/shared/creditnotestatus.d.ts +3 -0
- package/dist/sdk/models/shared/creditnotestatus.js +3 -0
- package/dist/sdk/models/shared/dataconnectionerror.d.ts +9 -0
- package/dist/sdk/models/shared/dataintegritydetails.d.ts +9 -0
- package/dist/sdk/models/shared/datastatus.d.ts +61 -1
- package/dist/sdk/models/shared/datastatus.js +50 -1
- package/dist/sdk/models/shared/datatype.d.ts +1 -0
- package/dist/sdk/models/shared/datatype.js +1 -0
- package/dist/sdk/models/shared/directcostlineitem.d.ts +2 -2
- package/dist/sdk/models/shared/directcostlineitem.js +3 -3
- package/dist/sdk/models/shared/directcostprototype.d.ts +126 -0
- package/dist/sdk/models/shared/directcostprototype.js +129 -0
- package/dist/sdk/models/shared/directincomelineitem.d.ts +2 -2
- package/dist/sdk/models/shared/directincomelineitem.js +3 -3
- package/dist/sdk/models/shared/enhancedcashflowtransaction.d.ts +11 -0
- package/dist/sdk/models/shared/enhancedcashflowtransactions.d.ts +1 -1
- package/dist/sdk/models/shared/enhancedfinancialreport.d.ts +2 -2
- package/dist/sdk/models/shared/enhancedfinancialreport.js +13 -13
- package/dist/sdk/models/shared/enhancedinvoicereportitem.d.ts +10 -1
- package/dist/sdk/models/shared/enhancedinvoicesreport.d.ts +1 -1
- package/dist/sdk/models/shared/errormessage.d.ts +18 -0
- package/dist/sdk/models/shared/file.d.ts +9 -0
- package/dist/sdk/models/shared/halref.d.ts +3 -0
- package/dist/sdk/models/shared/index.d.ts +7 -2
- package/dist/sdk/models/shared/index.js +7 -2
- package/dist/sdk/models/shared/invoicelineitem.d.ts +5 -2
- package/dist/sdk/models/shared/invoicelineitem.js +3 -3
- package/dist/sdk/models/shared/itemref.d.ts +8 -7
- package/dist/sdk/models/shared/itemref.js +7 -5
- package/dist/sdk/models/shared/items.d.ts +6 -0
- package/dist/sdk/models/shared/lendingcustomerref.d.ts +2 -2
- package/dist/sdk/models/shared/loansummaryreportitem.d.ts +4 -0
- package/dist/sdk/models/shared/loansummaryreportitem.js +5 -0
- package/dist/sdk/models/shared/orderdiscountallocation.d.ts +1 -1
- package/dist/sdk/models/shared/orderlineitem.d.ts +5 -5
- package/dist/sdk/models/shared/payment.d.ts +7 -1
- package/dist/sdk/models/shared/paymentmethodref.d.ts +14 -0
- package/dist/sdk/models/shared/paymentmethodref.js +53 -0
- package/dist/sdk/models/shared/productinventory.d.ts +3 -0
- package/dist/sdk/models/shared/productinventorylocation.d.ts +3 -0
- package/dist/sdk/models/shared/productprice.d.ts +3 -0
- package/dist/sdk/models/shared/productref.d.ts +1 -1
- package/dist/sdk/models/shared/productvariant.d.ts +3 -0
- package/dist/sdk/models/shared/productvariantref.d.ts +1 -1
- package/dist/sdk/models/shared/productvariantstatus.d.ts +3 -0
- package/dist/sdk/models/shared/productvariantstatus.js +3 -0
- package/dist/sdk/models/shared/profitandlossreport.d.ts +6 -6
- package/dist/sdk/models/shared/profitandlossreport.js +11 -11
- package/dist/sdk/models/shared/projectref.d.ts +6 -0
- package/dist/sdk/models/shared/propertieitemref.d.ts +14 -0
- package/dist/sdk/models/shared/propertieitemref.js +53 -0
- package/dist/sdk/models/shared/pulloperation.d.ts +59 -0
- package/dist/sdk/models/shared/pulloperation.js +18 -0
- package/dist/sdk/models/shared/pulloperations.d.ts +9 -0
- package/dist/sdk/models/shared/pushchangetype.d.ts +3 -0
- package/dist/sdk/models/shared/pushchangetype.js +3 -0
- package/dist/sdk/models/shared/pushfieldvalidation.d.ts +9 -0
- package/dist/sdk/models/shared/pushoperation.d.ts +11 -0
- package/dist/sdk/models/shared/pushoperationchange.d.ts +6 -0
- package/dist/sdk/models/shared/pushoperationref.d.ts +3 -0
- package/dist/sdk/models/shared/pushoperations.d.ts +9 -0
- package/dist/sdk/models/shared/pushoption.d.ts +12 -0
- package/dist/sdk/models/shared/pushoptionchoice.d.ts +12 -0
- package/dist/sdk/models/shared/pushoptionproperty.d.ts +12 -0
- package/dist/sdk/models/shared/pushoptiontype.d.ts +3 -0
- package/dist/sdk/models/shared/pushoptiontype.js +3 -0
- package/dist/sdk/models/shared/reportcomponentmeasure.d.ts +9 -0
- package/dist/sdk/models/shared/reportinfo.d.ts +3 -3
- package/dist/sdk/models/shared/reportinfo.js +1 -1
- package/dist/sdk/models/shared/reportitems.d.ts +14 -4
- package/dist/sdk/models/shared/reportitems.js +19 -11
- package/dist/sdk/models/shared/reportlineinput.d.ts +20 -0
- package/dist/sdk/models/shared/reportlineinput.js +62 -0
- package/dist/sdk/models/shared/schemadatatype.d.ts +48 -0
- package/dist/sdk/models/shared/schemadatatype.js +55 -0
- package/dist/sdk/models/shared/servicecharge.d.ts +1 -1
- package/dist/sdk/models/shared/trackingcategoryref.d.ts +6 -0
- package/dist/sdk/models/shared/transactioncategorystatus.d.ts +3 -0
- package/dist/sdk/models/shared/transactioncategorystatus.js +3 -0
- package/dist/sdk/models/shared/transactionsourceref.d.ts +3 -0
- package/dist/sdk/models/shared/transactionsourcetype.d.ts +3 -0
- package/dist/sdk/models/shared/transactionsourcetype.js +3 -0
- package/dist/sdk/models/shared/transferaccount.d.ts +3 -0
- package/dist/sdk/models/shared/transferaccount.js +3 -0
- package/dist/sdk/models/shared/validationitem.d.ts +9 -0
- package/dist/sdk/models/shared/weblink.d.ts +2 -2
- package/dist/sdk/models/shared/weblink.js +7 -7
- package/dist/sdk/models/webhooks/accountcategoriesupdated.d.ts +10 -1
- package/dist/sdk/models/webhooks/clientratelimitreached.d.ts +10 -1
- package/dist/sdk/models/webhooks/clientratelimitreset.d.ts +10 -1
- package/dist/sdk/orders.d.ts +34 -0
- package/dist/sdk/orders.js +262 -0
- package/dist/sdk/paymentmethods.d.ts +34 -0
- package/dist/sdk/paymentmethods.js +262 -0
- package/dist/sdk/payments.d.ts +34 -0
- package/dist/sdk/payments.js +262 -0
- package/dist/sdk/productcategories.d.ts +34 -0
- package/dist/sdk/productcategories.js +262 -0
- package/dist/sdk/products.d.ts +34 -0
- package/dist/sdk/products.js +262 -0
- package/dist/sdk/profitandloss.d.ts +24 -0
- package/dist/sdk/profitandloss.js +253 -0
- package/dist/sdk/pulloperations.d.ts +22 -0
- package/dist/sdk/pulloperations.js +250 -0
- package/dist/sdk/refresh.d.ts +28 -0
- package/dist/sdk/refresh.js +250 -0
- package/dist/sdk/reports.d.ts +36 -0
- package/dist/sdk/reports.js +413 -0
- package/dist/sdk/sales.d.ts +22 -22
- package/dist/sdk/sales.js +22 -22
- package/dist/sdk/sdk.d.ts +23 -22
- package/dist/sdk/sdk.js +15 -14
- package/dist/sdk/suppliers.d.ts +74 -0
- package/dist/sdk/suppliers.js +530 -0
- package/dist/sdk/transactioncategories.d.ts +34 -0
- package/dist/sdk/transactioncategories.js +262 -0
- package/dist/sdk/transactions.d.ts +10 -10
- package/dist/sdk/transactions.js +10 -10
- package/dist/sdk/transfers.d.ts +40 -0
- package/dist/sdk/transfers.js +294 -0
- package/docs/{models → internal}/utils/retryconfig.md +0 -0
- package/docs/sdk/models/operations/createaccountrequest.md +12 -0
- package/docs/sdk/models/operations/createaccountresponse.md +12 -0
- package/docs/sdk/models/operations/createbankaccountrequest.md +12 -0
- package/docs/sdk/models/operations/createbankaccountresponse.md +12 -0
- package/docs/sdk/models/operations/createbanktransactionsrequest.md +13 -0
- package/docs/sdk/models/operations/createbanktransactionsresponse.md +12 -0
- package/docs/sdk/models/operations/createcompanyresponse.md +12 -0
- package/docs/sdk/models/operations/createconnectionrequest.md +9 -0
- package/docs/sdk/models/operations/createconnectionrequestbody.md +8 -0
- package/docs/sdk/models/operations/createconnectionresponse.md +12 -0
- package/docs/sdk/models/operations/createdirectcostrequest.md +12 -0
- package/docs/sdk/models/operations/createdirectcostresponse.md +12 -0
- package/docs/sdk/models/operations/createpaymentrequest.md +12 -0
- package/docs/sdk/models/operations/createpaymentresponse.md +12 -0
- package/docs/sdk/models/operations/createsupplierrequest.md +12 -0
- package/docs/sdk/models/operations/createsupplierresponse.md +12 -0
- package/docs/sdk/models/operations/createtransferrequest.md +12 -0
- package/docs/sdk/models/operations/createtransferresponse.md +12 -0
- package/docs/sdk/models/operations/deletecompanyrequest.md +8 -0
- package/docs/sdk/models/operations/deletecompanyresponse.md +11 -0
- package/docs/sdk/models/operations/deleteconnectionrequest.md +9 -0
- package/docs/sdk/models/operations/deleteconnectionresponse.md +11 -0
- package/docs/sdk/models/operations/downloadaccountingbillattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/downloadaccountingbillattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/downloadaccountingcustomerattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/downloadaccountingcustomerattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/downloadaccountingdirectcostattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/downloadaccountingdirectcostattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/downloadaccountingdirectincomeattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/downloadaccountingdirectincomeattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/downloadaccountinginvoiceattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/downloadaccountinginvoiceattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/downloadaccountinginvoicepdfrequest.md +9 -0
- package/docs/sdk/models/operations/downloadaccountinginvoicepdfresponse.md +12 -0
- package/docs/sdk/models/operations/downloadaccountingsupplierattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/downloadaccountingsupplierattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/downloadexcelreportrequest.md +9 -0
- package/docs/sdk/models/operations/downloadexcelreportresponse.md +12 -0
- package/docs/sdk/models/operations/downloadfilesrequest.md +9 -0
- package/docs/sdk/models/operations/downloadfilesresponse.md +12 -0
- package/docs/sdk/models/operations/generateexcelreportrequest.md +9 -0
- package/docs/sdk/models/operations/generateexcelreportresponse.md +12 -0
- package/docs/sdk/models/operations/generateloansummaryrequest.md +9 -0
- package/docs/sdk/models/operations/generateloansummaryresponse.md +11 -0
- package/docs/sdk/models/operations/generateloantransactionsrequest.md +9 -0
- package/docs/sdk/models/operations/generateloantransactionsresponse.md +11 -0
- package/docs/sdk/models/operations/getaccountingaccountrequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingaccountresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingaccounttransactionrequest.md +10 -0
- package/docs/sdk/models/operations/getaccountingaccounttransactionresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingagedcreditorsreportrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountingagedcreditorsreportresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingageddebtorsreportrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountingageddebtorsreportresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingbalancesheetrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountingbalancesheetresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingbankaccountrequest.md +10 -0
- package/docs/sdk/models/operations/getaccountingbankaccountresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingbillattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountingbillattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingbillcreditnoterequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingbillcreditnoteresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingbillpaymentrequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingbillpaymentresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingbillrequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingbillresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingcashflowstatementrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountingcashflowstatementresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingcreditnoterequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingcreditnoteresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingcustomerattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountingcustomerattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingcustomerrequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingcustomerresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingdirectcostattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountingdirectcostattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingdirectcostrequest.md +10 -0
- package/docs/sdk/models/operations/getaccountingdirectcostresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingdirectincomeattachmentrequest.md +12 -0
- package/docs/sdk/models/operations/getaccountingdirectincomeattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingdirectincomerequest.md +10 -0
- package/docs/sdk/models/operations/getaccountingdirectincomeresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountinginvoiceattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountinginvoiceattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountinginvoicerequest.md +9 -0
- package/docs/sdk/models/operations/getaccountinginvoiceresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingjournalentryrequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingjournalentryresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingjournalrequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingjournalresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingpaymentrequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingpaymentresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingprofilerequest.md +8 -0
- package/docs/sdk/models/operations/getaccountingprofileresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingprofitandlossrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountingprofitandlossresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingsupplierattachmentrequest.md +11 -0
- package/docs/sdk/models/operations/getaccountingsupplierattachmentresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingsupplierrequest.md +9 -0
- package/docs/sdk/models/operations/getaccountingsupplierresponse.md +12 -0
- package/docs/sdk/models/operations/getaccountingtransferrequest.md +10 -0
- package/docs/sdk/models/operations/getaccountingtransferresponse.md +12 -0
- package/docs/sdk/models/operations/getbankingaccountrequest.md +10 -0
- package/docs/sdk/models/operations/getbankingaccountresponse.md +12 -0
- package/docs/sdk/models/operations/getbankingtransactioncategoryrequest.md +10 -0
- package/docs/sdk/models/operations/getbankingtransactioncategoryresponse.md +12 -0
- package/docs/sdk/models/operations/getbankingtransactionrequest.md +10 -0
- package/docs/sdk/models/operations/getbankingtransactionresponse.md +12 -0
- package/docs/sdk/models/operations/getcategorizedbalancesheetstatementrequest.md +10 -0
- package/docs/sdk/models/operations/getcategorizedbalancesheetstatementresponse.md +12 -0
- package/docs/sdk/models/operations/getcategorizedbankstatementrequest.md +11 -0
- package/docs/sdk/models/operations/getcategorizedbankstatementresponse.md +12 -0
- package/docs/sdk/models/operations/getcategorizedprofitandlossstatementrequest.md +10 -0
- package/docs/sdk/models/operations/getcategorizedprofitandlossstatementresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercecustomerrequest.md +10 -0
- package/docs/sdk/models/operations/getcommercecustomerresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercecustomerretentionmetricsrequest.md +14 -0
- package/docs/sdk/models/operations/getcommercecustomerretentionmetricsresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercedisputerequest.md +10 -0
- package/docs/sdk/models/operations/getcommercedisputeresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercelifetimevaluemetricsrequest.md +14 -0
- package/docs/sdk/models/operations/getcommercelifetimevaluemetricsresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercelocationrequest.md +10 -0
- package/docs/sdk/models/operations/getcommercelocationresponse.md +12 -0
- package/docs/sdk/models/operations/getcommerceorderrequest.md +10 -0
- package/docs/sdk/models/operations/getcommerceorderresponse.md +12 -0
- package/docs/sdk/models/operations/getcommerceordersreportrequest.md +14 -0
- package/docs/sdk/models/operations/getcommerceordersreportresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercepaymentmethodrequest.md +10 -0
- package/docs/sdk/models/operations/getcommercepaymentmethodresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercepaymentrequest.md +10 -0
- package/docs/sdk/models/operations/getcommercepaymentresponse.md +12 -0
- package/docs/sdk/models/operations/getcommerceproductcategoryrequest.md +10 -0
- package/docs/sdk/models/operations/getcommerceproductcategoryresponse.md +12 -0
- package/docs/sdk/models/operations/getcommerceproductrequest.md +10 -0
- package/docs/sdk/models/operations/getcommerceproductresponse.md +12 -0
- package/docs/sdk/models/operations/getcommerceprofilerequest.md +9 -0
- package/docs/sdk/models/operations/getcommerceprofileresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercerefundsreportrequest.md +14 -0
- package/docs/sdk/models/operations/getcommercerefundsreportresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercerevenuemetricsrequest.md +14 -0
- package/docs/sdk/models/operations/getcommercerevenuemetricsresponse.md +12 -0
- package/docs/sdk/models/operations/getcommercetransactionrequest.md +10 -0
- package/docs/sdk/models/operations/getcommercetransactionresponse.md +12 -0
- package/docs/sdk/models/operations/getcompanyrequest.md +8 -0
- package/docs/sdk/models/operations/getcompanyresponse.md +12 -0
- package/docs/sdk/models/operations/getconnectionrequest.md +9 -0
- package/docs/sdk/models/operations/getconnectionresponse.md +12 -0
- package/docs/sdk/models/operations/getcreatebanktransactionsmodelrequest.md +10 -0
- package/docs/sdk/models/operations/getcreatebanktransactionsmodelresponse.md +12 -0
- package/docs/sdk/models/operations/getcreatechartofaccountsmodelrequest.md +9 -0
- package/docs/sdk/models/operations/getcreatechartofaccountsmodelresponse.md +12 -0
- package/docs/sdk/models/operations/getcreatedirectcostsmodelrequest.md +9 -0
- package/docs/sdk/models/operations/getcreatedirectcostsmodelresponse.md +12 -0
- package/docs/sdk/models/operations/getcreateoperationrequest.md +9 -0
- package/docs/sdk/models/operations/getcreateoperationresponse.md +12 -0
- package/docs/sdk/models/operations/getcreatepaymentmodelrequest.md +9 -0
- package/docs/sdk/models/operations/getcreatepaymentmodelresponse.md +12 -0
- package/docs/sdk/models/operations/getcreatetransfersmodelrequest.md +9 -0
- package/docs/sdk/models/operations/getcreatetransfersmodelresponse.md +12 -0
- package/docs/sdk/models/operations/getcreateupdatebankaccountsmodelrequest.md +9 -0
- package/docs/sdk/models/operations/getcreateupdatebankaccountsmodelresponse.md +12 -0
- package/docs/sdk/models/operations/getcreateupdatesuppliersmodelrequest.md +9 -0
- package/docs/sdk/models/operations/getcreateupdatesuppliersmodelresponse.md +12 -0
- package/docs/sdk/models/operations/getdataintegritystatusrequest.md +9 -0
- package/docs/sdk/models/operations/getdataintegritystatusresponse.md +12 -0
- package/docs/sdk/models/operations/getdataintegritysummariesrequest.md +10 -0
- package/docs/sdk/models/operations/getdataintegritysummariesresponse.md +12 -0
- package/docs/sdk/models/operations/getdatastatusrequest.md +8 -0
- package/docs/sdk/models/operations/getdatastatusresponse.md +12 -0
- package/docs/sdk/models/operations/getexcelreportgenerationstatusrequest.md +9 -0
- package/docs/sdk/models/operations/getexcelreportgenerationstatusresponse.md +12 -0
- package/docs/sdk/models/operations/getloansummaryqueryparamsourcetype.md +12 -0
- package/docs/sdk/models/operations/getloansummaryrequest.md +9 -0
- package/docs/sdk/models/operations/getloansummaryresponse.md +12 -0
- package/docs/sdk/models/operations/getpulloperationrequest.md +9 -0
- package/docs/sdk/models/operations/getpulloperationresponse.md +12 -0
- package/docs/sdk/models/operations/isagedcreditorsreportavailablerequest.md +8 -0
- package/docs/sdk/models/operations/isagedcreditorsreportavailableresponse.md +12 -0
- package/docs/sdk/models/operations/isageddebtorsreportavailablerequest.md +8 -0
- package/docs/sdk/models/operations/isageddebtorsreportavailableresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingaccountsrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingaccountsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingaccounttransactionsrequest.md +13 -0
- package/docs/sdk/models/operations/listaccountingaccounttransactionsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingbankaccountsrequest.md +13 -0
- package/docs/sdk/models/operations/listaccountingbankaccountsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingbankaccounttransactionsrequest.md +14 -0
- package/docs/sdk/models/operations/listaccountingbankaccounttransactionsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingbillattachmentsrequest.md +10 -0
- package/docs/sdk/models/operations/listaccountingbillattachmentsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingbillcreditnotesrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingbillcreditnotesresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingbillpaymentsrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingbillpaymentsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingbillsrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingbillsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingcreditnotesrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingcreditnotesresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingcustomerattachmentsrequest.md +10 -0
- package/docs/sdk/models/operations/listaccountingcustomerattachmentsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingcustomersrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingcustomersresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingdirectcostattachmentsrequest.md +10 -0
- package/docs/sdk/models/operations/listaccountingdirectcostattachmentsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingdirectcostsrequest.md +13 -0
- package/docs/sdk/models/operations/listaccountingdirectcostsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingdirectincomeattachmentsrequest.md +10 -0
- package/docs/sdk/models/operations/listaccountingdirectincomeattachmentsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingdirectincomesrequest.md +13 -0
- package/docs/sdk/models/operations/listaccountingdirectincomesresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountinginvoiceattachmentsrequest.md +10 -0
- package/docs/sdk/models/operations/listaccountinginvoiceattachmentsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountinginvoicesrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountinginvoicesresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingjournalentriesrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingjournalentriesresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingjournalsrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingjournalsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingpaymentsrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingpaymentsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingsupplierattachmentsrequest.md +10 -0
- package/docs/sdk/models/operations/listaccountingsupplierattachmentsresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingsuppliersrequest.md +12 -0
- package/docs/sdk/models/operations/listaccountingsuppliersresponse.md +12 -0
- package/docs/sdk/models/operations/listaccountingtransfersrequest.md +13 -0
- package/docs/sdk/models/operations/listaccountingtransfersresponse.md +12 -0
- package/docs/sdk/models/operations/listbankingaccountbalancesrequest.md +13 -0
- package/docs/sdk/models/operations/listbankingaccountbalancesresponse.md +12 -0
- package/docs/sdk/models/operations/listbankingaccountsrequest.md +13 -0
- package/docs/sdk/models/operations/listbankingaccountsresponse.md +12 -0
- package/docs/sdk/models/operations/listbankingtransactioncategoriesrequest.md +13 -0
- package/docs/sdk/models/operations/listbankingtransactioncategoriesresponse.md +12 -0
- package/docs/sdk/models/operations/listbankingtransactionsrequest.md +13 -0
- package/docs/sdk/models/operations/listbankingtransactionsresponse.md +12 -0
- package/docs/sdk/models/operations/listcommercecustomersrequest.md +13 -0
- package/docs/sdk/models/operations/listcommercecustomersresponse.md +12 -0
- package/docs/sdk/models/operations/listcommercedisputesrequest.md +13 -0
- package/docs/sdk/models/operations/listcommercedisputesresponse.md +12 -0
- package/docs/sdk/models/operations/listcommercelocationsrequest.md +9 -0
- package/docs/sdk/models/operations/listcommercelocationsresponse.md +12 -0
- package/docs/sdk/models/operations/listcommerceordersrequest.md +13 -0
- package/docs/sdk/models/operations/listcommerceordersresponse.md +12 -0
- package/docs/sdk/models/operations/listcommercepaymentmethodsrequest.md +13 -0
- package/docs/sdk/models/operations/listcommercepaymentmethodsresponse.md +12 -0
- package/docs/sdk/models/operations/listcommercepaymentsrequest.md +13 -0
- package/docs/sdk/models/operations/listcommercepaymentsresponse.md +12 -0
- package/docs/sdk/models/operations/listcommerceproductcategoriesrequest.md +13 -0
- package/docs/sdk/models/operations/listcommerceproductcategoriesresponse.md +12 -0
- package/docs/sdk/models/operations/listcommerceproductsrequest.md +13 -0
- package/docs/sdk/models/operations/listcommerceproductsresponse.md +12 -0
- package/docs/sdk/models/operations/listcommercetransactionsrequest.md +13 -0
- package/docs/sdk/models/operations/listcommercetransactionsresponse.md +12 -0
- package/docs/{models → sdk/models}/operations/listcompaniesrequest.md +0 -0
- package/docs/sdk/models/operations/listcompaniesresponse.md +12 -0
- package/docs/sdk/models/operations/listconnectionsrequest.md +12 -0
- package/docs/sdk/models/operations/listconnectionsresponse.md +12 -0
- package/docs/sdk/models/operations/listcreateoperationsrequest.md +12 -0
- package/docs/sdk/models/operations/listcreateoperationsresponse.md +12 -0
- package/docs/sdk/models/operations/listdataintegritydetailsrequest.md +13 -0
- package/docs/sdk/models/operations/listdataintegritydetailsresponse.md +12 -0
- package/docs/sdk/models/operations/listfilesrequest.md +8 -0
- package/docs/sdk/models/operations/listfilesresponse.md +12 -0
- package/docs/sdk/models/operations/listloantransactionsqueryparamsourcetype.md +12 -0
- package/docs/sdk/models/operations/listloantransactionsrequest.md +9 -0
- package/docs/sdk/models/operations/listloantransactionsresponse.md +12 -0
- package/docs/sdk/models/operations/listpulloperationsrequest.md +12 -0
- package/docs/sdk/models/operations/listpulloperationsresponse.md +12 -0
- package/docs/sdk/models/operations/listreconciledinvoicesrequest.md +11 -0
- package/docs/sdk/models/operations/listreconciledinvoicesresponse.md +12 -0
- package/docs/sdk/models/operations/queryparamsourcetype.md +12 -0
- package/docs/sdk/models/operations/refreshalldatatypesrequest.md +8 -0
- package/docs/sdk/models/operations/refreshalldatatypesresponse.md +11 -0
- package/docs/sdk/models/operations/refreshdatatyperequest.md +10 -0
- package/docs/sdk/models/operations/refreshdatatyperesponse.md +12 -0
- package/docs/sdk/models/operations/sourcetype.md +12 -0
- package/docs/sdk/models/operations/unlinkconnectionrequest.md +10 -0
- package/docs/sdk/models/operations/unlinkconnectionresponse.md +12 -0
- package/docs/sdk/models/operations/unlinkconnectionupdateconnection.md +8 -0
- package/docs/sdk/models/operations/updatecompanyrequest.md +9 -0
- package/docs/sdk/models/operations/updatecompanyresponse.md +12 -0
- package/docs/sdk/models/operations/uploadfilesrequest.md +10 -0
- package/docs/sdk/models/operations/uploadfilesrequestbody.md +9 -0
- package/docs/sdk/models/operations/uploadfilesresponse.md +11 -0
- package/docs/{models → sdk/models}/shared/accountbalance.md +0 -0
- package/docs/{models → sdk/models}/shared/accountbalanceamounts.md +0 -0
- package/docs/sdk/models/shared/accountcategoriesupdatedwebhook.md +18 -0
- package/docs/{models → sdk/models}/shared/accountcategoriesupdatedwebhookdata.md +0 -0
- package/docs/{models → sdk/models}/shared/accountcategorylevel.md +0 -0
- package/docs/sdk/models/shared/accountidentifiers.md +16 -0
- package/docs/{models → sdk/models}/shared/accountidentifiertype.md +0 -0
- package/docs/sdk/models/shared/accountingaccount.md +52 -0
- package/docs/sdk/models/shared/accountingaccounts.md +12 -0
- package/docs/sdk/models/shared/accountingaccounttransaction.md +38 -0
- package/docs/sdk/models/shared/accountingaccounttransactions.md +12 -0
- package/docs/{models → sdk/models}/shared/accountingaccountvaliddatatypelinks.md +0 -0
- package/docs/sdk/models/shared/accountingaddress.md +14 -0
- package/docs/{models → sdk/models}/shared/accountingaddresstype.md +0 -0
- package/docs/sdk/models/shared/accountingagedcreditorreport.md +43 -0
- package/docs/sdk/models/shared/accountingageddebtorreport.md +43 -0
- package/docs/sdk/models/shared/accountingattachment.md +34 -0
- package/docs/sdk/models/shared/accountingbalancesheet.md +30 -0
- package/docs/sdk/models/shared/accountingbankaccount.md +40 -0
- package/docs/sdk/models/shared/accountingbankaccounts.md +12 -0
- package/docs/{models → sdk/models}/shared/accountingbankaccounttype.md +0 -0
- package/docs/sdk/models/shared/accountingbanktransaction.md +34 -0
- package/docs/sdk/models/shared/accountingbanktransactions.md +12 -0
- package/docs/sdk/models/shared/accountingbill.md +48 -0
- package/docs/sdk/models/shared/accountingbillcreditnote.md +46 -0
- package/docs/sdk/models/shared/accountingbillcreditnotes.md +12 -0
- package/docs/sdk/models/shared/accountingbillpayment.md +174 -0
- package/docs/sdk/models/shared/accountingbillpayments.md +12 -0
- package/docs/sdk/models/shared/accountingbills.md +12 -0
- package/docs/sdk/models/shared/accountingcashflowstatement.md +27 -0
- package/docs/sdk/models/shared/accountingcompanyinfo.md +29 -0
- package/docs/sdk/models/shared/accountingcreateaccountresponse.md +21 -0
- package/docs/sdk/models/shared/accountingcreatebankaccountresponse.md +21 -0
- package/docs/sdk/models/shared/accountingcreatebanktransactions.md +9 -0
- package/docs/sdk/models/shared/accountingcreatebanktransactionsresponse.md +21 -0
- package/docs/sdk/models/shared/accountingcreatedirectcostresponse.md +21 -0
- package/docs/sdk/models/shared/accountingcreatepaymentresponse.md +21 -0
- package/docs/sdk/models/shared/accountingcreatesupplierresponse.md +21 -0
- package/docs/sdk/models/shared/accountingcreatetransferresponse.md +21 -0
- package/docs/sdk/models/shared/accountingcreditnote.md +44 -0
- package/docs/sdk/models/shared/accountingcreditnotes.md +12 -0
- package/docs/sdk/models/shared/accountingcustomer.md +31 -0
- package/docs/{models → sdk/models}/shared/accountingcustomerref.md +0 -0
- package/docs/sdk/models/shared/accountingcustomers.md +12 -0
- package/docs/sdk/models/shared/accountingdirectcost.md +39 -0
- package/docs/sdk/models/shared/accountingdirectcostcontactref.md +11 -0
- package/docs/sdk/models/shared/accountingdirectcosts.md +12 -0
- package/docs/sdk/models/shared/accountingdirectincome.md +40 -0
- package/docs/sdk/models/shared/accountingdirectincomes.md +12 -0
- package/docs/sdk/models/shared/accountinginvoice.md +63 -0
- package/docs/sdk/models/shared/accountinginvoices.md +12 -0
- package/docs/sdk/models/shared/accountingjournal.md +42 -0
- package/docs/sdk/models/shared/accountingjournalentries.md +12 -0
- package/docs/sdk/models/shared/accountingjournalentry.md +42 -0
- package/docs/sdk/models/shared/accountingjournals.md +12 -0
- package/docs/sdk/models/shared/accountingpayment.md +701 -0
- package/docs/sdk/models/shared/accountingpaymentallocation.md +9 -0
- package/docs/sdk/models/shared/accountingpayments.md +12 -0
- package/docs/sdk/models/shared/accountingprofitandlossreport.md +35 -0
- package/docs/sdk/models/shared/accountingsupplier.md +27 -0
- package/docs/sdk/models/shared/accountingsuppliers.md +12 -0
- package/docs/sdk/models/shared/accountingtransfer.md +23 -0
- package/docs/sdk/models/shared/accountingtransfers.md +12 -0
- package/docs/{models → sdk/models}/shared/accountinstitution.md +0 -0
- package/docs/sdk/models/shared/accountprototype.md +19 -0
- package/docs/{models → sdk/models}/shared/accountref.md +0 -0
- package/docs/sdk/models/shared/accounts.md +14 -0
- package/docs/sdk/models/shared/accountspayabletracking.md +14 -0
- package/docs/sdk/models/shared/accountsreceivabletracking.md +15 -0
- package/docs/{models → sdk/models}/shared/accountstatus.md +0 -0
- package/docs/sdk/models/shared/accounttransactionline.md +10 -0
- package/docs/{models → sdk/models}/shared/accounttype.md +0 -0
- package/docs/sdk/models/shared/agedcreditor.md +10 -0
- package/docs/sdk/models/shared/agedcurrencyoutstanding.md +9 -0
- package/docs/sdk/models/shared/ageddebtor.md +10 -0
- package/docs/sdk/models/shared/agedoutstandingamount.md +11 -0
- package/docs/{models → sdk/models}/shared/agedoutstandingamountdetail.md +0 -0
- package/docs/sdk/models/shared/allocation.md +11 -0
- package/docs/sdk/models/shared/attachments.md +8 -0
- package/docs/sdk/models/shared/balancesheet.md +12 -0
- package/docs/{models → sdk/models}/shared/bankaccountref.md +0 -0
- package/docs/sdk/models/shared/bankingaccount.md +24 -0
- package/docs/sdk/models/shared/bankingaccountbalance.md +22 -0
- package/docs/sdk/models/shared/bankingaccountbalances.md +12 -0
- package/docs/sdk/models/shared/bankingaccounts.md +12 -0
- package/docs/sdk/models/shared/bankingtransaction.md +25 -0
- package/docs/sdk/models/shared/bankingtransactioncategories.md +12 -0
- package/docs/sdk/models/shared/bankingtransactioncategory.md +16 -0
- package/docs/sdk/models/shared/bankingtransactionref.md +14 -0
- package/docs/sdk/models/shared/bankingtransactions.md +12 -0
- package/docs/sdk/models/shared/banktransactiontype.md +27 -0
- package/docs/sdk/models/shared/billcreditnotelineitem.md +20 -0
- package/docs/{models → sdk/models}/shared/billcreditnotestatus.md +0 -0
- package/docs/sdk/models/shared/billedtotype.md +13 -0
- package/docs/sdk/models/shared/billedtotype1.md +12 -0
- package/docs/sdk/models/shared/billlineitem.md +24 -0
- package/docs/sdk/models/shared/billlineitemdatatype.md +10 -0
- package/docs/sdk/models/shared/billpaymentline.md +10 -0
- package/docs/sdk/models/shared/billpaymentlinelink.md +11 -0
- package/docs/{models → sdk/models}/shared/billpaymentlinelinktype.md +0 -0
- package/docs/{models → sdk/models}/shared/billstatus.md +0 -0
- package/docs/sdk/models/shared/cashflowstatement.md +11 -0
- package/docs/sdk/models/shared/clientratelimitreachedwebhook.md +16 -0
- package/docs/{models → sdk/models}/shared/clientratelimitreachedwebhookdata.md +0 -0
- package/docs/sdk/models/shared/clientratelimitresetwebhook.md +16 -0
- package/docs/{models → sdk/models}/shared/clientratelimitresetwebhookdata.md +0 -0
- package/docs/sdk/models/shared/commerceaddress.md +14 -0
- package/docs/{models → sdk/models}/shared/commerceaddresstype.md +0 -0
- package/docs/sdk/models/shared/commercecompanyinfo.md +26 -0
- package/docs/sdk/models/shared/commercecustomer.md +21 -0
- package/docs/{models → sdk/models}/shared/commercecustomerref.md +0 -0
- package/docs/sdk/models/shared/commercecustomers.md +12 -0
- package/docs/sdk/models/shared/commercedispute.md +26 -0
- package/docs/sdk/models/shared/commercedisputes.md +12 -0
- package/docs/sdk/models/shared/commercelocation.md +18 -0
- package/docs/sdk/models/shared/commercelocations.md +12 -0
- package/docs/sdk/models/shared/commerceorder.md +31 -0
- package/docs/sdk/models/shared/commerceorders.md +12 -0
- package/docs/sdk/models/shared/commercepayment.md +26 -0
- package/docs/sdk/models/shared/commercepaymentmethod.md +16 -0
- package/docs/sdk/models/shared/commercepaymentmethods.md +12 -0
- package/docs/sdk/models/shared/commercepaymentmethodstatus.md +12 -0
- package/docs/sdk/models/shared/commercepayments.md +12 -0
- package/docs/sdk/models/shared/commerceproduct.md +19 -0
- package/docs/sdk/models/shared/commerceproductcategories.md +12 -0
- package/docs/sdk/models/shared/commerceproductcategory.md +17 -0
- package/docs/sdk/models/shared/commerceproducts.md +12 -0
- package/docs/{models → sdk/models}/shared/commercerecordref.md +0 -0
- package/docs/sdk/models/shared/commercereport.md +54 -0
- package/docs/sdk/models/shared/commercereportcomponent.md +13 -0
- package/docs/sdk/models/shared/commercereportdimension.md +11 -0
- package/docs/sdk/models/shared/commercereportdimensionitems.md +8 -0
- package/docs/sdk/models/shared/commercereporterror.md +10 -0
- package/docs/sdk/models/shared/commercereportmeasure.md +11 -0
- package/docs/sdk/models/shared/commercetransaction.md +29 -0
- package/docs/sdk/models/shared/commercetransactions.md +12 -0
- package/docs/sdk/models/shared/companies.md +12 -0
- package/docs/sdk/models/shared/company.md +22 -0
- package/docs/{models → sdk/models}/shared/companyrequestbody.md +0 -0
- package/docs/sdk/models/shared/connection.md +31 -0
- package/docs/sdk/models/shared/connections.md +12 -0
- package/docs/sdk/models/shared/contact.md +13 -0
- package/docs/sdk/models/shared/contactref.md +11 -0
- package/docs/sdk/models/shared/createbankaccounttransaction.md +12 -0
- package/docs/sdk/models/shared/creditnotelineitem.md +21 -0
- package/docs/sdk/models/shared/creditnotestatus.md +15 -0
- package/docs/{models → sdk/models}/shared/customerstatus.md +0 -0
- package/docs/sdk/models/shared/dataconnectionerror.md +11 -0
- package/docs/{models → sdk/models}/shared/dataconnectionstatus.md +0 -0
- package/docs/{models → sdk/models}/shared/dataintegrityamounts.md +0 -0
- package/docs/{models → sdk/models}/shared/dataintegritybyamount.md +0 -0
- package/docs/{models → sdk/models}/shared/dataintegritybycount.md +0 -0
- package/docs/{models → sdk/models}/shared/dataintegrityconnectionid.md +0 -0
- package/docs/{models → sdk/models}/shared/dataintegritydatatype.md +0 -0
- package/docs/{models → sdk/models}/shared/dataintegritydates.md +0 -0
- package/docs/sdk/models/shared/dataintegritydetail.md +15 -0
- package/docs/sdk/models/shared/dataintegritydetails.md +12 -0
- package/docs/{models → sdk/models}/shared/dataintegritymatch.md +0 -0
- package/docs/sdk/models/shared/dataintegritystatus.md +12 -0
- package/docs/sdk/models/shared/dataintegritystatuses.md +8 -0
- package/docs/sdk/models/shared/dataintegritystatusinfo.md +10 -0
- package/docs/sdk/models/shared/dataintegritysummaries.md +8 -0
- package/docs/sdk/models/shared/dataintegritysummary.md +10 -0
- package/docs/sdk/models/shared/datasource.md +8 -0
- package/docs/sdk/models/shared/datastatus.md +14 -0
- package/docs/sdk/models/shared/datatype.md +52 -0
- package/docs/sdk/models/shared/datatypes.md +52 -0
- package/docs/sdk/models/shared/directcostlineitem.md +20 -0
- package/docs/sdk/models/shared/directcostprototype.md +19 -0
- package/docs/sdk/models/shared/directcostprototypecontactref.md +11 -0
- package/docs/sdk/models/shared/directincomelineitem.md +19 -0
- package/docs/{models → sdk/models}/shared/disputestatus.md +0 -0
- package/docs/sdk/models/shared/enhancedcashflowitem.md +8 -0
- package/docs/sdk/models/shared/enhancedcashflowtransaction.md +16 -0
- package/docs/sdk/models/shared/enhancedcashflowtransactions.md +16 -0
- package/docs/sdk/models/shared/enhancedfinancialreport.md +9 -0
- package/docs/sdk/models/shared/enhancedinvoicereportitem.md +20 -0
- package/docs/sdk/models/shared/enhancedinvoicesreport.md +11 -0
- package/docs/sdk/models/shared/enhancedreportaccountcategory.md +9 -0
- package/docs/{models → sdk/models}/shared/enhancedreportinfo.md +0 -0
- package/docs/sdk/models/shared/errormessage.md +13 -0
- package/docs/{models → sdk/models}/shared/excelreporttypes.md +0 -0
- package/docs/sdk/models/shared/excelstatus.md +15 -0
- package/docs/sdk/models/shared/file.md +11 -0
- package/docs/sdk/models/shared/halref.md +8 -0
- package/docs/{models → sdk/models}/shared/integritystatus.md +0 -0
- package/docs/sdk/models/shared/invoicelineitem.md +21 -0
- package/docs/{models → sdk/models}/shared/invoicestatus.md +0 -0
- package/docs/sdk/models/shared/itemref.md +10 -0
- package/docs/sdk/models/shared/itemreference.md +11 -0
- package/docs/sdk/models/shared/items.md +9 -0
- package/docs/sdk/models/shared/journalline.md +12 -0
- package/docs/sdk/models/shared/journallinetracking.md +10 -0
- package/docs/{models → sdk/models}/shared/journalref.md +0 -0
- package/docs/{models → sdk/models}/shared/journalstatus.md +0 -0
- package/docs/sdk/models/shared/lendingcustomerref.md +9 -0
- package/docs/sdk/models/shared/links.md +11 -0
- package/docs/{models → sdk/models}/shared/loanref.md +0 -0
- package/docs/sdk/models/shared/loansummary.md +9 -0
- package/docs/{models → sdk/models}/shared/loansummaryintegrationtype.md +0 -0
- package/docs/sdk/models/shared/loansummaryrecordref.md +11 -0
- package/docs/{models → sdk/models}/shared/loansummaryrecordreftype.md +0 -0
- package/docs/{models → sdk/models}/shared/loansummaryreportinfo.md +0 -0
- package/docs/sdk/models/shared/loansummaryreportitem.md +14 -0
- package/docs/sdk/models/shared/loantransactions.md +10 -0
- package/docs/{models → sdk/models}/shared/loantransactionsreportinfo.md +0 -0
- package/docs/sdk/models/shared/loantransactiontype.md +13 -0
- package/docs/{models → sdk/models}/shared/locationref.md +0 -0
- package/docs/{models → sdk/models}/shared/metadata.md +0 -0
- package/docs/sdk/models/shared/orderdiscountallocation.md +9 -0
- package/docs/sdk/models/shared/orderlineitem.md +17 -0
- package/docs/sdk/models/shared/payment.md +14 -0
- package/docs/sdk/models/shared/paymentallocationpayment.md +15 -0
- package/docs/sdk/models/shared/paymentline.md +10 -0
- package/docs/sdk/models/shared/paymentlinelink.md +11 -0
- package/docs/{models → sdk/models}/shared/paymentlinktype.md +0 -0
- package/docs/sdk/models/shared/paymentmethodref.md +11 -0
- package/docs/sdk/models/shared/paymentref.md +17 -0
- package/docs/{models → sdk/models}/shared/paymentstatus.md +0 -0
- package/docs/{models → sdk/models}/shared/paymenttype.md +0 -0
- package/docs/{models → sdk/models}/shared/periodunit.md +0 -0
- package/docs/sdk/models/shared/phonenumber.md +9 -0
- package/docs/{models → sdk/models}/shared/phonenumbertype.md +0 -0
- package/docs/sdk/models/shared/productinventory.md +11 -0
- package/docs/sdk/models/shared/productinventorylocation.md +9 -0
- package/docs/sdk/models/shared/productprice.md +9 -0
- package/docs/sdk/models/shared/productref.md +11 -0
- package/docs/sdk/models/shared/productvariant.md +24 -0
- package/docs/sdk/models/shared/productvariantref.md +11 -0
- package/docs/sdk/models/shared/productvariantstatus.md +12 -0
- package/docs/sdk/models/shared/profitandlossreport.md +18 -0
- package/docs/sdk/models/shared/projectref.md +9 -0
- package/docs/sdk/models/shared/propertieitemref.md +11 -0
- package/docs/sdk/models/shared/pulloperation.md +22 -0
- package/docs/sdk/models/shared/pulloperations.md +12 -0
- package/docs/sdk/models/shared/pulloperationstatus.md +32 -0
- package/docs/sdk/models/shared/purchaseorderreference.md +9 -0
- package/docs/sdk/models/shared/pushchangetype.md +14 -0
- package/docs/sdk/models/shared/pushfieldvalidation.md +10 -0
- package/docs/sdk/models/shared/pushoperation.md +20 -0
- package/docs/sdk/models/shared/pushoperationchange.md +10 -0
- package/docs/sdk/models/shared/pushoperationref.md +9 -0
- package/docs/sdk/models/shared/pushoperations.md +12 -0
- package/docs/{models → sdk/models}/shared/pushoperationstatus.md +0 -0
- package/docs/sdk/models/shared/pushoption.md +14 -0
- package/docs/sdk/models/shared/pushoptionchoice.md +12 -0
- package/docs/sdk/models/shared/pushoptionproperty.md +14 -0
- package/docs/sdk/models/shared/pushoptiontype.md +17 -0
- package/docs/sdk/models/shared/pushvalidationinfo.md +9 -0
- package/docs/sdk/models/shared/recordlinereference.md +12 -0
- package/docs/{models → sdk/models}/shared/recordref.md +0 -0
- package/docs/sdk/models/shared/recordreference.md +13 -0
- package/docs/{models → sdk/models}/shared/reportbasis.md +0 -0
- package/docs/sdk/models/shared/reportcomponentmeasure.md +10 -0
- package/docs/sdk/models/shared/reportinfo.md +15 -0
- package/docs/{models → sdk/models}/shared/reportinput.md +0 -0
- package/docs/sdk/models/shared/reportitem.md +12 -0
- package/docs/sdk/models/shared/reportitems.md +13 -0
- package/docs/sdk/models/shared/reportline.md +11 -0
- package/docs/sdk/models/shared/reportlineinput.md +11 -0
- package/docs/sdk/models/shared/salesorderreference.md +9 -0
- package/docs/sdk/models/shared/schemadatatype.md +52 -0
- package/docs/{models → sdk/models}/shared/security.md +0 -0
- package/docs/sdk/models/shared/servicecharge.md +14 -0
- package/docs/{models → sdk/models}/shared/servicechargetype.md +0 -0
- package/docs/{models → sdk/models}/shared/sourceref.md +0 -0
- package/docs/sdk/models/shared/sourcetype.md +14 -0
- package/docs/sdk/models/shared/status.md +13 -0
- package/docs/{models → sdk/models}/shared/supplementaldata.md +0 -0
- package/docs/{models → sdk/models}/shared/supplierref.md +0 -0
- package/docs/{models → sdk/models}/shared/supplierstatus.md +0 -0
- package/docs/sdk/models/shared/taxcomponentallocation.md +9 -0
- package/docs/{models → sdk/models}/shared/taxcomponentref.md +0 -0
- package/docs/{models → sdk/models}/shared/taxrateref.md +0 -0
- package/docs/sdk/models/shared/taxratereference.md +21 -0
- package/docs/sdk/models/shared/tracking.md +9 -0
- package/docs/sdk/models/shared/trackingcategoryref.md +13 -0
- package/docs/{models → sdk/models}/shared/transactioncategory.md +0 -0
- package/docs/{models → sdk/models}/shared/transactioncategoryref.md +0 -0
- package/docs/sdk/models/shared/transactioncategorystatus.md +12 -0
- package/docs/{models → sdk/models}/shared/transactioncode.md +0 -0
- package/docs/sdk/models/shared/transactionsourceref.md +9 -0
- package/docs/sdk/models/shared/transactionsourcetype.md +14 -0
- package/docs/{models → sdk/models}/shared/transactiontype.md +0 -0
- package/docs/sdk/models/shared/transferaccount.md +12 -0
- package/docs/sdk/models/shared/typet.md +12 -0
- package/docs/sdk/models/shared/validation.md +11 -0
- package/docs/sdk/models/shared/validationitem.md +10 -0
- package/docs/sdk/models/shared/validdatatypelinks.md +50 -0
- package/docs/sdk/models/shared/weblink.md +11 -0
- package/docs/sdk/models/shared/withholdingtax.md +9 -0
- package/docs/sdk/models/webhooks/accountcategoriesupdatedresponse.md +10 -0
- package/docs/sdk/models/webhooks/clientratelimitreachedresponse.md +10 -0
- package/docs/sdk/models/webhooks/clientratelimitresetresponse.md +10 -0
- package/docs/sdks/accountbalances/README.md +61 -0
- package/docs/sdks/accounts/README.md +117 -0
- package/docs/sdks/accountspayable/README.md +1 -0
- package/docs/sdks/accountsreceivable/README.md +1 -0
- package/docs/sdks/accounttransactions/README.md +117 -0
- package/docs/sdks/balancesheet/README.md +105 -0
- package/docs/sdks/bankaccounts/README.md +132 -0
- package/docs/sdks/banking/README.md +1 -0
- package/docs/sdks/banktransactions/README.md +129 -0
- package/docs/sdks/billcreditnotes/README.md +115 -0
- package/docs/sdks/billpayments/README.md +115 -0
- package/docs/sdks/bills/README.md +279 -0
- package/docs/sdks/cashflow/README.md +55 -0
- package/docs/sdks/categorizedstatement/README.md +58 -0
- package/docs/sdks/codatlending/README.md +1 -0
- package/docs/sdks/codatlendingaccountingbankdata/README.md +68 -0
- package/docs/sdks/codatlendingaccounts/README.md +117 -0
- package/docs/sdks/codatlendingbankingtransactions/README.md +117 -0
- package/docs/sdks/codatlendingcustomers/README.md +117 -0
- package/docs/sdks/codatlendingdirectcosts/README.md +281 -0
- package/docs/sdks/codatlendingfinancialstatementsaccounts/README.md +114 -0
- package/docs/sdks/codatlendingloanwritebackaccounts/README.md +145 -0
- package/docs/sdks/codatlendingpayments/README.md +152 -0
- package/docs/sdks/codatlendingreports/README.md +158 -0
- package/docs/sdks/codatlendingsalespayments/README.md +117 -0
- package/docs/sdks/codatlendingsuppliers/README.md +139 -0
- package/docs/sdks/codatlendingtransactions/README.md +117 -0
- package/docs/sdks/codatlendingtransfers/README.md +117 -0
- package/docs/sdks/companies/README.md +127 -92
- package/docs/sdks/companyinfo/README.md +54 -37
- package/docs/sdks/connections/README.md +135 -102
- package/docs/sdks/createoperations/README.md +103 -0
- package/docs/sdks/creditnotes/README.md +115 -0
- package/docs/sdks/customers/README.md +279 -0
- package/docs/sdks/dataintegrity/README.md +78 -58
- package/docs/sdks/directcosts/README.md +177 -0
- package/docs/sdks/directincomes/README.md +281 -0
- package/docs/sdks/disputes/README.md +117 -0
- package/docs/sdks/excelreports/README.md +73 -51
- package/docs/sdks/fileupload/README.md +80 -58
- package/docs/sdks/financialstatements/README.md +1 -0
- package/docs/sdks/invoices/README.md +381 -0
- package/docs/sdks/journalentries/README.md +115 -0
- package/docs/sdks/journals/README.md +115 -0
- package/docs/sdks/liabilities/README.md +162 -36
- package/docs/sdks/loanwriteback/README.md +1 -0
- package/docs/sdks/locations/README.md +114 -0
- package/docs/sdks/managedata/README.md +24 -16
- package/docs/sdks/metrics/README.md +237 -0
- package/docs/sdks/orders/README.md +117 -0
- package/docs/sdks/paymentmethods/README.md +117 -0
- package/docs/sdks/payments/README.md +115 -0
- package/docs/sdks/productcategories/README.md +117 -0
- package/docs/sdks/products/README.md +117 -0
- package/docs/sdks/profitandloss/README.md +105 -0
- package/docs/sdks/pulloperations/README.md +103 -0
- package/docs/sdks/refresh/README.md +107 -0
- package/docs/sdks/reports/README.md +201 -0
- package/docs/sdks/sales/README.md +1 -0
- package/docs/sdks/suppliers/README.md +279 -0
- package/docs/sdks/transactioncategories/README.md +117 -0
- package/docs/sdks/transactions/README.md +1 -0
- package/docs/sdks/transfers/README.md +155 -0
- package/docs/types/rfcdate.md +2 -2
- package/package.json +5 -2
- package/dist/sdk/accountingbankdata.d.ts +0 -27
- package/dist/sdk/accountingbankdata.js +0 -181
- package/dist/sdk/accountingbankdataaccounts.d.ts +0 -34
- package/dist/sdk/accountingbankdataaccounts.js +0 -262
- package/dist/sdk/accountspayablebillcreditnotes.d.ts +0 -34
- package/dist/sdk/accountspayablebillcreditnotes.js +0 -262
- package/dist/sdk/accountspayablebillpayments.d.ts +0 -34
- package/dist/sdk/accountspayablebillpayments.js +0 -262
- package/dist/sdk/accountspayablebills.d.ts +0 -74
- package/dist/sdk/accountspayablebills.js +0 -530
- package/dist/sdk/accountspayablesuppliers.d.ts +0 -74
- package/dist/sdk/accountspayablesuppliers.js +0 -530
- package/dist/sdk/accountsreceivablecreditnotes.d.ts +0 -34
- package/dist/sdk/accountsreceivablecreditnotes.js +0 -262
- package/dist/sdk/accountsreceivablecustomers.d.ts +0 -74
- package/dist/sdk/accountsreceivablecustomers.js +0 -530
- package/dist/sdk/accountsreceivabledirectincomes.d.ts +0 -74
- package/dist/sdk/accountsreceivabledirectincomes.js +0 -531
- package/dist/sdk/accountsreceivableinvoices.d.ts +0 -93
- package/dist/sdk/accountsreceivableinvoices.js +0 -689
- package/dist/sdk/accountsreceivablepayments.d.ts +0 -34
- package/dist/sdk/accountsreceivablepayments.js +0 -262
- package/dist/sdk/accountsreceivablereports.d.ts +0 -36
- package/dist/sdk/accountsreceivablereports.js +0 -399
- package/dist/sdk/bankingaccountbalances.d.ts +0 -20
- package/dist/sdk/bankingaccountbalances.js +0 -174
- package/dist/sdk/bankingaccounts.d.ts +0 -34
- package/dist/sdk/bankingaccounts.js +0 -254
- package/dist/sdk/bankingcategorizedstatement.d.ts +0 -19
- package/dist/sdk/bankingcategorizedstatement.js +0 -173
- package/dist/sdk/bankingtransactioncategories.d.ts +0 -34
- package/dist/sdk/bankingtransactioncategories.js +0 -254
- package/dist/sdk/bankingtransactions.d.ts +0 -34
- package/dist/sdk/bankingtransactions.js +0 -254
- package/dist/sdk/financialstatementsaccounts.d.ts +0 -33
- package/dist/sdk/financialstatementsaccounts.js +0 -261
- package/dist/sdk/financialstatementsbalancesheet.d.ts +0 -24
- package/dist/sdk/financialstatementsbalancesheet.js +0 -253
- package/dist/sdk/financialstatementscashflow.d.ts +0 -15
- package/dist/sdk/financialstatementscashflow.js +0 -169
- package/dist/sdk/financialstatementsprofitandloss.d.ts +0 -24
- package/dist/sdk/financialstatementsprofitandloss.js +0 -253
- package/dist/sdk/loanwritebackaccounts.d.ts +0 -40
- package/dist/sdk/loanwritebackaccounts.js +0 -294
- package/dist/sdk/loanwritebackbankaccounts.d.ts +0 -39
- package/dist/sdk/loanwritebackbankaccounts.js +0 -293
- package/dist/sdk/loanwritebackbanktransactions.d.ts +0 -40
- package/dist/sdk/loanwritebackbanktransactions.js +0 -294
- package/dist/sdk/loanwritebackcreateoperations.d.ts +0 -22
- package/dist/sdk/loanwritebackcreateoperations.js +0 -250
- package/dist/sdk/loanwritebackdirectcosts.d.ts +0 -40
- package/dist/sdk/loanwritebackdirectcosts.js +0 -294
- package/dist/sdk/loanwritebacksuppliers.d.ts +0 -40
- package/dist/sdk/loanwritebacksuppliers.js +0 -294
- package/dist/sdk/loanwritebacktransfers.d.ts +0 -40
- package/dist/sdk/loanwritebacktransfers.js +0 -294
- package/dist/sdk/managedatapulloperations.d.ts +0 -22
- package/dist/sdk/managedatapulloperations.js +0 -250
- package/dist/sdk/managedatarefresh.d.ts +0 -28
- package/dist/sdk/managedatarefresh.js +0 -250
- package/dist/sdk/models/shared/definitionsitemref.d.ts +0 -15
- package/dist/sdk/models/shared/definitionsitemref.js +0 -55
- package/dist/sdk/models/shared/paymentmethodstatus.d.ts +0 -8
- package/dist/sdk/models/shared/paymentmethodstatus.js +0 -15
- package/dist/sdk/salescustomers.d.ts +0 -34
- package/dist/sdk/salescustomers.js +0 -262
- package/dist/sdk/salesdisputes.d.ts +0 -34
- package/dist/sdk/salesdisputes.js +0 -262
- package/dist/sdk/saleslocations.d.ts +0 -34
- package/dist/sdk/saleslocations.js +0 -261
- package/dist/sdk/salesmetrics.d.ts +0 -102
- package/dist/sdk/salesmetrics.js +0 -406
- package/dist/sdk/salesorders.d.ts +0 -34
- package/dist/sdk/salesorders.js +0 -262
- package/dist/sdk/salespaymentmethods.d.ts +0 -34
- package/dist/sdk/salespaymentmethods.js +0 -262
- package/dist/sdk/salespayments.d.ts +0 -34
- package/dist/sdk/salespayments.js +0 -262
- package/dist/sdk/salesproductcategories.d.ts +0 -34
- package/dist/sdk/salesproductcategories.js +0 -262
- package/dist/sdk/salesproducts.d.ts +0 -34
- package/dist/sdk/salesproducts.js +0 -262
- package/dist/sdk/salesreports.d.ts +0 -69
- package/dist/sdk/salesreports.js +0 -298
- package/dist/sdk/salestransactions.d.ts +0 -34
- package/dist/sdk/salestransactions.js +0 -262
- package/dist/sdk/transactionsaccounttransactions.d.ts +0 -34
- package/dist/sdk/transactionsaccounttransactions.js +0 -262
- package/dist/sdk/transactionsdirectcosts.d.ts +0 -74
- package/dist/sdk/transactionsdirectcosts.js +0 -530
- package/dist/sdk/transactionsjournalentries.d.ts +0 -34
- package/dist/sdk/transactionsjournalentries.js +0 -262
- package/dist/sdk/transactionsjournals.d.ts +0 -34
- package/dist/sdk/transactionsjournals.js +0 -262
- package/dist/sdk/transactionstransfers.d.ts +0 -34
- package/dist/sdk/transactionstransfers.js +0 -262
- package/docs/models/operations/createaccountrequest.md +0 -13
- package/docs/models/operations/createaccountresponse.md +0 -12
- package/docs/models/operations/createbankaccountrequest.md +0 -13
- package/docs/models/operations/createbankaccountresponse.md +0 -12
- package/docs/models/operations/createbanktransactionsrequest.md +0 -14
- package/docs/models/operations/createbanktransactionsresponse.md +0 -12
- package/docs/models/operations/createcompanyresponse.md +0 -12
- package/docs/models/operations/createconnectionrequest.md +0 -9
- package/docs/models/operations/createconnectionrequestbody.md +0 -8
- package/docs/models/operations/createconnectionresponse.md +0 -12
- package/docs/models/operations/createdirectcostrequest.md +0 -13
- package/docs/models/operations/createdirectcostresponse.md +0 -12
- package/docs/models/operations/createsupplierrequest.md +0 -13
- package/docs/models/operations/createsupplierresponse.md +0 -12
- package/docs/models/operations/createtransferrequest.md +0 -13
- package/docs/models/operations/createtransferresponse.md +0 -12
- package/docs/models/operations/deletecompanyrequest.md +0 -8
- package/docs/models/operations/deletecompanyresponse.md +0 -11
- package/docs/models/operations/deleteconnectionrequest.md +0 -9
- package/docs/models/operations/deleteconnectionresponse.md +0 -11
- package/docs/models/operations/downloadaccountingbillattachmentrequest.md +0 -11
- package/docs/models/operations/downloadaccountingbillattachmentresponse.md +0 -12
- package/docs/models/operations/downloadaccountingcustomerattachmentrequest.md +0 -11
- package/docs/models/operations/downloadaccountingcustomerattachmentresponse.md +0 -12
- package/docs/models/operations/downloadaccountingdirectcostattachmentrequest.md +0 -11
- package/docs/models/operations/downloadaccountingdirectcostattachmentresponse.md +0 -12
- package/docs/models/operations/downloadaccountingdirectincomeattachmentrequest.md +0 -11
- package/docs/models/operations/downloadaccountingdirectincomeattachmentresponse.md +0 -12
- package/docs/models/operations/downloadaccountinginvoiceattachmentrequest.md +0 -11
- package/docs/models/operations/downloadaccountinginvoiceattachmentresponse.md +0 -12
- package/docs/models/operations/downloadaccountinginvoicepdfrequest.md +0 -9
- package/docs/models/operations/downloadaccountinginvoicepdfresponse.md +0 -11
- package/docs/models/operations/downloadaccountingsupplierattachmentrequest.md +0 -11
- package/docs/models/operations/downloadaccountingsupplierattachmentresponse.md +0 -12
- package/docs/models/operations/downloadexcelreportrequest.md +0 -9
- package/docs/models/operations/downloadexcelreportresponse.md +0 -12
- package/docs/models/operations/downloadfilesrequest.md +0 -9
- package/docs/models/operations/downloadfilesresponse.md +0 -12
- package/docs/models/operations/generateexcelreportrequest.md +0 -9
- package/docs/models/operations/generateexcelreportresponse.md +0 -12
- package/docs/models/operations/getaccountingaccountrequest.md +0 -9
- package/docs/models/operations/getaccountingaccountresponse.md +0 -12
- package/docs/models/operations/getaccountingaccounttransactionrequest.md +0 -10
- package/docs/models/operations/getaccountingaccounttransactionresponse.md +0 -12
- package/docs/models/operations/getaccountingagedcreditorsreportrequest.md +0 -11
- package/docs/models/operations/getaccountingagedcreditorsreportresponse.md +0 -12
- package/docs/models/operations/getaccountingageddebtorsreportrequest.md +0 -11
- package/docs/models/operations/getaccountingageddebtorsreportresponse.md +0 -12
- package/docs/models/operations/getaccountingbalancesheetrequest.md +0 -11
- package/docs/models/operations/getaccountingbalancesheetresponse.md +0 -12
- package/docs/models/operations/getaccountingbankaccountrequest.md +0 -10
- package/docs/models/operations/getaccountingbankaccountresponse.md +0 -12
- package/docs/models/operations/getaccountingbillattachmentrequest.md +0 -11
- package/docs/models/operations/getaccountingbillattachmentresponse.md +0 -12
- package/docs/models/operations/getaccountingbillcreditnoterequest.md +0 -9
- package/docs/models/operations/getaccountingbillcreditnoteresponse.md +0 -12
- package/docs/models/operations/getaccountingbillpaymentrequest.md +0 -9
- package/docs/models/operations/getaccountingbillpaymentresponse.md +0 -12
- package/docs/models/operations/getaccountingbillrequest.md +0 -9
- package/docs/models/operations/getaccountingbillresponse.md +0 -12
- package/docs/models/operations/getaccountingcashflowstatementrequest.md +0 -11
- package/docs/models/operations/getaccountingcashflowstatementresponse.md +0 -12
- package/docs/models/operations/getaccountingcreditnoterequest.md +0 -9
- package/docs/models/operations/getaccountingcreditnoteresponse.md +0 -12
- package/docs/models/operations/getaccountingcustomerattachmentrequest.md +0 -11
- package/docs/models/operations/getaccountingcustomerattachmentresponse.md +0 -12
- package/docs/models/operations/getaccountingcustomerrequest.md +0 -9
- package/docs/models/operations/getaccountingcustomerresponse.md +0 -12
- package/docs/models/operations/getaccountingdirectcostattachmentrequest.md +0 -11
- package/docs/models/operations/getaccountingdirectcostattachmentresponse.md +0 -12
- package/docs/models/operations/getaccountingdirectcostrequest.md +0 -10
- package/docs/models/operations/getaccountingdirectcostresponse.md +0 -12
- package/docs/models/operations/getaccountingdirectincomeattachmentrequest.md +0 -12
- package/docs/models/operations/getaccountingdirectincomeattachmentresponse.md +0 -12
- package/docs/models/operations/getaccountingdirectincomerequest.md +0 -10
- package/docs/models/operations/getaccountingdirectincomeresponse.md +0 -12
- package/docs/models/operations/getaccountinginvoiceattachmentrequest.md +0 -11
- package/docs/models/operations/getaccountinginvoiceattachmentresponse.md +0 -12
- package/docs/models/operations/getaccountinginvoicerequest.md +0 -9
- package/docs/models/operations/getaccountinginvoiceresponse.md +0 -12
- package/docs/models/operations/getaccountingjournalentryrequest.md +0 -9
- package/docs/models/operations/getaccountingjournalentryresponse.md +0 -12
- package/docs/models/operations/getaccountingjournalrequest.md +0 -9
- package/docs/models/operations/getaccountingjournalresponse.md +0 -12
- package/docs/models/operations/getaccountingpaymentrequest.md +0 -9
- package/docs/models/operations/getaccountingpaymentresponse.md +0 -12
- package/docs/models/operations/getaccountingprofilerequest.md +0 -8
- package/docs/models/operations/getaccountingprofileresponse.md +0 -12
- package/docs/models/operations/getaccountingprofitandlossrequest.md +0 -11
- package/docs/models/operations/getaccountingprofitandlossresponse.md +0 -12
- package/docs/models/operations/getaccountingsupplierattachmentrequest.md +0 -11
- package/docs/models/operations/getaccountingsupplierattachmentresponse.md +0 -12
- package/docs/models/operations/getaccountingsupplierrequest.md +0 -9
- package/docs/models/operations/getaccountingsupplierresponse.md +0 -12
- package/docs/models/operations/getaccountingtransferrequest.md +0 -10
- package/docs/models/operations/getaccountingtransferresponse.md +0 -12
- package/docs/models/operations/getbankingaccountrequest.md +0 -10
- package/docs/models/operations/getbankingaccountresponse.md +0 -11
- package/docs/models/operations/getbankingtransactioncategoryrequest.md +0 -10
- package/docs/models/operations/getbankingtransactioncategoryresponse.md +0 -11
- package/docs/models/operations/getbankingtransactionrequest.md +0 -10
- package/docs/models/operations/getbankingtransactionresponse.md +0 -11
- package/docs/models/operations/getcategorizedbalancesheetstatementrequest.md +0 -10
- package/docs/models/operations/getcategorizedbalancesheetstatementresponse.md +0 -12
- package/docs/models/operations/getcategorizedbankstatementrequest.md +0 -11
- package/docs/models/operations/getcategorizedbankstatementresponse.md +0 -12
- package/docs/models/operations/getcategorizedprofitandlossstatementrequest.md +0 -10
- package/docs/models/operations/getcategorizedprofitandlossstatementresponse.md +0 -12
- package/docs/models/operations/getcommercecustomerrequest.md +0 -10
- package/docs/models/operations/getcommercecustomerresponse.md +0 -12
- package/docs/models/operations/getcommercecustomerretentionmetricsrequest.md +0 -14
- package/docs/models/operations/getcommercecustomerretentionmetricsresponse.md +0 -12
- package/docs/models/operations/getcommercedisputerequest.md +0 -10
- package/docs/models/operations/getcommercedisputeresponse.md +0 -12
- package/docs/models/operations/getcommercelifetimevaluemetricsrequest.md +0 -14
- package/docs/models/operations/getcommercelifetimevaluemetricsresponse.md +0 -12
- package/docs/models/operations/getcommercelocationrequest.md +0 -10
- package/docs/models/operations/getcommercelocationresponse.md +0 -12
- package/docs/models/operations/getcommerceorderrequest.md +0 -10
- package/docs/models/operations/getcommerceorderresponse.md +0 -12
- package/docs/models/operations/getcommerceordersreportrequest.md +0 -14
- package/docs/models/operations/getcommerceordersreportresponse.md +0 -12
- package/docs/models/operations/getcommercepaymentmethodrequest.md +0 -10
- package/docs/models/operations/getcommercepaymentmethodresponse.md +0 -12
- package/docs/models/operations/getcommercepaymentrequest.md +0 -10
- package/docs/models/operations/getcommercepaymentresponse.md +0 -12
- package/docs/models/operations/getcommerceproductcategoryrequest.md +0 -10
- package/docs/models/operations/getcommerceproductcategoryresponse.md +0 -12
- package/docs/models/operations/getcommerceproductrequest.md +0 -10
- package/docs/models/operations/getcommerceproductresponse.md +0 -12
- package/docs/models/operations/getcommerceprofilerequest.md +0 -9
- package/docs/models/operations/getcommerceprofileresponse.md +0 -12
- package/docs/models/operations/getcommercerefundsreportrequest.md +0 -14
- package/docs/models/operations/getcommercerefundsreportresponse.md +0 -12
- package/docs/models/operations/getcommercerevenuemetricsrequest.md +0 -14
- package/docs/models/operations/getcommercerevenuemetricsresponse.md +0 -12
- package/docs/models/operations/getcommercetransactionrequest.md +0 -10
- package/docs/models/operations/getcommercetransactionresponse.md +0 -12
- package/docs/models/operations/getcompanyrequest.md +0 -8
- package/docs/models/operations/getcompanyresponse.md +0 -12
- package/docs/models/operations/getconnectionrequest.md +0 -9
- package/docs/models/operations/getconnectionresponse.md +0 -12
- package/docs/models/operations/getcreatebanktransactionsmodelrequest.md +0 -10
- package/docs/models/operations/getcreatebanktransactionsmodelresponse.md +0 -12
- package/docs/models/operations/getcreatechartofaccountsmodelrequest.md +0 -9
- package/docs/models/operations/getcreatechartofaccountsmodelresponse.md +0 -12
- package/docs/models/operations/getcreatedirectcostsmodelrequest.md +0 -9
- package/docs/models/operations/getcreatedirectcostsmodelresponse.md +0 -12
- package/docs/models/operations/getcreateoperationrequest.md +0 -9
- package/docs/models/operations/getcreateoperationresponse.md +0 -12
- package/docs/models/operations/getcreatetransfersmodelrequest.md +0 -9
- package/docs/models/operations/getcreatetransfersmodelresponse.md +0 -12
- package/docs/models/operations/getcreateupdatebankaccountsmodelrequest.md +0 -9
- package/docs/models/operations/getcreateupdatebankaccountsmodelresponse.md +0 -12
- package/docs/models/operations/getcreateupdatesuppliersmodelrequest.md +0 -9
- package/docs/models/operations/getcreateupdatesuppliersmodelresponse.md +0 -12
- package/docs/models/operations/getdataintegritystatusrequest.md +0 -9
- package/docs/models/operations/getdataintegritystatusresponse.md +0 -12
- package/docs/models/operations/getdataintegritysummariesrequest.md +0 -10
- package/docs/models/operations/getdataintegritysummariesresponse.md +0 -12
- package/docs/models/operations/getdatastatusrequest.md +0 -8
- package/docs/models/operations/getdatastatusresponse.md +0 -12
- package/docs/models/operations/getexcelreportgenerationstatusrequest.md +0 -9
- package/docs/models/operations/getexcelreportgenerationstatusresponse.md +0 -12
- package/docs/models/operations/getloansummaryrequest.md +0 -8
- package/docs/models/operations/getloansummaryresponse.md +0 -12
- package/docs/models/operations/getpulloperationrequest.md +0 -9
- package/docs/models/operations/getpulloperationresponse.md +0 -12
- package/docs/models/operations/isagedcreditorsreportavailablerequest.md +0 -8
- package/docs/models/operations/isagedcreditorsreportavailableresponse.md +0 -11
- package/docs/models/operations/isageddebtorsreportavailablerequest.md +0 -8
- package/docs/models/operations/isageddebtorsreportavailableresponse.md +0 -11
- package/docs/models/operations/listaccountingaccountsrequest.md +0 -12
- package/docs/models/operations/listaccountingaccountsresponse.md +0 -12
- package/docs/models/operations/listaccountingaccounttransactionsrequest.md +0 -13
- package/docs/models/operations/listaccountingaccounttransactionsresponse.md +0 -12
- package/docs/models/operations/listaccountingbankaccountsrequest.md +0 -13
- package/docs/models/operations/listaccountingbankaccountsresponse.md +0 -12
- package/docs/models/operations/listaccountingbankaccounttransactionsrequest.md +0 -14
- package/docs/models/operations/listaccountingbankaccounttransactionsresponse.md +0 -12
- package/docs/models/operations/listaccountingbillattachmentsrequest.md +0 -10
- package/docs/models/operations/listaccountingbillattachmentsresponse.md +0 -12
- package/docs/models/operations/listaccountingbillcreditnotesrequest.md +0 -12
- package/docs/models/operations/listaccountingbillcreditnotesresponse.md +0 -12
- package/docs/models/operations/listaccountingbillpaymentsrequest.md +0 -12
- package/docs/models/operations/listaccountingbillpaymentsresponse.md +0 -12
- package/docs/models/operations/listaccountingbillsrequest.md +0 -12
- package/docs/models/operations/listaccountingbillsresponse.md +0 -12
- package/docs/models/operations/listaccountingcreditnotesrequest.md +0 -12
- package/docs/models/operations/listaccountingcreditnotesresponse.md +0 -12
- package/docs/models/operations/listaccountingcustomerattachmentsrequest.md +0 -10
- package/docs/models/operations/listaccountingcustomerattachmentsresponse.md +0 -12
- package/docs/models/operations/listaccountingcustomersrequest.md +0 -12
- package/docs/models/operations/listaccountingcustomersresponse.md +0 -12
- package/docs/models/operations/listaccountingdirectcostattachmentsrequest.md +0 -10
- package/docs/models/operations/listaccountingdirectcostattachmentsresponse.md +0 -12
- package/docs/models/operations/listaccountingdirectcostsrequest.md +0 -13
- package/docs/models/operations/listaccountingdirectcostsresponse.md +0 -12
- package/docs/models/operations/listaccountingdirectincomeattachmentsrequest.md +0 -10
- package/docs/models/operations/listaccountingdirectincomeattachmentsresponse.md +0 -12
- package/docs/models/operations/listaccountingdirectincomesrequest.md +0 -13
- package/docs/models/operations/listaccountingdirectincomesresponse.md +0 -12
- package/docs/models/operations/listaccountinginvoiceattachmentsrequest.md +0 -10
- package/docs/models/operations/listaccountinginvoiceattachmentsresponse.md +0 -12
- package/docs/models/operations/listaccountinginvoicesrequest.md +0 -12
- package/docs/models/operations/listaccountinginvoicesresponse.md +0 -12
- package/docs/models/operations/listaccountingjournalentriesrequest.md +0 -12
- package/docs/models/operations/listaccountingjournalentriesresponse.md +0 -12
- package/docs/models/operations/listaccountingjournalsrequest.md +0 -12
- package/docs/models/operations/listaccountingjournalsresponse.md +0 -12
- package/docs/models/operations/listaccountingpaymentsrequest.md +0 -12
- package/docs/models/operations/listaccountingpaymentsresponse.md +0 -12
- package/docs/models/operations/listaccountingsupplierattachmentsrequest.md +0 -10
- package/docs/models/operations/listaccountingsupplierattachmentsresponse.md +0 -12
- package/docs/models/operations/listaccountingsuppliersrequest.md +0 -12
- package/docs/models/operations/listaccountingsuppliersresponse.md +0 -12
- package/docs/models/operations/listaccountingtransfersrequest.md +0 -13
- package/docs/models/operations/listaccountingtransfersresponse.md +0 -12
- package/docs/models/operations/listbankingaccountbalancesrequest.md +0 -13
- package/docs/models/operations/listbankingaccountbalancesresponse.md +0 -12
- package/docs/models/operations/listbankingaccountsrequest.md +0 -13
- package/docs/models/operations/listbankingaccountsresponse.md +0 -12
- package/docs/models/operations/listbankingtransactioncategoriesrequest.md +0 -13
- package/docs/models/operations/listbankingtransactioncategoriesresponse.md +0 -12
- package/docs/models/operations/listbankingtransactionsrequest.md +0 -13
- package/docs/models/operations/listbankingtransactionsresponse.md +0 -12
- package/docs/models/operations/listcommercecustomersrequest.md +0 -13
- package/docs/models/operations/listcommercecustomersresponse.md +0 -12
- package/docs/models/operations/listcommercedisputesrequest.md +0 -13
- package/docs/models/operations/listcommercedisputesresponse.md +0 -12
- package/docs/models/operations/listcommercelocationsrequest.md +0 -9
- package/docs/models/operations/listcommercelocationsresponse.md +0 -12
- package/docs/models/operations/listcommerceordersrequest.md +0 -13
- package/docs/models/operations/listcommerceordersresponse.md +0 -12
- package/docs/models/operations/listcommercepaymentmethodsrequest.md +0 -13
- package/docs/models/operations/listcommercepaymentmethodsresponse.md +0 -12
- package/docs/models/operations/listcommercepaymentsrequest.md +0 -13
- package/docs/models/operations/listcommercepaymentsresponse.md +0 -12
- package/docs/models/operations/listcommerceproductcategoriesrequest.md +0 -13
- package/docs/models/operations/listcommerceproductcategoriesresponse.md +0 -12
- package/docs/models/operations/listcommerceproductsrequest.md +0 -13
- package/docs/models/operations/listcommerceproductsresponse.md +0 -12
- package/docs/models/operations/listcommercetransactionsrequest.md +0 -13
- package/docs/models/operations/listcommercetransactionsresponse.md +0 -12
- package/docs/models/operations/listcompaniesresponse.md +0 -12
- package/docs/models/operations/listconnectionsrequest.md +0 -12
- package/docs/models/operations/listconnectionsresponse.md +0 -12
- package/docs/models/operations/listcreateoperationsrequest.md +0 -12
- package/docs/models/operations/listcreateoperationsresponse.md +0 -12
- package/docs/models/operations/listdataintegritydetailsrequest.md +0 -13
- package/docs/models/operations/listdataintegritydetailsresponse.md +0 -12
- package/docs/models/operations/listfilesrequest.md +0 -8
- package/docs/models/operations/listfilesresponse.md +0 -12
- package/docs/models/operations/listloantransactionsrequest.md +0 -9
- package/docs/models/operations/listloantransactionsresponse.md +0 -12
- package/docs/models/operations/listloantransactionssourcetype.md +0 -12
- package/docs/models/operations/listpulloperationsrequest.md +0 -12
- package/docs/models/operations/listpulloperationsresponse.md +0 -12
- package/docs/models/operations/listreconciledinvoicesrequest.md +0 -11
- package/docs/models/operations/listreconciledinvoicesresponse.md +0 -12
- package/docs/models/operations/refreshalldatatypesrequest.md +0 -8
- package/docs/models/operations/refreshalldatatypesresponse.md +0 -11
- package/docs/models/operations/refreshdatatyperequest.md +0 -10
- package/docs/models/operations/refreshdatatyperesponse.md +0 -12
- package/docs/models/operations/unlinkconnectionrequest.md +0 -10
- package/docs/models/operations/unlinkconnectionresponse.md +0 -12
- package/docs/models/operations/unlinkconnectionupdateconnection.md +0 -8
- package/docs/models/operations/updatecompanyrequest.md +0 -9
- package/docs/models/operations/updatecompanyresponse.md +0 -12
- package/docs/models/operations/uploadfilesrequest.md +0 -10
- package/docs/models/operations/uploadfilesrequestbody.md +0 -9
- package/docs/models/operations/uploadfilesresponse.md +0 -11
- package/docs/models/shared/accountcategoriesupdatedwebhook.md +0 -18
- package/docs/models/shared/accountidentifiers.md +0 -16
- package/docs/models/shared/accountingaccount.md +0 -51
- package/docs/models/shared/accountingaccounts.md +0 -12
- package/docs/models/shared/accountingaccounttransaction.md +0 -38
- package/docs/models/shared/accountingaccounttransactions.md +0 -12
- package/docs/models/shared/accountingaccounttransactionstatus.md +0 -13
- package/docs/models/shared/accountingaddress.md +0 -14
- package/docs/models/shared/accountingagedcreditorreport.md +0 -43
- package/docs/models/shared/accountingageddebtorreport.md +0 -43
- package/docs/models/shared/accountingattachment.md +0 -34
- package/docs/models/shared/accountingbalancesheet.md +0 -30
- package/docs/models/shared/accountingbankaccount.md +0 -39
- package/docs/models/shared/accountingbankaccounts.md +0 -12
- package/docs/models/shared/accountingbanktransaction.md +0 -34
- package/docs/models/shared/accountingbanktransactions.md +0 -12
- package/docs/models/shared/accountingbill.md +0 -48
- package/docs/models/shared/accountingbillcreditnote.md +0 -46
- package/docs/models/shared/accountingbillcreditnotes.md +0 -12
- package/docs/models/shared/accountingbillpayment.md +0 -174
- package/docs/models/shared/accountingbillpayments.md +0 -12
- package/docs/models/shared/accountingbillpurchaseorderreference.md +0 -9
- package/docs/models/shared/accountingbills.md +0 -12
- package/docs/models/shared/accountingbillwithholdingtax.md +0 -9
- package/docs/models/shared/accountingcashflowstatement.md +0 -27
- package/docs/models/shared/accountingcompanyinfo.md +0 -28
- package/docs/models/shared/accountingcreateaccountresponse.md +0 -21
- package/docs/models/shared/accountingcreatebankaccountresponse.md +0 -21
- package/docs/models/shared/accountingcreatebanktransactions.md +0 -9
- package/docs/models/shared/accountingcreatebanktransactionsresponse.md +0 -21
- package/docs/models/shared/accountingcreatedirectcostresponse.md +0 -21
- package/docs/models/shared/accountingcreatesupplierresponse.md +0 -21
- package/docs/models/shared/accountingcreatetransferresponse.md +0 -21
- package/docs/models/shared/accountingcreditnote.md +0 -44
- package/docs/models/shared/accountingcreditnotes.md +0 -12
- package/docs/models/shared/accountingcustomer.md +0 -31
- package/docs/models/shared/accountingcustomers.md +0 -12
- package/docs/models/shared/accountingdirectcost.md +0 -39
- package/docs/models/shared/accountingdirectcosts.md +0 -12
- package/docs/models/shared/accountingdirectincome.md +0 -40
- package/docs/models/shared/accountingdirectincomes.md +0 -12
- package/docs/models/shared/accountinginvoice.md +0 -63
- package/docs/models/shared/accountinginvoices.md +0 -12
- package/docs/models/shared/accountinginvoicesalesorderreference.md +0 -9
- package/docs/models/shared/accountingjournal.md +0 -42
- package/docs/models/shared/accountingjournalentries.md +0 -12
- package/docs/models/shared/accountingjournalentry.md +0 -42
- package/docs/models/shared/accountingjournals.md +0 -12
- package/docs/models/shared/accountingpayment.md +0 -701
- package/docs/models/shared/accountingpaymentallocation.md +0 -9
- package/docs/models/shared/accountingpaymentallocationallocation.md +0 -11
- package/docs/models/shared/accountingpayments.md +0 -12
- package/docs/models/shared/accountingprofitandlossreport.md +0 -35
- package/docs/models/shared/accountingsupplier.md +0 -27
- package/docs/models/shared/accountingsuppliers.md +0 -12
- package/docs/models/shared/accountingtransfer.md +0 -23
- package/docs/models/shared/accountingtransfercontactref.md +0 -11
- package/docs/models/shared/accountingtransfers.md +0 -12
- package/docs/models/shared/accounts.md +0 -14
- package/docs/models/shared/accountspayabletracking.md +0 -14
- package/docs/models/shared/accountsreceivabletracking.md +0 -15
- package/docs/models/shared/accountsreceivabletrackingrecordreference.md +0 -13
- package/docs/models/shared/accounttransactionline.md +0 -10
- package/docs/models/shared/agedcreditor.md +0 -10
- package/docs/models/shared/agedcurrencyoutstanding.md +0 -9
- package/docs/models/shared/ageddebtor.md +0 -10
- package/docs/models/shared/agedoutstandingamount.md +0 -11
- package/docs/models/shared/attachments.md +0 -8
- package/docs/models/shared/balancesheet.md +0 -12
- package/docs/models/shared/bankingaccount.md +0 -24
- package/docs/models/shared/bankingaccountbalance.md +0 -22
- package/docs/models/shared/bankingaccountbalances.md +0 -12
- package/docs/models/shared/bankingaccounts.md +0 -12
- package/docs/models/shared/bankingtransaction.md +0 -25
- package/docs/models/shared/bankingtransactioncategories.md +0 -12
- package/docs/models/shared/bankingtransactioncategory.md +0 -16
- package/docs/models/shared/bankingtransactionref.md +0 -14
- package/docs/models/shared/bankingtransactions.md +0 -12
- package/docs/models/shared/banktransactiontype.md +0 -27
- package/docs/models/shared/billcreditnotelineitem.md +0 -20
- package/docs/models/shared/billcreditnotelineitemitemreference.md +0 -11
- package/docs/models/shared/billcreditnotelineitemtaxratereference.md +0 -21
- package/docs/models/shared/billedtotype.md +0 -11
- package/docs/models/shared/billedtotype1.md +0 -10
- package/docs/models/shared/billlineitem.md +0 -21
- package/docs/models/shared/billpaymentline.md +0 -10
- package/docs/models/shared/billpaymentlinelink.md +0 -11
- package/docs/models/shared/cashflowstatement.md +0 -11
- package/docs/models/shared/clientratelimitreachedwebhook.md +0 -16
- package/docs/models/shared/clientratelimitresetwebhook.md +0 -16
- package/docs/models/shared/commerceaddress.md +0 -14
- package/docs/models/shared/commercecompanyinfo.md +0 -26
- package/docs/models/shared/commercecustomer.md +0 -21
- package/docs/models/shared/commercecustomers.md +0 -12
- package/docs/models/shared/commercedispute.md +0 -26
- package/docs/models/shared/commercedisputes.md +0 -12
- package/docs/models/shared/commercelocation.md +0 -18
- package/docs/models/shared/commercelocations.md +0 -12
- package/docs/models/shared/commerceorder.md +0 -31
- package/docs/models/shared/commerceorders.md +0 -12
- package/docs/models/shared/commerceordersupplementaldata.md +0 -12
- package/docs/models/shared/commercepayment.md +0 -25
- package/docs/models/shared/commercepaymentmethod.md +0 -16
- package/docs/models/shared/commercepaymentmethods.md +0 -12
- package/docs/models/shared/commercepayments.md +0 -12
- package/docs/models/shared/commerceproduct.md +0 -18
- package/docs/models/shared/commerceproductcategories.md +0 -12
- package/docs/models/shared/commerceproductcategory.md +0 -17
- package/docs/models/shared/commerceproducts.md +0 -12
- package/docs/models/shared/commercereport.md +0 -54
- package/docs/models/shared/commercereportcomponent.md +0 -13
- package/docs/models/shared/commercereportdimension.md +0 -11
- package/docs/models/shared/commercereportdimensionitems.md +0 -8
- package/docs/models/shared/commercereporterror.md +0 -10
- package/docs/models/shared/commercereportmeasure.md +0 -11
- package/docs/models/shared/commercetransaction.md +0 -28
- package/docs/models/shared/commercetransactions.md +0 -12
- package/docs/models/shared/companies.md +0 -12
- package/docs/models/shared/company.md +0 -22
- package/docs/models/shared/connection.md +0 -31
- package/docs/models/shared/connections.md +0 -12
- package/docs/models/shared/connectionsourcetype.md +0 -14
- package/docs/models/shared/contact.md +0 -13
- package/docs/models/shared/contactref.md +0 -11
- package/docs/models/shared/createbankaccounttransaction.md +0 -12
- package/docs/models/shared/creditnotelineitem.md +0 -21
- package/docs/models/shared/creditnotestatus.md +0 -13
- package/docs/models/shared/dataconnectionerror.md +0 -11
- package/docs/models/shared/dataintegritydetail.md +0 -15
- package/docs/models/shared/dataintegritydetails.md +0 -12
- package/docs/models/shared/dataintegritystatus.md +0 -12
- package/docs/models/shared/dataintegritystatuses.md +0 -8
- package/docs/models/shared/dataintegritystatusinfo.md +0 -10
- package/docs/models/shared/dataintegritysummaries.md +0 -8
- package/docs/models/shared/dataintegritysummary.md +0 -10
- package/docs/models/shared/datasource.md +0 -8
- package/docs/models/shared/datastatus.md +0 -14
- package/docs/models/shared/datatype.md +0 -51
- package/docs/models/shared/definitionsitemref.md +0 -10
- package/docs/models/shared/directcostlineitem.md +0 -20
- package/docs/models/shared/directincomelineitem.md +0 -19
- package/docs/models/shared/enhancedcashflowitem.md +0 -8
- package/docs/models/shared/enhancedcashflowtransaction.md +0 -16
- package/docs/models/shared/enhancedcashflowtransactions.md +0 -16
- package/docs/models/shared/enhancedfinancialreport.md +0 -9
- package/docs/models/shared/enhancedfinancialreportreportitem.md +0 -12
- package/docs/models/shared/enhancedinvoicereportitem.md +0 -20
- package/docs/models/shared/enhancedinvoicesreport.md +0 -11
- package/docs/models/shared/enhancedreportaccountcategory.md +0 -9
- package/docs/models/shared/errormessage.md +0 -13
- package/docs/models/shared/excelstatus.md +0 -15
- package/docs/models/shared/file.md +0 -11
- package/docs/models/shared/halref.md +0 -8
- package/docs/models/shared/invoicelineitem.md +0 -21
- package/docs/models/shared/itemref.md +0 -11
- package/docs/models/shared/items.md +0 -9
- package/docs/models/shared/journalline.md +0 -12
- package/docs/models/shared/journallinetracking.md +0 -10
- package/docs/models/shared/lendingcustomerref.md +0 -9
- package/docs/models/shared/links.md +0 -11
- package/docs/models/shared/loansummary.md +0 -9
- package/docs/models/shared/loansummaryrecordref.md +0 -11
- package/docs/models/shared/loansummaryreportitem.md +0 -13
- package/docs/models/shared/loantransactions.md +0 -10
- package/docs/models/shared/orderdiscountallocation.md +0 -9
- package/docs/models/shared/orderlineitem.md +0 -17
- package/docs/models/shared/payment.md +0 -14
- package/docs/models/shared/paymentallocationpayment.md +0 -15
- package/docs/models/shared/paymentline.md +0 -10
- package/docs/models/shared/paymentlinelink.md +0 -11
- package/docs/models/shared/paymentmethodstatus.md +0 -12
- package/docs/models/shared/paymentref.md +0 -17
- package/docs/models/shared/phonenumber.md +0 -9
- package/docs/models/shared/productinventory.md +0 -11
- package/docs/models/shared/productinventorylocation.md +0 -9
- package/docs/models/shared/productprice.md +0 -9
- package/docs/models/shared/productref.md +0 -11
- package/docs/models/shared/productvariant.md +0 -24
- package/docs/models/shared/productvariantref.md +0 -11
- package/docs/models/shared/productvariantstatus.md +0 -10
- package/docs/models/shared/profitandlossreport.md +0 -18
- package/docs/models/shared/projectref.md +0 -9
- package/docs/models/shared/pulloperation.md +0 -19
- package/docs/models/shared/pulloperations.md +0 -12
- package/docs/models/shared/pulloperationstatus.md +0 -30
- package/docs/models/shared/pushchangetype.md +0 -12
- package/docs/models/shared/pushfieldvalidation.md +0 -10
- package/docs/models/shared/pushoperation.md +0 -20
- package/docs/models/shared/pushoperationchange.md +0 -10
- package/docs/models/shared/pushoperationref.md +0 -9
- package/docs/models/shared/pushoperations.md +0 -12
- package/docs/models/shared/pushoption.md +0 -14
- package/docs/models/shared/pushoptionchoice.md +0 -12
- package/docs/models/shared/pushoptionproperty.md +0 -14
- package/docs/models/shared/pushoptiontype.md +0 -15
- package/docs/models/shared/pushvalidationinfo.md +0 -9
- package/docs/models/shared/reportcomponentmeasure.md +0 -10
- package/docs/models/shared/reportinfo.md +0 -15
- package/docs/models/shared/reportitems.md +0 -12
- package/docs/models/shared/reportitemsloantransactiontype.md +0 -11
- package/docs/models/shared/reportline.md +0 -11
- package/docs/models/shared/servicecharge.md +0 -14
- package/docs/models/shared/taxcomponentallocation.md +0 -9
- package/docs/models/shared/tracking.md +0 -9
- package/docs/models/shared/trackingcategoryref.md +0 -13
- package/docs/models/shared/transactioncategorystatus.md +0 -10
- package/docs/models/shared/transactionsourceref.md +0 -9
- package/docs/models/shared/transactionsourcetype.md +0 -12
- package/docs/models/shared/transferaccount.md +0 -10
- package/docs/models/shared/validation.md +0 -11
- package/docs/models/shared/validationitem.md +0 -10
- package/docs/models/shared/weblink.md +0 -11
- package/docs/models/shared/weblinktype.md +0 -12
- package/docs/models/webhooks/accountcategoriesupdatedresponse.md +0 -10
- package/docs/models/webhooks/clientratelimitreachedresponse.md +0 -10
- package/docs/models/webhooks/clientratelimitresetresponse.md +0 -10
- package/docs/sdks/accountingbankdata/README.md +0 -61
- package/docs/sdks/accountingbankdataaccounts/README.md +0 -103
- package/docs/sdks/accountspayablebillcreditnotes/README.md +0 -101
- package/docs/sdks/accountspayablebillpayments/README.md +0 -101
- package/docs/sdks/accountspayablebills/README.md +0 -244
- package/docs/sdks/accountspayablesuppliers/README.md +0 -244
- package/docs/sdks/accountsreceivablecreditnotes/README.md +0 -101
- package/docs/sdks/accountsreceivablecustomers/README.md +0 -244
- package/docs/sdks/accountsreceivabledirectincomes/README.md +0 -247
- package/docs/sdks/accountsreceivableinvoices/README.md +0 -333
- package/docs/sdks/accountsreceivablepayments/README.md +0 -101
- package/docs/sdks/accountsreceivablereports/README.md +0 -172
- package/docs/sdks/bankingaccountbalances/README.md +0 -54
- package/docs/sdks/bankingaccounts/README.md +0 -103
- package/docs/sdks/bankingcategorizedstatement/README.md +0 -51
- package/docs/sdks/bankingtransactioncategories/README.md +0 -103
- package/docs/sdks/bankingtransactions/README.md +0 -103
- package/docs/sdks/financialstatementsaccounts/README.md +0 -100
- package/docs/sdks/financialstatementsbalancesheet/README.md +0 -91
- package/docs/sdks/financialstatementscashflow/README.md +0 -47
- package/docs/sdks/financialstatementsprofitandloss/README.md +0 -91
- package/docs/sdks/loanwritebackaccounts/README.md +0 -134
- package/docs/sdks/loanwritebackbankaccounts/README.md +0 -126
- package/docs/sdks/loanwritebackbanktransactions/README.md +0 -121
- package/docs/sdks/loanwritebackcreateoperations/README.md +0 -89
- package/docs/sdks/loanwritebackdirectcosts/README.md +0 -200
- package/docs/sdks/loanwritebacksuppliers/README.md +0 -142
- package/docs/sdks/loanwritebacktransfers/README.md +0 -156
- package/docs/sdks/managedatapulloperations/README.md +0 -89
- package/docs/sdks/managedatarefresh/README.md +0 -93
- package/docs/sdks/salescustomers/README.md +0 -103
- package/docs/sdks/salesdisputes/README.md +0 -103
- package/docs/sdks/saleslocations/README.md +0 -99
- package/docs/sdks/salesmetrics/README.md +0 -218
- package/docs/sdks/salesorders/README.md +0 -103
- package/docs/sdks/salespaymentmethods/README.md +0 -103
- package/docs/sdks/salespayments/README.md +0 -103
- package/docs/sdks/salesproductcategories/README.md +0 -103
- package/docs/sdks/salesproducts/README.md +0 -103
- package/docs/sdks/salesreports/README.md +0 -145
- package/docs/sdks/salestransactions/README.md +0 -103
- package/docs/sdks/transactionsaccounttransactions/README.md +0 -103
- package/docs/sdks/transactionsdirectcosts/README.md +0 -246
- package/docs/sdks/transactionsjournalentries/README.md +0 -101
- package/docs/sdks/transactionsjournals/README.md +0 -101
- package/docs/sdks/transactionstransfers/README.md +0 -103
|
@@ -0,0 +1,701 @@
|
|
|
1
|
+
# AccountingPayment
|
|
2
|
+
|
|
3
|
+
> **Payments or bill payments?**
|
|
4
|
+
>
|
|
5
|
+
> In Codat, payments represent accounts receivable only. For accounts payable, see [bill payments](https://docs.codat.io/lending-api#/schemas/BillPayment). These include [bills](https://docs.codat.io/lending-api#/schemas/Bill) and credit notes against bills.
|
|
6
|
+
|
|
7
|
+
> View the coverage for payments in the <a className="external" href="https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=payments" target="_blank">Data coverage explorer</a>.
|
|
8
|
+
|
|
9
|
+
## Overview
|
|
10
|
+
|
|
11
|
+
Payments include all accounts receivable transaction data. This includes [invoices](https://docs.codat.io/lending-api#/schemas/Invoice) and [credit notes](https://docs.codat.io/lending-api#/schemas/CreditNote).
|
|
12
|
+
|
|
13
|
+
A payment in Codat usually represents an allocation of money within any customer accounts receivable account. This includes, but is not strictly limited to:
|
|
14
|
+
|
|
15
|
+
- A payment made against an invoice, like a credit card, cheque, or cash payment.
|
|
16
|
+
- An allocation of a customer's credit note, either to an invoice or maybe a refund.
|
|
17
|
+
- A payment made directly to that accounts receivable account. This might be an overpayment or a prepayment. It might also be the refund of a payment made directly to an accounts receivable account.
|
|
18
|
+
|
|
19
|
+
Depending on the payments allowed by the underlying accounting package, some payment types may be combined. Please see the example for more details.
|
|
20
|
+
|
|
21
|
+
In Codat, a payment contains details of:
|
|
22
|
+
|
|
23
|
+
- When the payment was recorded in the accounting system.
|
|
24
|
+
- How much it is for and in what currency that amount is in.
|
|
25
|
+
- Who the payment was _paid by_ – the _customer_.
|
|
26
|
+
- The payment method used.
|
|
27
|
+
- The breakdown of the types of payments – the _line items_.
|
|
28
|
+
|
|
29
|
+
Payments is a child data type of [account transactions](https://docs.codat.io/lending-api#/schemas/AccountTransaction).
|
|
30
|
+
|
|
31
|
+
## Payment types
|
|
32
|
+
|
|
33
|
+
## Payment of an invoice
|
|
34
|
+
|
|
35
|
+
A payment paying a single invoice has one entry in its `lines` array. This **line** has the following properties:
|
|
36
|
+
|
|
37
|
+
- An _amount_ that indicates the amount of the invoice that was paid. This is always positive.
|
|
38
|
+
- A **links** array containing one element with the following properties:
|
|
39
|
+
- A **type** that indicates the type of **link**, in this case an `Invoice`.
|
|
40
|
+
- An **id** that contains the ID of the invoice that was paid.
|
|
41
|
+
- An **amount** for the link. The sum of the **line.amount** and the **links.amount** must equal `0`.
|
|
42
|
+
|
|
43
|
+
The **amount** field on the **line** equals the **totalAmount** on the payment.
|
|
44
|
+
|
|
45
|
+
## Payment of multiple invoices
|
|
46
|
+
|
|
47
|
+
A single payment can pay multiple invoices. This can be represented in one of two formats depending on how the customer keeps their books:
|
|
48
|
+
|
|
49
|
+
- The payment has multiple entries in its **lines** array, one for each invoice that is paid. Each line follows the example and rules described in [Payment of an invoice](#payment-of-an-invoice).
|
|
50
|
+
- The payment has a line with multiple links to each invoice. This occurs when the proportion of the original payment allocated to each invoice is not available.
|
|
51
|
+
|
|
52
|
+
Each **line** has the same properties as those described in [Payment of an invoice](#payment-of-an-invoice), with the **amount** indicating how much of the payment was allocated to the invoice. The sum of line amounts equals the **totalAmount** on the payment.
|
|
53
|
+
|
|
54
|
+
## Payments and refunds on account
|
|
55
|
+
|
|
56
|
+
A payment on account, that is a payment that doesn’t pay a specific invoice, has one entry in its lines array. The **line** has the following properties:
|
|
57
|
+
|
|
58
|
+
- A **totalAmount** that indicates the amount paid by a customer or refunded to them by a company. A payment to the customer is always negative. A refund is always positive.
|
|
59
|
+
- A **links** array containing one element with the following properties:
|
|
60
|
+
- A **type** that indicates the type of link. For a payment this is `PaymentOnAccount`. For a refund this is `Refund`.
|
|
61
|
+
- The **id** containing the ID of the customer.
|
|
62
|
+
- The **amount** for the link is `0` – the **totalAmount** _or_ the amount of the payment or refund.
|
|
63
|
+
|
|
64
|
+
It is possible to have a payment that is part _on account_ and part _allocated_ to an invoice. Each line should follow the examples above.
|
|
65
|
+
|
|
66
|
+
## Using a credit note to pay an invoice
|
|
67
|
+
|
|
68
|
+
The payment of an invoice using a credit note has one entry in its **lines** array. This **line** has the following properties:
|
|
69
|
+
|
|
70
|
+
- An **amount** that indicates the amount of money moved, which in this case is `0`, as the credit note and invoice allocation must balance each other.
|
|
71
|
+
- A **links** array containing two elements:
|
|
72
|
+
- The first **link** has:
|
|
73
|
+
- A **type** that indicates the type of **link**, in this case an `Invoice`.
|
|
74
|
+
- An **id** that contains the ID of the invoice that was paid.
|
|
75
|
+
- The second **link** has:
|
|
76
|
+
- A **type** that indicates the type of **link**, in this case a `CreditNote`.
|
|
77
|
+
- An **id** that contains the ID of the credit note used by this payment.
|
|
78
|
+
|
|
79
|
+
The **amount** field on the **line** equals the **totalAmount** on the payment.
|
|
80
|
+
|
|
81
|
+
## Refunding a credit note
|
|
82
|
+
|
|
83
|
+
A payment refunding a credit note has one entry in its **lines** array. This **line** has the following properties:
|
|
84
|
+
|
|
85
|
+
- An **amount** that indicates the amount of the credit note that was refunded. This is always negative for a refund.
|
|
86
|
+
- A **links** array that contains one element with the following properties:
|
|
87
|
+
- A **type** that indicates the type of **link**, in this case a `CreditNote`.
|
|
88
|
+
- An **id** that contains the ID of the credit note that was refunded.
|
|
89
|
+
|
|
90
|
+
The **totalAmount** field on the payment equals the **amount** field of the **line**. These are both negative, as this is money leaving accounts receivable.
|
|
91
|
+
|
|
92
|
+
## Refunding a payment
|
|
93
|
+
|
|
94
|
+
If a payment is refunded, for example, if a customer overpaid an invoice and the overpayment is returned to the customer, there are two payment records:
|
|
95
|
+
|
|
96
|
+
- One for the incoming over payment.
|
|
97
|
+
- Another for the outgoing refund.
|
|
98
|
+
|
|
99
|
+
The payment issuing the refund has a negative **totalAmount**. This payment also has one entry in its lines array with the following properties:
|
|
100
|
+
|
|
101
|
+
- An **amount** that indicates the amount that was refunded. This is always negative.
|
|
102
|
+
- A **links** array that contains one element with the following properties:
|
|
103
|
+
- A **type** that indicates the type of **link**, in this case a `Payment`.
|
|
104
|
+
- An **id** that contains the ID of the payment that was refunded.
|
|
105
|
+
|
|
106
|
+
The **amount** field on the **line** equals the **totalAmount** on the payment and is negative, as this is money leaving accounts receivable.
|
|
107
|
+
|
|
108
|
+
The payment that was refunded has a line where the **amount** is positive and the type of the link is `Refund`. This payment may have several entries in its **lines** array if it was used to partly pay an invoice.
|
|
109
|
+
|
|
110
|
+
For example: A £1,050 payment on a £1,000 invoice with a refund of £50 has two lines:
|
|
111
|
+
|
|
112
|
+
- One for £1,000 linked to the invoice that was paid.
|
|
113
|
+
- Another for £50 linked to the payment that refunded the overpayment with a** type** of `Refund` and an ID that corresponds to the payment.
|
|
114
|
+
|
|
115
|
+
The **line** linked to the payment has the following properties:
|
|
116
|
+
|
|
117
|
+
- An **amount** that indicates the amount that was refunded. This is positive as its money that was added to accounts receivable. It's balanced out by the negative amount of the refund.
|
|
118
|
+
- A **links** array containing one element with the following properties:
|
|
119
|
+
- A **type** that indicates the type of **link**, in this case a `Refund`.
|
|
120
|
+
- An **id** that contains the ID of the payment that refunded this line.
|
|
121
|
+
|
|
122
|
+
> **Support for linked payments**
|
|
123
|
+
>
|
|
124
|
+
> Not all accounting packages support linking payments in this way. In some platforms, you may see a payment on account and a refund on account.
|
|
125
|
+
|
|
126
|
+
## Foreign currencies
|
|
127
|
+
|
|
128
|
+
There are two types of currency rate that are included in the payments data type:
|
|
129
|
+
|
|
130
|
+
Payment currency rate:
|
|
131
|
+
|
|
132
|
+
- Base currency of the accounts receivable account.
|
|
133
|
+
- Foreign currency of the payment.
|
|
134
|
+
|
|
135
|
+
Payment line link currency rate:
|
|
136
|
+
|
|
137
|
+
- Base currency of the item the link represents.
|
|
138
|
+
- Foreign currency of the payment.
|
|
139
|
+
|
|
140
|
+
These two rates allow the calculation of currency loss or gain for any of the transactions affected by the payment lines. The second rate is used when a payment is applied to an item in a currency that doesn't match either:
|
|
141
|
+
|
|
142
|
+
- The base currency for the accounts receivable account.
|
|
143
|
+
- The currency of the item.
|
|
144
|
+
|
|
145
|
+
```json title="Currency rate example"
|
|
146
|
+
{
|
|
147
|
+
"id": "123",
|
|
148
|
+
"note": "",
|
|
149
|
+
"totalAmount": 99.99,
|
|
150
|
+
"currency": "GBP",
|
|
151
|
+
"lines": [
|
|
152
|
+
{
|
|
153
|
+
"amount": 99.99,
|
|
154
|
+
"links": [
|
|
155
|
+
{
|
|
156
|
+
"type": "Invoice",
|
|
157
|
+
"id": "178",
|
|
158
|
+
"amount": -50,
|
|
159
|
+
"currencyRate": 1.9998
|
|
160
|
+
}
|
|
161
|
+
]
|
|
162
|
+
}
|
|
163
|
+
]
|
|
164
|
+
}
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
## Example data
|
|
170
|
+
|
|
171
|
+
> **Object properties**
|
|
172
|
+
>
|
|
173
|
+
> For the sake of brevity, the examples here may omit properties from objects. For the full object definition, see [Payments](https://api.codat.io/swagger/index.html#/Payments).
|
|
174
|
+
|
|
175
|
+
## Simple examples
|
|
176
|
+
|
|
177
|
+
```json title="Payment for invoice"
|
|
178
|
+
{
|
|
179
|
+
"totalAmount": 1000,
|
|
180
|
+
"lines": [
|
|
181
|
+
{
|
|
182
|
+
"amount" : 1000,
|
|
183
|
+
"links" : [
|
|
184
|
+
{
|
|
185
|
+
"type" : "Invoice",
|
|
186
|
+
"id" : "x",
|
|
187
|
+
"amount" : -1000
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
}
|
|
191
|
+
]
|
|
192
|
+
}
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
```json title="Allocation of credit note"
|
|
198
|
+
{
|
|
199
|
+
"totalAmount": 0,
|
|
200
|
+
"lines": [
|
|
201
|
+
{
|
|
202
|
+
"amount" : 0,
|
|
203
|
+
"links" : [
|
|
204
|
+
{
|
|
205
|
+
"type" : "Invoice",
|
|
206
|
+
"id" : "x",
|
|
207
|
+
"amount" : -1000
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"type" : "CreditNote",
|
|
211
|
+
"id" : "y",
|
|
212
|
+
"amount" : 1000
|
|
213
|
+
}
|
|
214
|
+
]
|
|
215
|
+
}
|
|
216
|
+
]
|
|
217
|
+
}
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
```json title="Payment of invoice and payment on account"
|
|
223
|
+
{
|
|
224
|
+
"totalAmount": 2000,
|
|
225
|
+
"lines": [
|
|
226
|
+
{
|
|
227
|
+
"amount" : 1000,
|
|
228
|
+
"links" : [
|
|
229
|
+
{
|
|
230
|
+
"type" : "Invoice",
|
|
231
|
+
"id" : "x",
|
|
232
|
+
"amount" : -1000
|
|
233
|
+
}
|
|
234
|
+
]
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"amount" : 1000,
|
|
238
|
+
"links" : [
|
|
239
|
+
{
|
|
240
|
+
"type" : "PaymentOnAccount",
|
|
241
|
+
"id" : "y",
|
|
242
|
+
"amount" : -1000
|
|
243
|
+
}
|
|
244
|
+
]
|
|
245
|
+
}
|
|
246
|
+
]
|
|
247
|
+
}
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
```json title="Refund of credit note"
|
|
253
|
+
{
|
|
254
|
+
"totalAmount": -1000,
|
|
255
|
+
"lines": [
|
|
256
|
+
{
|
|
257
|
+
"amount" : -1000,
|
|
258
|
+
"links" : [
|
|
259
|
+
{
|
|
260
|
+
"type" : "CreditNote",
|
|
261
|
+
"id" : "y",
|
|
262
|
+
"amount" : 1000
|
|
263
|
+
}
|
|
264
|
+
]
|
|
265
|
+
}
|
|
266
|
+
]
|
|
267
|
+
}
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
```json title="Refund on accounts receivable account"
|
|
273
|
+
{
|
|
274
|
+
"totalAmount": -1000,
|
|
275
|
+
"lines": [
|
|
276
|
+
{
|
|
277
|
+
"amount" : -1000,
|
|
278
|
+
"links" : [
|
|
279
|
+
{
|
|
280
|
+
"type" : "PaymentOnAccount",
|
|
281
|
+
"id" : "y",
|
|
282
|
+
"amount" : 1000
|
|
283
|
+
}
|
|
284
|
+
]
|
|
285
|
+
}
|
|
286
|
+
]
|
|
287
|
+
}
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
```json title="Linked refund on accounts receivable account"
|
|
293
|
+
{
|
|
294
|
+
"id" : "payment-001",
|
|
295
|
+
"totalAmount": 1000,
|
|
296
|
+
"lines": [
|
|
297
|
+
{
|
|
298
|
+
"amount" : 1000,
|
|
299
|
+
"links" : [
|
|
300
|
+
{
|
|
301
|
+
"type" : "Refund",
|
|
302
|
+
"id" : "refund-001",
|
|
303
|
+
"amount" : -1000
|
|
304
|
+
}
|
|
305
|
+
]
|
|
306
|
+
}
|
|
307
|
+
]
|
|
308
|
+
}
|
|
309
|
+
{
|
|
310
|
+
"id" : "refund-001",
|
|
311
|
+
"totalAmount": -1000,
|
|
312
|
+
"lines": [
|
|
313
|
+
{
|
|
314
|
+
"amount" : -1000,
|
|
315
|
+
"links" : [
|
|
316
|
+
{
|
|
317
|
+
"type" : "Payment",
|
|
318
|
+
"id" : "payment-001",
|
|
319
|
+
"amount" : 1000
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
}
|
|
323
|
+
]
|
|
324
|
+
}
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
```json title="Using a credit note and cash to pay an invoice"
|
|
330
|
+
{
|
|
331
|
+
"totalAmount": 250,
|
|
332
|
+
"lines": [
|
|
333
|
+
{
|
|
334
|
+
"amount": 0,
|
|
335
|
+
"links": [
|
|
336
|
+
{
|
|
337
|
+
"type": "Invoice",
|
|
338
|
+
"id": "x",
|
|
339
|
+
"amount": -750
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"type": "CreditNote",
|
|
343
|
+
"id": "y",
|
|
344
|
+
"amount": 750
|
|
345
|
+
}
|
|
346
|
+
]
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"amount": 250,
|
|
350
|
+
"links": [
|
|
351
|
+
{
|
|
352
|
+
"type": "Invoice",
|
|
353
|
+
"id": "x",
|
|
354
|
+
"amount": -250
|
|
355
|
+
}
|
|
356
|
+
]
|
|
357
|
+
}
|
|
358
|
+
]
|
|
359
|
+
}
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
## Complex examples
|
|
365
|
+
|
|
366
|
+
```json title="Use two credit notes and 1000 in to "bank" (cash, cheque etc.) to pay invoice"
|
|
367
|
+
{
|
|
368
|
+
"totalAmount": 1000,
|
|
369
|
+
"lines": [
|
|
370
|
+
{
|
|
371
|
+
"amount" : 0,
|
|
372
|
+
"links" : [
|
|
373
|
+
{
|
|
374
|
+
"type" : "Invoice",
|
|
375
|
+
"id" : "x",
|
|
376
|
+
"amount" : -1000
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"type" : "CreditNote",
|
|
380
|
+
"id" : "y",
|
|
381
|
+
"amount" : 1000
|
|
382
|
+
}
|
|
383
|
+
]
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"amount" : 0,
|
|
387
|
+
"links" : [
|
|
388
|
+
{
|
|
389
|
+
"type" : "Invoice",
|
|
390
|
+
"id" : "x",
|
|
391
|
+
"amount" : -1000
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"type" : "CreditNote",
|
|
395
|
+
"id" : "z",
|
|
396
|
+
"amount" : 1000
|
|
397
|
+
}
|
|
398
|
+
]
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"amount" : 1000,
|
|
402
|
+
"links" : [
|
|
403
|
+
{
|
|
404
|
+
"type" : "Invoice",
|
|
405
|
+
"id" : "x",
|
|
406
|
+
"amount" : -1000
|
|
407
|
+
}
|
|
408
|
+
]
|
|
409
|
+
}
|
|
410
|
+
]
|
|
411
|
+
}
|
|
412
|
+
```
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
```json title="Pay an invoice with two credit notes and cash, with 1000 left 'on account'"
|
|
417
|
+
{
|
|
418
|
+
"totalAmount": 2000,
|
|
419
|
+
"lines": [
|
|
420
|
+
{
|
|
421
|
+
"amount" : 0,
|
|
422
|
+
"links" : [
|
|
423
|
+
{
|
|
424
|
+
"type" : "Invoice",
|
|
425
|
+
"id" : "x",
|
|
426
|
+
"amount" : -1000
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"type" : "CreditNote",
|
|
430
|
+
"id" : "y",
|
|
431
|
+
"amount" : 1000
|
|
432
|
+
}
|
|
433
|
+
]
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"amount" : 0,
|
|
437
|
+
"links" : [
|
|
438
|
+
{
|
|
439
|
+
"type" : "Invoice",
|
|
440
|
+
"id" : "x",
|
|
441
|
+
"amount" : -1000
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"type" : "CreditNote",
|
|
445
|
+
"id" : "z",
|
|
446
|
+
"amount" : 1000
|
|
447
|
+
}
|
|
448
|
+
]
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"amount" : 1000,
|
|
452
|
+
"links" : [
|
|
453
|
+
{
|
|
454
|
+
"type" : "Invoice",
|
|
455
|
+
"id" : "x",
|
|
456
|
+
"amount" : -1000
|
|
457
|
+
}
|
|
458
|
+
]
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"amount" : 1000,
|
|
462
|
+
"links" : [
|
|
463
|
+
{
|
|
464
|
+
"type" : "PaymentOnAccount",
|
|
465
|
+
"id" : "customer-001",
|
|
466
|
+
"amount" : -1000
|
|
467
|
+
}
|
|
468
|
+
]
|
|
469
|
+
}
|
|
470
|
+
]
|
|
471
|
+
}
|
|
472
|
+
```
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
```json title="Two credit notes pay two invoices with no allocation amount specified"
|
|
477
|
+
{
|
|
478
|
+
"totalAmount": 0,
|
|
479
|
+
"lines": [
|
|
480
|
+
{
|
|
481
|
+
"amount" : 0,
|
|
482
|
+
"links" : [
|
|
483
|
+
{
|
|
484
|
+
"type" : "Invoice",
|
|
485
|
+
"id" : "w",
|
|
486
|
+
"amount" : -1000
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"type" : "Invoice",
|
|
490
|
+
"id" : "x",
|
|
491
|
+
"amount" : -1000
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"type" : "CreditNote",
|
|
495
|
+
"id" : "y",
|
|
496
|
+
"amount" : 1000
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"type" : "CreditNote",
|
|
500
|
+
"id" : "z",
|
|
501
|
+
"amount" : 1000
|
|
502
|
+
}
|
|
503
|
+
]
|
|
504
|
+
}
|
|
505
|
+
]
|
|
506
|
+
}
|
|
507
|
+
```
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
```json title="Two credit notes and cash pay three invoices with no allocation amount specified, and refund cash"
|
|
512
|
+
{
|
|
513
|
+
"totalAmount": 2000,
|
|
514
|
+
"lines": [
|
|
515
|
+
{
|
|
516
|
+
"amount" : 1000,
|
|
517
|
+
"links" : [
|
|
518
|
+
{
|
|
519
|
+
"type" : "Invoice",
|
|
520
|
+
"id" : "w",
|
|
521
|
+
"amount" : -1000
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"type" : "Invoice",
|
|
525
|
+
"id" : "x",
|
|
526
|
+
"amount" : -1000
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"type" : "Invoice",
|
|
530
|
+
"id" : "u",
|
|
531
|
+
"amount" : -1000
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"type" : "CreditNote",
|
|
535
|
+
"id" : "y",
|
|
536
|
+
"amount" : 1000
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"type" : "CreditNote",
|
|
540
|
+
"id" : "z",
|
|
541
|
+
"amount" : 1000
|
|
542
|
+
}
|
|
543
|
+
]
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"amount" : 1000,
|
|
547
|
+
"links" : [
|
|
548
|
+
{
|
|
549
|
+
"type" : "Refund",
|
|
550
|
+
"id" : "refund-001",
|
|
551
|
+
"amount" : -1000
|
|
552
|
+
}
|
|
553
|
+
]
|
|
554
|
+
}
|
|
555
|
+
]
|
|
556
|
+
}
|
|
557
|
+
{
|
|
558
|
+
"id" : "refund-001",
|
|
559
|
+
"totalAmount": -1000,
|
|
560
|
+
"lines": [
|
|
561
|
+
{
|
|
562
|
+
"amount" : -1000,
|
|
563
|
+
"links" : [
|
|
564
|
+
{
|
|
565
|
+
"type" : "Payment",
|
|
566
|
+
"id" : "payment-001",
|
|
567
|
+
"amount" : 1000
|
|
568
|
+
}
|
|
569
|
+
]
|
|
570
|
+
}
|
|
571
|
+
]
|
|
572
|
+
}
|
|
573
|
+
```
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
In this example, a payment on account is used to pay the same invoice in January and again in February.
|
|
578
|
+
|
|
579
|
+
```json title="January"
|
|
580
|
+
{
|
|
581
|
+
"id": "001",
|
|
582
|
+
"totalAmount": 5000,
|
|
583
|
+
"date" : "1901-01-01",
|
|
584
|
+
"lines": [
|
|
585
|
+
{
|
|
586
|
+
"amount" : 1000,
|
|
587
|
+
"links" : [
|
|
588
|
+
{
|
|
589
|
+
"type" : "Invoice",
|
|
590
|
+
"id" : "Invoice-x",
|
|
591
|
+
"amount" : -1000
|
|
592
|
+
}
|
|
593
|
+
]
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"amount" : 4000,
|
|
597
|
+
"links" : [
|
|
598
|
+
{
|
|
599
|
+
"type" : "PaymentOnAccount",
|
|
600
|
+
"id" : "PaymentOnAccount-y",
|
|
601
|
+
"amount" : -4000
|
|
602
|
+
}
|
|
603
|
+
]
|
|
604
|
+
}
|
|
605
|
+
]
|
|
606
|
+
}
|
|
607
|
+
```
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
```json title="February"
|
|
612
|
+
{
|
|
613
|
+
"id": "001",
|
|
614
|
+
"totalAmount": 5000,
|
|
615
|
+
"date" : "1901-02-01",
|
|
616
|
+
"lines": [
|
|
617
|
+
{
|
|
618
|
+
"amount" : 1000,
|
|
619
|
+
"links" : [
|
|
620
|
+
{
|
|
621
|
+
"type" : "Invoice",
|
|
622
|
+
"id" : "Invoice-x",
|
|
623
|
+
"amount" : -1000
|
|
624
|
+
}
|
|
625
|
+
]
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"amount" : 1000,
|
|
629
|
+
"links" : [
|
|
630
|
+
{
|
|
631
|
+
"type" : "Invoice",
|
|
632
|
+
"id" : "Invoice-y",
|
|
633
|
+
"amount" : -1000
|
|
634
|
+
}
|
|
635
|
+
]
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"amount" : 3000,
|
|
639
|
+
"links" : [
|
|
640
|
+
{
|
|
641
|
+
"type" : "PaymentOnAccount",
|
|
642
|
+
"id" : "PaymentOnAccount-y",
|
|
643
|
+
"amount" : -3000
|
|
644
|
+
}
|
|
645
|
+
]
|
|
646
|
+
}
|
|
647
|
+
]
|
|
648
|
+
}
|
|
649
|
+
```
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
```json title="Two credit notes and some cash pay two invoices with no allocations specified"
|
|
654
|
+
{
|
|
655
|
+
"totalAmount": 500,
|
|
656
|
+
"lines": [
|
|
657
|
+
{
|
|
658
|
+
"amount": 500,
|
|
659
|
+
"links": [{
|
|
660
|
+
"type": "Invoice",
|
|
661
|
+
"id": "a",
|
|
662
|
+
"amount": -1000
|
|
663
|
+
}, {
|
|
664
|
+
"type": "Invoice",
|
|
665
|
+
"id": "b",
|
|
666
|
+
"amount": -1000
|
|
667
|
+
}, {
|
|
668
|
+
"type": "CreditNote",
|
|
669
|
+
"id": "y",
|
|
670
|
+
"amount": 750
|
|
671
|
+
},{
|
|
672
|
+
"type": "CreditNote",
|
|
673
|
+
"id": "z",
|
|
674
|
+
"amount": 750
|
|
675
|
+
}
|
|
676
|
+
]
|
|
677
|
+
}
|
|
678
|
+
]
|
|
679
|
+
}
|
|
680
|
+
```
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
## Fields
|
|
684
|
+
|
|
685
|
+
| Field | Type | Required | Description | Example |
|
|
686
|
+
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
687
|
+
| `accountRef` | [shared.AccountRef](../../../sdk/models/shared/accountref.md) | :heavy_minus_sign: | Data types that reference an account, for example bill and invoice line items, use an accountRef that includes the ID and name of the linked account. | |
|
|
688
|
+
| `currency` | *string* | :heavy_minus_sign: | The currency data type in Codat is the [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code, e.g. _GBP_.<br/><br/>## Unknown currencies<br/><br/>In line with the ISO 4217 specification, the code _XXX_ is used when the data source does not return a currency for a transaction. <br/><br/>There are only a very small number of edge cases where this currency code is returned by the Codat system. | GBP |
|
|
689
|
+
| `currencyRate` | *number* | :heavy_minus_sign: | Rate to convert the total amount of the payment into the base currency for the company at the time of the payment.<br/><br/>Currency rates in Codat are implemented as the multiple of foreign currency units to each base currency unit. <br/><br/>It is not possible to perform the currency conversion with two or more non-base currencies participating in the transaction. For example, if a company's base currency is USD, and it has a bill issued in EUR, then the bill payment must happen in USD or EUR.<br/><br/>Where the currency rate is provided by the underlying accounting platform, it will be available from Codat with the same precision (up to a maximum of 9 decimal places). <br/><br/>For accounting platforms which do not provide an explicit currency rate, it is calculated as `baseCurrency / foreignCurrency` and will be returned to 9 decimal places.<br/><br/>## Examples with base currency of GBP<br/><br/>\| Foreign Currency \| Foreign Amount \| Currency Rate \| Base Currency Amount (GBP) \|<br/>\| :--------------- \| :------------- \| :------------ \| :------------------------- \|<br/>\| **USD** \| $20 \| 0.781 \| £15.62 \|<br/>\| **EUR** \| €20 \| 0.885 \| £17.70 \|<br/>\| **RUB** \| ₽20 \| 0.011 \| £0.22 \|<br/><br/>## Examples with base currency of USD<br/><br/>\| Foreign Currency \| Foreign Amount \| Currency Rate \| Base Currency Amount (USD) \|<br/>\| :--------------- \| :------------- \| :------------ \| :------------------------- \|<br/>\| **GBP** \| £20 \| 1.277 \| $25.54 \|<br/>\| **EUR** \| €20 \| 1.134 \| $22.68 \|<br/>\| **RUB** \| ₽20 \| 0.015 \| $0.30 \| | |
|
|
690
|
+
| `customerRef` | [shared.AccountingCustomerRef](../../../sdk/models/shared/accountingcustomerref.md) | :heavy_minus_sign: | N/A | |
|
|
691
|
+
| `date` | *string* | :heavy_check_mark: | In Codat's data model, dates and times are represented using the <a class="external" href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601 standard</a>. Date and time fields are formatted as strings; for example:<br/><br/>```<br/>2020-10-08T22:40:50Z<br/>2021-01-01T00:00:00<br/>```<br/><br/><br/><br/>When syncing data that contains `DateTime` fields from Codat, make sure you support the following cases when reading time information:<br/><br/>- Coordinated Universal Time (UTC): `2021-11-15T06:00:00Z`<br/>- Unqualified local time: `2021-11-15T01:00:00`<br/>- UTC time offsets: `2021-11-15T01:00:00-05:00`<br/><br/>> Time zones<br/>> <br/>> Not all dates from Codat will contain information about time zones. <br/>> Where it is not available from the underlying platform, Codat will return these as times local to the business whose data has been synced. | 2022-10-23T00:00:00.000Z |
|
|
692
|
+
| `id` | *string* | :heavy_minus_sign: | Identifier for the payment, unique to the company in the accounting platform. | |
|
|
693
|
+
| `lines` | [shared.PaymentLine](../../../sdk/models/shared/paymentline.md)[] | :heavy_minus_sign: | An array of payment lines. | |
|
|
694
|
+
| `metadata` | [shared.Metadata](../../../sdk/models/shared/metadata.md) | :heavy_minus_sign: | N/A | |
|
|
695
|
+
| `modifiedDate` | *string* | :heavy_minus_sign: | N/A | 2022-10-23T00:00:00.000Z |
|
|
696
|
+
| `note` | *string* | :heavy_minus_sign: | Any additional information associated with the payment. | |
|
|
697
|
+
| `paymentMethodRef` | [shared.PaymentMethodRef](../../../sdk/models/shared/paymentmethodref.md) | :heavy_minus_sign: | The payment method the record is linked to in the accounting or commerce platform. | |
|
|
698
|
+
| `reference` | *string* | :heavy_minus_sign: | Friendly reference for the payment. | |
|
|
699
|
+
| `sourceModifiedDate` | *string* | :heavy_minus_sign: | N/A | 2022-10-23T00:00:00.000Z |
|
|
700
|
+
| `supplementalData` | [shared.SupplementalData](../../../sdk/models/shared/supplementaldata.md) | :heavy_minus_sign: | Supplemental data is additional data you can include in our standard data types. <br/><br/>It is referenced as a configured dynamic key value pair that is unique to the accounting platform. [Learn more](https://docs.codat.io/using-the-api/supplemental-data/overview) about supplemental data. | |
|
|
701
|
+
| `totalAmount` | *number* | :heavy_minus_sign: | Amount of the payment in the payment currency. This value should never change and represents the amount of money paid into the customer's account. | |
|