taxtank-core 0.30.19 → 0.30.20

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 (674) hide show
  1. package/esm2020/lib/db/Enums/chart-accounts/chart-accounts-category.enum.mjs +3 -1
  2. package/esm2020/lib/db/Enums/chart-accounts/chart-accounts-list.enum.mjs +3 -1
  3. package/esm2020/lib/db/Enums/holding/holding-type-category.enum.mjs +10 -0
  4. package/esm2020/lib/db/Enums/subscription/service-product-id.enum.mjs +2 -1
  5. package/esm2020/lib/db/Enums/tank-type.enum.mjs +2 -1
  6. package/esm2020/lib/db/Enums/user-roles.enum.mjs +2 -1
  7. package/esm2020/lib/db/Models/holding/holding-sale.mjs +3 -0
  8. package/esm2020/lib/db/Models/holding/holding-type.mjs +3 -0
  9. package/esm2020/lib/db/Models/holding/holding.mjs +3 -0
  10. package/esm2020/lib/db/Models/holding/index.mjs +4 -0
  11. package/esm2020/lib/db/Models/index.mjs +2 -1
  12. package/esm2020/lib/db/Models/transaction/transaction-base.mjs +14 -1
  13. package/esm2020/lib/forms/client/client-income-types.form.mjs +2 -2
  14. package/esm2020/lib/forms/report/my-tax/my-tax-income-statements.form.mjs +17 -1
  15. package/esm2020/lib/models/account-setup/account-setup-item.mjs +2 -2
  16. package/esm2020/lib/models/account-setup/account-setup-items.const.mjs +14 -4
  17. package/esm2020/lib/models/account-setup/account-setup-items.enum.mjs +2 -1
  18. package/esm2020/lib/models/chart-accounts/chart-accounts-categories.const.mjs +16 -2
  19. package/esm2020/lib/models/client/client-income-types.mjs +1 -15
  20. package/esm2020/lib/models/holding/holding-sale.mjs +10 -0
  21. package/esm2020/lib/models/holding/holding-type.mjs +10 -0
  22. package/esm2020/lib/models/holding/holding.mjs +27 -0
  23. package/esm2020/lib/models/holding/index.mjs +4 -0
  24. package/esm2020/lib/models/index.mjs +2 -1
  25. package/esm2020/lib/models/report/my-tax/my-tax-income-statements/my-tax-income-statements.mjs +10 -1
  26. package/esm2020/lib/models/service-subscription/service-product.mjs +4 -1
  27. package/esm2020/lib/models/transaction/transaction.mjs +5 -2
  28. package/esm2020/lib/models/user/user-roles.const.mjs +3 -1
  29. package/esm2020/lib/services/account-setup/account-setup.service.mjs +19 -14
  30. package/esm2020/lib/services/http/holding/holding-sale.service.mjs +27 -0
  31. package/esm2020/lib/services/http/holding/holding-type.service.mjs +27 -0
  32. package/esm2020/lib/services/http/holding/holding.service.mjs +27 -0
  33. package/esm2020/lib/services/http/holding/index.mjs +4 -0
  34. package/esm2020/lib/services/http/index.mjs +2 -1
  35. package/esm2020/lib/services/http/rest/rest.service.mjs +1 -1
  36. package/fesm2015/taxtank-core.mjs +209 -33
  37. package/fesm2015/taxtank-core.mjs.map +1 -1
  38. package/fesm2020/taxtank-core.mjs +208 -33
  39. package/fesm2020/taxtank-core.mjs.map +1 -1
  40. package/lib/db/Enums/chart-accounts/chart-accounts-category.enum.d.ts +3 -1
  41. package/lib/db/Enums/chart-accounts/chart-accounts-list.enum.d.ts +3 -1
  42. package/lib/db/Enums/holding/holding-type-category.enum.d.ts +8 -0
  43. package/lib/db/Enums/subscription/service-product-id.enum.d.ts +2 -1
  44. package/lib/db/Enums/tank-type.enum.d.ts +2 -1
  45. package/lib/db/Enums/user-roles.enum.d.ts +1 -0
  46. package/lib/db/Models/holding/holding-sale.d.ts +12 -0
  47. package/lib/db/Models/holding/holding-type.d.ts +12 -0
  48. package/lib/db/Models/holding/holding.d.ts +16 -0
  49. package/lib/db/Models/holding/index.d.ts +3 -0
  50. package/lib/db/Models/index.d.ts +1 -0
  51. package/lib/db/Models/transaction/transaction-base.d.ts +1 -0
  52. package/lib/forms/report/my-tax/my-tax-income-statements.form.d.ts +2 -2
  53. package/lib/models/account-setup/account-setup-item.d.ts +1 -1
  54. package/lib/models/account-setup/account-setup-items.enum.d.ts +2 -1
  55. package/lib/models/client/client-income-types.d.ts +0 -9
  56. package/lib/models/holding/holding-sale.d.ts +12 -0
  57. package/lib/models/holding/holding-type.d.ts +12 -0
  58. package/lib/models/holding/holding.d.ts +17 -0
  59. package/lib/models/holding/index.d.ts +3 -0
  60. package/lib/models/index.d.ts +1 -0
  61. package/lib/models/report/my-tax/my-tax-income-statements/my-tax-income-statements.d.ts +4 -0
  62. package/lib/models/service-subscription/service-product.d.ts +1 -0
  63. package/lib/services/account-setup/account-setup.service.d.ts +3 -2
  64. package/lib/services/http/holding/holding-sale.service.d.ts +17 -0
  65. package/lib/services/http/holding/holding-type.service.d.ts +17 -0
  66. package/lib/services/http/holding/holding.service.d.ts +17 -0
  67. package/lib/services/http/holding/index.d.ts +3 -0
  68. package/lib/services/http/index.d.ts +1 -0
  69. package/lib/services/http/rest/rest.service.d.ts +1 -1
  70. package/package.json +1 -1
  71. package/lib/collections/account-setup-item.collection.d.ts.map +0 -1
  72. package/lib/collections/allocation-group.collection.d.ts.map +0 -1
  73. package/lib/collections/allocation-rule.collection.d.ts.map +0 -1
  74. package/lib/collections/bank-account.collection.d.ts.map +0 -1
  75. package/lib/collections/bank-transaction.collection.d.ts.map +0 -1
  76. package/lib/collections/chart-accounts.collection.d.ts.map +0 -1
  77. package/lib/collections/client-invite.collection.d.ts.map +0 -1
  78. package/lib/collections/client-movement.collection.d.ts.map +0 -1
  79. package/lib/collections/client-portfolio-report.collection.d.ts.map +0 -1
  80. package/lib/collections/client.collection.d.ts.map +0 -1
  81. package/lib/collections/depreciation-forecast.collection.d.ts.map +0 -1
  82. package/lib/collections/depreciation.collection.d.ts.map +0 -1
  83. package/lib/collections/employee.collection.d.ts.map +0 -1
  84. package/lib/collections/exportable.collection.d.ts.map +0 -1
  85. package/lib/collections/income-source.collection.d.ts.map +0 -1
  86. package/lib/collections/index.d.ts.map +0 -1
  87. package/lib/collections/loan/index.d.ts.map +0 -1
  88. package/lib/collections/loan/loan-payment.collection.d.ts.map +0 -1
  89. package/lib/collections/loan/loan.collection.d.ts.map +0 -1
  90. package/lib/collections/property/index.d.ts.map +0 -1
  91. package/lib/collections/property/property-category-movement.collection.d.ts.map +0 -1
  92. package/lib/collections/property/property-sale/index.d.ts.map +0 -1
  93. package/lib/collections/property/property-sale/property-sale-tax-exemption-meta-field.collection.d.ts.map +0 -1
  94. package/lib/collections/property/property-sale/property-sale.collection.d.ts.map +0 -1
  95. package/lib/collections/property/property-share.collection.d.ts.map +0 -1
  96. package/lib/collections/property/property.collection.d.ts.map +0 -1
  97. package/lib/collections/report/depreciation/depreciation-lvp-report-item.collection.d.ts.map +0 -1
  98. package/lib/collections/report/depreciation/depreciation-report-item.collection.d.ts.map +0 -1
  99. package/lib/collections/report/index.d.ts.map +0 -1
  100. package/lib/collections/report/property/property-report-item-depreciation.collection.d.ts.map +0 -1
  101. package/lib/collections/report/property/property-report-item-transaction.collection.d.ts.map +0 -1
  102. package/lib/collections/report/property/property-report-item.collection.d.ts.map +0 -1
  103. package/lib/collections/report/vehicle-expense/vehicle-expense.collection.d.ts.map +0 -1
  104. package/lib/collections/sole/index.d.ts.map +0 -1
  105. package/lib/collections/sole/sole-business-losses.collection.d.ts.map +0 -1
  106. package/lib/collections/sole/sole-invoice-item.collection.d.ts.map +0 -1
  107. package/lib/collections/sole/sole-invoice.collection.d.ts.map +0 -1
  108. package/lib/collections/subscription/index.d.ts.map +0 -1
  109. package/lib/collections/subscription/service-price.collection.d.ts.map +0 -1
  110. package/lib/collections/subscription/service-product.collection.d.ts.map +0 -1
  111. package/lib/collections/subscription/service-subscription.collection.d.ts.map +0 -1
  112. package/lib/collections/subscription/subscription-item.collection.d.ts.map +0 -1
  113. package/lib/collections/tax-review.collection.d.ts.map +0 -1
  114. package/lib/collections/tax-summary/index.d.ts.map +0 -1
  115. package/lib/collections/tax-summary/report-item.collection.d.ts.map +0 -1
  116. package/lib/collections/tax-summary/tax-return-categories.const.d.ts.map +0 -1
  117. package/lib/collections/transaction/index.d.ts.map +0 -1
  118. package/lib/collections/transaction/transaction-allocation.collection.d.ts.map +0 -1
  119. package/lib/collections/transaction/transaction.collection.d.ts.map +0 -1
  120. package/lib/collections/user-event-setting.collection.d.ts.map +0 -1
  121. package/lib/collections/user-event-type-collection.d.ts.map +0 -1
  122. package/lib/collections/vehicle/index.d.ts.map +0 -1
  123. package/lib/collections/vehicle/vehicle-claim.collection.d.ts.map +0 -1
  124. package/lib/collections/vehicle/vehicle-logbook.collection.d.ts.map +0 -1
  125. package/lib/db/Enums/bank-popular.enum.d.ts.map +0 -1
  126. package/lib/db/Enums/depreciation-write-off-amount.enum.d.ts.map +0 -1
  127. package/lib/db/Enums/income-source-type-list-other.enum.d.ts.map +0 -1
  128. package/lib/db/Enums/income-source-type-list-sole.enum.d.ts.map +0 -1
  129. package/lib/db/Enums/income-source-type-list-work.enum.d.ts.map +0 -1
  130. package/lib/db/Enums/invite-status.enum.d.ts.map +0 -1
  131. package/lib/db/Enums/loan-bank-type.enum.d.ts.map +0 -1
  132. package/lib/db/Enums/loan-frequency.enum.d.ts.map +0 -1
  133. package/lib/db/Enums/property/property-category-list.enum.d.ts.map +0 -1
  134. package/lib/db/Enums/service-notification-status.enum.d.ts.map +0 -1
  135. package/lib/db/Enums/service-notification-type.enum.d.ts.map +0 -1
  136. package/lib/db/Enums/subscription/service-payment-method-card-brand.enum.d.ts.map +0 -1
  137. package/lib/db/Enums/subscription/service-payment-method-type.enum.d.ts.map +0 -1
  138. package/lib/db/Enums/tax-return-category-list.enum.d.ts.map +0 -1
  139. package/lib/db/Enums/tax-return-category-section.enum.d.ts.map +0 -1
  140. package/lib/db/Enums/tax-summary-list.enum.d.ts.map +0 -1
  141. package/lib/db/Enums/tax-summary-tax-summary.enum.d.ts.map +0 -1
  142. package/lib/db/Enums/ticket-types.enum.d.ts.map +0 -1
  143. package/lib/db/Enums/user-event-type-client-type.enum.d.ts.map +0 -1
  144. package/lib/db/Enums/user-event-type-employee-type.enum.d.ts.map +0 -1
  145. package/lib/db/Enums/user-event-type-type.enum.d.ts.map +0 -1
  146. package/lib/db/Enums/user-event-type-user-type.enum.d.ts.map +0 -1
  147. package/lib/db/Enums/user-medicare-exemption.enum.d.ts.map +0 -1
  148. package/lib/db/Enums/user-work-depreciation-calculation.enum.d.ts.map +0 -1
  149. package/lib/db/Enums/user-working-holiday-maker.enum.d.ts.map +0 -1
  150. package/lib/db/Models/bank/bank-connection.d.ts.map +0 -1
  151. package/lib/db/Models/bank/basiq-job.d.ts.map +0 -1
  152. package/lib/db/Models/observable-model.d.ts.map +0 -1
  153. package/lib/db/Models/property/property-category.d.ts.map +0 -1
  154. package/lib/db/Models/property/property.d.ts.map +0 -1
  155. package/lib/db/Models/subscription/service-payment-method.d.ts.map +0 -1
  156. package/lib/db/Models/transaction/allocation-rule-condition.d.ts.map +0 -1
  157. package/lib/db/Models/transaction/allocation-rule-transaction-meta-field.d.ts.map +0 -1
  158. package/lib/db/Models/transaction/allocation-rule-transaction.d.ts.map +0 -1
  159. package/lib/db/Models/transaction/allocation-rule.d.ts.map +0 -1
  160. package/lib/db/Models/user/user.d.ts.map +0 -1
  161. package/lib/db-static/chart-accounts/chart-accounts-values.d.ts.map +0 -1
  162. package/lib/forms/abstract.form.d.ts.map +0 -1
  163. package/lib/forms/address/address.form.d.ts.map +0 -1
  164. package/lib/forms/address/index.d.ts.map +0 -1
  165. package/lib/forms/bank/bank-account/bank-account-add-manual.form.d.ts.map +0 -1
  166. package/lib/forms/bank/bank-account/bank-account-allocation.form.d.ts.map +0 -1
  167. package/lib/forms/bank/bank-account/bank-account-import.form.d.ts.map +0 -1
  168. package/lib/forms/bank/bank-account/bank-account-properties.form.d.ts.map +0 -1
  169. package/lib/forms/bank/bank-account/bank-accounts-import.form.d.ts.map +0 -1
  170. package/lib/forms/bank/bank-login.form.d.ts.map +0 -1
  171. package/lib/forms/client/client-income-types.form.d.ts.map +0 -1
  172. package/lib/forms/depreciation/depreciation.form.d.ts.map +0 -1
  173. package/lib/forms/depreciation/index.d.ts.map +0 -1
  174. package/lib/forms/form-validations.enum.d.ts.map +0 -1
  175. package/lib/forms/index.d.ts.map +0 -1
  176. package/lib/forms/loan/index.d.ts.map +0 -1
  177. package/lib/forms/loan/loan.form.d.ts.map +0 -1
  178. package/lib/forms/login/login.form.d.ts.map +0 -1
  179. package/lib/forms/phone/index.d.ts.map +0 -1
  180. package/lib/forms/phone/phone.form.d.ts.map +0 -1
  181. package/lib/forms/property/index.d.ts.map +0 -1
  182. package/lib/forms/property/property-sale/index.d.ts.map +0 -1
  183. package/lib/forms/property/property-sale/property-sale-cost-base.form.d.ts.map +0 -1
  184. package/lib/forms/property/property-sale/property-sale-cost-sale.form.d.ts.map +0 -1
  185. package/lib/forms/property/property-sale/property-sale-exemptions.form.d.ts.map +0 -1
  186. package/lib/forms/register/register-client.form.d.ts.map +0 -1
  187. package/lib/forms/register/register-firm.form.d.ts.map +0 -1
  188. package/lib/forms/report/my-tax/index.d.ts.map +0 -1
  189. package/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-details/my-tax-business-details.form.d.ts.map +0 -1
  190. package/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income/my-tax-business-income.form.d.ts.map +0 -1
  191. package/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income-or-losses.form.d.ts.map +0 -1
  192. package/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.form.d.ts.map +0 -1
  193. package/lib/forms/report/my-tax/my-tax-cgt.form.d.ts.map +0 -1
  194. package/lib/forms/report/my-tax/my-tax-deductions.form.d.ts.map +0 -1
  195. package/lib/forms/report/my-tax/my-tax-dividends.form.d.ts.map +0 -1
  196. package/lib/forms/report/my-tax/my-tax-income-statements.form.d.ts.map +0 -1
  197. package/lib/forms/report/my-tax/my-tax-income-tests.form.d.ts.map +0 -1
  198. package/lib/forms/report/my-tax/my-tax-interest.form.d.ts.map +0 -1
  199. package/lib/forms/report/my-tax/my-tax-losses.form.d.ts.map +0 -1
  200. package/lib/forms/report/my-tax/my-tax-medicare.form.d.ts.map +0 -1
  201. package/lib/forms/report/my-tax/my-tax-offsets.form.d.ts.map +0 -1
  202. package/lib/forms/report/my-tax/my-tax-other-income.form.d.ts.map +0 -1
  203. package/lib/forms/report/my-tax/my-tax-partnerships-and-trusts.form.d.ts.map +0 -1
  204. package/lib/forms/report/my-tax/my-tax-rent.form.d.ts.map +0 -1
  205. package/lib/forms/sole/bas-report.form.d.ts.map +0 -1
  206. package/lib/forms/sole/index.d.ts.map +0 -1
  207. package/lib/forms/sole/sole-business-allocations.form.d.ts.map +0 -1
  208. package/lib/forms/sole/sole-business-loss.form.d.ts.map +0 -1
  209. package/lib/forms/sole/sole-business.form.d.ts.map +0 -1
  210. package/lib/forms/sole/sole-contact.form.d.ts.map +0 -1
  211. package/lib/forms/sole/sole-depreciation-method.form.d.ts.map +0 -1
  212. package/lib/forms/sole/sole-details.form.d.ts.map +0 -1
  213. package/lib/forms/sole/sole-invoice-item.form.d.ts.map +0 -1
  214. package/lib/forms/sole/sole-invoice-template.form.d.ts.map +0 -1
  215. package/lib/forms/sole/sole-invoice.form.d.ts.map +0 -1
  216. package/lib/forms/transaction/allocation-rule-condition.form.d.ts.map +0 -1
  217. package/lib/forms/transaction/allocation-rule-transaction-meta-field.form.d.ts.map +0 -1
  218. package/lib/forms/transaction/allocation-rule-transaction.form.d.ts.map +0 -1
  219. package/lib/forms/transaction/allocation-rule.form.d.ts.map +0 -1
  220. package/lib/forms/transaction/index.d.ts.map +0 -1
  221. package/lib/forms/transaction/messages.enum.d.ts.map +0 -1
  222. package/lib/forms/transaction/transaction-base.form.d.ts.map +0 -1
  223. package/lib/forms/transaction/transaction.form.d.ts.map +0 -1
  224. package/lib/forms/transaction/work/work-expense.form.d.ts.map +0 -1
  225. package/lib/forms/transaction/work/work-income.form.d.ts.map +0 -1
  226. package/lib/forms/transaction/work/work-transaction.form.d.ts.map +0 -1
  227. package/lib/forms/user/index.d.ts.map +0 -1
  228. package/lib/forms/user/password.form.d.ts.map +0 -1
  229. package/lib/forms/user/reset-password.form.d.ts.map +0 -1
  230. package/lib/forms/user/user-invite.form.d.ts.map +0 -1
  231. package/lib/forms/vehicle/index.d.ts.map +0 -1
  232. package/lib/forms/vehicle/vehicle-claim-details.form.d.ts.map +0 -1
  233. package/lib/forms/vehicle/vehicle-claim.form.d.ts.map +0 -1
  234. package/lib/forms/vehicle/vehicle-logbook.form.d.ts.map +0 -1
  235. package/lib/forms/vehicle/vehicle.form.d.ts.map +0 -1
  236. package/lib/functions/clone-deep.d.ts.map +0 -1
  237. package/lib/functions/create-date.d.ts.map +0 -1
  238. package/lib/functions/enum-to-list.d.ts.map +0 -1
  239. package/lib/functions/get-doc-icon.d.ts.map +0 -1
  240. package/lib/functions/mat-options-functions.d.ts.map +0 -1
  241. package/lib/functions/mat-sort-options.d.ts.map +0 -1
  242. package/lib/functions/round-to.d.ts.map +0 -1
  243. package/lib/functions/tax-review-filter-predicate.d.ts.map +0 -1
  244. package/lib/interceptors/basiq-client-id.interceptor.d.ts.map +0 -1
  245. package/lib/interceptors/basiq-token.interceptor.d.ts.map +0 -1
  246. package/lib/interceptors/interceptors.module.d.ts.map +0 -1
  247. package/lib/interceptors/jwt-interceptor.d.ts.map +0 -1
  248. package/lib/interceptors/preloader.interceptor.d.ts.map +0 -1
  249. package/lib/interceptors/user-switcher-interceptor.d.ts.map +0 -1
  250. package/lib/interfaces/asset.interface.d.ts.map +0 -1
  251. package/lib/interfaces/auth-tokens.interface.d.ts.map +0 -1
  252. package/lib/interfaces/chart-data.interface.d.ts.map +0 -1
  253. package/lib/interfaces/chart-serie.interface.d.ts.map +0 -1
  254. package/lib/interfaces/event-listener.interface.d.ts.map +0 -1
  255. package/lib/interfaces/expense.interface.d.ts.map +0 -1
  256. package/lib/interfaces/income-source-forecast.interface.d.ts.map +0 -1
  257. package/lib/interfaces/index.d.ts.map +0 -1
  258. package/lib/interfaces/option.interface.d.ts.map +0 -1
  259. package/lib/interfaces/receipt.interface.d.ts.map +0 -1
  260. package/lib/interfaces/table-exportable.interface.d.ts.map +0 -1
  261. package/lib/interfaces/tank.interface.d.ts.map +0 -1
  262. package/lib/interfaces/updatable.interface.d.ts.map +0 -1
  263. package/lib/models/account-setup/account-setup-item.d.ts.map +0 -1
  264. package/lib/models/account-setup/account-setup-items.const.d.ts.map +0 -1
  265. package/lib/models/account-setup/account-setup-items.enum.d.ts.map +0 -1
  266. package/lib/models/badge/badge-color.enum.d.ts.map +0 -1
  267. package/lib/models/badge/badge.d.ts.map +0 -1
  268. package/lib/models/bank/allocation-group.d.ts.map +0 -1
  269. package/lib/models/bank/bank-account-chart-data.d.ts.map +0 -1
  270. package/lib/models/bank/bank-account-property.d.ts.map +0 -1
  271. package/lib/models/bank/bank-account-types.const.d.ts.map +0 -1
  272. package/lib/models/bank/bank-account.d.ts.map +0 -1
  273. package/lib/models/bank/bank-connection.d.ts.map +0 -1
  274. package/lib/models/bank/bank-external-stats.d.ts.map +0 -1
  275. package/lib/models/bank/bank-login-data.d.ts.map +0 -1
  276. package/lib/models/bank/bank-transaction-chart-data.d.ts.map +0 -1
  277. package/lib/models/bank/bank-transaction-summary-fields.enum.d.ts.map +0 -1
  278. package/lib/models/bank/bank-transaction.d.ts.map +0 -1
  279. package/lib/models/bank/bank.d.ts.map +0 -1
  280. package/lib/models/bank/basiq/basiq-job-response.d.ts.map +0 -1
  281. package/lib/models/bank/basiq/basiq-job-step.d.ts.map +0 -1
  282. package/lib/models/bank/basiq/basiq-job.d.ts.map +0 -1
  283. package/lib/models/bank/basiq/basiq-token-response.interface.d.ts.map +0 -1
  284. package/lib/models/bank/basiq/basiq-token.d.ts.map +0 -1
  285. package/lib/models/bank/basiq/index.d.ts.map +0 -1
  286. package/lib/models/bank/index.d.ts.map +0 -1
  287. package/lib/models/bank/type-loan.const.d.ts.map +0 -1
  288. package/lib/models/borrowing-expense/borrowing-expense-loan.d.ts.map +0 -1
  289. package/lib/models/borrowing-expense/borrowing-expense.d.ts.map +0 -1
  290. package/lib/models/borrowing-expense/index.d.ts.map +0 -1
  291. package/lib/models/chart/chart-data.d.ts.map +0 -1
  292. package/lib/models/chart/chart-serie.d.ts.map +0 -1
  293. package/lib/models/chart-accounts/chart-accounts-categories.const.d.ts.map +0 -1
  294. package/lib/models/chart-accounts/chart-accounts-category.e-collection.d.ts.map +0 -1
  295. package/lib/models/chart-accounts/chart-accounts-depreciation.d.ts.map +0 -1
  296. package/lib/models/chart-accounts/chart-accounts-heading.d.ts.map +0 -1
  297. package/lib/models/chart-accounts/chart-accounts-meta-field.d.ts.map +0 -1
  298. package/lib/models/chart-accounts/chart-accounts-tax-labels.enum.d.ts.map +0 -1
  299. package/lib/models/chart-accounts/chart-accounts-value.d.ts.map +0 -1
  300. package/lib/models/chart-accounts/chart-accounts.d.ts.map +0 -1
  301. package/lib/models/chart-accounts/index.d.ts.map +0 -1
  302. package/lib/models/chat/chat-view-type.enum.d.ts.map +0 -1
  303. package/lib/models/chat/chat.d.ts.map +0 -1
  304. package/lib/models/chat/index.d.ts.map +0 -1
  305. package/lib/models/chat/message-document.d.ts.map +0 -1
  306. package/lib/models/chat/message.d.ts.map +0 -1
  307. package/lib/models/client/client-income-types.d.ts.map +0 -1
  308. package/lib/models/client/client-invite.d.ts.map +0 -1
  309. package/lib/models/client/client-movement.d.ts.map +0 -1
  310. package/lib/models/client/client-portfolio-chart-data.d.ts.map +0 -1
  311. package/lib/models/client/client-portfolio-report.d.ts.map +0 -1
  312. package/lib/models/color/alphabet-colors.enum.d.ts.map +0 -1
  313. package/lib/models/depreciation/depreciation-capital-project.d.ts.map +0 -1
  314. package/lib/models/depreciation/depreciation-forecast.d.ts.map +0 -1
  315. package/lib/models/depreciation/depreciation-group-item.d.ts.map +0 -1
  316. package/lib/models/depreciation/depreciation-group.d.ts.map +0 -1
  317. package/lib/models/depreciation/depreciation-group.enum.d.ts.map +0 -1
  318. package/lib/models/depreciation/depreciation-groups.const.d.ts.map +0 -1
  319. package/lib/models/depreciation/depreciation-lvp-rate.enum.d.ts.map +0 -1
  320. package/lib/models/depreciation/depreciation-receipt.d.ts.map +0 -1
  321. package/lib/models/depreciation/depreciation.d.ts.map +0 -1
  322. package/lib/models/depreciation/index.d.ts.map +0 -1
  323. package/lib/models/dictionary/dictionary.d.ts.map +0 -1
  324. package/lib/models/dictionary/index.d.ts.map +0 -1
  325. package/lib/models/document/document-api-url-prefix.enum.d.ts.map +0 -1
  326. package/lib/models/document/document-file-types.const.d.ts.map +0 -1
  327. package/lib/models/document/document-folder.d.ts.map +0 -1
  328. package/lib/models/document/document.d.ts.map +0 -1
  329. package/lib/models/document/index.d.ts.map +0 -1
  330. package/lib/models/employee/employee-invite.d.ts.map +0 -1
  331. package/lib/models/endpoint/endpoint.d.ts.map +0 -1
  332. package/lib/models/endpoint/endpoints.const.d.ts.map +0 -1
  333. package/lib/models/event/index.d.ts.map +0 -1
  334. package/lib/models/export/export-format.enum.d.ts.map +0 -1
  335. package/lib/models/export/export-row-data-type.enum.d.ts.map +0 -1
  336. package/lib/models/export/export-row.d.ts.map +0 -1
  337. package/lib/models/file/file.d.ts.map +0 -1
  338. package/lib/models/file/icons-file.enum.d.ts.map +0 -1
  339. package/lib/models/file/index.d.ts.map +0 -1
  340. package/lib/models/financial-year/financial-year.d.ts.map +0 -1
  341. package/lib/models/financial-year/index.d.ts.map +0 -1
  342. package/lib/models/financial-year/month-name-short.enum.d.ts.map +0 -1
  343. package/lib/models/financial-year/month-number.enum.d.ts.map +0 -1
  344. package/lib/models/financial-year/months.const.d.ts.map +0 -1
  345. package/lib/models/income-position/income-position.d.ts.map +0 -1
  346. package/lib/models/income-source/income-source-chart-data.d.ts.map +0 -1
  347. package/lib/models/income-source/income-source-forecast.d.ts.map +0 -1
  348. package/lib/models/income-source/income-source-type.d.ts.map +0 -1
  349. package/lib/models/income-source/income-source.d.ts.map +0 -1
  350. package/lib/models/income-source/salary-forecast.d.ts.map +0 -1
  351. package/lib/models/income-source/sole-forecast.d.ts.map +0 -1
  352. package/lib/models/index.d.ts.map +0 -1
  353. package/lib/models/loan/index.d.ts.map +0 -1
  354. package/lib/models/loan/loan-max-number-of-payments.enum.d.ts.map +0 -1
  355. package/lib/models/loan/loan.d.ts.map +0 -1
  356. package/lib/models/notification/index.d.ts.map +0 -1
  357. package/lib/models/notification/notification.d.ts.map +0 -1
  358. package/lib/models/pdf/pdf-orientation.enum.d.ts.map +0 -1
  359. package/lib/models/pdf/pdf-settings.d.ts.map +0 -1
  360. package/lib/models/property/calculation-form-item.d.ts.map +0 -1
  361. package/lib/models/property/calculation-form-type.enum.d.ts.map +0 -1
  362. package/lib/models/property/capital-costs-itmes.const.d.ts.map +0 -1
  363. package/lib/models/property/index.d.ts.map +0 -1
  364. package/lib/models/property/property-category-movement.d.ts.map +0 -1
  365. package/lib/models/property/property-category.d.ts.map +0 -1
  366. package/lib/models/property/property-document.d.ts.map +0 -1
  367. package/lib/models/property/property-equity-chart-data.d.ts.map +0 -1
  368. package/lib/models/property/property-equity-chart-item.d.ts.map +0 -1
  369. package/lib/models/property/property-equity-chart-type.enum.d.ts.map +0 -1
  370. package/lib/models/property/property-forecast.d.ts.map +0 -1
  371. package/lib/models/property/property-sale/index.d.ts.map +0 -1
  372. package/lib/models/property/property-sale/property-sale-cost-base.d.ts.map +0 -1
  373. package/lib/models/property/property-sale/property-sale-tax-exemption-meta-field.d.ts.map +0 -1
  374. package/lib/models/property/property-sale/property-sale.d.ts.map +0 -1
  375. package/lib/models/property/property-sale/tax-exemption-meta-field.d.ts.map +0 -1
  376. package/lib/models/property/property-sale/tax-exemption.d.ts.map +0 -1
  377. package/lib/models/property/property-share.d.ts.map +0 -1
  378. package/lib/models/property/property-subscription.d.ts.map +0 -1
  379. package/lib/models/property/property-valuation.d.ts.map +0 -1
  380. package/lib/models/property/property.d.ts.map +0 -1
  381. package/lib/models/property/share-filter-options.enum.d.ts.map +0 -1
  382. package/lib/models/registration-invite/registration-invite.d.ts.map +0 -1
  383. package/lib/models/report/depreciation/depreciation-lvp-asset-type.enum.d.ts.map +0 -1
  384. package/lib/models/report/depreciation/depreciation-lvp-report-item.d.ts.map +0 -1
  385. package/lib/models/report/depreciation/depreciation-report-item.d.ts.map +0 -1
  386. package/lib/models/report/depreciation/index.d.ts.map +0 -1
  387. package/lib/models/report/index.d.ts.map +0 -1
  388. package/lib/models/report/my-tax/ato-links.d.ts.map +0 -1
  389. package/lib/models/report/my-tax/index.d.ts.map +0 -1
  390. package/lib/models/report/my-tax/my-tax-business-income-or-losses/business-income-or-losses-categories.const.d.ts.map +0 -1
  391. package/lib/models/report/my-tax/my-tax-business-income-or-losses/business-type.enum.d.ts.map +0 -1
  392. package/lib/models/report/my-tax/my-tax-business-income-or-losses/loss-type.enum.d.ts.map +0 -1
  393. package/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-details/my-tax-business-details.d.ts.map +0 -1
  394. package/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income/my-tax-business-income.d.ts.map +0 -1
  395. package/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.d.ts.map +0 -1
  396. package/lib/models/report/my-tax/my-tax-cgt/cgt-exemption-and-rollover-code.enum.d.ts.map +0 -1
  397. package/lib/models/report/my-tax/my-tax-cgt/my-tax-cgt.d.ts.map +0 -1
  398. package/lib/models/report/my-tax/my-tax-deductions/deduction-clothing-type.enum.d.ts.map +0 -1
  399. package/lib/models/report/my-tax/my-tax-deductions/deduction-fields.const.d.ts.map +0 -1
  400. package/lib/models/report/my-tax/my-tax-deductions/deduction-self-education-type.enum.d.ts.map +0 -1
  401. package/lib/models/report/my-tax/my-tax-deductions/my-tax-deductions.d.ts.map +0 -1
  402. package/lib/models/report/my-tax/my-tax-dividends/my-tax-dividends.d.ts.map +0 -1
  403. package/lib/models/report/my-tax/my-tax-estimate/my-tax-estimate.d.ts.map +0 -1
  404. package/lib/models/report/my-tax/my-tax-income-statements/my-tax-income-statements.d.ts.map +0 -1
  405. package/lib/models/report/my-tax/my-tax-income-tests/my-tax-income-tests.d.ts.map +0 -1
  406. package/lib/models/report/my-tax/my-tax-interest/my-tax-interest.d.ts.map +0 -1
  407. package/lib/models/report/my-tax/my-tax-losses/my-tax-losses.d.ts.map +0 -1
  408. package/lib/models/report/my-tax/my-tax-offsets/my-tax-offsets.d.ts.map +0 -1
  409. package/lib/models/report/my-tax/my-tax-other-income/my-tax-other-income.d.ts.map +0 -1
  410. package/lib/models/report/my-tax/my-tax-partnerships-and-trusts/my-tax-partnerships-and-trusts.d.ts.map +0 -1
  411. package/lib/models/report/my-tax/my-tax-rent/my-tax-rent.d.ts.map +0 -1
  412. package/lib/models/report/property/index.d.ts.map +0 -1
  413. package/lib/models/report/property/property-report-item-depreciation.d.ts.map +0 -1
  414. package/lib/models/report/property/property-report-item-transaction.d.ts.map +0 -1
  415. package/lib/models/report/property/property-report-item.d.ts.map +0 -1
  416. package/lib/models/report/sole/index.d.ts.map +0 -1
  417. package/lib/models/report/sole/sole-business/sole-business-loss-report.d.ts.map +0 -1
  418. package/lib/models/report/vehicle-expense/vehicle-expense.d.ts.map +0 -1
  419. package/lib/models/service-subscription/index.d.ts.map +0 -1
  420. package/lib/models/service-subscription/module-url-list.const.d.ts.map +0 -1
  421. package/lib/models/service-subscription/payment-method-brand.enum.d.ts.map +0 -1
  422. package/lib/models/service-subscription/service-payment-method.d.ts.map +0 -1
  423. package/lib/models/service-subscription/service-payment.d.ts.map +0 -1
  424. package/lib/models/service-subscription/service-subscription.d.ts.map +0 -1
  425. package/lib/models/service-subscription/stripe-promo-code.d.ts.map +0 -1
  426. package/lib/models/sole/bas-report.d.ts.map +0 -1
  427. package/lib/models/sole/index.d.ts.map +0 -1
  428. package/lib/models/sole/sole-business-activity.d.ts.map +0 -1
  429. package/lib/models/sole/sole-business-allocation.d.ts.map +0 -1
  430. package/lib/models/sole/sole-business-loss-offset-rule.d.ts.map +0 -1
  431. package/lib/models/sole/sole-business-loss.d.ts.map +0 -1
  432. package/lib/models/sole/sole-business.d.ts.map +0 -1
  433. package/lib/models/sole/sole-contact.d.ts.map +0 -1
  434. package/lib/models/sole/sole-depreciation-method.d.ts.map +0 -1
  435. package/lib/models/sole/sole-details.d.ts.map +0 -1
  436. package/lib/models/sole/sole-invoice-item.d.ts.map +0 -1
  437. package/lib/models/sole/sole-invoice-template.d.ts.map +0 -1
  438. package/lib/models/sole/sole-invoice.d.ts.map +0 -1
  439. package/lib/models/tax-review/tax-review.d.ts.map +0 -1
  440. package/lib/models/tax-summary/report-item-details.d.ts.map +0 -1
  441. package/lib/models/tax-summary/report-item.d.ts.map +0 -1
  442. package/lib/models/tax-summary/tax-summary-section.d.ts.map +0 -1
  443. package/lib/models/tax-summary/tax-summary-type.enum.d.ts.map +0 -1
  444. package/lib/models/tax-summary/tax-summary.d.ts.map +0 -1
  445. package/lib/models/toast/toast-type.enum.d.ts.map +0 -1
  446. package/lib/models/toast/toast.d.ts.map +0 -1
  447. package/lib/models/transaction/allocation-rule-condition.d.ts.map +0 -1
  448. package/lib/models/transaction/allocation-rule-transaction-meta-field.d.ts.map +0 -1
  449. package/lib/models/transaction/allocation-rule-transaction.d.ts.map +0 -1
  450. package/lib/models/transaction/allocation-rule.d.ts.map +0 -1
  451. package/lib/models/transaction/income-amount-type.enum.d.ts.map +0 -1
  452. package/lib/models/transaction/index.d.ts.map +0 -1
  453. package/lib/models/transaction/transaction-allocation.d.ts.map +0 -1
  454. package/lib/models/transaction/transaction-category.enum.d.ts.map +0 -1
  455. package/lib/models/transaction/transaction-meta-field.d.ts.map +0 -1
  456. package/lib/models/transaction/transaction-receipt.d.ts.map +0 -1
  457. package/lib/models/transaction/transaction.d.ts.map +0 -1
  458. package/lib/models/user/index.d.ts.map +0 -1
  459. package/lib/models/user/my-account-history-initiated-by.enum.d.ts.map +0 -1
  460. package/lib/models/user/my-account-history-status.enum.d.ts.map +0 -1
  461. package/lib/models/user/my-account-history-type.enum.d.ts.map +0 -1
  462. package/lib/models/user/my-account-history.d.ts.map +0 -1
  463. package/lib/models/user/occupation.d.ts.map +0 -1
  464. package/lib/models/user/user-roles.const.d.ts.map +0 -1
  465. package/lib/models/user/user-to-register.d.ts.map +0 -1
  466. package/lib/models/user/user.d.ts.map +0 -1
  467. package/lib/models/user-event/user-event-setting-field.enum.d.ts.map +0 -1
  468. package/lib/models/user-event/user-event-setting.d.ts.map +0 -1
  469. package/lib/models/user-event/user-event-type-category.d.ts.map +0 -1
  470. package/lib/models/user-event/user-event-type.d.ts.map +0 -1
  471. package/lib/models/vehicle/index.d.ts.map +0 -1
  472. package/lib/models/vehicle/logbook-period.d.ts.map +0 -1
  473. package/lib/models/vehicle/vehicle-claim-details.d.ts.map +0 -1
  474. package/lib/models/vehicle/vehicle-claim.d.ts.map +0 -1
  475. package/lib/models/vehicle/vehicle-logbook.d.ts.map +0 -1
  476. package/lib/models/vehicle/vehicle.d.ts.map +0 -1
  477. package/lib/services/account-setup/account-setup.service.d.ts.map +0 -1
  478. package/lib/services/account-setup/index.d.ts.map +0 -1
  479. package/lib/services/affiliate/index.d.ts.map +0 -1
  480. package/lib/services/affiliate/rewardful/index.d.ts.map +0 -1
  481. package/lib/services/affiliate/rewardful/rewardful.service.d.ts.map +0 -1
  482. package/lib/services/asset/assets.service.d.ts.map +0 -1
  483. package/lib/services/asset/index.d.ts.map +0 -1
  484. package/lib/services/auth/auth.service.d.ts.map +0 -1
  485. package/lib/services/auth/index.d.ts.map +0 -1
  486. package/lib/services/auth/jwt.service.d.ts.map +0 -1
  487. package/lib/services/bank/bank-account-calculation.service.d.ts.map +0 -1
  488. package/lib/services/bank/bank-transaction-calculation.service.d.ts.map +0 -1
  489. package/lib/services/bank/index.d.ts.map +0 -1
  490. package/lib/services/export/export-formatter.service.d.ts.map +0 -1
  491. package/lib/services/export/index.d.ts.map +0 -1
  492. package/lib/services/header-title/header-title.service.d.ts.map +0 -1
  493. package/lib/services/header-title/index.d.ts.map +0 -1
  494. package/lib/services/http/address/address.service.d.ts.map +0 -1
  495. package/lib/services/http/address/index.d.ts.map +0 -1
  496. package/lib/services/http/bank/bank-account/bank-account.service.d.ts.map +0 -1
  497. package/lib/services/http/bank/bank-account/index.d.ts.map +0 -1
  498. package/lib/services/http/bank/bank-connection/bank-connection.service.d.ts.map +0 -1
  499. package/lib/services/http/bank/bank-connection/index.d.ts.map +0 -1
  500. package/lib/services/http/bank/bank-transaction/bank-transaction.service.d.ts.map +0 -1
  501. package/lib/services/http/bank/bank-transaction/index.d.ts.map +0 -1
  502. package/lib/services/http/bank/bank.service.d.ts.map +0 -1
  503. package/lib/services/http/bank/basiq/basiq-token.service.d.ts.map +0 -1
  504. package/lib/services/http/bank/basiq/basiq.service.d.ts.map +0 -1
  505. package/lib/services/http/bank/basiq/index.d.ts.map +0 -1
  506. package/lib/services/http/bank/index.d.ts.map +0 -1
  507. package/lib/services/http/chart-accounts/chart-accounts-depreciations/chart-accounts-depreciations.service.d.ts.map +0 -1
  508. package/lib/services/http/chart-accounts/chart-accounts-depreciations/index.d.ts.map +0 -1
  509. package/lib/services/http/chart-accounts/chart-accounts.service.d.ts.map +0 -1
  510. package/lib/services/http/chart-accounts/index.d.ts.map +0 -1
  511. package/lib/services/http/chat/chat.service.d.ts.map +0 -1
  512. package/lib/services/http/chat/index.d.ts.map +0 -1
  513. package/lib/services/http/chat/message-document.service.d.ts.map +0 -1
  514. package/lib/services/http/chat/message.service.d.ts.map +0 -1
  515. package/lib/services/http/depreciation/depreciation-capital-project/depreciation-capital-project.service.d.ts.map +0 -1
  516. package/lib/services/http/depreciation/depreciation-capital-project/index.d.ts.map +0 -1
  517. package/lib/services/http/depreciation/depreciation-receipt/depreciation-receipt.service.d.ts.map +0 -1
  518. package/lib/services/http/depreciation/depreciation-receipt/index.d.ts.map +0 -1
  519. package/lib/services/http/depreciation/depreciation.service.d.ts.map +0 -1
  520. package/lib/services/http/depreciation/index.d.ts.map +0 -1
  521. package/lib/services/http/document/document-folder/document-folder.service.d.ts.map +0 -1
  522. package/lib/services/http/document/document.service.d.ts.map +0 -1
  523. package/lib/services/http/document/index.d.ts.map +0 -1
  524. package/lib/services/http/facebook/facebook-auth-options.interface.d.ts.map +0 -1
  525. package/lib/services/http/facebook/facebook-auth-response.interface.d.ts.map +0 -1
  526. package/lib/services/http/facebook/facebook-status-response.interface.d.ts.map +0 -1
  527. package/lib/services/http/facebook/facebook.service.d.ts.map +0 -1
  528. package/lib/services/http/facebook/index.d.ts.map +0 -1
  529. package/lib/services/http/file/file.service.d.ts.map +0 -1
  530. package/lib/services/http/file/index.d.ts.map +0 -1
  531. package/lib/services/http/firm/client-income/client-income-types.service.d.ts.map +0 -1
  532. package/lib/services/http/firm/client-income/index.d.ts.map +0 -1
  533. package/lib/services/http/firm/client-invite/client-invite.service.d.ts.map +0 -1
  534. package/lib/services/http/firm/client-invite/index.d.ts.map +0 -1
  535. package/lib/services/http/firm/client-movement/client-movement.service.d.ts.map +0 -1
  536. package/lib/services/http/firm/client-movement/index.d.ts.map +0 -1
  537. package/lib/services/http/firm/employee/employee.service.d.ts.map +0 -1
  538. package/lib/services/http/firm/employee/index.d.ts.map +0 -1
  539. package/lib/services/http/firm/employee-invite/employee-invite.service.d.ts.map +0 -1
  540. package/lib/services/http/firm/employee-invite/index.d.ts.map +0 -1
  541. package/lib/services/http/firm/firm.service.d.ts.map +0 -1
  542. package/lib/services/http/firm/index.d.ts.map +0 -1
  543. package/lib/services/http/firm/portfolio-report/client-portfolio-report.service.d.ts.map +0 -1
  544. package/lib/services/http/firm/portfolio-report/index.d.ts.map +0 -1
  545. package/lib/services/http/google/google.service.d.ts.map +0 -1
  546. package/lib/services/http/google/index.d.ts.map +0 -1
  547. package/lib/services/http/income-source/income-source-forecast/income-source-forecast.service.d.ts.map +0 -1
  548. package/lib/services/http/income-source/income-source-forecast/index.d.ts.map +0 -1
  549. package/lib/services/http/income-source/income-source.service.d.ts.map +0 -1
  550. package/lib/services/http/income-source/index.d.ts.map +0 -1
  551. package/lib/services/http/income-source/salary-forecast/index.d.ts.map +0 -1
  552. package/lib/services/http/income-source/salary-forecast/salary-forecast.service.d.ts.map +0 -1
  553. package/lib/services/http/income-source/sole-forecast/index.d.ts.map +0 -1
  554. package/lib/services/http/income-source/sole-forecast/sole-forecast.service.d.ts.map +0 -1
  555. package/lib/services/http/index.d.ts.map +0 -1
  556. package/lib/services/http/loan/borrowing-expense/borrowing-expense.service.d.ts.map +0 -1
  557. package/lib/services/http/loan/borrowing-expense/index.d.ts.map +0 -1
  558. package/lib/services/http/loan/index.d.ts.map +0 -1
  559. package/lib/services/http/loan/loan.service.d.ts.map +0 -1
  560. package/lib/services/http/property/index.d.ts.map +0 -1
  561. package/lib/services/http/property/property-category/index.d.ts.map +0 -1
  562. package/lib/services/http/property/property-category/property-category.service.d.ts.map +0 -1
  563. package/lib/services/http/property/property-category-movement/index.d.ts.map +0 -1
  564. package/lib/services/http/property/property-category-movement/property-category-movement.service.d.ts.map +0 -1
  565. package/lib/services/http/property/property-document/index.d.ts.map +0 -1
  566. package/lib/services/http/property/property-document/property-document.service.d.ts.map +0 -1
  567. package/lib/services/http/property/property-sale/index.d.ts.map +0 -1
  568. package/lib/services/http/property/property-sale/property-sale.service.d.ts.map +0 -1
  569. package/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.d.ts.map +0 -1
  570. package/lib/services/http/property/property-share/index.d.ts.map +0 -1
  571. package/lib/services/http/property/property-share/property-share.service.d.ts.map +0 -1
  572. package/lib/services/http/property/property.service.d.ts.map +0 -1
  573. package/lib/services/http/receipt/index.d.ts.map +0 -1
  574. package/lib/services/http/receipt/receipt.service.d.ts.map +0 -1
  575. package/lib/services/http/rest/http-method.type.d.ts.map +0 -1
  576. package/lib/services/http/rest/index.d.ts.map +0 -1
  577. package/lib/services/http/rest/rest-method.type.d.ts.map +0 -1
  578. package/lib/services/http/rest/rest-old.service.d.ts.map +0 -1
  579. package/lib/services/http/rest/rest.service.d.ts.map +0 -1
  580. package/lib/services/http/service-notification/index.d.ts.map +0 -1
  581. package/lib/services/http/service-notification/service-notification.service.d.ts.map +0 -1
  582. package/lib/services/http/sole/bas-report/bas-report.service.d.ts.map +0 -1
  583. package/lib/services/http/sole/index.d.ts.map +0 -1
  584. package/lib/services/http/sole/sole-business/messages.enum.d.ts.map +0 -1
  585. package/lib/services/http/sole/sole-business/sole-business.service.d.ts.map +0 -1
  586. package/lib/services/http/sole/sole-business-activity/sole-business-activity.service.d.ts.map +0 -1
  587. package/lib/services/http/sole/sole-business-loss/sole-business-loss-rules/sole-business-loss-offset-rule.service.d.ts.map +0 -1
  588. package/lib/services/http/sole/sole-business-loss/sole-business-loss.service.d.ts.map +0 -1
  589. package/lib/services/http/sole/sole-contact/sole-contact.service.d.ts.map +0 -1
  590. package/lib/services/http/sole/sole-depreciation-method/sole-depreciation-method.service.d.ts.map +0 -1
  591. package/lib/services/http/sole/sole-details/sole-details.service.d.ts.map +0 -1
  592. package/lib/services/http/sole/sole-invoice/sole-invoice.service.d.ts.map +0 -1
  593. package/lib/services/http/sole/sole-invoice-template/sole-invoice-template.service.d.ts.map +0 -1
  594. package/lib/services/http/subscription/index.d.ts.map +0 -1
  595. package/lib/services/http/subscription/service-payment/service-payment.service.d.ts.map +0 -1
  596. package/lib/services/http/subscription/service-payment-method/service-payment-method.service.d.ts.map +0 -1
  597. package/lib/services/http/subscription/service-price/service-price.service.d.ts.map +0 -1
  598. package/lib/services/http/subscription/service-product/service-product.service.d.ts.map +0 -1
  599. package/lib/services/http/subscription/service-subscription/subscription.service.d.ts.map +0 -1
  600. package/lib/services/http/tax-review/index.d.ts.map +0 -1
  601. package/lib/services/http/tax-review/tax-review-history/tax-review-history.service.d.ts.map +0 -1
  602. package/lib/services/http/tax-review/tax-review.service.d.ts.map +0 -1
  603. package/lib/services/http/tax-summary/index.d.ts.map +0 -1
  604. package/lib/services/http/tax-summary/tax-summary.service.d.ts.map +0 -1
  605. package/lib/services/http/transaction/index.d.ts.map +0 -1
  606. package/lib/services/http/transaction/transaction-allocation/allocation-rule/allocation-rule.service.d.ts.map +0 -1
  607. package/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.d.ts.map +0 -1
  608. package/lib/services/http/transaction/transaction-receipt/transaction-receipt.service.d.ts.map +0 -1
  609. package/lib/services/http/transaction/transaction.service.d.ts.map +0 -1
  610. package/lib/services/http/tutorial-video/index.d.ts.map +0 -1
  611. package/lib/services/http/tutorial-video/tutorial-video-response.interface.d.ts.map +0 -1
  612. package/lib/services/http/tutorial-video/tutorial-video.service.d.ts.map +0 -1
  613. package/lib/services/http/tutorial-video/video-source.interface.d.ts.map +0 -1
  614. package/lib/services/http/user/index.d.ts.map +0 -1
  615. package/lib/services/http/user/occupation/occupation.service.d.ts.map +0 -1
  616. package/lib/services/http/user/user-event-setting/user-event-setting.service.d.ts.map +0 -1
  617. package/lib/services/http/user/user-event-type/user-event-type.service.d.ts.map +0 -1
  618. package/lib/services/http/user/user.service.d.ts.map +0 -1
  619. package/lib/services/http/user/users-invite/users-invite.service.d.ts.map +0 -1
  620. package/lib/services/http/vehicle/index.d.ts.map +0 -1
  621. package/lib/services/http/vehicle/vehicle-claim-details.service.d.ts.map +0 -1
  622. package/lib/services/http/vehicle/vehicle-claim.service.d.ts.map +0 -1
  623. package/lib/services/http/vehicle/vehicle-logbook.service.d.ts.map +0 -1
  624. package/lib/services/http/vehicle/vehicle.service.d.ts.map +0 -1
  625. package/lib/services/index.d.ts.map +0 -1
  626. package/lib/services/intercom/index.d.ts.map +0 -1
  627. package/lib/services/intercom/intercom.service.d.ts.map +0 -1
  628. package/lib/services/pdf/index.d.ts.map +0 -1
  629. package/lib/services/pdf/js-pdf.d.ts.map +0 -1
  630. package/lib/services/pdf/pdf-from-dom-element/file-settings.d.ts.map +0 -1
  631. package/lib/services/pdf/pdf-from-dom-element/pdf-from-dom-element.service.d.ts.map +0 -1
  632. package/lib/services/pdf/pdf-from-table/file-settings.d.ts.map +0 -1
  633. package/lib/services/pdf/pdf-from-table/pdf-from-data-table/pdf-from-data-table.service.d.ts.map +0 -1
  634. package/lib/services/pdf/pdf-from-table/pdf-from-html-table/pdf-from-html-table.service.d.ts.map +0 -1
  635. package/lib/services/pdf/pdf-from-table/pdf-from-table.service.d.ts.map +0 -1
  636. package/lib/services/preloader/index.d.ts.map +0 -1
  637. package/lib/services/preloader/preloader.service.d.ts.map +0 -1
  638. package/lib/services/property/corelogic/index.d.ts.map +0 -1
  639. package/lib/services/property/equity-position-chart/equity-position-chart.service.d.ts.map +0 -1
  640. package/lib/services/property/equity-position-chart/index.d.ts.map +0 -1
  641. package/lib/services/property/index.d.ts.map +0 -1
  642. package/lib/services/property/property-calculation/index.d.ts.map +0 -1
  643. package/lib/services/property/property-calculation/property-calculation.service.d.ts.map +0 -1
  644. package/lib/services/report/index.d.ts.map +0 -1
  645. package/lib/services/report/property/property-transaction-report.service.d.ts.map +0 -1
  646. package/lib/services/toast/index.d.ts.map +0 -1
  647. package/lib/services/toast/toast.service.d.ts.map +0 -1
  648. package/lib/services/transaction/index.d.ts.map +0 -1
  649. package/lib/services/transaction/transaction-calculation.service.d.ts.map +0 -1
  650. package/lib/services/user/index.d.ts.map +0 -1
  651. package/lib/services/user/user-switcher.service.d.ts.map +0 -1
  652. package/lib/services/vehicle/index.d.ts.map +0 -1
  653. package/lib/services/vehicle/logbook-best-period.service.d.ts.map +0 -1
  654. package/lib/services/xlsx/index.d.ts.map +0 -1
  655. package/lib/services/xlsx/xlsx.service.d.ts.map +0 -1
  656. package/lib/tt-core.module.d.ts.map +0 -1
  657. package/lib/validators/address-corelogic.validator.d.ts.map +0 -1
  658. package/lib/validators/at-least-one-enabled.validator.d.ts.map +0 -1
  659. package/lib/validators/at-least-one.validator.d.ts.map +0 -1
  660. package/lib/validators/autocomplete.validator.d.ts.map +0 -1
  661. package/lib/validators/conditional.validator.d.ts.map +0 -1
  662. package/lib/validators/current-fin-year.validator.d.ts.map +0 -1
  663. package/lib/validators/date-range.validator.d.ts.map +0 -1
  664. package/lib/validators/fields-sum.validator.d.ts.map +0 -1
  665. package/lib/validators/file.validator.d.ts.map +0 -1
  666. package/lib/validators/index.d.ts.map +0 -1
  667. package/lib/validators/min-date/messages.enum.d.ts.map +0 -1
  668. package/lib/validators/min-date/min-date.validator.d.ts.map +0 -1
  669. package/lib/validators/password-match.validator.d.ts.map +0 -1
  670. package/lib/validators/password.validator.d.ts.map +0 -1
  671. package/lib/validators/phone-number.validator.d.ts.map +0 -1
  672. package/lib/validators/required-length.validator.d.ts.map +0 -1
  673. package/public-api.d.ts.map +0 -1
  674. package/taxtank-core.d.ts.map +0 -1
