bexio 3.2.1 → 3.4.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.
Files changed (137) hide show
  1. package/Readme.md +1 -12
  2. package/coverage/base.css +224 -0
  3. package/coverage/block-navigation.js +87 -0
  4. package/coverage/favicon.png +0 -0
  5. package/coverage/index.html +146 -0
  6. package/coverage/prettify.css +1 -0
  7. package/coverage/prettify.js +2 -0
  8. package/coverage/sort-arrow-sprite.png +0 -0
  9. package/coverage/sorter.js +210 -0
  10. package/jest-html-reporters-attach/jest_html_reporters/index.js +3 -0
  11. package/jest-html-reporters-attach/jest_html_reporters/result.js +1 -0
  12. package/jest_html_reporters.html +1 -0
  13. package/junit.xml +150 -66
  14. package/lib/index.d.ts +15 -0
  15. package/lib/index.js +12 -0
  16. package/lib/index.js.map +1 -1
  17. package/lib/interfaces/BankAccountsStatic.d.ts +25 -0
  18. package/lib/interfaces/BankAccountsStatic.js +3 -0
  19. package/lib/interfaces/BankAccountsStatic.js.map +1 -0
  20. package/lib/interfaces/BaseStatic.d.ts +1 -1
  21. package/lib/interfaces/BillsV4Static.d.ts +204 -0
  22. package/lib/interfaces/BillsV4Static.js +60 -0
  23. package/lib/interfaces/BillsV4Static.js.map +1 -0
  24. package/lib/interfaces/CurrenciesStatic.d.ts +20 -0
  25. package/lib/interfaces/CurrenciesStatic.js +3 -0
  26. package/lib/interfaces/CurrenciesStatic.js.map +1 -0
  27. package/lib/interfaces/InvoicesStatic.d.ts +122 -70
  28. package/lib/interfaces/InvoicesStatic.js +21 -0
  29. package/lib/interfaces/InvoicesStatic.js.map +1 -1
  30. package/lib/interfaces/OutgoingPaymentsStatic.d.ts +142 -0
  31. package/lib/interfaces/OutgoingPaymentsStatic.js +39 -0
  32. package/lib/interfaces/OutgoingPaymentsStatic.js.map +1 -0
  33. package/lib/resources/BankAccounts.d.ts +49 -0
  34. package/lib/resources/BankAccounts.js +85 -0
  35. package/lib/resources/BankAccounts.js.map +1 -0
  36. package/lib/resources/BaseCrud.d.ts +4 -4
  37. package/lib/resources/BaseCrud.js +12 -4
  38. package/lib/resources/BaseCrud.js.map +1 -1
  39. package/lib/resources/Bills.d.ts +3 -0
  40. package/lib/resources/Bills.js +4 -1
  41. package/lib/resources/Bills.js.map +1 -1
  42. package/lib/resources/BillsV4.d.ts +52 -0
  43. package/lib/resources/BillsV4.js +86 -0
  44. package/lib/resources/BillsV4.js.map +1 -0
  45. package/lib/resources/BusinessActivities.js +1 -1
  46. package/lib/resources/BusinessActivities.js.map +1 -1
  47. package/lib/resources/ContactGroups.js +1 -1
  48. package/lib/resources/ContactGroups.js.map +1 -1
  49. package/lib/resources/ContactRelations.js +1 -1
  50. package/lib/resources/ContactRelations.js.map +1 -1
  51. package/lib/resources/ContactSectors.js +1 -1
  52. package/lib/resources/ContactSectors.js.map +1 -1
  53. package/lib/resources/ContactTypes.js +1 -1
  54. package/lib/resources/ContactTypes.js.map +1 -1
  55. package/lib/resources/Contacts.js +1 -1
  56. package/lib/resources/Contacts.js.map +1 -1
  57. package/lib/resources/Currencies.d.ts +33 -0
  58. package/lib/resources/Currencies.js +61 -0
  59. package/lib/resources/Currencies.js.map +1 -0
  60. package/lib/resources/Expenses.js +1 -1
  61. package/lib/resources/Expenses.js.map +1 -1
  62. package/lib/resources/Invoices.d.ts +30 -0
  63. package/lib/resources/Invoices.js +50 -1
  64. package/lib/resources/Invoices.js.map +1 -1
  65. package/lib/resources/Items.js +1 -1
  66. package/lib/resources/Items.js.map +1 -1
  67. package/lib/resources/Orders.js +1 -1
  68. package/lib/resources/Orders.js.map +1 -1
  69. package/lib/resources/OutgoingPayments.d.ts +63 -0
  70. package/lib/resources/OutgoingPayments.js +117 -0
  71. package/lib/resources/OutgoingPayments.js.map +1 -0
  72. package/lib/resources/Payments.d.ts +3 -0
  73. package/lib/resources/Payments.js +4 -1
  74. package/lib/resources/Payments.js.map +1 -1
  75. package/lib/resources/ProjectStatuses.js +1 -1
  76. package/lib/resources/ProjectStatuses.js.map +1 -1
  77. package/lib/resources/ProjectTypes.js +1 -1
  78. package/lib/resources/ProjectTypes.js.map +1 -1
  79. package/lib/resources/Projects.js +1 -1
  80. package/lib/resources/Projects.js.map +1 -1
  81. package/lib/resources/TimetrackingStatuses.js +1 -1
  82. package/lib/resources/TimetrackingStatuses.js.map +1 -1
  83. package/lib/resources/Timetrackings.js +1 -1
  84. package/lib/resources/Timetrackings.js.map +1 -1
  85. package/lib/resources/Users.js +1 -1
  86. package/lib/resources/Users.js.map +1 -1
  87. package/lib/tests/BankAccounts.test.d.ts +1 -0
  88. package/lib/tests/BankAccounts.test.js +86 -0
  89. package/lib/tests/BankAccounts.test.js.map +1 -0
  90. package/lib/tests/BaseCrud.test.js +21 -12
  91. package/lib/tests/BaseCrud.test.js.map +1 -1
  92. package/lib/tests/Bills.test.js +1 -1
  93. package/lib/tests/Bills.test.js.map +1 -1
  94. package/lib/tests/BillsV4.test.d.ts +1 -0
  95. package/lib/tests/BillsV4.test.js +134 -0
  96. package/lib/tests/BillsV4.test.js.map +1 -0
  97. package/lib/tests/BusinessActivities.test.js +1 -1
  98. package/lib/tests/BusinessActivities.test.js.map +1 -1
  99. package/lib/tests/ContactGroups.test.js +1 -1
  100. package/lib/tests/ContactGroups.test.js.map +1 -1
  101. package/lib/tests/ContactRelations.test.js +1 -1
  102. package/lib/tests/ContactRelations.test.js.map +1 -1
  103. package/lib/tests/ContactSectors.test.js +1 -1
  104. package/lib/tests/ContactSectors.test.js.map +1 -1
  105. package/lib/tests/ContactTypes.test.js +1 -1
  106. package/lib/tests/ContactTypes.test.js.map +1 -1
  107. package/lib/tests/Contacts.test.js +1 -1
  108. package/lib/tests/Contacts.test.js.map +1 -1
  109. package/lib/tests/Currencies.test.d.ts +1 -0
  110. package/lib/tests/Currencies.test.js +21 -0
  111. package/lib/tests/Currencies.test.js.map +1 -0
  112. package/lib/tests/Expenses.test.js +1 -1
  113. package/lib/tests/Expenses.test.js.map +1 -1
  114. package/lib/tests/Invoices.test.js +93 -3
  115. package/lib/tests/Invoices.test.js.map +1 -1
  116. package/lib/tests/Items.test.js +1 -1
  117. package/lib/tests/Items.test.js.map +1 -1
  118. package/lib/tests/Orders.test.js +1 -1
  119. package/lib/tests/Orders.test.js.map +1 -1
  120. package/lib/tests/OutgoingPayments.test.d.ts +1 -0
  121. package/lib/tests/OutgoingPayments.test.js +125 -0
  122. package/lib/tests/OutgoingPayments.test.js.map +1 -0
  123. package/lib/tests/Payments.test.js +1 -1
  124. package/lib/tests/Payments.test.js.map +1 -1
  125. package/lib/tests/ProjectStatuses.test.js +1 -1
  126. package/lib/tests/ProjectStatuses.test.js.map +1 -1
  127. package/lib/tests/ProjectTypes.test.js +1 -1
  128. package/lib/tests/ProjectTypes.test.js.map +1 -1
  129. package/lib/tests/Projects.test.js +1 -1
  130. package/lib/tests/Projects.test.js.map +1 -1
  131. package/lib/tests/TimetrackingStatuses.test.js +1 -1
  132. package/lib/tests/TimetrackingStatuses.test.js.map +1 -1
  133. package/lib/tests/Timetrackings.test.js +1 -1
  134. package/lib/tests/Timetrackings.test.js.map +1 -1
  135. package/lib/tests/Users.test.js +1 -1
  136. package/lib/tests/Users.test.js.map +1 -1
  137. package/package.json +1 -1
