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'
@@ -115,9 +115,9 @@ class CorelogicInterceptor {
115
115
  });
116
116
  }
117
117
  }
118
- 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 });
119
- CorelogicInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: CorelogicInterceptor });
120
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: CorelogicInterceptor, decorators: [{
118
+ 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 });
119
+ CorelogicInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: CorelogicInterceptor });
120
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: CorelogicInterceptor, decorators: [{
121
121
  type: Injectable
122
122
  }], ctorParameters: function () { return [{ type: CorelogicService }, { type: undefined, decorators: [{
123
123
  type: Inject,
@@ -154,9 +154,9 @@ class FinancialYearInterceptor {
154
154
  return next.handle(clonedReq);
155
155
  }
156
156
  }
157
- FinancialYearInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
158
- FinancialYearInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FinancialYearInterceptor });
159
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
157
+ FinancialYearInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
158
+ FinancialYearInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FinancialYearInterceptor });
159
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
160
160
  type: Injectable
161
161
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
162
162
  type: Inject,
@@ -648,16 +648,19 @@ let TransactionReceipt$1 = class TransactionReceipt extends AbstractModel {
648
648
  let Transaction$1 = class Transaction extends TransactionBase {
649
649
  };
650
650
 
651
+ let AnnualClientDetails$1 = class AnnualClientDetails {
652
+ };
653
+
651
654
  let ClientDetails$1 = class ClientDetails extends AbstractModel {
652
655
  };
653
656
 
654
657
  let ClientIncomeTypes$1 = class ClientIncomeTypes extends ObservableModel {
655
658
  };
656
659
 
657
- let EmployeeDetails$1 = class EmployeeDetails extends AbstractModel {
660
+ let Occupation$1 = class Occupation extends AbstractModel {
658
661
  };
659
662
 
660
- let Occupation$1 = class Occupation extends AbstractModel {
663
+ let EmployeeDetails$1 = class EmployeeDetails extends AbstractModel {
661
664
  };
662
665
 
663
666
  let RegistrationInvite$1 = class RegistrationInvite extends AbstractModel {
@@ -1621,8 +1624,8 @@ class LoanCollection extends Collection {
1621
1624
  }
1622
1625
 
1623
1626
  class PropertySaleCollection extends Collection {
1624
- get grossCGTAfterLoss() {
1625
- return this.create(this.items.filter((propertySale) => propertySale.grossCGTAfterLoss > 0)).sumBy('grossCGTAfterLoss');
1627
+ get grossCapitalGain() {
1628
+ return this.create(this.items.filter((propertySale) => propertySale.grossCapitalGain > 0)).sumBy('grossCapitalGain');
1626
1629
  }
1627
1630
  /**
1628
1631
  * Property sales are CGT applicable unless it has "Principle place of residence" exemption type
@@ -2149,6 +2152,16 @@ var DocumentTypeEnum;
2149
2152
  DocumentTypeEnum[DocumentTypeEnum["INVOICE"] = 1] = "INVOICE";
2150
2153
  })(DocumentTypeEnum || (DocumentTypeEnum = {}));
2151
2154
 
2155
+ var HoldingTypeCategoryEnum;
2156
+ (function (HoldingTypeCategoryEnum) {
2157
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["CRYPTO"] = 1] = "CRYPTO";
2158
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["STOCK"] = 2] = "STOCK";
2159
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["UNLISTED_STOCK"] = 3] = "UNLISTED_STOCK";
2160
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["UNLISTED_UNIT"] = 4] = "UNLISTED_UNIT";
2161
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["COLLECTIBLE"] = 5] = "COLLECTIBLE";
2162
+ HoldingTypeCategoryEnum[HoldingTypeCategoryEnum["OTHER"] = 6] = "OTHER";
2163
+ })(HoldingTypeCategoryEnum || (HoldingTypeCategoryEnum = {}));
2164
+
2152
2165
  // @TODO Artem TT-2308 move everything
2153
2166
 
2154
2167
  class DepreciationCapitalProject extends DepreciationCapitalProject$1 {
@@ -3077,6 +3090,9 @@ class ChartAccounts extends ChartAccounts$1 {
3077
3090
  isTransfer() {
3078
3091
  return this.id === ChartAccountsListEnum.TRANSFER;
3079
3092
  }
3093
+ isDividends() {
3094
+ return this.id === ChartAccountsListEnum.DIVIDENDS;
3095
+ }
3080
3096
  }
3081
3097
  /**
3082
3098
  * Australian GST percent value (VAT)
@@ -3560,6 +3576,12 @@ var TaxExemptionEnum;
3560
3576
  TaxExemptionEnum[TaxExemptionEnum["OTHER"] = 7] = "OTHER";
3561
3577
  })(TaxExemptionEnum || (TaxExemptionEnum = {}));
3562
3578
 
3579
+ class TaxExemption extends TaxExemption$1 {
3580
+ isPartial() {
3581
+ return [TaxExemptionEnum.INVESTMENT_TO_PPR, TaxExemptionEnum.PPR_TO_INVESTMENT].includes(this.id);
3582
+ }
3583
+ }
3584
+
3563
3585
  class PropertySale extends PropertySale$1 {
3564
3586
  get saleCostsTotalAmount() {
3565
3587
  return this.commission + this.legalFees + this.otherCost;
@@ -3571,13 +3593,22 @@ class PropertySale extends PropertySale$1 {
3571
3593
  isCGTApplicable() {
3572
3594
  return this.taxExemption?.id !== TaxExemptionEnum.PPR;
3573
3595
  }
3574
- get lossApplied() {
3575
- return this.grossCGT <= 0 ? 0 : Math.min(this.grossCGT, this.capitalLoss);
3576
- }
3577
- get grossCGTAfterLoss() {
3578
- return this.grossCGT - this.lossApplied;
3596
+ get netPrice() {
3597
+ return this.price - this.saleCostsTotalAmount;
3579
3598
  }
3580
3599
  }
3600
+ __decorate([
3601
+ Type(() => Number)
3602
+ ], PropertySale.prototype, "holdingCosts", void 0);
3603
+ __decorate([
3604
+ Type(() => Number)
3605
+ ], PropertySale.prototype, "structuralImprovementsWDV", void 0);
3606
+ __decorate([
3607
+ Type(() => Number)
3608
+ ], PropertySale.prototype, "buildingAtCostClaimed", void 0);
3609
+ __decorate([
3610
+ Type(() => Number)
3611
+ ], PropertySale.prototype, "price", void 0);
3581
3612
  __decorate([
3582
3613
  Type(() => Number)
3583
3614
  ], PropertySale.prototype, "commission", void 0);
@@ -3593,6 +3624,9 @@ __decorate([
3593
3624
  __decorate([
3594
3625
  Type(() => Date)
3595
3626
  ], PropertySale.prototype, "contractDate", void 0);
3627
+ __decorate([
3628
+ Type(() => TaxExemption)
3629
+ ], PropertySale.prototype, "taxExemption", void 0);
3596
3630
  __decorate([
3597
3631
  Type(() => PropertySaleTaxExemptionMetaField$1)
3598
3632
  ], PropertySale.prototype, "taxExemptionMetaFields", void 0);
@@ -3616,9 +3650,6 @@ class PropertySaleCostBase {
3616
3650
  class PropertySaleTaxExemptionMetaField extends PropertySaleTaxExemptionMetaField$1 {
3617
3651
  }
3618
3652
 
3619
- class TaxExemption extends TaxExemption$1 {
3620
- }
3621
-
3622
3653
  class TaxExemptionMetaField extends TaxExemptionMetaField$1 {
3623
3654
  }
3624
3655
 
@@ -7010,6 +7041,32 @@ class UserEventSettingCollection extends Collection {
7010
7041
  class UserEventTypeCollection extends Collection {
7011
7042
  }
7012
7043
 
7044
+ class HoldingCollection extends Collection {
7045
+ getShares() {
7046
+ return this.filterBy('type.category', HoldingTypeCategoryEnum.STOCK);
7047
+ }
7048
+ getCryptos() {
7049
+ return this.filterBy('type.category', HoldingTypeCategoryEnum.CRYPTO);
7050
+ }
7051
+ getOthers() {
7052
+ return this.filterBy('type.category', [
7053
+ HoldingTypeCategoryEnum.COLLECTIBLE,
7054
+ HoldingTypeCategoryEnum.UNLISTED_STOCK,
7055
+ HoldingTypeCategoryEnum.UNLISTED_UNIT,
7056
+ HoldingTypeCategoryEnum.OTHER
7057
+ ]);
7058
+ }
7059
+ getPurchaseValue() {
7060
+ return this.sumBy('purchaseValue');
7061
+ }
7062
+ getMarketValue(holdingTypesById) {
7063
+ return this.items.reduce((sum, holding) => sum + holding.getMarketValue(holdingTypesById.get(holding.type.id)), 0);
7064
+ }
7065
+ getGrowthCoefficient(holdingTypesById) {
7066
+ return this.getMarketValue(holdingTypesById) / this.getPurchaseValue() - 1;
7067
+ }
7068
+ }
7069
+
7013
7070
  // @TODO Alex move here all collections
7014
7071
 
7015
7072
  class ServiceSubscription extends ServiceSubscription$1 {
@@ -7395,17 +7452,14 @@ class Property extends Property$1 {
7395
7452
  }
7396
7453
  return this.purchasePrice + this.capitalCostsTotalAmount + sale.holdingCosts + sale.structuralImprovementsWDV - sale.buildingAtCostClaimed;
7397
7454
  }
7398
- /**
7399
- * gross capital gain tax: sale costs - cost base
7400
- */
7401
- calculateGrossCGT(sale) {
7402
- return (sale.price - sale.saleCostsTotalAmount - this.calculateCostBase(sale)) * this.shareRatio;
7455
+ calculateGrossCapitalGain(sale) {
7456
+ return (sale.netPrice - this.calculateCostBase(sale)) * this.getPartialCGTExemptionRatio(sale) * this.shareRatio;
7403
7457
  }
7404
7458
  /**
7405
- * net capital gain tax (includes tax exemptions)
7459
+ * net capital gain includes tax exemption
7406
7460
  */
7407
- calculateNetCGT(sale) {
7408
- return this.getCGTExemptionRatio(sale) * sale.grossCGTAfterLoss;
7461
+ calculateNetCapitalGain(sale) {
7462
+ return this.getCGTExemptionRatio(sale) * sale.grossCapitalGain;
7409
7463
  }
7410
7464
  /**
7411
7465
  * guess tax exemption based on property details
@@ -7425,24 +7479,29 @@ class Property extends Property$1 {
7425
7479
  return null;
7426
7480
  }
7427
7481
  }
7482
+ getPartialCGTExemptionRatio(sale) {
7483
+ const metaFields = new PropertySaleTaxExemptionMetaFieldCollection(sale.taxExemptionMetaFields);
7484
+ switch (sale.taxExemption?.id) {
7485
+ case TaxExemptionEnum.INVESTMENT_TO_PPR:
7486
+ const ownershipDays = this.getOwnershipDuration(sale);
7487
+ return (ownershipDays - metaFields.getPPRDays()) / ownershipDays;
7488
+ case TaxExemptionEnum.PPR_TO_INVESTMENT:
7489
+ return metaFields.getClaimPercent() / 100;
7490
+ default:
7491
+ return 1;
7492
+ }
7493
+ }
7428
7494
  /**
7429
7495
  * tax exemption can reduce cgt from 100% to less (up to zero)
7430
7496
  */
7431
7497
  getCGTExemptionRatio(sale) {
7432
- const metaFields = new PropertySaleTaxExemptionMetaFieldCollection(sale.taxExemptionMetaFields);
7433
7498
  switch (sale.taxExemption?.id) {
7434
7499
  // 50% exemption for investments owned for at least one year
7435
7500
  case TaxExemptionEnum.ONE_YEAR_RULE:
7436
7501
  return 0.5;
7437
- // investment property become main residence (exemption for main residence ownership duration)
7438
7502
  case TaxExemptionEnum.INVESTMENT_TO_PPR:
7439
- const ownershipDays = this.getOwnershipDuration(sale);
7440
- return (ownershipDays - metaFields.getPPRDays()) / ownershipDays;
7441
- // main residence become investment (exemption for home office percent usage)
7442
7503
  case TaxExemptionEnum.PPR_TO_INVESTMENT:
7443
- // 1 year CGT discount can still apply (on the income producing % if used for 12 months or more)
7444
- const ratio = this.isOneYearExemptionApplicable(sale) ? 0.5 : 1;
7445
- return metaFields.getClaimPercent() / 100 * ratio;
7504
+ return this.isOneYearExemptionApplicable(sale) ? 0.5 : 1;
7446
7505
  // full exemption
7447
7506
  case TaxExemptionEnum.PPR:
7448
7507
  case TaxExemptionEnum.SIX_YEARS_RULE:
@@ -7454,8 +7513,11 @@ class Property extends Property$1 {
7454
7513
  return 1;
7455
7514
  }
7456
7515
  }
7516
+ /**
7517
+ * in cgt report we apply losses, which can reset 1 year rule (in case if there is no profit after loss)
7518
+ */
7457
7519
  isOneYearExemptionApplicable(sale) {
7458
- return sale.grossCGTAfterLoss > 0 && this.getOwnershipDuration(sale, 'years') > 0;
7520
+ return sale.grossCapitalGain > 0 && this.getOwnershipDuration(sale, 'years') > 0;
7459
7521
  }
7460
7522
  /**
7461
7523
  * CGT is not applicable for properties acquired before 20.09.1985 (tax didn't exist before this date).
@@ -7484,6 +7546,12 @@ class Property extends Property$1 {
7484
7546
  * Any assets acquired before this day are CGT exempt (because the tax didn't exist before this date).
7485
7547
  */
7486
7548
  Property.preCGTAssetDate = new Date(1985, 9, 20);
7549
+ __decorate([
7550
+ Type(() => Number)
7551
+ ], Property.prototype, "purchasePrice", void 0);
7552
+ __decorate([
7553
+ Type(() => Number)
7554
+ ], Property.prototype, "growthPercent", void 0);
7487
7555
  __decorate([
7488
7556
  Type(() => Date)
7489
7557
  ], Property.prototype, "contractDate", void 0);
@@ -7496,6 +7564,15 @@ __decorate([
7496
7564
  __decorate([
7497
7565
  Type(() => PropertyCategory)
7498
7566
  ], Property.prototype, "category", void 0);
7567
+ __decorate([
7568
+ Type(() => Number)
7569
+ ], Property.prototype, "stampDuty", void 0);
7570
+ __decorate([
7571
+ Type(() => Number)
7572
+ ], Property.prototype, "legalFees", void 0);
7573
+ __decorate([
7574
+ Type(() => Number)
7575
+ ], Property.prototype, "otherCapitalCosts", void 0);
7499
7576
  __decorate([
7500
7577
  Type(() => PropertyValuation)
7501
7578
  ], Property.prototype, "valuations", void 0);
@@ -8253,19 +8330,109 @@ __decorate([
8253
8330
  Type(() => Document)
8254
8331
  ], DocumentFolder.prototype, "documents", void 0);
8255
8332
 
8333
+ class HoldingTypeExchange extends AbstractModel {
8334
+ }
8335
+ __decorate([
8336
+ Type(() => Date)
8337
+ ], HoldingTypeExchange.prototype, "updateDate", void 0);
8338
+ __decorate([
8339
+ Type(() => HoldingType)
8340
+ ], HoldingTypeExchange.prototype, "holdingTypes", void 0);
8341
+
8256
8342
  class HoldingType extends AbstractModel {
8343
+ get categoryLabel() {
8344
+ switch (this.category) {
8345
+ case HoldingTypeCategoryEnum.STOCK:
8346
+ return 'Shares';
8347
+ case HoldingTypeCategoryEnum.CRYPTO:
8348
+ return 'Cryptos';
8349
+ case HoldingTypeCategoryEnum.COLLECTIBLE:
8350
+ return 'Collectibles';
8351
+ case HoldingTypeCategoryEnum.UNLISTED_STOCK:
8352
+ return 'Unlisted stock';
8353
+ case HoldingTypeCategoryEnum.UNLISTED_UNIT:
8354
+ return 'Unlisted unit';
8355
+ case HoldingTypeCategoryEnum.OTHER:
8356
+ return 'Other';
8357
+ }
8358
+ }
8359
+ isOther() {
8360
+ return !this.isShare() && !this.isCrypto();
8361
+ }
8362
+ isShare() {
8363
+ return this.category === HoldingTypeCategoryEnum.STOCK;
8364
+ }
8365
+ isCrypto() {
8366
+ return this.category === HoldingTypeCategoryEnum.CRYPTO;
8367
+ }
8257
8368
  }
8369
+ __decorate([
8370
+ Type(() => Date)
8371
+ ], HoldingType.prototype, "lastUpdateDateOnExchange", void 0);
8372
+ __decorate([
8373
+ Type(() => Date)
8374
+ ], HoldingType.prototype, "updatedAt", void 0);
8258
8375
  __decorate([
8259
8376
  Type(() => User)
8260
8377
  ], HoldingType.prototype, "user", void 0);
8378
+ __decorate([
8379
+ Type(() => HoldingTypeExchange)
8380
+ ], HoldingType.prototype, "exchange", void 0);
8261
8381
 
8262
8382
  class HoldingSale extends AbstractModel {
8383
+ getCapitalGain(holding) {
8384
+ if (!this.price || !this.holding) {
8385
+ return 0;
8386
+ }
8387
+ return (this.price - holding.price) * this.quantity;
8388
+ }
8389
+ getNetCapitalGain(holding) {
8390
+ const capitalGain = this.getCapitalGain(holding);
8391
+ // 50% discount for holdings purchased over a year ago
8392
+ if (holding.heldMoreYear()) {
8393
+ return capitalGain / 2;
8394
+ }
8395
+ return capitalGain;
8396
+ }
8263
8397
  }
8398
+ __decorate([
8399
+ Type(() => Date)
8400
+ ], HoldingSale.prototype, "date", void 0);
8264
8401
  __decorate([
8265
8402
  Type(() => AppFile)
8266
8403
  ], HoldingSale.prototype, "file", void 0);
8267
8404
 
8268
8405
  class Holding extends AbstractModel {
8406
+ constructor() {
8407
+ super(...arguments);
8408
+ this.isTaxFree = false;
8409
+ }
8410
+ /**
8411
+ * Get total purchasing price
8412
+ */
8413
+ get purchaseValue() {
8414
+ // Price and entity may be empty when we use HoldingForm.currentValue
8415
+ if (!this.price || !this.quantity) {
8416
+ return 0;
8417
+ }
8418
+ return this.price * this.quantity;
8419
+ }
8420
+ /**
8421
+ * Get current market price
8422
+ */
8423
+ getMarketValue(holdingType) {
8424
+ return this.quantity * holdingType.price;
8425
+ }
8426
+ /**
8427
+ * Get percent difference between current and buy price
8428
+ */
8429
+ getGrowthCoefficient(holdingType) {
8430
+ return holdingType.price / this.price - 1;
8431
+ }
8432
+ heldMoreYear() {
8433
+ const yearTime = 1000 * 60 * 60 * 24 * 365;
8434
+ return (new FinancialYear().startDate.getTime() - this.date.getTime()) > yearTime;
8435
+ }
8269
8436
  }
8270
8437
  __decorate([
8271
8438
  Type(() => Date)
@@ -8284,6 +8451,176 @@ __decorate([
8284
8451
  Transform(({ value }) => new Collection(value))
8285
8452
  ], Holding.prototype, "sales", void 0);
8286
8453
 
8454
+ class AnnualClientDetails extends AbstractModel {
8455
+ constructor() {
8456
+ super(...arguments);
8457
+ this.financialYear = new FinancialYear().year;
8458
+ }
8459
+ }
8460
+ __decorate([
8461
+ Type(() => ClientDetails)
8462
+ ], AnnualClientDetails.prototype, "clientDetails", void 0);
8463
+
8464
+ class ClientIncomeTypes extends ClientIncomeTypes$1 {
8465
+ /**
8466
+ * Get count of selected income types
8467
+ */
8468
+ get length() {
8469
+ return Object.values(this).filter((value) => typeof value === 'boolean' && value).length;
8470
+ }
8471
+ }
8472
+
8473
+ var ClientInviteStatusEnum;
8474
+ (function (ClientInviteStatusEnum) {
8475
+ ClientInviteStatusEnum[ClientInviteStatusEnum["PENDING"] = 1] = "PENDING";
8476
+ ClientInviteStatusEnum[ClientInviteStatusEnum["REJECTED"] = 2] = "REJECTED";
8477
+ })(ClientInviteStatusEnum || (ClientInviteStatusEnum = {}));
8478
+
8479
+ var ClientInviteTypeEnum;
8480
+ (function (ClientInviteTypeEnum) {
8481
+ ClientInviteTypeEnum[ClientInviteTypeEnum["FROM_CLIENT"] = 1] = "FROM_CLIENT";
8482
+ ClientInviteTypeEnum[ClientInviteTypeEnum["FROM_EMPLOYEE"] = 2] = "FROM_EMPLOYEE";
8483
+ })(ClientInviteTypeEnum || (ClientInviteTypeEnum = {}));
8484
+
8485
+ class ClientInvite extends ClientInvite$1 {
8486
+ /**
8487
+ * Check if client invite status is pending
8488
+ */
8489
+ isPending() {
8490
+ return this.status === ClientInviteStatusEnum.PENDING;
8491
+ }
8492
+ /**
8493
+ * Check if client invite status is accepted
8494
+ */
8495
+ isAccepted() {
8496
+ return !this.isPending() && !this.isRejected();
8497
+ }
8498
+ /**
8499
+ * Check if client invite status is rejected
8500
+ */
8501
+ isRejected() {
8502
+ return this.status === ClientInviteStatusEnum.REJECTED;
8503
+ }
8504
+ /**
8505
+ * Check if client invite initiated by firm
8506
+ */
8507
+ isFromEmployee() {
8508
+ return this.type === ClientInviteTypeEnum.FROM_EMPLOYEE;
8509
+ }
8510
+ /**
8511
+ * Check if client invite initiated by client
8512
+ */
8513
+ isFromClient() {
8514
+ return this.type === ClientInviteTypeEnum.FROM_CLIENT;
8515
+ }
8516
+ get firstName() {
8517
+ return this.client ? this.client.firstName : this.registrationInvite?.firstName;
8518
+ }
8519
+ get email() {
8520
+ return this.client ? this.client.email : this.registrationInvite?.email;
8521
+ }
8522
+ }
8523
+ __decorate([
8524
+ Type(() => Date)
8525
+ ], ClientInvite.prototype, "sentOn", void 0);
8526
+ __decorate([
8527
+ Type(() => Date)
8528
+ ], ClientInvite.prototype, "updatedAt", void 0);
8529
+ __decorate([
8530
+ Type(() => Firm)
8531
+ ], ClientInvite.prototype, "firm", void 0);
8532
+ __decorate([
8533
+ Type(() => User)
8534
+ ], ClientInvite.prototype, "client", void 0);
8535
+ __decorate([
8536
+ Type(() => User)
8537
+ ], ClientInvite.prototype, "employee", void 0);
8538
+ __decorate([
8539
+ Type(() => RegistrationInvite)
8540
+ ], ClientInvite.prototype, "registrationInvite", void 0);
8541
+
8542
+ class ClientMovement extends ClientMovement$1 {
8543
+ }
8544
+ __decorate([
8545
+ Type(() => Firm)
8546
+ ], ClientMovement.prototype, "firm", void 0);
8547
+ __decorate([
8548
+ Type(() => User)
8549
+ ], ClientMovement.prototype, "client", void 0);
8550
+ __decorate([
8551
+ Type(() => User)
8552
+ ], ClientMovement.prototype, "employee", void 0);
8553
+ __decorate([
8554
+ Type(() => ServiceSubscription)
8555
+ ], ClientMovement.prototype, "subscription", void 0);
8556
+ __decorate([
8557
+ Type(() => Date)
8558
+ ], ClientMovement.prototype, "dateFrom", void 0);
8559
+ __decorate([
8560
+ Type(() => Date)
8561
+ ], ClientMovement.prototype, "dateTo", void 0);
8562
+
8563
+ /**
8564
+ * Client portfolio charts data based on ClientPortfolioReportCollection
8565
+ */
8566
+ class ClientPortfolioChartData {
8567
+ constructor(clientsPortfolioReportCollection) {
8568
+ this.clientsPortfolioReportCollection = clientsPortfolioReportCollection;
8569
+ }
8570
+ getPieChartData() {
8571
+ return this.clientsPortfolioReportCollection.items.map((clientPortfolioReport) => {
8572
+ return plainToClass(ChartData, {
8573
+ name: clientPortfolioReport.category,
8574
+ data: clientPortfolioReport.count
8575
+ });
8576
+ });
8577
+ }
8578
+ getBarChartData() {
8579
+ return [
8580
+ plainToClass(ChartData, {
8581
+ name: 'Total',
8582
+ data: [
8583
+ {
8584
+ label: 'Market value',
8585
+ value: this.clientsPortfolioReportCollection.marketValue
8586
+ },
8587
+ {
8588
+ label: 'Loan balance',
8589
+ value: this.clientsPortfolioReportCollection.loanBalance
8590
+ },
8591
+ {
8592
+ label: 'Equity position',
8593
+ value: this.clientsPortfolioReportCollection.equityPosition
8594
+ }
8595
+ ]
8596
+ }),
8597
+ plainToClass(ChartData, {
8598
+ name: 'Average',
8599
+ data: [
8600
+ {
8601
+ label: 'Market value',
8602
+ value: this.clientsPortfolioReportCollection.averageMarketValue
8603
+ },
8604
+ {
8605
+ label: 'Loan balance',
8606
+ value: this.clientsPortfolioReportCollection.averageLoanBalance
8607
+ },
8608
+ {
8609
+ label: 'Equity position',
8610
+ value: this.clientsPortfolioReportCollection.averageEquityPosition
8611
+ }
8612
+ ]
8613
+ })
8614
+ ];
8615
+ }
8616
+ }
8617
+
8618
+ /**
8619
+ * Class describes client's portfolio report information
8620
+ */
8621
+ class ClientPortfolioReport extends AbstractModel {
8622
+ }
8623
+
8287
8624
  const NAME_TOKEN = 'token';
8288
8625
  const NAME_REFRESH_TOKEN = 'refreshToken';
8289
8626
  class JwtService extends JwtHelperService {
@@ -8312,9 +8649,9 @@ class JwtService extends JwtHelperService {
8312
8649
  return this.getUser().id === userId;
8313
8650
  }
8314
8651
  }
8315
- JwtService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
8316
- JwtService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtService, providedIn: 'root' });
8317
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtService, decorators: [{
8652
+ JwtService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
8653
+ JwtService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtService, providedIn: 'root' });
8654
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtService, decorators: [{
8318
8655
  type: Injectable,
8319
8656
  args: [{
8320
8657
  providedIn: 'root'
@@ -8349,9 +8686,9 @@ class EventDispatcherService {
8349
8686
  this.eventSubject2.next(event);
8350
8687
  }
8351
8688
  }
8352
- EventDispatcherService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8353
- EventDispatcherService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EventDispatcherService, providedIn: 'root' });
8354
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EventDispatcherService, decorators: [{
8689
+ EventDispatcherService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8690
+ EventDispatcherService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EventDispatcherService, providedIn: 'root' });
8691
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EventDispatcherService, decorators: [{
8355
8692
  type: Injectable,
8356
8693
  args: [{
8357
8694
  providedIn: 'root'
@@ -8400,9 +8737,9 @@ class AuthService {
8400
8737
  location.replace(url);
8401
8738
  }
8402
8739
  }
8403
- 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 });
8404
- AuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AuthService, providedIn: 'root' });
8405
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AuthService, decorators: [{
8740
+ 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 });
8741
+ AuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AuthService, providedIn: 'root' });
8742
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AuthService, decorators: [{
8406
8743
  type: Injectable,
8407
8744
  args: [{
8408
8745
  providedIn: 'root'
@@ -8537,9 +8874,9 @@ class JwtInterceptor {
8537
8874
  });
8538
8875
  }
8539
8876
  }
8540
- 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 });
8541
- JwtInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtInterceptor });
8542
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: JwtInterceptor, decorators: [{
8877
+ 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 });
8878
+ JwtInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtInterceptor });
8879
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: JwtInterceptor, decorators: [{
8543
8880
  type: Injectable
8544
8881
  }], ctorParameters: function () { return [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
8545
8882
  type: Inject,
@@ -8572,9 +8909,9 @@ class UserSwitcherService {
8572
8909
  window.location.replace('/firm/dashboard');
8573
8910
  }
8574
8911
  }
8575
- UserSwitcherService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8576
- UserSwitcherService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherService, providedIn: 'root' });
8577
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherService, decorators: [{
8912
+ UserSwitcherService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8913
+ UserSwitcherService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherService, providedIn: 'root' });
8914
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherService, decorators: [{
8578
8915
  type: Injectable,
8579
8916
  args: [{
8580
8917
  providedIn: 'root'
@@ -8620,9 +8957,9 @@ class UserSwitcherInterceptor {
8620
8957
  return next.handle(this.switch(request, this.userSwitcherService.get()));
8621
8958
  }
8622
8959
  }
8623
- 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 });
8624
- UserSwitcherInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherInterceptor });
8625
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
8960
+ 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 });
8961
+ UserSwitcherInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherInterceptor });
8962
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
8626
8963
  type: Injectable