@@ -6,7 +6,7 @@ import * as i1 from '@angular/common/http';
6
6
  import { HttpParams, HttpErrorResponse, HTTP_INTERCEPTORS } from '@angular/common/http';
7
7
  import { map, mergeMap, filter, catchError, take, switchMap, finalize, first as first$1, skip, debounceTime, distinctUntilChanged } from 'rxjs/operators';
8
8
  import { ReplaySubject, Subject, BehaviorSubject, throwError, Observable, of, combineLatest, forkJoin, from, merge as merge$1 } from 'rxjs';
9
- import { plainToClass, Type, Exclude, Transform, Expose, classToPlain } from 'class-transformer';
9
+ import { plainToClass, Type, Transform, Exclude, Expose, classToPlain } from 'class-transformer';
10
10
  import { JwtHelperService } from '@auth0/angular-jwt';
11
11
  import { __decorate } from 'tslib';
12
12
  import get from 'lodash/get';
@@ -360,6 +360,7 @@ var TankTypeEnum;
360
360
  TankTypeEnum[TankTypeEnum["WORK"] = 2] = "WORK";
361
361
  TankTypeEnum[TankTypeEnum["OTHER"] = 3] = "OTHER";
362
362
  TankTypeEnum[TankTypeEnum["SOLE"] = 4] = "SOLE";