@@ -0,0 +1 @@
1
+ window.jest_html_reporters_callback__({"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":23,"numPassedTests":95,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":23,"numTotalTests":95,"startTime":1767029979773,"success":false,"testResults":[{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984203,"loadTestEnvironmentEnd":1767029980528,"loadTestEnvironmentStart":1767029980046,"runtime":3673,"setupAfterEnvEnd":1767029980982,"setupAfterEnvStart":1767029980982,"setupFilesEnd":1767029980530,"setupFilesStart":1767029980530,"slow":false,"start":1767029980530},"testFilePath":"/home/mathias/Github/bexio/src/tests/Projects.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Projects"],"duration":13,"failureMessages":[],"fullName":"Projects Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984491,"loadTestEnvironmentEnd":1767029980538,"loadTestEnvironmentStart":1767029980051,"runtime":3952,"setupAfterEnvEnd":1767029980943,"setupAfterEnvStart":1767029980943,"setupFilesEnd":1767029980539,"setupFilesStart":1767029980539,"slow":false,"start":1767029980539},"testFilePath":"/home/mathias/Github/bexio/src/tests/ContactRelations.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["ContactRelations"],"duration":18,"failureMessages":[],"fullName":"ContactRelations Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984500,"loadTestEnvironmentEnd":1767029980555,"loadTestEnvironmentStart":1767029980090,"runtime":3944,"setupAfterEnvEnd":1767029980930,"setupAfterEnvStart":1767029980930,"setupFilesEnd":1767029980556,"setupFilesStart":1767029980556,"slow":false,"start":1767029980556},"testFilePath":"/home/mathias/Github/bexio/src/tests/Expenses.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Expenses"],"duration":17,"failureMessages":[],"fullName":"Expenses Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984513,"loadTestEnvironmentEnd":1767029984362,"loadTestEnvironmentStart":1767029984333,"runtime":151,"setupAfterEnvEnd":1767029984474,"setupAfterEnvStart":1767029984474,"setupFilesEnd":1767029984362,"setupFilesStart":1767029984362,"slow":false,"start":1767029984362},"testFilePath":"/home/mathias/Github/bexio/src/tests/Currencies.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Currencies"],"duration":2,"failureMessages":[],"fullName":"Currencies Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984536,"loadTestEnvironmentEnd":1767029980537,"loadTestEnvironmentStart":1767029980053,"runtime":3998,"setupAfterEnvEnd":1767029980922,"setupAfterEnvStart":1767029980922,"setupFilesEnd":1767029980538,"setupFilesStart":1767029980538,"slow":false,"start":1767029980538},"testFilePath":"/home/mathias/Github/bexio/src/tests/Timetrackings.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Timetrackings"],"duration":10,"failureMessages":[],"fullName":"Timetrackings Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984681,"loadTestEnvironmentEnd":1767029980626,"loadTestEnvironmentStart":1767029980148,"runtime":4054,"setupAfterEnvEnd":1767029981093,"setupAfterEnvStart":1767029981093,"setupFilesEnd":1767029980627,"setupFilesStart":1767029980627,"slow":false,"start":1767029980627},"testFilePath":"/home/mathias/Github/bexio/src/tests/Users.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Users"],"duration":11,"failureMessages":[],"fullName":"Users Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984867,"loadTestEnvironmentEnd":1767029980580,"loadTestEnvironmentStart":1767029980064,"runtime":4285,"setupAfterEnvEnd":1767029980994,"setupAfterEnvStart":1767029980994,"setupFilesEnd":1767029980582,"setupFilesStart":1767029980582,"slow":false,"start":1767029980582},"testFilePath":"/home/mathias/Github/bexio/src/tests/Contacts.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Contacts"],"duration":16,"failureMessages":[],"fullName":"Contacts Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":7,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984900,"loadTestEnvironmentEnd":1767029984635,"loadTestEnvironmentStart":1767029984559,"runtime":265,"setupAfterEnvEnd":1767029984842,"setupAfterEnvStart":1767029984842,"setupFilesEnd":1767029984635,"setupFilesStart":1767029984635,"slow":false,"start":1767029984635},"testFilePath":"/home/mathias/Github/bexio/src/tests/Invoices.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Invoices"],"duration":3,"failureMessages":[],"fullName":"Invoices Should use init the base correctly","status":"passed","title":"Should use init the base correctly"},{"ancestorTitles":["Invoices","sent"],"duration":3,"failureMessages":[],"fullName":"Invoices sent Should call request with POST and correct path","status":"passed","title":"Should call request with POST and correct path"},{"ancestorTitles":["Invoices","revertIssue"],"duration":1,"failureMessages":[],"fullName":"Invoices revertIssue Should call request with POST and correct path","status":"passed","title":"Should call request with POST and correct path"},{"ancestorTitles":["Invoices","createPayment"],"duration":2,"failureMessages":[],"fullName":"Invoices createPayment Should call request with POST and correct path and formatted data","status":"passed","title":"Should call request with POST and correct path and formatted data"},{"ancestorTitles":["Invoices","createPayment"],"duration":1,"failureMessages":[],"fullName":"Invoices createPayment Should call request without optional parameters","status":"passed","title":"Should call request without optional parameters"},{"ancestorTitles":["Invoices","getPayment"],"duration":2,"failureMessages":[],"fullName":"Invoices getPayment Should call request with GET and correct path","status":"passed","title":"Should call request with GET and correct path"},{"ancestorTitles":["Invoices","deletePayment"],"duration":1,"failureMessages":[],"fullName":"Invoices deletePayment Should call request with DELETE and correct path","status":"passed","title":"Should call request with DELETE and correct path"}]},{"numFailingTests":0,"numPassingTests":30,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984914,"loadTestEnvironmentEnd":1767029980521,"loadTestEnvironmentStart":1767029980055,"runtime":4392,"setupAfterEnvEnd":1767029980930,"setupAfterEnvStart":1767029980930,"setupFilesEnd":1767029980522,"setupFilesStart":1767029980522,"slow":false,"start":1767029980522},"testFilePath":"/home/mathias/Github/bexio/src/tests/BaseCrud.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["BaseCrud","list"],"duration":9,"failureMessages":[],"fullName":"BaseCrud list Should be a GET request","status":"passed","title":"Should be a GET request"},{"ancestorTitles":["BaseCrud","list"],"duration":1,"failureMessages":[],"fullName":"BaseCrud list Should use the given endpoint","status":"passed","title":"Should use the given endpoint"},{"ancestorTitles":["BaseCrud","list"],"duration":1,"failureMessages":[],"fullName":"BaseCrud list Should pass the options to request","status":"passed","title":"Should pass the options to request"},{"ancestorTitles":["BaseCrud","list"],"duration":1,"failureMessages":[],"fullName":"BaseCrud list Should handle array options correctly","status":"passed","title":"Should handle array options correctly"},{"ancestorTitles":["BaseCrud","search"],"duration":1,"failureMessages":[],"fullName":"BaseCrud search Should be a POST request","status":"passed","title":"Should be a POST request"},{"ancestorTitles":["BaseCrud","search"],"duration":1,"failureMessages":[],"fullName":"BaseCrud search Should use the given endpoint","status":"passed","title":"Should use the given endpoint"},{"ancestorTitles":["BaseCrud","search"],"duration":1,"failureMessages":[],"fullName":"BaseCrud search Should contain the request body","status":"passed","title":"Should contain the request body"},{"ancestorTitles":["BaseCrud","search"],"duration":1,"failureMessages":[],"fullName":"BaseCrud search Should pass the options to request","status":"passed","title":"Should pass the options to request"},{"ancestorTitles":["BaseCrud","show"],"duration":1,"failureMessages":[],"fullName":"BaseCrud show Should be a GET request","status":"passed","title":"Should be a GET request"},{"ancestorTitles":["BaseCrud","show"],"duration":0,"failureMessages":[],"fullName":"BaseCrud show Should use the given endpoint","status":"passed","title":"Should use the given endpoint"},{"ancestorTitles":["BaseCrud","show"],"duration":0,"failureMessages":[],"fullName":"BaseCrud show Should pass the options to request","status":"passed","title":"Should pass the options to request"},{"ancestorTitles":["BaseCrud","create"],"duration":0,"failureMessages":[],"fullName":"BaseCrud create Should be a POST request","status":"passed","title":"Should be a POST request"},{"ancestorTitles":["BaseCrud","create"],"duration":1,"failureMessages":[],"fullName":"BaseCrud create Should use the given endpoint","status":"passed","title":"Should use the given endpoint"},{"ancestorTitles":["BaseCrud","create"],"duration":0,"failureMessages":[],"fullName":"BaseCrud create Should contain the request body","status":"passed","title":"Should contain the request body"},{"ancestorTitles":["BaseCrud","overwrite"],"duration":1,"failureMessages":[],"fullName":"BaseCrud overwrite Should be a PUT request","status":"passed","title":"Should be a PUT request"},{"ancestorTitles":["BaseCrud","overwrite"],"duration":1,"failureMessages":[],"fullName":"BaseCrud overwrite Should use the given endpoint","status":"passed","title":"Should use the given endpoint"},{"ancestorTitles":["BaseCrud","overwrite"],"duration":0,"failureMessages":[],"fullName":"BaseCrud overwrite Should contain the request body","status":"passed","title":"Should contain the request body"},{"ancestorTitles":["BaseCrud","edit"],"duration":1,"failureMessages":[],"fullName":"BaseCrud edit Should be a POST request","status":"passed","title":"Should be a POST request"},{"ancestorTitles":["BaseCrud","edit"],"duration":1,"failureMessages":[],"fullName":"BaseCrud edit Should use the given endpoint","status":"passed","title":"Should use the given endpoint"},{"ancestorTitles":["BaseCrud","edit"],"duration":0,"failureMessages":[],"fullName":"BaseCrud edit Should contain the request body","status":"passed","title":"Should contain the request body"},{"ancestorTitles":["BaseCrud","delete"],"duration":0,"failureMessages":[],"fullName":"BaseCrud delete Should be a DELETE request","status":"passed","title":"Should be a DELETE request"},{"ancestorTitles":["BaseCrud","delete"],"duration":1,"failureMessages":[],"fullName":"BaseCrud delete Should use the given endpoint","status":"passed","title":"Should use the given endpoint"},{"ancestorTitles":["BaseCrud","delete"],"duration":0,"failureMessages":[],"fullName":"BaseCrud delete Should return the success value","status":"passed","title":"Should return the success value"},{"ancestorTitles":["BaseCrud","request"],"duration":1,"failureMessages":[],"fullName":"BaseCrud request Should create the request options","status":"passed","title":"Should create the request options"},{"ancestorTitles":["BaseCrud","request"],"duration":1,"failureMessages":[],"fullName":"BaseCrud request Should add a data param if present","status":"passed","title":"Should add a data param if present"},{"ancestorTitles":["BaseCrud","request"],"duration":1,"failureMessages":[],"fullName":"BaseCrud request Should add options as GET params","status":"passed","title":"Should add options as GET params"},{"ancestorTitles":["BaseCrud","request"],"duration":3,"failureMessages":[],"fullName":"BaseCrud request Should normalize an error","status":"passed","title":"Should normalize an error"},{"ancestorTitles":["BaseCrud","optionsToQuery"],"duration":0,"failureMessages":[],"fullName":"BaseCrud optionsToQuery Should return an empty string","status":"passed","title":"Should return an empty string"},{"ancestorTitles":["BaseCrud","optionsToQuery"],"duration":1,"failureMessages":[],"fullName":"BaseCrud optionsToQuery Should return an GET parameter string","status":"passed","title":"Should return an GET parameter string"},{"ancestorTitles":["BaseCrud","optionsToQuery"],"duration":1,"failureMessages":[],"fullName":"BaseCrud optionsToQuery Should url encode the parameters","status":"passed","title":"Should url encode the parameters"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984943,"loadTestEnvironmentEnd":1767029984569,"loadTestEnvironmentStart":1767029984540,"runtime":374,"setupAfterEnvEnd":1767029984890,"setupAfterEnvStart":1767029984890,"setupFilesEnd":1767029984569,"setupFilesStart":1767029984569,"slow":false,"start":1767029984569},"testFilePath":"/home/mathias/Github/bexio/src/tests/ContactSectors.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["ContactSectors"],"duration":1,"failureMessages":[],"fullName":"ContactSectors Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":11,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984959,"loadTestEnvironmentEnd":1767029980569,"loadTestEnvironmentStart":1767029980063,"runtime":4389,"setupAfterEnvEnd":1767029981171,"setupAfterEnvStart":1767029981171,"setupFilesEnd":1767029980570,"setupFilesStart":1767029980570,"slow":false,"start":1767029980570},"testFilePath":"/home/mathias/Github/bexio/src/tests/BillsV4.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["BillsV4"],"duration":12,"failureMessages":[],"fullName":"BillsV4 Should use init the base correctly","status":"passed","title":"Should use init the base correctly"},{"ancestorTitles":["BillsV4","list"],"duration":5,"failureMessages":[],"fullName":"BillsV4 list Should call request with GET","status":"passed","title":"Should call request with GET"},{"ancestorTitles":["BillsV4","list"],"duration":2,"failureMessages":[],"fullName":"BillsV4 list Should pass options to request","status":"passed","title":"Should pass options to request"},{"ancestorTitles":["BillsV4","list"],"duration":9,"failureMessages":[],"fullName":"BillsV4 list should list bills with options","status":"passed","title":"should list bills with options"},{"ancestorTitles":["BillsV4","updateStatus"],"duration":6,"failureMessages":[],"fullName":"BillsV4 updateStatus Should call request with PUT and correct path","status":"passed","title":"Should call request with PUT and correct path"},{"ancestorTitles":["BillsV4","executeAction"],"duration":2,"failureMessages":[],"fullName":"BillsV4 executeAction Should call request with POST and correct path and data","status":"passed","title":"Should call request with POST and correct path and data"},{"ancestorTitles":["BillsV4","validateDocumentNumber"],"duration":2,"failureMessages":[],"fullName":"BillsV4 validateDocumentNumber Should call request with GET and correct path and data","status":"passed","title":"Should call request with GET and correct path and data"},{"ancestorTitles":["BillsV4","search"],"duration":46,"failureMessages":[],"fullName":"BillsV4 search Should throw not implemented error","status":"passed","title":"Should throw not implemented error"},{"ancestorTitles":["BillsV4","updateStatus"],"duration":14,"failureMessages":[],"fullName":"BillsV4 updateStatus Should call request with PUT and correct path","status":"passed","title":"Should call request with PUT and correct path"},{"ancestorTitles":["BillsV4","executeAction"],"duration":1,"failureMessages":[],"fullName":"BillsV4 executeAction Should call request with POST and correct path and data","status":"passed","title":"Should call request with POST and correct path and data"},{"ancestorTitles":["BillsV4","validateDocumentNumber"],"duration":7,"failureMessages":[],"fullName":"BillsV4 validateDocumentNumber Should call request with GET and correct path and query","status":"passed","title":"Should call request with GET and correct path and query"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984982,"loadTestEnvironmentEnd":1767029980569,"loadTestEnvironmentStart":1767029980117,"runtime":4412,"setupAfterEnvEnd":1767029981119,"setupAfterEnvStart":1767029981119,"setupFilesEnd":1767029980570,"setupFilesStart":1767029980570,"slow":false,"start":1767029980570},"testFilePath":"/home/mathias/Github/bexio/src/tests/BusinessActivities.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["BusinessActivities"],"duration":15,"failureMessages":[],"fullName":"BusinessActivities Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":11,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029984971,"loadTestEnvironmentEnd":1767029980568,"loadTestEnvironmentStart":1767029980057,"runtime":4402,"setupAfterEnvEnd":1767029981104,"setupAfterEnvStart":1767029981104,"setupFilesEnd":1767029980569,"setupFilesStart":1767029980569,"slow":false,"start":1767029980569},"testFilePath":"/home/mathias/Github/bexio/src/tests/Bills.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Bills"],"duration":13,"failureMessages":[],"fullName":"Bills Should use init the base correctly","status":"passed","title":"Should use init the base correctly"},{"ancestorTitles":["Bills"],"duration":2,"failureMessages":[],"fullName":"Bills issue request","status":"passed","title":"issue request"},{"ancestorTitles":["Bills"],"duration":2,"failureMessages":[],"fullName":"Bills revertIssue request","status":"passed","title":"revertIssue request"},{"ancestorTitles":["Bills","list"],"duration":9,"failureMessages":[],"fullName":"Bills list Should call base list","status":"passed","title":"Should call base list"},{"ancestorTitles":["Bills","list"],"duration":1,"failureMessages":[],"fullName":"Bills list Should pass options to base list","status":"passed","title":"Should pass options to base list"},{"ancestorTitles":["Bills","showPayment"],"duration":6,"failureMessages":[],"fullName":"Bills showPayment Should create a new Payment object","status":"passed","title":"Should create a new Payment object"},{"ancestorTitles":["Bills","showPayment"],"duration":7,"failureMessages":[],"fullName":"Bills showPayment Should pass the options down","status":"passed","title":"Should pass the options down"},{"ancestorTitles":["Bills","createPayment"],"duration":9,"failureMessages":[],"fullName":"Bills createPayment Should create a new Payment object","status":"passed","title":"Should create a new Payment object"},{"ancestorTitles":["Bills","createPayment"],"duration":14,"failureMessages":[],"fullName":"Bills createPayment Should call create","status":"passed","title":"Should call create"},{"ancestorTitles":["Bills","deletePayment"],"duration":9,"failureMessages":[],"fullName":"Bills deletePayment Should create a new Payment object","status":"passed","title":"Should create a new Payment object"},{"ancestorTitles":["Bills","deletePayment"],"duration":10,"failureMessages":[],"fullName":"Bills deletePayment Should call delete","status":"passed","title":"Should call delete"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985037,"loadTestEnvironmentEnd":1767029980539,"loadTestEnvironmentStart":1767029980067,"runtime":4496,"setupAfterEnvEnd":1767029980896,"setupAfterEnvStart":1767029980896,"setupFilesEnd":1767029980541,"setupFilesStart":1767029980541,"slow":false,"start":1767029980541},"testFilePath":"/home/mathias/Github/bexio/src/tests/ProjectStatuses.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["ProjectStatuses"],"duration":10,"failureMessages":[],"fullName":"ProjectStatuses Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985216,"loadTestEnvironmentEnd":1767029980545,"loadTestEnvironmentStart":1767029980068,"runtime":4669,"setupAfterEnvEnd":1767029981017,"setupAfterEnvStart":1767029981017,"setupFilesEnd":1767029980547,"setupFilesStart":1767029980547,"slow":false,"start":1767029980547},"testFilePath":"/home/mathias/Github/bexio/src/tests/ProjectTypes.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["ProjectTypes"],"duration":8,"failureMessages":[],"fullName":"ProjectTypes Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":9,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985232,"loadTestEnvironmentEnd":1767029980550,"loadTestEnvironmentStart":1767029980063,"runtime":4681,"setupAfterEnvEnd":1767029980972,"setupAfterEnvStart":1767029980972,"setupFilesEnd":1767029980551,"setupFilesStart":1767029980551,"slow":false,"start":1767029980551},"testFilePath":"/home/mathias/Github/bexio/src/tests/BankAccounts.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["BankAccounts"],"duration":9,"failureMessages":[],"fullName":"BankAccounts Should use init the base correctly","status":"passed","title":"Should use init the base correctly"},{"ancestorTitles":["BankAccounts","list"],"duration":3,"failureMessages":[],"fullName":"BankAccounts list Should call request with GET","status":"passed","title":"Should call request with GET"},{"ancestorTitles":["BankAccounts","list"],"duration":0,"failureMessages":[],"fullName":"BankAccounts list Should pass options to request","status":"passed","title":"Should pass options to request"},{"ancestorTitles":["BankAccounts","show"],"duration":1,"failureMessages":[],"fullName":"BankAccounts show Should call request with GET and correct path","status":"passed","title":"Should call request with GET and correct path"},{"ancestorTitles":["BankAccounts","Unsupported methods"],"duration":10,"failureMessages":[],"fullName":"BankAccounts Unsupported methods search should throw error","status":"passed","title":"search should throw error"},{"ancestorTitles":["BankAccounts","Unsupported methods"],"duration":1,"failureMessages":[],"fullName":"BankAccounts Unsupported methods create should throw error","status":"passed","title":"create should throw error"},{"ancestorTitles":["BankAccounts","Unsupported methods"],"duration":1,"failureMessages":[],"fullName":"BankAccounts Unsupported methods overwrite should throw error","status":"passed","title":"overwrite should throw error"},{"ancestorTitles":["BankAccounts","Unsupported methods"],"duration":2,"failureMessages":[],"fullName":"BankAccounts Unsupported methods edit should throw error","status":"passed","title":"edit should throw error"},{"ancestorTitles":["BankAccounts","Unsupported methods"],"duration":1,"failureMessages":[],"fullName":"BankAccounts Unsupported methods delete should throw error","status":"passed","title":"delete should throw error"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985380,"loadTestEnvironmentEnd":1767029980582,"loadTestEnvironmentStart":1767029980146,"runtime":4798,"setupAfterEnvEnd":1767029981381,"setupAfterEnvStart":1767029981381,"setupFilesEnd":1767029980582,"setupFilesStart":1767029980582,"slow":false,"start":1767029980582},"testFilePath":"/home/mathias/Github/bexio/src/tests/ContactGroups.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["ContactGroups"],"duration":8,"failureMessages":[],"fullName":"ContactGroups Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985406,"loadTestEnvironmentEnd":1767029980596,"loadTestEnvironmentStart":1767029980062,"runtime":4809,"setupAfterEnvEnd":1767029981248,"setupAfterEnvStart":1767029981248,"setupFilesEnd":1767029980597,"setupFilesStart":1767029980597,"slow":false,"start":1767029980597},"testFilePath":"/home/mathias/Github/bexio/src/tests/ContactTypes.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["ContactTypes"],"duration":8,"failureMessages":[],"fullName":"ContactTypes Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985469,"loadTestEnvironmentEnd":1767029980557,"loadTestEnvironmentStart":1767029980094,"runtime":4911,"setupAfterEnvEnd":1767029981076,"setupAfterEnvStart":1767029981076,"setupFilesEnd":1767029980558,"setupFilesStart":1767029980558,"slow":false,"start":1767029980558},"testFilePath":"/home/mathias/Github/bexio/src/tests/Orders.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Orders"],"duration":8,"failureMessages":[],"fullName":"Orders Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985478,"loadTestEnvironmentEnd":1767029980545,"loadTestEnvironmentStart":1767029980072,"runtime":4932,"setupAfterEnvEnd":1767029981042,"setupAfterEnvStart":1767029981042,"setupFilesEnd":1767029980546,"setupFilesStart":1767029980546,"slow":false,"start":1767029980546},"testFilePath":"/home/mathias/Github/bexio/src/tests/Items.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Items"],"duration":12,"failureMessages":[],"fullName":"Items Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985501,"loadTestEnvironmentEnd":1767029980538,"loadTestEnvironmentStart":1767029980071,"runtime":4961,"setupAfterEnvEnd":1767029980997,"setupAfterEnvStart":1767029980997,"setupFilesEnd":1767029980540,"setupFilesStart":1767029980540,"slow":false,"start":1767029980540},"testFilePath":"/home/mathias/Github/bexio/src/tests/Payments.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["Payments"],"duration":7,"failureMessages":[],"fullName":"Payments Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":1,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985610,"loadTestEnvironmentEnd":1767029980519,"loadTestEnvironmentStart":1767029980041,"runtime":5090,"setupAfterEnvEnd":1767029981243,"setupAfterEnvStart":1767029981243,"setupFilesEnd":1767029980520,"setupFilesStart":1767029980520,"slow":true,"start":1767029980520},"testFilePath":"/home/mathias/Github/bexio/src/tests/TimetrackingStatuses.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["TimetrackingStatuses"],"duration":5,"failureMessages":[],"fullName":"TimetrackingStatuses Should use init the base correctly","status":"passed","title":"Should use init the base correctly"}]},{"numFailingTests":0,"numPassingTests":10,"numPendingTests":0,"numTodoTests":0,"perfStats":{"end":1767029985834,"loadTestEnvironmentEnd":1767029984551,"loadTestEnvironmentStart":1767029984543,"runtime":1283,"setupAfterEnvEnd":1767029984592,"setupAfterEnvStart":1767029984592,"setupFilesEnd":1767029984551,"setupFilesStart":1767029984551,"slow":false,"start":1767029984551},"testFilePath":"/home/mathias/Github/bexio/src/tests/OutgoingPayments.test.ts","failureMessage":null,"testResults":[{"ancestorTitles":["OutgoingPayments"],"duration":1,"failureMessages":[],"fullName":"OutgoingPayments Should use init the base correctly","status":"passed","title":"Should use init the base correctly"},{"ancestorTitles":["OutgoingPayments","list"],"duration":0,"failureMessages":[],"fullName":"OutgoingPayments list Should call request with GET","status":"passed","title":"Should call request with GET"},{"ancestorTitles":["OutgoingPayments","search"],"duration":6,"failureMessages":[],"fullName":"OutgoingPayments search Should throw not implemented error","status":"passed","title":"Should throw not implemented error"},{"ancestorTitles":["OutgoingPayments","show"],"duration":1,"failureMessages":[],"fullName":"OutgoingPayments show Should call request with GET and correct path","status":"passed","title":"Should call request with GET and correct path"},{"ancestorTitles":["OutgoingPayments","create"],"duration":0,"failureMessages":[],"fullName":"OutgoingPayments create Should call request with POST and correct data","status":"passed","title":"Should call request with POST and correct data"},{"ancestorTitles":["OutgoingPayments","update"],"duration":1,"failureMessages":[],"fullName":"OutgoingPayments update Should call request with PUT and correct data","status":"passed","title":"Should call request with PUT and correct data"},{"ancestorTitles":["OutgoingPayments","delete"],"duration":0,"failureMessages":[],"fullName":"OutgoingPayments delete Should call request with DELETE and correct path","status":"passed","title":"Should call request with DELETE and correct path"},{"ancestorTitles":["OutgoingPayments","cancel"],"duration":0,"failureMessages":[],"fullName":"OutgoingPayments cancel Should call request with POST and correct path","status":"passed","title":"Should call request with POST and correct path"},{"ancestorTitles":["OutgoingPayments","overwrite"],"duration":1,"failureMessages":[],"fullName":"OutgoingPayments overwrite Should throw not implemented error","status":"passed","title":"Should throw not implemented error"},{"ancestorTitles":["OutgoingPayments","edit"],"duration":0,"failureMessages":[],"fullName":"OutgoingPayments edit Should throw not implemented error","status":"passed","title":"Should throw not implemented error"}]}],"config":{"bail":0,"changedFilesWithAncestor":false,"ci":false,"collectCoverage":true,"collectCoverageFrom":["src/**/*.{ts,tsx}","!**/node_modules/**","!**/coverage/**"],"coverageDirectory":"/home/mathias/Github/bexio/coverage","coverageProvider":"babel","coverageReporters":["html"],"detectLeaks":false,"detectOpenHandles":false,"errorOnDeprecated":false,"expand":false,"findRelatedTests":false,"forceExit":false,"json":false,"lastCommit":false,"listTests":false,"logHeapUsage":false,"maxConcurrency":5,"maxWorkers":19,"noStackTrace":false,"nonFlagArgs":[],"notify":false,"notifyMode":"failure-change","onlyChanged":false,"onlyFailures":false,"openHandlesTimeout":1000,"passWithNoTests":false,"projects":[],"reporters":[["default",{}],["/home/mathias/Github/bexio/node_modules/jest-html-reporters/index.js",{}],["/home/mathias/Github/bexio/node_modules/jest-junit/index.js",{}]],"rootDir":"/home/mathias/Github/bexio","runInBand":false,"runTestsByPath":false,"seed":1455259920,"skipFilter":false,"snapshotFormat":{"escapeString":false,"printBasicPrototype":false},"testFailureExitCode":1,"testPathPatterns":{"patterns":[],"type":"TestPathPatterns"},"testSequencer":"/home/mathias/Github/bexio/node_modules/@jest/test-sequencer/build/index.js","updateSnapshot":"new","useStderr":false,"waitForUnhandledRejections":false,"watch":false,"watchAll":false,"watchman":true,"workerThreads":false,"coverageLinkPath":"coverage/index.html"},"endTime":1767029985955,"_reporterOptions":{"publicPath":"/home/mathias/Github/bexio","filename":"jest_html_reporters.html","expand":false,"pageTitle":"","hideIcon":false,"testCommand":"","openReport":false,"failureMessageOnly":0,"enableMergeData":false,"dataMergeLevel":1,"inlineSource":false,"urlForTestFiles":"","darkTheme":false,"includeConsoleLog":false,"stripSkippedTest":false},"logInfoMapping":{},"attachInfos":{}})
@@ -0,0 +1 @@
1
+ <!doctype html><html><head><meta charset="utf-8"><meta http-equiv="Content-Type" content="text/html;charset=utf-8"><meta name="keywords" contect="jest, reporters"><meta name="author" contect="hazyzh"><meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0,minimum-scale=1,maximum-scale=1"><link rel="shortcut icon" href="data:image/png;base64,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"></head><title>Report</title><body><div id="app"></div><script defer="defer" src="./jest-html-reporters-attach/jest_html_reporters/index.js"></script></body></html>
package/junit.xml CHANGED
@@ -1,155 +1,239 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuites name="jest tests" tests="57" failures="0" errors="0" time="5.588">
3
- <testsuite name="Contacts" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.276" tests="1">
4
- <testcase classname="Contacts Should use init the base correctly" name="Contacts Should use init the base correctly" time="0.012">
2
+ <testsuites name="jest tests" tests="95" failures="0" errors="0" time="6.188">
3
+ <testsuite name="Projects" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="3.673" tests="1">
4
+ <testcase classname="Projects Should use init the base correctly" name="Projects Should use init the base correctly" time="0.013">
5
5
  </testcase>
