taxtank-core 0.8.4 → 0.9.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 (167) hide show
  1. package/bundles/taxtank-core.umd.js +180 -134
  2. package/bundles/taxtank-core.umd.js.map +1 -1
  3. package/esm2015/lib/collections/tax-summary/report-item.collection.js +141 -0
  4. package/esm2015/lib/db/Models/transaction-base.js +2 -1
  5. package/esm2015/lib/models/tax-summary/report-item-details.js +9 -0
  6. package/esm2015/lib/models/tax-summary/report-item.js +15 -0
  7. package/esm2015/lib/models/tax-summary/tax-summary-section.js +5 -5
  8. package/esm2015/lib/models/toast/toast-type.enum.js +8 -0
  9. package/esm2015/lib/models/toast/toast.js +9 -0
  10. package/esm2015/lib/services/http/address/address.service.js +39 -0
  11. package/esm2015/lib/services/http/bank/bank-account/bank-account.service.js +118 -0
  12. package/esm2015/lib/services/http/bank/bank-connection/bank-connection.service.js +52 -0
  13. package/esm2015/lib/services/http/bank/bank-transaction/bank-transaction.service.js +89 -0
  14. package/esm2015/lib/services/http/bank/bank.service.js +24 -0
  15. package/esm2015/lib/services/http/bank/basiq/basiq.service.js +94 -0
  16. package/esm2015/lib/services/http/chart-accounts/chart-accounts-depreciations/chart-accounts-depreciations.service.js +38 -0
  17. package/esm2015/lib/services/http/chart-accounts/chart-accounts.service.js +89 -0
  18. package/esm2015/lib/services/http/chat/chat.service.js +77 -0
  19. package/esm2015/lib/services/http/chat/message/message.service.js +65 -0
  20. package/esm2015/lib/services/http/chat/message-document/message-document.service.js +118 -0
  21. package/esm2015/lib/services/{depreciation/capital-project.service.js → http/depreciation/depreciation-capital-project/depreciation-capital-project.service.js} +7 -7
  22. package/esm2015/lib/services/http/depreciation/depreciation.service.js +146 -0
  23. package/esm2015/lib/services/http/document/document-folder/document-folder.service.js +84 -0
  24. package/esm2015/lib/services/{client → http/firm/client-invite}/client-invite.service.js +7 -7
  25. package/esm2015/lib/services/http/firm/client-movement/client-movement.service.js +98 -0
  26. package/esm2015/lib/services/http/firm/employee/employee.service.js +39 -0
  27. package/esm2015/lib/services/http/firm/employee-invite/employee-invite.service.js +53 -0
  28. package/esm2015/lib/services/http/firm/firm.service.js +79 -0
  29. package/esm2015/lib/services/http/firm/portfolio-report/client-portfolio-report.service.js +37 -0
  30. package/esm2015/lib/services/http/income-source/income-source-forecast/income-source-forecast.service.js +90 -0
  31. package/esm2015/lib/services/http/income-source/income-source.service.js +109 -0
  32. package/esm2015/lib/services/http/income-source/salary-forecast/salary-forecast.service.js +90 -0
  33. package/esm2015/lib/services/http/income-source/sole-forecast/sole-forecast.service.js +87 -0
  34. package/esm2015/lib/services/http/loan/borrowing-expense/borrowing-expense.service.js +73 -0
  35. package/esm2015/lib/services/http/loan/loan.service.js +145 -0
  36. package/esm2015/lib/services/http/property/property-category/property-category.service.js +23 -0
  37. package/esm2015/lib/services/http/property/property-category-movement/property-category-movement.service.js +47 -0
  38. package/esm2015/lib/services/http/property/property-document/property-document.service.js +70 -0
  39. package/esm2015/lib/services/http/property/property-sale/property-sale.service.js +20 -0
  40. package/esm2015/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.js +21 -0
  41. package/esm2015/lib/services/http/property/property-share/property-share.service.js +115 -0
  42. package/esm2015/lib/services/http/property/property.service.js +126 -0
  43. package/esm2015/lib/services/http/rest/rest.service.js +190 -0
  44. package/esm2015/lib/services/http/service-notification/service-notification.service.js +65 -0
  45. package/esm2015/lib/services/http/subscription/subscription.service.js +157 -0
  46. package/esm2015/lib/services/http/tax-review/tax-review-history/tax-review-history.service.js +41 -0
  47. package/esm2015/lib/services/http/tax-review/tax-review.service.js +103 -0
  48. package/esm2015/lib/services/http/tax-summary/tax-summary.service.js +71 -0
  49. package/esm2015/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.js +85 -0
  50. package/esm2015/lib/services/http/transaction/transaction.service.js +319 -0
  51. package/esm2015/lib/services/http/user/occupation/occupation.service.js +45 -0
  52. package/esm2015/lib/services/http/user/user-event-setting/user-event-setting.service.js +59 -0
  53. package/esm2015/lib/services/http/user/user-event-type/user-event-type.service.js +29 -0
  54. package/esm2015/lib/services/http/user/user.service.js +124 -0
  55. package/esm2015/lib/services/http/vehicle/vehicle.service.js +237 -0
  56. package/esm2015/lib/services/property/equity-position-chart/equity-position-chart.service.js +45 -0
  57. package/esm2015/lib/services/toast/toast.service.js +26 -0
  58. package/esm2015/public-api.js +54 -51
  59. package/fesm2015/taxtank-core.js +98 -56
  60. package/fesm2015/taxtank-core.js.map +1 -1
  61. package/lib/collections/{tax-return-category-item.collection.d.ts → tax-summary/report-item.collection.d.ts} +5 -5
  62. package/lib/models/tax-summary/{tax-return-category-item-details.d.ts → report-item-details.d.ts} +2 -2
  63. package/lib/models/tax-summary/{tax-return-category-item.d.ts → report-item.d.ts} +4 -4
  64. package/lib/models/tax-summary/tax-summary-section.d.ts +2 -2
  65. package/lib/models/toast/toast-type.enum.d.ts +6 -0
  66. package/lib/models/toast/toast.d.ts +10 -0
  67. package/lib/services/{address → http/address}/address.service.d.ts +1 -1
  68. package/lib/services/{bank → http/bank/bank-account}/bank-account.service.d.ts +5 -5
  69. package/lib/services/{bank → http/bank/bank-connection}/bank-connection.service.d.ts +5 -5
  70. package/lib/services/{bank → http/bank/bank-transaction}/bank-transaction.service.d.ts +5 -5
  71. package/lib/services/{bank → http/bank}/bank.service.d.ts +4 -4
  72. package/lib/services/{bank → http/bank/basiq}/basiq.service.d.ts +7 -7
  73. package/lib/services/{chart-accounts → http/chart-accounts/chart-accounts-depreciations}/chart-accounts-depreciations.service.d.ts +4 -4
  74. package/lib/services/{chart-accounts → http/chart-accounts}/chart-accounts.service.d.ts +3 -3
  75. package/lib/services/{chat → http/chat}/chat.service.d.ts +7 -7
  76. package/lib/services/{chat → http/chat/message}/message.service.d.ts +7 -7
  77. package/lib/services/{chat → http/chat/message-document}/message-document.service.d.ts +3 -3
  78. package/lib/services/{depreciation/capital-project.service.d.ts → http/depreciation/depreciation-capital-project/depreciation-capital-project.service.d.ts} +4 -4
  79. package/lib/services/{depreciation → http/depreciation}/depreciation.service.d.ts +5 -5
  80. package/lib/services/{document → http/document/document-folder}/document-folder.service.d.ts +6 -6
  81. package/lib/services/{client → http/firm/client-invite}/client-invite.service.d.ts +4 -4
  82. package/lib/services/{client → http/firm/client-movement}/client-movement.service.d.ts +7 -7
  83. package/lib/services/{employee → http/firm/employee}/employee.service.d.ts +4 -4
  84. package/lib/services/{employee → http/firm/employee-invite}/employee-invite.service.d.ts +4 -4
  85. package/lib/services/{firm → http/firm}/firm.service.d.ts +2 -2
  86. package/lib/services/{client → http/firm/portfolio-report}/client-portfolio-report.service.d.ts +1 -1
  87. package/lib/services/{income-source → http/income-source/income-source-forecast}/income-source-forecast.service.d.ts +5 -5
  88. package/lib/services/{income-source → http/income-source}/income-source.service.d.ts +8 -8
  89. package/lib/services/{income-source → http/income-source/salary-forecast}/salary-forecast.service.d.ts +6 -6
  90. package/lib/services/{income-source → http/income-source/sole-forecast}/sole-forecast.service.d.ts +5 -5
  91. package/lib/services/{borrowing-expense → http/loan/borrowing-expense}/borrowing-expense.service.d.ts +2 -2
  92. package/lib/services/{loan → http/loan}/loan.service.d.ts +6 -6
  93. package/lib/services/{property → http/property}/property-category/property-category.service.d.ts +4 -4
  94. package/lib/services/{property → http/property/property-category-movement}/property-category-movement.service.d.ts +4 -4
  95. package/lib/services/{property → http/property}/property-document/property-document.service.d.ts +5 -5
  96. package/lib/services/http/property/property-sale/property-sale.service.d.ts +10 -0
  97. package/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.d.ts +11 -0
  98. package/lib/services/{property → http/property}/property-share/property-share.service.d.ts +5 -5
  99. package/lib/services/{property → http/property}/property.service.d.ts +5 -5
  100. package/lib/services/{base-rest.service.d.ts → http/rest/rest.service.d.ts} +4 -4
  101. package/lib/services/http/service-notification/service-notification.service.d.ts +31 -0
  102. package/lib/services/{subscription → http/subscription}/subscription.service.d.ts +6 -6
  103. package/lib/services/{tax-review → http/tax-review/tax-review-history}/tax-review-history.service.d.ts +5 -5
  104. package/lib/services/{tax-review → http/tax-review}/tax-review.service.d.ts +6 -6
  105. package/lib/services/{tax-summary → http/tax-summary}/tax-summary.service.d.ts +2 -2
  106. package/lib/services/{transaction → http/transaction/transaction-allocation}/transaction-allocation.service.d.ts +6 -6
  107. package/lib/services/{transaction → http/transaction}/transaction.service.d.ts +7 -7
  108. package/lib/services/{user → http/user/occupation}/occupation.service.d.ts +1 -1
  109. package/lib/services/{user-event → http/user/user-event-setting}/user-event-setting.service.d.ts +5 -5
  110. package/lib/services/{user-event → http/user/user-event-type}/user-event-type.service.d.ts +5 -5
  111. package/lib/services/{user → http/user}/user.service.d.ts +3 -3
  112. package/lib/services/{work/work-tank.service.d.ts → http/vehicle/vehicle.service.d.ts} +9 -8
  113. package/lib/services/property/{equity-position-chart.service.d.ts → equity-position-chart/equity-position-chart.service.d.ts} +1 -1
  114. package/lib/services/toast/toast.service.d.ts +13 -0
  115. package/package.json +1 -1
  116. package/public-api.d.ts +53 -50
  117. package/esm2015/lib/collections/tax-return-category-item.collection.js +0 -141
  118. package/esm2015/lib/models/tax-summary/tax-return-category-item-details.js +0 -9
  119. package/esm2015/lib/models/tax-summary/tax-return-category-item.js +0 -15
  120. package/esm2015/lib/services/address/address.service.js +0 -39
  121. package/esm2015/lib/services/bank/bank-account.service.js +0 -118
  122. package/esm2015/lib/services/bank/bank-connection.service.js +0 -52
  123. package/esm2015/lib/services/bank/bank-transaction.service.js +0 -89
  124. package/esm2015/lib/services/bank/bank.service.js +0 -24
  125. package/esm2015/lib/services/bank/basiq.service.js +0 -94
  126. package/esm2015/lib/services/base-rest.service.js +0 -190
  127. package/esm2015/lib/services/borrowing-expense/borrowing-expense.service.js +0 -73
  128. package/esm2015/lib/services/chart-accounts/chart-accounts-depreciations.service.js +0 -38
  129. package/esm2015/lib/services/chart-accounts/chart-accounts.service.js +0 -89
  130. package/esm2015/lib/services/chat/chat.service.js +0 -77
  131. package/esm2015/lib/services/chat/message-document.service.js +0 -118
  132. package/esm2015/lib/services/chat/message.service.js +0 -65
  133. package/esm2015/lib/services/client/client-movement.service.js +0 -98
  134. package/esm2015/lib/services/client/client-portfolio-report.service.js +0 -37
  135. package/esm2015/lib/services/depreciation/depreciation.service.js +0 -146
  136. package/esm2015/lib/services/document/document-folder.service.js +0 -84
  137. package/esm2015/lib/services/employee/employee-invite.service.js +0 -53
  138. package/esm2015/lib/services/employee/employee.service.js +0 -39
  139. package/esm2015/lib/services/firm/firm.service.js +0 -79
  140. package/esm2015/lib/services/income-source/income-source-forecast.service.js +0 -90
  141. package/esm2015/lib/services/income-source/income-source.service.js +0 -109
  142. package/esm2015/lib/services/income-source/salary-forecast.service.js +0 -90
  143. package/esm2015/lib/services/income-source/sole-forecast.service.js +0 -87
  144. package/esm2015/lib/services/loan/loan.service.js +0 -145
  145. package/esm2015/lib/services/notification/notification.service.js +0 -65
  146. package/esm2015/lib/services/property/equity-position-chart.service.js +0 -45
  147. package/esm2015/lib/services/property/property-category/property-category.service.js +0 -23
  148. package/esm2015/lib/services/property/property-category-movement.service.js +0 -47
  149. package/esm2015/lib/services/property/property-document/property-document.service.js +0 -70
  150. package/esm2015/lib/services/property/property-sale/property-sale.service.js +0 -20
  151. package/esm2015/lib/services/property/property-sale/tax-exemption/tax-exemption.service.js +0 -21
  152. package/esm2015/lib/services/property/property-share/property-share.service.js +0 -115
  153. package/esm2015/lib/services/property/property.service.js +0 -126
  154. package/esm2015/lib/services/subscription/subscription.service.js +0 -157
  155. package/esm2015/lib/services/tax-review/tax-review-history.service.js +0 -41
  156. package/esm2015/lib/services/tax-review/tax-review.service.js +0 -103
  157. package/esm2015/lib/services/tax-summary/tax-summary.service.js +0 -71
  158. package/esm2015/lib/services/transaction/transaction-allocation.service.js +0 -85
  159. package/esm2015/lib/services/transaction/transaction.service.js +0 -319
  160. package/esm2015/lib/services/user/occupation.service.js +0 -45
  161. package/esm2015/lib/services/user/user.service.js +0 -124
  162. package/esm2015/lib/services/user-event/user-event-setting.service.js +0 -59
  163. package/esm2015/lib/services/user-event/user-event-type.service.js +0 -29
  164. package/esm2015/lib/services/work/work-tank.service.js +0 -236
  165. package/lib/services/notification/notification.service.d.ts +0 -31
  166. package/lib/services/property/property-sale/property-sale.service.d.ts +0 -10
  167. package/lib/services/property/property-sale/tax-exemption/tax-exemption.service.d.ts +0 -11