8627
8964
  }], ctorParameters: function () { return [{ type: UserSwitcherService }, { type: undefined, decorators: [{
8628
8965
  type: Inject,
@@ -8692,6 +9029,10 @@ const ENDPOINTS = {
8692
9029
  CLIENT_INCOME_TYPES_POST: new Endpoint('POST', '\\/client-income-types'),
8693
9030
  COUNTRIES_GET: new Endpoint('GET', '\\/countries'),
8694
9031
  CORELOGIC_TOKEN_GET: new Endpoint('GET', '/access\\/oauth\\/token.*$'),
9032
+ ANNUAL_CLIENT_DETAILS_GET: new Endpoint('GET', '\\/annual-client-details'),
9033
+ ANNUAL_CLIENT_DETAILS_POST: new Endpoint('POST', '\\/annual-client-details'),
9034
+ ANNUAL_CLIENT_DETAILS_PUT: new Endpoint('PUT', '\\/annual-client-details\\/\\d+'),
9035
+ ANNUAL_CLIENT_DETAILS_DELETE: new Endpoint('DELETE', '\\/annual-client-details\\/\\d+'),
8695
9036
  DEPRECIATIONS_OPENING_GET: new Endpoint('GET', '\\/depreciations\\/\\opening-balance\.\*'),
8696
9037
  DEPRECIATIONS_GET: new Endpoint('GET', '\\/depreciations'),
8697
9038
  DEPRECIATIONS_POST: new Endpoint('POST', '\\/depreciations'),
@@ -8734,6 +9075,18 @@ const ENDPOINTS = {
8734
9075
  LOANS_PAYOUT_DELETE: new Endpoint('DELETE', '\\/loans\\/\\d+\\/payout\\/\\d+'),
8735
9076
  LOANS_CALCULATION_POST: new Endpoint('POST', '\\/bank-accounts\\/loans\\/calculation'),
8736
9077
  LOGIN_POST: new Endpoint('POST', '\\/login'),
9078
+ HOLDINGS_GET: new Endpoint('GET', '\\/holdings'),
9079
+ HOLDINGS_POST: new Endpoint('POST', '\\/holdings'),
9080
+ HOLDINGS_PUT: new Endpoint('PUT', '\\/holdings\\/\\d+'),
9081
+ HOLDINGS_DELETE: new Endpoint('DELETE', '\\/holdings\\/\\d+'),
9082
+ HOLDING_TYPES_GET: new Endpoint('GET', '\\/holding-types'),
9083
+ HOLDING_TYPES_POST: new Endpoint('POST', '\\/holding-types'),
9084
+ HOLDING_TYPES_PUT: new Endpoint('PUT', '\\/holding-types\\/\\d+'),
9085
+ HOLDING_TYPES_DELETE: new Endpoint('DELETE', '\\/holding-types\\/\\d+'),
9086
+ HOLDING_SALES_GET: new Endpoint('GET', '\\/holding-sales'),
9087
+ HOLDING_SALES_POST: new Endpoint('POST', '\\/holding-sales'),
9088
+ HOLDING_SALES_PUT: new Endpoint('PUT', '\\/holding-sales\\/\\d+'),
9089
+ HOLDING_SALES_DELETE: new Endpoint('DELETE', '\\/holding-sales\\/\\d+'),
8737
9090
  NOTIFICATIONS_GET: new Endpoint('GET', '\\/service-notifications'),
8738
9091
  OCCUPATIONS_GET: new Endpoint('GET', '\\/occupations'),
8739
9092
  PROPERTIES_GET: new Endpoint('GET', '\\/properties'),
@@ -8878,9 +9231,9 @@ class PreloaderService {
8878
9231
  this.activePreloaders.next(activePreloaders);
8879
9232
  }
8880
9233
  }
8881
- PreloaderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8882
- PreloaderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderService, providedIn: 'root' });
8883
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderService, decorators: [{
9234
+ PreloaderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
9235
+ PreloaderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderService, providedIn: 'root' });
9236
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderService, decorators: [{
8884
9237
  type: Injectable,
8885
9238
  args: [{
8886
9239
  providedIn: 'root'
@@ -8908,9 +9261,9 @@ class PreloaderInterceptor {
8908
9261
  return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
8909
9262
  }
8910
9263
  }
8911
- PreloaderInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable });
8912
- PreloaderInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderInterceptor });
8913
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PreloaderInterceptor, decorators: [{
9264
+ PreloaderInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable });
9265
+ PreloaderInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderInterceptor });
9266
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PreloaderInterceptor, decorators: [{
8914
9267
  type: Injectable
8915
9268
  }], ctorParameters: function () { return [{ type: PreloaderService }]; } });