6
6
  </testsuite>
7
- <testsuite name="ContactRelations" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.468" tests="1">
8
- <testcase classname="ContactRelations Should use init the base correctly" name="ContactRelations Should use init the base correctly" time="0.017">
7
+ <testsuite name="ContactRelations" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="3.952" tests="1">
8
+ <testcase classname="ContactRelations Should use init the base correctly" name="ContactRelations Should use init the base correctly" time="0.018">
9
9
  </testcase>
10
10
  </testsuite>
11
- <testsuite name="Expenses" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.583" tests="1">
12
- <testcase classname="Expenses Should use init the base correctly" name="Expenses Should use init the base correctly" time="0.012">
11
+ <testsuite name="Expenses" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="3.944" tests="1">
12
+ <testcase classname="Expenses Should use init the base correctly" name="Expenses Should use init the base correctly" time="0.017">
13
13
  </testcase>
14
14
  </testsuite>
15
- <testsuite name="BaseCrud" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.471" tests="29">
15
+ <testsuite name="Currencies" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:44" time="0.151" tests="1">
16
+ <testcase classname="Currencies Should use init the base correctly" name="Currencies Should use init the base correctly" time="0.002">
17
+ </testcase>
18
+ </testsuite>
19
+ <testsuite name="Timetrackings" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="3.998" tests="1">
20
+ <testcase classname="Timetrackings Should use init the base correctly" name="Timetrackings Should use init the base correctly" time="0.01">
21
+ </testcase>
22
+ </testsuite>
23
+ <testsuite name="Users" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.054" tests="1">
24
+ <testcase classname="Users Should use init the base correctly" name="Users Should use init the base correctly" time="0.011">
25
+ </testcase>
26
+ </testsuite>
27
+ <testsuite name="Contacts" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.285" tests="1">
28
+ <testcase classname="Contacts Should use init the base correctly" name="Contacts Should use init the base correctly" time="0.016">
29
+ </testcase>
30
+ </testsuite>
31
+ <testsuite name="Invoices" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:44" time="0.265" tests="7">
32
+ <testcase classname="Invoices Should use init the base correctly" name="Invoices Should use init the base correctly" time="0.003">
33
+ </testcase>
34
+ <testcase classname="Invoices sent Should call request with POST and correct path" name="Invoices sent Should call request with POST and correct path" time="0.003">
35
+ </testcase>
36
+ <testcase classname="Invoices revertIssue Should call request with POST and correct path" name="Invoices revertIssue Should call request with POST and correct path" time="0.001">
37
+ </testcase>
38
+ <testcase classname="Invoices createPayment Should call request with POST and correct path and formatted data" name="Invoices createPayment Should call request with POST and correct path and formatted data" time="0.002">
39
+ </testcase>
40
+ <testcase classname="Invoices createPayment Should call request without optional parameters" name="Invoices createPayment Should call request without optional parameters" time="0.001">
41
+ </testcase>
42
+ <testcase classname="Invoices getPayment Should call request with GET and correct path" name="Invoices getPayment Should call request with GET and correct path" time="0.002">
43
+ </testcase>
44
+ <testcase classname="Invoices deletePayment Should call request with DELETE and correct path" name="Invoices deletePayment Should call request with DELETE and correct path" time="0.001">
45
+ </testcase>
46
+ </testsuite>
47
+ <testsuite name="BaseCrud" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.392" tests="30">
16
48
  <testcase classname="BaseCrud list Should be a GET request" name="BaseCrud list Should be a GET request" time="0.009">
