taxtank-core 0.30.28 → 0.30.30

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 (222) hide show
  1. package/esm2020/lib/collections/holding.collection.mjs +28 -0
  2. package/esm2020/lib/collections/index.mjs +2 -1
  3. package/esm2020/lib/collections/property/property-sale/property-sale.collection.mjs +3 -3
  4. package/esm2020/lib/db/Enums/holding/holding-type-category.enum.mjs +1 -1
  5. package/esm2020/lib/db/Enums/index.mjs +2 -1
  6. package/esm2020/lib/db/Models/client/annual-client-details.mjs +3 -0
  7. package/esm2020/lib/db/Models/client/client-details.mjs +4 -0
  8. package/esm2020/lib/db/Models/client/client-income-types.mjs +4 -0
  9. package/esm2020/lib/db/Models/client/index.mjs +5 -0
  10. package/esm2020/lib/db/Models/client/occupation.mjs +4 -0
  11. package/esm2020/lib/db/Models/index.mjs +2 -4
  12. package/esm2020/lib/db/Models/property/property-sale/property-sale.mjs +1 -1
  13. package/esm2020/lib/db/Models/user/user.mjs +1 -1
  14. package/esm2020/lib/forms/client/annual-client-details.form.mjs +37 -0
  15. package/esm2020/lib/forms/client/index.mjs +3 -0
  16. package/esm2020/lib/forms/holding/holding-sale.form.mjs +39 -0
  17. package/esm2020/lib/forms/holding/holding-type.form.mjs +16 -0
  18. package/esm2020/lib/forms/holding/holding.form.mjs +17 -0
  19. package/esm2020/lib/forms/holding/index.mjs +4 -0
  20. package/esm2020/lib/forms/index.mjs +3 -2
  21. package/esm2020/lib/forms/property/property-sale/property-sale-cost-sale.form.mjs +11 -25
  22. package/esm2020/lib/forms/property/property-sale/property-sale-exemptions.form.mjs +18 -7
  23. package/esm2020/lib/forms/report/my-tax/my-tax-cgt.form.mjs +4 -1
  24. package/esm2020/lib/forms/transaction/work/work-transaction.form.mjs +3 -1
  25. package/esm2020/lib/interceptors/basiq-client-id.interceptor.mjs +3 -3
  26. package/esm2020/lib/interceptors/basiq-token.interceptor.mjs +3 -3
  27. package/esm2020/lib/interceptors/corelogic-interceptor.mjs +3 -3
  28. package/esm2020/lib/interceptors/financial-year-interceptor.mjs +3 -3
  29. package/esm2020/lib/interceptors/interceptors.module.mjs +4 -4
  30. package/esm2020/lib/interceptors/jwt-interceptor.mjs +3 -3
  31. package/esm2020/lib/interceptors/preloader.interceptor.mjs +3 -3
  32. package/esm2020/lib/interceptors/user-switcher-interceptor.mjs +3 -3
  33. package/esm2020/lib/messages/index.mjs +2 -0
  34. package/esm2020/lib/messages/messages.enum.mjs +16 -0
  35. package/esm2020/lib/models/chart-accounts/chart-accounts.mjs +4 -1
  36. package/esm2020/lib/models/client/annual-client-details.mjs +15 -0
  37. package/esm2020/lib/models/client/client-details.mjs +2 -2
  38. package/esm2020/lib/models/client/client-income-types.mjs +2 -2
  39. package/esm2020/lib/models/client/index.mjs +8 -0
  40. package/esm2020/lib/models/endpoint/endpoints.const.mjs +17 -1
  41. package/esm2020/lib/models/holding/holding-sale.mjs +18 -1
  42. package/esm2020/lib/models/holding/holding-type-exchange.mjs +13 -0
  43. package/esm2020/lib/models/holding/holding-type.mjs +37 -1
  44. package/esm2020/lib/models/holding/holding.mjs +32 -1
  45. package/esm2020/lib/models/index.mjs +2 -1
  46. package/esm2020/lib/models/property/property-sale/property-sale.mjs +19 -6
  47. package/esm2020/lib/models/property/property-sale/tax-exemption.mjs +5 -1
  48. package/esm2020/lib/models/property/property.mjs +38 -18
  49. package/esm2020/lib/models/report/my-tax/my-tax-cgt/my-tax-cgt.mjs +7 -6
  50. package/esm2020/lib/models/user/occupation.mjs +2 -2
  51. package/esm2020/lib/services/account-setup/account-setup.service.mjs +3 -3
  52. package/esm2020/lib/services/affiliate/rewardful/rewardful.service.mjs +3 -3
  53. package/esm2020/lib/services/asset/assets.service.mjs +3 -3
  54. package/esm2020/lib/services/auth/auth.service.mjs +3 -3
  55. package/esm2020/lib/services/auth/jwt.service.mjs +3 -3
  56. package/esm2020/lib/services/bank/bank-account-calculation.service.mjs +3 -3
  57. package/esm2020/lib/services/bank/bank-transaction-calculation.service.mjs +3 -3
  58. package/esm2020/lib/services/event/event-dispatcher.service.mjs +3 -3
  59. package/esm2020/lib/services/event/sse.service.mjs +3 -3
  60. package/esm2020/lib/services/export/export-formatter.service.mjs +3 -3
  61. package/esm2020/lib/services/header-title/header-title.service.mjs +3 -3
  62. package/esm2020/lib/services/http/address/address.service.mjs +3 -3
  63. package/esm2020/lib/services/http/bank/bank-account/bank-account.service.mjs +3 -3
  64. package/esm2020/lib/services/http/bank/bank-connection/bank-connection.service.mjs +3 -3
  65. package/esm2020/lib/services/http/bank/bank-transaction/bank-transaction.service.mjs +3 -3
  66. package/esm2020/lib/services/http/bank/bank.service.mjs +3 -3
  67. package/esm2020/lib/services/http/bank/basiq/basiq-token.service.mjs +3 -3
  68. package/esm2020/lib/services/http/bank/basiq/basiq.service.mjs +3 -3
  69. package/esm2020/lib/services/http/chart-accounts/chart-accounts-depreciations/chart-accounts-depreciations.service.mjs +3 -3
  70. package/esm2020/lib/services/http/chart-accounts/chart-accounts.service.mjs +3 -3
  71. package/esm2020/lib/services/http/chat/chat.service.mjs +3 -3
  72. package/esm2020/lib/services/http/chat/message-document.service.mjs +3 -3
  73. package/esm2020/lib/services/http/chat/message.service.mjs +3 -3
  74. package/esm2020/lib/services/http/client/capital-gain/annual-client-details.service.mjs +24 -0
  75. package/esm2020/lib/services/http/client/index.mjs +3 -0
  76. package/esm2020/lib/services/http/client/occupation/occupation.service.mjs +45 -0
  77. package/esm2020/lib/services/http/depreciation/depreciation-capital-project/depreciation-capital-project.service.mjs +3 -3
  78. package/esm2020/lib/services/http/depreciation/depreciation-receipt/depreciation-receipt.service.mjs +3 -3
  79. package/esm2020/lib/services/http/depreciation/depreciation.service.mjs +3 -3
  80. package/esm2020/lib/services/http/document/document-folder/document-folder.service.mjs +3 -3
  81. package/esm2020/lib/services/http/document/document.service.mjs +3 -3
  82. package/esm2020/lib/services/http/facebook/facebook.service.mjs +3 -3
  83. package/esm2020/lib/services/http/file/file.service.mjs +3 -3
  84. package/esm2020/lib/services/http/firm/client-income/client-income-types.service.mjs +4 -4
  85. package/esm2020/lib/services/http/firm/client-invite/client-invite.service.mjs +3 -3
  86. package/esm2020/lib/services/http/firm/client-movement/client-movement.service.mjs +3 -3
  87. package/esm2020/lib/services/http/firm/employee/employee.service.mjs +3 -3
  88. package/esm2020/lib/services/http/firm/employee-invite/employee-invite.service.mjs +3 -3
  89. package/esm2020/lib/services/http/firm/firm.service.mjs +3 -3
  90. package/esm2020/lib/services/http/firm/portfolio-report/client-portfolio-report.service.mjs +3 -3
  91. package/esm2020/lib/services/http/google/google.service.mjs +3 -3
  92. package/esm2020/lib/services/http/holding/holding-sale.service.mjs +4 -7
  93. package/esm2020/lib/services/http/holding/holding-type.service.mjs +4 -7
  94. package/esm2020/lib/services/http/holding/holding.service.mjs +6 -9
  95. package/esm2020/lib/services/http/income-source/income-source-forecast/income-source-forecast.service.mjs +3 -3
  96. package/esm2020/lib/services/http/income-source/income-source.service.mjs +3 -3
  97. package/esm2020/lib/services/http/income-source/salary-forecast/salary-forecast.service.mjs +3 -3
  98. package/esm2020/lib/services/http/income-source/sole-forecast/sole-forecast.service.mjs +3 -3
  99. package/esm2020/lib/services/http/index.mjs +2 -1
  100. package/esm2020/lib/services/http/loan/borrowing-expense/borrowing-expense.service.mjs +3 -3
  101. package/esm2020/lib/services/http/loan/loan.service.mjs +3 -3
  102. package/esm2020/lib/services/http/property/property-category/property-category.service.mjs +3 -3
  103. package/esm2020/lib/services/http/property/property-category-movement/property-category-movement.service.mjs +3 -3
  104. package/esm2020/lib/services/http/property/property-document/property-document.service.mjs +3 -3
  105. package/esm2020/lib/services/http/property/property-sale/property-sale.service.mjs +3 -3
  106. package/esm2020/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.mjs +3 -3
  107. package/esm2020/lib/services/http/property/property-share/property-share.service.mjs +3 -3
  108. package/esm2020/lib/services/http/property/property.service.mjs +3 -3
  109. package/esm2020/lib/services/http/receipt/receipt.service.mjs +3 -3
  110. package/esm2020/lib/services/http/rest/rest-old.service.mjs +3 -3
  111. package/esm2020/lib/services/http/rest/rest.service.mjs +3 -3
  112. package/esm2020/lib/services/http/service-notification/service-notification.service.mjs +3 -3
  113. package/esm2020/lib/services/http/sole/bas-report/bas-report.service.mjs +3 -3
  114. package/esm2020/lib/services/http/sole/sole-business/sole-business.service.mjs +3 -3
  115. package/esm2020/lib/services/http/sole/sole-business-activity/sole-business-activity.service.mjs +3 -3
  116. package/esm2020/lib/services/http/sole/sole-business-loss/sole-business-loss-rules/sole-business-loss-offset-rule.service.mjs +3 -3
  117. package/esm2020/lib/services/http/sole/sole-business-loss/sole-business-loss.service.mjs +3 -3
  118. package/esm2020/lib/services/http/sole/sole-contact/sole-contact.service.mjs +3 -3
  119. package/esm2020/lib/services/http/sole/sole-depreciation-method/sole-depreciation-method.service.mjs +3 -3
  120. package/esm2020/lib/services/http/sole/sole-details/sole-details.service.mjs +3 -3
  121. package/esm2020/lib/services/http/sole/sole-invoice/sole-invoice.service.mjs +3 -3
  122. package/esm2020/lib/services/http/sole/sole-invoice-template/sole-invoice-template.service.mjs +3 -3
  123. package/esm2020/lib/services/http/subscription/service-payment/service-payment.service.mjs +3 -3
  124. package/esm2020/lib/services/http/subscription/service-payment-method/service-payment-method.service.mjs +3 -3
  125. package/esm2020/lib/services/http/subscription/service-price/service-price.service.mjs +3 -3
  126. package/esm2020/lib/services/http/subscription/service-product/service-product.service.mjs +3 -3
  127. package/esm2020/lib/services/http/subscription/service-subscription/subscription.service.mjs +3 -3
  128. package/esm2020/lib/services/http/tax-review/tax-review-history/tax-review-history.service.mjs +3 -3
  129. package/esm2020/lib/services/http/tax-review/tax-review.service.mjs +3 -3
  130. package/esm2020/lib/services/http/tax-summary/tax-summary.service.mjs +3 -3
  131. package/esm2020/lib/services/http/transaction/transaction-allocation/allocation-rule/allocation-rule.service.mjs +3 -3
  132. package/esm2020/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.mjs +3 -3
  133. package/esm2020/lib/services/http/transaction/transaction-receipt/transaction-receipt.service.mjs +3 -3
  134. package/esm2020/lib/services/http/transaction/transaction.service.mjs +3 -3
  135. package/esm2020/lib/services/http/tutorial-video/tutorial-video.service.mjs +3 -3
  136. package/esm2020/lib/services/http/user/index.mjs +2 -2
  137. package/esm2020/lib/services/http/user/user-event-setting/user-event-setting.service.mjs +3 -3
  138. package/esm2020/lib/services/http/user/user-event-type/user-event-type.service.mjs +3 -3
  139. package/esm2020/lib/services/http/user/user.service.mjs +5 -14
  140. package/esm2020/lib/services/http/user/users-invite/users-invite.service.mjs +3 -3
  141. package/esm2020/lib/services/http/vehicle/vehicle-claim-details.service.mjs +3 -3
  142. package/esm2020/lib/services/http/vehicle/vehicle-claim.service.mjs +3 -3
  143. package/esm2020/lib/services/http/vehicle/vehicle-logbook.service.mjs +3 -3
  144. package/esm2020/lib/services/http/vehicle/vehicle.service.mjs +3 -3
  145. package/esm2020/lib/services/intercom/intercom.service.mjs +3 -3
  146. package/esm2020/lib/services/pdf/pdf-from-dom-element/pdf-from-dom-element.service.mjs +3 -3
  147. package/esm2020/lib/services/pdf/pdf-from-table/pdf-from-data-table/pdf-from-data-table.service.mjs +3 -3
  148. package/esm2020/lib/services/pdf/pdf-from-table/pdf-from-html-table/pdf-from-html-table.service.mjs +3 -3
  149. package/esm2020/lib/services/pdf/pdf-from-table/pdf-from-table.service.mjs +3 -3
  150. package/esm2020/lib/services/preloader/preloader.service.mjs +3 -3
  151. package/esm2020/lib/services/property/corelogic/corelogic.service.mjs +3 -3
  152. package/esm2020/lib/services/property/equity-position-chart/equity-position-chart.service.mjs +3 -3
  153. package/esm2020/lib/services/property/property-calculation/property-calculation.service.mjs +3 -3
  154. package/esm2020/lib/services/report/property/property-transaction-report.service.mjs +3 -3
  155. package/esm2020/lib/services/toast/toast.service.mjs +3 -3
  156. package/esm2020/lib/services/transaction/transaction-calculation.service.mjs +3 -3
  157. package/esm2020/lib/services/user/user-switcher.service.mjs +3 -3
  158. package/esm2020/lib/services/vehicle/logbook-best-period.service.mjs +3 -3
  159. package/esm2020/lib/services/xlsx/xlsx.service.mjs +3 -3
  160. package/esm2020/lib/tt-core.module.mjs +4 -4
  161. package/esm2020/lib/validators/transactions-meta-fields.validator.mjs +34 -0
  162. package/esm2020/public-api.mjs +5 -1
  163. package/fesm2015/taxtank-core.mjs +943 -601
  164. package/fesm2015/taxtank-core.mjs.map +1 -1
  165. package/fesm2020/taxtank-core.mjs +937 -596
  166. package/fesm2020/taxtank-core.mjs.map +1 -1
  167. package/lib/collections/holding.collection.d.ts +10 -0
  168. package/lib/collections/index.d.ts +1 -0
  169. package/lib/collections/property/property-sale/property-sale.collection.d.ts +1 -1
  170. package/lib/db/Enums/index.d.ts +1 -0
  171. package/lib/db/Models/client/annual-client-details.d.ts +12 -0
  172. package/lib/db/Models/{user → client}/client-details.d.ts +1 -2
  173. package/lib/db/Models/client/index.d.ts +4 -0
  174. package/lib/db/Models/index.d.ts +1 -3
  175. package/lib/db/Models/property/property-sale/property-sale.d.ts +2 -3
  176. package/lib/db/Models/user/user.d.ts +1 -1
  177. package/lib/forms/client/annual-client-details.form.d.ts +8 -0
  178. package/lib/forms/client/index.d.ts +2 -0
  179. package/lib/forms/holding/holding-sale.form.d.ts +11 -0
  180. package/lib/forms/holding/holding-type.form.d.ts +5 -0
  181. package/lib/forms/holding/holding.form.d.ts +5 -0
  182. package/lib/forms/holding/index.d.ts +3 -0
  183. package/lib/forms/index.d.ts +2 -1
  184. package/lib/forms/property/property-sale/property-sale-cost-sale.form.d.ts +1 -3
  185. package/lib/forms/property/property-sale/property-sale-exemptions.form.d.ts +6 -6
  186. package/lib/forms/report/my-tax/my-tax-cgt.form.d.ts +4 -1
  187. package/lib/messages/index.d.ts +1 -0
  188. package/lib/messages/messages.enum.d.ts +14 -0
  189. package/lib/models/chart-accounts/chart-accounts.d.ts +1 -0
  190. package/lib/models/client/annual-client-details.d.ts +12 -0
  191. package/lib/models/client/client-details.d.ts +1 -1
  192. package/lib/models/client/client-income-types.d.ts +1 -1
  193. package/lib/models/client/index.d.ts +7 -0
  194. package/lib/models/holding/holding-sale.d.ts +6 -1
  195. package/lib/models/holding/holding-type-exchange.d.ts +11 -0
  196. package/lib/models/holding/holding-type.d.ts +31 -8
  197. package/lib/models/holding/holding.d.ts +16 -1
  198. package/lib/models/index.d.ts +1 -0
  199. package/lib/models/property/property-sale/property-sale.d.ts +7 -2
  200. package/lib/models/property/property-sale/tax-exemption.d.ts +1 -0
  201. package/lib/models/property/property.d.ts +12 -6
  202. package/lib/models/report/my-tax/my-tax-cgt/my-tax-cgt.d.ts +2 -2
  203. package/lib/models/user/occupation.d.ts +1 -1
  204. package/lib/services/http/client/capital-gain/annual-client-details.service.d.ts +14 -0
  205. package/lib/services/http/client/index.d.ts +2 -0
  206. package/lib/services/http/firm/client-income/client-income-types.service.d.ts +1 -1
  207. package/lib/services/http/holding/holding-sale.service.d.ts +0 -3
  208. package/lib/services/http/holding/holding-type.service.d.ts +0 -3
  209. package/lib/services/http/holding/holding.service.d.ts +3 -6
  210. package/lib/services/http/index.d.ts +1 -0
  211. package/lib/services/http/user/index.d.ts +1 -1
  212. package/lib/services/http/user/user.service.d.ts +0 -4
  213. package/lib/validators/transactions-meta-fields.validator.d.ts +5 -0
  214. package/package.json +1 -1
  215. package/public-api.d.ts +4 -0
  216. package/esm2020/lib/db/Models/user/client-details.mjs +0 -4
  217. package/esm2020/lib/db/Models/user/client-income-types.mjs +0 -4
  218. package/esm2020/lib/db/Models/user/occupation.mjs +0 -4
  219. package/esm2020/lib/services/http/user/occupation/occupation.service.mjs +0 -45
  220. /package/lib/db/Models/{user → client}/client-income-types.d.ts +0 -0
  221. /package/lib/db/Models/{user → client}/occupation.d.ts +0 -0
  222. /package/lib/services/http/{user → client}/occupation/occupation.service.d.ts +0 -0