8916
9269
 
@@ -8946,9 +9299,9 @@ class SseService {
8946
9299
  }));
8947
9300
  }
8948
9301
  }
8949
- 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 });
8950
- SseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SseService, providedIn: 'root' });
8951
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SseService, decorators: [{
9302
+ 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 });
9303
+ SseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SseService, providedIn: 'root' });
9304
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SseService, decorators: [{
8952
9305
  type: Injectable,
8953
9306
  args: [{
8954
9307
  providedIn: 'root'
@@ -9176,9 +9529,9 @@ let RestService$1 = class RestService {
9176
9529
  */
9177
9530
  listenEvents() { }
9178
9531
  };
9179
- 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 });
9180
- RestService$1.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService$1, providedIn: 'root' });
9181
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService$1, decorators: [{
9532
+ 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 });
9533
+ RestService$1.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService$1, providedIn: 'root' });
9534
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService$1, decorators: [{
9182
9535
  type: Injectable,
9183
9536
  args: [{
9184
9537
  providedIn: 'root'
@@ -9296,9 +9649,9 @@ class ToastService {
9296
9649
  }));
9297
9650
  }
9298
9651
  }
9299
- ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
9300
- ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ToastService, providedIn: 'root' });
9301
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ToastService, decorators: [{
9652
+ ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
9653
+ ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ToastService, providedIn: 'root' });
9654
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ToastService, decorators: [{
9302
9655
  type: Injectable,
9303
9656
  args: [{
9304
9657
  providedIn: 'root'
@@ -9388,9 +9741,9 @@ BankConnectionService.userEventTypes = [
9388
9741
  UserEventTypeTypeEnum.BASIQ_NEW_ACCOUNTS,
9389
9742
  UserEventTypeTypeEnum.BASIQ_AUTHORIZATION_FAIL
9390
9743
  ];
9391
- 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 });
9392
- BankConnectionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankConnectionService, providedIn: 'root' });
9393
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankConnectionService, decorators: [{
9744
+ 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 });
9745
+ BankConnectionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankConnectionService, providedIn: 'root' });
9746
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankConnectionService, decorators: [{
9394
9747
  type: Injectable,
9395
9748
  args: [{
9396
9749
  providedIn: 'root'
@@ -9500,9 +9853,9 @@ BasiqService.basiqApiUrl = 'https://au-api.basiq.io';
9500
9853
  * Basiq does not provide a hook, so we have to check job status manually every x seconds
9501
9854
  */
9502
9855
  BasiqService.bankCredintialsCheckInterval = 3000;
9503
- 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 });
9504
- BasiqService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqService, providedIn: 'root' });
9505
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqService, decorators: [{
9856
+ 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 });
9857
+ BasiqService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqService, providedIn: 'root' });
9858
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqService, decorators: [{
9506
9859
  type: Injectable,
9507
9860
  args: [{
9508
9861
  providedIn: 'root'
@@ -9537,9 +9890,9 @@ class BasiqTokenService extends RestService$1 {
9537
9890
  return this.cacheSubject.asObservable();
9538
9891
  }
9539
9892
  }
9540
- BasiqTokenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
9541
- BasiqTokenService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenService, providedIn: 'root' });
9542
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenService, decorators: [{
9893
+ BasiqTokenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
9894
+ BasiqTokenService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenService, providedIn: 'root' });
9895
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenService, decorators: [{
9543
9896
  type: Injectable,
9544
9897
  args: [{
9545
9898
  providedIn: 'root'
@@ -9570,9 +9923,9 @@ class BasiqTokenInterceptor {
9570
9923
  });
9571
9924
  }
9572
9925
  }
9573
- BasiqTokenInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable });
9574
- BasiqTokenInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenInterceptor });
9575
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
9926
+ BasiqTokenInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable });
9927
+ BasiqTokenInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenInterceptor });
9928
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
9576
9929
  type: Injectable
9577
9930
  }], ctorParameters: function () { return [{ type: BasiqTokenService }]; } });
9578
9931
 
@@ -9597,7 +9950,6 @@ class UserService {
9597
9950
  }
9598
9951
  listenEvents() {
9599
9952
  this.listenServiceSubscriptionUpdated();
9600
- this.listenPropertySale();
9601
9953
  }