17
49
  </testcase>
18
- <testcase classname="BaseCrud list Should use the given endpoint" name="BaseCrud list Should use the given endpoint" time="0.002">
50
+ <testcase classname="BaseCrud list Should use the given endpoint" name="BaseCrud list Should use the given endpoint" time="0.001">
51
+ </testcase>
52
+ <testcase classname="BaseCrud list Should pass the options to request" name="BaseCrud list Should pass the options to request" time="0.001">
19
53
  </testcase>
20
- <testcase classname="BaseCrud list Should pass the options to request" name="BaseCrud list Should pass the options to request" time="0.002">
54
+ <testcase classname="BaseCrud list Should handle array options correctly" name="BaseCrud list Should handle array options correctly" time="0.001">
21
55
  </testcase>
22
- <testcase classname="BaseCrud search Should be a POST request" name="BaseCrud search Should be a POST request" time="0.002">
56
+ <testcase classname="BaseCrud search Should be a POST request" name="BaseCrud search Should be a POST request" time="0.001">
23
57
  </testcase>
24
- <testcase classname="BaseCrud search Should use the given endpoint" name="BaseCrud search Should use the given endpoint" time="0.005">
58
+ <testcase classname="BaseCrud search Should use the given endpoint" name="BaseCrud search Should use the given endpoint" time="0.001">
25
59
  </testcase>