@@ -73,9 +73,9 @@ class CorelogicService {
73
73
  }));
74
74
  }
75
75
  }
76
- CorelogicService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
77
- CorelogicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: CorelogicService, providedIn: 'root' });
78
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: CorelogicService, decorators: [{
76
+ CorelogicService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
77
+ CorelogicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: CorelogicService, providedIn: 'root' });
78
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: CorelogicService, decorators: [{
79
79
  type: Injectable,
80
80
  args: [{
81
81
  providedIn: 'root'
@@ -117,9 +117,9 @@ class CorelogicInterceptor {
117
117
  });
118
118
  }
119
119
  }
120
- CorelogicInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
121
- CorelogicInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: CorelogicInterceptor });
122
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: CorelogicInterceptor, decorators: [{
120
+ CorelogicInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
121
+ CorelogicInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: CorelogicInterceptor });
122
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: CorelogicInterceptor, decorators: [{
123
123
  type: Injectable
124
124
  }], ctorParameters: function () {
125
125
  return [{ type: CorelogicService }, { type: undefined, decorators: [{
@@ -158,9 +158,9 @@ class FinancialYearInterceptor {
158
158
  return next.handle(clonedReq);
159
159
  }
160
160
  }
161
- FinancialYearInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
162
- FinancialYearInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FinancialYearInterceptor });
163
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
161
+ FinancialYearInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
162
+ FinancialYearInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FinancialYearInterceptor });
163
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
164
164
  type: Injectable