9602
9954
  get() {
9603
9955
  if (!this.cache) {
@@ -9732,14 +10084,6 @@ class UserService {
9732
10084
  listenServiceSubscriptionUpdated() {
9733
10085
  this.eventDispatcherService.on(AppEventTypeEnum.SERVICE_SUBSCRIPTION_UPDATED).subscribe(() => this.resetCache());
9734
10086
  }
9735
- /**
9736
- * capital losses updates on property sale
9737
- */
9738
- listenPropertySale() {
9739
- this.eventDispatcherService.on2(...PropertySale.getEventNames('post', 'delete')).subscribe(() => {
9740
- this.resetCache();
9741
- });
9742
- }
9743
10087
  /**
9744
10088
  * @TODO remove when the class refactored on RestService
9745
10089
  * Subscribe to http events and run callback.
@@ -9757,9 +10101,9 @@ class UserService {
9757
10101
  });
9758
10102
  }
9759
10103
  }
9760
- 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 });
9761
- UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserService, providedIn: 'root' });
9762
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserService, decorators: [{
10104
+ 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 });
10105
+ UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserService, providedIn: 'root' });
10106
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserService, decorators: [{
9763
10107
  type: Injectable,
9764
10108
  args: [{
9765
10109
  providedIn: 'root'
@@ -9789,17 +10133,17 @@ class BasiqClientIdInterceptor {
9789
10133
  });
9790
10134
  }
9791
10135
  }
9792
- BasiqClientIdInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable });
9793
- BasiqClientIdInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqClientIdInterceptor });
9794
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
10136
+ BasiqClientIdInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable });
10137
+ BasiqClientIdInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqClientIdInterceptor });
10138
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
9795
10139
  type: Injectable
9796
10140
  }], ctorParameters: function () { return [{ type: UserService }]; } });
9797
10141
 
9798
10142
  class InterceptorsModule {
9799
10143
  }
9800
- InterceptorsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9801
- InterceptorsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.4", ngImport: i0, type: InterceptorsModule });
9802
- InterceptorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: InterceptorsModule, providers: [
10144
+ InterceptorsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10145
+ InterceptorsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.5", ngImport: i0, type: InterceptorsModule });
10146
+ InterceptorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: InterceptorsModule, providers: [
9803
10147
  {
9804
10148
  provide: HTTP_INTERCEPTORS,
9805
10149
  useClass: CorelogicInterceptor,
@@ -9837,7 +10181,7 @@ InterceptorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", vers
9837
10181
  multi: true
9838
10182
  }
9839
10183
  ] });
9840
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: InterceptorsModule, decorators: [{
10184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: InterceptorsModule, decorators: [{
9841
10185
  type: NgModule,
9842
10186
  args: [{
9843
10187
  providers: [
@@ -9895,12 +10239,12 @@ class TtCoreModule {
9895
10239
  };
9896
10240
  }
9897
10241
  }
9898
- TtCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TtCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9899
- TtCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.4", ngImport: i0, type: TtCoreModule, imports: [CommonModule,
10242
+ TtCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TtCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10243
+ TtCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.5", ngImport: i0, type: TtCoreModule, imports: [CommonModule,
9900
10244
  InterceptorsModule] });
9901
- TtCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TtCoreModule, imports: [CommonModule,
10245
+ TtCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TtCoreModule, imports: [CommonModule,
9902
10246
  InterceptorsModule] });
9903
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TtCoreModule, decorators: [{
10247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TtCoreModule, decorators: [{
9904
10248
  type: NgModule,
9905
10249
  args: [{
9906
10250
  declarations: [],
@@ -9931,18 +10275,6 @@ var ClientDetailsWorkingHolidayMakerEnum;
9931
10275
  ClientDetailsWorkingHolidayMakerEnum[ClientDetailsWorkingHolidayMakerEnum["VISA462"] = 2] = "VISA462";
9932
10276
  })(ClientDetailsWorkingHolidayMakerEnum || (ClientDetailsWorkingHolidayMakerEnum = {}));
9933
10277
 
9934
- var ClientInviteStatusEnum;
9935
- (function (ClientInviteStatusEnum) {
9936
- ClientInviteStatusEnum[ClientInviteStatusEnum["PENDING"] = 1] = "PENDING";
9937
- ClientInviteStatusEnum[ClientInviteStatusEnum["REJECTED"] = 2] = "REJECTED";
9938
- })(ClientInviteStatusEnum || (ClientInviteStatusEnum = {}));
9939
-
9940
- var ClientInviteTypeEnum;
9941
- (function (ClientInviteTypeEnum) {
9942
- ClientInviteTypeEnum[ClientInviteTypeEnum["FROM_CLIENT"] = 1] = "FROM_CLIENT";
9943
- ClientInviteTypeEnum[ClientInviteTypeEnum["FROM_EMPLOYEE"] = 2] = "FROM_EMPLOYEE";
9944
- })(ClientInviteTypeEnum || (ClientInviteTypeEnum = {}));
9945
-
9946
10278
  var DepreciationCalculationPercentEnum;
9947
10279
  (function (DepreciationCalculationPercentEnum) {
9948
10280
  DepreciationCalculationPercentEnum[DepreciationCalculationPercentEnum["PRIME_COST"] = 100] = "PRIME_COST";
@@ -10323,154 +10655,6 @@ class Badge extends AbstractModel {
10323
10655
  }
10324
10656
  }
10325
10657
 
10326
- class ClientIncomeTypes extends ClientIncomeTypes$1 {
10327
- /**
10328
- * Get count of selected income types
10329
- */
10330
- get length() {
10331
- return Object.values(this).filter((value) => typeof value === 'boolean' && value).length;
10332
- }
10333
- }
10334
-
10335
- class ClientInvite extends ClientInvite$1 {
10336
- /**
10337
- * Check if client invite status is pending
10338
- */
10339
- isPending() {
10340
- return this.status === ClientInviteStatusEnum.PENDING;
10341
- }
10342
- /**
10343
- * Check if client invite status is accepted
10344
- */
10345
- isAccepted() {
10346
- return !this.isPending() && !this.isRejected();
10347
- }
10348
- /**
10349
- * Check if client invite status is rejected
10350
- */
10351
- isRejected() {
10352
- return this.status === ClientInviteStatusEnum.REJECTED;
10353
- }
10354
- /**
10355
- * Check if client invite initiated by firm
10356
- */
10357
- isFromEmployee() {
10358
- return this.type === ClientInviteTypeEnum.FROM_EMPLOYEE;
10359
- }
10360
- /**
10361
- * Check if client invite initiated by client
10362
- */
10363
- isFromClient() {
10364
- return this.type === ClientInviteTypeEnum.FROM_CLIENT;
10365
- }
10366
- get firstName() {
10367
- return this.client ? this.client.firstName : this.registrationInvite?.firstName;
10368
- }
10369
- get email() {
10370
- return this.client ? this.client.email : this.registrationInvite?.email;
10371
- }
10372
- }
10373
- __decorate([
10374
- Type(() => Date)
10375
- ], ClientInvite.prototype, "sentOn", void 0);
10376
- __decorate([
10377
- Type(() => Date)
10378
- ], ClientInvite.prototype, "updatedAt", void 0);
10379
- __decorate([
10380
- Type(() => Firm)
10381
- ], ClientInvite.prototype, "firm", void 0);
10382
- __decorate([
10383
- Type(() => User)
10384
- ], ClientInvite.prototype, "client", void 0);
10385
- __decorate([
10386
- Type(() => User)
10387
- ], ClientInvite.prototype, "employee", void 0);
10388
- __decorate([
10389
- Type(() => RegistrationInvite)
10390
- ], ClientInvite.prototype, "registrationInvite", void 0);
10391
-
10392
- class ClientMovement extends ClientMovement$1 {
10393
- }
10394
- __decorate([
10395
- Type(() => Firm)
10396
- ], ClientMovement.prototype, "firm", void 0);
10397
- __decorate([
10398
- Type(() => User)
10399
- ], ClientMovement.prototype, "client", void 0);
10400
- __decorate([
10401
- Type(() => User)
10402
- ], ClientMovement.prototype, "employee", void 0);
10403
- __decorate([
10404
- Type(() => ServiceSubscription)
10405
- ], ClientMovement.prototype, "subscription", void 0);
10406
- __decorate([
10407
- Type(() => Date)
10408
- ], ClientMovement.prototype, "dateFrom", void 0);
10409
- __decorate([
10410
- Type(() => Date)
10411
- ], ClientMovement.prototype, "dateTo", void 0);
10412
-
10413
- /**
10414
- * Client portfolio charts data based on ClientPortfolioReportCollection
10415
- */
10416
- class ClientPortfolioChartData {
10417
- constructor(clientsPortfolioReportCollection) {
10418
- this.clientsPortfolioReportCollection = clientsPortfolioReportCollection;
10419
- }
10420
- getPieChartData() {
10421
- return this.clientsPortfolioReportCollection.items.map((clientPortfolioReport) => {
10422
- return plainToClass(ChartData, {
10423
- name: clientPortfolioReport.category,
10424
- data: clientPortfolioReport.count
10425
- });
10426
- });
10427
- }
10428
- getBarChartData() {
10429
- return [
10430
- plainToClass(ChartData, {
10431
- name: 'Total',
10432
- data: [
10433
- {
10434
- label: 'Market value',
10435
- value: this.clientsPortfolioReportCollection.marketValue
10436
- },
10437
- {
10438
- label: 'Loan balance',
10439
- value: this.clientsPortfolioReportCollection.loanBalance
10440
- },
10441
- {
10442
- label: 'Equity position',
10443
- value: this.clientsPortfolioReportCollection.equityPosition
10444
- }
10445
- ]
10446
- }),
10447
- plainToClass(ChartData, {
10448
- name: 'Average',
10449
- data: [
10450
- {
10451
- label: 'Market value',
10452
- value: this.clientsPortfolioReportCollection.averageMarketValue
10453
- },
10454
- {
10455
- label: 'Loan balance',
10456
- value: this.clientsPortfolioReportCollection.averageLoanBalance
10457
- },
10458
- {
10459
- label: 'Equity position',
10460
- value: this.clientsPortfolioReportCollection.averageEquityPosition
10461
- }
10462
- ]
10463
- })
10464
- ];
10465
- }
10466
- }
10467
-
10468
- /**
10469
- * Class describes client's portfolio report information
10470
- */
10471
- class ClientPortfolioReport extends AbstractModel {
10472
- }
10473
-
10474
10658
  var AlphabetColorsEnum;
10475
10659
  (function (AlphabetColorsEnum) {
10476
10660
  AlphabetColorsEnum["A"] = "#9CC3D5";
@@ -10794,8 +10978,8 @@ class MyTaxBusinessLosses {
10794
10978
  }
10795
10979
  }
10796
10980
 
10797
- ;
10798
10981
  /**
10982
+ * @TODO vik/nicole test
10799
10983
  * Report related to Property sales CGT details.
10800
10984
  * All fields are about current year, except netCapitalLoss
10801
10985
  *
@@ -10803,10 +10987,11 @@ class MyTaxBusinessLosses {
10803
10987
  class MyTaxCgt {
10804
10988
  static createFrom(propertySales, properties, clientCapitalLoss) {
10805
10989
  return plainToClass(MyTaxCgt, {
10806
- hasCapitalGain: !!propertySales.grossCGTAfterLoss,
10807
- hasExemption: !!propertySales.grossCGTAfterLoss && this.isCGTApplicable(propertySales, properties),
10808
- netCapitalGain: propertySales.sumBy('netCGT'),
10809
- grossCapitalGain: propertySales.grossCGTAfterLoss,
10990
+ // @TODO vik losses should be applied
10991
+ hasCapitalGain: !!propertySales.grossCapitalGain,
10992
+ hasExemption: !!propertySales.grossCapitalGain && this.isCGTApplicable(propertySales, properties),
10993
+ netCapitalGain: propertySales.sumBy('netCapitalGain'),
10994
+ grossCapitalGain: propertySales.grossCapitalGain,
10810
10995
  netCapitalLoss: clientCapitalLoss
10811
10996
  });
10812
10997
  }
@@ -11663,9 +11848,9 @@ class AddressService {
11663
11848
  return this.countriesSubject.asObservable();
11664
11849
  }
11665
11850
  }
11666
- 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 });
11667
- AddressService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AddressService, providedIn: 'root' });
11668
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AddressService, decorators: [{
11851
+ 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 });
11852
+ AddressService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AddressService, providedIn: 'root' });
11853
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AddressService, decorators: [{
11669
11854
  type: Injectable,
11670
11855
  args: [{
11671
11856
  providedIn: 'root'
@@ -11718,9 +11903,9 @@ class BankAccountService extends RestService$1 {
11718
11903
  });
11719
11904
  }
11720
11905
  }
11721
- BankAccountService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11722
- BankAccountService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountService, providedIn: 'root' });
11723
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountService, decorators: [{
11906
+ BankAccountService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11907
+ BankAccountService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountService, providedIn: 'root' });
11908
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountService, decorators: [{
11724
11909
  type: Injectable,
11725
11910
  args: [{
11726
11911
  providedIn: 'root'
@@ -11785,9 +11970,9 @@ class BankTransactionService extends RestService$1 {
11785
11970
  });
11786
11971
  }
11787
11972
  }
11788
- BankTransactionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11789
- BankTransactionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionService, providedIn: 'root' });
11790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionService, decorators: [{
11973
+ BankTransactionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11974
+ BankTransactionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionService, providedIn: 'root' });
11975
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionService, decorators: [{
11791
11976
  type: Injectable,
11792
11977
  args: [{
11793
11978
  providedIn: 'root'
@@ -11815,9 +12000,9 @@ class BankService extends RestService$1 {
11815
12000
  }));
11816
12001
  }
11817
12002
  }
11818
- BankService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11819
- BankService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankService, providedIn: 'root' });
11820
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankService, decorators: [{
12003
+ BankService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12004
+ BankService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankService, providedIn: 'root' });
12005
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankService, decorators: [{
11821
12006
  type: Injectable,
11822
12007
  args: [{
11823
12008
  providedIn: 'root'
@@ -11837,9 +12022,9 @@ class ChartAccountsDepreciationService extends RestService$1 {
11837
12022
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
11838
12023
  }
11839
12024
  }
11840
- ChartAccountsDepreciationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11841
- ChartAccountsDepreciationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' });
11842
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
12025
+ ChartAccountsDepreciationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12026
+ ChartAccountsDepreciationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' });
12027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
11843
12028
  type: Injectable,
11844
12029
  args: [{
11845
12030
  providedIn: 'root'
@@ -11879,9 +12064,9 @@ class ChartAccountsService extends RestService$1 {
11879
12064
  }));
11880
12065
  }
11881
12066
  }
11882
- ChartAccountsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
11883
- ChartAccountsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsService, providedIn: 'root' });
11884
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChartAccountsService, decorators: [{
12067
+ ChartAccountsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12068
+ ChartAccountsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsService, providedIn: 'root' });
12069
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChartAccountsService, decorators: [{
11885
12070
  type: Injectable,
11886
12071
  args: [{
11887
12072
  providedIn: 'root'
@@ -11950,9 +12135,9 @@ class ChatService extends RestService$1 {
11950
12135
  });
11951
12136
  }
11952
12137
  }
11953
- 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 });
11954
- ChatService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChatService, providedIn: 'root' });
11955
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ChatService, decorators: [{
12138
+ 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 });
12139
+ ChatService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChatService, providedIn: 'root' });
12140
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ChatService, decorators: [{
11956
12141
  type: Injectable,
11957
12142
  args: [{
11958
12143
  providedIn: 'root'
@@ -12009,9 +12194,9 @@ class MessageService extends RestService$1 {
12009
12194
  });
12010
12195
  }
12011
12196
  }
12012
- 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 });
12013
- MessageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageService, providedIn: 'root' });
12014
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageService, decorators: [{
12197
+ 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 });
12198
+ MessageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageService, providedIn: 'root' });
12199
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageService, decorators: [{
12015
12200
  type: Injectable,
12016
12201
  args: [{
12017
12202
  providedIn: 'root'
@@ -12082,9 +12267,9 @@ class MessageDocumentService extends RestService$1 {
12082
12267
  }));
12083
12268
  }
12084
12269
  }
12085
- MessageDocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12086
- MessageDocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageDocumentService, providedIn: 'root' });
12087
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: MessageDocumentService, decorators: [{
12270
+ MessageDocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12271
+ MessageDocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageDocumentService, providedIn: 'root' });
12272
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: MessageDocumentService, decorators: [{
12088
12273
  type: Injectable,
12089
12274
  args: [{
12090
12275
  providedIn: 'root'
@@ -12209,9 +12394,9 @@ class DepreciationService extends RestService$1 {
12209
12394
  });
12210
12395
  }
12211
12396
  }
12212
- 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 });
12213
- DepreciationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationService, providedIn: 'root' });
12214
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationService, decorators: [{
12397
+ 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 });
12398
+ DepreciationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationService, providedIn: 'root' });
12399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationService, decorators: [{
12215
12400
  type: Injectable,
12216
12401
  args: [{
12217
12402
  providedIn: 'root'
@@ -12263,9 +12448,9 @@ class DepreciationCapitalProjectService {
12263
12448
  }));
12264
12449
  }
12265
12450
  }
12266
- 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 });
12267
- DepreciationCapitalProjectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' });
12268
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
12451
+ 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 });
12452
+ DepreciationCapitalProjectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' });
12453
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
12269
12454
  type: Injectable,
12270
12455
  args: [{
12271
12456
  providedIn: 'root'
@@ -12331,9 +12516,9 @@ class ReceiptService {
12331
12516
  return plainToClass(this.modelClass, data);
12332
12517
  }
12333
12518
  }
12334
- 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 });
12335
- ReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ReceiptService, providedIn: 'root' });
12336
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ReceiptService, decorators: [{
12519
+ 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 });
12520
+ ReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReceiptService, providedIn: 'root' });
12521
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReceiptService, decorators: [{
12337
12522
  type: Injectable,
12338
12523
  args: [{
12339
12524
  providedIn: 'root'
@@ -12362,9 +12547,9 @@ class DepreciationReceiptService extends ReceiptService {
12362
12547
  this.listenEvents();
12363
12548
  }
12364
12549
  }
12365
- 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 });
12366
- DepreciationReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationReceiptService, providedIn: 'root' });
12367
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DepreciationReceiptService, decorators: [{
12550
+ 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 });
12551
+ DepreciationReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationReceiptService, providedIn: 'root' });
12552
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DepreciationReceiptService, decorators: [{
12368
12553
  type: Injectable,
12369
12554
  args: [{
12370
12555
  providedIn: 'root'
@@ -12578,9 +12763,9 @@ class RestService {
12578
12763
  */
12579
12764
  listenEvents() { }
12580
12765
  }
12581
- 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 });
12582
- RestService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService, providedIn: 'root' });
12583
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RestService, decorators: [{
12766
+ 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 });
12767
+ RestService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService, providedIn: 'root' });
12768
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RestService, decorators: [{
12584
12769
  type: Injectable,
12585
12770
  args: [{
12586
12771
  providedIn: 'root'
@@ -12597,9 +12782,9 @@ class DocumentService extends RestService {
12597
12782
  this.modelClass = Document;
12598
12783
  }
12599
12784
  }
12600
- DocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12601
- DocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentService, providedIn: 'root' });
12602
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentService, decorators: [{
12785
+ DocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12786
+ DocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentService, providedIn: 'root' });
12787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentService, decorators: [{
12603
12788
  type: Injectable,
12604
12789
  args: [{
12605
12790
  providedIn: 'root'
@@ -12665,9 +12850,9 @@ class DocumentFolderService extends RestService {
12665
12850
  }));
12666
12851
  }
12667
12852
  }
12668
- DocumentFolderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12669
- DocumentFolderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentFolderService, providedIn: 'root' });
12670
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: DocumentFolderService, decorators: [{
12853
+ DocumentFolderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12854
+ DocumentFolderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentFolderService, providedIn: 'root' });
12855
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: DocumentFolderService, decorators: [{
12671
12856
  type: Injectable,
12672
12857
  args: [{
12673
12858
  providedIn: 'root'
@@ -12742,9 +12927,9 @@ FacebookService.authOptions = {
12742
12927
  auth_type: 'rerequest',
12743
12928
  return_scopes: true
12744
12929
  };
12745
- 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 });
12746
- FacebookService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FacebookService, providedIn: 'root' });
12747
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FacebookService, decorators: [{
12930
+ 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 });
12931
+ FacebookService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FacebookService, providedIn: 'root' });
12932
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FacebookService, decorators: [{
12748
12933
  type: Injectable,
12749
12934
  args: [{
12750
12935
  providedIn: 'root'
@@ -12812,9 +12997,9 @@ class GoogleService {
12812
12997
  google.accounts.id.disableAutoSelect();
12813
12998
  }
12814
12999
  }
12815
- 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 });
12816
- GoogleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: GoogleService, providedIn: 'root' });
12817
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: GoogleService, decorators: [{
13000
+ 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 });
13001
+ GoogleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: GoogleService, providedIn: 'root' });
13002
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: GoogleService, decorators: [{
12818
13003
  type: Injectable,
12819
13004
  args: [{
12820
13005
  providedIn: 'root'
@@ -12840,9 +13025,9 @@ class FileService extends RestService$1 {
12840
13025
  .pipe(map((fileBase) => plainToClass(AppFile, fileBase)));
12841
13026
  }
12842
13027
  }
12843
- FileService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12844
- FileService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FileService, providedIn: 'root' });
12845
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FileService, decorators: [{
13028
+ FileService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13029
+ FileService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FileService, providedIn: 'root' });
13030
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FileService, decorators: [{
12846
13031
  type: Injectable,
12847
13032
  args: [{
12848
13033
  providedIn: 'root'
@@ -12859,9 +13044,9 @@ class ClientIncomeTypesService extends RestService$1 {
12859
13044
  this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
12860
13045
  }
12861
13046
  }
12862
- ClientIncomeTypesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientIncomeTypesService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12863
- ClientIncomeTypesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientIncomeTypesService, providedIn: 'root' });
12864
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientIncomeTypesService, decorators: [{
13047
+ ClientIncomeTypesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientIncomeTypesService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13048
+ ClientIncomeTypesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientIncomeTypesService, providedIn: 'root' });
13049
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientIncomeTypesService, decorators: [{
12865
13050
  type: Injectable,
12866
13051
  args: [{
12867
13052
  providedIn: 'root'
@@ -12976,9 +13161,9 @@ class ClientInviteService extends RestService {
12976
13161
  });
12977
13162
  }
12978
13163
  }
12979
- ClientInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
12980
- ClientInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientInviteService, providedIn: 'root' });
12981
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientInviteService, decorators: [{
13164
+ ClientInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13165
+ ClientInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientInviteService, providedIn: 'root' });
13166
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientInviteService, decorators: [{
12982
13167
  type: Injectable,
12983
13168
  args: [{
12984
13169
  providedIn: 'root'
@@ -13057,9 +13242,9 @@ class ClientMovementService extends RestService {
13057
13242
  });
13058
13243
  }
13059
13244
  }
13060
- ClientMovementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientMovementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13061
- ClientMovementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientMovementService, providedIn: 'root' });
13062
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientMovementService, decorators: [{
13245
+ ClientMovementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientMovementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13246
+ ClientMovementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientMovementService, providedIn: 'root' });
13247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientMovementService, decorators: [{
13063
13248
  type: Injectable,
13064
13249
  args: [{
13065
13250
  providedIn: 'root'
@@ -13088,9 +13273,9 @@ class EmployeeService extends RestService {
13088
13273
  }));
13089
13274
  }
13090
13275
  }