26
- <testcase classname="BaseCrud search Should contain the request body" name="BaseCrud search Should contain the request body" time="0.003">
60
+ <testcase classname="BaseCrud search Should contain the request body" name="BaseCrud search Should contain the request body" time="0.001">
27
61
  </testcase>
28
- <testcase classname="BaseCrud search Should pass the options to request" name="BaseCrud search Should pass the options to request" time="0.005">
62
+ <testcase classname="BaseCrud search Should pass the options to request" name="BaseCrud search Should pass the options to request" time="0.001">
29
63
  </testcase>
30
64
  <testcase classname="BaseCrud show Should be a GET request" name="BaseCrud show Should be a GET request" time="0.001">
31
65
  </testcase>
32
- <testcase classname="BaseCrud show Should use the given endpoint" name="BaseCrud show Should use the given endpoint" time="0.01">
66
+ <testcase classname="BaseCrud show Should use the given endpoint" name="BaseCrud show Should use the given endpoint" time="0">
33
67
  </testcase>
34
- <testcase classname="BaseCrud show Should pass the options to request" name="BaseCrud show Should pass the options to request" time="0.001">
68
+ <testcase classname="BaseCrud show Should pass the options to request" name="BaseCrud show Should pass the options to request" time="0">
35
69
  </testcase>
36
- <testcase classname="BaseCrud create Should be a POST request" name="BaseCrud create Should be a POST request" time="0.001">
70
+ <testcase classname="BaseCrud create Should be a POST request" name="BaseCrud create Should be a POST request" time="0">
37
71
  </testcase>