363
+ TankTypeEnum[TankTypeEnum["HOLDING"] = 5] = "HOLDING";
363
364
  })(TankTypeEnum || (TankTypeEnum = {}));
364
365
 
365
366
  class TransactionBase extends ObservableModel {
@@ -374,6 +375,8 @@ class TransactionBase extends ObservableModel {
374
375
  return TankTypeEnum.WORK;
375
376
  case this.isSoleTank():
376
377
  return TankTypeEnum.SOLE;
378
+ case this.isHoldingTank():
379
+ return TankTypeEnum.HOLDING;
377
380
  default:
378
381
  return TankTypeEnum.OTHER;
379
382
  }
@@ -412,6 +415,14 @@ class TransactionBase extends ObservableModel {
412
415
  }
413
416
  return !!this.business;
414
417
  }
418
+ isHoldingTank() {
419
+ // chart accounts may be empty for new instances
420
+ if (this.chartAccounts) {
421
+ return CHART_ACCOUNTS_CATEGORIES.holding.includes(this.chartAccounts?.category);
422
+ }
423
+ // @TODO Alex we need another way to distinguish work/holding
424
+ return !this.isPropertyTank() && !this.isSoleTank();
425
+ }
415
426
  get amountWithGst() {
416
427
  return this.isGST ? +(Math.round(this.amount * ChartAccounts.GSTCoefficient)).toFixed(2) : this.amount;
417
428
  }