165
165
  }], ctorParameters: function () {
166
166
  return [{ type: undefined, decorators: [{
@@ -657,16 +657,19 @@ let TransactionReceipt$1 = class TransactionReceipt extends AbstractModel {
657
657
  let Transaction$1 = class Transaction extends TransactionBase {
658
658
  };
659
659
 
660
+ let AnnualClientDetails$1 = class AnnualClientDetails {
661
+ };
662
+
660
663
  let ClientDetails$1 = class ClientDetails extends AbstractModel {
661
664
  };
662
665
 
663
666
  let ClientIncomeTypes$1 = class ClientIncomeTypes extends ObservableModel {
664
667
  };
665
668
 
666
- let EmployeeDetails$1 = class EmployeeDetails extends AbstractModel {
669
+ let Occupation$1 = class Occupation extends AbstractModel {
667
670
  };
668
671
 
669
- let Occupation$1 = class Occupation extends AbstractModel {
672
+ let EmployeeDetails$1 = class EmployeeDetails extends AbstractModel {
670
673
  };
671
674
 
672
675
  let RegistrationInvite$1 = class RegistrationInvite extends AbstractModel {
@@ -1631,8 +1634,8 @@ class LoanCollection extends Collection {
1631
1634
  }
1632
1635
 
1633
1636
  class PropertySaleCollection extends Collection {
1634
- get grossCGTAfterLoss() {
1635
- return this.create(this.items.filter((propertySale) => propertySale.grossCGTAfterLoss > 0)).sumBy('grossCGTAfterLoss');
1637
+ get grossCapitalGain() {
1638
+ return this.create(this.items.filter((propertySale) => propertySale.grossCapitalGain > 0)).sumBy('grossCapitalGain');
1636
1639
  }
1637
1640
  /**
1638
1641
  * Property sales are CGT applicable unless it has "Principle place of residence" exemption type
@@ -2163,6 +2166,16 @@ var DocumentTypeEnum;
2163
2166
  DocumentTypeEnum[DocumentTypeEnum["INVOICE"] = 1] = "INVOICE";
2164
2167
  })(DocumentTypeEnum || (DocumentTypeEnum = {}));
2165
2168
 
2169
+ var HoldingTypeCategoryEnum;
2170
+ (function (HoldingTypeCategoryEnum) {
2171
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["CRYPTO"] = 1] = "CRYPTO";
2172
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["STOCK"] = 2] = "STOCK";
2173
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["UNLISTED_STOCK"] = 3] = "UNLISTED_STOCK";
2174
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["UNLISTED_UNIT"] = 4] = "UNLISTED_UNIT";
2175
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["COLLECTIBLE"] = 5] = "COLLECTIBLE";
2176
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["OTHER"] = 6] = "OTHER";
2177
+ })(HoldingTypeCategoryEnum || (HoldingTypeCategoryEnum = {}));
2178
+
2166
2179
  // @TODO Artem TT-2308 move everything
2167
2180
 
2168
2181
  class DepreciationCapitalProject extends DepreciationCapitalProject$1 {
@@ -3093,6 +3106,9 @@ class ChartAccounts extends ChartAccounts$1 {
3093
3106
  isTransfer() {
3094
3107
  return this.id === ChartAccountsListEnum.TRANSFER;
3095
3108
  }
3109
+ isDividends() {
3110
+ return this.id === ChartAccountsListEnum.DIVIDENDS;
3111
+ }
3096
3112
  }
3097
3113
  /**
3098
3114
  * Australian GST percent value (VAT)
@@ -3577,6 +3593,12 @@ var TaxExemptionEnum;
3577
3593
  TaxExemptionEnum[TaxExemptionEnum["OTHER"] = 7] = "OTHER";
3578
3594
  })(TaxExemptionEnum || (TaxExemptionEnum = {}));
3579
3595
 
3596
+ class TaxExemption extends TaxExemption$1 {
3597
+ isPartial() {
3598
+ return [TaxExemptionEnum.INVESTMENT_TO_PPR, TaxExemptionEnum.PPR_TO_INVESTMENT].includes(this.id);
3599
+ }
3600
+ }
3601
+
3580
3602
  class PropertySale extends PropertySale$1 {
3581
3603
  get saleCostsTotalAmount() {
3582
3604
  return this.commission + this.legalFees + this.otherCost;
@@ -3589,13 +3611,22 @@ class PropertySale extends PropertySale$1 {
3589
3611
  var _a;
3590
3612
  return ((_a = this.taxExemption) === null || _a === void 0 ? void 0 : _a.id) !== TaxExemptionEnum.PPR;
3591
3613
  }
3592
- get lossApplied() {
3593
- return this.grossCGT <= 0 ? 0 : Math.min(this.grossCGT, this.capitalLoss);
3594
- }
3595
- get grossCGTAfterLoss() {
3596
- return this.grossCGT - this.lossApplied;
3614
+ get netPrice() {
3615
+ return this.price - this.saleCostsTotalAmount;
3597
3616
  }
3598
3617
  }
3618
+ __decorate([
3619
+ Type(() => Number)
3620
+ ], PropertySale.prototype, "holdingCosts", void 0);
3621
+ __decorate([
3622
+ Type(() => Number)
3623
+ ], PropertySale.prototype, "structuralImprovementsWDV", void 0);
3624
+ __decorate([
3625
+ Type(() => Number)
3626
+ ], PropertySale.prototype, "buildingAtCostClaimed", void 0);
3627
+ __decorate([
3628
+ Type(() => Number)
3629
+ ], PropertySale.prototype, "price", void 0);
3599
3630
  __decorate([
3600
3631
  Type(() => Number)
3601
3632
  ], PropertySale.prototype, "commission", void 0);
@@ -3611,6 +3642,9 @@ __decorate([
3611
3642
  __decorate([
3612
3643
  Type(() => Date)
3613
3644
  ], PropertySale.prototype, "contractDate", void 0);
3645
+ __decorate([
3646
+ Type(() => TaxExemption)
3647
+ ], PropertySale.prototype, "taxExemption", void 0);
3614
3648
  __decorate([
3615
3649
  Type(() => PropertySaleTaxExemptionMetaField$1)
3616
3650
  ], PropertySale.prototype, "taxExemptionMetaFields", void 0);
@@ -3635,9 +3669,6 @@ class PropertySaleCostBase {
3635
3669
  class PropertySaleTaxExemptionMetaField extends PropertySaleTaxExemptionMetaField$1 {
3636
3670
  }
3637
3671
 
3638
- class TaxExemption extends TaxExemption$1 {
3639
- }
3640
-
3641
3672
  class TaxExemptionMetaField extends TaxExemptionMetaField$1 {
3642
3673
  }
3643
3674
 
@@ -7047,6 +7078,32 @@ class UserEventSettingCollection extends Collection {
7047
7078
  class UserEventTypeCollection extends Collection {
7048
7079
  }
7049
7080
 
7081
+ class HoldingCollection extends Collection {
7082
+ getShares() {
7083
+ return this.filterBy('type.category', HoldingTypeCategoryEnum.STOCK);
7084
+ }
7085
+ getCryptos() {
7086
+ return this.filterBy('type.category', HoldingTypeCategoryEnum.CRYPTO);
7087
+ }
7088
+ getOthers() {
7089
+ return this.filterBy('type.category', [
7090
+ HoldingTypeCategoryEnum.COLLECTIBLE,
7091
+ HoldingTypeCategoryEnum.UNLISTED_STOCK,
7092
+ HoldingTypeCategoryEnum.UNLISTED_UNIT,
7093
+ HoldingTypeCategoryEnum.OTHER
7094
+ ]);
7095
+ }
7096
+ getPurchaseValue() {
7097
+ return this.sumBy('purchaseValue');
7098
+ }
7099
+ getMarketValue(holdingTypesById) {
7100
+ return this.items.reduce((sum, holding) => sum + holding.getMarketValue(holdingTypesById.get(holding.type.id)), 0);
7101
+ }
7102
+ getGrowthCoefficient(holdingTypesById) {
7103
+ return this.getMarketValue(holdingTypesById) / this.getPurchaseValue() - 1;
7104
+ }
7105
+ }
7106
+
7050
7107
  // @TODO Alex move here all collections
7051
7108
 
7052
7109
  class ServiceSubscription extends ServiceSubscription$1 {
@@ -7439,17 +7496,14 @@ class Property extends Property$1 {
7439
7496
  }
7440
7497
  return this.purchasePrice + this.capitalCostsTotalAmount + sale.holdingCosts + sale.structuralImprovementsWDV - sale.buildingAtCostClaimed;
7441
7498
  }
7442
- /**
7443
- * gross capital gain tax: sale costs - cost base
7444
- */
7445
- calculateGrossCGT(sale) {
7446
- return (sale.price - sale.saleCostsTotalAmount - this.calculateCostBase(sale)) * this.shareRatio;
7499
+ calculateGrossCapitalGain(sale) {
7500
+ return (sale.netPrice - this.calculateCostBase(sale)) * this.getPartialCGTExemptionRatio(sale) * this.shareRatio;
7447
7501
  }
7448
7502
  /**
7449
- * net capital gain tax (includes tax exemptions)
7503
+ * net capital gain includes tax exemption
7450
7504
  */
7451
- calculateNetCGT(sale) {
7452
- return this.getCGTExemptionRatio(sale) * sale.grossCGTAfterLoss;
7505
+ calculateNetCapitalGain(sale) {
7506
+ return this.getCGTExemptionRatio(sale) * sale.grossCapitalGain;
7453
7507
  }
7454
7508
  /**
7455
7509
  * guess tax exemption based on property details
@@ -7469,25 +7523,31 @@ class Property extends Property$1 {
7469
7523
  return null;
7470
7524
  }
7471
7525
  }
7526
+ getPartialCGTExemptionRatio(sale) {
7527
+ var _a;
7528
+ const metaFields = new PropertySaleTaxExemptionMetaFieldCollection(sale.taxExemptionMetaFields);
7529
+ switch ((_a = sale.taxExemption) === null || _a === void 0 ? void 0 : _a.id) {
7530
+ case TaxExemptionEnum.INVESTMENT_TO_PPR:
7531
+ const ownershipDays = this.getOwnershipDuration(sale);
7532
+ return (ownershipDays - metaFields.getPPRDays()) / ownershipDays;
7533
+ case TaxExemptionEnum.PPR_TO_INVESTMENT:
7534
+ return metaFields.getClaimPercent() / 100;
7535
+ default:
7536
+ return 1;
7537
+ }
7538
+ }
7472
7539
  /**
7473
7540
  * tax exemption can reduce cgt from 100% to less (up to zero)
7474
7541
  */
7475
7542
  getCGTExemptionRatio(sale) {
7476
7543
  var _a;
7477
- const metaFields = new PropertySaleTaxExemptionMetaFieldCollection(sale.taxExemptionMetaFields);
7478
7544
  switch ((_a = sale.taxExemption) === null || _a === void 0 ? void 0 : _a.id) {
7479
7545
  // 50% exemption for investments owned for at least one year
7480
7546
  case TaxExemptionEnum.ONE_YEAR_RULE:
7481
7547
  return 0.5;
7482
- // investment property become main residence (exemption for main residence ownership duration)
7483
7548
  case TaxExemptionEnum.INVESTMENT_TO_PPR:
7484
- const ownershipDays = this.getOwnershipDuration(sale);
7485
- return (ownershipDays - metaFields.getPPRDays()) / ownershipDays;
7486
- // main residence become investment (exemption for home office percent usage)
7487
7549
  case TaxExemptionEnum.PPR_TO_INVESTMENT:
7488
- // 1 year CGT discount can still apply (on the income producing % if used for 12 months or more)
7489
- const ratio = this.isOneYearExemptionApplicable(sale) ? 0.5 : 1;
7490
- return metaFields.getClaimPercent() / 100 * ratio;
7550
+ return this.isOneYearExemptionApplicable(sale) ? 0.5 : 1;
7491
7551
  // full exemption
7492
7552
  case TaxExemptionEnum.PPR:
7493
7553
  case TaxExemptionEnum.SIX_YEARS_RULE:
@@ -7499,8 +7559,11 @@ class Property extends Property$1 {
7499
7559
  return 1;
7500
7560
  }
7501
7561
  }
7562
+ /**
7563
+ * in cgt report we apply losses, which can reset 1 year rule (in case if there is no profit after loss)
7564
+ */
7502
7565
  isOneYearExemptionApplicable(sale) {
7503
- return sale.grossCGTAfterLoss > 0 && this.getOwnershipDuration(sale, 'years') > 0;
7566
+ return sale.grossCapitalGain > 0 && this.getOwnershipDuration(sale, 'years') > 0;
7504
7567
  }
7505
7568
  /**
7506
7569
  * CGT is not applicable for properties acquired before 20.09.1985 (tax didn't exist before this date).
@@ -7529,6 +7592,12 @@ class Property extends Property$1 {
7529
7592
  * Any assets acquired before this day are CGT exempt (because the tax didn't exist before this date).
7530
7593
  */
7531
7594
  Property.preCGTAssetDate = new Date(1985, 9, 20);
7595
+ __decorate([
7596
+ Type(() => Number)
7597
+ ], Property.prototype, "purchasePrice", void 0);
7598
+ __decorate([
7599
+ Type(() => Number)
7600
+ ], Property.prototype, "growthPercent", void 0);
7532
7601
  __decorate([
7533
7602
  Type(() => Date)
7534
7603
  ], Property.prototype, "contractDate", void 0);
@@ -7541,6 +7610,15 @@ __decorate([
7541
7610
  __decorate([
7542
7611
  Type(() => PropertyCategory)
7543
7612
  ], Property.prototype, "category", void 0);
7613
+ __decorate([
7614
+ Type(() => Number)
7615
+ ], Property.prototype, "stampDuty", void 0);
7616
+ __decorate([
7617
+ Type(() => Number)
7618
+ ], Property.prototype, "legalFees", void 0);
7619
+ __decorate([
7620
+ Type(() => Number)
7621
+ ], Property.prototype, "otherCapitalCosts", void 0);
7544
7622
  __decorate([
7545
7623
  Type(() => PropertyValuation)
7546
7624
  ], Property.prototype, "valuations", void 0);
@@ -8299,19 +8377,109 @@ __decorate([
8299
8377
  Type(() => Document)
8300
8378
  ], DocumentFolder.prototype, "documents", void 0);
8301
8379
 
8380
+ class HoldingTypeExchange extends AbstractModel {
8381
+ }
8382
+ __decorate([
8383
+ Type(() => Date)
8384
+ ], HoldingTypeExchange.prototype, "updateDate", void 0);
8385
+ __decorate([
8386
+ Type(() => HoldingType)
8387
+ ], HoldingTypeExchange.prototype, "holdingTypes", void 0);
8388
+
8302
8389
  class HoldingType extends AbstractModel {
8390
+ get categoryLabel() {
8391
+ switch (this.category) {
8392
+ case HoldingTypeCategoryEnum.STOCK:
8393
+ return 'Shares';
8394
+ case HoldingTypeCategoryEnum.CRYPTO:
8395
+ return 'Cryptos';
8396
+ case HoldingTypeCategoryEnum.COLLECTIBLE:
8397
+ return 'Collectibles';
8398
+ case HoldingTypeCategoryEnum.UNLISTED_STOCK:
8399
+ return 'Unlisted stock';
8400
+ case HoldingTypeCategoryEnum.UNLISTED_UNIT:
8401
+ return 'Unlisted unit';
8402
+ case HoldingTypeCategoryEnum.OTHER:
8403
+ return 'Other';
8404
+ }
8405
+ }
8406
+ isOther() {
8407
+ return !this.isShare() && !this.isCrypto();
8408
+ }
8409
+ isShare() {
8410
+ return this.category === HoldingTypeCategoryEnum.STOCK;
8411
+ }
8412
+ isCrypto() {
8413
+ return this.category === HoldingTypeCategoryEnum.CRYPTO;
8414
+ }
8303
8415
  }
8416
+ __decorate([
8417
+ Type(() => Date)
8418
+ ], HoldingType.prototype, "lastUpdateDateOnExchange", void 0);
8419
+ __decorate([
8420
+ Type(() => Date)
8421
+ ], HoldingType.prototype, "updatedAt", void 0);
8304
8422
  __decorate([
8305
8423
  Type(() => User)
8306
8424
  ], HoldingType.prototype, "user", void 0);
8425
+ __decorate([
8426
+ Type(() => HoldingTypeExchange)
8427
+ ], HoldingType.prototype, "exchange", void 0);
8307
8428
 
8308
8429
  class HoldingSale extends AbstractModel {
8430
+ getCapitalGain(holding) {
8431
+ if (!this.price || !this.holding) {
8432
+ return 0;
8433
+ }
8434
+ return (this.price - holding.price) * this.quantity;
8435
+ }
8436
+ getNetCapitalGain(holding) {
8437
+ const capitalGain = this.getCapitalGain(holding);
8438
+ // 50% discount for holdings purchased over a year ago
8439
+ if (holding.heldMoreYear()) {
8440
+ return capitalGain / 2;
8441
+ }
8442
+ return capitalGain;
8443
+ }
8309
8444
  }
8445
+ __decorate([
8446
+ Type(() => Date)
8447
+ ], HoldingSale.prototype, "date", void 0);
8310
8448
  __decorate([
8311
8449
  Type(() => AppFile)
8312
8450
  ], HoldingSale.prototype, "file", void 0);
8313
8451
 
8314
8452
  class Holding extends AbstractModel {
8453
+ constructor() {
8454
+ super(...arguments);
8455
+ this.isTaxFree = false;
8456
+ }
8457
+ /**
8458
+ * Get total purchasing price
8459
+ */
8460
+ get purchaseValue() {
8461
+ // Price and entity may be empty when we use HoldingForm.currentValue
8462
+ if (!this.price || !this.quantity) {
8463
+ return 0;
8464
+ }
8465
+ return this.price * this.quantity;
8466
+ }
8467
+ /**
8468
+ * Get current market price
8469
+ */
8470
+ getMarketValue(holdingType) {
8471
+ return this.quantity * holdingType.price;
8472
+ }
8473
+ /**
8474
+ * Get percent difference between current and buy price
8475
+ */
8476
+ getGrowthCoefficient(holdingType) {
8477
+ return holdingType.price / this.price - 1;
8478
+ }
8479
+ heldMoreYear() {
8480
+ const yearTime = 1000 * 60 * 60 * 24 * 365;
8481
+ return (new FinancialYear().startDate.getTime() - this.date.getTime()) > yearTime;
8482
+ }
8315
8483
  }
8316
8484
  __decorate([
8317
8485
  Type(() => Date)
@@ -8330,6 +8498,178 @@ __decorate([
8330
8498
  Transform(({ value }) => new Collection(value))
8331
8499
  ], Holding.prototype, "sales", void 0);
8332
8500
 
8501
+ class AnnualClientDetails extends AbstractModel {
8502
+ constructor() {
8503
+ super(...arguments);
8504
+ this.financialYear = new FinancialYear().year;
8505
+ }
8506
+ }
8507
+ __decorate([
8508
+ Type(() => ClientDetails)
8509
+ ], AnnualClientDetails.prototype, "clientDetails", void 0);
8510
+
8511
+ class ClientIncomeTypes extends ClientIncomeTypes$1 {
8512
+ /**
8513
+ * Get count of selected income types
8514
+ */
8515
+ get length() {
8516
+ return Object.values(this).filter((value) => typeof value === 'boolean' && value).length;
8517
+ }
8518
+ }
8519
+
8520
+ var ClientInviteStatusEnum;
8521
+ (function (ClientInviteStatusEnum) {
8522
+ ClientInviteStatusEnum[ClientInviteStatusEnum["PENDING"] = 1] = "PENDING";
8523
+ ClientInviteStatusEnum[ClientInviteStatusEnum["REJECTED"] = 2] = "REJECTED";
8524
+ })(ClientInviteStatusEnum || (ClientInviteStatusEnum = {}));
8525
+
8526
+ var ClientInviteTypeEnum;
8527
+ (function (ClientInviteTypeEnum) {
8528
+ ClientInviteTypeEnum[ClientInviteTypeEnum["FROM_CLIENT"] = 1] = "FROM_CLIENT";
8529
+ ClientInviteTypeEnum[ClientInviteTypeEnum["FROM_EMPLOYEE"] = 2] = "FROM_EMPLOYEE";
8530
+ })(ClientInviteTypeEnum || (ClientInviteTypeEnum = {}));
8531
+
8532
+ class ClientInvite extends ClientInvite$1 {
8533
+ /**
8534
+ * Check if client invite status is pending
8535
+ */
8536
+ isPending() {
8537
+ return this.status === ClientInviteStatusEnum.PENDING;
8538
+ }
8539
+ /**
8540
+ * Check if client invite status is accepted
8541
+ */
8542
+ isAccepted() {
8543
+ return !this.isPending() && !this.isRejected();
8544
+ }
8545
+ /**
8546
+ * Check if client invite status is rejected
8547
+ */
8548
+ isRejected() {
8549
+ return this.status === ClientInviteStatusEnum.REJECTED;
8550
+ }
8551
+ /**
8552
+ * Check if client invite initiated by firm
8553
+ */
8554
+ isFromEmployee() {
8555
+ return this.type === ClientInviteTypeEnum.FROM_EMPLOYEE;
8556
+ }
8557
+ /**
8558
+ * Check if client invite initiated by client
8559
+ */
8560
+ isFromClient() {
8561
+ return this.type === ClientInviteTypeEnum.FROM_CLIENT;
8562
+ }
8563
+ get firstName() {
8564
+ var _a;
8565
+ return this.client ? this.client.firstName : (_a = this.registrationInvite) === null || _a === void 0 ? void 0 : _a.firstName;
8566
+ }
8567
+ get email() {
8568
+ var _a;
8569
+ return this.client ? this.client.email : (_a = this.registrationInvite) === null || _a === void 0 ? void 0 : _a.email;
8570
+ }
8571
+ }
8572
+ __decorate([
8573
+ Type(() => Date)
8574
+ ], ClientInvite.prototype, "sentOn", void 0);
8575
+ __decorate([
8576
+ Type(() => Date)
8577
+ ], ClientInvite.prototype, "updatedAt", void 0);
8578
+ __decorate([
8579
+ Type(() => Firm)
8580
+ ], ClientInvite.prototype, "firm", void 0);
8581
+ __decorate([
8582
+ Type(() => User)
8583
+ ], ClientInvite.prototype, "client", void 0);
8584
+ __decorate([
8585
+ Type(() => User)
8586
+ ], ClientInvite.prototype, "employee", void 0);
8587
+ __decorate([
8588
+ Type(() => RegistrationInvite)
8589
+ ], ClientInvite.prototype, "registrationInvite", void 0);
8590
+
8591
+ class ClientMovement extends ClientMovement$1 {
8592
+ }
8593
+ __decorate([
8594
+ Type(() => Firm)
8595
+ ], ClientMovement.prototype, "firm", void 0);
8596
+ __decorate([
8597
+ Type(() => User)
8598
+ ], ClientMovement.prototype, "client", void 0);
8599
+ __decorate([
8600
+ Type(() => User)
8601
+ ], ClientMovement.prototype, "employee", void 0);
8602
+ __decorate([
8603
+ Type(() => ServiceSubscription)
8604
+ ], ClientMovement.prototype, "subscription", void 0);
8605
+ __decorate([
8606
+ Type(() => Date)
8607
+ ], ClientMovement.prototype, "dateFrom", void 0);
8608
+ __decorate([
8609
+ Type(() => Date)
8610
+ ], ClientMovement.prototype, "dateTo", void 0);
8611
+
8612
+ /**
8613
+ * Client portfolio charts data based on ClientPortfolioReportCollection
8614
+ */
8615
+ class ClientPortfolioChartData {
8616
+ constructor(clientsPortfolioReportCollection) {
8617
+ this.clientsPortfolioReportCollection = clientsPortfolioReportCollection;
8618
+ }
8619
+ getPieChartData() {
8620
+ return this.clientsPortfolioReportCollection.items.map((clientPortfolioReport) => {
8621
+ return plainToClass(ChartData, {
8622
+ name: clientPortfolioReport.category,
8623
+ data: clientPortfolioReport.count
8624
+ });
8625
+ });
8626
+ }
8627
+ getBarChartData() {
8628
+ return [
8629
+ plainToClass(ChartData, {
8630
+ name: 'Total',
8631
+ data: [
8632
+ {
8633
+ label: 'Market value',
8634
+ value: this.clientsPortfolioReportCollection.marketValue
8635
+ },
8636
+ {
8637
+ label: 'Loan balance',
8638
+ value: this.clientsPortfolioReportCollection.loanBalance
8639
+ },
8640
+ {
8641
+ label: 'Equity position',
8642
+ value: this.clientsPortfolioReportCollection.equityPosition
8643
+ }
8644
+ ]
8645
+ }),
8646
+ plainToClass(ChartData, {
8647
+ name: 'Average',
8648
+ data: [
8649
+ {
8650
+ label: 'Market value',
8651
+ value: this.clientsPortfolioReportCollection.averageMarketValue
8652
+ },
8653
+ {
8654
+ label: 'Loan balance',
8655
+ value: this.clientsPortfolioReportCollection.averageLoanBalance
8656
+ },
8657
+ {
8658
+ label: 'Equity position',
8659
+ value: this.clientsPortfolioReportCollection.averageEquityPosition
8660
+ }
8661
+ ]
8662
+ })
8663
+ ];
8664
+ }
8665
+ }
8666
+
8667
+ /**
8668
+ * Class describes client's portfolio report information
8669
+ */
8670
+ class ClientPortfolioReport extends AbstractModel {
8671
+ }
8672
+
8333
8673
  const NAME_TOKEN = 'token';
8334
8674
  const NAME_REFRESH_TOKEN = 'refreshToken';
8335
8675
  class JwtService extends JwtHelperService {
@@ -8358,9 +8698,9 @@ class JwtService extends JwtHelperService {
8358
8698
  return this.getUser().id === userId;
8359
8699
  }
8360
8700
  }
8361
- JwtService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
8362
- JwtService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtService, providedIn: 'root' });
8363
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtService, decorators: [{
8701
+ JwtService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
8702
+ JwtService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtService, providedIn: 'root' });
8703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtService, decorators: [{
8364
8704
  type: Injectable,
8365
8705
  args: [{
8366
8706
  providedIn: 'root'
@@ -8395,9 +8735,9 @@ class EventDispatcherService {
8395
8735
  this.eventSubject2.next(event);
8396
8736
  }
8397
8737
  }
8398
- EventDispatcherService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8399
- EventDispatcherService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EventDispatcherService, providedIn: 'root' });
8400
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EventDispatcherService, decorators: [{
8738
+ EventDispatcherService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8739
+ EventDispatcherService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EventDispatcherService, providedIn: 'root' });
8740
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EventDispatcherService, decorators: [{
8401
8741
  type: Injectable,
8402
8742
  args: [{
8403
8743
  providedIn: 'root'
@@ -8446,9 +8786,9 @@ class AuthService {
8446
8786
  location.replace(url);
8447
8787
  }
8448
8788
  }
8449
- AuthService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
8450
- AuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AuthService, providedIn: 'root' });
8451
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AuthService, decorators: [{
8789
+ AuthService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
8790
+ AuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AuthService, providedIn: 'root' });
8791
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AuthService, decorators: [{
8452
8792
  type: Injectable,
8453
8793
  args: [{
8454
8794
  providedIn: 'root'
@@ -8586,9 +8926,9 @@ class JwtInterceptor {
8586
8926
  });
8587
8927
  }
8588
8928
  }
8589
- JwtInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
8590
- JwtInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtInterceptor });
8591
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtInterceptor, decorators: [{
8929
+ JwtInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
8930
+ JwtInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtInterceptor });
8931
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtInterceptor, decorators: [{
8592
8932
  type: Injectable
8593
8933
  }], ctorParameters: function () {
8594
8934
  return [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
@@ -8623,9 +8963,9 @@ class UserSwitcherService {
8623
8963
  window.location.replace('/firm/dashboard');
8624
8964
  }
8625
8965
  }
8626
- UserSwitcherService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8627
- UserSwitcherService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherService, providedIn: 'root' });
8628
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherService, decorators: [{
8966
+ UserSwitcherService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8967
+ UserSwitcherService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherService, providedIn: 'root' });
8968
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherService, decorators: [{
8629
8969
  type: Injectable,
8630
8970
  args: [{
8631
8971
  providedIn: 'root'
@@ -8671,9 +9011,9 @@ class UserSwitcherInterceptor {
8671
9011
  return next.handle(this.switch(request, this.userSwitcherService.get()));
8672
9012
  }
8673
9013
  }
8674
- UserSwitcherInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
8675
- UserSwitcherInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherInterceptor });
8676
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
9014
+ UserSwitcherInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
9015
+ UserSwitcherInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherInterceptor });
9016
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
8677
9017
  type: Injectable
8678
9018
  }], ctorParameters: function () {
8679
9019
  return [{ type: UserSwitcherService }, { type: undefined, decorators: [{
@@ -8745,6 +9085,10 @@ const ENDPOINTS = {
8745
9085
  CLIENT_INCOME_TYPES_POST: new Endpoint('POST', '\\/client-income-types'),
8746
9086
  COUNTRIES_GET: new Endpoint('GET', '\\/countries'),
8747
9087
  CORELOGIC_TOKEN_GET: new Endpoint('GET', '/access\\/oauth\\/token.*$'),
9088
+ ANNUAL_CLIENT_DETAILS_GET: new Endpoint('GET', '\\/annual-client-details'),
9089
+ ANNUAL_CLIENT_DETAILS_POST: new Endpoint('POST', '\\/annual-client-details'),
9090
+ ANNUAL_CLIENT_DETAILS_PUT: new Endpoint('PUT', '\\/annual-client-details\\/\\d+'),
9091
+ ANNUAL_CLIENT_DETAILS_DELETE: new Endpoint('DELETE', '\\/annual-client-details\\/\\d+'),
8748
9092
  DEPRECIATIONS_OPENING_GET: new Endpoint('GET', '\\/depreciations\\/\\opening-balance\.\*'),
8749
9093
  DEPRECIATIONS_GET: new Endpoint('GET', '\\/depreciations'),
8750
9094
  DEPRECIATIONS_POST: new Endpoint('POST', '\\/depreciations'),
@@ -8787,6 +9131,18 @@ const ENDPOINTS = {
8787
9131
  LOANS_PAYOUT_DELETE: new Endpoint('DELETE', '\\/loans\\/\\d+\\/payout\\/\\d+'),
8788
9132
  LOANS_CALCULATION_POST: new Endpoint('POST', '\\/bank-accounts\\/loans\\/calculation'),
8789
9133
  LOGIN_POST: new Endpoint('POST', '\\/login'),
9134
+ HOLDINGS_GET: new Endpoint('GET', '\\/holdings'),
9135
+ HOLDINGS_POST: new Endpoint('POST', '\\/holdings'),
9136
+ HOLDINGS_PUT: new Endpoint('PUT', '\\/holdings\\/\\d+'),
9137
+ HOLDINGS_DELETE: new Endpoint('DELETE', '\\/holdings\\/\\d+'),
9138
+ HOLDING_TYPES_GET: new Endpoint('GET', '\\/holding-types'),
9139
+ HOLDING_TYPES_POST: new Endpoint('POST', '\\/holding-types'),
9140
+ HOLDING_TYPES_PUT: new Endpoint('PUT', '\\/holding-types\\/\\d+'),
9141
+ HOLDING_TYPES_DELETE: new Endpoint('DELETE', '\\/holding-types\\/\\d+'),
9142
+ HOLDING_SALES_GET: new Endpoint('GET', '\\/holding-sales'),
9143
+ HOLDING_SALES_POST: new Endpoint('POST', '\\/holding-sales'),
9144
+ HOLDING_SALES_PUT: new Endpoint('PUT', '\\/holding-sales\\/\\d+'),
9145
+ HOLDING_SALES_DELETE: new Endpoint('DELETE', '\\/holding-sales\\/\\d+'),
8790
9146
  NOTIFICATIONS_GET: new Endpoint('GET', '\\/service-notifications'),
8791
9147
  OCCUPATIONS_GET: new Endpoint('GET', '\\/occupations'),
8792
9148
  PROPERTIES_GET: new Endpoint('GET', '\\/properties'),
@@ -8931,9 +9287,9 @@ class PreloaderService {
8931
9287
  this.activePreloaders.next(activePreloaders);
8932
9288
  }
8933
9289
  }
8934
- PreloaderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8935
- PreloaderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderService, providedIn: 'root' });
8936
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderService, decorators: [{
9290
+ PreloaderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
9291
+ PreloaderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderService, providedIn: 'root' });
9292
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderService, decorators: [{
8937
9293
  type: Injectable,
8938
9294
  args: [{
8939
9295
  providedIn: 'root'
@@ -8961,9 +9317,9 @@ class PreloaderInterceptor {
8961
9317
  return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
8962
9318
  }
8963
9319
  }
8964
- PreloaderInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable });
8965
- PreloaderInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderInterceptor });
8966
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderInterceptor, decorators: [{
9320
+ PreloaderInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable });
9321
+ PreloaderInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderInterceptor });
9322
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderInterceptor, decorators: [{
8967
9323
  type: Injectable
8968
9324
  }], ctorParameters: function () { return [{ type: PreloaderService }]; } });
8969
9325
 
@@ -8999,9 +9355,9 @@ class SseService {
8999
9355
  }));
9000
9356
  }
9001
9357
  }
9002
- SseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
9003
- SseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SseService, providedIn: 'root' });
9004
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SseService, decorators: [{
9358
+ SseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
9359
+ SseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SseService, providedIn: 'root' });
9360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SseService, decorators: [{
9005
9361
  type: Injectable,
9006
9362
  args: [{
9007
9363
  providedIn: 'root'
@@ -9231,9 +9587,9 @@ let RestService$1 = class RestService {
9231
9587
  */
9232
9588
  listenEvents() { }
9233
9589
  };
9234
- RestService$1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService$1, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
9235
- RestService$1.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService$1, providedIn: 'root' });
9236
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService$1, decorators: [{
9590
+ RestService$1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService$1, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
9591
+ RestService$1.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService$1, providedIn: 'root' });
9592
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService$1, decorators: [{
9237
9593
  type: Injectable,
9238
9594
  args: [{
9239
9595
  providedIn: 'root'
@@ -9353,9 +9709,9 @@ class ToastService {
9353
9709
  }));
9354
9710
  }
9355
9711
  }
9356
- ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
9357
- ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ToastService, providedIn: 'root' });
9358
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ToastService, decorators: [{
9712
+ ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
9713
+ ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ToastService, providedIn: 'root' });
9714
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ToastService, decorators: [{
9359
9715
  type: Injectable,
9360
9716
  args: [{
9361
9717
  providedIn: 'root'
@@ -9445,9 +9801,9 @@ BankConnectionService.userEventTypes = [
9445
9801
  UserEventTypeTypeEnum.BASIQ_NEW_ACCOUNTS,
9446
9802
  UserEventTypeTypeEnum.BASIQ_AUTHORIZATION_FAIL
9447
9803
  ];
9448
- BankConnectionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankConnectionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
9449
- BankConnectionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankConnectionService, providedIn: 'root' });
9450
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankConnectionService, decorators: [{
9804
+ BankConnectionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankConnectionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
9805
+ BankConnectionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankConnectionService, providedIn: 'root' });
9806
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankConnectionService, decorators: [{
9451
9807
  type: Injectable,
9452
9808
  args: [{
9453
9809
  providedIn: 'root'
@@ -9559,9 +9915,9 @@ BasiqService.basiqApiUrl = 'https://au-api.basiq.io';
9559
9915
  * Basiq does not provide a hook, so we have to check job status manually every x seconds
9560
9916
  */
9561
9917
  BasiqService.bankCredintialsCheckInterval = 3000;
9562
- BasiqService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: BankConnectionService }], target: i0.ɵɵFactoryTarget.Injectable });
9563
- BasiqService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqService, providedIn: 'root' });
9564
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqService, decorators: [{
9918
+ BasiqService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: BankConnectionService }], target: i0.ɵɵFactoryTarget.Injectable });
9919
+ BasiqService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqService, providedIn: 'root' });
9920
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqService, decorators: [{
9565
9921
  type: Injectable,
9566
9922
  args: [{
9567
9923
  providedIn: 'root'
@@ -9598,9 +9954,9 @@ class BasiqTokenService extends RestService$1 {
9598
9954
  return this.cacheSubject.asObservable();
9599
9955
  }
9600
9956
  }
9601
- BasiqTokenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
9602
- BasiqTokenService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenService, providedIn: 'root' });
9603
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenService, decorators: [{
9957
+ BasiqTokenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
9958
+ BasiqTokenService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenService, providedIn: 'root' });
9959
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenService, decorators: [{
9604
9960
  type: Injectable,
9605
9961
  args: [{
9606
9962
  providedIn: 'root'
@@ -9631,9 +9987,9 @@ class BasiqTokenInterceptor {
9631
9987
  });
9632
9988
  }
9633
9989
  }
9634
- BasiqTokenInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable });
9635
- BasiqTokenInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenInterceptor });
9636
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
9990
+ BasiqTokenInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable });
9991
+ BasiqTokenInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenInterceptor });
9992
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
9637
9993
  type: Injectable