13091
- EmployeeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13092
- EmployeeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeService, providedIn: 'root' });
13093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeService, decorators: [{
13276
+ EmployeeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13277
+ EmployeeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeService, providedIn: 'root' });
13278
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeService, decorators: [{
13094
13279
  type: Injectable,
13095
13280
  args: [{
13096
13281
  providedIn: 'root'
@@ -13133,9 +13318,9 @@ class EmployeeInviteService extends RestService {
13133
13318
  }));
13134
13319
  }
13135
13320
  }
13136
- EmployeeInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13137
- EmployeeInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' });
13138
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EmployeeInviteService, decorators: [{
13321
+ EmployeeInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13322
+ EmployeeInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' });
13323
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EmployeeInviteService, decorators: [{
13139
13324
  type: Injectable,
13140
13325
  args: [{
13141
13326
  providedIn: 'root'
@@ -13160,9 +13345,9 @@ class ClientPortfolioReportService {
13160
13345
  }));
13161
13346
  }
13162
13347
  }
13163
- 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 });
13164
- ClientPortfolioReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' });
13165
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
13348
+ 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 });
13349
+ ClientPortfolioReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' });
13350
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
13166
13351
  type: Injectable,
13167
13352
  args: [{
13168
13353
  providedIn: 'root'
@@ -13232,9 +13417,9 @@ class FirmService {
13232
13417
  }));
13233
13418
  }
13234
13419
  }
13235
- 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 });
13236
- FirmService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FirmService, providedIn: 'root' });
13237
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: FirmService, decorators: [{
13420
+ 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 });
13421
+ FirmService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FirmService, providedIn: 'root' });
13422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FirmService, decorators: [{
13238
13423
  type: Injectable,
13239
13424
  args: [{
13240
13425
  providedIn: 'root'
@@ -13307,9 +13492,9 @@ class IncomeSourceForecastService extends RestService {
13307
13492
  }).flat();
13308
13493
  }
13309
13494
  }
13310
- IncomeSourceForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13311
- IncomeSourceForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' });
13312
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
13495
+ IncomeSourceForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13496
+ IncomeSourceForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' });
13497
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
13313
13498
  type: Injectable,
13314
13499
  args: [{
13315
13500
  providedIn: 'root'
@@ -13379,9 +13564,9 @@ class SalaryForecastService extends RestService {
13379
13564
  }).flat();
13380
13565
  }
13381
13566
  }
13382
- SalaryForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SalaryForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13383
- SalaryForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SalaryForecastService, providedIn: 'root' });
13384
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SalaryForecastService, decorators: [{
13567
+ SalaryForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SalaryForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13568
+ SalaryForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SalaryForecastService, providedIn: 'root' });
13569
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SalaryForecastService, decorators: [{
13385
13570
  type: Injectable,
13386
13571
  args: [{
13387
13572
  providedIn: 'root'
@@ -13457,9 +13642,9 @@ class SoleForecastService extends RestService {
13457
13642
  });
13458
13643
  }
13459
13644
  }
13460
- SoleForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13461
- SoleForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleForecastService, providedIn: 'root' });
13462
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleForecastService, decorators: [{
13645
+ SoleForecastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleForecastService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13646
+ SoleForecastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleForecastService, providedIn: 'root' });
13647
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleForecastService, decorators: [{
13463
13648
  type: Injectable,
13464
13649
  args: [{
13465
13650
  providedIn: 'root'
@@ -13558,9 +13743,9 @@ class IncomeSourceService extends RestService {
13558
13743
  });
13559
13744
  }
13560
13745
  }
13561
- IncomeSourceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13562
- IncomeSourceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceService, providedIn: 'root' });
13563
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IncomeSourceService, decorators: [{
13746
+ IncomeSourceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13747
+ IncomeSourceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceService, providedIn: 'root' });
13748
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IncomeSourceService, decorators: [{
13564
13749
  type: Injectable,
13565
13750
  args: [{
13566
13751
  providedIn: 'root'
@@ -13623,9 +13808,9 @@ class BorrowingExpenseService {
13623
13808
  }));
13624
13809
  }
13625
13810
  }
13626
- 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 });
13627
- BorrowingExpenseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' });
13628
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BorrowingExpenseService, decorators: [{
13811
+ 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 });
13812
+ BorrowingExpenseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' });
13813
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BorrowingExpenseService, decorators: [{
13629
13814
  type: Injectable,
13630
13815
  args: [{
13631
13816
  providedIn: 'root'
@@ -13707,9 +13892,9 @@ class LoanService extends RestService$1 {
13707
13892
  }));
13708
13893
  }
13709
13894
  }
13710
- LoanService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LoanService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13711
- LoanService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LoanService, providedIn: 'root' });
13712
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LoanService, decorators: [{
13895
+ LoanService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LoanService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13896
+ LoanService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LoanService, providedIn: 'root' });
13897
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LoanService, decorators: [{
13713
13898
  type: Injectable,
13714
13899
  args: [{
13715
13900
  providedIn: 'root'
@@ -13728,9 +13913,9 @@ class PropertyCategoryService extends RestService$1 {
13728
13913
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
13729
13914
  }
13730
13915
  }
13731
- PropertyCategoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13732
- PropertyCategoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' });
13733
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryService, decorators: [{
13916
+ PropertyCategoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13917
+ PropertyCategoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' });
13918
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryService, decorators: [{
13734
13919
  type: Injectable,
13735
13920
  args: [{
13736
13921
  providedIn: 'root'
@@ -13746,9 +13931,9 @@ class PropertyCategoryMovementService extends RestService$1 {
13746
13931
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
13747
13932
  }
13748
13933
  }
13749
- PropertyCategoryMovementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryMovementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13750
- PropertyCategoryMovementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' });
13751
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
13934
+ PropertyCategoryMovementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryMovementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13935
+ PropertyCategoryMovementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' });
13936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
13752
13937
  type: Injectable,
13753
13938
  args: [{
13754
13939
  providedIn: 'root'
@@ -13790,9 +13975,9 @@ class PropertyDocumentService extends RestService$1 {
13790
13975
  });
13791
13976
  }
13792
13977
  }
13793
- PropertyDocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13794
- PropertyDocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyDocumentService, providedIn: 'root' });
13795
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyDocumentService, decorators: [{
13978
+ PropertyDocumentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13979
+ PropertyDocumentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyDocumentService, providedIn: 'root' });
13980
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyDocumentService, decorators: [{
13796
13981
  type: Injectable,
13797
13982
  args: [{
13798
13983
  providedIn: 'root'
@@ -13809,9 +13994,9 @@ class TaxExemptionService extends RestService$1 {
13809
13994
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
13810
13995
  }
13811
13996
  }
13812
- TaxExemptionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxExemptionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13813
- TaxExemptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxExemptionService, providedIn: 'root' });
13814
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxExemptionService, decorators: [{
13997
+ TaxExemptionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxExemptionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13998
+ TaxExemptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxExemptionService, providedIn: 'root' });
13999
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxExemptionService, decorators: [{
13815
14000
  type: Injectable,
13816
14001
  args: [{
13817
14002
  providedIn: 'root'
@@ -13827,9 +14012,9 @@ class PropertySaleService extends RestService$1 {
13827
14012
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
13828
14013
  }
13829
14014
  }
13830
- PropertySaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13831
- PropertySaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertySaleService, providedIn: 'root' });
13832
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertySaleService, decorators: [{
14015
+ PropertySaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14016
+ PropertySaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertySaleService, providedIn: 'root' });
14017
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertySaleService, decorators: [{
13833
14018
  type: Injectable,
13834
14019
  args: [{
13835
14020
  providedIn: 'root'
@@ -13876,9 +14061,9 @@ class PropertyShareService extends RestService$1 {
13876
14061
  this.listenCSE(PropertySale, ['post', 'delete'], this.resetCache);
13877
14062
  }
13878
14063
  }
13879
- PropertyShareService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyShareService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13880
- PropertyShareService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyShareService, providedIn: 'root' });
13881
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyShareService, decorators: [{
14064
+ PropertyShareService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyShareService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14065
+ PropertyShareService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyShareService, providedIn: 'root' });
14066
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyShareService, decorators: [{
13882
14067
  type: Injectable,
13883
14068
  args: [{
13884
14069
  providedIn: 'root'
@@ -13975,9 +14160,9 @@ class PropertyService extends RestService$1 {
13975
14160
  }));
13976
14161
  }
13977
14162
  }
13978
- PropertyService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
13979
- PropertyService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyService, providedIn: 'root' });
13980
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyService, decorators: [{
14163
+ PropertyService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14164
+ PropertyService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyService, providedIn: 'root' });
14165
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyService, decorators: [{
13981
14166
  type: Injectable,
13982
14167
  args: [{
13983
14168
  providedIn: 'root'
@@ -14021,9 +14206,9 @@ class ServiceNotificationService extends RestService {
14021
14206
  });
14022
14207
  }
14023
14208
  }
14024
- 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 });
14025
- ServiceNotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' });
14026
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceNotificationService, decorators: [{
14209
+ 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 });
14210
+ ServiceNotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' });
14211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceNotificationService, decorators: [{
14027
14212
  type: Injectable,
14028
14213
  args: [{
14029
14214
  providedIn: 'root'
@@ -14033,12 +14218,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImpor
14033
14218
  args: ['environment']
14034
14219
  }] }, { type: ToastService }, { type: SseService }]; } });
14035
14220
 
14036
- var MessagesEnum$2;
14221
+ var MessagesEnum$3;
14037
14222
  (function (MessagesEnum) {
14038
14223
  MessagesEnum["LOGO_UPDATED"] = "Logo updated successfully";
14039
14224
  MessagesEnum["LOGO_ERROR_FORMAT"] = "Wrong file format. Allowed extensions: jpg, img, png";
14040
14225
  MessagesEnum["LOGO_ERROR_SIZE"] = "The file is too big. Maximum size is 2mb";
14041
- })(MessagesEnum$2 || (MessagesEnum$2 = {}));
14226
+ })(MessagesEnum$3 || (MessagesEnum$3 = {}));
14042
14227
 
14043
14228
  class SoleBusinessService extends RestService {
14044
14229
  constructor() {
@@ -14062,7 +14247,7 @@ class SoleBusinessService extends RestService {
14062
14247
  replace(tempCache, plainToClass(SoleBusiness, updatedBusiness));
14063
14248
  this.cache = tempCache;
14064
14249
  this.cacheSubject.next(this.cache);
14065
- this.toastService.success(MessagesEnum$2.LOGO_UPDATED);
14250
+ this.toastService.success(MessagesEnum$3.LOGO_UPDATED);
14066
14251
  }), catchError((error) => {
14067
14252
  // Show error when user provided wrong image (format or size)
14068
14253
  if (error.status === 422) {
@@ -14072,9 +14257,9 @@ class SoleBusinessService extends RestService {
14072
14257
  }));
14073
14258
  }
14074
14259
  }