@@ -431,6 +442,9 @@ class TransactionBase extends ObservableModel {
431
442
  return this.grossAmount * this.claimRatio;
432
443
  }
433
444
  }
445
+ __decorate([
446
+ Transform(({ value }) => +value)
447
+ ], TransactionBase.prototype, "amount", void 0);
434
448
  __decorate([
435
449
  Exclude({ toPlainOnly: true }),
436
450
  Type(() => Object),
@@ -688,6 +702,15 @@ class ServiceNotification extends AbstractModel {
688
702
  class TaxCalculation extends AbstractModel {
689
703
  }
690
704
 
705
+ let Holding$1 = class Holding {
706
+ };
707
+
708
+ let HoldingType$1 = class HoldingType {
709
+ };
710
+
711
+ let HoldingSale$1 = class HoldingSale {
712
+ };
713
+
691
714
  /**
692
715
  * access token, needed to access basiq connect ui (https://github.com/basiqio/basiq-connect-ui)
693
716
  */
@@ -1349,6 +1372,7 @@ var UserRolesEnum;
1349
1372
  UserRolesEnum["WORK_TANK"] = "ROLE_USER_WORK";
1350
1373
  UserRolesEnum["PROPERTY_TANK"] = "ROLE_USER_PROPERTY";
1351
1374
  UserRolesEnum["SOLE_TANK"] = "ROLE_USER_SOLE";
1375
+ UserRolesEnum["HOLDING_TANK"] = "ROLE_USER_HOLDING";
1352
1376
  UserRolesEnum["SWITCH_USER"] = "ROLE_PREVIOUS_ADMIN";
1353
1377
  })(UserRolesEnum || (UserRolesEnum = {}));
1354
1378
 
@@ -1425,6 +1449,7 @@ var ServiceProductIdEnum;
1425
1449
  ServiceProductIdEnum[ServiceProductIdEnum["WORK_TANK"] = 4] = "WORK_TANK";
1426
1450
  ServiceProductIdEnum[ServiceProductIdEnum["PROPERTIES"] = 5] = "PROPERTIES";
1427
1451
  ServiceProductIdEnum[ServiceProductIdEnum["SOLE_TANK"] = 6] = "SOLE_TANK";
1452
+ ServiceProductIdEnum[ServiceProductIdEnum["HOLDINGS_TANK"] = 7] = "HOLDINGS_TANK";
1428
1453
  })(ServiceProductIdEnum || (ServiceProductIdEnum = {}));
