@codat/lending 0.1.0 → 1.2.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 +312 -1
- package/dist/internal/utils/requestbody.d.ts +1 -1
- package/dist/internal/utils/retries.d.ts +2 -2
- package/dist/internal/utils/security.d.ts +5 -2
- package/dist/internal/utils/security.js +28 -28
- package/dist/sdk/accountingbankdata.d.ts +2 -26
- package/dist/sdk/accountingbankdata.js +24 -146
- package/dist/sdk/accountingbankdataaccounts.d.ts +34 -0
- package/dist/sdk/accountingbankdataaccounts.js +262 -0
- package/dist/sdk/accountspayable.d.ts +8 -170
- package/dist/sdk/accountspayable.js +53 -983
- package/dist/sdk/accountspayablebillcreditnotes.d.ts +34 -0
- package/dist/sdk/accountspayablebillcreditnotes.js +262 -0
- package/dist/sdk/accountspayablebillpayments.d.ts +34 -0
- package/dist/sdk/accountspayablebillpayments.js +262 -0
- package/dist/sdk/accountspayablebills.d.ts +46 -0
- package/dist/sdk/accountspayablebills.js +348 -0
- package/dist/sdk/accountspayablesuppliers.d.ts +74 -0
- package/dist/sdk/accountspayablesuppliers.js +530 -0
- package/dist/sdk/accountsreceivable.d.ts +12 -284
- package/dist/sdk/accountsreceivable.js +13 -1677
- package/dist/sdk/accountsreceivablecreditnotes.d.ts +34 -0
- package/dist/sdk/accountsreceivablecreditnotes.js +262 -0
- package/dist/sdk/accountsreceivablecustomers.d.ts +74 -0
- package/dist/sdk/accountsreceivablecustomers.js +530 -0
- package/dist/sdk/accountsreceivabledirectincomes.d.ts +74 -0
- package/dist/sdk/{financials.js → accountsreceivabledirectincomes.js} +183 -211
- package/dist/sdk/accountsreceivableinvoices.d.ts +93 -0
- package/dist/sdk/{cashflow.js → accountsreceivableinvoices.js} +250 -189
- package/dist/sdk/accountsreceivablepayments.d.ts +34 -0
- package/dist/sdk/accountsreceivablepayments.js +262 -0
- package/dist/sdk/accountsreceivablereports.d.ts +36 -0
- package/dist/sdk/accountsreceivablereports.js +399 -0
- package/dist/sdk/banking.d.ts +15 -0
- package/dist/sdk/banking.js +23 -0
- package/dist/sdk/bankingaccountbalances.d.ts +20 -0
- package/dist/sdk/bankingaccountbalances.js +174 -0
- package/dist/sdk/bankingaccounts.d.ts +34 -0
- package/dist/sdk/bankingaccounts.js +254 -0
- package/dist/sdk/bankingcategorizedstatement.d.ts +19 -0
- package/dist/sdk/bankingcategorizedstatement.js +173 -0
- package/dist/sdk/bankingtransactioncategories.d.ts +34 -0
- package/dist/sdk/bankingtransactioncategories.js +254 -0
- package/dist/sdk/bankingtransactions.d.ts +34 -0
- package/dist/sdk/bankingtransactions.js +254 -0
- package/dist/sdk/companies.js +110 -25
- package/dist/sdk/companyinfo.d.ts +4 -4
- package/dist/sdk/companyinfo.js +52 -18
- package/dist/sdk/connections.js +110 -25
- package/dist/sdk/dataintegrity.js +66 -15
- package/dist/sdk/excelreports.d.ts +10 -2
- package/dist/sdk/excelreports.js +76 -17
- package/dist/sdk/fileupload.js +66 -15
- package/dist/sdk/financialstatements.d.ts +13 -0
- package/dist/sdk/financialstatements.js +21 -0
- package/dist/sdk/financialstatementsaccounts.d.ts +33 -0
- package/dist/sdk/financialstatementsaccounts.js +261 -0
- package/dist/sdk/financialstatementsbalancesheet.d.ts +24 -0
- package/dist/sdk/financialstatementsbalancesheet.js +253 -0
- package/dist/sdk/financialstatementscashflow.d.ts +15 -0
- package/dist/sdk/financialstatementscashflow.js +169 -0
- package/dist/sdk/financialstatementsprofitandloss.d.ts +24 -0
- package/dist/sdk/financialstatementsprofitandloss.js +253 -0
- package/dist/sdk/liabilities.d.ts +4 -4
- package/dist/sdk/liabilities.js +48 -14
- package/dist/sdk/managedata.d.ts +5 -38
- package/dist/sdk/managedata.js +27 -267
- package/dist/sdk/managedatapulloperations.d.ts +22 -0
- package/dist/sdk/managedatapulloperations.js +250 -0
- package/dist/sdk/managedatarefresh.d.ts +28 -0
- package/dist/sdk/managedatarefresh.js +250 -0
- package/dist/sdk/models/operations/{getaccountingcompanyinfo.d.ts → getaccountingprofile.d.ts} +2 -2
- package/dist/sdk/models/operations/{getaccountingcompanyinfo.js → getaccountingprofile.js} +17 -17
- package/dist/sdk/models/operations/{getenhancedprofitandlossaccounts.d.ts → getcategorizedbalancesheetstatement.d.ts} +2 -2
- package/dist/sdk/models/operations/{getenhancedbalancesheetaccounts.js → getcategorizedbalancesheetstatement.js} +19 -19
- package/dist/sdk/models/operations/{getenhancedcashflowtransactions.d.ts → getcategorizedbankstatement.d.ts} +2 -2
- package/dist/sdk/models/operations/{getenhancedcashflowtransactions.js → getcategorizedbankstatement.js} +20 -20
- package/dist/sdk/models/operations/{getenhancedbalancesheetaccounts.d.ts → getcategorizedprofitandlossstatement.d.ts} +2 -2
- package/dist/sdk/models/operations/{getenhancedprofitandlossaccounts.js → getcategorizedprofitandlossstatement.js} +19 -19
- package/dist/sdk/models/operations/{getcommercecompanyinfo.d.ts → getcommerceprofile.d.ts} +2 -2
- package/dist/sdk/models/operations/{getcommercecompanyinfo.js → getcommerceprofile.js} +18 -18
- package/dist/sdk/models/operations/{getcommercerefundsmetrics.d.ts → getcommercerefundsreport.d.ts} +2 -2
- package/dist/sdk/models/operations/{getcommercerefundsmetrics.js → getcommercerefundsreport.js} +23 -23
- package/dist/sdk/models/operations/index.d.ts +8 -8
- package/dist/sdk/models/operations/index.js +8 -8
- package/dist/sdk/models/operations/{isageddebtorreportavailable.d.ts → isageddebtorsreportavailable.d.ts} +3 -3
- package/dist/sdk/models/operations/{isageddebtorreportavailable.js → isageddebtorsreportavailable.js} +16 -16
- package/dist/sdk/models/operations/{getenhancedinvoicesreport.d.ts → listreconciledinvoices.d.ts} +2 -2
- package/dist/sdk/models/operations/{getenhancedinvoicesreport.js → listreconciledinvoices.js} +20 -20
- package/dist/sdk/models/operations/unlinkconnection.d.ts +6 -3
- package/dist/sdk/models/operations/unlinkconnection.js +8 -8
- package/dist/sdk/models/shared/accountbalance.d.ts +1 -1
- package/dist/sdk/models/shared/accountbalance.js +1 -1
- package/dist/sdk/models/shared/accountingaccounts.d.ts +0 -3
- package/dist/sdk/models/shared/accountingaccounts.js +0 -3
- package/dist/sdk/models/shared/accountingaccounttransactions.d.ts +0 -3
- package/dist/sdk/models/shared/accountingaccounttransactions.js +0 -3
- package/dist/sdk/models/shared/accountingbankaccounts.d.ts +0 -3
- package/dist/sdk/models/shared/accountingbankaccounts.js +0 -3
- package/dist/sdk/models/shared/accountingbanktransactions.d.ts +0 -3
- package/dist/sdk/models/shared/accountingbanktransactions.js +0 -3
- package/dist/sdk/models/shared/accountingbill.d.ts +1 -1
- package/dist/sdk/models/shared/accountingbillcreditnote.d.ts +1 -1
- package/dist/sdk/models/shared/accountingbillcreditnotes.d.ts +0 -3
- package/dist/sdk/models/shared/accountingbillcreditnotes.js +0 -3
- package/dist/sdk/models/shared/accountingbillpayment.d.ts +1 -1
- package/dist/sdk/models/shared/accountingbillpayments.d.ts +0 -3
- package/dist/sdk/models/shared/accountingbillpayments.js +0 -3
- package/dist/sdk/models/shared/accountingbills.d.ts +0 -3
- package/dist/sdk/models/shared/accountingbills.js +0 -3
- package/dist/sdk/models/shared/accountingcompanyinfo.d.ts +32 -2
- package/dist/sdk/models/shared/accountingcompanyinfo.js +47 -4
- package/dist/sdk/models/shared/accountingcreditnote.d.ts +1 -1
- package/dist/sdk/models/shared/accountingcreditnotes.d.ts +0 -3
- package/dist/sdk/models/shared/accountingcreditnotes.js +0 -3
- package/dist/sdk/models/shared/accountingcustomer.d.ts +3 -3
- package/dist/sdk/models/shared/accountingcustomer.js +3 -3
- package/dist/sdk/models/shared/accountingcustomers.d.ts +0 -3
- package/dist/sdk/models/shared/accountingcustomers.js +0 -3
- package/dist/sdk/models/shared/accountingdirectcost.d.ts +1 -1
- package/dist/sdk/models/shared/accountingdirectcosts.d.ts +0 -3
- package/dist/sdk/models/shared/accountingdirectcosts.js +0 -3
- package/dist/sdk/models/shared/accountingdirectincome.d.ts +1 -1
- package/dist/sdk/models/shared/accountingdirectincomes.d.ts +0 -3
- package/dist/sdk/models/shared/accountingdirectincomes.js +0 -3
- package/dist/sdk/models/shared/accountinginvoice.d.ts +1 -1
- package/dist/sdk/models/shared/accountinginvoices.d.ts +0 -3
- package/dist/sdk/models/shared/accountinginvoices.js +0 -3
- package/dist/sdk/models/shared/accountingjournalentries.d.ts +0 -3
- package/dist/sdk/models/shared/accountingjournalentries.js +0 -3
- package/dist/sdk/models/shared/accountingjournalentry.d.ts +1 -1
- package/dist/sdk/models/shared/accountingjournals.d.ts +0 -3
- package/dist/sdk/models/shared/accountingjournals.js +0 -3
- package/dist/sdk/models/shared/accountingpayment.d.ts +1 -1
- package/dist/sdk/models/shared/accountingpayments.d.ts +0 -3
- package/dist/sdk/models/shared/accountingpayments.js +0 -3
- package/dist/sdk/models/shared/accountingsupplier.d.ts +3 -3
- package/dist/sdk/models/shared/accountingsupplier.js +3 -3
- package/dist/sdk/models/shared/accountingsuppliers.d.ts +0 -3
- package/dist/sdk/models/shared/accountingsuppliers.js +0 -3
- package/dist/sdk/models/shared/accountingtransfer.d.ts +1 -1
- package/dist/sdk/models/shared/accountingtransfers.d.ts +0 -3
- package/dist/sdk/models/shared/accountingtransfers.js +0 -3
- package/dist/sdk/models/shared/{accountingaddress.d.ts → addressesitems.d.ts} +1 -1
- package/dist/sdk/models/shared/{accountingaddress.js → addressesitems.js} +13 -13
- package/dist/sdk/models/shared/attachments.d.ts +0 -3
- package/dist/sdk/models/shared/attachments.js +0 -3
- package/dist/sdk/models/shared/bankingaccountbalances.d.ts +0 -3
- package/dist/sdk/models/shared/bankingaccountbalances.js +0 -3
- package/dist/sdk/models/shared/bankingaccounts.d.ts +0 -3
- package/dist/sdk/models/shared/bankingaccounts.js +0 -3
- package/dist/sdk/models/shared/bankingtransactioncategories.d.ts +0 -3
- package/dist/sdk/models/shared/bankingtransactioncategories.js +0 -3
- package/dist/sdk/models/shared/bankingtransactions.d.ts +0 -3
- package/dist/sdk/models/shared/bankingtransactions.js +0 -3
- package/dist/sdk/models/shared/commercecustomers.d.ts +0 -3
- package/dist/sdk/models/shared/commercecustomers.js +0 -3
- package/dist/sdk/models/shared/commercedispute.d.ts +1 -1
- package/dist/sdk/models/shared/commercedispute.js +1 -1
- package/dist/sdk/models/shared/commercedisputes.d.ts +0 -3
- package/dist/sdk/models/shared/commercedisputes.js +0 -3
- package/dist/sdk/models/shared/commercelocations.d.ts +0 -3
- package/dist/sdk/models/shared/commercelocations.js +0 -3
- package/dist/sdk/models/shared/commerceorder.d.ts +2 -2
- package/dist/sdk/models/shared/commerceorder.js +1 -1
- package/dist/sdk/models/shared/commerceorders.d.ts +0 -3
- package/dist/sdk/models/shared/commerceorders.js +0 -3
- package/dist/sdk/models/shared/commercepaymentmethods.d.ts +0 -3
- package/dist/sdk/models/shared/commercepaymentmethods.js +0 -3
- package/dist/sdk/models/shared/commercepayments.d.ts +0 -3
- package/dist/sdk/models/shared/commercepayments.js +0 -3
- package/dist/sdk/models/shared/commerceproductcategories.d.ts +0 -3
- package/dist/sdk/models/shared/commerceproductcategories.js +0 -3
- package/dist/sdk/models/shared/commerceproducts.d.ts +0 -3
- package/dist/sdk/models/shared/commerceproducts.js +0 -3
- package/dist/sdk/models/shared/commercetransactions.d.ts +0 -3
- package/dist/sdk/models/shared/commercetransactions.js +0 -3
- package/dist/sdk/models/shared/companies.d.ts +0 -3
- package/dist/sdk/models/shared/companies.js +0 -3
- package/dist/sdk/models/shared/connections.d.ts +0 -3
- package/dist/sdk/models/shared/connections.js +0 -3
- package/dist/sdk/models/shared/contact.d.ts +2 -2
- package/dist/sdk/models/shared/contact.js +3 -3
- package/dist/sdk/models/shared/dataintegritydatatype.d.ts +0 -3
- package/dist/sdk/models/shared/dataintegritydatatype.js +0 -3
- package/dist/sdk/models/shared/dataintegritydetails.d.ts +0 -3
- package/dist/sdk/models/shared/dataintegritydetails.js +0 -3
- package/dist/sdk/models/shared/dataintegritystatuses.d.ts +0 -3
- package/dist/sdk/models/shared/dataintegritystatuses.js +0 -3
- package/dist/sdk/models/shared/dataintegritysummaries.d.ts +0 -3
- package/dist/sdk/models/shared/dataintegritysummaries.js +0 -3
- package/dist/sdk/models/shared/enhancedfinancialreport.d.ts +0 -3
- package/dist/sdk/models/shared/enhancedfinancialreport.js +0 -3
- package/dist/sdk/models/shared/errormessage.d.ts +0 -3
- package/dist/sdk/models/shared/errormessage.js +0 -3
- package/dist/sdk/models/shared/excelstatus.d.ts +0 -3
- package/dist/sdk/models/shared/excelstatus.js +0 -3
- package/dist/sdk/models/shared/index.d.ts +1 -1
- package/dist/sdk/models/shared/index.js +1 -1
- package/dist/sdk/models/shared/loansummary.d.ts +0 -3
- package/dist/sdk/models/shared/loansummary.js +0 -3
- package/dist/sdk/models/shared/loantransactions.d.ts +0 -3
- package/dist/sdk/models/shared/loantransactions.js +0 -3
- package/dist/sdk/models/shared/periodunit.d.ts +0 -3
- package/dist/sdk/models/shared/periodunit.js +0 -3
- package/dist/sdk/models/shared/pulloperations.d.ts +0 -3
- package/dist/sdk/models/shared/pulloperations.js +0 -3
- package/dist/sdk/models/shared/supplementaldata.d.ts +1 -1
- package/dist/sdk/models/shared/supplementaldata.js +1 -1
- package/dist/sdk/sales.d.ts +22 -372
- package/dist/sdk/sales.js +22 -1767
- package/dist/sdk/salescustomers.d.ts +34 -0
- package/dist/sdk/salescustomers.js +262 -0
- package/dist/sdk/salesdisputes.d.ts +34 -0
- package/dist/sdk/salesdisputes.js +262 -0
- package/dist/sdk/saleslocations.d.ts +34 -0
- package/dist/sdk/saleslocations.js +261 -0
- package/dist/sdk/salesmetrics.d.ts +102 -0
- package/dist/sdk/salesmetrics.js +406 -0
- package/dist/sdk/salesorders.d.ts +34 -0
- package/dist/sdk/salesorders.js +262 -0
- package/dist/sdk/salespaymentmethods.d.ts +34 -0
- package/dist/sdk/salespaymentmethods.js +262 -0
- package/dist/sdk/salespayments.d.ts +34 -0
- package/dist/sdk/salespayments.js +262 -0
- package/dist/sdk/salesproductcategories.d.ts +34 -0
- package/dist/sdk/salesproductcategories.js +262 -0
- package/dist/sdk/salesproducts.d.ts +34 -0
- package/dist/sdk/salesproducts.js +262 -0
- package/dist/sdk/salesreports.d.ts +69 -0
- package/dist/sdk/salesreports.js +298 -0
- package/dist/sdk/salestransactions.d.ts +34 -0
- package/dist/sdk/salestransactions.js +262 -0
- package/dist/sdk/sdk.d.ts +38 -30
- package/dist/sdk/sdk.js +33 -45
- package/dist/sdk/transactions.d.ts +10 -176
- package/dist/sdk/transactions.js +11 -1000
- package/dist/sdk/transactionsaccounttransactions.d.ts +34 -0
- package/dist/sdk/transactionsaccounttransactions.js +262 -0
- package/dist/sdk/transactionsdirectcosts.d.ts +74 -0
- package/dist/sdk/transactionsdirectcosts.js +530 -0
- package/dist/sdk/transactionsjournalentries.d.ts +34 -0
- package/dist/sdk/transactionsjournalentries.js +262 -0
- package/dist/sdk/transactionsjournals.d.ts +34 -0
- package/dist/sdk/transactionsjournals.js +262 -0
- package/dist/sdk/transactionstransfers.d.ts +34 -0
- package/dist/sdk/transactionstransfers.js +262 -0
- package/docs/models/operations/{getaccountingcompanyinforequest.md → getaccountingprofilerequest.md} +1 -1
- package/docs/models/operations/{getaccountingcompanyinforesponse.md → getaccountingprofileresponse.md} +1 -1
- package/docs/models/operations/{getenhancedbalancesheetaccountsrequest.md → getcategorizedbalancesheetstatementrequest.md} +1 -1
- package/docs/models/operations/{getenhancedprofitandlossaccountsresponse.md → getcategorizedbalancesheetstatementresponse.md} +1 -1
- package/docs/models/operations/{getenhancedcashflowtransactionsrequest.md → getcategorizedbankstatementrequest.md} +1 -1
- package/docs/models/operations/{getenhancedcashflowtransactionsresponse.md → getcategorizedbankstatementresponse.md} +1 -1
- package/docs/models/operations/{getenhancedprofitandlossaccountsrequest.md → getcategorizedprofitandlossstatementrequest.md} +1 -1
- package/docs/models/operations/{getenhancedbalancesheetaccountsresponse.md → getcategorizedprofitandlossstatementresponse.md} +1 -1
- package/docs/models/operations/{getcommercecompanyinforequest.md → getcommerceprofilerequest.md} +1 -1
- package/docs/models/operations/{getcommercecompanyinforesponse.md → getcommerceprofileresponse.md} +1 -1
- package/docs/models/operations/{getcommercerefundsmetricsrequest.md → getcommercerefundsreportrequest.md} +1 -1
- package/docs/models/operations/{getcommercerefundsmetricsresponse.md → getcommercerefundsreportresponse.md} +1 -1
- package/docs/models/operations/{isageddebtorreportavailablerequest.md → isageddebtorsreportavailablerequest.md} +1 -1
- package/docs/models/operations/{isageddebtorreportavailableresponse.md → isageddebtorsreportavailableresponse.md} +2 -2
- package/docs/models/operations/{getenhancedinvoicesreportrequest.md → listreconciledinvoicesrequest.md} +1 -1
- package/docs/models/operations/{getenhancedinvoicesreportresponse.md → listreconciledinvoicesresponse.md} +1 -1
- package/docs/models/operations/unlinkconnectionrequest.md +5 -5
- package/docs/models/operations/unlinkconnectionupdateconnection.md +8 -0
- package/docs/models/shared/accountbalance.md +1 -1
- package/docs/models/shared/accountingaccounts.md +0 -2
- package/docs/models/shared/accountingaccounttransactions.md +0 -2
- package/docs/models/shared/accountingbankaccounts.md +0 -2
- package/docs/models/shared/accountingbanktransactions.md +0 -2
- package/docs/models/shared/accountingbill.md +1 -1
- package/docs/models/shared/accountingbillcreditnote.md +1 -1
- package/docs/models/shared/accountingbillcreditnotes.md +0 -2
- package/docs/models/shared/accountingbillpayment.md +1 -1
- package/docs/models/shared/accountingbillpayments.md +0 -2
- package/docs/models/shared/accountingbills.md +0 -2
- package/docs/models/shared/accountingcompanyinfo.md +1 -1
- package/docs/models/shared/accountingcompanyinfoaccountingaddress.md +14 -0
- package/docs/models/shared/accountingcreditnote.md +1 -1
- package/docs/models/shared/accountingcreditnotes.md +0 -2
- package/docs/models/shared/accountingcustomer.md +2 -2
- package/docs/models/shared/accountingcustomers.md +0 -2
- package/docs/models/shared/accountingdirectcost.md +1 -1
- package/docs/models/shared/accountingdirectcosts.md +0 -2
- package/docs/models/shared/accountingdirectincome.md +1 -1
- package/docs/models/shared/accountingdirectincomes.md +0 -2
- package/docs/models/shared/accountinginvoice.md +1 -1
- package/docs/models/shared/accountinginvoices.md +0 -2
- package/docs/models/shared/accountingjournalentries.md +0 -2
- package/docs/models/shared/accountingjournalentry.md +1 -1
- package/docs/models/shared/accountingjournals.md +0 -2
- package/docs/models/shared/accountingpayment.md +1 -1
- package/docs/models/shared/accountingpayments.md +0 -2
- package/docs/models/shared/accountingsupplier.md +16 -16
- package/docs/models/shared/accountingsuppliers.md +0 -2
- package/docs/models/shared/accountingtransfer.md +1 -1
- package/docs/models/shared/accountingtransfers.md +0 -2
- package/docs/models/shared/{accountingaddress.md → addressesitems.md} +1 -1
- package/docs/models/shared/attachments.md +0 -2
- package/docs/models/shared/bankingaccountbalances.md +0 -2
- package/docs/models/shared/bankingaccounts.md +0 -2
- package/docs/models/shared/bankingtransactioncategories.md +0 -2
- package/docs/models/shared/bankingtransactions.md +0 -2
- package/docs/models/shared/commercecustomers.md +0 -2
- package/docs/models/shared/commercedispute.md +1 -1
- package/docs/models/shared/commercedisputes.md +0 -2
- package/docs/models/shared/commercelocations.md +0 -2
- package/docs/models/shared/commerceorder.md +1 -1
- package/docs/models/shared/commerceorders.md +0 -2
- package/docs/models/shared/commerceordersupplementaldata.md +1 -1
- package/docs/models/shared/commercepaymentmethods.md +0 -2
- package/docs/models/shared/commercepayments.md +0 -2
- package/docs/models/shared/commerceproductcategories.md +0 -2
- package/docs/models/shared/commerceproducts.md +0 -2
- package/docs/models/shared/commercetransactions.md +0 -2
- package/docs/models/shared/companies.md +0 -2
- package/docs/models/shared/connections.md +0 -2
- package/docs/models/shared/contact.md +1 -1
- package/docs/models/shared/dataintegritydatatype.md +0 -2
- package/docs/models/shared/dataintegritydetails.md +0 -2
- package/docs/models/shared/dataintegritystatuses.md +0 -2
- package/docs/models/shared/dataintegritysummaries.md +0 -2
- package/docs/models/shared/enhancedfinancialreport.md +0 -2
- package/docs/models/shared/errormessage.md +0 -2
- package/docs/models/shared/excelstatus.md +0 -2
- package/docs/models/shared/loansummary.md +0 -2
- package/docs/models/shared/loantransactions.md +0 -2
- package/docs/models/shared/periodunit.md +0 -2
- package/docs/models/shared/pulloperations.md +0 -2
- package/docs/models/shared/supplementaldata.md +1 -1
- package/docs/sdks/accountingbankdata/README.md +2 -101
- package/docs/sdks/accountingbankdataaccounts/README.md +103 -0
- package/docs/sdks/accountspayable/README.md +2 -664
- package/docs/sdks/accountspayablebillcreditnotes/README.md +101 -0
- package/docs/sdks/accountspayablebillpayments/README.md +101 -0
- package/docs/sdks/accountspayablebills/README.md +148 -0
- package/docs/sdks/accountspayablesuppliers/README.md +244 -0
- package/docs/sdks/accountsreceivable/README.md +0 -1089
- package/docs/sdks/accountsreceivablecreditnotes/README.md +101 -0
- package/docs/sdks/accountsreceivablecustomers/README.md +244 -0
- package/docs/sdks/accountsreceivabledirectincomes/README.md +247 -0
- package/docs/sdks/{financials → accountsreceivableinvoices}/README.md +123 -111
- package/docs/sdks/accountsreceivablepayments/README.md +101 -0
- package/docs/sdks/accountsreceivablereports/README.md +172 -0
- package/docs/sdks/banking/README.md +4 -0
- package/docs/sdks/bankingaccountbalances/README.md +54 -0
- package/docs/sdks/bankingaccounts/README.md +103 -0
- package/docs/sdks/bankingcategorizedstatement/README.md +51 -0
- package/docs/sdks/bankingtransactioncategories/README.md +103 -0
- package/docs/sdks/bankingtransactions/README.md +103 -0
- package/docs/sdks/codatlending/README.md +24 -4
- package/docs/sdks/companies/README.md +1 -1
- package/docs/sdks/companyinfo/README.md +22 -22
- package/docs/sdks/connections/README.md +4 -3
- package/docs/sdks/dataintegrity/README.md +5 -5
- package/docs/sdks/excelreports/README.md +12 -4
- package/docs/sdks/fileupload/README.md +2 -2
- package/docs/sdks/financialstatements/README.md +4 -0
- package/docs/sdks/financialstatementsaccounts/README.md +100 -0
- package/docs/sdks/financialstatementsbalancesheet/README.md +91 -0
- package/docs/sdks/financialstatementscashflow/README.md +47 -0
- package/docs/sdks/financialstatementsprofitandloss/README.md +91 -0
- package/docs/sdks/liabilities/README.md +4 -4
- package/docs/sdks/managedata/README.md +3 -181
- package/docs/sdks/managedatapulloperations/README.md +89 -0
- package/docs/sdks/managedatarefresh/README.md +93 -0
- package/docs/sdks/sales/README.md +0 -1223
- package/docs/sdks/salescustomers/README.md +103 -0
- package/docs/sdks/salesdisputes/README.md +103 -0
- package/docs/sdks/saleslocations/README.md +99 -0
- package/docs/sdks/salesmetrics/README.md +218 -0
- package/docs/sdks/salesorders/README.md +103 -0
- package/docs/sdks/salespaymentmethods/README.md +103 -0
- package/docs/sdks/salespayments/README.md +103 -0
- package/docs/sdks/salesproductcategories/README.md +103 -0
- package/docs/sdks/salesproducts/README.md +103 -0
- package/docs/sdks/salesreports/README.md +145 -0
- package/docs/sdks/salestransactions/README.md +103 -0
- package/docs/sdks/transactions/README.md +0 -638
- package/docs/sdks/transactionsaccounttransactions/README.md +103 -0
- package/docs/sdks/transactionsdirectcosts/README.md +246 -0
- package/docs/sdks/transactionsjournalentries/README.md +101 -0
- package/docs/sdks/transactionsjournals/README.md +101 -0
- package/docs/sdks/transactionstransfers/README.md +103 -0
- package/package.json +1 -1
- package/dist/sdk/cashflow.d.ts +0 -112
- package/dist/sdk/financials.d.ts +0 -75
- package/docs/models/operations/unlinkconnectionrequestbody.md +0 -8
- package/docs/sdks/cashflow/README.md +0 -402
|
@@ -7,21 +7,7 @@ Data from a linked accounting platform representing money the business owes mone
|
|
|
7
7
|
### Available Operations
|
|
8
8
|
|
|
9
9
|
* [downloadBillAttachment](#downloadbillattachment) - Download bill attachment
|
|
10
|
-
* [downloadSupplierAttachment](#downloadsupplierattachment) - Download supplier attachment
|
|
11
|
-
* [getAgedCreditorsReport](#getagedcreditorsreport) - Aged creditors report
|
|
12
|
-
* [getBill](#getbill) - Get bill
|
|
13
10
|
* [getBillAttachment](#getbillattachment) - Get bill attachment
|
|
14
|
-
* [getBillCreditNote](#getbillcreditnote) - Get bill credit note
|
|
15
|
-
* [getBillPayment](#getbillpayment) - Get bill payment
|
|
16
|
-
* [getSupplier](#getsupplier) - Get supplier
|
|
17
|
-
* [getSupplierAttachment](#getsupplierattachment) - Get supplier attachment
|
|
18
|
-
* [isAgedCreditorsReportAvailable](#isagedcreditorsreportavailable) - Aged creditors report available
|
|
19
|
-
* [listBillAttachments](#listbillattachments) - List bill attachments
|
|
20
|
-
* [listBillCreditNotes](#listbillcreditnotes) - List bill credit notes
|
|
21
|
-
* [listBillPayments](#listbillpayments) - List bill payments
|
|
22
|
-
* [listBills](#listbills) - List bills
|
|
23
|
-
* [listSupplierAttachments](#listsupplierattachments) - List supplier attachments
|
|
24
|
-
* [listSuppliers](#listsuppliers) - List suppliers
|
|
25
11
|
|
|
26
12
|
## downloadBillAttachment
|
|
27
13
|
|
|
@@ -46,7 +32,7 @@ const sdk = new CodatLending({
|
|
|
46
32
|
|
|
47
33
|
sdk.accountsPayable.downloadBillAttachment({
|
|
48
34
|
attachmentId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
49
|
-
billId: "
|
|
35
|
+
billId: "corrupti",
|
|
50
36
|
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
51
37
|
connectionId: "2e9d2c44-f675-40ba-8049-353bfcb5e171",
|
|
52
38
|
}).then((res: DownloadAccountingBillAttachmentResponse) => {
|
|
@@ -70,143 +56,6 @@ sdk.accountsPayable.downloadBillAttachment({
|
|
|
70
56
|
**Promise<[operations.DownloadAccountingBillAttachmentResponse](../../models/operations/downloadaccountingbillattachmentresponse.md)>**
|
|
71
57
|
|
|
72
58
|
|
|
73
|
-
## downloadSupplierAttachment
|
|
74
|
-
|
|
75
|
-
The *Download supplier attachment* endpoint downloads a specific attachment for a given `supplierId` and `attachmentId`.
|
|
76
|
-
|
|
77
|
-
[Suppliers](https://docs.codat.io/accounting-api#/schemas/Supplier) are people or organizations that provide something, such as a product or service.
|
|
78
|
-
|
|
79
|
-
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=suppliers) for integrations that support downloading a supplier attachment.
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
### Example Usage
|
|
83
|
-
|
|
84
|
-
```typescript
|
|
85
|
-
import { CodatLending } from "@codat/lending";
|
|
86
|
-
import { DownloadAccountingSupplierAttachmentResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
87
|
-
|
|
88
|
-
const sdk = new CodatLending({
|
|
89
|
-
security: {
|
|
90
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
91
|
-
},
|
|
92
|
-
});
|
|
93
|
-
|
|
94
|
-
sdk.accountsPayable.downloadSupplierAttachment({
|
|
95
|
-
attachmentId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
96
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
97
|
-
connectionId: "2e9d2c44-f675-40ba-8049-353bfcb5e171",
|
|
98
|
-
supplierId: "corrupti",
|
|
99
|
-
}).then((res: DownloadAccountingSupplierAttachmentResponse) => {
|
|
100
|
-
if (res.statusCode == 200) {
|
|
101
|
-
// handle response
|
|
102
|
-
}
|
|
103
|
-
});
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
### Parameters
|
|
107
|
-
|
|
108
|
-
| Parameter | Type | Required | Description |
|
|
109
|
-
| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
|
|
110
|
-
| `request` | [operations.DownloadAccountingSupplierAttachmentRequest](../../models/operations/downloadaccountingsupplierattachmentrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
111
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
112
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
### Response
|
|
116
|
-
|
|
117
|
-
**Promise<[operations.DownloadAccountingSupplierAttachmentResponse](../../models/operations/downloadaccountingsupplierattachmentresponse.md)>**
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
## getAgedCreditorsReport
|
|
121
|
-
|
|
122
|
-
Returns aged creditors report for company that shows the total balance owed by a business to its suppliers over time.
|
|
123
|
-
|
|
124
|
-
### Example Usage
|
|
125
|
-
|
|
126
|
-
```typescript
|
|
127
|
-
import { CodatLending } from "@codat/lending";
|
|
128
|
-
import { GetAccountingAgedCreditorsReportResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
129
|
-
import { RFCDate } from "@codat/lending/dist/sdk/types";
|
|
130
|
-
|
|
131
|
-
const sdk = new CodatLending({
|
|
132
|
-
security: {
|
|
133
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
134
|
-
},
|
|
135
|
-
});
|
|
136
|
-
|
|
137
|
-
sdk.accountsPayable.getAgedCreditorsReport({
|
|
138
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
139
|
-
numberOfPeriods: 12,
|
|
140
|
-
periodLengthDays: 30,
|
|
141
|
-
reportDate: new RFCDate("2022-12-31"),
|
|
142
|
-
}).then((res: GetAccountingAgedCreditorsReportResponse) => {
|
|
143
|
-
if (res.statusCode == 200) {
|
|
144
|
-
// handle response
|
|
145
|
-
}
|
|
146
|
-
});
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
### Parameters
|
|
150
|
-
|
|
151
|
-
| Parameter | Type | Required | Description |
|
|
152
|
-
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
|
153
|
-
| `request` | [operations.GetAccountingAgedCreditorsReportRequest](../../models/operations/getaccountingagedcreditorsreportrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
154
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
155
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
### Response
|
|
159
|
-
|
|
160
|
-
**Promise<[operations.GetAccountingAgedCreditorsReportResponse](../../models/operations/getaccountingagedcreditorsreportresponse.md)>**
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
## getBill
|
|
164
|
-
|
|
165
|
-
The *Get bill* endpoint returns a single bill for a given billId.
|
|
166
|
-
|
|
167
|
-
[Bills](https://docs.codat.io/accounting-api#/schemas/Bill) are invoices that represent the SMB's financial obligations to their supplier for a purchase of goods or services.
|
|
168
|
-
|
|
169
|
-
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=bills) for integrations that support getting a specific bill.
|
|
170
|
-
|
|
171
|
-
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
### Example Usage
|
|
175
|
-
|
|
176
|
-
```typescript
|
|
177
|
-
import { CodatLending } from "@codat/lending";
|
|
178
|
-
import { GetAccountingBillResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
179
|
-
|
|
180
|
-
const sdk = new CodatLending({
|
|
181
|
-
security: {
|
|
182
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
183
|
-
},
|
|
184
|
-
});
|
|
185
|
-
|
|
186
|
-
sdk.accountsPayable.getBill({
|
|
187
|
-
billId: "illum",
|
|
188
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
189
|
-
}).then((res: GetAccountingBillResponse) => {
|
|
190
|
-
if (res.statusCode == 200) {
|
|
191
|
-
// handle response
|
|
192
|
-
}
|
|
193
|
-
});
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
### Parameters
|
|
197
|
-
|
|
198
|
-
| Parameter | Type | Required | Description |
|
|
199
|
-
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
|
|
200
|
-
| `request` | [operations.GetAccountingBillRequest](../../models/operations/getaccountingbillrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
201
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
202
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
### Response
|
|
206
|
-
|
|
207
|
-
**Promise<[operations.GetAccountingBillResponse](../../models/operations/getaccountingbillresponse.md)>**
|
|
208
|
-
|
|
209
|
-
|
|
210
59
|
## getBillAttachment
|
|
211
60
|
|
|
212
61
|
The *Get bill attachment* endpoint returns a specific attachment for a given `billId` and `attachmentId`.
|
|
@@ -230,7 +79,7 @@ const sdk = new CodatLending({
|
|
|
230
79
|
|
|
231
80
|
sdk.accountsPayable.getBillAttachment({
|
|
232
81
|
attachmentId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
233
|
-
billId: "
|
|
82
|
+
billId: "illum",
|
|
234
83
|
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
235
84
|
connectionId: "2e9d2c44-f675-40ba-8049-353bfcb5e171",
|
|
236
85
|
}).then((res: GetAccountingBillAttachmentResponse) => {
|
|
@@ -253,514 +102,3 @@ sdk.accountsPayable.getBillAttachment({
|
|
|
253
102
|
|
|
254
103
|
**Promise<[operations.GetAccountingBillAttachmentResponse](../../models/operations/getaccountingbillattachmentresponse.md)>**
|
|
255
104
|
|
|
256
|
-
|
|
257
|
-
## getBillCreditNote
|
|
258
|
-
|
|
259
|
-
The *Get bill credit note* endpoint returns a single bill credit note for a given billCreditNoteId.
|
|
260
|
-
|
|
261
|
-
[Bill credit notes](https://docs.codat.io/accounting-api#/schemas/BillCreditNote) are issued by a supplier for the purpose of recording credit.
|
|
262
|
-
|
|
263
|
-
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=billCreditNotes) for integrations that support getting a specific bill credit note.
|
|
264
|
-
|
|
265
|
-
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
### Example Usage
|
|
269
|
-
|
|
270
|
-
```typescript
|
|
271
|
-
import { CodatLending } from "@codat/lending";
|
|
272
|
-
import { GetAccountingBillCreditNoteResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
273
|
-
|
|
274
|
-
const sdk = new CodatLending({
|
|
275
|
-
security: {
|
|
276
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
277
|
-
},
|
|
278
|
-
});
|
|
279
|
-
|
|
280
|
-
sdk.accountsPayable.getBillCreditNote({
|
|
281
|
-
billCreditNoteId: "error",
|
|
282
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
283
|
-
}).then((res: GetAccountingBillCreditNoteResponse) => {
|
|
284
|
-
if (res.statusCode == 200) {
|
|
285
|
-
// handle response
|
|
286
|
-
}
|
|
287
|
-
});
|
|
288
|
-
```
|
|
289
|
-
|
|
290
|
-
### Parameters
|
|
291
|
-
|
|
292
|
-
| Parameter | Type | Required | Description |
|
|
293
|
-
| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
|
|
294
|
-
| `request` | [operations.GetAccountingBillCreditNoteRequest](../../models/operations/getaccountingbillcreditnoterequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
295
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
296
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
### Response
|
|
300
|
-
|
|
301
|
-
**Promise<[operations.GetAccountingBillCreditNoteResponse](../../models/operations/getaccountingbillcreditnoteresponse.md)>**
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
## getBillPayment
|
|
305
|
-
|
|
306
|
-
The *Get bill payment* endpoint returns a single bill payment for a given billPaymentId.
|
|
307
|
-
|
|
308
|
-
[Bill payments](https://docs.codat.io/accounting-api#/schemas/BillPayment) are an allocation of money within any customer accounts payable account.
|
|
309
|
-
|
|
310
|
-
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=billPayments) for integrations that support getting a specific bill payment.
|
|
311
|
-
|
|
312
|
-
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
### Example Usage
|
|
316
|
-
|
|
317
|
-
```typescript
|
|
318
|
-
import { CodatLending } from "@codat/lending";
|
|
319
|
-
import { GetAccountingBillPaymentResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
320
|
-
|
|
321
|
-
const sdk = new CodatLending({
|
|
322
|
-
security: {
|
|
323
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
324
|
-
},
|
|
325
|
-
});
|
|
326
|
-
|
|
327
|
-
sdk.accountsPayable.getBillPayment({
|
|
328
|
-
billPaymentId: "deserunt",
|
|
329
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
330
|
-
}).then((res: GetAccountingBillPaymentResponse) => {
|
|
331
|
-
if (res.statusCode == 200) {
|
|
332
|
-
// handle response
|
|
333
|
-
}
|
|
334
|
-
});
|
|
335
|
-
```
|
|
336
|
-
|
|
337
|
-
### Parameters
|
|
338
|
-
|
|
339
|
-
| Parameter | Type | Required | Description |
|
|
340
|
-
| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
|
|
341
|
-
| `request` | [operations.GetAccountingBillPaymentRequest](../../models/operations/getaccountingbillpaymentrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
342
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
343
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
### Response
|
|
347
|
-
|
|
348
|
-
**Promise<[operations.GetAccountingBillPaymentResponse](../../models/operations/getaccountingbillpaymentresponse.md)>**
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
## getSupplier
|
|
352
|
-
|
|
353
|
-
The *Get supplier* endpoint returns a single supplier for a given supplierId.
|
|
354
|
-
|
|
355
|
-
[Suppliers](https://docs.codat.io/accounting-api#/schemas/Supplier) are people or organizations that provide something, such as a product or service.
|
|
356
|
-
|
|
357
|
-
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=suppliers) for integrations that support getting a specific supplier.
|
|
358
|
-
|
|
359
|
-
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
### Example Usage
|
|
363
|
-
|
|
364
|
-
```typescript
|
|
365
|
-
import { CodatLending } from "@codat/lending";
|
|
366
|
-
import { GetAccountingSupplierResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
367
|
-
|
|
368
|
-
const sdk = new CodatLending({
|
|
369
|
-
security: {
|
|
370
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
371
|
-
},
|
|
372
|
-
});
|
|
373
|
-
|
|
374
|
-
sdk.accountsPayable.getSupplier({
|
|
375
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
376
|
-
supplierId: "suscipit",
|
|
377
|
-
}).then((res: GetAccountingSupplierResponse) => {
|
|
378
|
-
if (res.statusCode == 200) {
|
|
379
|
-
// handle response
|
|
380
|
-
}
|
|
381
|
-
});
|
|
382
|
-
```
|
|
383
|
-
|
|
384
|
-
### Parameters
|
|
385
|
-
|
|
386
|
-
| Parameter | Type | Required | Description |
|
|
387
|
-
| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
|
|
388
|
-
| `request` | [operations.GetAccountingSupplierRequest](../../models/operations/getaccountingsupplierrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
389
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
390
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
### Response
|
|
394
|
-
|
|
395
|
-
**Promise<[operations.GetAccountingSupplierResponse](../../models/operations/getaccountingsupplierresponse.md)>**
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
## getSupplierAttachment
|
|
399
|
-
|
|
400
|
-
The *Get supplier attachment* endpoint returns a specific attachment for a given `supplierId` and `attachmentId`.
|
|
401
|
-
|
|
402
|
-
[Suppliers](https://docs.codat.io/accounting-api#/schemas/Supplier) are people or organizations that provide something, such as a product or service.
|
|
403
|
-
|
|
404
|
-
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=suppliers) for integrations that support getting a supplier attachment.
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
### Example Usage
|
|
408
|
-
|
|
409
|
-
```typescript
|
|
410
|
-
import { CodatLending } from "@codat/lending";
|
|
411
|
-
import { GetAccountingSupplierAttachmentResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
412
|
-
|
|
413
|
-
const sdk = new CodatLending({
|
|
414
|
-
security: {
|
|
415
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
416
|
-
},
|
|
417
|
-
});
|
|
418
|
-
|
|
419
|
-
sdk.accountsPayable.getSupplierAttachment({
|
|
420
|
-
attachmentId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
421
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
422
|
-
connectionId: "2e9d2c44-f675-40ba-8049-353bfcb5e171",
|
|
423
|
-
supplierId: "iure",
|
|
424
|
-
}).then((res: GetAccountingSupplierAttachmentResponse) => {
|
|
425
|
-
if (res.statusCode == 200) {
|
|
426
|
-
// handle response
|
|
427
|
-
}
|
|
428
|
-
});
|
|
429
|
-
```
|
|
430
|
-
|
|
431
|
-
### Parameters
|
|
432
|
-
|
|
433
|
-
| Parameter | Type | Required | Description |
|
|
434
|
-
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
|
435
|
-
| `request` | [operations.GetAccountingSupplierAttachmentRequest](../../models/operations/getaccountingsupplierattachmentrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
436
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
437
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
### Response
|
|
441
|
-
|
|
442
|
-
**Promise<[operations.GetAccountingSupplierAttachmentResponse](../../models/operations/getaccountingsupplierattachmentresponse.md)>**
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
## isAgedCreditorsReportAvailable
|
|
446
|
-
|
|
447
|
-
Indicates whether the aged creditor report is available for the company.
|
|
448
|
-
|
|
449
|
-
### Example Usage
|
|
450
|
-
|
|
451
|
-
```typescript
|
|
452
|
-
import { CodatLending } from "@codat/lending";
|
|
453
|
-
import { IsAgedCreditorsReportAvailableResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
454
|
-
|
|
455
|
-
const sdk = new CodatLending({
|
|
456
|
-
security: {
|
|
457
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
458
|
-
},
|
|
459
|
-
});
|
|
460
|
-
|
|
461
|
-
sdk.accountsPayable.isAgedCreditorsReportAvailable({
|
|
462
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
463
|
-
}).then((res: IsAgedCreditorsReportAvailableResponse) => {
|
|
464
|
-
if (res.statusCode == 200) {
|
|
465
|
-
// handle response
|
|
466
|
-
}
|
|
467
|
-
});
|
|
468
|
-
```
|
|
469
|
-
|
|
470
|
-
### Parameters
|
|
471
|
-
|
|
472
|
-
| Parameter | Type | Required | Description |
|
|
473
|
-
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
|
474
|
-
| `request` | [operations.IsAgedCreditorsReportAvailableRequest](../../models/operations/isagedcreditorsreportavailablerequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
475
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
476
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
### Response
|
|
480
|
-
|
|
481
|
-
**Promise<[operations.IsAgedCreditorsReportAvailableResponse](../../models/operations/isagedcreditorsreportavailableresponse.md)>**
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
## listBillAttachments
|
|
485
|
-
|
|
486
|
-
The *List bill attachments* endpoint returns a list of attachments available to download for a given `billId`.
|
|
487
|
-
|
|
488
|
-
[Bills](https://docs.codat.io/accounting-api#/schemas/Bill) are invoices that represent the SMB's financial obligations to their supplier for a purchase of goods or services.
|
|
489
|
-
|
|
490
|
-
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=bills) for integrations that support listing bill attachments.
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
### Example Usage
|
|
494
|
-
|
|
495
|
-
```typescript
|
|
496
|
-
import { CodatLending } from "@codat/lending";
|
|
497
|
-
import { ListAccountingBillAttachmentsResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
498
|
-
|
|
499
|
-
const sdk = new CodatLending({
|
|
500
|
-
security: {
|
|
501
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
502
|
-
},
|
|
503
|
-
});
|
|
504
|
-
|
|
505
|
-
sdk.accountsPayable.listBillAttachments({
|
|
506
|
-
billId: "magnam",
|
|
507
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
508
|
-
connectionId: "2e9d2c44-f675-40ba-8049-353bfcb5e171",
|
|
509
|
-
}).then((res: ListAccountingBillAttachmentsResponse) => {
|
|
510
|
-
if (res.statusCode == 200) {
|
|
511
|
-
// handle response
|
|
512
|
-
}
|
|
513
|
-
});
|
|
514
|
-
```
|
|
515
|
-
|
|
516
|
-
### Parameters
|
|
517
|
-
|
|
518
|
-
| Parameter | Type | Required | Description |
|
|
519
|
-
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ |
|
|
520
|
-
| `request` | [operations.ListAccountingBillAttachmentsRequest](../../models/operations/listaccountingbillattachmentsrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
521
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
522
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
### Response
|
|
526
|
-
|
|
527
|
-
**Promise<[operations.ListAccountingBillAttachmentsResponse](../../models/operations/listaccountingbillattachmentsresponse.md)>**
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
## listBillCreditNotes
|
|
531
|
-
|
|
532
|
-
The *List bill credit notes* endpoint returns a list of [bill credit notes](https://docs.codat.io/accounting-api#/schemas/BillCreditNote) for a given company's connection.
|
|
533
|
-
|
|
534
|
-
[Bill credit notes](https://docs.codat.io/accounting-api#/schemas/BillCreditNote) are issued by a supplier for the purpose of recording credit.
|
|
535
|
-
|
|
536
|
-
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
### Example Usage
|
|
540
|
-
|
|
541
|
-
```typescript
|
|
542
|
-
import { CodatLending } from "@codat/lending";
|
|
543
|
-
import { ListAccountingBillCreditNotesResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
544
|
-
|
|
545
|
-
const sdk = new CodatLending({
|
|
546
|
-
security: {
|
|
547
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
548
|
-
},
|
|
549
|
-
});
|
|
550
|
-
|
|
551
|
-
sdk.accountsPayable.listBillCreditNotes({
|
|
552
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
553
|
-
orderBy: "-modifiedDate",
|
|
554
|
-
page: 1,
|
|
555
|
-
pageSize: 100,
|
|
556
|
-
query: "debitis",
|
|
557
|
-
}).then((res: ListAccountingBillCreditNotesResponse) => {
|
|
558
|
-
if (res.statusCode == 200) {
|
|
559
|
-
// handle response
|
|
560
|
-
}
|
|
561
|
-
});
|
|
562
|
-
```
|
|
563
|
-
|
|
564
|
-
### Parameters
|
|
565
|
-
|
|
566
|
-
| Parameter | Type | Required | Description |
|
|
567
|
-
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ |
|
|
568
|
-
| `request` | [operations.ListAccountingBillCreditNotesRequest](../../models/operations/listaccountingbillcreditnotesrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
569
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
570
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
### Response
|
|
574
|
-
|
|
575
|
-
**Promise<[operations.ListAccountingBillCreditNotesResponse](../../models/operations/listaccountingbillcreditnotesresponse.md)>**
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
## listBillPayments
|
|
579
|
-
|
|
580
|
-
The *List bill payments* endpoint returns a list of [bill payments](https://docs.codat.io/accounting-api#/schemas/BillPayment) for a given company's connection.
|
|
581
|
-
|
|
582
|
-
[Bill payments](https://docs.codat.io/accounting-api#/schemas/BillPayment) are an allocation of money within any customer accounts payable account.
|
|
583
|
-
|
|
584
|
-
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
### Example Usage
|
|
588
|
-
|
|
589
|
-
```typescript
|
|
590
|
-
import { CodatLending } from "@codat/lending";
|
|
591
|
-
import { ListAccountingBillPaymentsResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
592
|
-
|
|
593
|
-
const sdk = new CodatLending({
|
|
594
|
-
security: {
|
|
595
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
596
|
-
},
|
|
597
|
-
});
|
|
598
|
-
|
|
599
|
-
sdk.accountsPayable.listBillPayments({
|
|
600
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
601
|
-
orderBy: "-modifiedDate",
|
|
602
|
-
page: 1,
|
|
603
|
-
pageSize: 100,
|
|
604
|
-
query: "ipsa",
|
|
605
|
-
}).then((res: ListAccountingBillPaymentsResponse) => {
|
|
606
|
-
if (res.statusCode == 200) {
|
|
607
|
-
// handle response
|
|
608
|
-
}
|
|
609
|
-
});
|
|
610
|
-
```
|
|
611
|
-
|
|
612
|
-
### Parameters
|
|
613
|
-
|
|
614
|
-
| Parameter | Type | Required | Description |
|
|
615
|
-
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ |
|
|
616
|
-
| `request` | [operations.ListAccountingBillPaymentsRequest](../../models/operations/listaccountingbillpaymentsrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
617
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
618
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
### Response
|
|
622
|
-
|
|
623
|
-
**Promise<[operations.ListAccountingBillPaymentsResponse](../../models/operations/listaccountingbillpaymentsresponse.md)>**
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
## listBills
|
|
627
|
-
|
|
628
|
-
The *List bills* endpoint returns a list of [bills](https://docs.codat.io/accounting-api#/schemas/Bill) for a given company's connection.
|
|
629
|
-
|
|
630
|
-
[Bills](https://docs.codat.io/accounting-api#/schemas/Bill) are invoices that represent the SMB's financial obligations to their supplier for a purchase of goods or services.
|
|
631
|
-
|
|
632
|
-
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
### Example Usage
|
|
636
|
-
|
|
637
|
-
```typescript
|
|
638
|
-
import { CodatLending } from "@codat/lending";
|
|
639
|
-
import { ListAccountingBillsResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
640
|
-
|
|
641
|
-
const sdk = new CodatLending({
|
|
642
|
-
security: {
|
|
643
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
644
|
-
},
|
|
645
|
-
});
|
|
646
|
-
|
|
647
|
-
sdk.accountsPayable.listBills({
|
|
648
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
649
|
-
orderBy: "-modifiedDate",
|
|
650
|
-
page: 1,
|
|
651
|
-
pageSize: 100,
|
|
652
|
-
query: "delectus",
|
|
653
|
-
}).then((res: ListAccountingBillsResponse) => {
|
|
654
|
-
if (res.statusCode == 200) {
|
|
655
|
-
// handle response
|
|
656
|
-
}
|
|
657
|
-
});
|
|
658
|
-
```
|
|
659
|
-
|
|
660
|
-
### Parameters
|
|
661
|
-
|
|
662
|
-
| Parameter | Type | Required | Description |
|
|
663
|
-
| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
|
|
664
|
-
| `request` | [operations.ListAccountingBillsRequest](../../models/operations/listaccountingbillsrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
665
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
666
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
### Response
|
|
670
|
-
|
|
671
|
-
**Promise<[operations.ListAccountingBillsResponse](../../models/operations/listaccountingbillsresponse.md)>**
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
## listSupplierAttachments
|
|
675
|
-
|
|
676
|
-
The *List supplier attachments* endpoint returns a list of attachments available to download for given `supplierId`.
|
|
677
|
-
|
|
678
|
-
[Suppliers](https://docs.codat.io/accounting-api#/schemas/Supplier) are people or organizations that provide something, such as a product or service.
|
|
679
|
-
|
|
680
|
-
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=suppliers) for integrations that support listing supplier attachments.
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
### Example Usage
|
|
684
|
-
|
|
685
|
-
```typescript
|
|
686
|
-
import { CodatLending } from "@codat/lending";
|
|
687
|
-
import { ListAccountingSupplierAttachmentsResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
688
|
-
|
|
689
|
-
const sdk = new CodatLending({
|
|
690
|
-
security: {
|
|
691
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
692
|
-
},
|
|
693
|
-
});
|
|
694
|
-
|
|
695
|
-
sdk.accountsPayable.listSupplierAttachments({
|
|
696
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
697
|
-
connectionId: "2e9d2c44-f675-40ba-8049-353bfcb5e171",
|
|
698
|
-
supplierId: "tempora",
|
|
699
|
-
}).then((res: ListAccountingSupplierAttachmentsResponse) => {
|
|
700
|
-
if (res.statusCode == 200) {
|
|
701
|
-
// handle response
|
|
702
|
-
}
|
|
703
|
-
});
|
|
704
|
-
```
|
|
705
|
-
|
|
706
|
-
### Parameters
|
|
707
|
-
|
|
708
|
-
| Parameter | Type | Required | Description |
|
|
709
|
-
| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
|
|
710
|
-
| `request` | [operations.ListAccountingSupplierAttachmentsRequest](../../models/operations/listaccountingsupplierattachmentsrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
711
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
712
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
### Response
|
|
716
|
-
|
|
717
|
-
**Promise<[operations.ListAccountingSupplierAttachmentsResponse](../../models/operations/listaccountingsupplierattachmentsresponse.md)>**
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
## listSuppliers
|
|
721
|
-
|
|
722
|
-
The *List suppliers* endpoint returns a list of [suppliers](https://docs.codat.io/accounting-api#/schemas/Supplier) for a given company's connection.
|
|
723
|
-
|
|
724
|
-
[Suppliers](https://docs.codat.io/accounting-api#/schemas/Supplier) are people or organizations that provide something, such as a product or service.
|
|
725
|
-
|
|
726
|
-
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
### Example Usage
|
|
730
|
-
|
|
731
|
-
```typescript
|
|
732
|
-
import { CodatLending } from "@codat/lending";
|
|
733
|
-
import { ListAccountingSuppliersResponse } from "@codat/lending/dist/sdk/models/operations";
|
|
734
|
-
|
|
735
|
-
const sdk = new CodatLending({
|
|
736
|
-
security: {
|
|
737
|
-
authHeader: "Basic BASE_64_ENCODED(API_KEY)",
|
|
738
|
-
},
|
|
739
|
-
});
|
|
740
|
-
|
|
741
|
-
sdk.accountsPayable.listSuppliers({
|
|
742
|
-
companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
|
|
743
|
-
orderBy: "-modifiedDate",
|
|
744
|
-
page: 1,
|
|
745
|
-
pageSize: 100,
|
|
746
|
-
query: "suscipit",
|
|
747
|
-
}).then((res: ListAccountingSuppliersResponse) => {
|
|
748
|
-
if (res.statusCode == 200) {
|
|
749
|
-
// handle response
|
|
750
|
-
}
|
|
751
|
-
});
|
|
752
|
-
```
|
|
753
|
-
|
|
754
|
-
### Parameters
|
|
755
|
-
|
|
756
|
-
| Parameter | Type | Required | Description |
|
|
757
|
-
| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
|
|
758
|
-
| `request` | [operations.ListAccountingSuppliersRequest](../../models/operations/listaccountingsuppliersrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
759
|
-
| `retries` | [utils.RetryConfig](../../models/utils/retryconfig.md) | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
|
|
760
|
-
| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. |
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
### Response
|
|
764
|
-
|
|
765
|
-
**Promise<[operations.ListAccountingSuppliersResponse](../../models/operations/listaccountingsuppliersresponse.md)>**
|
|
766
|
-
|