9638
9994
  }], ctorParameters: function () { return [{ type: BasiqTokenService }]; } });
9639
9995
 
@@ -9658,7 +10014,6 @@ class UserService {
9658
10014
  }
9659
10015
  listenEvents() {
9660
10016
  this.listenServiceSubscriptionUpdated();
9661
- this.listenPropertySale();
9662
10017
  }
9663
10018
  get() {
9664
10019
  if (!this.cache) {
@@ -9790,17 +10145,9 @@ class UserService {
9790
10145
  }
9791
10146
  /**
9792
10147
  * Update cache when user's service subscription is updated
9793
- */
9794
- listenServiceSubscriptionUpdated() {
9795
- this.eventDispatcherService.on(AppEventTypeEnum.SERVICE_SUBSCRIPTION_UPDATED).subscribe(() => this.resetCache());
9796
- }
9797
- /**
9798
- * capital losses updates on property sale
9799
- */
9800
- listenPropertySale() {
9801
- this.eventDispatcherService.on2(...PropertySale.getEventNames('post', 'delete')).subscribe(() => {
9802
- this.resetCache();
9803
- });
10148
+ */
10149
+ listenServiceSubscriptionUpdated() {
10150
+ this.eventDispatcherService.on(AppEventTypeEnum.SERVICE_SUBSCRIPTION_UPDATED).subscribe(() => this.resetCache());
9804
10151
  }
9805
10152
  /**
9806
10153
  * @TODO remove when the class refactored on RestService
@@ -9819,9 +10166,9 @@ class UserService {
9819
10166
  });
9820
10167
  }
9821
10168
  }
9822
- UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
9823
- UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserService, providedIn: 'root' });
9824
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserService, decorators: [{
10169
+ UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
10170
+ UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserService, providedIn: 'root' });
10171
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserService, decorators: [{
9825
10172
  type: Injectable,
9826
10173
  args: [{
9827
10174
  providedIn: 'root'
@@ -9853,17 +10200,17 @@ class BasiqClientIdInterceptor {
9853
10200
  });
9854
10201
  }
9855
10202
  }
9856
- BasiqClientIdInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable });
9857
- BasiqClientIdInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqClientIdInterceptor });
9858
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
10203
+ BasiqClientIdInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable });
10204
+ BasiqClientIdInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqClientIdInterceptor });
10205
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
9859
10206
  type: Injectable
9860
10207
  }], ctorParameters: function () { return [{ type: UserService }]; } });
9861
10208
 
9862
10209
  class InterceptorsModule {
9863
10210
  }
9864
- InterceptorsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9865
- InterceptorsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.4", ngImport: i0, type: InterceptorsModule });
9866
- InterceptorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: InterceptorsModule, providers: [
10211
+ InterceptorsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10212
+ InterceptorsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.5", ngImport: i0, type: InterceptorsModule });
10213
+ InterceptorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: InterceptorsModule, providers: [
9867
10214
  {
9868
10215
  provide: HTTP_INTERCEPTORS,
9869
10216
  useClass: CorelogicInterceptor,
@@ -9901,7 +10248,7 @@ InterceptorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", vers
9901
10248
  multi: true
9902
10249
  }
9903
10250
  ] });
9904
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: InterceptorsModule, decorators: [{
10251
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: InterceptorsModule, decorators: [{
9905
10252
  type: NgModule,
9906
10253
  args: [{
9907
10254
  providers: [
@@ -9959,12 +10306,12 @@ class TtCoreModule {
9959
10306
  };
9960
10307
  }
9961
10308
  }
9962
- TtCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TtCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9963
- TtCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.4", ngImport: i0, type: TtCoreModule, imports: [CommonModule,
10309
+ TtCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TtCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10310
+ TtCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.5", ngImport: i0, type: TtCoreModule, imports: [CommonModule,
9964
10311
  InterceptorsModule] });
9965
- TtCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TtCoreModule, imports: [CommonModule,
10312
+ TtCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TtCoreModule, imports: [CommonModule,
9966
10313
  InterceptorsModule] });
9967
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TtCoreModule, decorators: [{
10314
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TtCoreModule, decorators: [{
9968
10315
  type: NgModule,
9969
10316
  args: [{
9970
10317
  declarations: [],
@@ -9995,18 +10342,6 @@ var ClientDetailsWorkingHolidayMakerEnum;
9995
10342
  ClientDetailsWorkingHolidayMakerEnum[ClientDetailsWorkingHolidayMakerEnum["VISA462"] = 2] = "VISA462";
9996
10343
  })(ClientDetailsWorkingHolidayMakerEnum || (ClientDetailsWorkingHolidayMakerEnum = {}));
9997
10344
 
9998
- var ClientInviteStatusEnum;
9999
- (function (ClientInviteStatusEnum) {
10000
- ClientInviteStatusEnum[ClientInviteStatusEnum["PENDING"] = 1] = "PENDING";
10001
- ClientInviteStatusEnum[ClientInviteStatusEnum["REJECTED"] = 2] = "REJECTED";
10002
- })(ClientInviteStatusEnum || (ClientInviteStatusEnum = {}));
10003
-
10004
- var ClientInviteTypeEnum;
10005
- (function (ClientInviteTypeEnum) {
10006
- ClientInviteTypeEnum[ClientInviteTypeEnum["FROM_CLIENT"] = 1] = "FROM_CLIENT";
10007
- ClientInviteTypeEnum[ClientInviteTypeEnum["FROM_EMPLOYEE"] = 2] = "FROM_EMPLOYEE";
10008
- })(ClientInviteTypeEnum || (ClientInviteTypeEnum = {}));
10009
-
10010
10345
  var DepreciationCalculationPercentEnum;
10011
10346
  (function (DepreciationCalculationPercentEnum) {
10012
10347
  DepreciationCalculationPercentEnum[DepreciationCalculationPercentEnum["PRIME_COST"] = 100] = "PRIME_COST";
@@ -10387,156 +10722,6 @@ class Badge extends AbstractModel {
10387
10722
  }
10388
10723
  }
10389
10724
 
10390
- class ClientIncomeTypes extends ClientIncomeTypes$1 {
10391
- /**
10392
- * Get count of selected income types
10393
- */
10394
- get length() {
10395
- return Object.values(this).filter((value) => typeof value === 'boolean' && value).length;
10396
- }
10397
- }
10398
-
10399
- class ClientInvite extends ClientInvite$1 {
10400
- /**
10401
- * Check if client invite status is pending
10402
- */
10403
- isPending() {
10404
- return this.status === ClientInviteStatusEnum.PENDING;
10405
- }
10406
- /**
10407
- * Check if client invite status is accepted
10408
- */
10409
- isAccepted() {
10410
- return !this.isPending() && !this.isRejected();
10411
- }
10412
- /**
10413
- * Check if client invite status is rejected
10414
- */
10415
- isRejected() {
10416
- return this.status === ClientInviteStatusEnum.REJECTED;
10417
- }
10418
- /**
10419
- * Check if client invite initiated by firm
10420
- */
10421
- isFromEmployee() {
10422
- return this.type === ClientInviteTypeEnum.FROM_EMPLOYEE;
10423
- }
10424
- /**
10425
- * Check if client invite initiated by client
10426
- */
10427
- isFromClient() {
10428
- return this.type === ClientInviteTypeEnum.FROM_CLIENT;
10429
- }
10430
- get firstName() {
10431
- var _a;
10432
- return this.client ? this.client.firstName : (_a = this.registrationInvite) === null || _a === void 0 ? void 0 : _a.firstName;
10433
- }
10434
- get email() {
10435
- var _a;
10436
- return this.client ? this.client.email : (_a = this.registrationInvite) === null || _a === void 0 ? void 0 : _a.email;
10437
- }
10438
- }
10439
- __decorate([
10440
- Type(() => Date)
10441
- ], ClientInvite.prototype, "sentOn", void 0);
10442
- __decorate([
10443
- Type(() => Date)
10444
- ], ClientInvite.prototype, "updatedAt", void 0);
10445
- __decorate([
10446
- Type(() => Firm)
10447
- ], ClientInvite.prototype, "firm", void 0);
10448
- __decorate([
10449
- Type(() => User)
10450
- ], ClientInvite.prototype, "client", void 0);
10451
- __decorate([
10452
- Type(() => User)
10453
- ], ClientInvite.prototype, "employee", void 0);
10454
- __decorate([
10455
- Type(() => RegistrationInvite)
10456
- ], ClientInvite.prototype, "registrationInvite", void 0);
10457
-
10458
- class ClientMovement extends ClientMovement$1 {
10459
- }
10460
- __decorate([
10461
- Type(() => Firm)
10462
- ], ClientMovement.prototype, "firm", void 0);
10463
- __decorate([
10464
- Type(() => User)
10465
- ], ClientMovement.prototype, "client", void 0);
10466
- __decorate([
10467
- Type(() => User)
10468
- ], ClientMovement.prototype, "employee", void 0);
10469
- __decorate([
10470
- Type(() => ServiceSubscription)
10471
- ], ClientMovement.prototype, "subscription", void 0);
10472
- __decorate([
10473
- Type(() => Date)
10474
- ], ClientMovement.prototype, "dateFrom", void 0);
10475
- __decorate([
10476
- Type(() => Date)
10477
- ], ClientMovement.prototype, "dateTo", void 0);
10478
-
10479
- /**
10480
- * Client portfolio charts data based on ClientPortfolioReportCollection
10481
- */
10482
- class ClientPortfolioChartData {
10483
- constructor(clientsPortfolioReportCollection) {
10484
- this.clientsPortfolioReportCollection = clientsPortfolioReportCollection;
10485
- }
10486
- getPieChartData() {
10487
- return this.clientsPortfolioReportCollection.items.map((clientPortfolioReport) => {
10488
- return plainToClass(ChartData, {
10489
- name: clientPortfolioReport.category,
10490
- data: clientPortfolioReport.count
10491
- });
10492
- });
10493
- }
10494
- getBarChartData() {
10495
- return [
10496
- plainToClass(ChartData, {
10497
- name: 'Total',
10498
- data: [
10499
- {
10500
- label: 'Market value',
10501
- value: this.clientsPortfolioReportCollection.marketValue
10502
- },
10503
- {
10504
- label: 'Loan balance',
10505
- value: this.clientsPortfolioReportCollection.loanBalance
10506
- },
10507
- {
10508
- label: 'Equity position',
10509
- value: this.clientsPortfolioReportCollection.equityPosition
10510
- }
10511
- ]
10512
- }),
10513
- plainToClass(ChartData, {
10514
- name: 'Average',
10515
- data: [
10516
- {
10517
- label: 'Market value',
10518
- value: this.clientsPortfolioReportCollection.averageMarketValue
10519
- },
10520
- {
10521
- label: 'Loan balance',
10522
- value: this.clientsPortfolioReportCollection.averageLoanBalance
10523
- },
10524
- {
10525
- label: 'Equity position',
10526
- value: this.clientsPortfolioReportCollection.averageEquityPosition
10527
- }
10528
- ]
10529
- })
10530
- ];
10531
- }
10532
- }
10533
-
10534
- /**
10535
- * Class describes client's portfolio report information
10536
- */
10537
- class ClientPortfolioReport extends AbstractModel {
10538
- }
10539
-
10540
10725
  var AlphabetColorsEnum;
10541
10726
  (function (AlphabetColorsEnum) {
10542
10727
  AlphabetColorsEnum["A"] = "#9CC3D5";
@@ -10861,8 +11046,8 @@ class MyTaxBusinessLosses {
10861
11046
  }
10862
11047
  }
10863
11048
 
10864
- ;
10865
11049
  /**
11050
+ * @TODO vik/nicole test
10866
11051
  * Report related to Property sales CGT details.
10867
11052
  * All fields are about current year, except netCapitalLoss
10868
11053
  *
@@ -10870,10 +11055,11 @@ class MyTaxBusinessLosses {
10870
11055
  class MyTaxCgt {
10871
11056
  static createFrom(propertySales, properties, clientCapitalLoss) {
10872
11057
  return plainToClass(MyTaxCgt, {
10873
- hasCapitalGain: !!propertySales.grossCGTAfterLoss,
10874
- hasExemption: !!propertySales.grossCGTAfterLoss && this.isCGTApplicable(propertySales, properties),
10875
- netCapitalGain: propertySales.sumBy('netCGT'),
10876
- grossCapitalGain: propertySales.grossCGTAfterLoss,
11058
+ // @TODO vik losses should be applied
11059
+ hasCapitalGain: !!propertySales.grossCapitalGain,
11060
+ hasExemption: !!propertySales.grossCapitalGain && this.isCGTApplicable(propertySales, properties),
11061
+ netCapitalGain: propertySales.sumBy('netCapitalGain'),
11062
+ grossCapitalGain: propertySales.grossCapitalGain,
10877
11063
  netCapitalLoss: clientCapitalLoss
10878
11064
  });
10879
11065
  }
@@ -11734,9 +11920,9 @@ class AddressService {
11734
11920
  return this.countriesSubject.asObservable();
11735
11921
  }
11736
11922
  }
11737
- AddressService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AddressService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
11738
- AddressService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AddressService, providedIn: 'root' });
11739
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AddressService, decorators: [{
11923
+ AddressService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AddressService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
11924
+ AddressService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AddressService, providedIn: 'root' });
11925
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AddressService, decorators: [{
11740
11926
  type: Injectable,
11741
11927
  args: [{
11742
11928
  providedIn: 'root'
@@ -11791,9 +11977,9 @@ class BankAccountService extends RestService$1 {
11791
11977
  });
11792
11978
  }
11793
11979
  }
11794
- BankAccountService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11795
- BankAccountService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountService, providedIn: 'root' });
11796
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountService, decorators: [{
11980
+ BankAccountService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11981
+ BankAccountService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountService, providedIn: 'root' });
11982
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountService, decorators: [{
11797
11983
  type: Injectable,
11798
11984
  args: [{
11799
11985
  providedIn: 'root'
@@ -11858,9 +12044,9 @@ class BankTransactionService extends RestService$1 {
11858
12044
  });
11859
12045
  }
11860
12046
  }
11861
- BankTransactionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11862
- BankTransactionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionService, providedIn: 'root' });
11863
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionService, decorators: [{
12047
+ BankTransactionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12048
+ BankTransactionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionService, providedIn: 'root' });
12049
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionService, decorators: [{
11864
12050
  type: Injectable,
11865
12051
  args: [{
11866
12052
  providedIn: 'root'
@@ -11888,9 +12074,9 @@ class BankService extends RestService$1 {
11888
12074
  }));
11889
12075
  }
11890
12076
  }
11891
- BankService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11892
- BankService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankService, providedIn: 'root' });
11893
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankService, decorators: [{
12077
+ BankService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12078
+ BankService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankService, providedIn: 'root' });
12079
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankService, decorators: [{
11894
12080
  type: Injectable,
11895
12081
  args: [{
11896
12082
  providedIn: 'root'
@@ -11910,9 +12096,9 @@ class ChartAccountsDepreciationService extends RestService$1 {
11910
12096
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
11911
12097
  }
11912
12098
  }
11913
- ChartAccountsDepreciationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11914
- ChartAccountsDepreciationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' });
11915
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
12099
+ ChartAccountsDepreciationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12100
+ ChartAccountsDepreciationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' });
12101
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
11916
12102
  type: Injectable,
11917
12103
  args: [{
11918
12104
  providedIn: 'root'
@@ -11952,9 +12138,9 @@ class ChartAccountsService extends RestService$1 {
11952
12138
  }));
11953
12139
  }
11954
12140
  }
11955
- ChartAccountsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11956
- ChartAccountsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsService, providedIn: 'root' });
11957
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsService, decorators: [{
12141
+ ChartAccountsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12142
+ ChartAccountsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsService, providedIn: 'root' });
12143
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsService, decorators: [{
11958
12144
  type: Injectable,
11959
12145
  args: [{
11960
12146
  providedIn: 'root'
@@ -12023,9 +12209,9 @@ class ChatService extends RestService$1 {
12023
12209
  });
12024
12210
  }
12025
12211
  }
12026
- ChatService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChatService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
12027
- ChatService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChatService, providedIn: 'root' });
12028
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChatService, decorators: [{
12212
+ ChatService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChatService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
12213
+ ChatService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChatService, providedIn: 'root' });
12214
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChatService, decorators: [{
12029
12215
  type: Injectable,
12030
12216
  args: [{
12031
12217
  providedIn: 'root'
@@ -12084,9 +12270,9 @@ class MessageService extends RestService$1 {
12084
12270
  });
12085
12271
  }
12086
12272
  }
12087
- MessageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
12088
- MessageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageService, providedIn: 'root' });
12089
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageService, decorators: [{
12273
+ MessageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
12274
+ MessageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageService, providedIn: 'root' });
12275
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageService, decorators: [{
12090
12276
  type: Injectable,
12091
12277
  args: [{
12092
12278
  providedIn: 'root'
@@ -12160,9 +12346,9 @@ class MessageDocumentService extends RestService$1 {
12160
12346
  }));
12161
12347
  }
12162
12348
  }
12163
- MessageDocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12164
- MessageDocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageDocumentService, providedIn: 'root' });
12165
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageDocumentService, decorators: [{
12349
+ MessageDocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12350
+ MessageDocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageDocumentService, providedIn: 'root' });
12351
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageDocumentService, decorators: [{
12166
12352
  type: Injectable,
12167
12353
  args: [{
12168
12354
  providedIn: 'root'
@@ -12287,9 +12473,9 @@ class DepreciationService extends RestService$1 {
12287
12473
  });
12288
12474
  }
12289
12475
  }
12290
- DepreciationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
12291
- DepreciationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationService, providedIn: 'root' });
12292
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationService, decorators: [{
12476
+ DepreciationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
12477
+ DepreciationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationService, providedIn: 'root' });
12478
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationService, decorators: [{
12293
12479
  type: Injectable,
12294
12480
  args: [{
12295
12481
  providedIn: 'root'
@@ -12343,9 +12529,9 @@ class DepreciationCapitalProjectService {
12343
12529
  }));
12344
12530
  }
12345
12531
  }
12346
- DepreciationCapitalProjectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationCapitalProjectService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
12347
- DepreciationCapitalProjectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' });
12348
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
12532
+ DepreciationCapitalProjectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationCapitalProjectService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
12533
+ DepreciationCapitalProjectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' });
12534
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
12349
12535
  type: Injectable,
12350
12536
  args: [{
12351
12537
  providedIn: 'root'
@@ -12413,9 +12599,9 @@ class ReceiptService {
12413
12599
  return plainToClass(this.modelClass, data);
12414
12600
  }
12415
12601
  }
12416
- ReceiptService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ReceiptService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
12417
- ReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ReceiptService, providedIn: 'root' });
12418
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ReceiptService, decorators: [{
12602
+ ReceiptService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReceiptService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
12603
+ ReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReceiptService, providedIn: 'root' });
12604
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReceiptService, decorators: [{
12419
12605
  type: Injectable,
12420
12606
  args: [{
12421
12607
  providedIn: 'root'
@@ -12446,9 +12632,9 @@ class DepreciationReceiptService extends ReceiptService {
12446
12632
  this.listenEvents();
12447
12633
  }
12448
12634
  }
12449
- DepreciationReceiptService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationReceiptService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
12450
- DepreciationReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationReceiptService, providedIn: 'root' });
12451
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationReceiptService, decorators: [{
12635
+ DepreciationReceiptService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationReceiptService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
12636
+ DepreciationReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationReceiptService, providedIn: 'root' });
12637
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationReceiptService, decorators: [{
12452
12638
  type: Injectable,
12453
12639
  args: [{
12454
12640
  providedIn: 'root'
@@ -12664,9 +12850,9 @@ class RestService {
12664
12850
  */
12665
12851
  listenEvents() { }
12666
12852
  }
12667
- RestService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
12668
- RestService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService, providedIn: 'root' });
12669
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService, decorators: [{
12853
+ RestService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
12854
+ RestService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService, providedIn: 'root' });
12855
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService, decorators: [{
12670
12856
  type: Injectable,
12671
12857
  args: [{
12672
12858
  providedIn: 'root'
@@ -12685,9 +12871,9 @@ class DocumentService extends RestService {
12685
12871
  this.modelClass = Document;
12686
12872
  }
12687
12873
  }
12688
- DocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12689
- DocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentService, providedIn: 'root' });
12690
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentService, decorators: [{
12874
+ DocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12875
+ DocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentService, providedIn: 'root' });
12876
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentService, decorators: [{
12691
12877
  type: Injectable,
12692
12878
  args: [{
12693
12879
  providedIn: 'root'
@@ -12753,9 +12939,9 @@ class DocumentFolderService extends RestService {
12753
12939
  }));
12754
12940
  }
12755
12941
  }
12756
- DocumentFolderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12757
- DocumentFolderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentFolderService, providedIn: 'root' });
12758
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentFolderService, decorators: [{
12942
+ DocumentFolderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12943
+ DocumentFolderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentFolderService, providedIn: 'root' });
12944
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentFolderService, decorators: [{
12759
12945
  type: Injectable,
12760
12946
  args: [{
12761
12947
  providedIn: 'root'
@@ -12832,9 +13018,9 @@ FacebookService.authOptions = {
12832
13018
  auth_type: 'rerequest',
12833
13019
  return_scopes: true
12834
13020
  };
12835
- FacebookService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
12836
- FacebookService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FacebookService, providedIn: 'root' });
12837
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FacebookService, decorators: [{
13021
+ FacebookService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
13022
+ FacebookService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FacebookService, providedIn: 'root' });
13023
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FacebookService, decorators: [{
12838
13024
  type: Injectable,
12839
13025
  args: [{
12840
13026
  providedIn: 'root'
@@ -12904,9 +13090,9 @@ class GoogleService {
12904
13090
  google.accounts.id.disableAutoSelect();
12905
13091
  }
12906
13092
  }
12907
- GoogleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
12908
- GoogleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: GoogleService, providedIn: 'root' });
12909
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: GoogleService, decorators: [{
13093
+ GoogleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
13094
+ GoogleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: GoogleService, providedIn: 'root' });
13095
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: GoogleService, decorators: [{
12910
13096
  type: Injectable,
12911
13097
  args: [{
12912
13098
  providedIn: 'root'
@@ -12934,9 +13120,9 @@ class FileService extends RestService$1 {
12934
13120
  .pipe(map((fileBase) => plainToClass(AppFile, fileBase)));
12935
13121
  }
12936
13122
  }
12937
- FileService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12938
- FileService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FileService, providedIn: 'root' });
12939
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FileService, decorators: [{
13123
+ FileService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13124
+ FileService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FileService, providedIn: 'root' });
13125
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FileService, decorators: [{
12940
13126
  type: Injectable,
12941
13127
  args: [{
12942
13128
  providedIn: 'root'
@@ -12953,9 +13139,9 @@ class ClientIncomeTypesService extends RestService$1 {
12953
13139
  this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
12954
13140
  }
12955
13141
  }
12956
- ClientIncomeTypesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientIncomeTypesService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12957
- ClientIncomeTypesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientIncomeTypesService, providedIn: 'root' });
12958
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientIncomeTypesService, decorators: [{
13142
+ ClientIncomeTypesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientIncomeTypesService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13143
+ ClientIncomeTypesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientIncomeTypesService, providedIn: 'root' });
13144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientIncomeTypesService, decorators: [{
12959
13145
  type: Injectable,
12960
13146
  args: [{
12961
13147
  providedIn: 'root'
@@ -13070,9 +13256,9 @@ class ClientInviteService extends RestService {
13070
13256
  });
13071
13257
  }
13072
13258
  }
13073
- ClientInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13074
- ClientInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientInviteService, providedIn: 'root' });
13075
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientInviteService, decorators: [{
13259
+ ClientInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13260
+ ClientInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientInviteService, providedIn: 'root' });
13261
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientInviteService, decorators: [{
13076
13262
  type: Injectable,
13077
13263
  args: [{
13078
13264
  providedIn: 'root'
@@ -13151,9 +13337,9 @@ class ClientMovementService extends RestService {
13151
13337
  });
13152
13338
  }
13153
13339
  }
13154
- ClientMovementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientMovementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13155
- ClientMovementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientMovementService, providedIn: 'root' });
13156
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientMovementService, decorators: [{
13340
+ ClientMovementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientMovementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13341
+ ClientMovementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientMovementService, providedIn: 'root' });
13342
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientMovementService, decorators: [{
13157
13343
  type: Injectable,
13158
13344
  args: [{
13159
13345
  providedIn: 'root'
@@ -13182,9 +13368,9 @@ class EmployeeService extends RestService {
13182
13368
  }));
13183
13369
  }
13184
13370
  }
13185
- EmployeeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13186
- EmployeeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeService, providedIn: 'root' });
13187
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeService, decorators: [{
13371
+ EmployeeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13372
+ EmployeeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeService, providedIn: 'root' });
13373
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeService, decorators: [{
13188
13374
  type: Injectable,
13189
13375
  args: [{
13190
13376
  providedIn: 'root'
@@ -13227,9 +13413,9 @@ class EmployeeInviteService extends RestService {
13227
13413
  }));
13228
13414
  }
13229
13415
  }
13230
- EmployeeInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13231
- EmployeeInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' });
13232
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeInviteService, decorators: [{
13416
+ EmployeeInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13417
+ EmployeeInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' });
13418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeInviteService, decorators: [{
13233
13419
  type: Injectable,
13234
13420
  args: [{
13235
13421
  providedIn: 'root'
@@ -13254,9 +13440,9 @@ class ClientPortfolioReportService {
13254
13440
  }));
13255
13441
  }
13256
13442
  }
13257
- ClientPortfolioReportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
13258
- ClientPortfolioReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' });
13259
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
13443
+ ClientPortfolioReportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
13444
+ ClientPortfolioReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' });
13445
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
13260
13446
  type: Injectable,
13261
13447
  args: [{
13262
13448
  providedIn: 'root'
@@ -13328,9 +13514,9 @@ class FirmService {
13328
13514
  }));
13329
13515
  }
13330
13516
  }
13331
- FirmService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
13332
- FirmService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FirmService, providedIn: 'root' });
13333
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FirmService, decorators: [{
13517
+ FirmService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
13518
+ FirmService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FirmService, providedIn: 'root' });
13519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FirmService, decorators: [{
13334
13520
  type: Injectable,
13335
13521
  args: [{
13336
13522
  providedIn: 'root'
@@ -13405,9 +13591,9 @@ class IncomeSourceForecastService extends RestService {
13405
13591
  }).flat();
13406
13592
  }
13407
13593
  }
13408
- IncomeSourceForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13409
- IncomeSourceForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' });
13410
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
13594
+ IncomeSourceForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13595
+ IncomeSourceForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' });
13596
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
13411
13597
  type: Injectable,
13412
13598
  args: [{
13413
13599
  providedIn: 'root'
@@ -13477,9 +13663,9 @@ class SalaryForecastService extends RestService {
13477
13663
  }).flat();
13478
13664
  }
13479
13665
  }