1429
1454
 
1430
1455
  class ServiceProduct extends ServiceProduct$1 {
@@ -1437,6 +1462,9 @@ class ServiceProduct extends ServiceProduct$1 {
1437
1462
  isSoleTank() {
1438
1463
  return this.id === ServiceProductIdEnum.SOLE_TANK;
1439
1464
  }
1465
+ isHoldingsTank() {
1466
+ return this.id === ServiceProductIdEnum.HOLDINGS_TANK;
1467
+ }
1440
1468
  isArchived() {
1441
1469
  return this.status === ServiceProductStatusEnum.ARCHIVED;
1442
1470
  }
@@ -1857,6 +1885,8 @@ var ChartAccountsCategoryEnum;
1857
1885
  ChartAccountsCategoryEnum[ChartAccountsCategoryEnum["SOLE_INCOME"] = 12] = "SOLE_INCOME";
1858
1886
  ChartAccountsCategoryEnum[ChartAccountsCategoryEnum["SOLE_EXPENSE"] = 13] = "SOLE_EXPENSE";
1859
1887
  ChartAccountsCategoryEnum[ChartAccountsCategoryEnum["SOLE_DEPRECIATION"] = 14] = "SOLE_DEPRECIATION";
1888
+ ChartAccountsCategoryEnum[ChartAccountsCategoryEnum["HOLDING_EXPENSE"] = 15] = "HOLDING_EXPENSE";
1889
+ ChartAccountsCategoryEnum[ChartAccountsCategoryEnum["HOLDING_INCOME"] = 16] = "HOLDING_INCOME";
1860
1890
  })(ChartAccountsCategoryEnum || (ChartAccountsCategoryEnum = {}));
