taxtank-core 0.10.5 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/bundles/taxtank-core.umd.js +3775 -3166
  2. package/bundles/taxtank-core.umd.js.map +1 -1
  3. package/esm2015/lib/collections/account-setup-item.collection.js +11 -0
  4. package/esm2015/lib/collections/bank-transaction.collection.js +2 -2
  5. package/esm2015/lib/collections/collection-dictionary.js +8 -8
  6. package/esm2015/lib/collections/collection.js +8 -1
  7. package/esm2015/lib/collections/report/property/property-report-item-depreciation.collection.js +22 -0
  8. package/esm2015/lib/collections/report/property/property-report-item-transaction.collection.js +22 -0
  9. package/esm2015/lib/collections/report/property/property-report-item.collection.js +13 -0
  10. package/esm2015/lib/collections/transaction-allocation.collection.js +2 -2
  11. package/esm2015/lib/db/Enums/property/property-category-list.enum.js +2 -1
  12. package/esm2015/lib/db/Enums/user-status.enum.js +1 -2
  13. package/esm2015/lib/db/Models/client-details.js +1 -1
  14. package/esm2015/lib/db/Models/client-income-types.js +3 -0
  15. package/esm2015/lib/forms/client/client-income-types.form.js +22 -0
  16. package/esm2015/lib/forms/index.js +2 -1
  17. package/esm2015/lib/models/account-setup/account-setup-item.js +6 -0
  18. package/esm2015/lib/models/account-setup/account-setup-items.const.js +44 -0
  19. package/esm2015/lib/models/account-setup/account-setup-items.enum.js +14 -0
  20. package/esm2015/lib/models/client/client-income-types.js +10 -0
  21. package/esm2015/lib/models/depreciation/depreciation.js +3 -3
  22. package/esm2015/lib/models/export/export-data-table.js +6 -0
  23. package/esm2015/lib/models/pdf/pdf-config.js +2 -2
  24. package/esm2015/lib/models/pdf/pdf-orientation.enum.js +6 -0
  25. package/esm2015/lib/models/report/property/property-report-item-depreciation.js +19 -0
  26. package/esm2015/lib/models/report/property/property-report-item-transaction.js +12 -0
  27. package/esm2015/lib/models/report/property/property-report-item.js +27 -0
  28. package/esm2015/lib/services/account-setup/account-setup.service.js +124 -0
  29. package/esm2015/lib/services/http/firm/client-income/client-income-types.service.js +50 -0
  30. package/esm2015/lib/services/http/transaction/transaction.service.js +11 -1
  31. package/esm2015/lib/services/pdf/pdf.service.js +51 -26
  32. package/esm2015/lib/services/property/property-holding-costs/property-holding-costs.service.js +53 -0
  33. package/esm2015/lib/services/report/property/property-transaction-report.service.js +76 -0
  34. package/esm2015/lib/validators/at-least-one.validator.js +11 -0
  35. package/esm2015/lib/validators/index.js +2 -0
  36. package/esm2015/public-api.js +16 -1
  37. package/fesm2015/taxtank-core.js +3333 -2805
  38. package/fesm2015/taxtank-core.js.map +1 -1
  39. package/lib/collections/account-setup-item.collection.d.ts +6 -0
  40. package/lib/collections/collection-dictionary.d.ts +1 -1
  41. package/lib/collections/collection.d.ts +4 -0
  42. package/lib/collections/report/property/property-report-item-depreciation.collection.d.ts +12 -0
  43. package/lib/collections/report/property/property-report-item-transaction.collection.d.ts +12 -0
  44. package/lib/collections/report/property/property-report-item.collection.d.ts +9 -0
  45. package/lib/db/Enums/property/property-category-list.enum.d.ts +2 -1
  46. package/lib/db/Enums/user-status.enum.d.ts +1 -2
  47. package/lib/db/Models/client-details.d.ts +5 -1
  48. package/lib/db/Models/client-income-types.d.ts +11 -0
  49. package/lib/forms/client/client-income-types.form.d.ts +7 -0
  50. package/lib/forms/index.d.ts +1 -0
  51. package/lib/models/account-setup/account-setup-item.d.ts +9 -0
  52. package/lib/models/account-setup/account-setup-items.const.d.ts +7 -0
  53. package/lib/models/account-setup/account-setup-items.enum.d.ts +12 -0
  54. package/lib/models/client/client-income-types.d.ts +7 -0
  55. package/lib/models/depreciation/depreciation.d.ts +1 -1
  56. package/lib/models/export/export-data-table.d.ts +9 -0
  57. package/lib/models/pdf/pdf-orientation.enum.d.ts +4 -0
  58. package/lib/models/report/property/property-report-item-depreciation.d.ts +10 -0
  59. package/lib/models/report/property/property-report-item-transaction.d.ts +10 -0
  60. package/lib/models/report/property/property-report-item.d.ts +22 -0
  61. package/lib/services/account-setup/account-setup.service.d.ts +47 -0
  62. package/lib/services/http/firm/client-income/client-income-types.service.d.ts +18 -0
  63. package/lib/services/http/transaction/transaction.service.d.ts +4 -0
  64. package/lib/services/pdf/pdf.service.d.ts +16 -2
  65. package/lib/services/property/property-holding-costs/property-holding-costs.service.d.ts +24 -0
  66. package/lib/services/report/property/property-transaction-report.service.d.ts +42 -0
  67. package/lib/validators/at-least-one.validator.d.ts +6 -0
  68. package/lib/validators/index.d.ts +1 -0
  69. package/package.json +1 -1
  70. package/public-api.d.ts +15 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.