13480
- SalaryForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SalaryForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13481
- SalaryForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SalaryForecastService, providedIn: 'root' });
13482
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SalaryForecastService, decorators: [{
13666
+ SalaryForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SalaryForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13667
+ SalaryForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SalaryForecastService, providedIn: 'root' });
13668
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SalaryForecastService, decorators: [{
13483
13669
  type: Injectable,
13484
13670
  args: [{
13485
13671
  providedIn: 'root'
@@ -13555,9 +13741,9 @@ class SoleForecastService extends RestService {
13555
13741
  });
13556
13742
  }
13557
13743
  }
13558
- SoleForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13559
- SoleForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleForecastService, providedIn: 'root' });
13560
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleForecastService, decorators: [{
13744
+ SoleForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13745
+ SoleForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleForecastService, providedIn: 'root' });
13746
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleForecastService, decorators: [{
13561
13747
  type: Injectable,
13562
13748
  args: [{
13563
13749
  providedIn: 'root'
@@ -13656,9 +13842,9 @@ class IncomeSourceService extends RestService {
13656
13842
  });
13657
13843
  }
13658
13844
  }
13659
- IncomeSourceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13660
- IncomeSourceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceService, providedIn: 'root' });
13661
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceService, decorators: [{
13845
+ IncomeSourceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13846
+ IncomeSourceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceService, providedIn: 'root' });
13847
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceService, decorators: [{
13662
13848
  type: Injectable,
13663
13849
  args: [{
13664
13850
  providedIn: 'root'
@@ -13721,9 +13907,9 @@ class BorrowingExpenseService {
13721
13907
  }));
13722
13908
  }
13723
13909
  }