1861
1891
 
1862
1892
  var ChartAccountsEtpEnum;
@@ -2034,6 +2064,8 @@ var ChartAccountsListEnum;
2034
2064
  ChartAccountsListEnum[ChartAccountsListEnum["PSI_OTHER"] = 858] = "PSI_OTHER";
2035
2065
  ChartAccountsListEnum[ChartAccountsListEnum["PSI_DEDUCTION_ASSOCIATES"] = 859] = "PSI_DEDUCTION_ASSOCIATES";
2036
2066
  ChartAccountsListEnum[ChartAccountsListEnum["PSI_DEDUCTION_OTHER"] = 860] = "PSI_DEDUCTION_OTHER";
2067
+ ChartAccountsListEnum[ChartAccountsListEnum["AUSTRALIAN_GOVERNMENT_SPECIAL_PAYMENTS"] = 871] = "AUSTRALIAN_GOVERNMENT_SPECIAL_PAYMENTS";
2068
+ ChartAccountsListEnum[ChartAccountsListEnum["FHSS"] = 872] = "FHSS";
2037
2069
  })(ChartAccountsListEnum || (ChartAccountsListEnum = {}));
2038
2070
 
2039
2071
  var ChartAccountsMetaFieldListEnum;
@@ -2163,6 +2195,7 @@ const CHART_ACCOUNTS_CATEGORIES = {
2163
2195
  ChartAccountsCategoryEnum.OTHER_INCOME,
2164
2196
  ChartAccountsCategoryEnum.PERSONAL_INCOME,
2165
2197
  ChartAccountsCategoryEnum.SOLE_INCOME,
2198
+ ChartAccountsCategoryEnum.HOLDING_INCOME,
2166
2199
  ],