38
- <testcase classname="BaseCrud create Should use the given endpoint" name="BaseCrud create Should use the given endpoint" time="0.004">
72
+ <testcase classname="BaseCrud create Should use the given endpoint" name="BaseCrud create Should use the given endpoint" time="0.001">
39
73
  </testcase>
40
- <testcase classname="BaseCrud create Should contain the request body" name="BaseCrud create Should contain the request body" time="0.001">
74
+ <testcase classname="BaseCrud create Should contain the request body" name="BaseCrud create Should contain the request body" time="0">
41
75
  </testcase>
42
- <testcase classname="BaseCrud overwrite Should be a PUT request" name="BaseCrud overwrite Should be a PUT request" time="0.004">
76
+ <testcase classname="BaseCrud overwrite Should be a PUT request" name="BaseCrud overwrite Should be a PUT request" time="0.001">
43
77
  </testcase>
44
78
  <testcase classname="BaseCrud overwrite Should use the given endpoint" name="BaseCrud overwrite Should use the given endpoint" time="0.001">
45
79
  </testcase>
46
- <testcase classname="BaseCrud overwrite Should contain the request body" name="BaseCrud overwrite Should contain the request body" time="0.002">
80
+ <testcase classname="BaseCrud overwrite Should contain the request body" name="BaseCrud overwrite Should contain the request body" time="0">
47
81
  </testcase>
48
82
  <testcase classname="BaseCrud edit Should be a POST request" name="BaseCrud edit Should be a POST request" time="0.001">
49
83
  </testcase>
50
84
  <testcase classname="BaseCrud edit Should use the given endpoint" name="BaseCrud edit Should use the given endpoint" time="0.001">
51
85
  </testcase>
52
- <testcase classname="BaseCrud edit Should contain the request body" name="BaseCrud edit Should contain the request body" time="0.028">
86
+ <testcase classname="BaseCrud edit Should contain the request body" name="BaseCrud edit Should contain the request body" time="0">
53
87
  </testcase>
54
- <testcase classname="BaseCrud delete Should be a DELETE request" name="BaseCrud delete Should be a DELETE request" time="0.002">
88
+ <testcase classname="BaseCrud delete Should be a DELETE request" name="BaseCrud delete Should be a DELETE request" time="0">
55
89
  </testcase>
56
90
  <testcase classname="BaseCrud delete Should use the given endpoint" name="BaseCrud delete Should use the given endpoint" time="0.001">
57
91
  </testcase>
58
- <testcase classname="BaseCrud delete Should return the success value" name="BaseCrud delete Should return the success value" time="0.001">
92
+ <testcase classname="BaseCrud delete Should return the success value" name="BaseCrud delete Should return the success value" time="0">
59
93
  </testcase>
60
- <testcase classname="BaseCrud request Should create the request options" name="BaseCrud request Should create the request options" time="0.002">
94
+ <testcase classname="BaseCrud request Should create the request options" name="BaseCrud request Should create the request options" time="0.001">
61
95
  </testcase>
62
96
  <testcase classname="BaseCrud request Should add a data param if present" name="BaseCrud request Should add a data param if present" time="0.001">
63
97
  </testcase>
64
- <testcase classname="BaseCrud request Should add options as GET params" name="BaseCrud request Should add options as GET params" time="0.004">
98
+ <testcase classname="BaseCrud request Should add options as GET params" name="BaseCrud request Should add options as GET params" time="0.001">
65
99
  </testcase>
66
- <testcase classname="BaseCrud request Should normalize an error" name="BaseCrud request Should normalize an error" time="0.006">
100
+ <testcase classname="BaseCrud request Should normalize an error" name="BaseCrud request Should normalize an error" time="0.003">
67
101
  </testcase>
68
- <testcase classname="BaseCrud optionsToQuery Should return an empty string" name="BaseCrud optionsToQuery Should return an empty string" time="0.001">
102
+ <testcase classname="BaseCrud optionsToQuery Should return an empty string" name="BaseCrud optionsToQuery Should return an empty string" time="0">
69
103
  </testcase>
70
104
  <testcase classname="BaseCrud optionsToQuery Should return an GET parameter string" name="BaseCrud optionsToQuery Should return an GET parameter string" time="0.001">
71
105
  </testcase>
72
106
  <testcase classname="BaseCrud optionsToQuery Should url encode the parameters" name="BaseCrud optionsToQuery Should url encode the parameters" time="0.001">
73
107
  </testcase>
74
108
  </testsuite>
75
- <testsuite name="ProjectStatuses" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.473" tests="1">
76
- <testcase classname="ProjectStatuses Should use init the base correctly" name="ProjectStatuses Should use init the base correctly" time="0.016">
109
+ <testsuite name="ContactSectors" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:44" time="0.374" tests="1">
110
+ <testcase classname="ContactSectors Should use init the base correctly" name="ContactSectors Should use init the base correctly" time="0.001">
77
111
  </testcase>
78
112
  </testsuite>
79
- <testsuite name="Payments" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.618" tests="1">
80
- <testcase classname="Payments Should use init the base correctly" name="Payments Should use init the base correctly" time="0.011">
113
+ <testsuite name="BillsV4" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.389" tests="11">
114
+ <testcase classname="BillsV4 Should use init the base correctly" name="BillsV4 Should use init the base correctly" time="0.012">
81
115
  </testcase>
82
- </testsuite>
83
- <testsuite name="Users" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.634" tests="1">
84
- <testcase classname="Users Should use init the base correctly" name="Users Should use init the base correctly" time="0.01">
116
+ <testcase classname="BillsV4 list Should call request with GET" name="BillsV4 list Should call request with GET" time="0.005">
85
117
  </testcase>
86
- </testsuite>
87
- <testsuite name="ProjectTypes" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.67" tests="1">
88
- <testcase classname="ProjectTypes Should use init the base correctly" name="ProjectTypes Should use init the base correctly" time="0.011">
118
+ <testcase classname="BillsV4 list Should pass options to request" name="BillsV4 list Should pass options to request" time="0.002">
119
+ </testcase>
120
+ <testcase classname="BillsV4 list should list bills with options" name="BillsV4 list should list bills with options" time="0.009">
121
+ </testcase>
122
+ <testcase classname="BillsV4 updateStatus Should call request with PUT and correct path" name="BillsV4 updateStatus Should call request with PUT and correct path" time="0.006">
123
+ </testcase>
124
+ <testcase classname="BillsV4 executeAction Should call request with POST and correct path and data" name="BillsV4 executeAction Should call request with POST and correct path and data" time="0.002">
125
+ </testcase>
126
+ <testcase classname="BillsV4 validateDocumentNumber Should call request with GET and correct path and data" name="BillsV4 validateDocumentNumber Should call request with GET and correct path and data" time="0.002">
127
+ </testcase>
128
+ <testcase classname="BillsV4 search Should throw not implemented error" name="BillsV4 search Should throw not implemented error" time="0.046">
129
+ </testcase>
130
+ <testcase classname="BillsV4 updateStatus Should call request with PUT and correct path" name="BillsV4 updateStatus Should call request with PUT and correct path" time="0.014">
131
+ </testcase>
132
+ <testcase classname="BillsV4 executeAction Should call request with POST and correct path and data" name="BillsV4 executeAction Should call request with POST and correct path and data" time="0.001">
133
+ </testcase>
134
+ <testcase classname="BillsV4 validateDocumentNumber Should call request with GET and correct path and query" name="BillsV4 validateDocumentNumber Should call request with GET and correct path and query" time="0.007">
89
135
  </testcase>
90
136
  </testsuite>
91
- <testsuite name="TimetrackingStatuses" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.711" tests="1">
92
- <testcase classname="TimetrackingStatuses Should use init the base correctly" name="TimetrackingStatuses Should use init the base correctly" time="0.011">
137
+ <testsuite name="BusinessActivities" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.412" tests="1">
138
+ <testcase classname="BusinessActivities Should use init the base correctly" name="BusinessActivities Should use init the base correctly" time="0.015">
93
139
  </testcase>
94
140
  </testsuite>
95
- <testsuite name="Bills" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.736" tests="11">
141
+ <testsuite name="Bills" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.402" tests="11">
96
142
  <testcase classname="Bills Should use init the base correctly" name="Bills Should use init the base correctly" time="0.013">
97
143
  </testcase>
98
144
  <testcase classname="Bills issue request" name="Bills issue request" time="0.002">
99
145
  </testcase>
100
146
  <testcase classname="Bills revertIssue request" name="Bills revertIssue request" time="0.002">
101
147
  </testcase>
102
- <testcase classname="Bills list Should call base list" name="Bills list Should call base list" time="0.002">
148
+ <testcase classname="Bills list Should call base list" name="Bills list Should call base list" time="0.009">
103
149
  </testcase>
104
- <testcase classname="Bills list Should pass options to base list" name="Bills list Should pass options to base list" time="0.002">
150
+ <testcase classname="Bills list Should pass options to base list" name="Bills list Should pass options to base list" time="0.001">
105
151
  </testcase>