13724
- BorrowingExpenseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
13725
- BorrowingExpenseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' });
13726
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BorrowingExpenseService, decorators: [{
13910
+ BorrowingExpenseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
13911
+ BorrowingExpenseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' });
13912
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BorrowingExpenseService, decorators: [{
13727
13913
  type: Injectable,
13728
13914
  args: [{
13729
13915
  providedIn: 'root'
@@ -13807,9 +13993,9 @@ class LoanService extends RestService$1 {
13807
13993
  }));
13808
13994
  }
13809
13995
  }
13810
- LoanService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LoanService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13811
- LoanService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LoanService, providedIn: 'root' });
13812
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LoanService, decorators: [{
13996
+ LoanService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LoanService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13997
+ LoanService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LoanService, providedIn: 'root' });
13998
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LoanService, decorators: [{
13813
13999
  type: Injectable,
13814
14000
  args: [{
13815
14001
  providedIn: 'root'
@@ -13828,9 +14014,9 @@ class PropertyCategoryService extends RestService$1 {
13828
14014
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
13829
14015
  }
13830
14016
  }
13831
- PropertyCategoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13832
- PropertyCategoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' });
13833
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryService, decorators: [{
14017
+ PropertyCategoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14018
+ PropertyCategoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' });
14019
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryService, decorators: [{
13834
14020
  type: Injectable,
13835
14021
  args: [{
13836
14022
  providedIn: 'root'
@@ -13846,9 +14032,9 @@ class PropertyCategoryMovementService extends RestService$1 {
13846
14032
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
13847
14033
  }
13848
14034
  }
13849
- PropertyCategoryMovementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryMovementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13850
- PropertyCategoryMovementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' });
13851
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
14035
+ PropertyCategoryMovementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryMovementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14036
+ PropertyCategoryMovementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' });
14037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
13852
14038
  type: Injectable,
13853
14039
  args: [{
13854
14040
  providedIn: 'root'
@@ -13890,9 +14076,9 @@ class PropertyDocumentService extends RestService$1 {
13890
14076
  });
13891
14077
  }
13892
14078
  }
13893
- PropertyDocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13894
- PropertyDocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyDocumentService, providedIn: 'root' });
13895
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyDocumentService, decorators: [{
14079
+ PropertyDocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14080
+ PropertyDocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyDocumentService, providedIn: 'root' });
14081
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyDocumentService, decorators: [{
13896
14082
  type: Injectable,
13897
14083
  args: [{
13898
14084
  providedIn: 'root'
@@ -13909,9 +14095,9 @@ class TaxExemptionService extends RestService$1 {
13909
14095
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
13910
14096
  }
13911
14097
  }
13912
- TaxExemptionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxExemptionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13913
- TaxExemptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxExemptionService, providedIn: 'root' });
13914
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxExemptionService, decorators: [{
14098
+ TaxExemptionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxExemptionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14099
+ TaxExemptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxExemptionService, providedIn: 'root' });
14100
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxExemptionService, decorators: [{
13915
14101
  type: Injectable,
13916
14102
  args: [{
13917
14103
  providedIn: 'root'
@@ -13927,9 +14113,9 @@ class PropertySaleService extends RestService$1 {
13927
14113
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
13928
14114
  }
13929
14115
  }
13930
- PropertySaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13931
- PropertySaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertySaleService, providedIn: 'root' });
13932
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertySaleService, decorators: [{
14116
+ PropertySaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14117
+ PropertySaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertySaleService, providedIn: 'root' });
14118
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertySaleService, decorators: [{
13933
14119
  type: Injectable,
13934
14120
  args: [{
13935
14121
  providedIn: 'root'
@@ -13976,9 +14162,9 @@ class PropertyShareService extends RestService$1 {
13976
14162
  this.listenCSE(PropertySale, ['post', 'delete'], this.resetCache);
13977
14163
  }
13978
14164
  }
13979
- PropertyShareService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyShareService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13980
- PropertyShareService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyShareService, providedIn: 'root' });
13981
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyShareService, decorators: [{
14165
+ PropertyShareService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyShareService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14166
+ PropertyShareService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyShareService, providedIn: 'root' });
14167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyShareService, decorators: [{
13982
14168
  type: Injectable,
13983
14169
  args: [{
13984
14170
  providedIn: 'root'
@@ -14075,9 +14261,9 @@ class PropertyService extends RestService$1 {
14075
14261
  }));
14076
14262
  }
14077
14263
  }
14078
- PropertyService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14079
- PropertyService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyService, providedIn: 'root' });
14080
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyService, decorators: [{
14264
+ PropertyService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14265
+ PropertyService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyService, providedIn: 'root' });
14266
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyService, decorators: [{
14081
14267
  type: Injectable,
14082
14268
  args: [{
14083
14269
  providedIn: 'root'
@@ -14121,9 +14307,9 @@ class ServiceNotificationService extends RestService {
14121
14307
  });
14122
14308
  }
14123
14309
  }
14124
- ServiceNotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceNotificationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
14125
- ServiceNotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' });
14126
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceNotificationService, decorators: [{
14310
+ ServiceNotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceNotificationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
14311
+ ServiceNotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' });
14312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceNotificationService, decorators: [{
14127
14313
  type: Injectable,
14128
14314
  args: [{
14129
14315
  providedIn: 'root'
@@ -14135,12 +14321,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImpor
14135
14321
  }] }, { type: ToastService }, { type: SseService }];
14136
14322
  } });
14137
14323
 
14138
- var MessagesEnum$2;
14324
+ var MessagesEnum$3;
14139
14325
  (function (MessagesEnum) {
14140
14326
  MessagesEnum["LOGO_UPDATED"] = "Logo updated successfully";
14141
14327
  MessagesEnum["LOGO_ERROR_FORMAT"] = "Wrong file format. Allowed extensions: jpg, img, png";
14142
14328
  MessagesEnum["LOGO_ERROR_SIZE"] = "The file is too big. Maximum size is 2mb";
14143
- })(MessagesEnum$2 || (MessagesEnum$2 = {}));
14329
+ })(MessagesEnum$3 || (MessagesEnum$3 = {}));
14144
14330
 
14145
14331
  class SoleBusinessService extends RestService {
14146
14332
  constructor() {
@@ -14164,7 +14350,7 @@ class SoleBusinessService extends RestService {
14164
14350
  replace(tempCache, plainToClass(SoleBusiness, updatedBusiness));
14165
14351
  this.cache = tempCache;
14166
14352
  this.cacheSubject.next(this.cache);
14167
- this.toastService.success(MessagesEnum$2.LOGO_UPDATED);
14353
+ this.toastService.success(MessagesEnum$3.LOGO_UPDATED);
14168
14354
  }), catchError((error) => {
14169
14355
  // Show error when user provided wrong image (format or size)
14170
14356
  if (error.status === 422) {
@@ -14174,9 +14360,9 @@ class SoleBusinessService extends RestService {
14174
14360
  }));
14175
14361
  }
14176
14362
  }
14177
- SoleBusinessService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14178
- SoleBusinessService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessService, providedIn: 'root' });
14179
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessService, decorators: [{
14363
+ SoleBusinessService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14364
+ SoleBusinessService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessService, providedIn: 'root' });
14365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessService, decorators: [{
14180
14366
  type: Injectable,
14181
14367
  args: [{
14182
14368
  providedIn: 'root'
@@ -14191,9 +14377,9 @@ class SoleBusinessActivityService extends RestService {
14191
14377
  this.isHydra = true;
14192
14378
  }
14193
14379
  }
14194
- SoleBusinessActivityService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14195
- SoleBusinessActivityService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' });
14196
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
14380
+ SoleBusinessActivityService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14381
+ SoleBusinessActivityService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' });
14382
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
14197
14383
  type: Injectable,
14198
14384
  args: [{
14199
14385
  providedIn: 'root'
@@ -14219,9 +14405,9 @@ class SoleBusinessLossService extends RestService {
14219
14405
  });
14220
14406
  }
14221
14407
  }
14222
- SoleBusinessLossService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14223
- SoleBusinessLossService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' });
14224
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossService, decorators: [{
14408
+ SoleBusinessLossService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14409
+ SoleBusinessLossService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' });
14410
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossService, decorators: [{
14225
14411
  type: Injectable,
14226
14412
  args: [{
14227
14413
  providedIn: 'root'
@@ -14239,9 +14425,9 @@ class SoleBusinessLossOffsetRuleService extends RestService {
14239
14425
  this.isHydra = true;
14240
14426
  }
14241
14427
  }
14242
- SoleBusinessLossOffsetRuleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14243
- SoleBusinessLossOffsetRuleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' });
14244
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
14428
+ SoleBusinessLossOffsetRuleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14429
+ SoleBusinessLossOffsetRuleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' });
14430
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
14245
14431
  type: Injectable,
14246
14432
  args: [{
14247
14433
  providedIn: 'root'
@@ -14256,9 +14442,9 @@ class SoleContactService extends RestService {
14256
14442
  this.isHydra = true;
14257
14443
  }
14258
14444
  }
14259
- SoleContactService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14260
- SoleContactService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleContactService, providedIn: 'root' });
14261
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleContactService, decorators: [{
14445
+ SoleContactService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14446
+ SoleContactService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleContactService, providedIn: 'root' });
14447
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleContactService, decorators: [{
14262
14448
  type: Injectable,
14263
14449
  args: [{
14264
14450
  providedIn: 'root'
@@ -14314,9 +14500,9 @@ class SoleDepreciationMethodService {
14314
14500
  });
14315
14501
  }
14316
14502
  }
14317
- SoleDepreciationMethodService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDepreciationMethodService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
14318
- SoleDepreciationMethodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' });
14319
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
14503
+ SoleDepreciationMethodService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDepreciationMethodService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
14504
+ SoleDepreciationMethodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' });
14505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
14320
14506
  type: Injectable,
14321
14507
  args: [{
14322
14508
  providedIn: 'root'
@@ -14371,9 +14557,9 @@ class SoleDetailsService {
14371
14557
  }));
14372
14558
  }
14373
14559
  }
14374
- SoleDetailsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDetailsService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable });
14375
- SoleDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDetailsService, providedIn: 'root' });
14376
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDetailsService, decorators: [{
14560
+ SoleDetailsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDetailsService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable });
14561
+ SoleDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDetailsService, providedIn: 'root' });
14562
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDetailsService, decorators: [{
14377
14563
  type: Injectable,
14378
14564
  args: [{
14379
14565
  providedIn: 'root'
@@ -14449,9 +14635,9 @@ class SoleInvoiceService extends RestService {
14449
14635
  });
14450
14636
  }
14451
14637
  }
14452
- SoleInvoiceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14453
- SoleInvoiceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' });
14454
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceService, decorators: [{
14638
+ SoleInvoiceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14639
+ SoleInvoiceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' });
14640
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceService, decorators: [{
14455
14641
  type: Injectable,
14456
14642
  args: [{
14457
14643
  providedIn: 'root'
@@ -14466,9 +14652,9 @@ class SoleInvoiceTemplateService extends RestService {
14466
14652
  this.isHydra = true;
14467
14653
  }
14468
14654
  }
14469
- SoleInvoiceTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14470
- SoleInvoiceTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' });
14471
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
14655
+ SoleInvoiceTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14656
+ SoleInvoiceTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' });
14657
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
14472
14658
  type: Injectable,
14473
14659
  args: [{
14474
14660
  providedIn: 'root'
@@ -14483,9 +14669,9 @@ class BasReportService extends RestService {
14483
14669
  this.isHydra = true;
14484
14670
  }
14485
14671
  }
14486
- BasReportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14487
- BasReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasReportService, providedIn: 'root' });
14488
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasReportService, decorators: [{
14672
+ BasReportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14673
+ BasReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasReportService, providedIn: 'root' });
14674
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasReportService, decorators: [{
14489
14675
  type: Injectable,
14490
14676
  args: [{
14491
14677
  providedIn: 'root'
@@ -14511,9 +14697,9 @@ class ServicePaymentService extends RestService$1 {
14511
14697
  return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
14512
14698
  }
14513
14699
  }
14514
- ServicePaymentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14515
- ServicePaymentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentService, providedIn: 'root' });
14516
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentService, decorators: [{
14700
+ ServicePaymentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14701
+ ServicePaymentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentService, providedIn: 'root' });
14702
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentService, decorators: [{
14517
14703
  type: Injectable,
14518
14704
  args: [{
14519
14705
  providedIn: 'root'
@@ -14561,9 +14747,9 @@ class ServicePaymentMethodService extends RestService$1 {
14561
14747
  });
14562
14748
  }
14563
14749
  }
14564
- ServicePaymentMethodService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
14565
- ServicePaymentMethodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' });
14566
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
14750
+ ServicePaymentMethodService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
14751
+ ServicePaymentMethodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' });
14752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
14567
14753
  type: Injectable,
14568
14754
  args: [{
14569
14755
  providedIn: 'root'
@@ -14588,9 +14774,9 @@ class ServicePriceService extends RestService$1 {
14588
14774
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
14589
14775
  }
14590
14776
  }
14591
- ServicePriceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14592
- ServicePriceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePriceService, providedIn: 'root' });
14593
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePriceService, decorators: [{
14777
+ ServicePriceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14778
+ ServicePriceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePriceService, providedIn: 'root' });
14779
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePriceService, decorators: [{
14594
14780
  type: Injectable,
14595
14781
  args: [{
14596
14782
  providedIn: 'root'
@@ -14706,9 +14892,9 @@ class SubscriptionService extends RestService$1 {
14706
14892
  });
14707
14893
  }
14708
14894
  }
14709
- SubscriptionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
14710
- SubscriptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SubscriptionService, providedIn: 'root' });
14711
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SubscriptionService, decorators: [{
14895
+ SubscriptionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
14896
+ SubscriptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SubscriptionService, providedIn: 'root' });
14897
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SubscriptionService, decorators: [{
14712
14898
  type: Injectable,
14713
14899
  args: [{
14714
14900
  providedIn: 'root'
@@ -14730,9 +14916,9 @@ class ServiceProductService extends RestService$1 {
14730
14916
  this.isApiPlatform = true;
14731
14917
  }
14732
14918
  }
14733
- ServiceProductService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14734
- ServiceProductService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceProductService, providedIn: 'root' });
14735
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceProductService, decorators: [{
14919
+ ServiceProductService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14920
+ ServiceProductService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceProductService, providedIn: 'root' });
14921
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceProductService, decorators: [{
14736
14922
  type: Injectable,
14737
14923
  args: [{
14738
14924
  providedIn: 'root'
@@ -14764,9 +14950,9 @@ class TaxReviewHistoryService extends RestService {
14764
14950
  });
14765
14951
  }
14766
14952
  }
14767
- TaxReviewHistoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewHistoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14768
- TaxReviewHistoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' });
14769
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
14953
+ TaxReviewHistoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewHistoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14954
+ TaxReviewHistoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' });
14955
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
14770
14956
  type: Injectable,
14771
14957
  args: [{
14772
14958
  providedIn: 'root'
@@ -14855,9 +15041,9 @@ class TaxReviewService extends RestService {
14855
15041
  });
14856
15042
  }
14857
15043
  }
14858
- TaxReviewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14859
- TaxReviewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewService, providedIn: 'root' });
14860
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewService, decorators: [{
15044
+ TaxReviewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15045
+ TaxReviewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewService, providedIn: 'root' });
15046
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewService, decorators: [{
14861
15047
  type: Injectable,
14862
15048
  args: [{
14863
15049
  providedIn: 'root'
@@ -14914,9 +15100,9 @@ class TaxSummaryService {
14914
15100
  });
14915
15101
  }
14916
15102
  }
14917
- TaxSummaryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
14918
- TaxSummaryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxSummaryService, providedIn: 'root' });
14919
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxSummaryService, decorators: [{
15103
+ TaxSummaryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
15104
+ TaxSummaryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxSummaryService, providedIn: 'root' });
15105
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxSummaryService, decorators: [{
14920
15106
  type: Injectable,
14921
15107
  args: [{
14922
15108
  providedIn: 'root'
@@ -14937,9 +15123,9 @@ class AllocationRuleService extends RestService$1 {
14937
15123
  this.isApiPlatform = true;
14938
15124
  }
14939
15125
  }
14940
- AllocationRuleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14941
- AllocationRuleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AllocationRuleService, providedIn: 'root' });
14942
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AllocationRuleService, decorators: [{
15126
+ AllocationRuleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15127
+ AllocationRuleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AllocationRuleService, providedIn: 'root' });
15128
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AllocationRuleService, decorators: [{
14943
15129
  type: Injectable,
14944
15130
  args: [{
14945
15131
  providedIn: 'root'
@@ -15030,9 +15216,9 @@ class TransactionAllocationService extends RestService {
15030
15216
  });
15031
15217
  }
15032
15218
  }
15033
- TransactionAllocationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionAllocationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15034
- TransactionAllocationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' });
15035
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionAllocationService, decorators: [{
15219
+ TransactionAllocationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionAllocationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15220
+ TransactionAllocationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' });
15221
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionAllocationService, decorators: [{
15036
15222
  type: Injectable,
15037
15223
  args: [{
15038
15224
  providedIn: 'root'
@@ -15058,9 +15244,9 @@ class TransactionReceiptService extends ReceiptService {
15058
15244
  this.listenEvents();
15059
15245
  }
15060
15246
  }
15061
- TransactionReceiptService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionReceiptService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
15062
- TransactionReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionReceiptService, providedIn: 'root' });
15063
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionReceiptService, decorators: [{
15247
+ TransactionReceiptService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionReceiptService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable });
15248
+ TransactionReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionReceiptService, providedIn: 'root' });
15249
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionReceiptService, decorators: [{
15064
15250
  type: Injectable,
15065
15251
  args: [{
15066
15252
  providedIn: 'root'
@@ -15383,9 +15569,9 @@ class TransactionService extends RestService {
15383
15569
  });
15384
15570
  }
15385
15571
  }
15386
- TransactionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: TransactionReceiptService }], target: i0.ɵɵFactoryTarget.Injectable });
15387
- TransactionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionService, providedIn: 'root' });
15388
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionService, decorators: [{
15572
+ TransactionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: TransactionReceiptService }], target: i0.ɵɵFactoryTarget.Injectable });
15573
+ TransactionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionService, providedIn: 'root' });
15574
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionService, decorators: [{
15389
15575
  type: Injectable,
15390
15576
  args: [{
15391
15577
  providedIn: 'root'
@@ -15416,9 +15602,9 @@ class TutorialVideoService {
15416
15602
  }
15417
15603
  TutorialVideoService.googleUrl = `https://www.googleapis.com/drive/v3/files?fields=*&mimeType='video/mp4'&orderBy=name`;
15418
15604
  TutorialVideoService.parents = '1uLMLzi8WUy2go9xhfzJEwgFwOM43dukM';
15419
- TutorialVideoService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TutorialVideoService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
15420
- TutorialVideoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TutorialVideoService, providedIn: 'root' });
15421
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TutorialVideoService, decorators: [{
15605
+ TutorialVideoService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TutorialVideoService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
15606
+ TutorialVideoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TutorialVideoService, providedIn: 'root' });
15607
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TutorialVideoService, decorators: [{
15422
15608
  type: Injectable,
15423
15609
  args: [{
15424
15610
  providedIn: 'root'
@@ -15440,9 +15626,9 @@ class VehicleService extends RestService {
15440
15626
  this.modelClass = Vehicle;
15441
15627
  }
15442
15628
  }
15443
- VehicleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15444
- VehicleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleService, providedIn: 'root' });
15445
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleService, decorators: [{
15629
+ VehicleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15630
+ VehicleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleService, providedIn: 'root' });
15631
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleService, decorators: [{
15446
15632
  type: Injectable,
15447
15633
  args: [{
15448
15634
  providedIn: 'root'
@@ -15514,9 +15700,9 @@ class VehicleClaimService extends RestService {
15514
15700
  combineLatest(batch$).subscribe();
15515
15701
  }
15516
15702
  }
15517
- VehicleClaimService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15518
- VehicleClaimService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimService, providedIn: 'root' });
15519
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimService, decorators: [{
15703
+ VehicleClaimService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15704
+ VehicleClaimService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimService, providedIn: 'root' });
15705
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimService, decorators: [{
15520
15706
  type: Injectable,
15521
15707
  args: [{
15522
15708
  providedIn: 'root'
@@ -15593,9 +15779,9 @@ class VehicleClaimDetailsService {
15593
15779
  this.update(vehicleClaimDetails).subscribe();
15594
15780
  }
15595
15781
  }
15596
- VehicleClaimDetailsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimDetailsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable });
15597
- VehicleClaimDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' });
15598
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
15782
+ VehicleClaimDetailsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimDetailsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable });
15783
+ VehicleClaimDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' });
15784
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
15599
15785
  type: Injectable,
15600
15786
  args: [{
15601
15787
  providedIn: 'root'
@@ -15617,9 +15803,28 @@ class VehicleLogbookService extends RestService {
15617
15803
  this.modelClass = VehicleLogbook;
15618
15804
  }
15619
15805
  }
15620
- VehicleLogbookService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15621
- VehicleLogbookService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' });
15622
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleLogbookService, decorators: [{
15806
+ VehicleLogbookService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15807
+ VehicleLogbookService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' });
15808
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleLogbookService, decorators: [{
15809
+ type: Injectable,
15810
+ args: [{
15811
+ providedIn: 'root'
15812
+ }]
15813
+ }] });
15814
+
15815
+ class AnnualClientDetailsService extends RestService$1 {
15816
+ constructor() {
15817
+ super(...arguments);
15818
+ this.modelClass = AnnualClientDetails;
15819
+ this.collectionClass = Collection;
15820
+ this.endpointUri = 'annual-client-details';
15821
+ this.isApiPlatform = true;
15822
+ this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
15823
+ }
15824
+ }
15825
+ AnnualClientDetailsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15826
+ AnnualClientDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' });
15827
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
15623
15828
  type: Injectable,
15624
15829
  args: [{
15625
15830
  providedIn: 'root'
@@ -15652,9 +15857,9 @@ class OccupationService {
15652
15857
  return this.occupationsSubject.asObservable();
15653
15858
  }
15654
15859
  }
15655
- OccupationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
15656
- OccupationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: OccupationService, providedIn: 'root' });
15657
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: OccupationService, decorators: [{
15860
+ OccupationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
15861
+ OccupationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: OccupationService, providedIn: 'root' });
15862
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: OccupationService, decorators: [{
15658
15863
  type: Injectable,
15659
15864
  args: [{
15660
15865
  providedIn: 'root'
@@ -15700,9 +15905,9 @@ class UserEventSettingService extends RestService {
15700
15905
  }));
15701
15906
  }
15702
15907
  }
15703
- UserEventSettingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15704
- UserEventSettingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventSettingService, providedIn: 'root' });
15705
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventSettingService, decorators: [{
15908
+ UserEventSettingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15909
+ UserEventSettingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventSettingService, providedIn: 'root' });
15910
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventSettingService, decorators: [{
15706
15911
  type: Injectable,
15707
15912
  args: [{
15708
15913
  providedIn: 'root'
@@ -15717,9 +15922,9 @@ class UserEventTypeService extends RestService {
15717
15922
  this.isHydra = true;
15718
15923
  }
15719
15924
  }
15720
- UserEventTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15721
- UserEventTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventTypeService, providedIn: 'root' });
15722
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventTypeService, decorators: [{
15925
+ UserEventTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15926
+ UserEventTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventTypeService, providedIn: 'root' });
15927
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventTypeService, decorators: [{
15723
15928
  type: Injectable,
15724
15929
  args: [{
15725
15930
  providedIn: 'root'
@@ -15736,40 +15941,34 @@ class UsersInviteService extends RestService {
15736
15941
  this.url = 'users/invite';
15737
15942
  }
15738
15943
  }
15739
- UsersInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15740
- UsersInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UsersInviteService, providedIn: 'root' });
15741
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UsersInviteService, decorators: [{
15944
+ UsersInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15945
+ UsersInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UsersInviteService, providedIn: 'root' });
15946
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UsersInviteService, decorators: [{
15742
15947
  type: Injectable,
15743
15948
  args: [{
15744
15949
  providedIn: 'root'
15745
15950
  }]
15746
15951
  }] });
15747
15952
 
15748
- /**
15749
- * Service that handling banks logic
15750
- */
15751
15953
  class HoldingService extends RestService$1 {
15752
15954
  constructor() {
15753
15955
  super(...arguments);
15754
15956
  this.modelClass = Holding;
15755
- this.collectionClass = Collection;
15957
+ this.collectionClass = HoldingCollection;
15756
15958
  this.endpointUri = 'holdings';
15757
15959
  this.isApiPlatform = true;
15758
15960
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15759
15961
  }
15760
15962
  }
15761
- HoldingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15762
- HoldingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingService, providedIn: 'root' });
15763
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingService, decorators: [{
15963
+ HoldingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15964
+ HoldingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingService, providedIn: 'root' });
15965
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingService, decorators: [{
15764
15966
  type: Injectable,
15765
15967
  args: [{
15766
15968
  providedIn: 'root'
15767
15969
  }]
15768
15970
  }] });