2167
2200
  expense: [
2168
2201
  ChartAccountsCategoryEnum.PROPERTY_EXPENSE,
@@ -2173,7 +2206,8 @@ const CHART_ACCOUNTS_CATEGORIES = {
2173
2206
  ChartAccountsCategoryEnum.OTHER_EXPENSE,
2174
2207
  ChartAccountsCategoryEnum.PERSONAL_EXPENSE,
2175
2208
  ChartAccountsCategoryEnum.SOLE_EXPENSE,
2176
- ChartAccountsCategoryEnum.SOLE_DEPRECIATION
2209
+ ChartAccountsCategoryEnum.SOLE_DEPRECIATION,
2210
+ ChartAccountsCategoryEnum.HOLDING_EXPENSE,
2177
2211
  ],
2178
2212
  property: [
2179
2213
  ChartAccountsCategoryEnum.PROPERTY_EXPENSE,
@@ -2193,6 +2227,10 @@ const CHART_ACCOUNTS_CATEGORIES = {
2193
2227
  ChartAccountsCategoryEnum.SOLE_EXPENSE,
2194
2228
  ChartAccountsCategoryEnum.SOLE_DEPRECIATION
2195
2229
  ],
2230
+ holding: [
2231
+ ChartAccountsCategoryEnum.HOLDING_EXPENSE,
2232
+ ChartAccountsCategoryEnum.HOLDING_INCOME
2233
+ ],
2196
2234
  personal: [
2197
2235
  ChartAccountsCategoryEnum.PERSONAL_EXPENSE,
2198
2236
  ChartAccountsCategoryEnum.PERSONAL_INCOME
@@ -2220,6 +2258,12 @@ const CHART_ACCOUNTS_CATEGORIES = {
2220
2258
  soleDepreciation: [
2221
2259
  ChartAccountsCategoryEnum.SOLE_DEPRECIATION,
2222
2260
  ],
2261
+ holdingExpense: [
2262
+ ChartAccountsCategoryEnum.HOLDING_EXPENSE,
2263
+ ],
2264
+ holdingIncome: [
2265
+ ChartAccountsCategoryEnum.HOLDING_INCOME,
2266
+ ],
2223
2267
  workTankHeader: [
2224
2268
  ChartAccountsCategoryEnum.WORK_INCOME,
2225
2269
  ChartAccountsCategoryEnum.OTHER_INCOME,
@@ -2243,6 +2287,7 @@ const CHART_ACCOUNTS_CATEGORIES = {
2243
2287
  ChartAccountsCategoryEnum.PROPERTY_INCOME,
2244
2288
  ChartAccountsCategoryEnum.WORK_INCOME,
2245
2289
  ChartAccountsCategoryEnum.OTHER_INCOME,
2290
+ ChartAccountsCategoryEnum.HOLDING_INCOME,
2246
2291
  ChartAccountsCategoryEnum.PERSONAL_INCOME,
2247
2292
  ChartAccountsCategoryEnum.PROPERTY_EXPENSE,
2248
2293
  ChartAccountsCategoryEnum.PROPERTY_DEPRECIATION,
@@ -2250,6 +2295,7 @@ const CHART_ACCOUNTS_CATEGORIES = {
2250
2295
  ChartAccountsCategoryEnum.WORK_DEPRECIATION,
2251
2296
  ChartAccountsCategoryEnum.WORK_EXPENSE,
2252
2297
  ChartAccountsCategoryEnum.OTHER_EXPENSE,
2298
+ ChartAccountsCategoryEnum.HOLDING_EXPENSE,
2253
2299
  ChartAccountsCategoryEnum.PERSONAL_EXPENSE
2254
2300
  ]
2255
2301
  };
@@ -4339,11 +4385,13 @@ const USER_ROLES = {
4339
4385
  ROLE_EMPLOYEE: [UserRolesEnum.ACCOUNTANT, UserRolesEnum.ADVISOR],
4340
4386
  ROLE_ACCOUNTANT: [UserRolesEnum.ACCOUNTANT],
4341
4387
  ROLE_ADVISOR: [UserRolesEnum.ADVISOR],
4388
+ // @TODO makes no sense, these roles can't be hierarchical
4342
4389
  ROLE_CLIENT: [UserRolesEnum.CLIENT],
4343
4390
  ROLE_USER_SUBSCRIPTION: [UserRolesEnum.SUBSCRIPTION],
4344
4391
  ROLE_USER_WORK: [UserRolesEnum.WORK_TANK],
4345
4392
  ROLE_USER_PROPERTY: [UserRolesEnum.PROPERTY_TANK],
4346
4393
  ROLE_USER_SOLE: [UserRolesEnum.SOLE_TANK],
4394
+ ROLE_USER_HOLDING: [UserRolesEnum.HOLDING_TANK],
4347
4395
  };
4348
4396
 
4349
4397
  /**
@@ -5043,6 +5091,9 @@ __decorate([
5043
5091
  __decorate([
5044
5092
  Type(() => SoleInvoiceItem)
5045
5093
  ], Transaction.prototype, "soleInvoiceItem", void 0);
5094
+ __decorate([
5095
+ Transform(({ value }) => +value)
5096
+ ], Transaction.prototype, "tax", void 0);
5046
5097
 
5047
5098
  var TransactionCategoryEnum;
5048
5099
  (function (TransactionCategoryEnum) {
@@ -8195,6 +8246,37 @@ __decorate([
8195
8246
  Type(() => Document)
8196
8247
  ], DocumentFolder.prototype, "documents", void 0);
8197
8248
 
8249
+ class HoldingType extends AbstractModel {
8250
+ }
8251
+ __decorate([
8252
+ Type(() => User)
8253
+ ], HoldingType.prototype, "user", void 0);
8254
+
8255
+ class HoldingSale extends AbstractModel {
8256
+ }
8257
+ __decorate([
8258
+ Type(() => AppFile)
8259
+ ], HoldingSale.prototype, "file", void 0);
8260
+
8261
+ class Holding extends AbstractModel {
8262
+ }
8263
+ __decorate([
8264
+ Type(() => Date)
8265
+ ], Holding.prototype, "date", void 0);
8266
+ __decorate([
8267
+ Type(() => User)
8268
+ ], Holding.prototype, "user", void 0);
8269
+ __decorate([
8270
+ Type(() => HoldingType)
8271
+ ], Holding.prototype, "type", void 0);
8272
+ __decorate([
8273
+ Type(() => AppFile)
8274
+ ], Holding.prototype, "file", void 0);
8275
+ __decorate([
8276
+ Type(() => HoldingSale),
8277
+ Transform(({ value }) => new Collection(value))
8278
+ ], Holding.prototype, "sales", void 0);
8279
+
8198
8280
  const NAME_TOKEN = 'token';
8199
8281
  const NAME_REFRESH_TOKEN = 'refreshToken';
8200
8282
  class JwtService extends JwtHelperService {
@@ -10232,20 +10314,6 @@ class Badge extends AbstractModel {
10232
10314
  }
10233
10315
 
10234
10316
  class ClientIncomeTypes extends ClientIncomeTypes$1 {
10235
- constructor() {
10236
- super(...arguments);
10237
- this.salary = false;
10238
- this.property = false;
10239
- this.sole = false;
10240
- this.dividends = false;
10241
- this.other = false;
10242
- }
10243
- /**
10244
- * Get count of selected income types
10245
- */
10246
- get length() {
10247
- return Object.values(this).filter((value) => typeof value === 'boolean' && value).length;
10248
- }
10249
10317
  }
10250
10318
 
10251
10319
  class ClientInvite extends ClientInvite$1 {
@@ -11034,6 +11102,15 @@ class MyTaxIncomeStatements {
11034
11102
  .get(ChartAccountsListEnum.ATTRIBUTABLE_PSI).sumBy('grossAmount');
11035
11103
  this.attributablePsiTransactionsTotalTax = this.transactionsByChartAccounts
11036
11104
  .get(ChartAccountsListEnum.ATTRIBUTABLE_PSI).sumBy('tax');
11105
+ this.fhssTransactionsTotalAmount = this.transactionsByChartAccounts
11106
+ .get(ChartAccountsListEnum.FHSS).sumBy('grossAmount');
11107
+ this.fhssTransactionsTotalTax = this.transactionsByChartAccounts
11108
+ .get(ChartAccountsListEnum.FHSS).sumBy('tax');
11109
+ // Australian Government Special Payments
11110
+ this.australianSpecialPaymentsTotalAmount = this.transactionsByChartAccounts
11111
+ .get(ChartAccountsListEnum.AUSTRALIAN_GOVERNMENT_SPECIAL_PAYMENTS).sumBy('grossAmount');
11112
+ this.australianSpecialPaymentsTotalTax = this.transactionsByChartAccounts
11113
+ .get(ChartAccountsListEnum.AUSTRALIAN_GOVERNMENT_SPECIAL_PAYMENTS).sumBy('tax');
11037
11114
  }
11038
11115
  }
11039
11116
 
@@ -15525,6 +15602,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
15525
15602
  }]
15526
15603
  }] });
15527
15604
 
15605
+ /**
15606
+ * Service that handling banks logic
15607
+ */
15608
+ class HoldingService extends RestService$1 {
15609
+ constructor() {
15610
+ super(...arguments);
15611
+ this.modelClass = Holding;
15612
+ this.collectionClass = Collection;
15613
+ this.endpointUri = 'holdings';
15614
+ this.isApiPlatform = true;
15615
+ this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15616
+ }
15617
+ }
15618
+ HoldingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15619
+ HoldingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingService, providedIn: 'root' });
15620
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingService, decorators: [{
15621
+ type: Injectable,
15622
+ args: [{
15623
+ providedIn: 'root'
15624
+ }]
15625
+ }] });
15626
+
15627
+ /**
15628
+ * Service that handling banks logic
15629
+ */
15630
+ class HoldingTypeService extends RestService$1 {
15631
+ constructor() {
15632
+ super(...arguments);
15633
+ this.modelClass = HoldingType;
15634
+ this.collectionClass = Collection;
15635
+ this.endpointUri = 'holding-types';
15636
+ this.isApiPlatform = true;
15637
+ this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15638
+ }
15639
+ }
15640
+ HoldingTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15641
+ HoldingTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingTypeService, providedIn: 'root' });
15642
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingTypeService, decorators: [{
15643
+ type: Injectable,
15644
+ args: [{
15645
+ providedIn: 'root'
15646
+ }]
15647
+ }] });
15648
+
15649
+ /**
15650
+ * Service that handling banks logic
15651
+ */
15652
+ class HoldingSaleService extends RestService$1 {
15653
+ constructor() {
15654
+ super(...arguments);
15655
+ this.modelClass = HoldingSale;
15656
+ this.collectionClass = Collection;
15657
+ this.endpointUri = 'holding-sales';
15658
+ this.isApiPlatform = true;
15659
+ this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15660
+ }
15661
+ }
15662
+ HoldingSaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15663
+ HoldingSaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingSaleService, providedIn: 'root' });
15664
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingSaleService, decorators: [{
15665
+ type: Injectable,
15666
+ args: [{
15667
+ providedIn: 'root'
15668
+ }]
15669
+ }] });
15670
+
15528
15671
  /**
15529
15672
  * Enum list of all possible account setup items. Using with [ACCOUNT_SETUP_ITEMS]{@link ACCOUNT_SETUP_ITEMS}
15530
15673
  */
@@ -15537,6 +15680,7 @@ var AccountSetupItemsEnum;
15537
15680
  AccountSetupItemsEnum[AccountSetupItemsEnum["WORK_LOGBOOK"] = 4] = "WORK_LOGBOOK";
15538
15681
  AccountSetupItemsEnum[AccountSetupItemsEnum["TRANSACTION"] = 5] = "TRANSACTION";
15539
15682
  AccountSetupItemsEnum[AccountSetupItemsEnum["SOLE_BUSINESS"] = 6] = "SOLE_BUSINESS";
15683
+ AccountSetupItemsEnum[AccountSetupItemsEnum["HOLDINGS"] = 7] = "HOLDINGS";
15540
15684
  })(AccountSetupItemsEnum || (AccountSetupItemsEnum = {}));
15541
15685
 
15542
15686
  /**
@@ -15548,14 +15692,14 @@ const ACCOUNT_SETUP_ITEMS = {
15548
15692
  description: 'One the most important steps is to add your salary or wage incomes so we can automatically calculate tax withheld and your forecasted tax position.',
15549
15693
  url: '/client/work-tank/forecasting',
15550
15694
  urlFragment: 'salaryProductTour',
15551
- clientIncomeTypes: ['salary']
15695
+ clientIncomeTypes: ['work']
15552
15696
  }),
15553
15697
  [AccountSetupItemsEnum.OTHER_INCOME]: plainToClass(AccountSetupItem, {
15554
15698
  title: 'Add any other expected incomes',
15555
15699
  description: 'To ensure an accurate tax position forecast, add estimates for any other income types, like dividends, interest, trusts, annuities, director payments etc.',
15556
15700
  url: '/client/work-tank/forecasting',
15557
15701
  urlFragment: 'otherIncomeProductTour',
15558
- clientIncomeTypes: ['dividends', 'other']
15702
+ clientIncomeTypes: ['work']
15559
15703
  }),
15560
15704
  [AccountSetupItemsEnum.PROPERTY]: plainToClass(AccountSetupItem, {
15561
15705
  title: 'Add your properties',
@@ -15569,6 +15713,7 @@ const ACCOUNT_SETUP_ITEMS = {
15569
15713
  description: 'Link banks to automatically feed your account transactions to save you time and money. Allocating live transactions ensures nothing is missed, lost or forgotten!',
15570
15714
  url: '/client/bank-feeds',
15571
15715
  urlFragment: 'bankAccountProductTour',
15716
+ clientIncomeTypes: ['work', 'property', 'sole']
15572
15717
  }),
15573
15718
  [AccountSetupItemsEnum.WORK_LOGBOOK]: plainToClass(AccountSetupItem, {
15574
15719
  title: 'Set up your logbook method',
@@ -15581,6 +15726,7 @@ const ACCOUNT_SETUP_ITEMS = {
15581
15726
  description: 'Select one or multiple transactions, the category from the dropdown and attach your receipt. It’s that simple to capture every possible deduction, and keep organised all throughout the year.',
15582
15727
  url: '/client/bank-feeds',
15583
15728
  urlFragment: 'allocationProductTour',
15729
+ clientIncomeTypes: ['work', 'property', 'sole']
15584
15730
  }),
15585
15731
  [AccountSetupItemsEnum.SOLE_BUSINESS]: plainToClass(AccountSetupItem, {
15586
15732
  title: 'Add your Sole Trader business',
@@ -15588,7 +15734,15 @@ const ACCOUNT_SETUP_ITEMS = {
15588
15734
  url: '/client/sole-tank',
15589
15735
  urlFragment: 'productTour',
15590
15736
  clientIncomeTypes: ['sole']
15591
- })
15737
+ }),
15738
+ [AccountSetupItemsEnum.HOLDINGS]: plainToClass(AccountSetupItem, {
15739
+ title: 'Add your holdings',
15740
+ description: 'Track your trades for shares, crypto and other assets in one place, and auto calculate CGT all year round!',
15741
+ url: '/client/holdings-tank',
15742
+ // @TODO Nicole waiting for product tour from
15743
+ urlFragment: 'productTour',
15744
+ clientIncomeTypes: ['holdings']
15745
+ }),
15592
15746
  };
15593
15747
 
15594
15748
  /**
@@ -15596,7 +15750,7 @@ const ACCOUNT_SETUP_ITEMS = {
15596
15750
  * Checks required steps and their completion
15597
15751
  */