106
- <testcase classname="Bills showPayment Should create a new Payment object" name="Bills showPayment Should create a new Payment object" time="0.003">
152
+ <testcase classname="Bills showPayment Should create a new Payment object" name="Bills showPayment Should create a new Payment object" time="0.006">
107
153
  </testcase>
108
- <testcase classname="Bills showPayment Should pass the options down" name="Bills showPayment Should pass the options down" time="0.004">
154
+ <testcase classname="Bills showPayment Should pass the options down" name="Bills showPayment Should pass the options down" time="0.007">
109
155
  </testcase>
110
- <testcase classname="Bills createPayment Should create a new Payment object" name="Bills createPayment Should create a new Payment object" time="0.003">
156
+ <testcase classname="Bills createPayment Should create a new Payment object" name="Bills createPayment Should create a new Payment object" time="0.009">
111
157
  </testcase>
112
- <testcase classname="Bills createPayment Should call create" name="Bills createPayment Should call create" time="0.01">
158
+ <testcase classname="Bills createPayment Should call create" name="Bills createPayment Should call create" time="0.014">
113
159
  </testcase>
114
- <testcase classname="Bills deletePayment Should create a new Payment object" name="Bills deletePayment Should create a new Payment object" time="0.002">
160
+ <testcase classname="Bills deletePayment Should create a new Payment object" name="Bills deletePayment Should create a new Payment object" time="0.009">
115
161
  </testcase>
116
- <testcase classname="Bills deletePayment Should call delete" name="Bills deletePayment Should call delete" time="0.002">
162
+ <testcase classname="Bills deletePayment Should call delete" name="Bills deletePayment Should call delete" time="0.01">
117
163
  </testcase>
118
164
  </testsuite>
119
- <testsuite name="Invoices" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.745" tests="1">
120
- <testcase classname="Invoices Should use init the base correctly" name="Invoices Should use init the base correctly" time="0.006">
165
+ <testsuite name="ProjectStatuses" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.496" tests="1">
166
+ <testcase classname="ProjectStatuses Should use init the base correctly" name="ProjectStatuses Should use init the base correctly" time="0.01">
121
167
  </testcase>
122
168
  </testsuite>
123
- <testsuite name="Orders" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.746" tests="1">
124
- <testcase classname="Orders Should use init the base correctly" name="Orders Should use init the base correctly" time="0.009">
169
+ <testsuite name="ProjectTypes" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.669" tests="1">
170
+ <testcase classname="ProjectTypes Should use init the base correctly" name="ProjectTypes Should use init the base correctly" time="0.008">
125
171
  </testcase>
126
172
  </testsuite>
127
- <testsuite name="Projects" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.76" tests="1">
128
- <testcase classname="Projects Should use init the base correctly" name="Projects Should use init the base correctly" time="0.011">
173
+ <testsuite name="BankAccounts" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.681" tests="9">
174
+ <testcase classname="BankAccounts Should use init the base correctly" name="BankAccounts Should use init the base correctly" time="0.009">
175
+ </testcase>
176
+ <testcase classname="BankAccounts list Should call request with GET" name="BankAccounts list Should call request with GET" time="0.003">
177
+ </testcase>
178
+ <testcase classname="BankAccounts list Should pass options to request" name="BankAccounts list Should pass options to request" time="0">
179
+ </testcase>
180
+ <testcase classname="BankAccounts show Should call request with GET and correct path" name="BankAccounts show Should call request with GET and correct path" time="0.001">
181
+ </testcase>
182
+ <testcase classname="BankAccounts Unsupported methods search should throw error" name="BankAccounts Unsupported methods search should throw error" time="0.01">
183
+ </testcase>
184
+ <testcase classname="BankAccounts Unsupported methods create should throw error" name="BankAccounts Unsupported methods create should throw error" time="0.001">
185
+ </testcase>
186
+ <testcase classname="BankAccounts Unsupported methods overwrite should throw error" name="BankAccounts Unsupported methods overwrite should throw error" time="0.001">
187
+ </testcase>
188
+ <testcase classname="BankAccounts Unsupported methods edit should throw error" name="BankAccounts Unsupported methods edit should throw error" time="0.002">
189
+ </testcase>
190
+ <testcase classname="BankAccounts Unsupported methods delete should throw error" name="BankAccounts Unsupported methods delete should throw error" time="0.001">
129
191
  </testcase>
130
192
  </testsuite>
131
- <testsuite name="Timetrackings" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.783" tests="1">
132
- <testcase classname="Timetrackings Should use init the base correctly" name="Timetrackings Should use init the base correctly" time="0.005">
193
+ <testsuite name="ContactGroups" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.798" tests="1">
194
+ <testcase classname="ContactGroups Should use init the base correctly" name="ContactGroups Should use init the base correctly" time="0.008">
133
195
  </testcase>
134
196
  </testsuite>
135
- <testsuite name="ContactTypes" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.745" tests="1">
197
+ <testsuite name="ContactTypes" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.809" tests="1">
136
198
  <testcase classname="ContactTypes Should use init the base correctly" name="ContactTypes Should use init the base correctly" time="0.008">
137
199
  </testcase>
138
200
  </testsuite>
139
- <testsuite name="ContactSectors" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.744" tests="1">
140
- <testcase classname="ContactSectors Should use init the base correctly" name="ContactSectors Should use init the base correctly" time="0.008">
201
+ <testsuite name="Orders" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.911" tests="1">
202
+ <testcase classname="Orders Should use init the base correctly" name="Orders Should use init the base correctly" time="0.008">
141
203
  </testcase>
142
204
  </testsuite>
143
- <testsuite name="ContactGroups" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.815" tests="1">
144
- <testcase classname="ContactGroups Should use init the base correctly" name="ContactGroups Should use init the base correctly" time="0.01">
205
+ <testsuite name="Items" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.932" tests="1">
206
+ <testcase classname="Items Should use init the base correctly" name="Items Should use init the base correctly" time="0.012">
145
207
  </testcase>
146
208
  </testsuite>
147
- <testsuite name="Items" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.858" tests="1">
148
- <testcase classname="Items Should use init the base correctly" name="Items Should use init the base correctly" time="0.006">
209
+ <testsuite name="Payments" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="4.961" tests="1">
210
+ <testcase classname="Payments Should use init the base correctly" name="Payments Should use init the base correctly" time="0.007">
149
211
  </testcase>
150
212
  </testsuite>
151
- <testsuite name="BusinessActivities" errors="0" failures="0" skipped="0" timestamp="2025-11-25T13:59:43" time="4.847" tests="1">
152
- <testcase classname="BusinessActivities Should use init the base correctly" name="BusinessActivities Should use init the base correctly" time="0.005">
213
+ <testsuite name="TimetrackingStatuses" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:40" time="5.09" tests="1">
214
+ <testcase classname="TimetrackingStatuses Should use init the base correctly" name="TimetrackingStatuses Should use init the base correctly" time="0.005">
215
+ </testcase>
216
+ </testsuite>
217
+ <testsuite name="OutgoingPayments" errors="0" failures="0" skipped="0" timestamp="2025-12-29T17:39:44" time="1.283" tests="10">
218
+ <testcase classname="OutgoingPayments Should use init the base correctly" name="OutgoingPayments Should use init the base correctly" time="0.001">
219
+ </testcase>
220
+ <testcase classname="OutgoingPayments list Should call request with GET" name="OutgoingPayments list Should call request with GET" time="0">
221
+ </testcase>
222
+ <testcase classname="OutgoingPayments search Should throw not implemented error" name="OutgoingPayments search Should throw not implemented error" time="0.006">
223
+ </testcase>
224
+ <testcase classname="OutgoingPayments show Should call request with GET and correct path" name="OutgoingPayments show Should call request with GET and correct path" time="0.001">
225
+ </testcase>
226
+ <testcase classname="OutgoingPayments create Should call request with POST and correct data" name="OutgoingPayments create Should call request with POST and correct data" time="0">
227
+ </testcase>
228
+ <testcase classname="OutgoingPayments update Should call request with PUT and correct data" name="OutgoingPayments update Should call request with PUT and correct data" time="0.001">
229
+ </testcase>
230
+ <testcase classname="OutgoingPayments delete Should call request with DELETE and correct path" name="OutgoingPayments delete Should call request with DELETE and correct path" time="0">
231
+ </testcase>
232
+ <testcase classname="OutgoingPayments cancel Should call request with POST and correct path" name="OutgoingPayments cancel Should call request with POST and correct path" time="0">
233
+ </testcase>
234
+ <testcase classname="OutgoingPayments overwrite Should throw not implemented error" name="OutgoingPayments overwrite Should throw not implemented error" time="0.001">
235
+ </testcase>
236
+ <testcase classname="OutgoingPayments edit Should throw not implemented error" name="OutgoingPayments edit Should throw not implemented error" time="0">
153
237
  </testcase>
154
238
  </testsuite>
155
239
  </testsuites>
package/lib/index.d.ts CHANGED
@@ -15,6 +15,10 @@ import TimetrackingStatuses from "./resources/TimetrackingStatuses";
15
15
  import Users from "./resources/Users";
16
16
  import Items from "./resources/Items";