15769
15971
 
15770
- /**
15771
- * Service that handling banks logic
15772
- */
15773
15972
  class HoldingTypeService extends RestService$1 {
15774
15973
  constructor() {
15775
15974
  super(...arguments);
@@ -15780,18 +15979,15 @@ class HoldingTypeService extends RestService$1 {
15780
15979
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15781
15980
  }
15782
15981
  }
15783
- HoldingTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15784
- HoldingTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingTypeService, providedIn: 'root' });
15785
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingTypeService, decorators: [{
15982
+ HoldingTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15983
+ HoldingTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingTypeService, providedIn: 'root' });
15984
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingTypeService, decorators: [{
15786
15985
  type: Injectable,
15787
15986
  args: [{
15788
15987
  providedIn: 'root'
15789
15988
  }]
15790
15989
  }] });
15791
15990
 
15792
- /**
15793
- * Service that handling banks logic
15794
- */
15795
15991
  class HoldingSaleService extends RestService$1 {
15796
15992
  constructor() {
15797
15993
  super(...arguments);
@@ -15802,9 +15998,9 @@ class HoldingSaleService extends RestService$1 {
15802
15998
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15803
15999
  }
15804
16000
  }
15805
- HoldingSaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15806
- HoldingSaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingSaleService, providedIn: 'root' });
15807
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingSaleService, decorators: [{
16001
+ HoldingSaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
16002
+ HoldingSaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingSaleService, providedIn: 'root' });
16003
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingSaleService, decorators: [{
15808
16004
  type: Injectable,
15809
16005
  args: [{
15810
16006
  providedIn: 'root'
@@ -16011,9 +16207,9 @@ class AccountSetupService {
16011
16207
  }));
16012
16208
  }
16013
16209
  }