@@ -1853,7 +1853,7 @@ var TaxReturnCategorySectionEnum;
1853
1853
  /**
1854
1854
  * collection for tax return category items
1855
1855
  */
1856
- class TaxReturnCategoryItemCollection extends Collection {
1856
+ class ReportItemCollection extends Collection {
1857
1857
  /**
1858
1858
  * Work income
1859
1859
  */
@@ -1978,7 +1978,7 @@ class TaxReturnCategoryItemCollection extends Collection {
1978
1978
  }
1979
1979
  getTaxCreditsCollection() {
1980
1980
  var _a;
1981
- return new TaxReturnCategoryItemCollection(((_a = this.getByCategory(TaxReturnCategoryListEnum.TAX_CREDITS)) === null || _a === void 0 ? void 0 : _a.items) || []);
1981
+ return new ReportItemCollection(((_a = this.getByCategory(TaxReturnCategoryListEnum.TAX_CREDITS)) === null || _a === void 0 ? void 0 : _a.items) || []);
1982
1982
  }
1983
1983
  getTotalAmountByIncomeSourceName(name) {
1984
1984
  return this.items.reduce(((sum, item) => sum + item.getAmountByIncomeSourceName(name)), 0);
@@ -2201,6 +2201,7 @@ class TransactionBase {
2201
2201
  * Check if current tank is Work
2202
2202
  */
2203
2203
  isWorkTank() {
2204
+ // @TODO remove this hack
2204
2205
  if (this.tankType) {
2205
2206
  return this.tankType === TankTypeEnum.WORK;
2206
2207
  }
@@ -6114,7 +6115,7 @@ __decorate([
6114
6115
  * Used in tax summary reports to show amounts relating to a tax return category entity and details of what this
6115
6116
  * amount is comprised of. Example here shows an amount of $951.96 and also details of what this amount is comprised of:
6116
6117
  */
6117
- class TaxReturnCategoryItem {
6118
+ class ReportItem {
6118
6119
  /**
6119
6120
  * Get amount for one income source
6120
6121
  * @param name Name of income source for filter
@@ -6127,11 +6128,11 @@ class TaxReturnCategoryItem {
6127
6128
 
6128
6129
  /**
6129
6130
  * Used in tax summary reports to show specific details relating to an amount in the report.
6130
- * See structure in TaxReturnCategoryItem class.
6131
+ * See structure in ReportItem class.
6131
6132
  * Example an amount of $550 for property income could be comprised of 2 different property amounts of $300 and $250.
6132
6133
  * This is useful in providing drill-down information for the tax summary report.
6133
6134
  */
6134
- class TaxReturnCategoryItemDetails {
6135
+ class ReportItemDetails {
6135
6136
  }
6136
6137
 
6137
6138
  /**
@@ -6141,8 +6142,8 @@ class TaxReturnCategoryItemDetails {
6141
6142
  class TaxSummarySection {
6142
6143
  }
6143
6144
  __decorate([
6144
- Type(() => TaxReturnCategoryItem),
6145
- Transform(({ value }) => new TaxReturnCategoryItemCollection(value))
6145
+ Type(() => ReportItem),
6146
+ Transform(({ value }) => new ReportItemCollection(value))
6146
6147
  ], TaxSummarySection.prototype, "items", void 0);
6147
6148
  __decorate([
6148
6149
  Transform(({ obj }) => {
@@ -6235,6 +6236,23 @@ var TaxSummaryTypeEnum;
6235
6236
  TaxSummaryTypeEnum["FORECASTS"] = "forecasts";
6236
6237
  })(TaxSummaryTypeEnum || (TaxSummaryTypeEnum = {}));
6237
6238
 
6239
+ /**
6240
+ * Common toast message class
6241
+ */
6242
+ class Toast {
6243
+ constructor() {
6244
+ this.duration = 3000;
6245
+ }
6246
+ }
6247
+
6248
+ var ToastTypeEnum;
6249
+ (function (ToastTypeEnum) {
6250
+ ToastTypeEnum[ToastTypeEnum["INFO"] = 0] = "INFO";
6251
+ ToastTypeEnum[ToastTypeEnum["SUCCESS"] = 1] = "SUCCESS";
6252
+ ToastTypeEnum[ToastTypeEnum["WARNING"] = 2] = "WARNING";
6253
+ ToastTypeEnum[ToastTypeEnum["ERROR"] = 3] = "ERROR";
6254
+ })(ToastTypeEnum || (ToastTypeEnum = {}));
6255
+
6238
6256
  class MyAccountHistory {
6239
6257
  }
6240
6258
 
@@ -6483,7 +6501,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
6483
6501
  * Model - entity service is working with
6484
6502
  * BaseModel - base entity model that extends by Model
6485
6503
  */
6486
- class BaseRestService {
6504
+ class RestService {
6487
6505
  constructor(http, eventDispatcherService, environment) {
6488
6506
  this.http = http;
6489
6507
  this.eventDispatcherService = eventDispatcherService;
@@ -6647,9 +6665,9 @@ class BaseRestService {
6647
6665
  return plainToClass(model, baseModel, { excludePrefixes: ['@'] });
6648
6666
  }
6649
6667
  }
6650
- BaseRestService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: BaseRestService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
6651
- BaseRestService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: BaseRestService, providedIn: 'root' });
6652
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: BaseRestService, decorators: [{
6668
+ RestService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: RestService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
6669
+ RestService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: RestService, providedIn: 'root' });
6670
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: RestService, decorators: [{
6653
6671
  type: Injectable,
6654
6672
  args: [{
6655
6673
  providedIn: 'root'
@@ -6662,7 +6680,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
6662
6680
  /**
6663
6681
  * Service that handling banks logic
6664
6682
  */
6665
- class BankService extends BaseRestService {
6683
+ class BankService extends RestService {
6666
6684
  constructor() {
6667
6685
  super(...arguments);
6668
6686
  this.modelClass = Bank;
@@ -6682,7 +6700,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
6682
6700
  /**
6683
6701
  * Service that handling user's bank accounts logic
6684
6702
  */
6685
- class BankAccountService extends BaseRestService {
6703
+ class BankAccountService extends RestService {
6686
6704
  constructor(http, eventDispatcherService, environment) {
6687
6705
  super(http, eventDispatcherService, environment);
6688
6706
  this.http = http;
@@ -6878,7 +6896,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
6878
6896
  * BankConnection means user account at specific bank (usually each user has only one at the same bank)
6879
6897
  * service handles BankConnection management
6880
6898
  */
6881
- class BankConnectionService extends BaseRestService {
6899
+ class BankConnectionService extends RestService {
6882
6900
  constructor(http, eventDispatcherService, environment) {
6883
6901
  super(http, eventDispatcherService, environment);
6884
6902
  this.http = http;
@@ -6919,7 +6937,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
6919
6937
  /**
6920
6938
  * Service for bank transactions business logic
6921
6939
  */
6922
- class BankTransactionService extends BaseRestService {
6940
+ class BankTransactionService extends RestService {
6923
6941
  constructor(http, eventDispatcherService, environment) {
6924
6942
  super(http, eventDispatcherService, environment);
6925
6943
  this.http = http;
@@ -6998,7 +7016,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
6998
7016
  * basiq is a middleman between bank and user
6999
7017
  * service is responsible for fetching bank related information
7000
7018
  */
7001
- class BasiqService extends BaseRestService {
7019
+ class BasiqService extends RestService {
7002
7020
  constructor(http, eventDispatcherService, environment) {
7003
7021
  super(http, eventDispatcherService, environment);
7004
7022
  this.http = http;
@@ -7225,7 +7243,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
7225
7243
  /**
7226
7244
  * Service to work with depreciation chart accounts
7227
7245
  */
7228
- class ChartAccountsDepreciationService extends BaseRestService {
7246
+ class ChartAccountsDepreciationService extends RestService {
7229
7247
  constructor() {
7230
7248
  super(...arguments);
7231
7249
  this.url = 'chart-accounts-depreciations';
@@ -7297,7 +7315,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
7297
7315
  /**
7298
7316
  * Service for work with chats
7299
7317
  */
7300
- class ChatService extends BaseRestService {
7318
+ class ChatService extends RestService {
7301
7319
  constructor(http, eventDispatcherService, environment, sseService) {
7302
7320
  super(http, eventDispatcherService, environment);
7303
7321
  this.http = http;
@@ -7364,7 +7382,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
7364
7382
  /**
7365
7383
  * Service for work with messages
7366
7384
  */
7367
- class MessageService extends BaseRestService {
7385
+ class MessageService extends RestService {
7368
7386
  constructor(http, eventDispatcherService, environment, sseService) {
7369
7387
  super(http, eventDispatcherService, environment);
7370
7388
  this.http = http;
@@ -7522,7 +7540,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
7522
7540
  args: ['environment']
7523
7541
  }] }]; } });
7524
7542
 
7525
- class ClientInviteService extends BaseRestService {
7543
+ class ClientInviteService extends RestService {
7526
7544
  constructor() {
7527
7545
  super(...arguments);
7528
7546
  this.url = 'clients/invites';
@@ -7614,7 +7632,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
7614
7632
  }]
7615
7633
  }] });
7616
7634
 
7617
- class ClientMovementService extends BaseRestService {
7635
+ class ClientMovementService extends RestService {
7618
7636
  constructor(http, eventDispatcherService, environment) {
7619
7637
  super(http, eventDispatcherService, environment);
7620
7638
  this.http = http;
@@ -7733,7 +7751,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
7733
7751
  /**
7734
7752
  * Service for work with DepreciationCapitalProjects
7735
7753
  */
7736
- class CapitalProjectService {
7754
+ class DepreciationCapitalProjectService {
7737
7755
  constructor(http, environment) {
7738
7756
  this.http = http;
7739
7757
  this.environment = environment;
@@ -7772,9 +7790,9 @@ class CapitalProjectService {
7772
7790
  }));
7773
7791
  }
7774
7792
  }
7775
- CapitalProjectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: CapitalProjectService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
7776
- CapitalProjectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: CapitalProjectService, providedIn: 'root' });
7777
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: CapitalProjectService, decorators: [{
7793
+ DepreciationCapitalProjectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: DepreciationCapitalProjectService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
7794
+ DepreciationCapitalProjectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' });
7795
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
7778
7796
  type: Injectable,
7779
7797
  args: [{
7780
7798
  providedIn: 'root'
@@ -7784,7 +7802,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
7784
7802
  args: ['environment']
7785
7803
  }] }]; } });
7786
7804
 
7787
- class DepreciationService extends BaseRestService {
7805
+ class DepreciationService extends RestService {
7788
7806
  constructor(http, eventDispatcherService, environment) {
7789
7807
  super(http, eventDispatcherService, environment);
7790
7808
  this.http = http;
@@ -7920,7 +7938,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
7920
7938
  /**
7921
7939
  * Service to handle document-folders and depending documents logic
7922
7940
  */
7923
- class DocumentFolderService extends BaseRestService {
7941
+ class DocumentFolderService extends RestService {
7924
7942
  constructor(http, eventDispatcherService, environment) {
7925
7943
  super(http, eventDispatcherService, environment);
7926
7944
  this.http = http;
@@ -7991,7 +8009,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
7991
8009
  args: ['environment']
7992
8010
  }] }]; } });
7993
8011
 
7994
- class EmployeeService extends BaseRestService {
8012
+ class EmployeeService extends RestService {
7995
8013
  constructor() {
7996
8014
  super(...arguments);
7997
8015
  this.url = 'employees';
@@ -8022,7 +8040,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
8022
8040
  }]
8023
8041
  }] });
8024
8042
 
8025
- class EmployeeInviteService extends BaseRestService {
8043
+ class EmployeeInviteService extends RestService {
8026
8044
  constructor() {
8027
8045
  super(...arguments);
8028
8046
  this.url = 'employees/invites';
@@ -8165,7 +8183,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
8165
8183
  /**
8166
8184
  * Service to work with income sources
8167
8185
  */
8168
- class IncomeSourceService extends BaseRestService {
8186
+ class IncomeSourceService extends RestService {
8169
8187
  constructor(http, eventDispatcherService, environment) {
8170
8188
  super(http, eventDispatcherService, environment);
8171
8189
  this.http = http;
@@ -8260,7 +8278,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
8260
8278
  /**
8261
8279
  * Service to work with Other Income Forecasts
8262
8280
  */
8263
- class IncomeSourceForecastService extends BaseRestService {
8281
+ class IncomeSourceForecastService extends RestService {
8264
8282
  constructor(http, eventDispatcherService, environment) {
8265
8283
  super(http, eventDispatcherService, environment);
8266
8284
  this.http = http;
@@ -8339,7 +8357,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
8339
8357
  /**
8340
8358
  * Service to work with Salary Forecasts
8341
8359
  */
8342
- class SalaryForecastService extends BaseRestService {
8360
+ class SalaryForecastService extends RestService {
8343
8361
  constructor(http, eventDispatcherService, environment) {
8344
8362
  super(http, eventDispatcherService, environment);
8345
8363
  this.http = http;
@@ -8415,7 +8433,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
8415
8433
  args: ['environment']
8416
8434
  }] }]; } });
8417
8435
 
8418
- class SoleForecastService extends BaseRestService {
8436
+ class SoleForecastService extends RestService {
8419
8437
  constructor(http, eventDispatcherService, environment) {
8420
8438
  super(http, eventDispatcherService, environment);
8421
8439
  this.http = http;
@@ -8533,7 +8551,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
8533
8551
  /**
8534
8552
  * Service that handling loans logic
8535
8553
  */
8536
- class LoanService extends BaseRestService {
8554
+ class LoanService extends RestService {
8537
8555
  constructor(http, eventDispatcherService, environment) {
8538
8556
  super(http, eventDispatcherService, environment);
8539
8557
  this.http = http;
@@ -8666,7 +8684,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
8666
8684
  /**
8667
8685
  * Service to handle service notifications logic
8668
8686
  */
8669
- class NotificationService extends BaseRestService {
8687
+ class ServiceNotificationService extends RestService {
8670
8688
  constructor(http, eventDispatcherService, environment, sseService) {
8671
8689
  super(http, eventDispatcherService, environment);
8672
8690
  this.http = http;
@@ -8704,9 +8722,9 @@ class NotificationService extends BaseRestService {
8704
8722
  });
8705
8723
  }
8706
8724
  }
8707
- NotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: NotificationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
8708
- NotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: NotificationService, providedIn: 'root' });
8709
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: NotificationService, decorators: [{
8725
+ ServiceNotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: ServiceNotificationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
8726
+ ServiceNotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' });
8727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: ServiceNotificationService, decorators: [{
8710
8728
  type: Injectable,
8711
8729
  args: [{
8712
8730
  providedIn: 'root'
@@ -8860,7 +8878,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
8860
8878
  /**
8861
8879
  * Service for work with Property
8862
8880
  */
8863
- class PropertyService extends BaseRestService {
8881
+ class PropertyService extends RestService {
8864
8882
  constructor(http, eventDispatcherService, environment) {
8865
8883
  super(http, eventDispatcherService, environment);
8866
8884
  this.http = http;
@@ -9091,7 +9109,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
9091
9109
  /**
9092
9110
  * Service for work with Property Categories
9093
9111
  */
9094
- class PropertyCategoryService extends BaseRestService {
9112
+ class PropertyCategoryService extends RestService {
9095
9113
  constructor() {
9096
9114
  super(...arguments);
9097
9115
  this.modelClass = PropertyCategory;
@@ -9110,7 +9128,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
9110
9128
  /**
9111
9129
  * Class for work with Property Documents
9112
9130
  */
9113
- class PropertyDocumentService extends BaseRestService {
9131
+ class PropertyDocumentService extends RestService {
9114
9132
  constructor(http, eventDispatcherService, environment) {
9115
9133
  super(http, eventDispatcherService, environment);
9116
9134
  this.http = http;
@@ -9169,7 +9187,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
9169
9187
  }] }]; } });
9170
9188
 
9171
9189
  // @TODO check and improve logic during refactoring
9172
- class PropertyShareService extends BaseRestService {
9190
+ class PropertyShareService extends RestService {
9173
9191
  constructor(http, eventDispatcherService, environment) {
9174
9192
  super(http, eventDispatcherService, environment);
9175
9193
  this.http = http;
@@ -9272,7 +9290,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
9272
9290
  args: ['environment']
9273
9291
  }] }]; } });
9274
9292
 
9275
- class PropertySaleService extends BaseRestService {
9293
+ class PropertySaleService extends RestService {
9276
9294
  constructor() {
9277
9295
  super(...arguments);
9278
9296
  this.modelClass = PropertySale;
@@ -9326,7 +9344,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
9326
9344
  args: ['environment']
9327
9345
  }] }]; } });
9328
9346
 
9329
- class PropertyCategoryMovementService extends BaseRestService {
9347
+ class PropertyCategoryMovementService extends RestService {
9330
9348
  constructor() {
9331
9349
  super(...arguments);
9332
9350
  this.modelClass = PropertyCategoryMovement;
@@ -9508,7 +9526,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
9508
9526
  /**
9509
9527
  * Service to work with tax review
9510
9528
  */
9511
- class TaxReviewService extends BaseRestService {
9529
+ class TaxReviewService extends RestService {
9512
9530
  constructor(http, eventDispatcherService, environment) {
9513
9531
  super(http, eventDispatcherService, environment);
9514
9532
  this.http = http;
@@ -9599,7 +9617,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
9599
9617
  /**
9600
9618
  * Service to work with tax review history
9601
9619
  */
9602
- class TaxReviewHistoryService extends BaseRestService {
9620
+ class TaxReviewHistoryService extends RestService {
9603
9621
  constructor(http, eventDispatcherService, environment) {
9604
9622
  super(http, eventDispatcherService, environment);
9605
9623
  this.http = http;
@@ -9691,6 +9709,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
9691
9709
  args: ['environment']
9692
9710
  }] }]; } });
9693
9711
 
9712
+ /**
9713
+ * popup notifications service (toast, snackbar).
9714
+ */
9715
+ class ToastService {
9716
+ constructor() {
9717
+ this.toast$ = new ReplaySubject(1);
9718
+ }
9719
+ get() {
9720
+ return this.toast$.asObservable();
9721
+ }
9722
+ add(toast) {
9723
+ this.toast$.next(toast);
9724
+ }
9725
+ }
9726
+ ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
9727
+ ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: ToastService, providedIn: 'root' });
9728
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: ToastService, decorators: [{
9729
+ type: Injectable,
9730
+ args: [{
9731
+ providedIn: 'root'
9732
+ }]
9733
+ }] });
9734
+
9694
9735
  function enumToList(data) {
9695
9736
  const list = [];
9696
9737
  for (const key in data) {
@@ -9707,7 +9748,7 @@ function enumToList(data) {
9707
9748
  /**
9708
9749
  * Service for transactions business logic
9709
9750
  */
9710
- class TransactionService extends BaseRestService {
9751
+ class TransactionService extends RestService {
9711
9752
  constructor(http, eventDispatcherService, environment) {
9712
9753
  super(http, eventDispatcherService, environment);
9713
9754
  this.http = http;
@@ -10009,7 +10050,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
10009
10050
  * Service for transaction allocations business logic
10010
10051
  * @TODO alex refactor
10011
10052
  */
10012
- class TransactionAllocationService extends BaseRestService {
10053
+ class TransactionAllocationService extends RestService {
10013
10054
  constructor(http, eventDispatcherService, environment) {
10014
10055
  super(http, eventDispatcherService, environment);
10015
10056
  this.http = http;
@@ -10276,7 +10317,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
10276
10317
  args: ['environment']
10277
10318
  }] }]; } });
10278
10319
 
10279
- class UserEventSettingService extends BaseRestService {
10320
+ class UserEventSettingService extends RestService {
10280
10321
  constructor(http, eventDispatcherService, environment) {
10281
10322
  super(http, eventDispatcherService, environment);
10282
10323
  this.http = http;
@@ -10325,7 +10366,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
10325
10366
  args: ['environment']
10326
10367
  }] }]; } });
10327
10368
 
10328
- class UserEventTypeService extends BaseRestService {
10369
+ class UserEventTypeService extends RestService {
10329
10370
  constructor(http, eventDispatcherService, environment) {
10330
10371
  super(http, eventDispatcherService, environment);
10331
10372
  this.http = http;
@@ -10350,8 +10391,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
10350
10391
 
10351
10392
  /**
10352
10393
  * Service that allows to work with WorkTank operations
10394
+ * @TODO separate into multiple services, extend restService
10353
10395
  */
10354
- class WorkTankService {
10396
+ class VehicleService {
10355
10397
  constructor(http, transactionService, depreciationService, chartAccountsService, eventDispatcherService, environment) {
10356
10398
  this.http = http;
10357
10399
  this.transactionService = transactionService;
@@ -10552,9 +10594,9 @@ class WorkTankService {
10552
10594
  }));
10553
10595
  }
10554
10596
  }
10555
- WorkTankService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: WorkTankService, deps: [{ token: i1.HttpClient }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
10556
- WorkTankService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: WorkTankService, providedIn: 'root' });
10557
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: WorkTankService, decorators: [{
10597
+ VehicleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: VehicleService, deps: [{ token: i1.HttpClient }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
10598
+ VehicleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: VehicleService, providedIn: 'root' });
10599
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: VehicleService, decorators: [{
10558
10600
  type: Injectable,
10559
10601
  args: [{
10560
10602
  providedIn: 'root'
@@ -10614,7 +10656,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
10614
10656
  }]
10615
10657
  }] });
10616
10658
 
10617
- class TaxExemptionService extends BaseRestService {
10659
+ class TaxExemptionService extends RestService {
10618
10660
  constructor() {
10619
10661
  super(...arguments);
10620
10662
  this.modelClass = TaxExemption;
@@ -10791,5 +10833,5 @@ class ResetPasswordForm extends AbstractForm {
10791
10833
  * Generated bundle index. Do not edit.
10792
10834
  */
10793
10835
 
10794
- export { AbstractForm, Address, AddressService, AddressTypeEnum, AlphabetColorsEnum, AppEvent, AppEventTypeEnum, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Bank, BankAccount, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasiqConfig, BasiqJob, BasiqService, BasiqToken, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CapitalProjectService, ChartAccounts, ChartAccountsCategoryEnum, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsListEnum, ChartAccountsMetadata, ChartAccountsMetadataListEnum, ChartAccountsMetadataTypeEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartData, ChartSerie, Chat, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, DEFAULT_VEHICLE_EXPENSE, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DataTable, DataTableColumn, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpRateEnum, DepreciationReceipt, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderService, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeInvite, EmployeeInviteService, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, FinancialYear, Firm, FirmService, FirmTypeEnum, HeaderTitleService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastService, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSalaryEnum, IncomeSourceTypeListWorkEnum, InterceptorsModule, IntercomService, InviteStatusEnum, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanFrequencyEnum, LoanInterestTypeEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookCollection, LogbookPeriod, LoginForm, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, Notification, NotificationService, Occupation, OccupationService, PasswordForm, PdfService, Phone, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryMovement, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentService, PropertyEquityChartData, PropertyEquityChartItem, PropertyForecast, PropertySale, PropertySaleService, PropertySaleTaxExemptionMetadata, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyValuation, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ResetPasswordForm, SUBSCRIPTION_DESCRIPTION, SUBSCRIPTION_TITLE, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceRecurringIntervalEnum, ServicePriceTypeEnum, ServiceProduct, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleForecast, SoleForecastService, SpareDocumentSpareTypeEnum, SseService, SubscriptionService, SubscriptionTypeEnum, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetadata, TaxExemptionMetadataEnum, TaxExemptionService, TaxReturnCategoryItem, TaxReturnCategoryItemCollection, TaxReturnCategoryItemDetails, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReview, TaxReviewCollection, TaxReviewHistoryService, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionCalculationService, TransactionCollection, TransactionMetadata, TransactionOperationEnum, TransactionReceipt, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, USER_ROLES, USER_WORK_POSITION, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserMedicareExemptionEnum, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, Vehicle, VehicleClaim, VehicleClaimMethodEnum, VehicleLogbook, VehicleLogbookPurposeEnum, WORK_TANK_LOGBOOK_PURPOSE_OPTIONS, WorkTankService, XlsxService, cloneDeep, compare, compareMatOptions, createDate, displayMatOptions, enumToList, getDocIcon, replace, roundTo, sort, sortDeep, taxReviewFilterPredicate };
10836
+ export { AbstractForm, Address, AddressService, AddressTypeEnum, AlphabetColorsEnum, AppEvent, AppEventTypeEnum, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Bank, BankAccount, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasiqConfig, BasiqJob, BasiqService, BasiqToken, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, ChartAccounts, ChartAccountsCategoryEnum, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsListEnum, ChartAccountsMetadata, ChartAccountsMetadataListEnum, ChartAccountsMetadataTypeEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartData, ChartSerie, Chat, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, DEFAULT_VEHICLE_EXPENSE, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DataTable, DataTableColumn, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpRateEnum, DepreciationReceipt, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderService, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeInvite, EmployeeInviteService, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, FinancialYear, Firm, FirmService, FirmTypeEnum, HeaderTitleService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastService, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSalaryEnum, IncomeSourceTypeListWorkEnum, InterceptorsModule, IntercomService, InviteStatusEnum, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanFrequencyEnum, LoanInterestTypeEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookCollection, LogbookPeriod, LoginForm, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, Notification, Occupation, OccupationService, PasswordForm, PdfService, Phone, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryMovement, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentService, PropertyEquityChartData, PropertyEquityChartItem, PropertyForecast, PropertySale, PropertySaleService, PropertySaleTaxExemptionMetadata, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyValuation, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, SUBSCRIPTION_DESCRIPTION, SUBSCRIPTION_TITLE, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceRecurringIntervalEnum, ServicePriceTypeEnum, ServiceProduct, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleForecast, SoleForecastService, SpareDocumentSpareTypeEnum, SseService, SubscriptionService, SubscriptionTypeEnum, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetadata, TaxExemptionMetadataEnum, 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, TransactionCalculationService, TransactionCollection, TransactionMetadata, TransactionOperationEnum, TransactionReceipt, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, USER_ROLES, USER_WORK_POSITION, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserMedicareExemptionEnum, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, Vehicle, VehicleClaim, VehicleClaimMethodEnum, VehicleLogbook, VehicleLogbookPurposeEnum, VehicleService, WORK_TANK_LOGBOOK_PURPOSE_OPTIONS, XlsxService, cloneDeep, compare, compareMatOptions, createDate, displayMatOptions, enumToList, getDocIcon, replace, roundTo, sort, sortDeep, taxReviewFilterPredicate };
10795
10837
  //# sourceMappingURL=taxtank-core.js.map