@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
|
@@ -50,50 +50,50 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
50
50
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
51
51
|
};
|
|
52
52
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
-
exports.
|
|
53
|
+
exports.GetCommerceProfileResponse = exports.GetCommerceProfileRequest = void 0;
|
|
54
54
|
var utils_1 = require("../../../internal/utils");
|
|
55
55
|
var shared = __importStar(require("../shared"));
|
|
56
|
-
var
|
|
57
|
-
__extends(
|
|
58
|
-
function
|
|
56
|
+
var GetCommerceProfileRequest = /** @class */ (function (_super) {
|
|
57
|
+
__extends(GetCommerceProfileRequest, _super);
|
|
58
|
+
function GetCommerceProfileRequest() {
|
|
59
59
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
60
60
|
}
|
|
61
61
|
__decorate([
|
|
62
62
|
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=companyId" }),
|
|
63
63
|
__metadata("design:type", String)
|
|
64
|
-
],
|
|
64
|
+
], GetCommerceProfileRequest.prototype, "companyId", void 0);
|
|
65
65
|
__decorate([
|
|
66
66
|
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connectionId" }),
|
|
67
67
|
__metadata("design:type", String)
|
|
68
|
-
],
|
|
69
|
-
return
|
|
68
|
+
], GetCommerceProfileRequest.prototype, "connectionId", void 0);
|
|
69
|
+
return GetCommerceProfileRequest;
|
|
70
70
|
}(utils_1.SpeakeasyBase));
|
|
71
|
-
exports.
|
|
72
|
-
var
|
|
73
|
-
__extends(
|
|
74
|
-
function
|
|
71
|
+
exports.GetCommerceProfileRequest = GetCommerceProfileRequest;
|
|
72
|
+
var GetCommerceProfileResponse = /** @class */ (function (_super) {
|
|
73
|
+
__extends(GetCommerceProfileResponse, _super);
|
|
74
|
+
function GetCommerceProfileResponse() {
|
|
75
75
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
76
76
|
}
|
|
77
77
|
__decorate([
|
|
78
78
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
79
79
|
__metadata("design:type", shared.CommerceCompanyInfo)
|
|
80
|
-
],
|
|
80
|
+
], GetCommerceProfileResponse.prototype, "commerceCompanyInfo", void 0);
|
|
81
81
|
__decorate([
|
|
82
82
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
83
83
|
__metadata("design:type", String)
|
|
84
|
-
],
|
|
84
|
+
], GetCommerceProfileResponse.prototype, "contentType", void 0);
|
|
85
85
|
__decorate([
|
|
86
86
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
87
87
|
__metadata("design:type", shared.ErrorMessage)
|
|
88
|
-
],
|
|
88
|
+
], GetCommerceProfileResponse.prototype, "errorMessage", void 0);
|
|
89
89
|
__decorate([
|
|
90
90
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
91
91
|
__metadata("design:type", Number)
|
|
92
|
-
],
|
|
92
|
+
], GetCommerceProfileResponse.prototype, "statusCode", void 0);
|
|
93
93
|
__decorate([
|
|
94
94
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
95
95
|
__metadata("design:type", Object)
|
|
96
|
-
],
|
|
97
|
-
return
|
|
96
|
+
], GetCommerceProfileResponse.prototype, "rawResponse", void 0);
|
|
97
|
+
return GetCommerceProfileResponse;
|
|
98
98
|
}(utils_1.SpeakeasyBase));
|
|
99
|
-
exports.
|
|
99
|
+
exports.GetCommerceProfileResponse = GetCommerceProfileResponse;
|
package/dist/sdk/models/operations/{getcommercerefundsmetrics.d.ts → getcommercerefundsreport.d.ts}
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
2
|
import * as shared from "../shared";
|
|
3
3
|
import { AxiosResponse } from "axios";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class GetCommerceRefundsReportRequest extends SpeakeasyBase {
|
|
5
5
|
companyId: string;
|
|
6
6
|
connectionId: string;
|
|
7
7
|
/**
|
|
@@ -25,7 +25,7 @@ export declare class GetCommerceRefundsMetricsRequest extends SpeakeasyBase {
|
|
|
25
25
|
*/
|
|
26
26
|
reportDate: string;
|
|
27
27
|
}
|
|
28
|
-
export declare class
|
|
28
|
+
export declare class GetCommerceRefundsReportResponse extends SpeakeasyBase {
|
|
29
29
|
/**
|
|
30
30
|
* OK
|
|
31
31
|
*/
|
package/dist/sdk/models/operations/{getcommercerefundsmetrics.js → getcommercerefundsreport.js}
RENAMED
|
@@ -50,70 +50,70 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
50
50
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
51
51
|
};
|
|
52
52
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
-
exports.
|
|
53
|
+
exports.GetCommerceRefundsReportResponse = exports.GetCommerceRefundsReportRequest = void 0;
|
|
54
54
|
var utils_1 = require("../../../internal/utils");
|
|
55
55
|
var shared = __importStar(require("../shared"));
|
|
56
|
-
var
|
|
57
|
-
__extends(
|
|
58
|
-
function
|
|
56
|
+
var GetCommerceRefundsReportRequest = /** @class */ (function (_super) {
|
|
57
|
+
__extends(GetCommerceRefundsReportRequest, _super);
|
|
58
|
+
function GetCommerceRefundsReportRequest() {
|
|
59
59
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
60
60
|
}
|
|
61
61
|
__decorate([
|
|
62
62
|
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=companyId" }),
|
|
63
63
|
__metadata("design:type", String)
|
|
64
|
-
],
|
|
64
|
+
], GetCommerceRefundsReportRequest.prototype, "companyId", void 0);
|
|
65
65
|
__decorate([
|
|
66
66
|
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connectionId" }),
|
|
67
67
|
__metadata("design:type", String)
|
|
68
|
-
],
|
|
68
|
+
], GetCommerceRefundsReportRequest.prototype, "connectionId", void 0);
|
|
69
69
|
__decorate([
|
|
70
70
|
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=includeDisplayNames" }),
|
|
71
71
|
__metadata("design:type", Boolean)
|
|
72
|
-
],
|
|
72
|
+
], GetCommerceRefundsReportRequest.prototype, "includeDisplayNames", void 0);
|
|
73
73
|
__decorate([
|
|
74
74
|
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=numberOfPeriods" }),
|
|
75
75
|
__metadata("design:type", Number)
|
|
76
|
-
],
|
|
76
|
+
], GetCommerceRefundsReportRequest.prototype, "numberOfPeriods", void 0);
|
|
77
77
|
__decorate([
|
|
78
78
|
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=periodLength" }),
|
|
79
79
|
__metadata("design:type", Number)
|
|
80
|
-
],
|
|
80
|
+
], GetCommerceRefundsReportRequest.prototype, "periodLength", void 0);
|
|
81
81
|
__decorate([
|
|
82
82
|
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=periodUnit" }),
|
|
83
83
|
__metadata("design:type", String)
|
|
84
|
-
],
|
|
84
|
+
], GetCommerceRefundsReportRequest.prototype, "periodUnit", void 0);
|
|
85
85
|
__decorate([
|
|
86
86
|
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=reportDate" }),
|
|
87
87
|
__metadata("design:type", String)
|
|
88
|
-
],
|
|
89
|
-
return
|
|
88
|
+
], GetCommerceRefundsReportRequest.prototype, "reportDate", void 0);
|
|
89
|
+
return GetCommerceRefundsReportRequest;
|
|
90
90
|
}(utils_1.SpeakeasyBase));
|
|
91
|
-
exports.
|
|
92
|
-
var
|
|
93
|
-
__extends(
|
|
94
|
-
function
|
|
91
|
+
exports.GetCommerceRefundsReportRequest = GetCommerceRefundsReportRequest;
|
|
92
|
+
var GetCommerceRefundsReportResponse = /** @class */ (function (_super) {
|
|
93
|
+
__extends(GetCommerceRefundsReportResponse, _super);
|
|
94
|
+
function GetCommerceRefundsReportResponse() {
|
|
95
95
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
96
96
|
}
|
|
97
97
|
__decorate([
|
|
98
98
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
99
99
|
__metadata("design:type", shared.CommerceReport)
|
|
100
|
-
],
|
|
100
|
+
], GetCommerceRefundsReportResponse.prototype, "commerceReport", void 0);
|
|
101
101
|
__decorate([
|
|
102
102
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
103
103
|
__metadata("design:type", String)
|
|
104
|
-
],
|
|
104
|
+
], GetCommerceRefundsReportResponse.prototype, "contentType", void 0);
|
|
105
105
|
__decorate([
|
|
106
106
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
107
107
|
__metadata("design:type", shared.ErrorMessage)
|
|
108
|
-
],
|
|
108
|
+
], GetCommerceRefundsReportResponse.prototype, "errorMessage", void 0);
|
|
109
109
|
__decorate([
|
|
110
110
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
111
111
|
__metadata("design:type", Number)
|
|
112
|
-
],
|
|
112
|
+
], GetCommerceRefundsReportResponse.prototype, "statusCode", void 0);
|
|
113
113
|
__decorate([
|
|
114
114
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
115
115
|
__metadata("design:type", Object)
|
|
116
|
-
],
|
|
117
|
-
return
|
|
116
|
+
], GetCommerceRefundsReportResponse.prototype, "rawResponse", void 0);
|
|
117
|
+
return GetCommerceRefundsReportResponse;
|
|
118
118
|
}(utils_1.SpeakeasyBase));
|
|
119
|
-
exports.
|
|
119
|
+
exports.GetCommerceRefundsReportResponse = GetCommerceRefundsReportResponse;
|
|
@@ -23,7 +23,6 @@ export * from "./getaccountingbillattachment";
|
|
|
23
23
|
export * from "./getaccountingbillcreditnote";
|
|
24
24
|
export * from "./getaccountingbillpayment";
|
|
25
25
|
export * from "./getaccountingcashflowstatement";
|
|
26
|
-
export * from "./getaccountingcompanyinfo";
|
|
27
26
|
export * from "./getaccountingcreditnote";
|
|
28
27
|
export * from "./getaccountingcustomer";
|
|
29
28
|
export * from "./getaccountingcustomerattachment";
|
|
@@ -36,6 +35,7 @@ export * from "./getaccountinginvoiceattachment";
|
|
|
36
35
|
export * from "./getaccountingjournal";
|
|
37
36
|
export * from "./getaccountingjournalentry";
|
|
38
37
|
export * from "./getaccountingpayment";
|
|
38
|
+
export * from "./getaccountingprofile";
|
|
39
39
|
export * from "./getaccountingprofitandloss";
|
|
40
40
|
export * from "./getaccountingsupplier";
|
|
41
41
|
export * from "./getaccountingsupplierattachment";
|
|
@@ -43,7 +43,9 @@ export * from "./getaccountingtransfer";
|
|
|
43
43
|
export * from "./getbankingaccount";
|
|
44
44
|
export * from "./getbankingtransaction";
|
|
45
45
|
export * from "./getbankingtransactioncategory";
|
|
46
|
-
export * from "./
|
|
46
|
+
export * from "./getcategorizedbalancesheetstatement";
|
|
47
|
+
export * from "./getcategorizedbankstatement";
|
|
48
|
+
export * from "./getcategorizedprofitandlossstatement";
|
|
47
49
|
export * from "./getcommercecustomer";
|
|
48
50
|
export * from "./getcommercecustomerretentionmetrics";
|
|
49
51
|
export * from "./getcommercedispute";
|
|
@@ -55,7 +57,8 @@ export * from "./getcommercepayment";
|
|
|
55
57
|
export * from "./getcommercepaymentmethod";
|
|
56
58
|
export * from "./getcommerceproduct";
|
|
57
59
|
export * from "./getcommerceproductcategory";
|
|
58
|
-
export * from "./
|
|
60
|
+
export * from "./getcommerceprofile";
|
|
61
|
+
export * from "./getcommercerefundsreport";
|
|
59
62
|
export * from "./getcommercerevenuemetrics";
|
|
60
63
|
export * from "./getcommercetransaction";
|
|
61
64
|
export * from "./getcompany";
|
|
@@ -63,15 +66,11 @@ export * from "./getconnection";
|
|
|
63
66
|
export * from "./getdataintegritystatus";
|
|
64
67
|
export * from "./getdataintegritysummaries";
|
|
65
68
|
export * from "./getdatastatus";
|
|
66
|
-
export * from "./getenhancedbalancesheetaccounts";
|
|
67
|
-
export * from "./getenhancedcashflowtransactions";
|
|
68
|
-
export * from "./getenhancedinvoicesreport";
|
|
69
|
-
export * from "./getenhancedprofitandlossaccounts";
|
|
70
69
|
export * from "./getexcelreportgenerationstatus";
|
|
71
70
|
export * from "./getloansummary";
|
|
72
71
|
export * from "./getpulloperation";
|
|
73
72
|
export * from "./isagedcreditorsreportavailable";
|
|
74
|
-
export * from "./
|
|
73
|
+
export * from "./isageddebtorsreportavailable";
|
|
75
74
|
export * from "./listaccountingaccounts";
|
|
76
75
|
export * from "./listaccountingaccounttransactions";
|
|
77
76
|
export * from "./listaccountingbankaccounts";
|
|
@@ -114,6 +113,7 @@ export * from "./listdataintegritydetails";
|
|
|
114
113
|
export * from "./listfiles";
|
|
115
114
|
export * from "./listloantransactions";
|
|
116
115
|
export * from "./listpulloperations";
|
|
116
|
+
export * from "./listreconciledinvoices";
|
|
117
117
|
export * from "./refreshalldatatypes";
|
|
118
118
|
export * from "./refreshdatatype";
|
|
119
119
|
export * from "./unlinkconnection";
|
|
@@ -42,7 +42,6 @@ __exportStar(require("./getaccountingbillattachment"), exports);
|
|
|
42
42
|
__exportStar(require("./getaccountingbillcreditnote"), exports);
|
|
43
43
|
__exportStar(require("./getaccountingbillpayment"), exports);
|
|
44
44
|
__exportStar(require("./getaccountingcashflowstatement"), exports);
|
|
45
|
-
__exportStar(require("./getaccountingcompanyinfo"), exports);
|
|
46
45
|
__exportStar(require("./getaccountingcreditnote"), exports);
|
|
47
46
|
__exportStar(require("./getaccountingcustomer"), exports);
|
|
48
47
|
__exportStar(require("./getaccountingcustomerattachment"), exports);
|
|
@@ -55,6 +54,7 @@ __exportStar(require("./getaccountinginvoiceattachment"), exports);
|
|
|
55
54
|
__exportStar(require("./getaccountingjournal"), exports);
|
|
56
55
|
__exportStar(require("./getaccountingjournalentry"), exports);
|
|
57
56
|
__exportStar(require("./getaccountingpayment"), exports);
|
|
57
|
+
__exportStar(require("./getaccountingprofile"), exports);
|
|
58
58
|
__exportStar(require("./getaccountingprofitandloss"), exports);
|
|
59
59
|
__exportStar(require("./getaccountingsupplier"), exports);
|
|
60
60
|
__exportStar(require("./getaccountingsupplierattachment"), exports);
|
|
@@ -62,7 +62,9 @@ __exportStar(require("./getaccountingtransfer"), exports);
|
|
|
62
62
|
__exportStar(require("./getbankingaccount"), exports);
|
|
63
63
|
__exportStar(require("./getbankingtransaction"), exports);
|
|
64
64
|
__exportStar(require("./getbankingtransactioncategory"), exports);
|
|
65
|
-
__exportStar(require("./
|
|
65
|
+
__exportStar(require("./getcategorizedbalancesheetstatement"), exports);
|
|
66
|
+
__exportStar(require("./getcategorizedbankstatement"), exports);
|
|
67
|
+
__exportStar(require("./getcategorizedprofitandlossstatement"), exports);
|
|
66
68
|
__exportStar(require("./getcommercecustomer"), exports);
|
|
67
69
|
__exportStar(require("./getcommercecustomerretentionmetrics"), exports);
|
|
68
70
|
__exportStar(require("./getcommercedispute"), exports);
|
|
@@ -74,7 +76,8 @@ __exportStar(require("./getcommercepayment"), exports);
|
|
|
74
76
|
__exportStar(require("./getcommercepaymentmethod"), exports);
|
|
75
77
|
__exportStar(require("./getcommerceproduct"), exports);
|
|
76
78
|
__exportStar(require("./getcommerceproductcategory"), exports);
|
|
77
|
-
__exportStar(require("./
|
|
79
|
+
__exportStar(require("./getcommerceprofile"), exports);
|
|
80
|
+
__exportStar(require("./getcommercerefundsreport"), exports);
|
|
78
81
|
__exportStar(require("./getcommercerevenuemetrics"), exports);
|
|
79
82
|
__exportStar(require("./getcommercetransaction"), exports);
|
|
80
83
|
__exportStar(require("./getcompany"), exports);
|
|
@@ -82,15 +85,11 @@ __exportStar(require("./getconnection"), exports);
|
|
|
82
85
|
__exportStar(require("./getdataintegritystatus"), exports);
|
|
83
86
|
__exportStar(require("./getdataintegritysummaries"), exports);
|
|
84
87
|
__exportStar(require("./getdatastatus"), exports);
|
|
85
|
-
__exportStar(require("./getenhancedbalancesheetaccounts"), exports);
|
|
86
|
-
__exportStar(require("./getenhancedcashflowtransactions"), exports);
|
|
87
|
-
__exportStar(require("./getenhancedinvoicesreport"), exports);
|
|
88
|
-
__exportStar(require("./getenhancedprofitandlossaccounts"), exports);
|
|
89
88
|
__exportStar(require("./getexcelreportgenerationstatus"), exports);
|
|
90
89
|
__exportStar(require("./getloansummary"), exports);
|
|
91
90
|
__exportStar(require("./getpulloperation"), exports);
|
|
92
91
|
__exportStar(require("./isagedcreditorsreportavailable"), exports);
|
|
93
|
-
__exportStar(require("./
|
|
92
|
+
__exportStar(require("./isageddebtorsreportavailable"), exports);
|
|
94
93
|
__exportStar(require("./listaccountingaccounts"), exports);
|
|
95
94
|
__exportStar(require("./listaccountingaccounttransactions"), exports);
|
|
96
95
|
__exportStar(require("./listaccountingbankaccounts"), exports);
|
|
@@ -133,6 +132,7 @@ __exportStar(require("./listdataintegritydetails"), exports);
|
|
|
133
132
|
__exportStar(require("./listfiles"), exports);
|
|
134
133
|
__exportStar(require("./listloantransactions"), exports);
|
|
135
134
|
__exportStar(require("./listpulloperations"), exports);
|
|
135
|
+
__exportStar(require("./listreconciledinvoices"), exports);
|
|
136
136
|
__exportStar(require("./refreshalldatatypes"), exports);
|
|
137
137
|
__exportStar(require("./refreshdatatype"), exports);
|
|
138
138
|
__exportStar(require("./unlinkconnection"), exports);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
2
|
import { AxiosResponse } from "axios";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class IsAgedDebtorsReportAvailableRequest extends SpeakeasyBase {
|
|
4
4
|
companyId: string;
|
|
5
5
|
}
|
|
6
|
-
export declare class
|
|
6
|
+
export declare class IsAgedDebtorsReportAvailableResponse extends SpeakeasyBase {
|
|
7
7
|
contentType: string;
|
|
8
8
|
statusCode: number;
|
|
9
9
|
rawResponse?: AxiosResponse;
|
|
10
10
|
/**
|
|
11
11
|
* OK
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
isAgedDebtorsReportAvailable200ApplicationJSONBoolean?: boolean;
|
|
14
14
|
}
|
|
@@ -27,41 +27,41 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
27
27
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
28
28
|
};
|
|
29
29
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
|
-
exports.
|
|
30
|
+
exports.IsAgedDebtorsReportAvailableResponse = exports.IsAgedDebtorsReportAvailableRequest = void 0;
|
|
31
31
|
var utils_1 = require("../../../internal/utils");
|
|
32
|
-
var
|
|
33
|
-
__extends(
|
|
34
|
-
function
|
|
32
|
+
var IsAgedDebtorsReportAvailableRequest = /** @class */ (function (_super) {
|
|
33
|
+
__extends(IsAgedDebtorsReportAvailableRequest, _super);
|
|
34
|
+
function IsAgedDebtorsReportAvailableRequest() {
|
|
35
35
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
36
36
|
}
|
|
37
37
|
__decorate([
|
|
38
38
|
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=companyId" }),
|
|
39
39
|
__metadata("design:type", String)
|
|
40
|
-
],
|
|
41
|
-
return
|
|
40
|
+
], IsAgedDebtorsReportAvailableRequest.prototype, "companyId", void 0);
|
|
41
|
+
return IsAgedDebtorsReportAvailableRequest;
|
|
42
42
|
}(utils_1.SpeakeasyBase));
|
|
43
|
-
exports.
|
|
44
|
-
var
|
|
45
|
-
__extends(
|
|
46
|
-
function
|
|
43
|
+
exports.IsAgedDebtorsReportAvailableRequest = IsAgedDebtorsReportAvailableRequest;
|
|
44
|
+
var IsAgedDebtorsReportAvailableResponse = /** @class */ (function (_super) {
|
|
45
|
+
__extends(IsAgedDebtorsReportAvailableResponse, _super);
|
|
46
|
+
function IsAgedDebtorsReportAvailableResponse() {
|
|
47
47
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
48
48
|
}
|
|
49
49
|
__decorate([
|
|
50
50
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
51
51
|
__metadata("design:type", String)
|
|
52
|
-
],
|
|
52
|
+
], IsAgedDebtorsReportAvailableResponse.prototype, "contentType", void 0);
|
|
53
53
|
__decorate([
|
|
54
54
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
55
55
|
__metadata("design:type", Number)
|
|
56
|
-
],
|
|
56
|
+
], IsAgedDebtorsReportAvailableResponse.prototype, "statusCode", void 0);
|
|
57
57
|
__decorate([
|
|
58
58
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
59
59
|
__metadata("design:type", Object)
|
|
60
|
-
],
|
|
60
|
+
], IsAgedDebtorsReportAvailableResponse.prototype, "rawResponse", void 0);
|
|
61
61
|
__decorate([
|
|
62
62
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
63
63
|
__metadata("design:type", Boolean)
|
|
64
|
-
],
|
|
65
|
-
return
|
|
64
|
+
], IsAgedDebtorsReportAvailableResponse.prototype, "isAgedDebtorsReportAvailable200ApplicationJSONBoolean", void 0);
|
|
65
|
+
return IsAgedDebtorsReportAvailableResponse;
|
|
66
66
|
}(utils_1.SpeakeasyBase));
|
|
67
|
-
exports.
|
|
67
|
+
exports.IsAgedDebtorsReportAvailableResponse = IsAgedDebtorsReportAvailableResponse;
|
package/dist/sdk/models/operations/{getenhancedinvoicesreport.d.ts → listreconciledinvoices.d.ts}
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
2
|
import * as shared from "../shared";
|
|
3
3
|
import { AxiosResponse } from "axios";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class ListReconciledInvoicesRequest extends SpeakeasyBase {
|
|
5
5
|
companyId: string;
|
|
6
6
|
/**
|
|
7
7
|
* Page number. [Read more](https://docs.codat.io/using-the-api/paging).
|
|
@@ -16,7 +16,7 @@ export declare class GetEnhancedInvoicesReportRequest extends SpeakeasyBase {
|
|
|
16
16
|
*/
|
|
17
17
|
query?: string;
|
|
18
18
|
}
|
|
19
|
-
export declare class
|
|
19
|
+
export declare class ListReconciledInvoicesResponse extends SpeakeasyBase {
|
|
20
20
|
contentType: string;
|
|
21
21
|
/**
|
|
22
22
|
* OK
|
package/dist/sdk/models/operations/{getenhancedinvoicesreport.js → listreconciledinvoices.js}
RENAMED
|
@@ -50,58 +50,58 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
50
50
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
51
51
|
};
|
|
52
52
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
-
exports.
|
|
53
|
+
exports.ListReconciledInvoicesResponse = exports.ListReconciledInvoicesRequest = void 0;
|
|
54
54
|
var utils_1 = require("../../../internal/utils");
|
|
55
55
|
var shared = __importStar(require("../shared"));
|
|
56
|
-
var
|
|
57
|
-
__extends(
|
|
58
|
-
function
|
|
56
|
+
var ListReconciledInvoicesRequest = /** @class */ (function (_super) {
|
|
57
|
+
__extends(ListReconciledInvoicesRequest, _super);
|
|
58
|
+
function ListReconciledInvoicesRequest() {
|
|
59
59
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
60
60
|
}
|
|
61
61
|
__decorate([
|
|
62
62
|
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=companyId" }),
|
|
63
63
|
__metadata("design:type", String)
|
|
64
|
-
],
|
|
64
|
+
], ListReconciledInvoicesRequest.prototype, "companyId", void 0);
|
|
65
65
|
__decorate([
|
|
66
66
|
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=page" }),
|
|
67
67
|
__metadata("design:type", Number)
|
|
68
|
-
],
|
|
68
|
+
], ListReconciledInvoicesRequest.prototype, "page", void 0);
|
|
69
69
|
__decorate([
|
|
70
70
|
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=pageSize" }),
|
|
71
71
|
__metadata("design:type", Number)
|
|
72
|
-
],
|
|
72
|
+
], ListReconciledInvoicesRequest.prototype, "pageSize", void 0);
|
|
73
73
|
__decorate([
|
|
74
74
|
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=query" }),
|
|
75
75
|
__metadata("design:type", String)
|
|
76
|
-
],
|
|
77
|
-
return
|
|
76
|
+
], ListReconciledInvoicesRequest.prototype, "query", void 0);
|
|
77
|
+
return ListReconciledInvoicesRequest;
|
|
78
78
|
}(utils_1.SpeakeasyBase));
|
|
79
|
-
exports.
|
|
80
|
-
var
|
|
81
|
-
__extends(
|
|
82
|
-
function
|
|
79
|
+
exports.ListReconciledInvoicesRequest = ListReconciledInvoicesRequest;
|
|
80
|
+
var ListReconciledInvoicesResponse = /** @class */ (function (_super) {
|
|
81
|
+
__extends(ListReconciledInvoicesResponse, _super);
|
|
82
|
+
function ListReconciledInvoicesResponse() {
|
|
83
83
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
84
84
|
}
|
|
85
85
|
__decorate([
|
|
86
86
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
87
87
|
__metadata("design:type", String)
|
|
88
|
-
],
|
|
88
|
+
], ListReconciledInvoicesResponse.prototype, "contentType", void 0);
|
|
89
89
|
__decorate([
|
|
90
90
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
91
91
|
__metadata("design:type", shared.EnhancedInvoicesReport)
|
|
92
|
-
],
|
|
92
|
+
], ListReconciledInvoicesResponse.prototype, "enhancedInvoicesReport", void 0);
|
|
93
93
|
__decorate([
|
|
94
94
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
95
95
|
__metadata("design:type", shared.ErrorMessage)
|
|
96
|
-
],
|
|
96
|
+
], ListReconciledInvoicesResponse.prototype, "errorMessage", void 0);
|
|
97
97
|
__decorate([
|
|
98
98
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
99
99
|
__metadata("design:type", Number)
|
|
100
|
-
],
|
|
100
|
+
], ListReconciledInvoicesResponse.prototype, "statusCode", void 0);
|
|
101
101
|
__decorate([
|
|
102
102
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
103
103
|
__metadata("design:type", Object)
|
|
104
|
-
],
|
|
105
|
-
return
|
|
104
|
+
], ListReconciledInvoicesResponse.prototype, "rawResponse", void 0);
|
|
105
|
+
return ListReconciledInvoicesResponse;
|
|
106
106
|
}(utils_1.SpeakeasyBase));
|
|
107
|
-
exports.
|
|
107
|
+
exports.ListReconciledInvoicesResponse = ListReconciledInvoicesResponse;
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
2
|
import * as shared from "../shared";
|
|
3
3
|
import { AxiosResponse } from "axios";
|
|
4
|
-
export declare class
|
|
5
|
-
|
|
4
|
+
export declare class UnlinkConnectionUpdateConnection extends SpeakeasyBase {
|
|
5
|
+
/**
|
|
6
|
+
* The current authorization status of the data connection.
|
|
7
|
+
*/
|
|
8
|
+
status?: shared.DataConnectionStatus;
|
|
6
9
|
}
|
|
7
10
|
export declare class UnlinkConnectionRequest extends SpeakeasyBase {
|
|
8
|
-
requestBody?:
|
|
11
|
+
requestBody?: UnlinkConnectionUpdateConnection;
|
|
9
12
|
companyId: string;
|
|
10
13
|
connectionId: string;
|
|
11
14
|
}
|
|
@@ -50,23 +50,23 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
50
50
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
51
51
|
};
|
|
52
52
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
-
exports.UnlinkConnectionResponse = exports.UnlinkConnectionRequest = exports.
|
|
53
|
+
exports.UnlinkConnectionResponse = exports.UnlinkConnectionRequest = exports.UnlinkConnectionUpdateConnection = void 0;
|
|
54
54
|
var utils_1 = require("../../../internal/utils");
|
|
55
55
|
var shared = __importStar(require("../shared"));
|
|
56
56
|
var class_transformer_1 = require("class-transformer");
|
|
57
|
-
var
|
|
58
|
-
__extends(
|
|
59
|
-
function
|
|
57
|
+
var UnlinkConnectionUpdateConnection = /** @class */ (function (_super) {
|
|
58
|
+
__extends(UnlinkConnectionUpdateConnection, _super);
|
|
59
|
+
function UnlinkConnectionUpdateConnection() {
|
|
60
60
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
61
61
|
}
|
|
62
62
|
__decorate([
|
|
63
63
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
64
64
|
(0, class_transformer_1.Expose)({ name: "status" }),
|
|
65
65
|
__metadata("design:type", String)
|
|
66
|
-
],
|
|
67
|
-
return
|
|
66
|
+
], UnlinkConnectionUpdateConnection.prototype, "status", void 0);
|
|
67
|
+
return UnlinkConnectionUpdateConnection;
|
|
68
68
|
}(utils_1.SpeakeasyBase));
|
|
69
|
-
exports.
|
|
69
|
+
exports.UnlinkConnectionUpdateConnection = UnlinkConnectionUpdateConnection;
|
|
70
70
|
var UnlinkConnectionRequest = /** @class */ (function (_super) {
|
|
71
71
|
__extends(UnlinkConnectionRequest, _super);
|
|
72
72
|
function UnlinkConnectionRequest() {
|
|
@@ -74,7 +74,7 @@ var UnlinkConnectionRequest = /** @class */ (function (_super) {
|
|
|
74
74
|
}
|
|
75
75
|
__decorate([
|
|
76
76
|
(0, utils_1.SpeakeasyMetadata)({ data: "request, media_type=application/json" }),
|
|
77
|
-
__metadata("design:type",
|
|
77
|
+
__metadata("design:type", UnlinkConnectionUpdateConnection)
|
|
78
78
|
], UnlinkConnectionRequest.prototype, "requestBody", void 0);
|
|
79
79
|
__decorate([
|
|
80
80
|
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=companyId" }),
|
|
@@ -53,7 +53,7 @@ var AccountBalance = /** @class */ (function (_super) {
|
|
|
53
53
|
__decorate([
|
|
54
54
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
55
55
|
(0, class_transformer_1.Expose)({ name: "reserved" }),
|
|
56
|
-
__metadata("design:type",
|
|
56
|
+
__metadata("design:type", Object)
|
|
57
57
|
], AccountBalance.prototype, "reserved", void 0);
|
|
58
58
|
return AccountBalance;
|
|
59
59
|
}(utils_1.SpeakeasyBase));
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
2
|
import { AccountingAccount } from "./accountingaccount";
|
|
3
3
|
import { Links } from "./links";
|
|
4
|
-
/**
|
|
5
|
-
* Success
|
|
6
|
-
*/
|
|
7
4
|
export declare class AccountingAccounts extends SpeakeasyBase {
|
|
8
5
|
links: Links;
|
|
9
6
|
pageNumber: number;
|
|
@@ -32,9 +32,6 @@ var utils_1 = require("../../../internal/utils");
|
|
|
32
32
|
var accountingaccount_1 = require("./accountingaccount");
|
|
33
33
|
var links_1 = require("./links");
|
|
34
34
|
var class_transformer_1 = require("class-transformer");
|
|
35
|
-
/**
|
|
36
|
-
* Success
|
|
37
|
-
*/
|
|
38
35
|
var AccountingAccounts = /** @class */ (function (_super) {
|
|
39
36
|
__extends(AccountingAccounts, _super);
|
|
40
37
|
function AccountingAccounts() {
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
2
|
import { AccountingAccountTransaction } from "./accountingaccounttransaction";
|
|
3
3
|
import { Links } from "./links";
|
|
4
|
-
/**
|
|
5
|
-
* Success
|
|
6
|
-
*/
|
|
7
4
|
export declare class AccountingAccountTransactions extends SpeakeasyBase {
|
|
8
5
|
links: Links;
|
|
9
6
|
pageNumber: number;
|
|
@@ -32,9 +32,6 @@ var utils_1 = require("../../../internal/utils");
|
|
|
32
32
|
var accountingaccounttransaction_1 = require("./accountingaccounttransaction");
|
|
33
33
|
var links_1 = require("./links");
|
|
34
34
|
var class_transformer_1 = require("class-transformer");
|
|
35
|
-
/**
|
|
36
|
-
* Success
|
|
37
|
-
*/
|
|
38
35
|
var AccountingAccountTransactions = /** @class */ (function (_super) {
|
|
39
36
|
__extends(AccountingAccountTransactions, _super);
|
|
40
37
|
function AccountingAccountTransactions() {
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
2
|
import { AccountingBankAccount } from "./accountingbankaccount";
|
|
3
3
|
import { Links } from "./links";
|
|
4
|
-
/**
|
|
5
|
-
* Success
|
|
6
|
-
*/
|
|
7
4
|
export declare class AccountingBankAccounts extends SpeakeasyBase {
|
|
8
5
|
links: Links;
|
|
9
6
|
pageNumber: number;
|
|
@@ -32,9 +32,6 @@ var utils_1 = require("../../../internal/utils");
|
|
|
32
32
|
var accountingbankaccount_1 = require("./accountingbankaccount");
|
|
33
33
|
var links_1 = require("./links");
|
|
34
34
|
var class_transformer_1 = require("class-transformer");
|
|
35
|
-
/**
|
|
36
|
-
* Success
|
|
37
|
-
*/
|
|
38
35
|
var AccountingBankAccounts = /** @class */ (function (_super) {
|
|
39
36
|
__extends(AccountingBankAccounts, _super);
|
|
40
37
|
function AccountingBankAccounts() {
|