15598
15752
  class AccountSetupService {
15599
- constructor(clientIncomeTypesService, propertyService, incomeSourceService, bankAccountsService, transactionAllocationService, vehicleClaimService, transactionService, soleBusinessService) {
15753
+ constructor(clientIncomeTypesService, propertyService, incomeSourceService, bankAccountsService, transactionAllocationService, vehicleClaimService, transactionService, soleBusinessService, holdingService) {
15600
15754
  this.clientIncomeTypesService = clientIncomeTypesService;
15601
15755
  this.propertyService = propertyService;
15602
15756
  this.incomeSourceService = incomeSourceService;
@@ -15605,6 +15759,7 @@ class AccountSetupService {
15605
15759
  this.vehicleClaimService = vehicleClaimService;
15606
15760
  this.transactionService = transactionService;
15607
15761
  this.soleBusinessService = soleBusinessService;
15762
+ this.holdingService = holdingService;
15608
15763
  this.cacheSubject = new ReplaySubject(1);
15609
15764
  }
15610
15765
  /**
@@ -15614,9 +15769,7 @@ class AccountSetupService {
15614
15769
  if (!this.cache) {
15615
15770
  this.cache = new AccountSetupItemCollection([]);
15616
15771
  this.clientIncomeTypesService.getSingle()
15617
- .pipe(
15618
- // we need account setup only when user selected at least one income type
15619
- filter((incomeTypes) => !!incomeTypes.length), mergeMap((incomeTypes) => {
15772
+ .pipe(mergeMap((incomeTypes) => {
15620
15773
  this.clientIncomeTypesId = incomeTypes.id;
15621
15774
  return this.createBatch(incomeTypes);
15622
15775
  }))
@@ -15673,12 +15826,18 @@ class AccountSetupService {
15673
15826
  if (incomeTypes.sole) {
15674
15827
  batch.push(this.create(AccountSetupItemsEnum.SOLE_BUSINESS, this.soleBusinessService.get()));
15675
15828
  }
15676
- // Bank feeds item is completed when user added at least one bank account (basiq or manual)
15677
- batch.push(this.create(AccountSetupItemsEnum.BANK_FEEDS, this.bankAccountsService.getArray()));
15678
- // Logbook item is completed when user has at least one vehicle claim with any method (kms or logbook)
15679
- batch.push(this.getLogbookItem());
15680
- // Allocation item is completed when user added at least one transaction allocation
15681
- batch.push(this.create(AccountSetupItemsEnum.TRANSACTION, this.transactionAllocationService.get()));
15829
+ // holdings item is completed when user added at least one holding
15830
+ if (incomeTypes.holdings) {
15831
+ batch.push(this.create(AccountSetupItemsEnum.HOLDINGS, this.holdingService.getArray()));
15832
+ }
15833
+ if (incomeTypes.sole || incomeTypes.property || incomeTypes.work) {
15834
+ // Bank feeds item is completed when user added at least one bank account (basiq or manual)
15835
+ batch.push(this.create(AccountSetupItemsEnum.BANK_FEEDS, this.bankAccountsService.getArray()));
15836
+ // Logbook item is completed when user has at least one vehicle claim with any method (kms or logbook)
15837
+ batch.push(this.getLogbookItem());
15838
+ // Allocation item is completed when user added at least one transaction allocation
15839
+ batch.push(this.create(AccountSetupItemsEnum.TRANSACTION, this.transactionAllocationService.get()));
15840
+ }
15682
15841
  return combineLatest(batch).pipe(map((items) => new AccountSetupItemCollection(items)));
15683
15842
  }
15684
15843
  /**
@@ -15709,14 +15868,14 @@ class AccountSetupService {
15709
15868
  }));
15710
15869
  }
15711
15870
  }
15712
- AccountSetupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AccountSetupService, deps: [{ token: ClientIncomeTypesService }, { token: PropertyService }, { token: IncomeSourceService }, { token: BankAccountService }, { token: TransactionAllocationService }, { token: VehicleClaimService }, { token: TransactionService }, { token: SoleBusinessService }], target: i0.ɵɵFactoryTarget.Injectable });
15871
+ AccountSetupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AccountSetupService, deps: [{ token: ClientIncomeTypesService }, { token: PropertyService }, { token: IncomeSourceService }, { token: BankAccountService }, { token: TransactionAllocationService }, { token: VehicleClaimService }, { token: TransactionService }, { token: SoleBusinessService }, { token: HoldingService }], target: i0.ɵɵFactoryTarget.Injectable });
15713
15872
  AccountSetupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AccountSetupService, providedIn: 'root' });
15714
15873
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AccountSetupService, decorators: [{
15715
15874
  type: Injectable,
15716
15875
  args: [{
15717
15876
  providedIn: 'root'
15718
15877
  }]
15719
- }], ctorParameters: function () { return [{ type: ClientIncomeTypesService }, { type: PropertyService }, { type: IncomeSourceService }, { type: BankAccountService }, { type: TransactionAllocationService }, { type: VehicleClaimService }, { type: TransactionService }, { type: SoleBusinessService }]; } });
15878
+ }], ctorParameters: function () { return [{ type: ClientIncomeTypesService }, { type: PropertyService }, { type: IncomeSourceService }, { type: BankAccountService }, { type: TransactionAllocationService }, { type: VehicleClaimService }, { type: TransactionService }, { type: SoleBusinessService }, { type: HoldingService }]; } });
15720
15879
 
15721
15880
  /**
15722
15881
  * Service to work with Rewardful (affiliate program) API
@@ -17920,7 +18079,7 @@ class ClientIncomeTypesForm extends AbstractForm {
17920
18079
  work: new UntypedFormControl(clientIncomeTypes.work || false),
17921
18080
  property: new UntypedFormControl(clientIncomeTypes.property || false),
17922
18081
  sole: new UntypedFormControl(clientIncomeTypes.sole || false),
17923
- holdings: new UntypedFormControl({ value: clientIncomeTypes.holdings || false, disabled: true })
18082
+ holdings: new UntypedFormControl(clientIncomeTypes.holdings || false)
17924
18083
  }, clientIncomeTypes, atLeastOneCheckedValidator());
17925
18084
  this.clientIncomeTypes = clientIncomeTypes;
17926
18085
  }
@@ -18604,6 +18763,22 @@ class MyTaxIncomeStatementsForm extends AbstractForm {
18604
18763
  value: incomeStatements.attributablePsiTransactionsTotalTax,
18605
18764
  disabled: true
18606
18765
  }),
18766
+ fhssTransactionsTotalAmount: new UntypedFormControl({
18767
+ value: incomeStatements.fhssTransactionsTotalAmount,
18768
+ disabled: true
18769
+ }),
18770
+ fhssTransactionsTotalTax: new UntypedFormControl({
18771
+ value: incomeStatements.fhssTransactionsTotalTax,
18772
+ disabled: true
18773
+ }),
18774
+ australianSpecialPaymentsTotalAmount: new UntypedFormControl({
18775
+ value: incomeStatements.australianSpecialPaymentsTotalAmount,
18776
+ disabled: true
18777
+ }),
18778
+ australianSpecialPaymentsTotalTax: new UntypedFormControl({
18779
+ value: incomeStatements.australianSpecialPaymentsTotalTax,
18780
+ disabled: true
18781
+ }),
18607
18782
  });
18608
18783
  this.incomeStatements = incomeStatements;
18609
18784
  }
@@ -19488,5 +19663,5 @@ class DepreciationForm extends TransactionBaseForm {
19488
19663
  * Generated bundle index. Do not edit.
19489
19664
  */
19490
19665
 
19491
- export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualFrequencyEnum, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankLoginData, BankLoginForm, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqService, BasiqToken, BasiqTokenService, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsSalaryIncludedListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartData, ChartSerie, Chat, ChatCollection, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientIncomeTypes, ClientIncomeTypesForm, ClientIncomeTypesService, ClientInvite, ClientInviteCollection, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReceipt, DepreciationReceiptService, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderService, DocumentService, DocumentTypeEnum, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeInvite, EmployeeInviteService, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, Firm, FirmService, FirmTypeEnum, FormValidationsEnum, GoogleService, HeaderTitleService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, InterceptorsModule, IntercomService, InviteStatusEnum, JsPdf, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookBestPeriodService, LogbookPeriod, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentService, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, ReceiptService, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestService$1 as RestService, RewardfulService, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessLossesCollection, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, StripePromoCode, SubscriptionItemCollection, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReview, TaxReviewCollection, TaxReviewHistoryService, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseForm, TransactionCalculationService, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReceipt, TransactionReceiptService, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, TutorialVideoService, USER_ROLES, USER_WORK_POSITION, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserInviteForm, UserMedicareExemptionEnum, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, minDateValidator, passwordMatchValidator, passwordValidator, replace, roundTo, sort, sortDeep, taxReviewFilterPredicate, toArray };
19666
+ export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualFrequencyEnum, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankLoginData, BankLoginForm, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqService, BasiqToken, BasiqTokenService, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsSalaryIncludedListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartData, ChartSerie, Chat, ChatCollection, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientIncomeTypes, ClientIncomeTypesForm, ClientIncomeTypesService, ClientInvite, ClientInviteCollection, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReceipt, DepreciationReceiptService, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderService, DocumentService, DocumentTypeEnum, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeInvite, EmployeeInviteService, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, Firm, FirmService, FirmTypeEnum, FormValidationsEnum, GoogleService, HeaderTitleService, Holding, HoldingSale, HoldingSaleService, HoldingService, HoldingType, HoldingTypeService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, InterceptorsModule, IntercomService, InviteStatusEnum, JsPdf, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookBestPeriodService, LogbookPeriod, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentService, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, ReceiptService, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestService$1 as RestService, RewardfulService, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessLossesCollection, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, StripePromoCode, SubscriptionItemCollection, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReview, TaxReviewCollection, TaxReviewHistoryService, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseForm, TransactionCalculationService, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReceipt, TransactionReceiptService, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, TutorialVideoService, USER_ROLES, USER_WORK_POSITION, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserInviteForm, UserMedicareExemptionEnum, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, minDateValidator, passwordMatchValidator, passwordValidator, replace, roundTo, sort, sortDeep, taxReviewFilterPredicate, toArray };
19492
19667
  //# sourceMappingURL=taxtank-core.mjs.map