14075
- SoleBusinessService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14076
- SoleBusinessService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessService, providedIn: 'root' });
14077
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessService, decorators: [{
14260
+ SoleBusinessService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14261
+ SoleBusinessService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessService, providedIn: 'root' });
14262
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessService, decorators: [{
14078
14263
  type: Injectable,
14079
14264
  args: [{
14080
14265
  providedIn: 'root'
@@ -14089,9 +14274,9 @@ class SoleBusinessActivityService extends RestService {
14089
14274
  this.isHydra = true;
14090
14275
  }
14091
14276
  }
14092
- SoleBusinessActivityService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14093
- SoleBusinessActivityService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' });
14094
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
14277
+ SoleBusinessActivityService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14278
+ SoleBusinessActivityService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' });
14279
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
14095
14280
  type: Injectable,
14096
14281
  args: [{
14097
14282
  providedIn: 'root'
@@ -14117,9 +14302,9 @@ class SoleBusinessLossService extends RestService {
14117
14302
  });
14118
14303
  }
14119
14304
  }
14120
- SoleBusinessLossService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14121
- SoleBusinessLossService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' });
14122
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossService, decorators: [{
14305
+ SoleBusinessLossService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14306
+ SoleBusinessLossService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' });
14307
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossService, decorators: [{
14123
14308
  type: Injectable,
14124
14309
  args: [{
14125
14310
  providedIn: 'root'
@@ -14137,9 +14322,9 @@ class SoleBusinessLossOffsetRuleService extends RestService {
14137
14322
  this.isHydra = true;
14138
14323
  }
14139
14324
  }
14140
- SoleBusinessLossOffsetRuleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14141
- SoleBusinessLossOffsetRuleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' });
14142
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
14325
+ SoleBusinessLossOffsetRuleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14326
+ SoleBusinessLossOffsetRuleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' });
14327
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
14143
14328
  type: Injectable,
14144
14329
  args: [{
14145
14330
  providedIn: 'root'
@@ -14154,9 +14339,9 @@ class SoleContactService extends RestService {
14154
14339
  this.isHydra = true;
14155
14340
  }
14156
14341
  }
14157
- SoleContactService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14158
- SoleContactService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleContactService, providedIn: 'root' });
14159
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleContactService, decorators: [{
14342
+ SoleContactService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14343
+ SoleContactService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleContactService, providedIn: 'root' });
14344
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleContactService, decorators: [{
14160
14345
  type: Injectable,
14161
14346
  args: [{
14162
14347
  providedIn: 'root'
@@ -14212,9 +14397,9 @@ class SoleDepreciationMethodService {
14212
14397
  });
14213
14398
  }
14214
14399
  }
14215
- 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 });
14216
- SoleDepreciationMethodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' });
14217
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
14400
+ 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 });
14401
+ SoleDepreciationMethodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' });
14402
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
14218
14403
  type: Injectable,
14219
14404
  args: [{
14220
14405
  providedIn: 'root'
@@ -14267,9 +14452,9 @@ class SoleDetailsService {
14267
14452
  }));
14268
14453
  }
14269
14454
  }
14270
- 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 });
14271
- SoleDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDetailsService, providedIn: 'root' });
14272
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleDetailsService, decorators: [{
14455
+ 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 });
14456
+ SoleDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDetailsService, providedIn: 'root' });
14457
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleDetailsService, decorators: [{
14273
14458
  type: Injectable,
14274
14459
  args: [{
14275
14460
  providedIn: 'root'
@@ -14342,9 +14527,9 @@ class SoleInvoiceService extends RestService {
14342
14527
  });
14343
14528
  }
14344
14529
  }
14345
- SoleInvoiceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14346
- SoleInvoiceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' });
14347
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceService, decorators: [{
14530
+ SoleInvoiceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14531
+ SoleInvoiceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' });
14532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceService, decorators: [{
14348
14533
  type: Injectable,
14349
14534
  args: [{
14350
14535
  providedIn: 'root'
@@ -14359,9 +14544,9 @@ class SoleInvoiceTemplateService extends RestService {
14359
14544
  this.isHydra = true;
14360
14545
  }
14361
14546
  }
14362
- SoleInvoiceTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14363
- SoleInvoiceTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' });
14364
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
14547
+ SoleInvoiceTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14548
+ SoleInvoiceTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' });
14549
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
14365
14550
  type: Injectable,
14366
14551
  args: [{
14367
14552
  providedIn: 'root'
@@ -14376,9 +14561,9 @@ class BasReportService extends RestService {
14376
14561
  this.isHydra = true;
14377
14562
  }
14378
14563
  }
14379
- BasReportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14380
- BasReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasReportService, providedIn: 'root' });
14381
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BasReportService, decorators: [{
14564
+ BasReportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14565
+ BasReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasReportService, providedIn: 'root' });
14566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BasReportService, decorators: [{
14382
14567
  type: Injectable,
14383
14568
  args: [{
14384
14569
  providedIn: 'root'
@@ -14404,9 +14589,9 @@ class ServicePaymentService extends RestService$1 {
14404
14589
  return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
14405
14590
  }
14406
14591
  }
14407
- ServicePaymentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14408
- ServicePaymentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentService, providedIn: 'root' });
14409
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentService, decorators: [{
14592
+ ServicePaymentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14593
+ ServicePaymentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentService, providedIn: 'root' });
14594
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentService, decorators: [{
14410
14595
  type: Injectable,
14411
14596
  args: [{
14412
14597
  providedIn: 'root'
@@ -14454,9 +14639,9 @@ class ServicePaymentMethodService extends RestService$1 {
14454
14639
  });
14455
14640
  }
14456
14641
  }
14457
- 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 });
14458
- ServicePaymentMethodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' });
14459
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
14642
+ 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 });
14643
+ ServicePaymentMethodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' });
14644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
14460
14645
  type: Injectable,
14461
14646
  args: [{
14462
14647
  providedIn: 'root'
@@ -14479,9 +14664,9 @@ class ServicePriceService extends RestService$1 {
14479
14664
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
14480
14665
  }
14481
14666
  }
14482
- ServicePriceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14483
- ServicePriceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePriceService, providedIn: 'root' });
14484
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServicePriceService, decorators: [{
14667
+ ServicePriceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14668
+ ServicePriceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePriceService, providedIn: 'root' });
14669
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServicePriceService, decorators: [{
14485
14670
  type: Injectable,
14486
14671
  args: [{
14487
14672
  providedIn: 'root'
@@ -14595,9 +14780,9 @@ class SubscriptionService extends RestService$1 {
14595
14780
  });
14596
14781
  }
14597
14782
  }
14598
- 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 });
14599
- SubscriptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SubscriptionService, providedIn: 'root' });
14600
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: SubscriptionService, decorators: [{
14783
+ 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 });
14784
+ SubscriptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SubscriptionService, providedIn: 'root' });
14785
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: SubscriptionService, decorators: [{
14601
14786
  type: Injectable,
14602
14787
  args: [{
14603
14788
  providedIn: 'root'
@@ -14617,9 +14802,9 @@ class ServiceProductService extends RestService$1 {
14617
14802
  this.isApiPlatform = true;
14618
14803
  }
14619
14804
  }
14620
- ServiceProductService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14621
- ServiceProductService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceProductService, providedIn: 'root' });
14622
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ServiceProductService, decorators: [{
14805
+ ServiceProductService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14806
+ ServiceProductService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceProductService, providedIn: 'root' });
14807
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ServiceProductService, decorators: [{
14623
14808
  type: Injectable,
14624
14809
  args: [{
14625
14810
  providedIn: 'root'
@@ -14651,9 +14836,9 @@ class TaxReviewHistoryService extends RestService {
14651
14836
  });
14652
14837
  }
14653
14838
  }
14654
- TaxReviewHistoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewHistoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14655
- TaxReviewHistoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' });
14656
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
14839
+ TaxReviewHistoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewHistoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14840
+ TaxReviewHistoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' });
14841
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
14657
14842
  type: Injectable,
14658
14843
  args: [{
14659
14844
  providedIn: 'root'
@@ -14742,9 +14927,9 @@ class TaxReviewService extends RestService {
14742
14927
  });
14743
14928
  }
14744
14929
  }
14745
- TaxReviewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14746
- TaxReviewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewService, providedIn: 'root' });
14747
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxReviewService, decorators: [{
14930
+ TaxReviewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14931
+ TaxReviewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewService, providedIn: 'root' });
14932
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxReviewService, decorators: [{
14748
14933
  type: Injectable,
14749
14934
  args: [{
14750
14935
  providedIn: 'root'
@@ -14801,9 +14986,9 @@ class TaxSummaryService {
14801
14986
  });
14802
14987
  }
14803
14988
  }
14804
- 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 });
14805
- TaxSummaryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxSummaryService, providedIn: 'root' });
14806
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TaxSummaryService, decorators: [{
14989
+ 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 });
14990
+ TaxSummaryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxSummaryService, providedIn: 'root' });
14991
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TaxSummaryService, decorators: [{
14807
14992
  type: Injectable,
14808
14993
  args: [{
14809
14994
  providedIn: 'root'
@@ -14822,9 +15007,9 @@ class AllocationRuleService extends RestService$1 {
14822
15007
  this.isApiPlatform = true;
14823
15008
  }
14824
15009
  }
14825
- AllocationRuleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14826
- AllocationRuleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AllocationRuleService, providedIn: 'root' });
14827
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AllocationRuleService, decorators: [{
15010
+ AllocationRuleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15011
+ AllocationRuleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AllocationRuleService, providedIn: 'root' });
15012
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AllocationRuleService, decorators: [{
14828
15013
  type: Injectable,
14829
15014
  args: [{
14830
15015
  providedIn: 'root'
@@ -14915,9 +15100,9 @@ class TransactionAllocationService extends RestService {
14915
15100
  });
14916
15101
  }
14917
15102
  }
14918
- TransactionAllocationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionAllocationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
14919
- TransactionAllocationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' });
14920
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionAllocationService, decorators: [{
15103
+ TransactionAllocationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionAllocationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15104
+ TransactionAllocationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' });
15105
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionAllocationService, decorators: [{
14921
15106
  type: Injectable,
14922
15107
  args: [{
14923
15108
  providedIn: 'root'
@@ -14943,9 +15128,9 @@ class TransactionReceiptService extends ReceiptService {
14943
15128
  this.listenEvents();
14944
15129
  }
14945
15130
  }
14946
- 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 });
14947
- TransactionReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionReceiptService, providedIn: 'root' });
14948
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionReceiptService, decorators: [{
15131
+ 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 });
15132
+ TransactionReceiptService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionReceiptService, providedIn: 'root' });
15133
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionReceiptService, decorators: [{
14949
15134
  type: Injectable,
14950
15135
  args: [{
14951
15136
  providedIn: 'root'
@@ -15264,9 +15449,9 @@ class TransactionService extends RestService {
15264
15449
  });
15265
15450
  }
15266
15451
  }
15267
- 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 });
15268
- TransactionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionService, providedIn: 'root' });
15269
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionService, decorators: [{
15452
+ 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 });
15453
+ TransactionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionService, providedIn: 'root' });
15454
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionService, decorators: [{
15270
15455
  type: Injectable,
15271
15456
  args: [{
15272
15457
  providedIn: 'root'
@@ -15295,9 +15480,9 @@ class TutorialVideoService {
15295
15480
  }
15296
15481
  TutorialVideoService.googleUrl = `https://www.googleapis.com/drive/v3/files?fields=*&mimeType='video/mp4'&orderBy=name`;
15297
15482
  TutorialVideoService.parents = '1uLMLzi8WUy2go9xhfzJEwgFwOM43dukM';
15298
- 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 });
15299
- TutorialVideoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TutorialVideoService, providedIn: 'root' });
15300
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TutorialVideoService, decorators: [{
15483
+ 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 });
15484
+ TutorialVideoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TutorialVideoService, providedIn: 'root' });
15485
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TutorialVideoService, decorators: [{
15301
15486
  type: Injectable,
15302
15487
  args: [{
15303
15488
  providedIn: 'root'
@@ -15317,9 +15502,9 @@ class VehicleService extends RestService {
15317
15502
  this.modelClass = Vehicle;
15318
15503
  }
15319
15504
  }
15320
- VehicleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15321
- VehicleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleService, providedIn: 'root' });
15322
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleService, decorators: [{
15505
+ VehicleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15506
+ VehicleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleService, providedIn: 'root' });
15507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleService, decorators: [{
15323
15508
  type: Injectable,
15324
15509
  args: [{
15325
15510
  providedIn: 'root'
@@ -15391,9 +15576,9 @@ class VehicleClaimService extends RestService {
15391
15576
  combineLatest(batch$).subscribe();
15392
15577
  }
15393
15578
  }
15394
- VehicleClaimService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15395
- VehicleClaimService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimService, providedIn: 'root' });
15396
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimService, decorators: [{
15579
+ VehicleClaimService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15580
+ VehicleClaimService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimService, providedIn: 'root' });
15581
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimService, decorators: [{
15397
15582
  type: Injectable,
15398
15583
  args: [{
15399
15584
  providedIn: 'root'
@@ -15470,9 +15655,9 @@ class VehicleClaimDetailsService {
15470
15655
  this.update(vehicleClaimDetails).subscribe();
15471
15656
  }
15472
15657
  }
15473
- 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 });
15474
- VehicleClaimDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' });
15475
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
15658
+ 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 });
15659
+ VehicleClaimDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' });
15660
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
15476
15661
  type: Injectable,
15477
15662
  args: [{
15478
15663
  providedIn: 'root'
@@ -15492,9 +15677,28 @@ class VehicleLogbookService extends RestService {
15492
15677
  this.modelClass = VehicleLogbook;
15493
15678
  }
15494
15679
  }
15495
- VehicleLogbookService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15496
- VehicleLogbookService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' });
15497
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: VehicleLogbookService, decorators: [{
15680
+ VehicleLogbookService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15681
+ VehicleLogbookService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' });
15682
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: VehicleLogbookService, decorators: [{
15683
+ type: Injectable,
15684
+ args: [{
15685
+ providedIn: 'root'
15686
+ }]
15687
+ }] });
15688
+
15689
+ class AnnualClientDetailsService extends RestService$1 {
15690
+ constructor() {
15691
+ super(...arguments);
15692
+ this.modelClass = AnnualClientDetails;
15693
+ this.collectionClass = Collection;
15694
+ this.endpointUri = 'annual-client-details';
15695
+ this.isApiPlatform = true;
15696
+ this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
15697
+ }
15698
+ }
15699
+ AnnualClientDetailsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15700
+ AnnualClientDetailsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' });
15701
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
15498
15702
  type: Injectable,
15499
15703
  args: [{
15500
15704
  providedIn: 'root'
@@ -15527,9 +15731,9 @@ class OccupationService {
15527
15731
  return this.occupationsSubject.asObservable();
15528
15732
  }
15529
15733
  }
15530
- 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 });
15531
- OccupationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: OccupationService, providedIn: 'root' });
15532
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: OccupationService, decorators: [{
15734
+ 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 });
15735
+ OccupationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: OccupationService, providedIn: 'root' });
15736
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: OccupationService, decorators: [{
15533
15737
  type: Injectable,
15534
15738
  args: [{
15535
15739
  providedIn: 'root'
@@ -15573,9 +15777,9 @@ class UserEventSettingService extends RestService {
15573
15777
  }));
15574
15778
  }
15575
15779
  }
15576
- UserEventSettingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15577
- UserEventSettingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventSettingService, providedIn: 'root' });
15578
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventSettingService, decorators: [{
15780
+ UserEventSettingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15781
+ UserEventSettingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventSettingService, providedIn: 'root' });
15782
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventSettingService, decorators: [{
15579
15783
  type: Injectable,
15580
15784
  args: [{
15581
15785
  providedIn: 'root'
@@ -15590,9 +15794,9 @@ class UserEventTypeService extends RestService {
15590
15794
  this.isHydra = true;
15591
15795
  }
15592
15796
  }
15593
- UserEventTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15594
- UserEventTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventTypeService, providedIn: 'root' });
15595
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UserEventTypeService, decorators: [{
15797
+ UserEventTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15798
+ UserEventTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventTypeService, providedIn: 'root' });
15799
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UserEventTypeService, decorators: [{
15596
15800
  type: Injectable,
15597
15801
  args: [{
15598
15802
  providedIn: 'root'
@@ -15609,40 +15813,34 @@ class UsersInviteService extends RestService {
15609
15813
  this.url = 'users/invite';
15610
15814
  }
15611
15815
  }
15612
- UsersInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15613
- UsersInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UsersInviteService, providedIn: 'root' });
15614
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: UsersInviteService, decorators: [{
15816
+ UsersInviteService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15817
+ UsersInviteService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UsersInviteService, providedIn: 'root' });
15818
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UsersInviteService, decorators: [{
15615
15819
  type: Injectable,
15616
15820
  args: [{
15617
15821
  providedIn: 'root'
15618
15822
  }]
15619
15823
  }] });
15620
15824
 
15621
- /**
15622
- * Service that handling banks logic
15623
- */
15624
15825
  class HoldingService extends RestService$1 {
15625
15826
  constructor() {
15626
15827
  super(...arguments);
15627
15828
  this.modelClass = Holding;
15628
- this.collectionClass = Collection;
15829
+ this.collectionClass = HoldingCollection;
15629
15830
  this.endpointUri = 'holdings';
15630
15831
  this.isApiPlatform = true;
15631
15832
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15632
15833
  }
15633
15834
  }
15634
- HoldingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15635
- HoldingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingService, providedIn: 'root' });
15636
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingService, decorators: [{
15835
+ HoldingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15836
+ HoldingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingService, providedIn: 'root' });
15837
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingService, decorators: [{
15637
15838
  type: Injectable,
15638
15839
  args: [{
15639
15840
  providedIn: 'root'
15640
15841
  }]
15641
15842
  }] });
15642
15843
 
15643
- /**
15644
- * Service that handling banks logic
15645
- */
15646
15844
  class HoldingTypeService extends RestService$1 {
15647
15845
  constructor() {
15648
15846
  super(...arguments);
@@ -15653,18 +15851,15 @@ class HoldingTypeService extends RestService$1 {
15653
15851
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15654
15852
  }
15655
15853
  }
15656
- HoldingTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15657
- HoldingTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingTypeService, providedIn: 'root' });
15658
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingTypeService, decorators: [{
15854
+ HoldingTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15855
+ HoldingTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingTypeService, providedIn: 'root' });
15856
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingTypeService, decorators: [{
15659
15857
  type: Injectable,
15660
15858
  args: [{
15661
15859
  providedIn: 'root'
15662
15860
  }]
15663
15861
  }] });
15664
15862
 
15665
- /**
15666
- * Service that handling banks logic
15667
- */
15668
15863
  class HoldingSaleService extends RestService$1 {
15669
15864
  constructor() {
15670
15865
  super(...arguments);
@@ -15675,9 +15870,9 @@ class HoldingSaleService extends RestService$1 {
15675
15870
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15676
15871
  }
15677
15872
  }
15678
- HoldingSaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15679
- HoldingSaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingSaleService, providedIn: 'root' });
15680
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HoldingSaleService, decorators: [{
15873
+ HoldingSaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
15874
+ HoldingSaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingSaleService, providedIn: 'root' });
15875
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HoldingSaleService, decorators: [{
15681
15876
  type: Injectable,
15682
15877
  args: [{
15683
15878
  providedIn: 'root'
@@ -15884,9 +16079,9 @@ class AccountSetupService {
15884
16079
  }));
15885
16080
  }
15886
16081
  }