17
17
  import Invoices from "./resources/Invoices";
18
+ import Currencies from "./resources/Currencies";
19
+ import BillsV4 from "./resources/BillsV4";
20
+ import OutgoingPayments from "./resources/OutgoingPayments";
21
+ import BankAccounts from "./resources/BankAccounts";
18
22
  export * from "./interfaces/BillsStatic";
19
23
  export * from "./interfaces/BusinessActivitiesStatic";
20
24
  export * from "./interfaces/CalendarStatic";
@@ -36,6 +40,10 @@ export * from "./interfaces/UsersStatic";
36
40
  export * from "./interfaces/ItemsStatic";
37
41
  export * from "./interfaces/InvoicesStatic";
38
42
  export * from "./interfaces/PositionStatic";
43
+ export * from "./interfaces/CurrenciesStatic";
44
+ export * from "./interfaces/BillsV4Static";
45
+ export * from "./interfaces/OutgoingPaymentsStatic";
46
+ export * from "./interfaces/BankAccountsStatic";
39
47
  export default class Bexio {
40
48
  private token;
41
49
  businessActivities: BusinessActivities;
@@ -46,6 +54,11 @@ export default class Bexio {
46
54
  contactRelations: ContactRelations;
47
55
  orders: Orders;
48
56
  expenses: Expenses;
57
+ billsV4: BillsV4;
58
+ outgoingPayments: OutgoingPayments;
59
+ /**
60
+ * @deprecated Use BillsV4 instead
61
+ */
49
62
  bills: Bills;
50
63
  projects: Projects;
51
64
  projectStatuses: ProjectStatuses;
@@ -55,5 +68,7 @@ export default class Bexio {
55
68
  users: Users;
56
69
  items: Items;
57
70
  invoices: Invoices;
71
+ currencies: Currencies;
72
+ bankAccounts: BankAccounts;
58
73
  constructor(token: string);
59
74
  }
package/lib/index.js CHANGED
@@ -34,6 +34,10 @@ const TimetrackingStatuses_1 = __importDefault(require("./resources/Timetracking
34
34
  const Users_1 = __importDefault(require("./resources/Users"));
35
35
  const Items_1 = __importDefault(require("./resources/Items"));
36
36
  const Invoices_1 = __importDefault(require("./resources/Invoices"));
37
+ const Currencies_1 = __importDefault(require("./resources/Currencies"));
38
+ const BillsV4_1 = __importDefault(require("./resources/BillsV4"));
39
+ const OutgoingPayments_1 = __importDefault(require("./resources/OutgoingPayments"));
40
+ const BankAccounts_1 = __importDefault(require("./resources/BankAccounts"));
37
41
  __exportStar(require("./interfaces/BillsStatic"), exports);
38
42
  __exportStar(require("./interfaces/BusinessActivitiesStatic"), exports);
39
43
  __exportStar(require("./interfaces/CalendarStatic"), exports);
@@ -55,6 +59,10 @@ __exportStar(require("./interfaces/UsersStatic"), exports);
55
59
  __exportStar(require("./interfaces/ItemsStatic"), exports);
56
60
  __exportStar(require("./interfaces/InvoicesStatic"), exports);
57
61
  __exportStar(require("./interfaces/PositionStatic"), exports);
62
+ __exportStar(require("./interfaces/CurrenciesStatic"), exports);
63
+ __exportStar(require("./interfaces/BillsV4Static"), exports);
64
+ __exportStar(require("./interfaces/OutgoingPaymentsStatic"), exports);
65
+ __exportStar(require("./interfaces/BankAccountsStatic"), exports);
58
66
  class Bexio {
59
67
  constructor(token) {
60
68
  this.token = token;
@@ -70,12 +78,16 @@ class Bexio {
70
78
  this.projectStatuses = new ProjectStatuses_1.default(this.token);
71
79
  this.projectTypes = new ProjectTypes_1.default(this.token);
72
80
  this.expenses = new Expenses_1.default(this.token);
81
+ this.billsV4 = new BillsV4_1.default(this.token);
82
+ this.outgoingPayments = new OutgoingPayments_1.default(this.token);
73
83
  this.bills = new Bills_1.default(this.token);
74
84
  this.timetrackings = new Timetrackings_1.default(this.token);
75
85
  this.timetrackingStatuses = new TimetrackingStatuses_1.default(this.token);
76
86
  this.users = new Users_1.default(this.token);
77
87
  this.items = new Items_1.default(this.token);
78
88
  this.invoices = new Invoices_1.default(this.token);
89
+ this.currencies = new Currencies_1.default(this.token);
90
+ this.bankAccounts = new BankAccounts_1.default(this.token);
79
91
  }
80
92
  }
81
93
  exports.default = Bexio;
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,wFAAgE;AAChE,oEAA4C;AAC5C,4EAAoD;AACpD,gFAAwD;AACxD,8EAAsD;AACtD,oFAA4D;AAC5D,oEAA4C;AAC5C,8DAAsC;AACtC,gEAAwC;AACxC,oEAA4C;AAC5C,kFAA0D;AAC1D,4EAAoD;AACpD,8EAAsD;AACtD,4FAAoE;AACpE,8DAAsC;AACtC,8DAAsC;AACtC,oEAA4C;AAE5C,2DAAyC;AACzC,wEAAsD;AACtD,8DAA4C;AAC5C,mEAAiD;AACjD,sEAAoD;AACpD,oEAAkD;AAClD,kEAAgD;AAChD,8DAA4C;AAC5C,8DAA4C;AAC5C,2DAAyC;AACzC,4DAA0C;AAC1C,8DAA4C;AAC5C,qEAAmD;AACnD,kEAAgD;AAChD,0EAAwD;AACxD,mEAAiD;AACjD,0EAAwD;AACxD,2DAAyC;AACzC,2DAAyC;AACzC,8DAA4C;AAC5C,8DAA4C;AAE5C,MAAqB,KAAK;IAqCxB,YAAY,KAAa;QACvB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QAEnB,iBAAiB;QACjB,IAAI,CAAC,kBAAkB,GAAG,IAAI,4BAAkB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC7D,IAAI,CAAC,QAAQ,GAAG,IAAI,kBAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzC,IAAI,CAAC,YAAY,GAAG,IAAI,sBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACjD,IAAI,CAAC,cAAc,GAAG,IAAI,wBAAc,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACrD,IAAI,CAAC,aAAa,GAAG,IAAI,uBAAa,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACnD,IAAI,CAAC,gBAAgB,GAAG,IAAI,0BAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzD,IAAI,CAAC,MAAM,GAAG,IAAI,gBAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACrC,IAAI,CAAC,QAAQ,GAAG,IAAI,kBAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzC,IAAI,CAAC,eAAe,GAAG,IAAI,yBAAe,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACvD,IAAI,CAAC,YAAY,GAAG,IAAI,sBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACjD,IAAI,CAAC,QAAQ,GAAG,IAAI,kBAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzC,IAAI,CAAC,KAAK,GAAG,IAAI,eAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACnC,IAAI,CAAC,aAAa,GAAG,IAAI,uBAAa,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACnD,IAAI,CAAC,oBAAoB,GAAG,IAAI,8BAAoB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACjE,IAAI,CAAC,KAAK,GAAG,IAAI,eAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACnC,IAAI,CAAC,KAAK,GAAG,IAAI,eAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,GAAG,IAAI,kBAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IAC3C,CAAC;CACF;AA3DD,wBA2DC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,25 @@
1
+ export declare namespace BankAccountsStatic {
2
+ interface BankAccount {
3
+ id: number;
4
+ name: string;
5
+ owner: string;
6
+ owner_address: string;
7
+ owner_house_number: number | string;
8
+ owner_zip: number | string;
9
+ owner_city: string;
10
+ owner_country_code: string;
11
+ bc_nr: number | string;
12
+ bank_name: string;
13
+ bank_nr: string;
14
+ bank_account_nr: string;
15
+ iban_nr: string;
16
+ currency_id: number;
17
+ account_id: number;
18
+ remarks: string;
19
+ invoice_mode: string;
20
+ qr_invoice_iban: string;
21
+ type: string;
22
+ }
23
+ interface BankAccountFull extends BankAccount {
24
+ }
25
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=BankAccountsStatic.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BankAccountsStatic.js","sourceRoot":"","sources":["../../src/interfaces/BankAccountsStatic.ts"],"names":[],"mappings":""}
@@ -5,7 +5,7 @@ export declare namespace BaseStatic {
5
5
  mime: string;
6
6
  content: string;
7
7
  }
8
- type SearchCriteria = "=" | "!=" | ">" | "<" | ">=" | "<=" | "equal" | "not_equal" | "greater_than" | "less_than" | "greater_equal" | "less_equal" | "like" | "not_like" | "is_null" | "not_null";
8
+ type SearchCriteria = "=" | "!=" | ">" | "<" | ">=" | "<=" | "equal" | "not_equal" | "greater_than" | "less_than" | "greater_equal" | "less_equal" | "like" | "not_like" | "is_null" | "not_null" | "in" | "not_in";
9
9
  interface SearchParameter<T> {
10
10
  field: T;
11
11
  value: any;