16014
- AccountSetupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", 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 });
16015
- AccountSetupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AccountSetupService, providedIn: 'root' });
16016
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AccountSetupService, decorators: [{
16210
+ 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 });
16211
+ AccountSetupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AccountSetupService, providedIn: 'root' });
16212
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AccountSetupService, decorators: [{
16017
16213
  type: Injectable,
16018
16214
  args: [{
16019
16215
  providedIn: 'root'
@@ -16039,9 +16235,9 @@ class RewardfulService {
16039
16235
  });
16040
16236
  }
16041
16237
  }
16042
- RewardfulService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RewardfulService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16043
- RewardfulService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RewardfulService, providedIn: 'root' });
16044
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RewardfulService, decorators: [{
16238
+ RewardfulService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RewardfulService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16239
+ RewardfulService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RewardfulService, providedIn: 'root' });
16240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RewardfulService, decorators: [{
16045
16241
  type: Injectable,
16046
16242
  args: [{
16047
16243
  providedIn: 'root'
@@ -16088,9 +16284,9 @@ class AssetsService {
16088
16284
  return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
16089
16285
  }
16090
16286
  }
16091
- AssetsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16092
- AssetsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AssetsService, providedIn: 'root' });
16093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AssetsService, decorators: [{
16287
+ AssetsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16288
+ AssetsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AssetsService, providedIn: 'root' });
16289
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AssetsService, decorators: [{
16094
16290
  type: Injectable,
16095
16291
  args: [{
16096
16292
  providedIn: 'root'
@@ -16155,9 +16351,9 @@ class BankTransactionCalculationService {
16155
16351
  return allocations.getByBankTransactionsIds(bankTransactions.debitTransactions.getIds()).amount;
16156
16352
  }
16157
16353
  }
16158
- BankTransactionCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16159
- BankTransactionCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionCalculationService, providedIn: 'root' });
16160
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionCalculationService, decorators: [{
16354
+ BankTransactionCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16355
+ BankTransactionCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionCalculationService, providedIn: 'root' });
16356
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionCalculationService, decorators: [{
16161
16357
  type: Injectable,
16162
16358
  args: [{
16163
16359
  providedIn: 'root'
@@ -16186,9 +16382,9 @@ class BankAccountCalculationService {
16186
16382
  return bankAccounts.currentBalance - this.getTaxTankBalance(bankAccounts.getLoanAccounts(), bankTransactions, allocations);
16187
16383
  }
16188
16384
  }
16189
- BankAccountCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountCalculationService, deps: [{ token: BankTransactionCalculationService }], target: i0.ɵɵFactoryTarget.Injectable });
16190
- BankAccountCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' });
16191
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountCalculationService, decorators: [{
16385
+ BankAccountCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountCalculationService, deps: [{ token: BankTransactionCalculationService }], target: i0.ɵɵFactoryTarget.Injectable });
16386
+ BankAccountCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' });
16387
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountCalculationService, decorators: [{
16192
16388
  type: Injectable,
16193
16389
  args: [{
16194
16390
  providedIn: 'root'
@@ -16213,9 +16409,9 @@ class ExportFormatterService {
16213
16409
  }));
16214
16410
  }
16215
16411
  }
16216
- ExportFormatterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable });
16217
- ExportFormatterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ExportFormatterService, providedIn: 'root' });
16218
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ExportFormatterService, decorators: [{
16412
+ ExportFormatterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable });
16413
+ ExportFormatterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ExportFormatterService, providedIn: 'root' });
16414
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ExportFormatterService, decorators: [{
16219
16415
  type: Injectable,
16220
16416
  args: [{
16221
16417
  providedIn: 'root'
@@ -16236,9 +16432,9 @@ class HeaderTitleService {
16236
16432
  }), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
16237
16433
  }
16238
16434
  }
16239
- HeaderTitleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable });
16240
- HeaderTitleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HeaderTitleService, providedIn: 'root' });
16241
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HeaderTitleService, decorators: [{
16435
+ HeaderTitleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable });
16436
+ HeaderTitleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HeaderTitleService, providedIn: 'root' });
16437
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HeaderTitleService, decorators: [{
16242
16438
  type: Injectable,
16243
16439
  args: [{
16244
16440
  providedIn: 'root'
@@ -16272,9 +16468,9 @@ class IntercomService {
16272
16468
  window.Intercom('boot', connectionCredentials);
16273
16469
  }
16274
16470
  }
16275
- IntercomService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16276
- IntercomService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IntercomService, providedIn: 'root' });
16277
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IntercomService, decorators: [{
16471
+ IntercomService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16472
+ IntercomService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IntercomService, providedIn: 'root' });
16473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IntercomService, decorators: [{
16278
16474
  type: Injectable,
16279
16475
  args: [{
16280
16476
  providedIn: 'root'
@@ -16346,9 +16542,9 @@ class PdfFromDomElementService {
16346
16542
  .then((blob) => new File([blob], filename, { type: 'application/pdf' })));
16347
16543
  }
16348
16544
  }
16349
- PdfFromDomElementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16350
- PdfFromDomElementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' });
16351
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDomElementService, decorators: [{
16545
+ PdfFromDomElementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16546
+ PdfFromDomElementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' });
16547
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDomElementService, decorators: [{
16352
16548
  type: Injectable,
16353
16549
  args: [{
16354
16550
  providedIn: 'root'
@@ -16427,9 +16623,9 @@ class PdfFromTableService {
16427
16623
  doc.addImage(logo, 'PNG', doc.internal.pageSize.width - FILE_SETTINGS.logo.positionX, FILE_SETTINGS.logo.positionY, FILE_SETTINGS.logo.width, FILE_SETTINGS.logo.height);
16428
16624
  }
16429
16625
  }
16430
- PdfFromTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16431
- PdfFromTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromTableService, providedIn: 'root' });
16432
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromTableService, decorators: [{
16626
+ PdfFromTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16627
+ PdfFromTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromTableService, providedIn: 'root' });
16628
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromTableService, decorators: [{
16433
16629
  type: Injectable,
16434
16630
  args: [{
16435
16631
  providedIn: 'root'
@@ -16461,9 +16657,9 @@ class PdfFromDataTableService extends PdfFromTableService {
16461
16657
  return pdf;
16462
16658
  }
16463
16659
  }
16464
- PdfFromDataTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable });
16465
- PdfFromDataTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' });
16466
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDataTableService, decorators: [{
16660
+ PdfFromDataTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable });
16661
+ PdfFromDataTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' });
16662
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDataTableService, decorators: [{
16467
16663
  type: Injectable,
16468
16664
  args: [{
16469
16665
  providedIn: 'root'
@@ -16496,9 +16692,9 @@ class PdfFromHtmlTableService extends PdfFromTableService {
16496
16692
  return pdf;
16497
16693
  }
16498
16694
  }
16499
- PdfFromHtmlTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
16500
- PdfFromHtmlTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' });
16501
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
16695
+ PdfFromHtmlTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
16696
+ PdfFromHtmlTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' });
16697
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
16502
16698
  type: Injectable,
16503
16699
  args: [{
16504
16700
  providedIn: 'root'
@@ -16531,9 +16727,9 @@ class EquityPositionChartService {
16531
16727
  }));
16532
16728
  }
16533
16729
  }
16534
- EquityPositionChartService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16535
- EquityPositionChartService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' });
16536
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EquityPositionChartService, decorators: [{
16730
+ EquityPositionChartService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16731
+ EquityPositionChartService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' });
16732
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EquityPositionChartService, decorators: [{
16537
16733
  type: Injectable,
16538
16734
  args: [{
16539
16735
  providedIn: 'root'
@@ -16707,9 +16903,9 @@ class PropertyCalculationService {
16707
16903
  }
16708
16904
  }
16709
16905
  }
16710
- PropertyCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16711
- PropertyCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' });
16712
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCalculationService, decorators: [{
16906
+ PropertyCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16907
+ PropertyCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' });
16908
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCalculationService, decorators: [{
16713
16909
  type: Injectable,
16714
16910
  args: [{
16715
16911
  providedIn: 'root'
@@ -16766,9 +16962,9 @@ class PropertyTransactionReportService {
16766
16962
  }));
16767
16963
  }
16768
16964
  }
16769
- PropertyTransactionReportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyTransactionReportService, deps: [{ token: PropertyService }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }], target: i0.ɵɵFactoryTarget.Injectable });
16770
- PropertyTransactionReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' });
16771
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
16965
+ PropertyTransactionReportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyTransactionReportService, deps: [{ token: PropertyService }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }], target: i0.ɵɵFactoryTarget.Injectable });
16966
+ PropertyTransactionReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' });
16967
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
16772
16968
  type: Injectable,
16773
16969
  args: [{
16774
16970
  providedIn: 'root'
@@ -16838,9 +17034,9 @@ class TransactionCalculationService {
16838
17034
  return bankTransactions.sumBy('amount') - allocations.getByBankTransactionsIds(bankTransactions.getIds()).sumBy('amount');
16839
17035
  }
16840
17036
  }
16841
- TransactionCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16842
- TransactionCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionCalculationService, providedIn: 'root' });
16843
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionCalculationService, decorators: [{
17037
+ TransactionCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
17038
+ TransactionCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionCalculationService, providedIn: 'root' });
17039
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionCalculationService, decorators: [{
16844
17040
  type: Injectable,
16845
17041
  args: [{
16846
17042
  providedIn: 'root'
@@ -16900,9 +17096,9 @@ class LogbookBestPeriodService {
16900
17096
  });
16901
17097
  }
16902
17098
  }
16903
- LogbookBestPeriodService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LogbookBestPeriodService, deps: [{ token: VehicleClaimDetailsService }, { token: VehicleClaimService }, { token: VehicleLogbookService }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable });
16904
- LogbookBestPeriodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LogbookBestPeriodService, providedIn: 'root' });
16905
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LogbookBestPeriodService, decorators: [{
17099
+ LogbookBestPeriodService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LogbookBestPeriodService, deps: [{ token: VehicleClaimDetailsService }, { token: VehicleClaimService }, { token: VehicleLogbookService }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable });
17100
+ LogbookBestPeriodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LogbookBestPeriodService, providedIn: 'root' });
17101
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LogbookBestPeriodService, decorators: [{
16906
17102
  type: Injectable,
16907
17103
  args: [{
16908
17104
  providedIn: 'root'
@@ -16943,9 +17139,9 @@ class XlsxService {
16943
17139
  return xlsx.write(workbook, { bookType: 'xlsx', type: 'array' });
16944
17140
  }
16945
17141
  }
16946
- XlsxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16947
- XlsxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: XlsxService, providedIn: 'root' });
16948
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: XlsxService, decorators: [{
17142
+ XlsxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
17143
+ XlsxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: XlsxService, providedIn: 'root' });
17144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: XlsxService, decorators: [{
16949
17145
  type: Injectable,
16950
17146
  args: [{
16951
17147
  providedIn: 'root'
@@ -17466,15 +17662,15 @@ function passwordMatchValidator(newPassControlName, confirmPassControlName) {
17466
17662
  };
17467
17663
  }
17468
17664
 
17469
- var MessagesEnum$1;
17665
+ var MessagesEnum$2;
17470
17666
  (function (MessagesEnum) {
17471
17667
  MessagesEnum["INVALID_DATE"] = "The date should not be before $1";
17472
- })(MessagesEnum$1 || (MessagesEnum$1 = {}));
17668
+ })(MessagesEnum$2 || (MessagesEnum$2 = {}));
17473
17669
 
17474
17670
  /**
17475
17671
  * Validation function, that checks If date form value is more than provided date
17476
17672
  */
17477
- function minDateValidator(date, message = MessagesEnum$1.INVALID_DATE.replace('$1', new DatePipe('en-US').transform(date))) {
17673
+ function minDateValidator(date, message = MessagesEnum$2.INVALID_DATE.replace('$1', new DatePipe('en-US').transform(date))) {
17478
17674
  return (control) => {
17479
17675
  if (!control.value) {
17480
17676
  return null;
@@ -18237,6 +18433,38 @@ class BankLoginForm extends AbstractForm {
18237
18433
  }
18238
18434
  }
18239
18435
 
18436
+ class AnnualClientDetailsForm extends AbstractForm {
18437
+ constructor(annualClientDetails = plainToClass(AnnualClientDetails, {})) {
18438
+ super({
18439
+ capitalLoss: new UntypedFormControl(annualClientDetails.capitalLoss, Validators.required),
18440
+ privateHealthCare: new UntypedFormControl(annualClientDetails.privateHealthCare, Validators.required),
18441
+ spouse: new UntypedFormControl(annualClientDetails.spouse, Validators.required),
18442
+ spouseAnnualIncome: new UntypedFormControl(annualClientDetails.spouseAnnualIncome, conditionalValidator(() => this.get('spouse').value, Validators.required)),
18443
+ hasDependants: new UntypedFormControl(!!annualClientDetails.spouseAnnualIncome, Validators.required),
18444
+ dependants: new UntypedFormControl(annualClientDetails.dependants, conditionalValidator(() => this.get('hasDependants').value, Validators.required)),
18445
+ hasStudentLoan: new UntypedFormControl(!!annualClientDetails.studentLoanAmount, Validators.required),
18446
+ studentLoanAmount: new UntypedFormControl(annualClientDetails.studentLoanAmount, conditionalValidator(() => this.get('hasStudentLoan').value, Validators.required)),
18447
+ }, annualClientDetails);
18448
+ this.annualClientDetails = annualClientDetails;
18449
+ this.watchFieldForToggle('spouse', 'spouseAnnualIncome');
18450
+ this.watchFieldForToggle('hasDependants', 'dependants');
18451
+ this.watchFieldForToggle('hasStudentLoan', 'studentLoanAmount');
18452
+ this.emitValues();
18453
+ }
18454
+ watchFieldForToggle(field, dependantField) {
18455
+ this.get(field).valueChanges.subscribe((value) => this.toggleField(dependantField, !!value));
18456
+ }
18457
+ toggleField(field, enable) {
18458
+ if (enable) {
18459
+ this.get(field).enable();
18460
+ }
18461
+ else {
18462
+ this.get(field).setValue(0);
18463
+ this.get(field).disable();
18464
+ }
18465
+ }
18466
+ }
18467
+
18240
18468
  class ClientIncomeTypesForm extends AbstractForm {
18241
18469
  constructor(clientIncomeTypes = plainToClass(ClientIncomeTypes, {})) {
18242
18470
  super({
@@ -18392,22 +18620,18 @@ class PropertySaleCostSaleForm extends AbstractForm {
18392
18620
  commission: new UntypedFormControl(propertySale.commission || 0, Validators.required),
18393
18621
  legalFees: new UntypedFormControl(propertySale.legalFees || 0, Validators.required),
18394
18622
  otherCost: new UntypedFormControl(propertySale.otherCost || 0, Validators.required),
18395
- capitalLoss: new UntypedFormControl(propertySale.capitalLoss || 0, Validators.required),
18396
- grossCGT: new UntypedFormControl({ value: propertySale.grossCGT, disabled: true }, Validators.required),
18397
- grossCGTAfterLoss: new UntypedFormControl({ value: propertySale.grossCGTAfterLoss, disabled: true }, Validators.required),
18623
+ grossCapitalGain: new UntypedFormControl({ value: propertySale.grossCapitalGain, disabled: true }, Validators.required),
18398
18624
  }, propertySale);
18399
18625
  this.propertySale = propertySale;
18400
18626
  this.property = property;
18401
18627
  this.listenEvents();
18402
- this.updateGrossCGT();
18628
+ this.updateGrossCapitalGain();
18403
18629
  }
18404
18630
  listenEvents() {
18405
18631
  this.listenCommissionUpdated();
18406
18632
  this.listenLegalFeesUpdated();
18407
18633
  this.listenOtherCostUpdated();
18408
18634
  this.listenPriceUpdated();
18409
- this.listenCapitalLossUpdated();
18410
- this.listenGrossCGT();
18411
18635
  }
18412
18636
  /**
18413
18637
  * Get property instance based on provided property and form value to get actual form calculations
@@ -18417,41 +18641,31 @@ class PropertySaleCostSaleForm extends AbstractForm {
18417
18641
  return plainToClass(PropertySale, Object.assign({}, this.propertySale, this.getRawValue()));
18418
18642
  }
18419
18643
  submit(data = {}) {
18420
- // 'grossCGT' field is always disabled, but we need it to submit result
18421
- Object.assign(data, { grossCGT: this.get('grossCGT').value });
18644
+ // 'grossCapitalGain' field is always disabled, but we need it to submit result
18645
+ Object.assign(data, { grossCapitalGain: this.get('grossCapitalGain').value });
18422
18646
  return super.submit(data);
18423
18647
  }
18424
- updateGrossCGT() {
18425
- this.get('grossCGT').setValue(Math.round(this.property.calculateGrossCGT(this.getPropertySale())).toFixed());
18648
+ updateGrossCapitalGain() {
18649
+ this.get('grossCapitalGain').setValue(Math.round(this.property.calculateGrossCapitalGain(this.getPropertySale())).toFixed());
18426
18650
  }
18427
18651
  listenCommissionUpdated() {
18428
18652
  this.get('commission').valueChanges.subscribe(() => {
18429
- this.updateGrossCGT();
18653
+ this.updateGrossCapitalGain();
18430
18654
  });
18431
18655
  }
18432
18656
  listenLegalFeesUpdated() {
18433
18657
  this.get('legalFees').valueChanges.subscribe(() => {
18434
- this.updateGrossCGT();
18658
+ this.updateGrossCapitalGain();
18435
18659
  });
18436
18660
  }
18437
18661
  listenOtherCostUpdated() {
18438
18662
  this.get('otherCost').valueChanges.subscribe(() => {
18439
- this.updateGrossCGT();
18663
+ this.updateGrossCapitalGain();
18440
18664
  });
18441
18665
  }
18442
18666
  listenPriceUpdated() {
18443
18667
  this.get('price').valueChanges.subscribe(() => {
18444
- this.updateGrossCGT();
18445
- });
18446
- }
18447
- listenCapitalLossUpdated() {
18448
- this.get('capitalLoss').valueChanges.subscribe(() => {
18449
- this.updateGrossCGT();
18450
- });
18451
- }
18452
- listenGrossCGT() {
18453
- this.get('grossCGT').valueChanges.subscribe((grossCGT) => {
18454
- this.get('grossCGTAfterLoss').setValue(this.getPropertySale().grossCGTAfterLoss);
18668
+ this.updateGrossCapitalGain();
18455
18669
  });
18456
18670
  }
18457
18671
  }
@@ -18465,7 +18679,8 @@ class PropertySaleExemptionsForm extends AbstractForm {
18465
18679
  super({
18466
18680
  taxExemption: new UntypedFormControl(taxExemptions.findBy('id', (_b = (_a = propertySale.taxExemption) === null || _a === void 0 ? void 0 : _a.id) !== null && _b !== void 0 ? _b : property.getCGTExemption(propertySale))),
18467
18681
  taxExemptionMetaFields: new UntypedFormArray([]),
18468
- netCGT: new UntypedFormControl(propertySale.netCGT)
18682
+ grossCapitalGain: new UntypedFormControl(propertySale.grossCapitalGain),
18683
+ netCapitalGain: new UntypedFormControl(propertySale.netCapitalGain),
18469
18684
  }, propertySale);
18470
18685
  this.propertySale = propertySale;
18471
18686
  this.property = property;
@@ -18473,7 +18688,7 @@ class PropertySaleExemptionsForm extends AbstractForm {
18473
18688
  if (propertySale.taxExemption) {
18474
18689
  this.setFormMetaFieldsControls();
18475
18690
  }
18476
- this.updateNetCGT();
18691
+ this.updateCapitalGains();
18477
18692
  this.listenEvents();
18478
18693
  }
18479
18694
  listenEvents() {
@@ -18485,12 +18700,19 @@ class PropertySaleExemptionsForm extends AbstractForm {
18485
18700
  getPropertySale() {
18486
18701
  return plainToClass(PropertySale, Object.assign({}, this.propertySale, this.getRawValue()));
18487
18702
  }
18488
- updateNetCGT() {
18489
- this.get('netCGT').setValue(this.property.calculateNetCGT(this.getPropertySale()));
18703
+ updateCapitalGains() {
18704
+ this.updateGrossCapitalGain();
18705
+ this.updateNetCapitalGain();
18706
+ }
18707
+ updateNetCapitalGain() {
18708
+ this.get('netCapitalGain').setValue(this.property.calculateNetCapitalGain(this.getPropertySale()));
18709
+ }
18710
+ updateGrossCapitalGain() {
18711
+ this.get('grossCapitalGain').setValue(this.property.calculateGrossCapitalGain(this.getPropertySale()));
18490
18712
  }
18491
18713
  listenTaxExemptionUpdated() {
18492
18714
  this.get('taxExemption').valueChanges.subscribe((taxExemption) => {
18493
- this.updateNetCGT();
18715
+ this.updateCapitalGains();
18494
18716
  this.setFormMetaFieldsControls(taxExemption);
18495
18717
  });
18496
18718
  }
@@ -18505,6 +18727,9 @@ class PropertySaleExemptionsForm extends AbstractForm {
18505
18727
  const formArray = this.get('taxExemptionMetaFields');
18506
18728
  // clean up
18507
18729
  formArray.clear();
18730
+ if (!currentTaxExemption) {
18731
+ return;
18732
+ }
18508
18733
  // show all tax exemption meta fields
18509
18734
  currentTaxExemption.metaFields.forEach((metaField) => {
18510
18735
  // use property sale tax exemption meta field value if it exists
@@ -18722,6 +18947,9 @@ class MyTaxBusinessIncomeOrLossesForm extends AbstractForm {
18722
18947
  }
18723
18948
  }
18724
18949
 
18950
+ /**
18951
+ * @TODO vik/nicole test
18952
+ */
18725
18953
  class MyTaxCgtForm extends AbstractForm {
18726
18954
  constructor(gainsOrLosses) {
18727
18955
  super({
@@ -19603,10 +19831,10 @@ class TransactionBaseForm extends AbstractForm {
19603
19831
  }
19604
19832
  }
19605
19833
 
19606
- var MessagesEnum;
19834
+ var MessagesEnum$1;
19607
19835
  (function (MessagesEnum) {
19608
19836
  MessagesEnum["DATE_VALIDATION_ERROR"] = "The transaction date is before the ownership date, please update the date to confirm";
19609
- })(MessagesEnum || (MessagesEnum = {}));
19837
+ })(MessagesEnum$1 || (MessagesEnum$1 = {}));
19610
19838
 
19611
19839
  class TransactionForm extends TransactionBaseForm {
19612
19840
  constructor(transaction, registeredForGst, allocations, controls = {}) {
@@ -19621,7 +19849,7 @@ class TransactionForm extends TransactionBaseForm {
19621
19849
  });
19622
19850
  // forbid to add transactions before property ownership
19623
19851
  if (transaction.property) {
19624
- this.get('date').addValidators(minDateValidator(transaction.property.myShare.fromDate, MessagesEnum.DATE_VALIDATION_ERROR));
19852
+ this.get('date').addValidators(minDateValidator(transaction.property.myShare.fromDate, MessagesEnum$1.DATE_VALIDATION_ERROR));
19625
19853
  }
19626
19854
  // property income usually comes with fees, add empty control for new transactions
19627
19855
  if (!transaction.id && transaction.property && !transaction.transactions.length && transaction.isCredit()) {
@@ -19667,6 +19895,39 @@ class TransactionForm extends TransactionBaseForm {
19667
19895
  }
19668
19896
  }
19669
19897
 
19898
+ /**
19899
+ * Validator that check fields for transaction meta
19900
+ */
19901
+ function transactionsMetaFieldsValidator() {
19902
+ return (formGroup) => {
19903
+ const chartAccounts = formGroup.get('chartAccounts').value;
19904
+ if (!chartAccounts) {
19905
+ return null;
19906
+ }
19907
+ const metaFields = chartAccounts.metaFields;
19908
+ if (chartAccounts.isDividends()) {
19909
+ return checkDividends(metaFields, formGroup);
19910
+ }
19911
+ return null;
19912
+ };
19913
+ }
19914
+ /**
19915
+ * the sum of the fields "Franked" and "Unfranked" must equal transactions amount
19916
+ */
19917
+ function checkDividends(metaFields, formGroup) {
19918
+ const frankedAndUnfrankedIds = [ChartAccountsMetaFieldListEnum.FRANKED, ChartAccountsMetaFieldListEnum.UNFRANKED];
19919
+ const amount = Math.abs(formGroup.get('amount').value);
19920
+ const frankedAndUnfrankedControls = (formGroup.get('metaFields')).controls
19921
+ .filter((control) => frankedAndUnfrankedIds.includes(control.get('chartAccountsMetaField').value.id));
19922
+ const frankedAndUnfrankedAmount = frankedAndUnfrankedControls.reduce((sum, control) => sum + (+control.get('value').value), 0);
19923
+ for (let control of frankedAndUnfrankedControls) {
19924
+ if (control.get('value').value !== null && frankedAndUnfrankedAmount !== amount) {
19925
+ return { metaFields: `Field ${control.get('chartAccountsMetaField').value.label} is required` };
19926
+ }
19927
+ }
19928
+ return amount === frankedAndUnfrankedAmount ? null : { metaFields: 'Please enter the franked and/or unfranked amounts.' };
19929
+ }
19930
+
19670
19931
  class WorkTransactionForm extends TransactionForm {
19671
19932
  constructor(transaction, registeredForGst, allocations, controls = {}) {
19672
19933
  super(transaction, registeredForGst, allocations, Object.assign(controls, {
@@ -19678,6 +19939,7 @@ class WorkTransactionForm extends TransactionForm {
19678
19939
  });
19679
19940
  }))
19680
19941
  }));
19942
+ this.setValidators(transactionsMetaFieldsValidator());
19681
19943
  this.listenEvents();
19682
19944
  }
19683
19945
  listenEvents() {
@@ -19846,11 +20108,91 @@ class DepreciationForm extends TransactionBaseForm {
19846
20108
  }
19847
20109
  }
19848
20110
 
20111
+ class HoldingSaleForm extends AbstractForm {
20112
+ constructor(sale, holding, type) {
20113
+ super({
20114
+ quantity: new UntypedFormControl(sale.quantity, [Validators.required, Validators.max(holding.currentQuantity)]),
20115
+ price: new UntypedFormControl(sale.price || type.price, Validators.required),
20116
+ fee: new UntypedFormControl(sale.fee, Validators.required),
20117
+ date: new UntypedFormControl(sale.date, Validators.required),
20118
+ grossCapitalGain: new UntypedFormControl({ value: sale.grossCapitalGain, disabled: true }),
20119
+ netCapitalGain: new UntypedFormControl({ value: sale.netCapitalGain, disabled: true }),
20120
+ file: new UntypedFormControl(sale.file)
20121
+ }, sale);
20122
+ this.holding = holding;
20123
+ if (sale.id) {
20124
+ this.emitValues();
20125
+ }
20126
+ this.listenEvents();
20127
+ }
20128
+ listenEvents() {
20129
+ this.listenQuantityChanges();
20130
+ this.listenPriceChanges();
20131
+ }
20132
+ listenQuantityChanges() {
20133
+ this.get('quantity').valueChanges.subscribe(() => {
20134
+ this.updateGainFields();
20135
+ });
20136
+ }
20137
+ listenPriceChanges() {
20138
+ this.get('price').valueChanges.subscribe(() => {
20139
+ this.updateGainFields();
20140
+ });
20141
+ }
20142
+ updateGainFields() {
20143
+ this.get('grossCapitalGain').setValue(this.currentValue.getCapitalGain(this.holding));
20144
+ this.get('netCapitalGain').setValue(this.currentValue.getNetCapitalGain(this.holding));
20145
+ }
20146
+ }
20147
+
20148
+ class HoldingTypeForm extends AbstractForm {
20149
+ constructor(holdingType = plainToClass(HoldingType, {})) {
20150
+ super({
20151
+ category: new UntypedFormControl(holdingType.category, Validators.required),
20152
+ name: new UntypedFormControl(holdingType.name, Validators.required),
20153
+ description: new UntypedFormControl(holdingType.description, Validators.required),
20154
+ price: new UntypedFormControl(holdingType.price, [Validators.required, Validators.min(0)]),
20155
+ dividendPercent: new UntypedFormControl(holdingType.dividendPercent, Validators.min(0))
20156
+ }, holdingType);
20157
+ }
20158
+ }
20159
+
20160
+ class HoldingForm extends AbstractForm {
20161
+ constructor(holding) {
20162
+ super({
20163
+ isTaxFree: new UntypedFormControl(holding.isTaxFree, Validators.required),
20164
+ quantity: new UntypedFormControl(holding.quantity, [Validators.required, Validators.min(0)]),
20165
+ price: new UntypedFormControl(holding.price, [Validators.required, Validators.min(0)]),
20166
+ fee: new UntypedFormControl(holding.fee, [Validators.required, Validators.min(0)]),
20167
+ date: new UntypedFormControl(holding.date, Validators.required),
20168
+ type: new UntypedFormControl(holding.type, Validators.required),
20169
+ ownershipPercent: new UntypedFormControl(holding.ownershipPercent || 100, Validators.required),
20170
+ file: new UntypedFormControl(holding.file)
20171
+ }, holding);
20172
+ }
20173
+ }
20174
+
20175
+ var MessagesEnum;
20176
+ (function (MessagesEnum) {
20177
+ MessagesEnum["HOLDING_CREATED"] = "Holding created";
20178
+ MessagesEnum["HOLDING_UPDATED"] = "Holding updated";
20179
+ MessagesEnum["HOLDING_CONFIRM_DELETE"] = "Are you sure you want to delete this holding?";
20180
+ MessagesEnum["HOLDING_DELETED"] = "Holding deleted";
20181
+ MessagesEnum["HOLDING_SALE_CREATED"] = "Holding sale created";
20182
+ MessagesEnum["HOLDING_SALE_UPDATED"] = "Holding sale updated";
20183
+ MessagesEnum["HOLDING_SALE_CONFIRM_DELETE"] = "Are you sure you want to delete this holding sale?";
20184
+ MessagesEnum["HOLDING_SALE_DELETED"] = "Holding sale deleted";
20185
+ MessagesEnum["HOLDING_TYPE_CREATED"] = "Holding type created";
20186
+ MessagesEnum["HOLDING_TYPE_UPDATED"] = "Holding type updated";
20187
+ MessagesEnum["HOLDING_TYPE_CONFIRM_DELETE"] = "Are you sure you want to delete this holding type?";
20188
+ MessagesEnum["HOLDING_TYPE_DELETED"] = "Holding type deleted";
20189
+ })(MessagesEnum || (MessagesEnum = {}));
20190
+
19849
20191
  // @TODO Alex: Create indexes everywhere and break this file to imports from indexes
19850
20192
 
19851
20193
  /**
19852
20194
  * Generated bundle index. Do not edit.
19853
20195
  */
19854
20196
 
19855
- 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 };
20197
+ export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, 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, HoldingCollection, HoldingForm, HoldingSale, HoldingSaleForm, HoldingSaleService, HoldingService, HoldingType, HoldingTypeCategoryEnum, HoldingTypeForm, 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, MessagesEnum, 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 };
19856
20198
  //# sourceMappingURL=taxtank-core.mjs.map