15887
- 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 });
15888
- AccountSetupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AccountSetupService, providedIn: 'root' });
15889
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AccountSetupService, decorators: [{
16082
+ 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 });
16083
+ AccountSetupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AccountSetupService, providedIn: 'root' });
16084
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AccountSetupService, decorators: [{
15890
16085
  type: Injectable,
15891
16086
  args: [{
15892
16087
  providedIn: 'root'
@@ -15912,9 +16107,9 @@ class RewardfulService {
15912
16107
  });
15913
16108
  }
15914
16109
  }
15915
- RewardfulService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RewardfulService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
15916
- RewardfulService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RewardfulService, providedIn: 'root' });
15917
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: RewardfulService, decorators: [{
16110
+ RewardfulService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RewardfulService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16111
+ RewardfulService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RewardfulService, providedIn: 'root' });
16112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: RewardfulService, decorators: [{
15918
16113
  type: Injectable,
15919
16114
  args: [{
15920
16115
  providedIn: 'root'
@@ -15959,9 +16154,9 @@ class AssetsService {
15959
16154
  return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
15960
16155
  }
15961
16156
  }
15962
- 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 });
15963
- AssetsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AssetsService, providedIn: 'root' });
15964
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: AssetsService, decorators: [{
16157
+ 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 });
16158
+ AssetsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AssetsService, providedIn: 'root' });
16159
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AssetsService, decorators: [{
15965
16160
  type: Injectable,
15966
16161
  args: [{
15967
16162
  providedIn: 'root'
@@ -16024,9 +16219,9 @@ class BankTransactionCalculationService {
16024
16219
  return allocations.getByBankTransactionsIds(bankTransactions.debitTransactions.getIds()).amount;
16025
16220
  }
16026
16221
  }
16027
- BankTransactionCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16028
- BankTransactionCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionCalculationService, providedIn: 'root' });
16029
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankTransactionCalculationService, decorators: [{
16222
+ BankTransactionCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16223
+ BankTransactionCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionCalculationService, providedIn: 'root' });
16224
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankTransactionCalculationService, decorators: [{
16030
16225
  type: Injectable,
16031
16226
  args: [{
16032
16227
  providedIn: 'root'
@@ -16055,9 +16250,9 @@ class BankAccountCalculationService {
16055
16250
  return bankAccounts.currentBalance - this.getTaxTankBalance(bankAccounts.getLoanAccounts(), bankTransactions, allocations);
16056
16251
  }
16057
16252
  }
16058
- BankAccountCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountCalculationService, deps: [{ token: BankTransactionCalculationService }], target: i0.ɵɵFactoryTarget.Injectable });
16059
- BankAccountCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' });
16060
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: BankAccountCalculationService, decorators: [{
16253
+ BankAccountCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountCalculationService, deps: [{ token: BankTransactionCalculationService }], target: i0.ɵɵFactoryTarget.Injectable });
16254
+ BankAccountCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' });
16255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: BankAccountCalculationService, decorators: [{
16061
16256
  type: Injectable,
16062
16257
  args: [{
16063
16258
  providedIn: 'root'
@@ -16082,9 +16277,9 @@ class ExportFormatterService {
16082
16277
  }));
16083
16278
  }
16084
16279
  }
16085
- 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 });
16086
- ExportFormatterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ExportFormatterService, providedIn: 'root' });
16087
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: ExportFormatterService, decorators: [{
16280
+ 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 });
16281
+ ExportFormatterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ExportFormatterService, providedIn: 'root' });
16282
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ExportFormatterService, decorators: [{
16088
16283
  type: Injectable,
16089
16284
  args: [{
16090
16285
  providedIn: 'root'
@@ -16105,9 +16300,9 @@ class HeaderTitleService {
16105
16300
  }), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
16106
16301
  }
16107
16302
  }
16108
- 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 });
16109
- HeaderTitleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HeaderTitleService, providedIn: 'root' });
16110
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: HeaderTitleService, decorators: [{
16303
+ 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 });
16304
+ HeaderTitleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HeaderTitleService, providedIn: 'root' });
16305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: HeaderTitleService, decorators: [{
16111
16306
  type: Injectable,
16112
16307
  args: [{
16113
16308
  providedIn: 'root'
@@ -16141,9 +16336,9 @@ class IntercomService {
16141
16336
  window.Intercom('boot', connectionCredentials);
16142
16337
  }
16143
16338
  }
16144
- IntercomService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16145
- IntercomService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IntercomService, providedIn: 'root' });
16146
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: IntercomService, decorators: [{
16339
+ IntercomService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
16340
+ IntercomService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IntercomService, providedIn: 'root' });
16341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: IntercomService, decorators: [{
16147
16342
  type: Injectable,
16148
16343
  args: [{
16149
16344
  providedIn: 'root'
@@ -16213,9 +16408,9 @@ class PdfFromDomElementService {
16213
16408
  .then((blob) => new File([blob], filename, { type: 'application/pdf' })));
16214
16409
  }
16215
16410
  }
16216
- PdfFromDomElementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16217
- PdfFromDomElementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' });
16218
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDomElementService, decorators: [{
16411
+ PdfFromDomElementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16412
+ PdfFromDomElementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' });
16413
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDomElementService, decorators: [{
16219
16414
  type: Injectable,
16220
16415
  args: [{
16221
16416
  providedIn: 'root'
@@ -16294,9 +16489,9 @@ class PdfFromTableService {
16294
16489
  doc.addImage(logo, 'PNG', doc.internal.pageSize.width - FILE_SETTINGS.logo.positionX, FILE_SETTINGS.logo.positionY, FILE_SETTINGS.logo.width, FILE_SETTINGS.logo.height);
16295
16490
  }
16296
16491
  }
16297
- PdfFromTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16298
- PdfFromTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromTableService, providedIn: 'root' });
16299
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromTableService, decorators: [{
16492
+ PdfFromTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16493
+ PdfFromTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromTableService, providedIn: 'root' });
16494
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromTableService, decorators: [{
16300
16495
  type: Injectable,
16301
16496
  args: [{
16302
16497
  providedIn: 'root'
@@ -16333,9 +16528,9 @@ class PdfFromDataTableService extends PdfFromTableService {
16333
16528
  return pdf;
16334
16529
  }
16335
16530
  }
16336
- PdfFromDataTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable });
16337
- PdfFromDataTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' });
16338
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromDataTableService, decorators: [{
16531
+ PdfFromDataTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable });
16532
+ PdfFromDataTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' });
16533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromDataTableService, decorators: [{
16339
16534
  type: Injectable,
16340
16535
  args: [{
16341
16536
  providedIn: 'root'
@@ -16371,9 +16566,9 @@ class PdfFromHtmlTableService extends PdfFromTableService {
16371
16566
  return pdf;
16372
16567
  }
16373
16568
  }
16374
- PdfFromHtmlTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
16375
- PdfFromHtmlTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' });
16376
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
16569
+ PdfFromHtmlTableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
16570
+ PdfFromHtmlTableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' });
16571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
16377
16572
  type: Injectable,
16378
16573
  args: [{
16379
16574
  providedIn: 'root'
@@ -16406,9 +16601,9 @@ class EquityPositionChartService {
16406
16601
  }));
16407
16602
  }
16408
16603
  }
16409
- 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 });
16410
- EquityPositionChartService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' });
16411
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: EquityPositionChartService, decorators: [{
16604
+ 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 });
16605
+ EquityPositionChartService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' });
16606
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: EquityPositionChartService, decorators: [{
16412
16607
  type: Injectable,
16413
16608
  args: [{
16414
16609
  providedIn: 'root'
@@ -16579,9 +16774,9 @@ class PropertyCalculationService {
16579
16774
  }
16580
16775
  }
16581
16776
  }
16582
- PropertyCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16583
- PropertyCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' });
16584
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyCalculationService, decorators: [{
16777
+ PropertyCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16778
+ PropertyCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' });
16779
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyCalculationService, decorators: [{
16585
16780
  type: Injectable,
16586
16781
  args: [{
16587
16782
  providedIn: 'root'
@@ -16638,9 +16833,9 @@ class PropertyTransactionReportService {
16638
16833
  }));
16639
16834
  }
16640
16835
  }
16641
- 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 });
16642
- PropertyTransactionReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' });
16643
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
16836
+ 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 });
16837
+ PropertyTransactionReportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' });
16838
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
16644
16839
  type: Injectable,
16645
16840
  args: [{
16646
16841
  providedIn: 'root'
@@ -16710,9 +16905,9 @@ class TransactionCalculationService {
16710
16905
  return bankTransactions.sumBy('amount') - allocations.getByBankTransactionsIds(bankTransactions.getIds()).sumBy('amount');
16711
16906
  }
16712
16907
  }
16713
- TransactionCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16714
- TransactionCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionCalculationService, providedIn: 'root' });
16715
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: TransactionCalculationService, decorators: [{
16908
+ TransactionCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16909
+ TransactionCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionCalculationService, providedIn: 'root' });
16910
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TransactionCalculationService, decorators: [{
16716
16911
  type: Injectable,
16717
16912
  args: [{
16718
16913
  providedIn: 'root'
@@ -16772,9 +16967,9 @@ class LogbookBestPeriodService {
16772
16967
  });
16773
16968
  }
16774
16969
  }
16775
- 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 });
16776
- LogbookBestPeriodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LogbookBestPeriodService, providedIn: 'root' });
16777
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: LogbookBestPeriodService, decorators: [{
16970
+ 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 });
16971
+ LogbookBestPeriodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LogbookBestPeriodService, providedIn: 'root' });
16972
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: LogbookBestPeriodService, decorators: [{
16778
16973
  type: Injectable,
16779
16974
  args: [{
16780
16975
  providedIn: 'root'
@@ -16815,9 +17010,9 @@ class XlsxService {
16815
17010
  return xlsx.write(workbook, { bookType: 'xlsx', type: 'array' });
16816
17011
  }
16817
17012
  }
16818
- XlsxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
16819
- XlsxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: XlsxService, providedIn: 'root' });
16820
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.4", ngImport: i0, type: XlsxService, decorators: [{
17013
+ XlsxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
17014
+ XlsxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: XlsxService, providedIn: 'root' });
17015
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: XlsxService, decorators: [{
16821
17016
  type: Injectable,
16822
17017
  args: [{
16823
17018
  providedIn: 'root'
@@ -17341,15 +17536,15 @@ function passwordMatchValidator(newPassControlName, confirmPassControlName) {
17341
17536
  };
17342
17537
  }
17343
17538
 
17344
- var MessagesEnum$1;
17539
+ var MessagesEnum$2;
17345
17540
  (function (MessagesEnum) {
17346
17541
  MessagesEnum["INVALID_DATE"] = "The date should not be before $1";
17347
- })(MessagesEnum$1 || (MessagesEnum$1 = {}));
17542
+ })(MessagesEnum$2 || (MessagesEnum$2 = {}));
17348
17543
 
17349
17544
  /**
17350
17545
  * Validation function, that checks If date form value is more than provided date
17351
17546
  */
17352
- function minDateValidator(date, message = MessagesEnum$1.INVALID_DATE.replace('$1', new DatePipe('en-US').transform(date))) {
17547
+ function minDateValidator(date, message = MessagesEnum$2.INVALID_DATE.replace('$1', new DatePipe('en-US').transform(date))) {
17353
17548
  return (control) => {
17354
17549
  if (!control.value) {
17355
17550
  return null;
@@ -18109,6 +18304,38 @@ class BankLoginForm extends AbstractForm {
18109
18304
  }
18110
18305
  }
18111
18306
 
18307
+ class AnnualClientDetailsForm extends AbstractForm {
18308
+ constructor(annualClientDetails = plainToClass(AnnualClientDetails, {})) {
18309
+ super({
18310
+ capitalLoss: new UntypedFormControl(annualClientDetails.capitalLoss, Validators.required),
18311
+ privateHealthCare: new UntypedFormControl(annualClientDetails.privateHealthCare, Validators.required),
18312
+ spouse: new UntypedFormControl(annualClientDetails.spouse, Validators.required),
18313
+ spouseAnnualIncome: new UntypedFormControl(annualClientDetails.spouseAnnualIncome, conditionalValidator(() => this.get('spouse').value, Validators.required)),
18314
+ hasDependants: new UntypedFormControl(!!annualClientDetails.spouseAnnualIncome, Validators.required),
18315
+ dependants: new UntypedFormControl(annualClientDetails.dependants, conditionalValidator(() => this.get('hasDependants').value, Validators.required)),
18316
+ hasStudentLoan: new UntypedFormControl(!!annualClientDetails.studentLoanAmount, Validators.required),
18317
+ studentLoanAmount: new UntypedFormControl(annualClientDetails.studentLoanAmount, conditionalValidator(() => this.get('hasStudentLoan').value, Validators.required)),
18318
+ }, annualClientDetails);
18319
+ this.annualClientDetails = annualClientDetails;
18320
+ this.watchFieldForToggle('spouse', 'spouseAnnualIncome');
18321
+ this.watchFieldForToggle('hasDependants', 'dependants');
18322
+ this.watchFieldForToggle('hasStudentLoan', 'studentLoanAmount');
18323
+ this.emitValues();
18324
+ }
18325
+ watchFieldForToggle(field, dependantField) {
18326
+ this.get(field).valueChanges.subscribe((value) => this.toggleField(dependantField, !!value));
18327
+ }
18328
+ toggleField(field, enable) {
18329
+ if (enable) {
18330
+ this.get(field).enable();
18331
+ }
18332
+ else {
18333
+ this.get(field).setValue(0);
18334
+ this.get(field).disable();
18335
+ }
18336
+ }
18337
+ }
18338
+
18112
18339
  class ClientIncomeTypesForm extends AbstractForm {
18113
18340
  constructor(clientIncomeTypes = plainToClass(ClientIncomeTypes, {})) {
18114
18341
  super({
@@ -18263,22 +18490,18 @@ class PropertySaleCostSaleForm extends AbstractForm {
18263
18490
  commission: new UntypedFormControl(propertySale.commission || 0, Validators.required),
18264
18491
  legalFees: new UntypedFormControl(propertySale.legalFees || 0, Validators.required),
18265
18492
  otherCost: new UntypedFormControl(propertySale.otherCost || 0, Validators.required),
18266
- capitalLoss: new UntypedFormControl(propertySale.capitalLoss || 0, Validators.required),
18267
- grossCGT: new UntypedFormControl({ value: propertySale.grossCGT, disabled: true }, Validators.required),
18268
- grossCGTAfterLoss: new UntypedFormControl({ value: propertySale.grossCGTAfterLoss, disabled: true }, Validators.required),
18493
+ grossCapitalGain: new UntypedFormControl({ value: propertySale.grossCapitalGain, disabled: true }, Validators.required),
18269
18494
  }, propertySale);
18270
18495
  this.propertySale = propertySale;
18271
18496
  this.property = property;
18272
18497
  this.listenEvents();
18273
- this.updateGrossCGT();
18498
+ this.updateGrossCapitalGain();
18274
18499
  }
18275
18500
  listenEvents() {
18276
18501
  this.listenCommissionUpdated();
18277
18502
  this.listenLegalFeesUpdated();
18278
18503
  this.listenOtherCostUpdated();
18279
18504
  this.listenPriceUpdated();
18280
- this.listenCapitalLossUpdated();
18281
- this.listenGrossCGT();
18282
18505
  }
18283
18506
  /**
18284
18507
  * Get property instance based on provided property and form value to get actual form calculations
@@ -18288,41 +18511,31 @@ class PropertySaleCostSaleForm extends AbstractForm {
18288
18511
  return plainToClass(PropertySale, Object.assign({}, this.propertySale, this.getRawValue()));
18289
18512
  }
18290
18513
  submit(data = {}) {
18291
- // 'grossCGT' field is always disabled, but we need it to submit result
18292
- Object.assign(data, { grossCGT: this.get('grossCGT').value });
18514
+ // 'grossCapitalGain' field is always disabled, but we need it to submit result
18515
+ Object.assign(data, { grossCapitalGain: this.get('grossCapitalGain').value });
18293
18516
  return super.submit(data);
18294
18517
  }
18295
- updateGrossCGT() {
18296
- this.get('grossCGT').setValue(Math.round(this.property.calculateGrossCGT(this.getPropertySale())).toFixed());
18518
+ updateGrossCapitalGain() {
18519
+ this.get('grossCapitalGain').setValue(Math.round(this.property.calculateGrossCapitalGain(this.getPropertySale())).toFixed());
18297
18520
  }
18298
18521
  listenCommissionUpdated() {
18299
18522
  this.get('commission').valueChanges.subscribe(() => {
18300
- this.updateGrossCGT();
18523
+ this.updateGrossCapitalGain();
18301
18524
  });
18302
18525
  }
18303
18526
  listenLegalFeesUpdated() {
18304
18527
  this.get('legalFees').valueChanges.subscribe(() => {
18305
- this.updateGrossCGT();
18528
+ this.updateGrossCapitalGain();
18306
18529
  });
18307
18530
  }
18308
18531
  listenOtherCostUpdated() {
18309
18532
  this.get('otherCost').valueChanges.subscribe(() => {
18310
- this.updateGrossCGT();
18533
+ this.updateGrossCapitalGain();
18311
18534
  });
18312
18535
  }
18313
18536
  listenPriceUpdated() {
18314
18537
  this.get('price').valueChanges.subscribe(() => {
18315
- this.updateGrossCGT();
18316
- });
18317
- }
18318
- listenCapitalLossUpdated() {
18319
- this.get('capitalLoss').valueChanges.subscribe(() => {
18320
- this.updateGrossCGT();
18321
- });
18322
- }
18323
- listenGrossCGT() {
18324
- this.get('grossCGT').valueChanges.subscribe((grossCGT) => {
18325
- this.get('grossCGTAfterLoss').setValue(this.getPropertySale().grossCGTAfterLoss);
18538
+ this.updateGrossCapitalGain();
18326
18539
  });
18327
18540
  }
18328
18541
  }
@@ -18335,7 +18548,8 @@ class PropertySaleExemptionsForm extends AbstractForm {
18335
18548
  super({
18336
18549
  taxExemption: new UntypedFormControl(taxExemptions.findBy('id', propertySale.taxExemption?.id ?? property.getCGTExemption(propertySale))),
18337
18550
  taxExemptionMetaFields: new UntypedFormArray([]),
18338
- netCGT: new UntypedFormControl(propertySale.netCGT)
18551
+ grossCapitalGain: new UntypedFormControl(propertySale.grossCapitalGain),
18552
+ netCapitalGain: new UntypedFormControl(propertySale.netCapitalGain),
18339
18553
  }, propertySale);
18340
18554
  this.propertySale = propertySale;
18341
18555
  this.property = property;
@@ -18343,7 +18557,7 @@ class PropertySaleExemptionsForm extends AbstractForm {
18343
18557
  if (propertySale.taxExemption) {
18344
18558
  this.setFormMetaFieldsControls();
18345
18559
  }
18346
- this.updateNetCGT();
18560
+ this.updateCapitalGains();
18347
18561
  this.listenEvents();
18348
18562
  }
18349
18563
  listenEvents() {
@@ -18355,12 +18569,19 @@ class PropertySaleExemptionsForm extends AbstractForm {
18355
18569
  getPropertySale() {
18356
18570
  return plainToClass(PropertySale, Object.assign({}, this.propertySale, this.getRawValue()));
18357
18571
  }
18358
- updateNetCGT() {
18359
- this.get('netCGT').setValue(this.property.calculateNetCGT(this.getPropertySale()));
18572
+ updateCapitalGains() {
18573
+ this.updateGrossCapitalGain();
18574
+ this.updateNetCapitalGain();
18575
+ }
18576
+ updateNetCapitalGain() {
18577
+ this.get('netCapitalGain').setValue(this.property.calculateNetCapitalGain(this.getPropertySale()));
18578
+ }
18579
+ updateGrossCapitalGain() {
18580
+ this.get('grossCapitalGain').setValue(this.property.calculateGrossCapitalGain(this.getPropertySale()));
18360
18581
  }
18361
18582
  listenTaxExemptionUpdated() {
18362
18583
  this.get('taxExemption').valueChanges.subscribe((taxExemption) => {
18363
- this.updateNetCGT();
18584
+ this.updateCapitalGains();
18364
18585
  this.setFormMetaFieldsControls(taxExemption);
18365
18586
  });
18366
18587
  }
@@ -18375,6 +18596,9 @@ class PropertySaleExemptionsForm extends AbstractForm {
18375
18596
  const formArray = this.get('taxExemptionMetaFields');
18376
18597
  // clean up
18377
18598
  formArray.clear();
18599
+ if (!currentTaxExemption) {
18600
+ return;
18601
+ }
18378
18602
  // show all tax exemption meta fields
18379
18603
  currentTaxExemption.metaFields.forEach((metaField) => {
18380
18604
  // use property sale tax exemption meta field value if it exists
@@ -18590,6 +18814,9 @@ class MyTaxBusinessIncomeOrLossesForm extends AbstractForm {
18590
18814
  }
18591
18815
  }
18592
18816
 
18817
+ /**
18818
+ * @TODO vik/nicole test
18819
+ */
18593
18820
  class MyTaxCgtForm extends AbstractForm {
18594
18821
  constructor(gainsOrLosses) {
18595
18822
  super({
@@ -19467,10 +19694,10 @@ class TransactionBaseForm extends AbstractForm {
19467
19694
  }
19468
19695
  }
19469
19696
 
19470
- var MessagesEnum;
19697
+ var MessagesEnum$1;
19471
19698
  (function (MessagesEnum) {
19472
19699
  MessagesEnum["DATE_VALIDATION_ERROR"] = "The transaction date is before the ownership date, please update the date to confirm";
19473
- })(MessagesEnum || (MessagesEnum = {}));
19700
+ })(MessagesEnum$1 || (MessagesEnum$1 = {}));
19474
19701
 
19475
19702
  class TransactionForm extends TransactionBaseForm {
19476
19703
  constructor(transaction, registeredForGst, allocations, controls = {}) {
@@ -19485,7 +19712,7 @@ class TransactionForm extends TransactionBaseForm {
19485
19712
  });
19486
19713
  // forbid to add transactions before property ownership
19487
19714
  if (transaction.property) {
19488
- this.get('date').addValidators(minDateValidator(transaction.property.myShare.fromDate, MessagesEnum.DATE_VALIDATION_ERROR));
19715
+ this.get('date').addValidators(minDateValidator(transaction.property.myShare.fromDate, MessagesEnum$1.DATE_VALIDATION_ERROR));
19489
19716
  }
19490
19717
  // property income usually comes with fees, add empty control for new transactions
19491
19718
  if (!transaction.id && transaction.property && !transaction.transactions.length && transaction.isCredit()) {
@@ -19528,6 +19755,39 @@ class TransactionForm extends TransactionBaseForm {
19528
19755
  }
19529
19756
  }
19530
19757
 
19758
+ /**
19759
+ * Validator that check fields for transaction meta
19760
+ */
19761
+ function transactionsMetaFieldsValidator() {
19762
+ return (formGroup) => {
19763
+ const chartAccounts = formGroup.get('chartAccounts').value;
19764
+ if (!chartAccounts) {
19765
+ return null;
19766
+ }
19767
+ const metaFields = chartAccounts.metaFields;
19768
+ if (chartAccounts.isDividends()) {
19769
+ return checkDividends(metaFields, formGroup);
19770
+ }
19771
+ return null;
19772
+ };
19773
+ }
19774
+ /**
19775
+ * the sum of the fields "Franked" and "Unfranked" must equal transactions amount
19776
+ */
19777
+ function checkDividends(metaFields, formGroup) {
19778
+ const frankedAndUnfrankedIds = [ChartAccountsMetaFieldListEnum.FRANKED, ChartAccountsMetaFieldListEnum.UNFRANKED];
19779
+ const amount = Math.abs(formGroup.get('amount').value);
19780
+ const frankedAndUnfrankedControls = (formGroup.get('metaFields')).controls
19781
+ .filter((control) => frankedAndUnfrankedIds.includes(control.get('chartAccountsMetaField').value.id));
19782
+ const frankedAndUnfrankedAmount = frankedAndUnfrankedControls.reduce((sum, control) => sum + (+control.get('value').value), 0);
19783
+ for (let control of frankedAndUnfrankedControls) {
19784
+ if (control.get('value').value !== null && frankedAndUnfrankedAmount !== amount) {
19785
+ return { metaFields: `Field ${control.get('chartAccountsMetaField').value.label} is required` };
19786
+ }
19787
+ }
19788
+ return amount === frankedAndUnfrankedAmount ? null : { metaFields: 'Please enter the franked and/or unfranked amounts.' };
19789
+ }
19790
+
19531
19791
  class WorkTransactionForm extends TransactionForm {
19532
19792
  constructor(transaction, registeredForGst, allocations, controls = {}) {
19533
19793
  super(transaction, registeredForGst, allocations, Object.assign(controls, {
@@ -19539,6 +19799,7 @@ class WorkTransactionForm extends TransactionForm {
19539
19799
  });
19540
19800
  }))
19541
19801
  }));
19802
+ this.setValidators(transactionsMetaFieldsValidator());
19542
19803
  this.listenEvents();
19543
19804
  }
19544
19805
  listenEvents() {
@@ -19706,11 +19967,91 @@ class DepreciationForm extends TransactionBaseForm {
19706
19967
  }
19707
19968
  }
19708
19969
 
19970
+ class HoldingSaleForm extends AbstractForm {
19971
+ constructor(sale, holding, type) {
19972
+ super({
19973
+ quantity: new UntypedFormControl(sale.quantity, [Validators.required, Validators.max(holding.currentQuantity)]),
19974
+ price: new UntypedFormControl(sale.price || type.price, Validators.required),
19975
+ fee: new UntypedFormControl(sale.fee, Validators.required),
19976
+ date: new UntypedFormControl(sale.date, Validators.required),
19977
+ grossCapitalGain: new UntypedFormControl({ value: sale.grossCapitalGain, disabled: true }),
19978
+ netCapitalGain: new UntypedFormControl({ value: sale.netCapitalGain, disabled: true }),
19979
+ file: new UntypedFormControl(sale.file)
19980
+ }, sale);
19981
+ this.holding = holding;
19982
+ if (sale.id) {
19983
+ this.emitValues();
19984
+ }
19985
+ this.listenEvents();
19986
+ }
19987
+ listenEvents() {
19988
+ this.listenQuantityChanges();
19989
+ this.listenPriceChanges();
19990
+ }
19991
+ listenQuantityChanges() {
19992
+ this.get('quantity').valueChanges.subscribe(() => {
19993
+ this.updateGainFields();
19994
+ });
19995
+ }
19996
+ listenPriceChanges() {
19997
+ this.get('price').valueChanges.subscribe(() => {
19998
+ this.updateGainFields();
19999
+ });
20000
+ }
20001
+ updateGainFields() {
20002
+ this.get('grossCapitalGain').setValue(this.currentValue.getCapitalGain(this.holding));
20003
+ this.get('netCapitalGain').setValue(this.currentValue.getNetCapitalGain(this.holding));
20004
+ }
20005
+ }
20006
+
20007
+ class HoldingTypeForm extends AbstractForm {
20008
+ constructor(holdingType = plainToClass(HoldingType, {})) {
20009
+ super({
20010
+ category: new UntypedFormControl(holdingType.category, Validators.required),
20011
+ name: new UntypedFormControl(holdingType.name, Validators.required),
20012
+ description: new UntypedFormControl(holdingType.description, Validators.required),
20013
+ price: new UntypedFormControl(holdingType.price, [Validators.required, Validators.min(0)]),
20014
+ dividendPercent: new UntypedFormControl(holdingType.dividendPercent, Validators.min(0))
20015
+ }, holdingType);
20016
+ }
20017
+ }
20018
+
20019
+ class HoldingForm extends AbstractForm {
20020
+ constructor(holding) {
20021
+ super({
20022
+ isTaxFree: new UntypedFormControl(holding.isTaxFree, Validators.required),
20023
+ quantity: new UntypedFormControl(holding.quantity, [Validators.required, Validators.min(0)]),
20024
+ price: new UntypedFormControl(holding.price, [Validators.required, Validators.min(0)]),
20025
+ fee: new UntypedFormControl(holding.fee, [Validators.required, Validators.min(0)]),
20026
+ date: new UntypedFormControl(holding.date, Validators.required),
20027
+ type: new UntypedFormControl(holding.type, Validators.required),
20028
+ ownershipPercent: new UntypedFormControl(holding.ownershipPercent || 100, Validators.required),
20029
+ file: new UntypedFormControl(holding.file)
20030
+ }, holding);
20031
+ }
20032
+ }
20033
+
20034
+ var MessagesEnum;
20035
+ (function (MessagesEnum) {
20036
+ MessagesEnum["HOLDING_CREATED"] = "Holding created";
20037
+ MessagesEnum["HOLDING_UPDATED"] = "Holding updated";
20038
+ MessagesEnum["HOLDING_CONFIRM_DELETE"] = "Are you sure you want to delete this holding?";
20039
+ MessagesEnum["HOLDING_DELETED"] = "Holding deleted";
20040
+ MessagesEnum["HOLDING_SALE_CREATED"] = "Holding sale created";
20041
+ MessagesEnum["HOLDING_SALE_UPDATED"] = "Holding sale updated";
20042
+ MessagesEnum["HOLDING_SALE_CONFIRM_DELETE"] = "Are you sure you want to delete this holding sale?";
20043
+ MessagesEnum["HOLDING_SALE_DELETED"] = "Holding sale deleted";
20044
+ MessagesEnum["HOLDING_TYPE_CREATED"] = "Holding type created";
20045
+ MessagesEnum["HOLDING_TYPE_UPDATED"] = "Holding type updated";
20046
+ MessagesEnum["HOLDING_TYPE_CONFIRM_DELETE"] = "Are you sure you want to delete this holding type?";
20047
+ MessagesEnum["HOLDING_TYPE_DELETED"] = "Holding type deleted";
20048
+ })(MessagesEnum || (MessagesEnum = {}));
20049
+
19709
20050
  // @TODO Alex: Create indexes everywhere and break this file to imports from indexes
19710
20051
 
19711
20052
  /**
19712
20053
  * Generated bundle index. Do not edit.
19713
20054
  */
19714
20055
 
19715
- 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 };
20056
+ 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 };
19716
20057
  //# sourceMappingURL=taxtank-core.mjs.map